@charset "UTF-8";
/* CSS Document */

/* ------------------------------ PC ------------------------------ */
html, body {
	overflow-x: hidden;
}
body {
	min-width: auto;
}

/* -------------------- メイン -------------------- */
.main {
	position: relative;
	margin: 0 auto;
	width: 980px;
}

/* メインタイトル */
.mainContents__Sec-comment {
	position: relative;
}
	.mainContents__Sec-comment .wrapper {
		position: relative;
		width: 980px;
		padding: 0 125px 48px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
		.Sec-comment-headArea {
			position: relative;
			width: 100%;
			padding: 39px 25px 51px;
			background: #d8f6f3;
			border-radius: 0 0 9px 9px;
			display: flex;
			flex-direction: column;
			align-items: center;
		}
			.Sec-comment-headArea-category {
				font-size: calc(25rem / 16);
				line-height: calc(36 / 25);
				font-weight: 600; /* SemiBold */
				letter-spacing: 0.040em;
				text-align: center;
			}
				.Sec-comment-headArea-category .light {
					font-weight: 400; /* Regular */
				}
				.Sec-comment-headArea-category i {
					margin: 0;
					padding: 0;
					letter-spacing: 0.240em;
					color: #d5af4b;
				}
			.Sec-comment-headArea-title {
				margin-top: 12px;
				font-size: calc(43rem / 16);
				line-height: calc(60 / 43);
				font-weight: 700; /* Bold */
				letter-spacing: 0.040em;
				text-align: center;
			}
				.Sec-comment-headArea-title.small {
					font-size: calc(40rem / 16);
					line-height: calc(51 / 40);
				}
			.Sec-comment-headArea-subTitle {
				position: absolute;
				left: 50%;
				bottom: -24px;
				padding: 0 25px;
				transform: translateX(-50%); /* 中央寄せ */
				font-size: calc(22rem / 16);
				line-height: calc(42 / 22);
				font-weight: 700; /* Bold */
				letter-spacing: 0.040em;
				text-align: center;
				background-color: #FFF;
				border: 3px solid #d8f6f3;
				border-radius: 24px;
			}
		/* コメント */
		.Sec-comment-judge-outer {
			position: relative;
			margin-top: 66px;
		}
			.Sec-comment-judge-photo {
				float: left;
				width: 105px;
			}
				.Sec-comment-judge-photo img {
					border-radius: 50%;
				}
			.Sec-comment-judge-inner {
				float: right;
				margin-left: 20px;
			}
				.Sec-comment-judge-name {
					font-size: calc(28rem / 16);
					line-height: calc(30 / 28);
					font-weight: 600; /* SemiBold */
					letter-spacing: 0.040em;
				}
				.Sec-comment-judge-en {
					margin-top: 3px;
					font-size: calc(16rem / 16);
					line-height: calc(18 / 16);
					font-weight: 400; /* Regular */
					letter-spacing: 0.040em;
				}
				.Sec-comment-judge-title {
					margin-top: 12px;
					font-size: calc(16rem / 16);
					line-height: calc(21 / 16);
					font-weight: 600; /* SemiBold */
					letter-spacing: 0.040em;
				}
		.Sec-comment-textArea {
			position: relative;
			margin-top: 18px;
		}
			.Sec-comment-text {
				margin-top: 18px;
				font-size: calc(19rem / 16);
				line-height: calc(33 / 19);
				font-weight: 400; /* Regular */
				letter-spacing: 0.040em;
			}

		/* 閉じるボタン */
		.Sec-comment-closeBtn {
			margin-top: 48px;
			display: flex;
			flex-direction: column;
			align-items: center;
		}
			.Sec-comment-closeBtn .close {
				padding: 15px 70px;
				font-size: calc(23rem / 16);
				line-height: calc(24 / 23);
				font-weight: 700; /* Bold */
				letter-spacing: 0.015em;
				color: #99e8df;
				background: #FFF;
				border: 3px solid #b1ede6;
				border-radius: 30px;
				cursor: pointer;
				transition: all 0.35s ease;
			}
				.Sec-comment-closeBtn .close i {
					margin: 0 0.650em 0 0;
				}
				.Sec-comment-closeBtn .close:hover {
					opacity: 0.35; 
				}