@font-face {
	font-family: "notoSerifJpBold";
	src: url("../../fonts/lp/NotoSerifJP-ExtraBold.ttf") format("truetype");
}
@font-face {
	font-family: "notoSerifJpReg";
	src: url("../../fonts/lp/NotoSerifJP-Regular.ttf") format("truetype");
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	pointer-events: auto;
}

body {
	margin: 0;
	padding: 0;
}

.wrapper {
	padding-top: 9.6rem;
}

a {
	text-decoration: none;
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
span,
a,
label {
	font-family: "noto-sans-cjk-jp", sans-serif;
	color: #000000;
	font-weight: 400;
}

.bold {
	font-weight: 700;
}

.serif {
	font-family: "notoSerifJpBold";
}

li {
	list-style: none;
}

img {
	height: auto;
	width: 100%;
	vertical-align: bottom;
}

@media (min-width: 1024px) {
	.sp__only {
		display: none;
	}
}

.pc__only {
	display: none;
}
@media (min-width: 1024px) {
	.pc__only {
		display: unset;
	}
}

.aspect {
	position: relative;
	overflow: hidden;
	padding-top: 56.25%;
}
.aspect img {
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
}

.spacer__px {
	padding-left: calc((100vw - 343px) / 2);
	padding-right: calc((100vw - 343px) / 2);
}
@media (min-width: 1024px) {
	.spacer__px {
		padding-left: calc((100vw - 960px) / 2);
		padding-right: calc((100vw - 960px) / 2);
	}
}

@media (min-width: 1024px) {
	.spacer__px--560 {
		padding-left: calc((100vw - 560px) / 2);
		padding-right: calc((100vw - 560px) / 2);
	}
}

@media (min-width: 1024px) {
	.spacer__px--720 {
		padding-left: calc((100vw - 720px) / 2);
		padding-right: calc((100vw - 720px) / 2);
	}
}

@media (min-width: 1024px) {
	.spacer__px--760 {
		padding-left: calc((100vw - 760px) / 2);
		padding-right: calc((100vw - 760px) / 2);
	}
}

@media (min-width: 1024px) {
	.spacer__px--800 {
		padding-left: calc((100vw - 800px) / 2);
		padding-right: calc((100vw - 800px) / 2);
	}
}

.spacer__mx {
	margin-left: calc((100vw - 343px) / 2);
	margin-right: calc((100vw - 335px) / 2);
}
@media (min-width: 1024px) {
	.spacer__mx {
		margin-left: calc((100vw - 960px) / 2);
		margin-right: calc((100vw - 960px) / 2);
	}
}

.spacer__pt {
	padding-top: 6.4rem;
}
@media (min-width: 1024px) {
	.spacer__pt {
		padding-top: 100px;
	}
}

.spacer__pb {
	padding-bottom: 6.4rem;
}
@media (min-width: 1024px) {
	.spacer__pb {
		padding-bottom: 100px;
	}
}

.spacer__mt {
	margin-top: 6.4rem;
}
@media (min-width: 1024px) {
	.spacer__mt {
		margin-top: 100px;
	}
}

.spacer__mb {
	margin-bottom: 6.4rem;
}
@media (min-width: 1024px) {
	.spacer__mb {
		margin-bottom: 100px;
	}
}

.section__title {
	margin-bottom: 3.2rem;
}
@media (min-width: 1024px) {
	.section__title {
		margin-bottom: 4.8rem;
	}
}
.section__title h3 {
	font-size: 2rem;
	line-height: 1.4;
	text-align: center;
}
@media (min-width: 1024px) {
	.section__title h3 {
		font-size: 4rem;
	}
}
.section__title h3 .bg {
	background-color: #000000;
	color: #ffffff;
	font-size: 2.4rem;
	line-height: 1.5em;
	padding: 0 1.6rem;
}
@media (min-width: 1024px) {
	.section__title h3 .bg {
		font-size: 5.6rem;
		padding: 0 2.4rem;
	}
}
.section__title h3 .bg__noPr {
	padding-right: 0;
}
.section__title h3 .mr {
	margin-right: 0.4rem;
}

.section__title--shrink .bg {
	letter-spacing: -0.05em;
}

.section__title--white h3 {
	color: white;
}

.corners {
	clip-path: polygon(
		8px 0%,
		calc(100% - 8px) 0%,
		100% 8px,
		100% calc(100% - 8px),
		calc(100% - 8px) 100%,
		8px 100%,
		0% calc(100% - 8px),
		0% 8px
	);
}
@media (min-width: 1024px) {
	.corners {
		clip-path: polygon(
			40px 0%,
			calc(100% - 40px) 0%,
			100% 40px,
			100% calc(100% - 40px),
			calc(100% - 40px) 100%,
			40px 100%,
			0% calc(100% - 40px),
			0% 40px
		);
	}
}

.single__problem {
	display: grid;
	grid-template-rows: repeat(3, max-content);
}
@media (min-width: 1024px) {
	.single__problem {
		grid-template-rows: max-content 88px max-content;
	}
}
.single__problem--title {
	font-size: 2rem;
	line-height: 160%;
	padding: 0 2rem;
	background-color: #004896;
	position: relative;
	z-index: 2;
	width: max-content;
	margin: 0 auto;
}
@media (min-width: 1024px) {
	.single__problem--title {
		font-size: 2.4rem;
	}
}
.single__problem--title::before {
	content: "";
	position: absolute;
	width: calc(100% + 1.2px);
	height: calc(100% + 1.2px);
	background-color: white;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	clip-path: polygon(
		8px 0%,
		calc(100% - 8px) 0%,
		100% 8px,
		100% calc(100% - 8px),
		calc(100% - 8px) 100%,
		8px 100%,
		0% calc(100% - 8px),
		0% 8px
	);
}
.single__problem--lists {
	margin-top: 1.2rem;
	padding-left: 1.6rem;
}
@media (min-width: 1024px) {
	.single__problem--lists {
		margin-top: 0.8rem;
	}
}
.single__problem--lists li {
	font-size: 1.5rem;
	line-height: 180%;
	position: relative;
}
@media (min-width: 1024px) {
	.single__problem--lists li {
		font-size: 1.6rem;
	}
}
.single__problem--lists li::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 8px;
	background-color: #000000;
	position: absolute;
	top: 12px;
	left: -1.2rem;
}
.single__problem--img {
	margin-top: 1.6rem;
}
@media (min-width: 1024px) {
	.single__problem--img {
		margin-top: 2.4rem;
	}
}

