@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;
	}
		.Sec-comment-headArea {
			position: relative;
			margin-bottom: calc(54vw / 7.0);
			padding: calc(39vw / 7.0) calc(20vw / 7.0) calc(63vw / 7.0);
			background: #d7f8de;
			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-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 #d7f8de;
				border-radius: calc(30vw / 7.0);
			}
		/* コメント */
		.Sec-comment-listGroup {
			position: relative;
			margin-top: calc(30vw / 7.0);
			width: 100%;
			padding-bottom: calc(30vw / 7.0);
			border-bottom: calc(5vw / 7.0) dotted #9cecad;
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
		}
			.Sec-comment-listGroup.last{
				border-bottom: none;
			}
			.Sec-comment-listGroup-icon {
				width: calc(50vw / 7.0);
			}
				.Sec-comment-listGroup-icon  i {
					margin: 0;
					padding: 0;
					font-size: calc(40vw / 7.0);
					line-height: calc(45 / 40);
					color: #39da5b;
				}
			.Sec-comment-listGroup-text {
				width: calc(555vw / 7.0);
				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(30vw / 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: #7ee794;
				background: #FFF;
				border: calc(3vw / 7.0) solid #9cecad;
				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; 
				}