/* ===== 春休み短期講習ページ ===== */

/* ファーストビュー */
.p-page-fv {
	padding-top: 86px;
}
.p-spring-program__video-wrapper {
	width: 100%;
	height: auto;
	aspect-ratio: 390/220;
}
.p-spring-program__video-element {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* ページタイトルセクション - 春バージョン */
.p-spring-program__hero-content {
    padding: 33px 0 46px;
    clip-path: ellipse(167% 100% at 50% 100%);
    background-color: #F5CBD6;
    margin-top: -24px;
}
.p-spring-program__hero-inner {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 20px;
}
.p-spring-program__hero-title {
	max-width: 92.86%;
	width: 100%;
    height: auto;
    aspect-ratio: 325 / 274;
    transform: translateX(26px);
	margin: 0 0 20px;
}
.p-spring-program__hero-title-image {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.p-spring-program__hero-button .c-button__icon{
	background-color: #FAC172;
}
/* ===== レスポンシブ ===== */
/* タブレット以上（769px以上） */
@media (min-width: 769px) {
	.p-spring-program__video-wrapper {
		aspect-ratio: 1366 / 536;
	}
	.p-spring-program__video-element {
		height: 100%;
	}
	
	.p-spring-program__hero-content {
		margin-top: 0px;
		padding: 33px 0 0px;
		border-bottom: 4px solid rgba(245, 203, 214, 0.6);
		clip-path: none;
	}
	.p-spring-program__hero-inner {
		max-width: none;
		margin: 0;
		padding: 0;
	}
	.p-spring-program__hero-title {
		transform: translateX(0px);
		margin: -286px 0 -82px;
		position: relative;
        max-width: none;
        transform: none;
        aspect-ratio: auto;
	}
	.p-spring-program__hero-title::after {
		content: "";
		position: absolute;
		top: 64px;
		left: 0;
		width: 100%;
		height: 100%;
		aspect-ratio: 1366/329;
		clip-path: ellipse(89% 100% at 50% 100%);
		background-color: #F5CBD6;
		z-index: -1;
	}
	.p-spring-program__hero-title picture {
		display: block;
		max-width: 1038px;
		width: 100%;
		margin: 0 auto;
		height: auto;
		aspect-ratio: 1038 / 391;
		transform: translateX(14px);
	}
	.p-spring-program__hero-button {
		transform: translateY(-43px);
	}
}

/* about セクション */
.p-spring-about {
	padding: 55px 0 36px;
	background-color: #FFF9F1;
}

.p-spring-about__inner {
	max-width: 1113px;
	margin: 0 auto;
	padding: 0 20px;
}

.p-spring-about__title {
	text-align: center;
	margin: 0 0 40px;
}

.p-spring-about__title-brand {
	display: block;
	color: #141429;
	text-transform: uppercase;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.45;
	letter-spacing: 0;
	margin-bottom: 5px;
}

.p-spring-about__title-main {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	color: #141429;
	line-height: 1.45;
	letter-spacing: 0;
}

.p-spring-about__title-line {
	display: block;
	margin-bottom: 6px;
}
.p-spring-about__title-line--bottom {
	transform: translateX(-12px);
}

.p-spring-about__title-text--large {
	font-size: 3.6rem;
	position: relative;
}
.p-spring-about__title-text--large::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    max-width: 102px;
    width: 100%;
    border-bottom: 2px dashed #dfe6ba;
}
.p-spring-about__title-line--bottom .p-spring-about__title-text--large::after {
	border-color: #ecbcc3;
}

.p-spring-about__title-text--medium {
	font-size: 3.2rem;
}

.p-spring-about__title-text--small {
	font-size: 2.8rem;
	display: inline-block;
    transform: translateX(-7px);
}

.p-spring-about__title-emphasis--red {
	color: #E15C45;
}

.p-spring-about__title-emphasis--orange {
	color: #FAC172;
}

.p-spring-about__features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 11px;
}

