@charset "utf-8";
body {
	counter-reset: usp-number about-number;
}
summary {
	display: block;
	list-style-type: none;
	cursor: pointer;
	&::marker {
		content: '';
	}
	&::-webkit-details-marker {
		display: none;
	}
}

/***********************************************************************
メインビジュアル
***********************************************************************/
.firstView {
	background-image: url(/area/assets/images/top/FV_left.png), url(/area/assets/images/top/FV_right.png), url(/area/assets/images/top/FV_back.jpg);
	background-repeat: no-repeat;
	background-size: auto 626px, auto 616px, cover;
	background-position: calc(50% - 608px) -4px, calc(50% + 574px) 6px, 50% 50%;
	width: 100%;
	height: 62.2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.mainV {
	font-family: var(--fontFamily-sans-noto);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-block: 2rem 1.5rem;
}
.subCatch {
	font-size: clamp(2rem, var(--sp-20px), 3.7rem);
	color: var(--colorDarkBlue);
	font-weight: 900;
	line-height: 1;
	margin-bottom: 0.3em;
}
h1 {
	font-size: clamp(3.6rem, var(--sp-36px), 7.7rem);
	line-height: 1.2;
	color: var(--colorOrange);
	font-weight: 900;
	margin-bottom: 0.5em;
}
.firstLine {
	font-size: clamp(2.4rem, var(--sp-24px), 5rem);
}
.firstLine span {
	font-family: 'Zen Kaku Gothic New', var(--fontFamily-yugo);
	font-weight: 900;
	font-size: 110%;
	letter-spacing: -0.15em;
}
.mainCatch_s {
	font-size: 78%;
}
.serviceName {
	font-size: clamp(1.6rem, var(--sp-16px), 2.8rem);
	color: var(--colorDarkBlue);
	font-weight: 600;
}
@media screen and (max-width: 1024px) {
	.firstView {
		background-image: url(/area/assets/images/top/FV_sp.png), url(/area/assets/images/top/FV_back_SP.jpg);
		background-size: contain;
		background-position: 50% clamp(15rem, var(--sp-150px), 25rem), 50% 0%;
		height: fit-content;
	}
	h1 {
		margin-bottom: 0.3em;
	}
	.mainV {
		margin-bottom: 51vw;
	}
	.satisfaction_emblem {
		background-image: linear-gradient(transparent, #fff 2vw);
		width: 100% !important;
		padding: 6vw 3vw;
	}
}

/* emblem */
.satisfaction_emblem {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	gap: 0 30px;
}
.satisfaction_emblem .emblemArea {
	width: 200px;
}
.satisfaction_emblem p {
	font-size: 1.1rem;
	line-height: 1.2;
	color: #777777;
	margin-top: 4px;
	text-indent: -1em;
	padding-left: 1em;
	text-align: justify;
}
.satisfaction_emblem img {
	height: auto;
}
@media screen and (min-width: 961px) {
	.show_more {
		display: none;
	}
}
@media screen and (max-width: 960px) {
	.leadWrap {
		flex-wrap: wrap;
	}
	.leadWrap_ttl {
		font-feature-settings: 'palt';
		margin-top: 20px;
	}
	.satisfaction_emblem {
		margin: 0 auto;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		width: 95%;
		gap: 0 9px;
	}
	.satisfaction_emblem .emblemArea {
		width: 33.333%;
	}
	.satisfaction_emblem p {
		font-size: 1.15rem;
		line-height: 1.1;
		margin-top: 2px;
		position: relative;
		text-align: left;
	}
	/*-- ここからアコーディオン --*/
	.hideTxt {
		position: relative;
	}
	.hideTxt::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, #fff 100%);
	}
	.showMore .hideTxt::after {
		opacity: 0;
	}
	.hideTxt {
		max-height: 1.3em;
		overflow: hidden;
	}
	.hideTxt,
	.hideTxt::after {
		transition: 0.2s;
	}
	.showMore .hideTxt {
		max-height: 100vh;
	}
	.showMore .hideTxt,
	.showMore .hideTxt::after {
		transition: 0.5s;
	}
	.satisfaction_emblem .emblemArea .show_more {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: safe flex-end;
		z-index: 2;
		margin: -20px auto 0;
		height: 20px;
		cursor: pointer;
		font-size: 20px;
		color: #ccc;
	}
	.show_more_txt {
		position: relative;
		transition: 0.2s opacity;
	}
	.show_more_txt.on {
		opacity: 1;
		font-size: 100%;
		line-height: 1;
		background: #fff;
	}
	.show_more_txt.off {
		opacity: 0;
		font-size: 0;
	}
}

/***********************************************************************
メインコンテンツ
***********************************************************************/
main {
	width: 100%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1px;
}

/***********************************************************************
リード
***********************************************************************/
.leadWrap {
	width: 100%;
	background-color: #fbfeff;
	background-image: url(/area/assets/images/top/lead_bg_left.svg), url(/area/assets/images/top/lead_bg_right.svg);
	background-repeat: no-repeat;
	background-position: 0 0, 100% 0;
	background-size: auto 100%;
	padding-block: clamp(6rem, var(--sp-60px), 7rem);
	padding-inline: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.leadWrap .inner {
	width: 100%;
	max-width: 76rem;
	background-color: rgba(251, 254, 255, 0.3);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	padding: 3rem;
}
.leadWrap h2 {
	font-family: var(--fontFamily-sans-noto);
	font-weight: 900;
	font-size: clamp(2.4rem, var(--sp-24px), 3.2rem);
	line-height: 1.2;
	color: var(--colorLightBlue);
	position: relative;
	margin-bottom: clamp(5.5rem, var(--sp-55px), 7rem);
}
.leadWrap h2 span {
	font-size: 150%;
	display: block;
}
.leadWrap h2::after {
	position: absolute;
	content: '';
	width: 9em;
	height: 0.4rem;
	left: 0;
	bottom: -0.75em;
	background-color: var(--colorLightBlue);
}
@media screen and (max-width: 1024px) {
	.leadWrap {
		background-image: url(/area/assets/images/top/lead_bg_start.svg), url(/area/assets/images/top/lead_bg_end.svg);
		background-repeat: no-repeat;
		background-size: auto;
		background-position: 0 0, 100% 100%;
	}
	.leadWrap .inner {
		background-color: unset;
		backdrop-filter: unset;
		-webkit-backdrop-filter: unset;
		padding: unset;
	}
}

/***********************************************************************
背景固定
***********************************************************************/
.backFixed {
	position: relative;
	z-index: 0;
}
.backFixed .bgWrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: inset(0);
	z-index: -1;
}
.backFixed .bgWrap .bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	background-repeat: no-repeat;
	background-size: auto;
}