.single__point {
	background-color: #ffffff;
	border: 2px solid #004896;
	display: grid;
	gap: 1.2rem;
	padding: 1.6rem;
	position: relative;
}
@media (min-width: 1024px) {
	.single__point {
		grid-template-rows: repeat(2, max-content);
	}
}
.single__point--title {
	font-size: 2rem;
	line-height: 120%;
}
.single__point--text {
	font-size: 1.5rem;
	line-height: 180%;
}
.single__point--text .bg {
	font-size: 1.8rem;
}

.single__point::before {
	position: absolute;
	content: url(" ../../img/lp/icon/triangle.svg ");
	height: 24px;
	width: 24px;
	top: 0;
	right: 0;
}

.single__reason {
	display: grid;
}
@media (min-width: 1024px) {
	.single__reason {
		grid-template-columns: 530px 1fr;
		grid-template-rows: max-content 1fr;
		column-gap: 1.6rem;
		row-gap: 0.8rem;
	}
}
.single__reason--title {
	background-color: #004896;
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 0.8rem;
	padding: 0.8rem;
	align-items: center;
	position: relative;
}
@media (min-width: 1024px) {
	.single__reason--title {
		grid-area: 1/1/2/2;
		gap: 1.6rem;
		padding-left: 1.6rem;
	}
}
.single__reason--title p {
	color: #ffffff;
}
.single__reason--title .num {
	font-size: 3.2rem;
	line-height: 100%;
	font-weight: 900;
}
@media (min-width: 1024px) {
	.single__reason--title .num {
		font-size: 5rem;
	}
}
.single__reason--title .title {
	line-height: 160%;
	font-size: 1.8rem;
}
@media (min-width: 1024px) {
	.single__reason--title .title {
		font-size: 2.4rem;
	}
}
.single__reason--title::before {
	position: absolute;
	content: url("../../img/lp/icon/triangle__white.svg");
	top: 0;
	right: 0;
	width: 16px;
	height: 16px;
}
.single__reason--text {
	font-size: 1.6rem;
	line-height: 180%;
	margin-top: 1.6rem;
}
@media (min-width: 1024px) {
	.single__reason--text {
		grid-area: 2/1/3/2;
		margin: 0;
		padding: 0 1.6rem;
	}
}
.single__reason--img {
	margin-top: 1.2rem;
}
@media (min-width: 1024px) {
	.single__reason--img {
		grid-area: 1/2/3/3;
		margin: 0;
	}
}