.p-spring-about__feature {
	background-color: #FFFFFF;
	border-radius: 50px 0 0 50px;
	padding: 20px 16px 20px 36px;
	box-shadow: 0px 0px 20px rgba(250, 193, 114, 0.15);
	display: flex;
	align-items: center;
	gap: 11px;
}
.p-spring-about__feature:nth-child(2) {
    padding: 20px 16px 20px 32px;
    gap: 10px;
}
.p-spring-about__feature:nth-child(3) {
    padding: 24px 16px 24px 42px;
    gap: 21px;
}

.p-spring-about__feature-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
}
.p-spring-about__feature-icon--headphone {
	width: 55px;
	height: 48px;
}
.p-spring-about__feature-icon--smile {
	width: 34px;
	height: 34px;
}

.p-spring-about__feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.p-spring-about__feature-text {
	color: #242639;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0;
}

/* ===== レスポンシブ ===== */
/* タブレット以上（769px以上） */
@media (min-width: 769px) {
	.p-spring-about {
		padding: 85px 0 110px;
		position: relative;
	}
	.p-spring-about__title-line {
		display: inline-block;
	}
	.p-spring-about__title {
		transform: translateX(-15px);
		margin-bottom: 48px;
	}
	.p-spring-about__title-line--bottom {
		transform: none;
	}
	.p-spring-about__features {
		grid-template-columns: repeat(3, 1fr);
		gap: 19px;
	}
}

/* 春休み、英語に触れる時間はありますか？ セクション */
.p-spring-question {
	padding: 54px 0 43px;
	background-color: #FFFFFF;
}

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

.p-spring-question__title {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.42;
	letter-spacing: 0;
	margin: 0 0 31px;
	text-align: center;
}

.p-spring-question__text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	color: #141429;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0 0 32px;
}

.p-spring-question__image {
	max-width: 582px;
	margin: 0 auto;
	border-radius: 19px;
}

.p-spring-question__image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* ===== レスポンシブ ===== */
/* タブレット以上（769px以上） */
@media (min-width: 769px) {
	.p-spring-question {
		padding: 87px 0 110px;
	}
}

/* 春の短期レッスンでできること セクション */
.p-spring-lesson {
	padding: 52px 0 60px;
	background-color: #FFF9F1;
}

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

.p-spring-lesson__title {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.42;
	letter-spacing: 0;
	margin: 0 0 24px;
	text-align: center;
}

.p-spring-lesson__intro {
	color: #141429;
	text-transform: uppercase;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0 0 20px;
}

.p-spring-lesson__features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-bottom: 56px;
}

.p-spring-lesson__feature {
	background-color: #FFFFFF;
	border-radius: 50px 0 0 50px;
	padding: 20px 16px 20px 36px;
	box-shadow: 0px 0px 20px rgba(250, 193, 114, 0.15);
	display: flex;
	align-items: center;
	gap: 11px;
}

.p-spring-lesson__feature-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
}

.p-spring-lesson__feature-icon--headphone {
	width: 55px;
	height: 48px;
}

.p-spring-lesson__feature-icon--smile {
	width: 34px;
	height: 34px;
}

.p-spring-lesson__feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.p-spring-lesson__feature-text {
	color: #242639;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0;
}

/* 詳細コンテンツ */
.p-spring-lesson__details {
	margin-bottom: 50px;
}
.p-spring-lesson__detail {
	max-width: 780px;
	margin: 0 auto;
	margin-bottom: 60px;
}
.p-spring-lesson__detail:nth-child(2) {
	margin-bottom: 77px;
}

.p-spring-lesson__detail:last-child {
	margin-bottom: 0;
}