/***********************************************************************
対策一覧
***********************************************************************/
.examWrap {
	width: 100%;
	background-color: #daf0fa;
	padding-block: 6rem;
	padding-inline: 2rem;
	display: flex;
	justify-content: center;
}
.examWrap .bg {
	background-image: url(/area/assets/images/top/exam_back_leftTop.svg), url(/area/assets/images/top/exam_back_rightTop.svg), url(/area/assets/images/top/exam_back_leftBottom.svg), url(/area/assets/images/top/exam_back_rightBottom.svg);
	background-position: 0 65px, 100% 65px, 0 100%, 100% 100%;
}
.examWrap .inner {
	background-color: rgba(255, 255, 255, 0.75);
	box-shadow: 0 0 16px rgba(90, 116, 128, 0.35);
	width: 100%;
	max-width: 1022px;
	border-radius: 1rem;
	padding: 5.5rem 3.6rem;
}
.examWrap .inner > div:not(:last-of-type) {
	margin-bottom: 12rem;
	position: relative;
}
.examWrap .inner > div:not(:last-of-type)::after {
	position: absolute;
	content: '';
	background-color: #c0c0c0;
	height: 1px;
	width: 98%;
	left: 50%;
	bottom: -6.3rem;
	transform: translateX(-50%);
}
.examWrap h2 {
	text-align: center;
	font-family: var(--fontFamily-sans-noto);
	font-weight: 900;
	font-size: clamp(2.4rem, var(--sp-24px), 4.15rem);
	line-height: 1.2;
	color: var(--colorDarkBlue);
	letter-spacing: 0.03em;
}
.examWrap h2 strong {
	font-weight: 900;
}
.examWrap .examlabel {
	font-weight: 700;
	font-size: clamp(1.7rem, var(--sp-17px), 2.8rem);
	line-height: 1;
	border-radius: 0.5rem;
	padding: clamp(0.6rem, var(--sp-6px), 1rem) clamp(1rem, var(--sp-10px), 2rem);
	text-align: center;
	display: block;
	width: fit-content;
	color: #fff;
	margin: 0 auto 0.25em;
	letter-spacing: 0.1em;
}
.voiceWrap {
	display: flex;
	justify-content: space-between;
	gap: 3rem;
	margin-block: 2.4rem;
}
.voiceBox {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 1rem;
	border: 1px solid #fff;
	box-shadow: 0 8px 16px rgba(0, 0, 50, 0.1);
	padding: 1.6rem;
	position: relative;
	width: 100%;
}
.voiceBox::after {
	position: absolute;
	content: '';
	background-image: url(/mega/wp-content/themes/site/images/pass/passStamp.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50% 50%;
	width: 10.5rem;
	aspect-ratio: 105/99;
	top: -1rem;
	right: -1rem;
	transform: rotate(8deg);
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.15));
}
.voiceBox p {
	margin-bottom: 0;
	line-height: 1;
}
.voiceBox p span {
	color: #fff;
	line-height: 1;
	display: inline-block;
	text-align: center;
}
.voiceBox .before_after {
	background-color: #fff;
	border-radius: 1rem;
	border: 3px solid;
	padding: 2rem 2.2rem 1.6rem;
	font-family: var(--fontFamily-sans-noto);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.4rem;
	margin-bottom: 1rem;
}
.exam_before {
	font-weight: 500;
	font-size: clamp(2.1rem, var(--sp-21px), 2.7rem);
	color: var(--colorDarkBlue);
}
.exam_after {
	font-weight: 700;
	font-size: clamp(2.3rem, var(--sp-23px), 3rem);
	color: var(--colorOrange);
}
:is(.exam_before, .exam_after) span {
	font-family: 'Oswald';
	font-weight: 600;
	font-size: clamp(2rem, var(--sp-20px), 2.6rem);
	letter-spacing: 0.03em;
	padding-block: 0.4rem;
	width: 3.5em;
	margin-right: 0.6rem;
}
.exam_before span {
	background-color: var(--colorLightBlue);
}
.exam_after span {
	background-color: var(--colorOrange);
}
:is(.exam_school, .exam_name) {
	margin-inline: 0.5em;
}
.exam_school {
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 0.35em !important;
}
.exam_school span {
	background-color: var(--colorMidNightBlue);
	padding: 0.25em 1rem;
	margin-right: 0.6rem;
}
.exam_name {
	text-align: right;
}
.exam_thum {
	width: 39rem;
	aspect-ratio: 390/200;
	margin: 2rem auto 0;
}
.highschoolBox {
	.examlabel {
		background-color: #eb2460;
	}
	.voiceBox {
		background-image: linear-gradient(#ffdfeb, #fff1ee);
	}
	.before_after {
		border-color: #eb2460;
	}
	.middleCTA {
		background-color: #eb2460;
	}
}
.regularBox {
	.examlabel {
		background-color: var(--colorLightBlue);
	}
	.voiceBox {
		background-image: linear-gradient(#dff0ff, #f3eeff);
	}
	.voiceBox::after {
		background-image: url(/chuugaku/wp-shiritsu/wp-content/themes/shiritsu/images/voice/icon_seiseki.png);
		aspect-ratio: 458/411;
		transform: unset;
		@media screen and (max-width: 600px) {
			top: -0.5rem;
			right: -0.5rem;
			width: 7rem;
		}
	}
	.before_after {
		border-color: var(--colorLightBlue);
	}
	.middleCTA {
		background-color: var(--colorLightBlue);
	}
}
.universityBox {
	.examlabel {
		background-color: #f7af00;
	}
	.voiceBox {
		background-image: linear-gradient(#fff6df, #fff1ee);
	}
	.before_after {
		border-color: var(--colorOrange);
	}
	.middleCTA:first-of-type {
		background-color: #f7af00;
	}
	.middleCTA:last-of-type {
		background-color: var(--colorOrange);
	}
}
@media screen and (max-width: 834px) {
	.examWrap .bg {
		background-size: contain !important;
		background-position: 0 25.5vw, 100% 25.5vw, 0 100%, 100% 100%;
	}
	.examWrap .inner > div:not(:last-of-type) {
		margin-bottom: 8rem;
	}
	.examWrap .inner > div:not(:last-of-type)::after {
		bottom: -4rem;
	}
	.examWrap h2 {
		text-align: left;
	}
	.examWrap .examlabel {
		margin-inline: 0 auto;
	}
	.examWrap .inner {
		padding: 5.4vw 4.3vw;
	}
	.voiceWrap {
		flex-direction: column;
		gap: 3vw;
		margin-block: 4vw 6vw;
	}
	.voiceBox .before_after {
		padding: 1.6rem 1.8rem;
	}
	.voiceBox::after {
		width: 8rem;
	}
	:is(.exam_school, .exam_name) {
		margin-inline: unset;
	}
	.exam_school {
		display: flex;
		align-items: center;
		line-height: 1.2 !important;
	}
	.exam_school span {
		display: flex;
		justify-content: center;
		align-items: center;
		padding-inline: unset;
		width: 4em;
	}
	.exam_name {
		text-align: left;
		line-height: 1.2 !important;
	}
	.exam_thum {
		margin-top: 1rem;
	}
}

/***********************************************************************
USP一覧
***********************************************************************/
.uspWrap {
	background-color: #fffaf1;
	background-image: url(/area/assets/images/top/usp_back.png);
	padding-block: 7rem 10rem;
	width: 100%;
	padding-inline: 2rem;
	overflow: hidden;
}
.uspWrap h2 {
	font-family: var(--fontFamily-sans-noto);
	font-weight: 900;
	font-size: clamp(2.8rem, var(--sp-28px), 5rem);
	color: #3e3a39;
	text-align: center;
	position: relative;
	margin-bottom: 3rem;
}
.uspWrap h2::after {
	position: absolute;
	content: '';
	background-image: url(/area/assets/images/top/usp_pencil.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 11rem;
	aspect-ratio: 85/111;
	right: calc(50% - 9.75em);
	bottom: 0.5rem;
}
.uspWrap h2 span {
	line-height: 1;
}
.uspWrap h2 .balloon {
	display: block;
	background-color: #fff;
	border-radius: 50em;
	position: relative;
	filter: drop-shadow(0 0 10px #f1cf90);
	font-size: clamp(2rem, var(--sp-20px), 3.8rem);
	color: var(--colorOrange);
	width: fit-content;
	padding: 0.45em 1.4em;
	margin: 0 auto 0.5em;
}
.uspWrap h2 .balloon::after {
	position: absolute;
	content: '';
	background-color: #fff;
	width: 0.75em;
	height: 0.5em;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	left: 50%;
	bottom: -0.49em;
	transform: translateX(-50%);
}
.uspWrap h2 .txtblue {
	color: var(--colorLogoBlue) !important;
	font-size: 120%;
}
.uspWrap h2 .txtsmall {
	font-size: 85%;
}
.uspWrap .uspCard {
	width: 100%;
	max-width: 1100px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.8rem;
	margin: 0 auto 3rem;
}
.uspWrap .uspCard div {
	background-color: #fff;
	border-radius: 2rem;
	box-shadow: -5px -5px 10px #fffbf4, 5px 5px 10px rgba(111, 100, 29, 0.15);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1.8rem;
	padding-block: 11.5rem 2rem;
	padding-inline: 2rem;
	position: relative;
}
.uspWrap .uspCard div::before {
	position: absolute;
	content: '';
	background-color: rgba(0, 56, 168, 0.3);
	width: 124px;
	height: 2px;
	left: 50%;
	top: 8rem;
	transform: translateX(-50%);
}
.uspWrap .uspCard div p {
	font-family: var(--fontFamily-sans-noto);
	font-weight: 700;
	font-size: clamp(1.8rem, var(--sp-18px), 2.7rem);
	line-height: 1.2;
	margin-bottom: 0;
	text-align: center;
	min-height: 3.6em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.uspWrap .uspCard div p::before,
.uspWrap .uspCard div p::after {
	position: absolute;
	font-family: 'Oswald';
	font-weight: 400;
	color: rgba(0, 56, 168, 0.3);
	line-height: 1;
	left: 50%;
	transform: translateX(-50%);
}
.uspWrap .uspCard div p::before {
	content: 'FEATURE';
	font-size: 1.8rem;
	top: -8rem;
}
.uspWrap .uspCard div p::after {
	counter-increment: usp-number 1;
	content: counter(usp-number, decimal-leading-zero) '';
	font-size: clamp(3.4rem, var(--sp-34px), 5rem);
	top: -6rem;
	background-color: #fff;
	padding-inline: 0.1em;
}
.uspWrap .uspCard div img {
	width: 100%;
	height: 18rem;
	border-radius: 0.8rem;
	object-fit: cover;
}
@media screen and (max-width: 834px) {
	.uspWrap {
		padding-block: 4rem 5.6rem;
		background-size: 10%;
	}
	.uspWrap h2 {
		margin-bottom: 1.5rem;
	}
	.uspWrap h2 .balloon {
		filter: drop-shadow(0 0 6px #f1cf90);
		margin-bottom: 0.75em;
	}
	.uspWrap h2 .txtblue {
		font-size: 100%;
	}
	.uspWrap h2::after {
		right: -7rem;
		bottom: -1.3rem;
	}
	.uspWrap .uspCard {
		display: flex;
		flex-direction: column;
		gap: 3vw;
	}
	.uspWrap .uspCard div {
		flex-direction: unset;
		justify-content: space-between;
		align-items: flex-end;
		padding: 4vw 4.3vw;
		gap: 1vw;
	}
	.uspWrap .uspCard div::before {
		display: none;
	}
	.uspWrap .uspCard div p {
		text-align: left;
		margin-top: 13vw;
		min-height: unset;
	}
	.uspWrap .uspCard div p::before,
	.uspWrap .uspCard div p::after {
		transform: unset;
	}
	.uspWrap .uspCard div p::before {
		font-size: 4vw;
		left: 0;
		top: -8.75vw;
	}
	.uspWrap .uspCard div p::after {
		left: 13vw;
		background-color: unset;
		top: -11.5vw;
	}
	.uspWrap .uspCard div img {
		width: 38vw;
		height: auto;
	}
}

/***********************************************************************
オンライン指導について
***********************************************************************/
.aboutWrap {
	background-color: #fff;
	background-image: url(/area/assets/images/top/about_back_left.png), url(/area/assets/images/top/about_back_right.png);
	background-repeat: repeat-y;
	background-position: 0 0, 100% 0;
	padding-bottom: 10rem;
	width: 100%;
}
.aboutWrap .h2wrap {
	background-color: #f7af00;
	padding-inline: 1rem;
	padding-block: 3rem;
	position: relative;
	filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 8.6rem;
}
.aboutWrap .h2wrap::after {
	position: absolute;
	content: '';
	background-color: #f7af00;
	width: 45rem;
	height: 5rem;
	left: 50%;
	bottom: -4.9rem;
	transform: translateX(-50%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.aboutWrap .h2wrap h2 {
	background-color: #fff;
	border-radius: 50em;
	font-family: var(--fontFamily-sans-noto);
	font-weight: 900;
	font-size: clamp(1.8rem, var(--sp-18px), 4.5rem);
	line-height: 1;
	color: var(--colorDarkBlue);
	position: relative;
	padding-inline: 11rem 30rem;
	padding-block: 5rem;
	width: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 4px 4px 0 rgba(255, 89, 0, 0.5);
}
.aboutWrap .h2wrap h2 span {
	font-size: 150%;
	color: var(--colorOrange);
	display: block;
	margin-top: 0.1em;
}
.aboutWrap .h2wrap h2::after {
	position: absolute;
	content: '';
	background-image: url(/area/assets/images/top/aboutTtl_img.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 175px;
	aspect-ratio: 175/159;
	right: 11rem;
	top: 50%;
	transform: translateY(-50%);
}
.aboutWrap .inner {
	width: 100%;
	max-width: 90rem;
	margin: 0 auto;
	position: relative;
}
.aboutWrap .inner:not(:last-of-type) {
	margin-bottom: 12rem;
}
.aboutWrap h3 {
	font-family: var(--fontFamily-sans-noto);
	font-weight: 900;
	font-size: clamp(2.2rem, var(--sp-22px), 3.2rem);
	line-height: 1.3;
	color: var(--colorLightBlue);
	position: relative;
	padding-top: 1.2em;
	margin-bottom: 2.6rem;
}
.aboutWrap h3::before,
.aboutWrap h3::after {
	position: absolute;
}
.aboutWrap h3::before {
	font-family: 'Oswald';
	font-weight: 500;
	font-size: clamp(1.9rem, var(--sp-19px), 3rem);
	line-height: 1;
	color: #f7af00;
	counter-increment: about-number 1;
	content: 'POINT ' counter(about-number, decimal-leading-zero);
	padding-right: 0.25em;
	z-index: 1;
	left: 0;
	top: 0;
}
.aboutWrap h3::after {
	content: '';
	width: 10em;
	height: 3px;
	left: 3.75em;
	top: 0.45em;
	background-color: #f7af00;
}
.aboutWrap strong {
	color: #000;
}
.aboutWrap strong span {
	color: var(--colorOrange);
}
.aboutWrap .imgLazy {
	display: block;
	width: 100%;
	max-width: 715px;
	margin: 0 auto;
	padding-block: 2rem 3rem;
}
.aboutWrap .voiceBox.seiseki::after {
	background-image: url(/chuugaku/wp-shiritsu/wp-content/themes/shiritsu/images/voice/icon_seiseki.png);
	aspect-ratio: 458/411;
	transform: unset;
	@media screen and (max-width: 600px) {
		top: -0.5rem;
		right: -0.5rem;
		width: 7rem;
	}
}
@media screen and (max-width: 834px) {
	.aboutWrap {
		background-size: 16% auto;
		padding-bottom: 6rem;
	}
	.aboutWrap .h2wrap {
		padding-block: 1rem;
		margin-bottom: 10.5vw;
	}
	.aboutWrap .h2wrap::after {
		width: 36vw;
		height: 5vw;
		bottom: -4.9vw;
	}
	.aboutWrap .h2wrap h2 {
		width: 100%;
		padding-inline: clamp(4.5rem, var(--sp-45px), 7.5rem);
		padding-block: 0.86em;
		line-height: 1.2;
	}
	.aboutWrap .h2wrap h2::after {
		background-image: url(/area/assets/images/top/aboutTtl_img_sp.svg);
		width: 24vw;
		right: clamp(4.5rem, var(--sp-45px), 7.5rem);
		top: 55%;
	}
	.aboutWrap .inner {
		padding-inline: 3rem;
	}
	.aboutWrap .inner:not(:last-of-type) {
		margin-bottom: 20vw;
	}
	.aboutWrap h3::after {
		left: 20vw;
		height: 1px;
		width: 48vw;
		top: 2.5vw;
	}
}

/* 体験記 */
.aboutWrap {
	.voiceBox {
		background-image: linear-gradient(#fff6df, #fff1ee);
	}
	.before_after {
		border-color: var(--colorOrange);
	}
}
/* 教師スライダー */
.aboutWrap .inner:last-of-type p {
	margin-bottom: 0;
}

/***********************************************************************
メディア掲載
***********************************************************************/
.mediaWrap {
	background-color: #dfefff;
	padding-block: 9rem;
	padding-inline: 2rem;
	width: 100%;
}
.mediaWrap .bg {
	background-image: url(/area/assets/images/top/media_back_left.svg), url(/area/assets/images/top/media_back_right.svg);
	background-position: 0 65px, 100% 100%;
}
@media screen and (max-width: 834px) {
	.mediaWrap {
		padding-block: 4.8rem 5rem;
	}
	.mediaWrap .bg {
		background-size: 55vw !important;
		background-position: 0 12.7rem, 100% 100%;
	}
}
@media screen and (max-width: 600px) {
	.mediaWrap .bg {
		background-position: 0 25.5vw, 100% 100%;
	}
}

/***********************************************************************
保証制度
***********************************************************************/
.warrantyWrap {
	width: 100%;
	background-color: #fff5e9;
	background-image: linear-gradient(#fff5e9 2rem, transparent 4rem calc(100% - 4rem), #fff5e9 calc(100% - 2rem)), url(/area//assets/images/top/warranty_bg_left.jpg), url(/area/assets/images/top/warranty_bg_right.jpg);
	background-repeat: no-repeat;
	background-size: cover, 320px auto, 320px auto;
	background-position: 50% 50%, calc(50% - 570px) 50%, calc(50% + 570px) 50%;
}
.warrantyWrap .inner {
	width: 100%;
	max-width: 900px;
	background-image: linear-gradient(90deg, transparent, #fff5e9 2rem calc(100% - 2rem), transparent);
	margin: 0 auto;
	padding-inline: 5rem;
	padding-block: 7rem;
}
.warrantyWrap h2 {
	font-family: var(--fontFamily-serif-noto);
	font-weight: 900;
	font-size: clamp(2.2rem, var(--sp-22px), 4.3rem);
	line-height: 1.2;
	color: var(--colorLogoBlue);
	text-align: center;
	margin-bottom: 3.4rem;
}
.warrantyWrap h2 .balloon {
	background-color: #fff;
	border-radius: 50em;
	font-family: var(--fontFamily-sans-noto);
	font-weight: 700;
	font-size: clamp(1.6rem, var(--sp-16px), 2.4rem);
	color: var(--colorDarkBlue);
	line-height: 1;
	display: block;
	width: fit-content;
	margin: 0 auto 2rem;
	position: relative;
	padding-block: 0.6em;
	padding-inline: 1.75em;
	filter: drop-shadow(0 2px 4px rgba(178, 148, 111, 0.5));
}
.warrantyWrap h2 .balloon::after {
	position: absolute;
	content: '';
	background-color: #fff;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	width: 1.5em;
	height: 0.75em;
	left: 50%;
	bottom: -0.74em;
	transform: translateX(-50%);
}
.warrantyWrap .mincho {
	font-family: var(--fontFamily-serif-noto);
	font-weight: 900;
}
.warrantyWrap h2 .balloon .mincho {
	font-size: 120%;
}
.warrantyWrap h2 .smallTxt {
	font-size: 85%;
}
.warrantyWrap h2 strong,
.warrantyWrap h2 .bigTxt {
	font-family: var(--fontFamily-sans-noto);
	font-weight: 900;
	font-size: 124%;
}
.warrantyWrap p {
	text-align: center;
	position: relative;
	margin-bottom: 4rem;
}
.warrantyWrap p::before,
.warrantyWrap p::after {
	position: absolute;
	content: '';
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	filter: drop-shadow(2px 2px 8px rgba(92, 75, 53, 0.25));
}
.warrantyWrap p::before {
	background-image: url(/mega/wp-content/themes/site/images/reason/warranty01.svg);
	width: 132px;
	aspect-ratio: 132/147;
	left: calc(50% - 41rem);
}
.warrantyWrap p::after {
	background-image: url(/mega/wp-content/themes/site/images/reason/warranty02.svg);
	width: 131px;
	aspect-ratio: 131/149;
	right: calc(50% - 41rem);
}
.warrantyWrap .buttonWrap {
	flex-direction: row;
}
.warrantyWrap .buttonWrap a {
	width: 50%;
}
.warrantyWrap .buttonWrap a:last-child {
	background-color: var(--colorOrange);
}
@media screen and (max-width: 834px) {
	.warrantyWrap {
		background-image: unset;
	}
	.warrantyWrap .inner {
		padding-block: 3.4rem 5rem;
		padding-inline: 2rem;
	}
	.warrantyWrap h2 {
		margin-bottom: 5vw;
	}
	.warrantyWrap h2 .balloon {
		padding-block: 0.75em;
		padding-inline: 1.1em;
	}
	.warrantyWrap h2 .smallTxt {
		font-size: 100%;
	}
	.warrantyWrap h2 strong,
	.warrantyWrap h2 .bigTxt {
		font-size: 137%;
	}
	.warrantyWrap p {
		text-align: left;
		margin-bottom: 2rem;
	}
	.warrantyWrap p::before,
	.warrantyWrap p::after {
		top: -23vw;
		transform: unset;
	}
	.warrantyWrap p::before {
		width: 15vw;
		left: -0.5rem;
	}
	.warrantyWrap p::after {
		width: 14.8vw;
		right: -1rem;
	}
	.warrantyWrap img {
		margin-bottom: 3rem;
	}
	.warrantyWrap .buttonWrap {
		flex-direction: column;
	}
	.warrantyWrap .buttonWrap a {
		width: 90%;
	}
}

/***********************************************************************
FAQ
***********************************************************************/
.FAQwrap {
	width: 100%;
	background-image: linear-gradient(90deg, #fafafa, #fff 20% 80%, #fafafa);
	padding-inline: 2rem;
	padding-block: 10rem;
}
.FAQwrap h2 {
	font-family: var(--fontFamily-sans-noto);
	font-weight: 500;
	font-size: clamp(2.8rem, var(--sp-28px), 4.2rem);
	text-align: center;
	margin: 0 auto 7rem;
	color: var(--colorMidNightBlue);
	position: relative;
}
.FAQwrap h2 strong {
	font-weight: 900;
	font-size: 120%;
}
.FAQwrap h2::before,
.FAQwrap h2::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.FAQwrap h2::before {
	content: 'FAQ';
	font-family: 'Oswald';
	font-weight: 400;
	font-size: clamp(2.4rem, var(--sp-24px), 2.9rem);
	color: rgba(36, 57, 123, 0.3);
	letter-spacing: 0.3em;
	top: -1.2em;
}
.FAQwrap h2::after {
	content: '';
	width: 4.5em;
	height: 3px;
	background-color: var(--colorMidNightBlue);
	bottom: -0.5em;
}
.FAQwrap .inner {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
}
.FAQwrap .inner:last-of-type {
	margin-bottom: 4rem;
}
.FAQwrap .inner:not(:last-of-type) {
	margin-bottom: 9rem;
	position: relative;
}
.FAQwrap .inner:not(:last-of-type)::after {
	position: absolute;
	content: '';
	width: 950px;
	height: 2px;
	background-color: #d9d9d9;
	left: 50%;
	bottom: -4.2rem;
	transform: translateX(-50%);
}
.FAQwrap :is(.question, .answer) {
	font-family: var(--fontFamily-sans-noto);
	font-weight: 700;
	font-size: clamp(2rem, var(--sp-20px), 2.8rem);
	line-height: 1.2;
	margin-bottom: 0;
	padding-left: clamp(5.6rem, var(--sp-56px), 8.6rem);
	position: relative;
	display: flex;
	align-items: center;
}
.FAQwrap .question {
	color: var(--colorMidNightBlue);
	margin-bottom: clamp(1.5rem, var(--sp-15px), 2.75rem);
}
.FAQwrap .answer {
	color: var(--colorOrange);
	margin-bottom: 0.75rem;
}
.FAQwrap .question::before,
.FAQwrap .answer::before {
	position: absolute;
	content: '';
	background-repeat: no-repeat;
	background-size: cover;
	width: clamp(5rem, var(--sp-50px), 7.4rem);
	background-position: bottom center;
	aspect-ratio: 55/39;
	left: 0;
	top: -0.15em;
}
.FAQwrap .question::before {
	background-image: url(/area/assets/images/top/FAQicon_Q.svg);
}
.FAQwrap .answer::before {
	background-image: url(/area/assets/images/top/FAQicon_A.svg);
}
.FAQwrap .answerTxt {
	margin-left: clamp(5.6rem, var(--sp-56px), 8.6rem);
}
@media screen and (max-width: 834px) {
	.FAQwrap {
		padding-block: 7rem 5rem;
	}
	.FAQwrap :is(.question, .answer) {
		line-height: 1.3;
	}
	.FAQwrap .answerTxt {
		line-height: 1.6;
	}

	.FAQwrap .inner:last-of-type {
		margin-bottom: 3rem;
	}
	.FAQwrap .inner:not(:last-of-type) {
		margin-bottom: 6rem;
	}
	.FAQwrap .inner:not(:last-of-type)::after {
		width: 100%;
		height: 1px;
		bottom: -3rem;
	}
}