@media (min-width: 1024px) {
	.single__reason:nth-child(even) {
		grid-template-columns: 1fr 530px;
	}
}
@media (min-width: 1024px) {
	.single__reason:nth-child(even) .single__reason--title {
		grid-area: 1/2/2/3;
	}
}
@media (min-width: 1024px) {
	.single__reason:nth-child(even) .single__reason--text {
		grid-area: 2/2/3/3;
	}
}
@media (min-width: 1024px) {
	.single__reason:nth-child(even) .single__reason--img {
		grid-area: 1/1/3/2;
	}
}

.single__voice {
	display: grid;
	gap: 1.6rem;
	padding: 1.6rem 1.2rem;
	background-color: white;
	border: 2px solid #004896;
}
@media (min-width: 1024px) {
	.single__voice {
		grid-template-columns: 296px 1fr;
		column-gap: 1.6rem;
		row-gap: 0.8rem;
		padding: 3.2rem 2rem;
	}
}
@media (min-width: 1024px) {
	.single__voice--img {
		grid-area: 1/1/2/2;
	}
}
.single__voice--title {
	display: grid;
	gap: 0.8rem;
}
@media (min-width: 1024px) {
	.single__voice--title {
		grid-area: 1/2/2/3;
		grid-template-rows: repeat(3, max-content);
		align-self: center;
	}
}
.single__voice--title .name {
	font-size: 1.4rem;
	display: flex;
	align-items: end;
}
.single__voice--title .name .uni,
.single__voice--title .name .divider {
	margin-right: 0.8rem;
}
.single__voice--title .name .uni {
	font-size: 2.4rem;
	line-height: 125%;
}
.single__voice--title .main {
	background-color: #004896;
	font-size: 1.8rem;
	color: #ffffff;
	padding: 0.8rem;
	border-radius: 4px;
}
@media (min-width: 1024px) {
	.single__voice--title .main {
		width: max-content;
		font-size: 2rem;
	}
}
.single__voice--title .lead {
	font-size: 1.6rem;
	line-height: 150%;
}
.single__voice--text {
	font-size: 1.4rem;
	line-height: 180%;
}
@media (min-width: 1024px) {
	.single__voice--text {
		grid-area: 2/1/3/3;
		letter-spacing: 0.07px;
	}
}

.single__teacher {
	display: grid;
	gap: 0.8rem;
	padding: 1.6rem 1.2rem;
	background-color: #ffffff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
}
@media (min-width: 1024px) {
	.single__teacher {
		grid-template-columns: 1fr 380px;
		grid-template-rows: repeat(2, max-content);
		padding: 2.4rem 1.6rem;
	}
}
.single__teacher--title {
	display: grid;
	gap: 0.4rem;
}
@media (min-width: 1024px) {
	.single__teacher--title {
		grid-area: 1/2/2/3;
		align-self: center;
	}
}
.single__teacher--title .main {
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 180%;
	background-color: #004896;
	padding: 0 0.8rem;
	color: #ffffff;
}
@media (min-width: 1024px) {
	.single__teacher--title .main {
		font-size: 2rem;
		margin-top: 25px;
	}
}
.single__teacher--title .name {
	font-size: 1.4rem;
	font-weight: 700;
	text-align: right;
}
.single__teacher--text {
	font-size: 1.6rem;
	line-height: 180%;
}
@media (min-width: 1024px) {
	.single__teacher--text {
		grid-area: 2/1/3/3;
	}
}