.p-spring-lesson__detail-header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 17px;
}
/* 数字 */
.p-spring-lesson__detail-number {
	flex-shrink: 0;
	width: 58px;
	height: 58px;
	color: #FFF9F1;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* 1 */
.p-spring-lesson__detail-number--1 {
	flex-shrink: 0;
	width: 58px;
	height: 58px;
	background-color: #D05E7D;
	border-radius: 50px 50px 2px 50px;
}
/* 2 */
.p-spring-lesson__detail-number--2 {
	flex-shrink: 0;
	width: 58px;
	height: 58px;
	background-color: #89D5C9;
	border-radius: 50px 50px 2px 50px;
}
/* 3 */
.p-spring-lesson__detail-number--3 {
	flex-shrink: 0;
	width: 58px;
	height: 58px;
	background-color: #FAC172;
	border-radius: 50px 50px 2px 50px;
}

.p-spring-lesson__detail-title {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.45;
	letter-spacing: 0;
	margin: 0;
}

.p-spring-lesson__detail-text {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0 0 59px;
}
.p-spring-lesson__detail:nth-child(2) .p-spring-lesson__detail-text {
	margin-bottom: 74px;
}
.p-spring-lesson__detail:nth-child(3) .p-spring-lesson__detail-text {
	margin-bottom: 18px;
}

.p-spring-lesson__detail-image {
	max-width: 350px;
	width: 100%;
	height: auto;
	aspect-ratio: 350/244;
	border-radius: 12px;
	position: relative;
	margin-bottom: 24px;
}

.p-spring-lesson__detail-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

.p-spring-lesson__detail-caption {
	position: absolute;
	top: -18px;
	left: -12px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: #53ACBC;
	line-height: 1.48;
	letter-spacing: 0;
	margin: 0;
	background-color: #E8FDFA;
	border-radius: 12px;
	padding: 15px 14px 10px 20px;
}

.p-spring-lesson__detail:nth-child(2) .p-spring-lesson__detail-caption {
	top: auto;
    bottom: -29px;
    right: -18px;
	left: auto;
	background-color: #FFF1EB;
	color: #FF8357;
}
/* 外国人講師セクション */

.p-spring-lesson__teacher-title {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.44;
	letter-spacing: 0;
	margin: 0 0 14px;
}

.p-spring-lesson__teacher-content {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.p-spring-lesson__teacher-text {
	color: #141429;
	text-transform: uppercase;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0;
}

.p-spring-lesson__teacher-card {
	display: flex;
	gap: 17px;
	align-items: center;
}

.p-spring-lesson__teacher-image {
	flex-shrink: 0;
	max-width: 175px;
	width: 100%;
	height: auto;
	aspect-ratio: 175/200;
	border-radius: 19px;
	overflow: hidden;
}

.p-spring-lesson__teacher-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-spring-lesson__teacher-message {
	flex: 1;
	position: relative;
}
.p-spring-lesson__teacher-message::before,
.p-spring-lesson__teacher-message::after {
    content: "";
    position: absolute;
    width: 42px;
    height: 2px;
    background-color: #53ACBC;
    top: -8px;
    right: -4px;
    transform: rotate(33deg);
}
.p-spring-lesson__teacher-message::after {
	top: auto;
    bottom: -17px;
    transform: rotate(-37deg);
}

.p-spring-lesson__teacher-quote {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: -0.03em;
	color: #53ACBC;
	margin: 0 ;
}

.p-spring-lesson__detail-conversation {
	position: absolute;
	top: -46px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	gap: 20px;
	z-index: 1;
}

.p-spring-lesson__detail-bubble {
	position: relative;
	max-width: 50%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: clamp(1.4rem, (100vw - 350px) / 2, 1.6rem);
	line-height: 1.5;
	letter-spacing: 0;
	margin: 0;
	white-space: nowrap;
}

.p-spring-lesson__detail-bubble--teacher {
	color: #D05E7D;
}
.p-spring-lesson__detail-bubble--teacher::before,
.p-spring-lesson__detail-bubble--teacher::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 27px;
	background-color: #D05E7D;
	position: relative;
	top: 7px;
}
.p-spring-lesson__detail-bubble--teacher::before {
	left: 0;
	transform: rotate(-21deg);
	margin-right: 2px;
}
.p-spring-lesson__detail-bubble--teacher::after {
	right: 0;
	transform: rotate(20deg);
}

.p-spring-lesson__detail-bubble--student {
	color: #FF8357;
}
.p-spring-lesson__detail-bubble--student::before,
.p-spring-lesson__detail-bubble--student::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 27px;
	background-color: #FF8357;
	position: relative;
	top: 7px;
}
.p-spring-lesson__detail-bubble--student::before {
	left: 0;
	transform: rotate(-21deg);
	margin-right: 2px;
}
.p-spring-lesson__detail-bubble--student::after {
	right: 0;
	transform: rotate(20deg);
}

