@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-episode {
	position: relative;
}
	.mainContents__Sec-episode .wrapper {
		position: relative;
		width: 980px;
		padding: 0 125px 48px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
		.Sec-episode-headArea {
			position: relative;
			width: 100%;
			padding: 39px 25px 51px;
			background: #fbe0ec;
			border-radius: 0 0 9px 9px;
			display: flex;
			flex-direction: column;
			align-items: center;
		}
			.Sec-episode-headArea-category {
				font-size: calc(25rem / 16);
				line-height: calc(36 / 25);
				font-weight: 600; /* SemiBold */
				letter-spacing: 0.040em;
				text-align: center;
			}
				.Sec-episode-headArea-category .light {
					font-weight: 400; /* Regular */
				}
				.Sec-episode-headArea-category i {
					margin: 0;
					padding: 0;
					letter-spacing: 0.240em;
					color: #d5af4b;
				}
			.Sec-episode-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-episode-headArea-title .light {
					font-weight: 400; /* Regular */
				}
				.Sec-episode-headArea-title.small {
					margin-top: 12px;
					font-size: calc(40rem / 16);
					line-height: calc(51 / 40);
					font-weight: 700; /* Bold */
					letter-spacing: 0.040em;
					text-align: center;
				}
			.Sec-episode-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 #fbe0ec;
				border-radius: 24px;
			}
		/* 受賞エピソード */
		.Sec-episode-textArea {
			position: relative;
			margin-top: 36px;
		}
			.Sec-episode-text {
				margin-top: 24px;
				font-size: calc(19rem / 16);
				line-height: calc(33 / 19);
				font-weight: 400; /* Regular */
				letter-spacing: 0.040em;
			}

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