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

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

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

/* メインタイトル */
.mainContents__Sec-episodes {
	position: relative;
}
	.mainContents__Sec-episodes .wrapper {
		position: relative;
		width: 100vw;
		padding: 0 calc(35vw / 7.0) calc(48vw / 7.0);
		display: flex;
		flex-direction: column;
	}
		.Sec-episodes-headArea {
			position: relative;
			padding: calc(39vw / 7.0) calc(60vw / 7.0) calc(36vw / 7.0);
			background: #ebf58c;
			border-radius: 0 0 calc(12vw / 7.0) calc(12vw / 7.0);
			display: flex;
			flex-direction: column;
			align-items: center;
		}
			.Sec-episodes-headArea-category {
				font-size: calc(34vw / 7.0);
				line-height: calc(84 / 34);
				font-weight: 600; /* SemiBold */
				letter-spacing: 0.015em;
				text-align: center;
			}
				.Sec-episodes-headArea-category .light {
					font-weight: 400; /* Regular */
				}
				.Sec-episodes-headArea-category .color {
					color: #f77d7e;
				}
			.Sec-episodes-headArea-viewpoint {
				margin-top: calc(18vw / 7.0);
				padding: calc(4vw / 7.0) calc(20vw / 7.0);
				font-size: calc(25vw / 7.0);
				line-height: calc(27 / 25);
				font-weight: 700; /* Bold */
				letter-spacing: 0.040em;
				text-align: center;
				color: #70b3ff;
				background-color: #fff;
				border: calc(2vw / 7.0) solid #70b3ff;
				border-radius: calc(19.5vw / 7.0);
			}
			.Sec-episodes-headArea-title {
				margin-top: calc(15vw / 7.0);
				font-size: calc(58vw / 7.0);
				line-height: calc(69 / 58);
				font-weight: 700; /* Bold */
				letter-spacing: 0.040em;
				text-align: center;
			}
		/* 見出し */
		.Sec-episodes-headGroup {
			position: relative;
			margin-top: calc(60vw / 7.0);
			padding-bottom: calc(12vw / 7.0);
			border-bottom: calc(5vw / 7.0) dotted #a2ceff;
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
		}
			.Sec-episodes-headGroup-question {
				width: calc(75vw / 7.0);
				font-size: calc(82vw / 7.0);
				line-height: calc(84 / 82);
				font-weight: 900; /* Black */
				color: #cde4ff;
			}
			.Sec-episodes-headGroup-head {
				margin-top: calc(3vw / 7.0);
				width: calc(540vw / 7.0);
				font-size: calc(28vw / 7.0);
				line-height: calc(84 / 28);
				font-weight: 600; /* SemiBold */
				letter-spacing: 0.040em;
			}
				.Sec-episodes-headGroup-head.sp-double {
					line-height: calc(42 / 28);
				}
			.Sec-episodes-textArea {
				margin-top: calc(30vw / 7.0);
				padding: 0 calc(5vw / 7.0);
			}
				.Sec-episodes-textArea-text {
					font-size: calc(28vw / 7.0);
					line-height: calc(45 / 28);
					font-weight: 400; /* Regular */
					letter-spacing: 0.040em;
				}

		/* 閉じるボタン */
		.Sec-episodes-closeBtn {
			margin-top: calc(60vw / 7.0);
			display: flex;
			flex-direction: column;
			align-items: center;
		}
			.Sec-episodes-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: #70b3ff;
				background: #fff;
				border: calc(3vw / 7.0) solid #70b3ff;
				border-radius: calc(39vw / 7.0);
				cursor: pointer;
				transition: all 0.35s ease;
			}
				.Sec-episodes-closeBtn .close i {
					margin: 0 0.650em 0 0;
				}
				.Sec-episodes-closeBtn .close:hover {
					opacity: 0.35; 
				}