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

/* ------------------------------ SP ------------------------------ */

/* -------------------- メイン -------------------- */
.main {
	position: relative;
	margin: 0 auto;
	width: 100vw;
	background: #FFF;
}

/* メインタイトル */
.mainContents__Sec-comment {
	position: relative;
}
	.mainContents__Sec-comment .wrapper {
		position: relative;
		width: 100vw;
		padding: 0 calc(40vw / 7.0) calc(48vw / 7.0);
		display: flex;
		flex-direction: column;
		align-items: center;
	}
		.Sec-comment-headArea {
			position: relative;
			width: 100%;
			padding: calc(39vw / 7.0) calc(20vw / 7.0) calc(63vw / 7.0);
			background: #e4eaf9;
			border-radius: 0 0 calc(12vw / 7.0) calc(12vw / 7.0);
			display: flex;
			flex-direction: column;
			align-items: center;
		}
			.Sec-comment-headArea-category {
				font-size: calc(28vw / 7.0);
				line-height: calc(42 / 28);
				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: calc(18vw / 7.0);
				font-size: calc(52vw / 7.0);
				line-height: calc(66 / 52);
				font-weight: 700; /* Bold */
				letter-spacing: 0.040em;
				text-align: center;
			}
				.Sec-comment-headArea-title .light {
					font-weight: 400; /* Regular */
				}
				.Sec-comment-headArea-title.small {
					font-size: calc(41vw / 7.0);
					line-height: calc(54 / 41);
					letter-spacing: 0.015em;
				}
			.Sec-comment-headArea-subTitle {
				position: absolute;
				left: 50%;
				bottom: calc(-30vw / 7.0);
				padding: calc(11vw / 7.0) calc(30vw / 7.0);
				transform: translateX(-50%); /* 中央寄せ */
				font-size: calc(28vw / 7.0);
				line-height: calc(30 / 28);
				font-weight: 700; /* Bold */
				letter-spacing: 0.040em;
				text-align: center;
				background-color: #FFF;
				border: calc(4vw / 7.0) solid #e4eaf9;
				border-radius: calc(30vw / 7.0);
			}
		/* コメント */
		.Sec-comment-judge-outer {
			position: relative;
			margin-top: calc(84vw / 7.0);
		}
			.Sec-comment-judge-photo {
				float: left;
				width: calc(120vw / 7.0);
			}
				.Sec-comment-judge-photo img {
					border-radius: 50%;
				}
			.Sec-comment-judge-inner {
				float: right;
				margin-left: calc(25vw / 7.0);;
			}
				.Sec-comment-judge-name {
					font-size: calc(31vw / 7.0);
					line-height: calc(36 / 31);
					font-weight: 600; /* SemiBold */
					letter-spacing: 0.040em;
				}
				.Sec-comment-judge-en {
					margin-top: calc(3vw / 7.0);
					font-size: calc(18vw / 7.0);
					line-height: calc(21 / 18);
					font-weight: 400; /* Regular */
					letter-spacing: 0.040em;
				}
				.Sec-comment-judge-title {
					margin-top: calc(12vw / 7.0);
					font-size: calc(19vw / 7.0);
					line-height: calc(24 / 19);
					font-weight: 600; /* SemiBold */
					letter-spacing: 0.040em;
				}
		.Sec-comment-textArea {
			position: relative;
			margin-top: calc(48vw / 7.0);
		}
			.Sec-comment-text {
				font-size: calc(28vw / 7.0);
				line-height: calc(45 / 28);
				font-weight: 400; /* Regular */
				letter-spacing: 0.040em;
			}

		/* 閉じるボタン */
		.Sec-comment-closeBtn {
			margin-top: calc(60vw / 7.0);
			display: flex;
			flex-direction: column;
			align-items: center;
		}
			.Sec-comment-closeBtn .close {
				padding: calc(18vw / 7.0) calc(50vw / 7.0);
				font-size: calc(31vw / 7.0);
				line-height: calc(36 / 31);
				font-weight: 700; /* Bold */
				letter-spacing: 0.015em;
				color: #b8c9ef;
				background: #FFF;
				border: calc(3vw / 7.0) solid #c8d5f2;
				border-radius: calc(39vw / 7.0);
				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; 
				}