/* 3番目のセクション - ワイド画像 */
.p-spring-lesson__detail-image--wide {
	max-width: 680px;
	width: 100%;
	aspect-ratio: 680/400;
}

.p-spring-lesson__detail-image--wide img {
	border-radius: 20px;
}


/* タブレット以上 */
@media (min-width: 769px) {
	.p-spring-lesson {
		padding: 81px 0 96px;
	}
	.p-spring-lesson__title {
		margin-bottom: 45px;
	}
	.p-spring-lesson__intro {
		max-width: 820px;
		margin: 0 auto;
		margin-bottom: 45px;
		padding: 0 20px;
	}
	.p-spring-lesson__features {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
		max-width: 1083px;
		margin: 0 auto;
		margin-bottom: 103px;
	}
	.p-spring-lesson__details {
		margin-bottom: 92px;
	}
	.p-spring-lesson__detail {
		margin-bottom: 97px;
	}
	.p-spring-lesson__detail:nth-child(2) {
		margin-bottom: 113px;
	}
	.p-spring-lesson__detail-header {
		margin-bottom: 25px;
	}
	.p-spring-lesson__detail:nth-child(3) .p-spring-lesson__detail-header {
		margin-bottom: 47px;
	}
	.p-spring-lesson__detail-title {
		font-size: 3.2rem;
	}
	.p-spring-lesson__detail-text {
		margin-bottom: 46px;
	}
	.p-spring-lesson__detail:nth-child(3) .p-spring-lesson__detail-text {
		margin-bottom: 37px;
	}
	.p-spring-lesson__detail-image {
		max-width: 424px;
		margin: 0 auto 47px;
	}
	.p-spring-lesson__detail-image--wide {
		max-width: 498px;
	}

	.p-spring-lesson__detail-caption {
		top: -20px;
		left: -17px;
		font-size: 2rem;
		padding: 15px 18px 10px 20px;
	}

	.p-spring-lesson__teacher-content {
		flex-direction: row;
		align-items: flex-end;
		gap: 81px;
	}

	.p-spring-lesson__teacher-info {
		flex: 1;
	}

	.p-spring-lesson__teacher-card {
		flex: 0 0 349px;
	}
}


/* レッスン内容セクション */
.p-spring-lesson__content-section {
    margin-bottom:  47px;
}
.p-spring-lesson__content-title {
	text-align: center;
}
.p-spring-lesson__content-title-label {
	font-size: 1.6rem;
}
.p-spring-lesson__content-title-ja {
	display: block;
	font-size: 2.4rem;
}

.p-spring-lesson__content-description {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0 0 20px;
}

.p-spring-lesson__content-cards {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 350px;
	margin: 0 auto;
}

.p-spring-lesson__content-card {
	border-radius: 12px;
	overflow: hidden;
}

.p-spring-lesson__content-figure {
	max-width: 350px;
	width: 100%;
	aspect-ratio: 350/244;
}

.p-spring-lesson__content-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-spring-lesson__content-info {
	margin-top: -5px;
	padding: 18px;
	text-align: center;
	border-radius: 0 0 12px 12px;
}

.p-spring-lesson__content-card--pink .p-spring-lesson__content-info {
	background-color: #F5CBD6;
}

.p-spring-lesson__content-card--green .p-spring-lesson__content-info {
	background-color: #F1F7E2;
}

.p-spring-lesson__content-card--orange .p-spring-lesson__content-info {
	background-color: #E15C4524;
}

.p-spring-lesson__content-subtitle {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: 0;
	margin: 0 0 11px;
}

.p-spring-lesson__content-name {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1;
	letter-spacing: 0em;
	margin: 0;
}

.p-spring-lesson__content-card--pink .p-spring-lesson__content-name {
	color: #E15C45;
}

.p-spring-lesson__content-card--green .p-spring-lesson__content-name {
	color: #4CAF50;
}

