@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;
	}
		.Sec-comment-headArea {
			position: relative;
			margin-bottom: 36px;
			width: 100%;
			padding: 39px 25px 51px;
			background: #d7f8de;
			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-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 #d7f8de;
				border-radius: 24px;
			}
		/* コメント */
		.Sec-comment-listGroup {
			position: relative;
			margin-top: 24px;
			width: 100%;
			padding-bottom: 24px;
			border-bottom: 5px dotted #9cecad;
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
		}
			.Sec-comment-listGroup.last{
				border-bottom: none;
			}
			.Sec-comment-listGroup-icon {
				width: 30px;
			}
				.Sec-comment-listGroup-icon  i {
					margin: 0;
					padding: 0;
					font-size: calc(28rem / 16);
					line-height: calc(33 / 28);
					color: #39da5b;
				}
			.Sec-comment-listGroup-text {
				width: 685px;
				font-size: calc(19rem / 16);
				line-height: calc(33 / 19);
				font-weight: 400; /* Regular */
				letter-spacing: 0.040em;
			}

		/* 閉じるボタン */
		.Sec-comment-closeBtn {
			margin-top: 24px;
			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: #7ee794;
				background: #FFF;
				border: 3px solid #9cecad;
				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; 
				}