.single__label {
	border: 2px solid #004896;
	display: grid;
}
@media (min-width: 1024px) {
	.single__label {
		grid-template-rows: 44px 1fr;
	}
}
.single__label p {
	text-align: center;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.single__label p .colored {
	color: #a90014;
}
.single__label--title {
	background-color: #004896;
	color: white;
	line-height: 150%;
	font-size: 2rem;
	font-weight: 700;
}
.single__label--text {
	line-height: 200%;
	font-size: 1.6rem;
	padding: 0.8rem;
}

.single__flow {
	display: grid;
	grid-template-columns: 48px 1fr;
	grid-template-rows: repeat(2, max-content);
	column-gap: 0.8rem;
	position: relative;
	z-index: 3;
}
@media (min-width: 1024px) {
	.single__flow {
		column-gap: 2.4rem;
		grid-template-columns: 66px 1fr;
	}
}
.single__flow--num {
	font-size: 1.2rem;
	text-align: center;
	color: #004896;
	line-height: 110%;
	background-color: #ffffff;
	font-family: "notoSerifJpBold";
	width: 100%;
	height: 48px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
@media (min-width: 1024px) {
	.single__flow--num {
		font-size: 1.6rem;
		height: 66px;
	}
}
.single__flow--num .bg {
	font-size: 2rem;
	color: #004896;
	font-family: "notoSerifJpBold";
}
@media (min-width: 1024px) {
	.single__flow--num .bg {
		font-size: 2.4rem;
	}
}
.single__flow--title,
.single__flow--text {
	color: white;
}
.single__flow--title {
	line-height: 150%;
	font-size: 1.8rem;
	font-weight: 700;
	align-self: center;
}
@media (min-width: 1024px) {
	.single__flow--title {
		font-size: 2rem;
	}
}
.single__flow--text {
	font-size: 1.6rem;
	line-height: 200%;
	grid-area: 2/2/3/3;
}
@media (min-width: 1024px) {
	.single__flow--text {
		margin-top: -0.8rem;
	}
}
.single__flow--text span {
	color: #ffffff;
	font-size: 1.6rem;
}

.single__flow:last-child .single__flow--num {
	display: inline-flex;
	align-items: center;
	padding: 3px;
}
@media (min-width: 1024px) {
	.single__flow:last-child .single__flow--num {
		width: 66px;
		height: 62.7px;
		justify-content: center;
	}
}

.single__flow::after {
	content: "";
	width: 1px;
	height: calc(100% + 16px);
	background-color: white;
	top: 0;
	left: 24px;
	position: absolute;
	z-index: 1;
}
@media (min-width: 1024px) {
	.single__flow::after {
		left: 33px;
	}
}

.single__flow:last-child::after {
	display: none;
}

.single__faq {
	border-top: 1px solid #000000;
	padding-top: 1.6rem;
	display: grid;
	gap: 1.2rem;
}
@media (min-width: 1024px) {
	.single__faq {
		padding-top: 3.2rem;
		gap: 1.6rem;
	}
}
.single__faq--content {
	display: grid;
	gap: 0.8rem;
	grid-template-columns: max-content 1fr;
}
.single__faq--content .label {
	background-color: #004896;
	border-radius: 99px;
	font-size: 1.6rem;
	line-height: 100%;
	font-weight: 700;
	color: #ffffff;
	height: max-content;
	height: 30px;
	width: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 4px;
}
@media (min-width: 1024px) {
	.single__faq--content .label {
		height: 34px;
		width: 34px;
		font-size: 2rem;
	}
}
.single__faq--content .text__q {
	font-size: 1.6rem;
	line-height: 150%;
}
@media (min-width: 1024px) {
	.single__faq--content .text__q {
		font-size: 2rem;
	}
}
.single__faq--content .text__a {
	font-size: 1.4rem;
	line-height: 200%;
}
@media (min-width: 1024px) {
	.single__faq--content .text__a {
		font-size: 1.6rem;
	}
}
.single__faq--content:nth-child(2) {
	margin-left: 0.8rem;
}
@media (min-width: 1024px) {
	.single__faq--content:nth-child(2) {
		margin-left: 4rem;
	}
}

.single__faq:last-child {
	padding-bottom: 1.6rem;
	border-bottom: 1px solid #000000;
}
@media (min-width: 1024px) {
	.single__faq:last-child {
		padding-bottom: 3.2rem;
	}
}

.btn__primary {
	background: linear-gradient(#fff9a1, #e8da00);
	text-align: center;
	font-size: 1.6rem;
	padding: 2rem 0;
	border: 4px solid #ffffff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
	width: 100%;
	display: block;
	border-radius: 0.8rem;
	line-height: 100%;
	position: relative;
}
@media (min-width: 1024px) {
	.btn__primary {
		font-size: 4rem;
		padding: 3.2rem 0;
		width: 520px;
	}
}
.btn__primary .badge {
	border-radius: 99px;
	width: 56px;
	height: 56px;
	padding: 8px 0;
	background-color: #a90014;
	position: absolute;
	top: -50%;
	left: 0;
	color: white;
	text-align: center;
	font-size: 1.4rem;
	line-height: 130%;
}
@media (min-width: 1024px) {
	.btn__primary .badge {
		width: 96px;
		height: 96px;
		padding: 15px 0;
		font-size: 2rem;
		transform: translateX(-50%);
		line-height: 150%;
	}
}
.btn__primary .badge .bg {
	font-size: 2.2rem;
	color: white;
}
@media (min-width: 1024px) {
	.btn__primary .badge .bg {
		font-size: 3.2rem;
	}
}

.hukidashi {
	color: #ffffff;
	background-color: #000000;
	padding: 0.4rem 1.2rem;
	font-size: 1rem;
	line-height: 150%;
	margin-bottom: -0.8rem;
	z-index: 1;
	text-align: center;
	position: relative;
}
@media (min-width: 1024px) {
	.hukidashi {
		font-size: 1.6rem;
		padding: 0.8rem 1.2rem;
		margin-bottom: -1.2rem;
	}
}
.hukidashi .bg {
	font-size: 1.2rem;
	color: #ffffff;
}
@media (min-width: 1024px) {
	.hukidashi .bg {
		font-size: 2rem;
	}
}

.hukidashi:after {
	content: url("../../img/lp/icon/hukidashi.svg");
	position: absolute;
	height: 10px;
	width: 16px;
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, 8px);
}
@media (min-width: 1024px) {
	.hukidashi:after {
		height: 12px;
		width: 20px;
		transform: translate(-50%, 3px);
	}
}

.table {
	padding-top: 4rem;
	padding-left: calc((100vw - 343px) / 2);
	overflow-x: scroll;
}
@media (min-width: 1024px) {
	.table {
		overflow: unset;
		padding-left: calc((100vw - 960px) / 2);
		padding-right: calc((100vw - 960px) / 2);
		padding-top: 112px;
	}
}
.table table {
	width: max-content;
	border-collapse: collapse;
	margin-right: calc((100vw - 343px) / 2);
}
@media (min-width: 1024px) {
	.table table {
		margin: 0;
	}
}
.table table tr td:nth-child(1) {
	width: 100px;
}
@media (min-width: 1024px) {
	.table table tr td:nth-child(1) {
		width: 120px;
	}
}
.table table tr td:nth-child(n + 2) {
	width: 224px;
}
@media (min-width: 1024px) {
	.table table tr td:nth-child(n + 2) {
		width: 280px;
	}
}
.table table td {
	padding: 1.2rem 0;
	display: table-cell;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
}
@media (min-width: 1024px) {
	.table table td {
		font-size: 1.6rem;
		padding: 2rem 0;
	}
}
.table table td .cell__content {
	display: flex;
	justify-content: center;
}
.table table td .cell__content p {
	font-size: 1.4rem;
}
@media (min-width: 1024px) {
	.table table td .cell__content p {
		font-size: 1.6rem;
	}
}
.table table td .cell__content span {
	font-size: 0.9rem;
	transform: translateY(20px);
}
@media (min-width: 1024px) {
	.table table td .cell__content span {
		transform: translateY(0px);
	}
}
.table table .primary,
.table table .gray {
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}
.table table .primary {
	background-color: #004896;
}
.table table .primary .cell__content p,
.table table .primary .cell__content span {
	color: white;
}
.table table .gray {
	background-color: #383838;
}
.table table .gray .cell__content {
	font-size: 1.2rem;
}
.table table .gray .cell__content p {
	color: white;
}
@media (min-width: 1024px) {
	.table table .gray .cell__content {
		font-size: 1.4rem;
	}
}
.table table .img {
	position: relative;
	border-left: 2px solid #ffffff;
	position: relative;
}
.table table .img .cell__content {
	width: 140px;
	margin: 0 auto;
	transform: translateY(-9px);
	transform: translateY(-10px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -80%);
	z-index: 3;
}
@media (min-width: 1024px) {
	.table table .img .cell__content {
		width: 200px;
	}
}
.table table .img::after {
	content: "";
	position: absolute;
	top: -23px;
	left: 0;
	width: 100%;
	height: 24px;
	background-color: #004896;
}
@media (min-width: 1024px) {
	.table table .img::after {
		height: 40px;
		top: -39px;
	}
}

.table__note {
	padding-left: calc((100vw - 343px) / 2);
	padding-right: calc((100vw - 343px) / 2);
	text-align: right;
	font-size: 1.2rem;
	line-height: 150%;
	margin-top: 0.8rem;
}
@media (min-width: 1024px) {
	.table__note {
		font-size: 1.3rem;
		padding-left: calc((100vw - 960px) / 2);
		padding-right: calc((100vw - 960px) / 2);
	}
}

.footer {
	background-color: #f5f5f5;
	padding-top: 3.2rem;
	padding-bottom: 9.6rem;
	display: grid;
	gap: 3.2rem;
}
@media (min-width: 1024px) {
	.footer {
		padding-top: 4.8rem;
		padding-bottom: 148px;
		display: flex;
		justify-content: space-between;
		align-items: end;
	}
}
.footer__info {
	display: grid;
	gap: 1.6rem;
}
.footer__info--name {
	font-size: 2rem;
	line-height: 150%;
	font-weight: 700;
}
@media (min-width: 1024px) {
	.footer__info--name {
		font-size: 3.2rem;
	}
}
.footer__info--address {
	font-size: 1.6rem;
	line-height: 180%;
}
.footer__lists {
	display: grid;
	gap: 1.6rem;
}
@media (min-width: 1024px) {
	.footer__lists {
		grid-template-columns: repeat(3, max-content);
		gap: 2.4rem;
	}
}
.footer__lists li a {
	font-size: 1.6rem;
	font-weight: 700;
}

.header {
	height: 64px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #004896;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem 1.6rem;
	z-index: 100;
}
.header__logo {
	width: 120px;
}
.header nav {
	width: 100%;
	height: calc(100svh - 64px);
	top: 6.4rem;
	left: 100%;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #004896;
	transition: all 0.4s;
	z-index: 100;
}
@media (min-width: 1024px) {
	.header nav {
		width: max-content;
		height: max-content;
		display: flex;
		position: unset;
		top: unset;
		left: unset;
	}
}
.header nav ul {
	display: grid;
	gap: 2.4rem;
}
@media (min-width: 1024px) {
	.header nav ul {
		gap: 0;
		display: flex;
		flex-direction: row;
		align-items: center;
	}
}
.header nav ul li {
	width: max-content;
}
@media (min-width: 1024px) {
	.header nav ul li {
		margin-left: 2.4rem;
	}
}
.header nav ul li p,
.header nav ul li a {
	font-size: 2rem;
	font-weight: 700;
	line-height: 150%;
	color: #ffffff;
	cursor: pointer;
}
@media (min-width: 1024px) {
	.header nav ul li p,
	.header nav ul li a {
		font-size: 1.6rem;
	}
}
.header nav ul li:last-child {
	background-color: red;
	padding: 0.8rem 2rem;
	border: 2px solid #ffffff;
	border-radius: 0.8rem;
	background: linear-gradient(#fff9a1, #e8da00);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
}
.header nav ul li:last-child a {
	color: #000000;
}
.header .nav__active {
	left: 0;
	transition: all 0.4s;
}

.burger {
	display: grid;
	width: 35px;
	gap: 1.6rem;
}
@media (min-width: 1024px) {
	.burger {
		display: none;
	}
}
.burger__line {
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	transition: all 0.4s;
}
.burger .line__1--active {
	transform: rotate(45deg) translate(5px, 5px);
	transition: 0.2s ease-in-out;
}
.burger .line__2--active {
	transform: rotate(-45deg) translate(8px, -7px);
	transition: 0.2s ease-in-out;
}

.problem__cnt {
	display: grid;
	gap: 3.2rem;
}
@media (min-width: 1024px) {
	.problem__cnt {
		gap: 4rem;
		grid-template-columns: repeat(2, 1fr);
	}
}

.point {
	background-image: url("../../img/lp/point/bg__sp.jpg");
	background-size: cover;
	background-color: rgba(0, 0, 0, 0.3);
	background-blend-mode: darken;
	background-position: 50% 50%;
}
@media (min-width: 768px) {
	.point {
		background-image: url("../../img/lp/point/bg__pc.jpg");
	}
}
.point__cnt {
	display: grid;
	gap: 1.6rem;
}
@media (min-width: 1024px) {
	.point__cnt {
		column-gap: 1.2rem;
		row-gap: 2.4rem;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, max-content);
	}
}

.cta {
	display: grid;
	justify-items: center;
	padding-top: 4.4rem;
}

.cta__fixed {
	position: fixed;
	bottom: -100%;
	left: 50%;
	transform: translateX(-50%);
	width: 343px;
	z-index: 5;
	transition: 0.4s;
	padding-top: 0;
}
@media (min-width: 1024px) {
	.cta__fixed {
		width: 520px;
	}
}

.cta__fixed--active {
	transition: 0.4s;
	bottom: 1.6rem;
}

.reason__cnt {
	display: grid;
	gap: 3.2rem;
}
@media (min-width: 1024px) {
	.reason__cnt {
		gap: 4rem;
	}
}

.voice {
	background-color: #f5f5f5;
}

.invest {
	background-color: #004896;
	padding: 3.2rem 1.6rem;
	display: grid;
	clip-path: polygon(
		40px 0%,
		calc(100% - 40px) 0%,
		100% 40px,
		100% calc(100% - 40px),
		calc(100% - 40px) 100%,
		40px 100%,
		0% calc(100% - 40px),
		0% 40px
	);
}
@media (min-width: 1024px) {
	.invest {
		padding: 5.6rem 4.8rem;
		clip-path: polygon(
			48px 0%,
			calc(100% - 48px) 0%,
			100% 48px,
			100% calc(100% - 48px),
			calc(100% - 48px) 100%,
			48px 100%,
			0% calc(100% - 48px),
			0% 48px
		);
		grid-template-columns: 1fr 296px;
		grid-template-rows: repeat(3, max-content);
	}
}
.invest p {
	color: #ffffff;
}
.invest__title {
	font-size: 1.6rem;
	line-height: 175%;
	text-align: center;
}
@media (min-width: 1024px) {
	.invest__title {
		font-size: 3.2rem;
		grid-area: 1/1/2/3;
	}
}
.invest__title .mid {
	font-size: 2rem;
	color: #ffffff;
}
@media (min-width: 1024px) {
	.invest__title .mid {
		font-size: 4rem;
	}
}
.invest__title .bg {
	font-size: 2.4rem;
	color: #ffffff;
}
@media (min-width: 1024px) {
	.invest__title .bg {
		font-size: 4.8rem;
	}
}
.invest__lead {
	margin-top: 2rem;
	font-size: 1.6rem;
	line-height: 180%;
}
@media (min-width: 1024px) {
	.invest__lead {
		font-size: 2.4rem;
		grid-area: 2/1/3/2;
		align-self: center;
	}
}
.invest__lead .bg {
	color: #ffffff;
}
.invest__img {
	margin-top: 0.8rem;
}
@media (min-width: 1024px) {
	.invest__img {
		grid-area: 2/2/3/3;
		margin-top: 2rem;
	}
}
.invest__text {
	font-size: 1.4rem;
	line-height: 200%;
	margin-top: 1.6rem;
}
@media (min-width: 1024px) {
	.invest__text {
		font-size: 1.6rem;
		grid-area: 3/1/4/3;
		margin: 0;
	}
}
.invest__text .bg {
	color: #ffffff;
	font-size: 1.6rem;
}
@media (min-width: 1024px) {
	.invest__text .bg {
		font-size: 1.8rem;
	}
}

@media (min-width: 1024px) {
	.support {
		padding-left: calc((100vw - 920px) / 2);
		padding-right: calc((100vw - 920px) / 2);
	}
}
.support__cnt {
	display: grid;
	gap: 2rem;
}
@media (min-width: 1024px) {
	.support__cnt {
		grid-template-columns: 408px 1fr;
		align-items: center;
	}
}
.support__cnt--lists {
	display: grid;
	gap: 1.6rem;
	padding-left: 2rem;
}
@media (min-width: 1024px) {
	.support__cnt--lists {
		gap: 0.8rem;
	}
}
.support__cnt--lists li {
	font-size: 2rem;
	line-height: 150%;
	list-style: disc;
	/* list-style-image: url("../../img/lp/icon/list-dot.svg");
	margin-left: -8px;
	padding-left: 8px; */
}
.support__cnt--lists li .bg {
	background-color: #000000;
	color: #ffffff;
	padding: 0 0.4rem;
	font-weight: 700;
}

.teacher {
	background-color: #f5f5f5;
}
.teacher__lead {
	display: grid;
	gap: 1.6rem;
}
@media (min-width: 1024px) {
	.teacher__lead {
		width: 656px;
		grid-template-columns: 1fr 264px;
		justify-items: center;
		gap: 2rem;
		align-items: center;
	}
}
.teacher__lead--text {
	font-size: 1.6rem;
	line-height: 180%;
	width: max-content;
	margin: 0 auto;
}
.teacher__lead--text .bg {
	font-weight: 700;
	font-size: 2rem;
}
.teacher__body {
	margin-top: 2.4rem;
	display: grid;
	gap: 1.6rem;
}
@media (min-width: 1024px) {
	.teacher__body {
		margin: 3.2rem 0;
		gap: 2.4rem;
	}
}

.plan__label {
	display: grid;
	gap: 1.6rem;
}
@media (min-width: 1024px) {
	.plan__label {
		row-gap: 2.4rem;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, max-content);
	}
}
.plan .scroll {
	padding-left: calc((100vw - 343px) / 2);
	display: grid;
	gap: 1.2rem;
	grid-template-columns: repeat(2, max-content);
	align-items: center;
	margin-top: 2.4rem;
}
@media (min-width: 1024px) {
	.plan .scroll {
		display: none;
	}
}
.plan .scroll p {
	font-size: 2.4rem;
	font-weight: 700;
}
.plan .scroll__img {
	width: 30px;
	margin-top: -10px;
}

.flow__cnt {
	background-color: #004896;
	padding-top: 4rem;
	padding-bottom: 4rem;
	display: grid;
	gap: 1.6rem;
	position: relative;
}
@media (min-width: 1024px) {
	.flow__cnt {
		padding-left: calc((100vw - 686px) / 2);
		padding-right: calc((100vw - 686px) / 2);
	}
}
.flow .cta {
	background-color: #004896;
	margin-top: -1px;
}

.faq__cnt {
	display: grid;
	gap: 1.6rem;
}
@media (min-width: 1024px) {
	.faq__cnt {
		gap: 3.2rem;
	}
}

.fv {
	padding-top: 8rem;
	padding-bottom: 5.6rem;
	display: grid;
	background-image: url("../../img/lp/fv/fv__bg--sp.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-blend-mode: darken;
	background-position: 50% 100%;
}
@media (min-width: 1024px) {
	.fv {
		padding-top: 15.2rem;
		background-image: url("../../img/lp/fv/fv__bg--pc.jpg");
		background-size: cover;
		height: 100svh;
		grid-template-rows: repeat(4, max-content);
		align-content: center;
	}
}
@media (min-width: 1440px) {
	.fv {
		height: 90svh;
		background-position: 50% -50%;
	}
}
.fv__title {
	font-size: 3.2rem;
	line-height: 150%;
	font-weight: 700;
	text-align: center;
}
@media (min-width: 1024px) {
	.fv__title {
		font-size: 5.2rem;
	}
}
@media (min-width: 1440px) {
	.fv__title {
		font-size: 5.6rem;
	}
}
.fv__lead {
	font-size: 1.6rem;
	line-height: 175%;
	font-weight: 700;
	text-align: center;
	margin-top: 1.2rem;
}
@media (min-width: 1024px) {
	.fv__lead {
		margin-top: 2.4rem;
		font-size: 2.4rem;
	}
}
.fv__lead .bg {
	font-weight: 700;
	font-size: 2rem;
}
@media (min-width: 1024px) {
	.fv__lead .bg {
		font-size: 3.2rem;
	}
}
.fv__lead .primary {
	color: #004896;
}
.fv__achieve {
	display: grid;
	gap: 1.2rem;
	position: relative;
	justify-content: center;
	justify-items: center;
	width: 290px;
	margin: 0 auto;
	margin-top: 3.2rem;
}
@media (min-width: 1024px) {
	.fv__achieve {
		margin-top: 8rem;
		gap: 1.6rem;
		grid-template-columns: repeat(3, max-content);
		width: unset;
		align-items: center;
	}
}
.fv__achieve--name {
	font-size: 2rem;
	line-height: 100%;
	font-weight: 700;
}
@media (min-width: 1024px) {
	.fv__achieve--name {
		font-size: 3.2rem;
		position: relative;
		width: 272px;
		text-align: center;
	}
}
@media (min-width: 1024px) {
	.fv__achieve--name::before,
	.fv__achieve--name::after {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 48px;
	}
}
@media (min-width: 1024px) {
	.fv__achieve--name::before {
		content: url("../../img/lp/fv/leaf__left.svg");
		left: 0;
	}
}
@media (min-width: 1024px) {
	.fv__achieve--name::after {
		content: url("../../img/lp/fv/leaf__right.svg");
		right: 0;
	}
}
.fv__achieve--cross {
	width: 16px;
	height: 16px;
}
.fv__achieve::before,
.fv__achieve::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
}
@media (min-width: 1024px) {
	.fv__achieve::before,
	.fv__achieve::after {
		display: none;
	}
}
.fv__achieve::before {
	content: url("../../img/lp/fv/leaf__left.svg");
	left: 0;
}
.fv__achieve::after {
	content: url("../../img/lp/fv/leaf__right.svg");
	right: 0;
}
@media (min-width: 1024px) {
	.fv .cta {
		padding-top: 126px;
	}
} /*# sourceMappingURL=main.css.map */