.p-spring-lesson__content-card--orange .p-spring-lesson__content-name {
	color: #FF8357;
}

/* タブレット以上 */
@media (min-width: 769px) {
	.p-spring-lesson__content-section {
		margin-bottom: 65px;
	}

	.p-spring-lesson__content-title {
		margin: 0 0 35px;
	}

	.p-spring-lesson__content-description {
		max-width: 820px;
		margin: 0 auto 49px;
		padding: 0 20px;
	}

	.p-spring-lesson__content-cards {
		flex-direction: row;
		gap: 30px;
		max-width: 1000px;
		justify-content: space-between;
	}

	.p-spring-lesson__content-card {
		flex: 1;
	}

}

/* 概要セクション */

.p-spring-lesson__overview-title {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.45;
	letter-spacing: 0;
	text-align: center;
	margin: 0 0 7px;
}

.p-spring-lesson__overview-grid {
	display: grid;
	grid-template-columns: 1fr;
	margin: 0 auto 40px;
}

.p-spring-lesson__overview-item {
	padding: 11.9px 13px;
	border-bottom:2px dashed;
	display: flex;
	align-items: flex-start;
}

.p-spring-lesson__overview-item--target {
	border-color: rgba(226, 92, 69, 0.4);
}

.p-spring-lesson__overview-item--time {
	border-color: rgba(250, 193, 114, 0.4);
}

.p-spring-lesson__overview-item--period {
	border-color: rgba(137, 213, 201, 0.4);
}

.p-spring-lesson__overview-item--price {
	border-color: rgba(174, 201, 101, 0.4);
}

.p-spring-lesson__overview-item--location{
	border-color: rgba(255, 131, 87, 0.4);
}

.p-spring-lesson__overview-label {
	color: #242639;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 11px;
    width: 44%;
}

.p-spring-lesson__overview-label::before {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.p-spring-lesson__overview-item--target .p-spring-lesson__overview-label::before {
	background-color: #E15C45;
}

.p-spring-lesson__overview-item--time .p-spring-lesson__overview-label::before {
	background-color: #FAC172;
}

.p-spring-lesson__overview-item--period .p-spring-lesson__overview-label::before {
	background-color: #89D5C9;
}

.p-spring-lesson__overview-item--price .p-spring-lesson__overview-label::before {
	background-color: #ADC965;
}

.p-spring-lesson__overview-item--location .p-spring-lesson__overview-label::before {
	background-color: #FF8357;
}

.p-spring-lesson__overview-value {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.5;
	margin: 0;
}

.p-spring-lesson__overview-cta {
	text-align: center;
}
.p-spring-lesson__overview-cta .c-button--tertiary-pink .c-button__icon {
	background-color: #FAC172;
}

/* タブレット以上 */
@media (min-width: 769px) {
	.p-spring-lesson__overview {
		max-width: 644px;
		margin: 0 auto;
	}

	.p-spring-lesson__overview-title {
		margin: 0 0 17px;
	}

	.p-spring-lesson__overview-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0 24px;
		max-width: 100%;
		margin: 0 0 48px;
	}

	.p-spring-lesson__overview-item--period {
		grid-column: 1 / -1;
		gap: 9px;
	}

	.p-spring-lesson__overview-label {
		width: 32%;
	}
	.p-spring-lesson__overview-item--period .p-spring-lesson__overview-label {
		width: fit-content;
	}

	.p-spring-lesson__overview-value {
		font-size: 1.8rem;
	}
}
/* 保護者の方・受講者の声セクション */
.p-spring-voice {
	background-color: #F5CBD6;
	padding: 41px 0 44px;
}

.p-spring-voice__inner {
	max-width: 1113px;
	margin: 0 auto;
}

.p-spring-voice__title {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.42;
	letter-spacing: 0;
	text-align: center;
	margin: 0 0 33px;
}

.p-spring-voice__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	margin: 0 auto;
	overflow: hidden;
}

.p-spring-voice__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.p-spring-voice__item--right {
	flex-direction: row;
	padding-right: 20px;
	gap: 22px;
}

