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

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

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

/* メインタイトル */
.mainContents__Sec-episodes {
	position: relative;

	.wrapper {
		position: relative;
		width: 980px;
		padding: 0 125px 48px;
		display: flex;
		flex-direction: column;

		.Sec-episodes-headArea {
			position: relative;
			padding: 30px 25px 33px;
			background: #ebf58c;
			border-radius: 0 0 9px 9px;
			display: flex;
			flex-direction: column;
			align-items: center;

			.Sec-episodes-headArea-category {
				font-size: calc(25rem / 16);
				line-height: calc(60 / 25);
				font-weight: 600; /* SemiBold */
				letter-spacing: 0.015em;
				text-align: center;

				.light {
					font-weight: 400; /* Regular */
				}
				.color {
					color: #f77d7e;
				}
			}
			.Sec-episodes-headArea-viewpoint {
				margin-top: 18px;
				padding: 3px 15px;
				font-size: calc(19rem / 16);
				line-height: calc(21 / 19);
				font-weight: 700; /* Bold */
				letter-spacing: 0.040em;
				text-align: center;
				color: #70b3ff;
				background-color: #fff;
				border: 1.5px solid #70b3ff;
				border-radius: 15px;
			}
			.Sec-episodes-headArea-title {
				margin-top: 18px;
				font-size: calc(43rem / 16);
				line-height: calc(45 / 43);
				font-weight: 700; /* Bold */
				letter-spacing: 0.040em;
				text-align: center;
			}
		}
		/* 見出し */
		.Sec-episodes-headGroup {
			position: relative;
			margin-top: 48px;
			padding-bottom: 9px;
			border-bottom: 5px dotted #a2ceff;
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;

			.Sec-episodes-headGroup-question {
				width: 50px;
				font-size: calc(61rem / 16);
				line-height: calc(63 / 61);
				font-weight: 900; /* Black */
				color: #cde4ff;
			}
			.Sec-episodes-headGroup-head {
				margin-top: 3px;
				width: 670px;
				font-size: calc(22rem / 16);
				line-height: calc(60 / 22);
				font-weight: 600; /* SemiBold */
				letter-spacing: 0.040em;

				&.pc-double {
					line-height: calc(30 / 22);
				}
			}
		}
		.Sec-episodes-textArea {
			margin-top: 21px;
			padding: 0 5px;

			.Sec-episodes-textArea-text {
				font-size: calc(19rem / 16);
				line-height: calc(33 / 19);
				font-weight: 400; /* Regular */
				letter-spacing: 0.040em;
			}
		}
		/* 閉じるボタン */
		.Sec-episodes-closeBtn {
			margin-top: 48px;
			display: flex;
			flex-direction: column;
			align-items: center;

			.close {
				padding: 15px 70px;
				font-size: calc(23rem / 16);
				line-height: calc(24 / 23);
				font-weight: 700; /* Bold */
				letter-spacing: 0.015em;
				color: #70b3ff;
				background: #fff;
				border: 3px solid #70b3ff;
				border-radius: 30px;
				cursor: pointer;
				transition: all 0.35s ease;

				i {
					margin: 0 0.650em 0 0;
				}
				&:hover {
					opacity: 0.35;
				}
			}
		}
	}
}