/* ===== 体験レッスンページ ===== */

/* ファーストビュー背景画像 */
.p-page-fv--trial {
	background-image: url(../../img/course_header.webp);
	background-size: cover;
	background-position: center;
	min-height: 250px;
}

/* ページタイトルセクション */
.p-page-title {
	padding: 39px 0 16px;
	clip-path: ellipse(88% 100% at 50% 100%);
    background-color: #FFF9F1;
    margin-top: -26px;
}

.p-page-title__inner {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.p-page-title__label {
	letter-spacing: -0.04em;
}

.p-page-title__ja {
	font-size: 2.8rem;
	line-height: 1.6;
}

.l-breadcrumb-wrapper {
	background-color: #FFF9F1;
}
/* メインコンテンツ */
.p-trial-lesson {
	padding: 16px 0 81px;
	background-color: #FFF9F1;
}

.p-trial-lesson__inner {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 20px;
}

.p-trial-lesson__intro {
	margin-bottom: 52px;
}

.p-trial-lesson__intro-title {
	color: #141429;
	font-family: "Source Han Sans JP", "源ノ角ゴシック JP", sans-serif;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	letter-spacing: 0;
	margin: 0 0 20px 0;
}

.p-trial-lesson__intro-text {
	color: #242639;
	text-transform: uppercase;
	font-family: "Source Han Sans JP", "源ノ角ゴシック JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0;
}

/* セクションタイトル */
.p-trial-lesson__section-title {
	text-transform: uppercase;
	font-family: "Source Han Sans JP", "源ノ角ゴシック JP", sans-serif;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.45;
	letter-spacing: 0;
	color: #141429;
	text-align: center;
	margin: 0 0 30px 0;
	position: relative;
	padding-bottom: 24px;
}

.p-trial-lesson__section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background-color: #E15C45;
}

.p-trial-lesson__flow {
	margin-bottom: 45px;
}

.p-trial-lesson__steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 31px;
}

.p-trial-lesson__step {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(203, 203, 203, 0.16);
	border-radius: 30px;
	padding: 20px 22px 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.p-trial-lesson__step::after {
	content: "";
	position: absolute;
    bottom: -55px;
    left: 49%;
    transform: translateX(-50%);
    height: 48px;
    border-right: 3px dashed #E15C45;
}
.p-trial-lesson__step:last-child::after {
	display: none;
}

.p-trial-lesson__step-image {
	width: 100%;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
	margin-bottom: 12px;
	text-align: center;
}
.p-trial-lesson__step-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.p-trial-lesson__step-content {
	width: 100%;
}

.p-trial-lesson__step-title {
	color: #E15C45;
	font-family: "Source Han Sans JP", "源ノ角ゴシック JP", sans-serif;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.45;
	letter-spacing: 0;
	margin: 0 0 11px;
}

.p-trial-lesson__step-text {
	color: #141429;
	font-family: "Source Han Sans JP", "源ノ角ゴシック JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0;
}

.p-trial-lesson__application-description {
	color: #141429;
	font-family: "Source Han Sans JP", "源ノ角ゴシック JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0 0 33px 0;
}

.p-trial-lesson__application-form-button {
	margin-bottom: 38px;
	display: flex;
	justify-content: center;
}
.p-trial-lesson__application-form-button .c-button {
	max-width: 296px;
}

.p-trial-lesson__application-phone {
	text-align: center;
}
.p-trial-lesson__application-phone-label {
	text-decoration: none;
	color: #E15C45;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: 0;
	margin: 0;
	transition: all 0.3s ease-out;
}
@media (any-hover: hover) {
	.p-trial-lesson__application-phone-label:hover {
		text-decoration: underline;
	}
}

/* ===== レスポンシブ ===== */

/* タブレット以上（769px以上） */
@media (min-width: 769px) {
	.p-page-fv--trial {
		aspect-ratio: 1366 / 615;
	}
	.p-page-title {
		padding: 71px 0 16px;
        clip-path: ellipse(53% 100% at 50% 108%);
        background-color: #FFF9F1;
        margin-top: -152px;
	}
	.breadcrumb {
		max-width: 820px;
		margin: 0 auto;
	}
	.breadcrumb-list {
		padding: 51px 19px 32px;
	}
	.p-trial-lesson {
		padding: 3px 0 245px;
	}
	.p-trial-lesson__intro {
		margin-bottom: 63px;
	}
	.p-trial-lesson__intro-title {
		font-size: 3.2rem;
		margin-bottom: 37px;
	}
	.p-trial-lesson__section-title {
		margin-bottom: 50px;
	}
	.p-trial-lesson__flow {
		margin-bottom: 91px;
	}
	.p-trial-lesson__steps {
		gap: 72px;
	}
	.p-trial-lesson__step {
		flex-direction: row;
		align-items: flex-start;
		gap: 16px;
		padding: 20px 22px 20px;
	}
	.p-trial-lesson__step:first-child {
		border-radius: 10px;
	}
	.p-trial-lesson__step::after {
		bottom: -63px;
		left: 50%;
	} 
	.p-trial-lesson__step-image {
		flex: 1;
		max-width: 314px;
		margin-bottom: 0;
	}
	.p-trial-lesson__step-content {
		flex: 1;
	}
	.p-trial-lesson__application>.p-trial-lesson__section-title {
		margin-bottom: 32px;
	}
}