.p-spring-voice__item--left {
	flex-direction: row-reverse;
	padding-left: 21px;
}

.p-spring-voice__avatar {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p-spring-voice__avatar--green,
.p-spring-voice__avatar--yellow {
	max-width: 95px;
	aspect-ratio: 95 / 91;
	transform: translate(14px, 2px);
}
.p-spring-voice__avatar--red {
	max-width: 87px;
	aspect-ratio: 87/100;
	transform: translate(-9px, 3px);
}


.p-spring-voice__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-spring-voice__bubble {
	flex: 1;
	background: #FFFFFF;
	border-radius: 10px;
	padding: 17px;
	position: relative;
	filter: drop-shadow(0 0 10px rgba(208, 94, 125, 0.15));
}

.p-spring-voice__bubble::before {
	content: "";
	position: absolute;
    bottom: 19px;
    right: -18px;
    max-width: 25px;
    width: 100%;
    height: initial;
    aspect-ratio: 10 / 10;
    background-color: #FFF;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.p-spring-voice__item--right .p-spring-voice__bubble::before {
    right: auto;
    left: -18px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.p-spring-voice__text {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.57;
	letter-spacing: 0;
	margin: 0;
}

/* タブレット以上 */
@media (min-width: 769px) {
	.p-spring-voice {
		padding: 63px 0 77px;
	}
	.p-spring-voice__inner {
		max-width: 820px;
		margin: 0 auto;
		padding: 0 20px;
	}

	.p-spring-voice__title {
		margin: 0 0 42px;
	}

	.p-spring-voice__items {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 31px 34px;
		margin: 0 auto;
		overflow: visible;
	}
	.p-spring-voice__item {
		gap: 33px;
	}
	.p-spring-voice__item--left, 
	.p-spring-voice__item--right {
		padding: 0;
	}
	.p-spring-voice__item--right {
		gap: 40px;
		order: -1;
	}

	.p-spring-voice__item:nth-child(3) {
		justify-content: center;
		gap: 0;
		grid-column: 1 / -1;
		margin: 0 auto;
	}
	.p-spring-voice__item:nth-child(3) .p-spring-voice__bubble {
		max-width: 50%;
	}

	.p-spring-voice__avatar--green {
		transform: translate(-8px, 0px);
	}
	.p-spring-voice__avatar--red {
		transform: translate(7px, 0px);
	}
	.p-spring-voice__avatar--yellow {
		transform: translate(19px, 0px);
	}
}


/* よくある質問セクション */
.p-spring-faq {
	background-color: #F5F5F5;
	padding: 60px 0 8px;
}

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

.p-spring-faq__title {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.42;
	letter-spacing: 0;
	text-align: center;
	margin: 0 0 19px;
}

.p-spring-faq__items {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
}

/* Q&A タイトル */
.p-spring-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	position: relative;
}
.p-spring-faq__question::before {
	content: "Q";
	position: absolute;
	top: 9px;
    left: 0px;;
	color: #53ACBC;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 3.3rem;
	line-height: 1;
}

/* トグルボタン */
.p-spring-faq__toggle {
	background: none;
	border: none;
	cursor: pointer;
	width: 100%;
	padding: 19px 0;
	display: flex;
	align-items: flex-start;
	border-bottom: 2px dashed rgba(137, 213, 201, 0.4);
}

.p-spring-faq__question-text {
	color: #141429;
	text-transform: uppercase;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	text-align: left;
	margin: 0;
	padding-left: 42px;
	flex: 1;
}

.p-spring-faq__toggle-icon {
	display: block;
	width: 15px;
	height: 15px;
	position: relative;
	transition: transform 0.3s ease;
}

.p-spring-faq__toggle-icon::before {
	content: "";
	position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #E15C45;
    border-right: 2px solid #E15C45;
    top: 12px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

.p-spring-faq__toggle[aria-expanded="true"] .p-spring-faq__toggle-icon {
	transform: translate(20%, 100%) rotate(180deg);
}

/* アンサーセクション */
.p-spring-faq__answer {
	overflow: hidden;
	margin: 0;
	display: none;
}
.p-spring-faq__item:first-child .p-spring-faq__answer {
	display: block;
}

.p-spring-faq__answer-inner {
	padding: 18px 0;
}

.p-spring-faq__toggle[aria-expanded="true"] + .p-spring-faq__answer {
	display: block;
}

.p-spring-faq__answer-text {
	color: #141429;
	text-transform: uppercase;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0 ;
}

/* 各質問ごとに異なる色のQアイコンと三角アイコン */

.p-spring-faq__item:nth-child(2) .p-spring-faq__toggle{
	border-color: rgba(255, 131, 87, 0.4);
}
.p-spring-faq__item:nth-child(3) .p-spring-faq__toggle{
	border-color: rgba(173, 201, 101, 0.4);
}

.p-spring-faq__item:nth-child(2) .p-spring-faq__question::before {
	color: #FF8357;
}
.p-spring-faq__item:nth-child(3) .p-spring-faq__question::before {
	color: #ADC965;
}

.p-spring-faq__item:nth-child(1) .p-spring-faq__toggle-icon::before {
	border-color: #53ACBC;
}

.p-spring-faq__item:nth-child(2) .p-spring-faq__toggle-icon::before {
	border-color: #FF8357;
}

.p-spring-faq__item:nth-child(3) .p-spring-faq__toggle-icon::before {
	border-color: #ADC965;
}

/* タブレット以上 */
@media (min-width: 769px) {
	.p-spring-faq__answer-text {
		margin-bottom: 10px;
	}
}

/* CTAセクション */
.p-spring-cta {
	background-image: url(../../img/sp_to_recruite_bg.webp);
	background-size: cover;
	padding: 78px 0 74px;
	position: relative;
	overflow: hidden;
}

.p-spring-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-color: #F5F5F5;
	width: 100%;
	height: initial;
	aspect-ratio: 390/27;
	z-index: 1;
}

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

.p-spring-cta__title {
	color: #E15C45;
	text-transform: uppercase;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 1.9rem;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
	margin: 0 auto 20px;
	padding: 0 24px;
    width: fit-content;
	position: relative;
}

.p-spring-cta__title::before,
.p-spring-cta__title::after {
	content: "";
	position: absolute;
	top: 0;
	width: 2px;
	height: 22px;
	background-color: #E15C45;
}
.p-spring-cta__title::before {
	left: 0;
	transform: rotate(-30deg);
}
.p-spring-cta__title::after {
	right: 0;
	transform: rotate(33deg);
}

.p-spring-cta__content {
	display: flex;
	flex-direction: column;
	gap: 31px;
	align-items: center;
}

.p-spring-cta__image {
	width: 100%;
	max-width: 390px;
	border-radius: 12px;
	overflow: hidden;
}

.p-spring-cta__image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.p-spring-cta__text-content {
	text-align: center;
	max-width: 364px;
}

.p-spring-cta__heading {
	color: #E15C45;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.42;
	letter-spacing: 0;
	margin: 0 0 20px;
}

.p-spring-cta__description {
	color: #141429;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0 0 17px;
	text-align: left;
}

.p-spring-cta__button .c-button__icon {
	background-color: #FAC172;
}

/* タブレット以上 */
@media (min-width: 769px) {
	.p-spring-cta {
		padding: 161px 0 215px;
		background-image: url(../../img/pc_to_recruite_bg.webp);
	}
	.p-spring-cta__title {
		font-size: 2.9rem;
		margin-bottom: 42px;
		padding: 0 40px;
	}
	.p-spring-cta__title::before,
	.p-spring-cta__title::after {
		height: 38px;
	}
	.p-spring-cta__title::before {
		transform: rotate(-35deg);
	}
	.p-spring-cta__title::after {
		transform: rotate(38deg);
	}
	.p-spring-cta__content {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 29px;
	}
	.p-spring-cta__image,
	.p-spring-cta__text-content {
		flex: 1;
	}
	.p-spring-cta__text-content {
		padding: 4px 0;
	}
	.p-spring-cta__heading {
		margin-bottom: 15px;
	}
}