@font-face {
	font-family: "Higure Gothic";
	src: url("../fonts/HigureGothic-Bold.woff2") format("woff2"), url("../fonts/HigureGothic-Bold.woff") format("woff"), url("../fonts/HigureGothic-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Higure Gothic";
	src: url("../fonts/HigureGothic-Medium.woff2") format("woff2"), url("../fonts/HigureGothic-Medium.woff") format("woff"), url("../fonts/HigureGothic-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Higure Gothic";
	src: url("../fonts/HigureGothic-Regular.woff2") format("woff2"), url("../fonts/HigureGothic-Regular.woff") format("woff"), url("../fonts/HigureGothic-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-family-base: "Higure Gothic";
	--font-weight-base: 400;
	--lineheight-base: 1.5;
	--font-size-base: 1.4rem;
	--font-en: "Jost", sans-serif;
	--color-primary: #f06a90;
	--color-warning: #f00;
	--gutter: 3rem;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 1.3333333333vw;
	overflow-x: hidden;
}

html.noscroll {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	background-color: #dfe0d9;
	color: #1a1a1a;
	margin: 0;
	font-family: var(--font-family-base);
	font-weight: var(--font-weight-base);
	font-size: var(--font-size-base);
	line-height: var(--lineheight-base);
	text-align: left;
	position: relative;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

ol,
ul,
dl {
	list-style-type: none;
	margin: 0;
	padding-left: 0;
}

b,
strong {
	font-weight: 700;
}

a {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}

img {
	vertical-align: middle;
	border-style: none;
	max-width: 100%;
	height: auto;
}

table {
	border-collapse: collapse;
}

th {
	font-weight: var(--font-weight-base);
	text-align: inherit;
	text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

textarea {
	overflow: auto;
	resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

[hidden] {
	display: none !important;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

.alignleft {
	text-align: left;
}

img.aligncenter {
	display: block;
	margin: auto;
}

img.alignright {
	display: block;
	margin-left: auto;
}

img.alignleft {
	display: block;
	margin-right: auto;
}

.container {
	margin: 0 auto;
	max-width: 126rem;
	padding-inline: var(--gutter);
	width: 100%;
}

.inner {
	margin: 0 auto;
	max-width: 106rem;
	padding-inline: var(--gutter);
	width: 100%;
}

.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-flex {
	display: flex !important;
}

.animate_animated {
	animation-duration: 2s;
	animation-fill-mode: both;
	animation-timing-function: ease;
}

.fadeUp {
	animation-name: fadeUp;
}

.fadeIn {
	animation-name: fadeIn;
}

.fadeZoomOut {
	animation-name: fadeZoomOut;
	animation-duration: 0.8s;
}

.btn {
	display: inline-block;
	font-family: var(--font-family-base);
	font-weight: var(--font-weight-base);
	color: #1a1a1a;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
}

.btn:focus,
.btn.focus {
	outline: 0;
}

.btn.disabled,
.btn:disabled {
	opacity: 0.6;
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.p-header {
	padding-block: 5.5rem;
	background-color: #dfe0d9;
	position: fixed;
	z-index: 19;
	width: 100%;
	left: 0;
	top: 0;
}

.p-header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.p-header__logo img {
	width: 40.8rem;
}

.p-header__nav {
	font-weight: 500;
	font-size: 3.2rem;
}

.p-header__nav a {
	display: block;
	position: relative;
}

.p-header__nav a::after {
	content: "";
	transition: 0.2s ease;
	background: url("../images/dotted_img.svg") repeat-x left center/contain;
	height: 0.4rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.7rem;
}

.p-header__nav a:hover::after {
	transform: scaleY(1);
}

.p-header__content .p-header__logo {
	margin-bottom: 8.5rem;
	width: 40.7rem;
}

.hamburger-box {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	aspect-ratio: 1;
	width: 6rem;
	background-color: #fff;
	border-radius: 0.6rem;
	position: relative;
	z-index: 18;
}

.hamburger-box.is-active .hamburger-box__line {
	background-color: transparent;
}

.hamburger-box.is-active .hamburger-box__line::before {
	top: 0;
	transform: rotate(45deg);
}

.hamburger-box.is-active .hamburger-box__line::after {
	top: 0;
	transform: rotate(-45deg);
}

.hamburger-box.is-active .hamburger-box__txt {
	display: none;
}

.hamburger-box__line {
	position: relative;
	width: 4rem;
	height: 0.2rem;
	background: #f06a90;
	margin-block: 0.8rem;
}

.hamburger-box__line::before,
.hamburger-box__line::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 0.2rem;
	background: #f06a90;
	transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.hamburger-box__line::before {
	top: -0.6rem;
}

.hamburger-box__line::after {
	top: 0.6rem;
}

.hamburger-box__txt {
	font-size: 1.4rem;
	line-height: 1;
	font-weight: 500;
	text-transform: uppercase;
	font-family: var(--font-en);
	color: #0b2d78;
	display: flex;
	flex-direction: column;
}

.hamburger-box__txt::before {
	content: "";
	width: 1rem;
	height: 1rem;
	background: #f06a90;
	border-radius: 50%;
	margin-block: 0.3rem;
}

.page-top {
	position: fixed;
	left: calc(50% + 50rem);
	bottom: 3rem;
	width: 5rem;
	aspect-ratio: 1;
	background: url(../images/arrow_backtop.svg) no-repeat center/3.2rem;
	cursor: pointer;
}

.p-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 6rem 2rem;
}

.p-footer__logo {
	width: 37.5rem;
	margin-bottom: 2rem;
	display: block;
}

.p-footer__copyright {
	font-family: var(--font-en);
	font-weight: 300;
	font-size: 1.2rem;
}

.table {
	width: 100%;
}

.hline01 {
	line-height: 1.76;
	text-align: center;
	position: relative;
	font-weight: bold;
	letter-spacing: 0.24em;
}

.hline01__row {
	background-image: linear-gradient(to bottom, #fff328 0%, #fff328 100%);
	background-size: auto 25%;
	background-repeat: repeat-x;
	background-position: left bottom;
}

.hline01__ttl {
	color: #0b2d78;
	font-size: 3.4rem;
}

.hline01__medium {
	font-size: 3.8rem;
}

.hline01__number {
	line-height: 0.8;
	font-size: 6.2rem;
}

.hline01__txt {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0;
}

.hline01-sub {
	aspect-ratio: 1;
	background-color: var(--color-primary);
	border: 0.2rem solid #fff;
	border-radius: 0.3rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	width: 10rem;
	letter-spacing: 0.03em;
}

.hline01-sub.--fs-large {
	font-size: 2.2rem;
}

.hline01-sub.--style-medium {
	border-color: #dfe0d9;
	line-height: 1.2;
	font-style: italic;
	font-family: var(--font-en);
	font-weight: 500;
	font-size: 2.4rem;
}

.hline01-sub__number {
	line-height: 0.8;
	font-size: 6.2rem;
}

.hline01-sub__medium {
	font-size: 2rem;
}

.hline01 small {
	font-size: 2.8rem;
}

.nospace::before,
.nospace::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.nospace::before {
	margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.nospace::after {
	margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-indent {
	margin-inline: -0.5em;
}

.c-indent-r {
	margin-right: -0.5em;
}

.cl-primary {
	color: var(--color-primary);
}

.font-en {
	font-family: var(--font-en);
}

.byte {
	font-feature-settings: "palt" 1, "pkna" 1, "pwid" 1, "pkna" 1;
	font-family: sans-serif;
}

.p-mv {
	padding-block: 6rem;
	position: relative;
}

.p-mv__info {
	margin-top: 5.9rem;
}

.p-mv__txt {
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 1.6;
	margin-top: 16.4rem;
}

.p-mv__scroll {
	display: none;
}

.p-about {
	background-color: #fff;
	padding-block: 10.5rem 10.7rem;
}

.p-about__ttl {
	--lh: 5rem;
	font-size: 2.3rem;
	font-weight: 500;
	line-height: var(--lh);
	letter-spacing: 0.18em;
	margin-bottom: 6.3rem;
	text-align: center;
}

.p-about__ttl .num {
	font-size: 2.6rem;
	letter-spacing: 0.1em;
}

.p-about__ttl .spec {
	font-size: 2.8rem;
}

.p-about__txt {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.18em;
	margin-inline: -1rem;
	text-align: center;
}

.p-about__wrap {
	display: grid;
	align-items: center;
	row-gap: 6rem;
	-moz-column-gap: 7.3rem;
	column-gap: 7.3rem;
	margin-top: 9.2rem;
}

.p-about__img {
	text-align: center;
}

.p-about__box {
	margin: 0 auto;
	max-width: 44rem;
	padding: 1.8rem;
	position: relative;
	z-index: 1;
}

.p-about__box::before {
	content: "";
	border: 2px solid var(--color-primary);
	opacity: 0.85;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}

.p-about__box-head {
	background-color: var(--color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.18em;
	height: 4.9rem;
	margin-bottom: 1.7rem;
}

.p-about__box-list {
	color: #0b2d78;
	display: flex;
	justify-content: center;
	font-size: 2.2rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	margin-bottom: 1.8rem;
}

.p-about__box-note {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	margin-bottom: 2.7rem;
	text-align: center;
}

.p-about__box-info {
	background-color: #f5f6f4;
	font-size: 1.2rem;
	letter-spacing: 0.14em;
	line-height: 1.83;
	padding: 1.2rem 1.6rem;
	position: relative;
}

.p-about__box-info::before {
	content: "";
	background: url("../images/check_txt.svg") no-repeat center/contain;
	height: 5.6rem;
	width: 5.6rem;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
}

.p-about__box-info h4 {
	color: var(--color-primary);
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 1rem;
	text-align: center;
}

.p-about__box-info h4 small {
	font-size: 1.2rem;
}

.p-osusume {
	padding-block: 6rem 7rem;
}

.p-osusume .hline01 {
	margin-bottom: 8rem;
}

.p-osusume .hline01__ttl {
	position: relative;
}

.p-osusume .hline01__ttl::after {
	content: "";
	width: 5.9rem;
	aspect-ratio: 59/76;
	background: url(../images/osusume_icon01.png) no-repeat center/contain;
	position: absolute;
}

.p-osusume__wrap {
	position: relative;
}

.p-osusume__center {
	position: absolute;
	top: calc(50% - 3rem);
	left: 50%;
	transform: translate(-50%, -50%);
	width: 36rem;
}

.p-osusume-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48rem 4rem;
}

.p-osusume-list__image {
	margin-inline: auto;
	width: 30.1rem;
}

.p-feature {
	position: relative;
	background-color: #fff;
	padding-block: 8rem;
}

.p-feature .hline01 {
	margin-bottom: 5rem;
}

.p-feature .hline01-sub {
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.04em;
	border-color: #dfe0d9;
}

.p-feature-list__item {
	display: flex;
	align-items: flex-start;
	gap: 4rem;
}

.p-feature-list__item:not(:last-child) {
	margin-bottom: 5.5rem;
}

.p-feature-list__image img {
	width: 100%;
	height: auto;
	display: block;
}

.p-feature-list__num {
	display: flex;
	align-items: flex-end;
	gap: 0.8rem;
	font-weight: bold;
	color: var(--color-primary);
	font-family: var(--font-en);
	font-weight: 400;
}

.p-feature-list__num-label {
	font-size: 2.2rem;
	padding-right: 1rem;
	position: relative;
	font-style: italic;
	padding-bottom: 0.4rem;
	margin-bottom: 0.3rem;
}

.p-feature-list__num-label::after {
	content: "";
	position: absolute;
	left: -0.6rem;
	bottom: 0;
	width: calc(100% + 0.6rem);
	height: 0.4rem;
	background-image: radial-gradient(circle, #f57b9b 0.2rem, transparent 0.2rem);
	background-size: 1.4rem 0.4rem;
	background-repeat: repeat-x;
}

.p-feature-list__num-value {
	font-size: 6.2rem;
	line-height: 0.8;
}

.p-feature-list__ttl {
	font-weight: 700;
	font-size: 2.6rem;
}

.p-feature-list__txt {
	line-height: 1.6;
	letter-spacing: 0.12em;
	line-height: 2;
	font-size: 1.6rem;
}

.p-pickup {
	padding-block: 8rem;
}

.p-pickup .hline01 {
	margin-bottom: 8rem;
}

.p-pickup .hline01-sub {
	line-height: 1.4;
}

.p-pickup-list__item {
	gap: 8rem;
}

.p-pickup-list__item:not(:last-child) {
	margin-bottom: 8rem;
}

.p-pickup-list__image {
	width: 52rem;
}

.p-pickup-list__image img {
	width: 100%;
}

.p-pickup-list__head {
	display: flex;
	align-items: center;
	color: var(--color-primary);
	margin-bottom: 2rem;
}

.p-pickup-list__label {
	font-style: italic;
	margin-top: 0.6rem;
	font-family: var(--font-en);
	font-weight: 400;
	border-bottom: 0.2rem solid #fff;
	margin-right: 1.5rem;
	font-size: 2.2rem;
}

.p-pickup-list__number {
	line-height: 1;
	font-family: var(--font-en);
	font-weight: 400;
	font-size: 6.2rem;
	margin-right: 3rem;
}

.p-pickup-list__tag {
	font-weight: 500;
	font-size: 3.4rem;
}

.p-pickup-list__ttl {
	font-weight: bold;
	letter-spacing: 0.18em;
	color: #0b2d78;
	font-size: 2.6rem;
	margin-bottom: 1.5rem;
}

.p-pickup-list__desc {
	font-size: 1.4rem;
	letter-spacing: 0.18em;
	line-height: 2;
}

.p-overview {
	background-color: #fff;
	padding-top: 8rem;
}

.p-overview .hline01 {
	margin-bottom: 5rem;
}

.p-overview .hline01__ttl {
	margin-bottom: 0.5rem;
}

.p-overview .hline01-sub {
	line-height: 1;
	font-family: var(--font-en);
	font-style: italic;
	font-weight: 400;
	border-color: #dfe0d9;
	font-size: 3rem;
	margin-bottom: 2rem;
}

.p-overview-list {
	padding-inline: 2rem;
}

.p-overview-list__item {
	padding-block: 2.5rem;
	position: relative;
	display: grid;
	gap: 3rem;
}

.p-overview-list__ttl {
	font-weight: bold;
	display: inline-block;
	position: relative;
	letter-spacing: 0.18em;
	font-size: 2.6rem;
}

.p-overview-list__ttl::after {
	content: "";
	display: block;
	width: 100%;
	height: 0.2rem;
	background: var(--color-primary);
}

.p-overview-list__ttl small {
	font-size: 1.6rem;
}

.p-overview-list__content {
	line-height: 2;
	letter-spacing: 0.13em;
	font-size: 1.6rem;
}

.p-overview-list__content p:not([class]):not(:last-child) {
	margin-bottom: 1rem;
}

.p-overview-list__content small {
	line-height: 1.5;
	display: block;
	margin-top: -0.5rem;
	font-size: 1.2rem;
}

.p-overview-list__sub {
	color: #1e3a8a;
	font-weight: bold;
	margin-bottom: 0.5rem;
	font-size: 1.4rem;
}

.p-overview-list__sub:not(:first-child) {
	margin-top: 1.5rem;
}

.p-overview-list__txt {
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.p-overview-list__bullets {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: num-overview;
	margin-top: 3rem;
}

.p-overview-list__bullets li {
	position: relative;
	font-weight: 500;
	color: #0b2d78;
}

.p-tuition {
	background-color: #fff;
	padding-top: 5rem;
}

.p-tuition .hline01 {
	margin-bottom: 8rem;
}

.p-tuition__note {
	line-height: 1.6;
	font-size: 1.2rem;
}

.p-tuition__table-note {
	text-align: right;
	margin-bottom: 1.5rem;
}

.p-tuition-table {
	margin-bottom: 1.5rem;
}

.p-tuition-table table {
	border-collapse: collapse;
	table-layout: fixed;
	text-align: center;
	border: 2px solid #000;
	font-size: 1.5rem;
	border-width: 0 2px 2px 0;
	width: 120rem;
}

.p-tuition-table table th,
.p-tuition-table table td {
	border: 1px solid #000;
	font-weight: 500;
	padding-block: 0.8rem;
}

.p-tuition-table table th:not(.fs-nomal):not(.col-first) {
	font-size: 1rem;
	background-color: #dfe0d9;
}

.p-tuition-table table th:not(.col-first) {
	border-top-width: 2px;
}

.p-tuition-table table th.fs-nomal {
	background-color: #ced5e4;
	border-left-width: 2px;
}

.p-tuition-table table th.col-first {
	border-top: 0;
	border-left: 0;
	width: 20rem;
}

.p-tuition-table table td.txt-left {
	text-align: left;
	padding-left: 1.3rem;
}

.p-tuition-table table thead tr:first-child th {
	font-weight: bold;
	border-bottom: 0;
}

.p-tuition-table table thead tr:last-child th {
	border-top: 0;
}

.p-tuition-table table thead tr:last-child th:nth-child(odd) {
	border-right: 0;
}

.p-tuition-table table thead tr:last-child th:nth-child(even) {
	border-left: 1px dashed #fff;
}

.p-tuition-table table tbody tr:first-child td:first-child {
	border-top-width: 2px;
}

.p-tuition-table table tbody tr:nth-child(odd) td:first-child {
	background: rgba(240, 106, 144, 0.5);
}

.p-tuition-table table tbody tr:nth-child(odd) td:not(:first-child) {
	color: #0b2d78;
}

.p-tuition-table table tbody tr:nth-child(even) td:first-child {
	background: rgba(240, 106, 144, 0.2);
}

.p-tuition-table table tbody td:not(:first-child) {
	border-left: 0;
}

.p-tuition-table table tbody td:first-child {
	border-left-width: 2px;
}

.p-tuition-table table tbody td.style-bor {
	border-right-color: #dfe0d9;
}

.p-access {
	background-color: #fff;
	padding-top: 5rem;
}

.p-access .hline01 {
	margin-bottom: 3rem;
}

.p-access__txt {
	line-height: 2;
	font-size: 1.6rem;
	margin-bottom: 3.5rem;
}

.p-access__btn {
	background: linear-gradient(to bottom, #f47a9d, #ef5b85);
	color: white;
	font-weight: bold;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	margin-inline: auto;
	border: none;
	text-align: center;
	box-shadow: inset 0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 0.1), inset -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.2);
	cursor: pointer;
	font-size: 1.8rem;
	padding: 0.9rem 1rem;
	width: 40rem;
}

.p-access-area {
	background: url(../images/asset_area_bg.jpg) no-repeat center/cover;
	height: 94rem;
	padding-block: 6rem;
	margin-top: 8rem;
}

.p-access-area__wrap {
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
}

.p-access-area__ttl {
	width: 31.9rem;
	margin-top: 4rem;
}

.p-access-box {
	max-width: 45rem;
	padding: 1.5rem;
	position: relative;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.8);
}

.p-access-box::before {
	content: "";
	border: 2px solid var(--color-primary);
	opacity: 0.85;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}

.p-access-box__head {
	background-color: var(--color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.18em;
	height: 4.9rem;
	margin-bottom: 1.7rem;
}

.p-access-box__ttl {
	color: #0b2d78;
	font-size: 2.1rem;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.16em;
	margin-bottom: 4.5rem;
}

.p-access-box__info {
	background-color: #fff;
	color: var(--color-primary);
	font-size: 1.5rem;
	letter-spacing: 0.14em;
	line-height: 1.6666666667;
	padding: 1.2rem;
	position: relative;
	text-align: center;
	font-weight: bold;
}

.p-access-box__info::before {
	content: "";
	background: url("../images/check_txt.svg") no-repeat center/contain;
	height: 5.4rem;
	width: 5.4rem;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
}

@media (min-width: 576px) {

.d-sm-none {
	display: none !important;
}

.d-sm-block {
	display: block !important;
}

.d-sm-flex {
	display: flex !important;
}

}

@media (min-width: 768px) {

:root {
	--font-size-base: 1.6rem;
}

html {
	font-size: 10px;
}

.d-md-none {
	display: none !important;
}

.d-md-block {
	display: block !important;
}

.d-md-flex {
	display: flex !important;
}

.p-footer {
	padding: 5rem 2rem;
}

.p-footer__logo {
	width: 32.4rem;
	margin-bottom: 1.7rem;
}

.p-footer__copyright {
	font-size: 1rem;
}

.hline01 {
	letter-spacing: 0.1em;
}

.hline01__ttl {
	font-size: min(3.4vw, 3.4rem);
}

.hline01__medium {
	font-size: min(3.8vw, 3.8rem);
}

.hline01__number {
	font-size: min(6.2vw, 6.2rem);
}

.hline01-sub {
	font-size: min(1.8vw, 1.8rem);
	width: min(10.2vw, 10.2rem);
	letter-spacing: 0.06em;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.hline01-sub.--fs-large {
	font-size: min(2.2vw, 2.2rem);
}

.hline01-sub.--style-medium {
	font-size: min(2.4vw, 2.4rem);
}

.hline01-sub__number {
	font-size: min(6.2vw, 6.2rem);
}

.hline01-sub__medium {
	font-size: min(2vw, 2rem);
}

.sp {
	display: none !important;
}

.p-mv {
	padding-block: 15.4rem 11.3rem;
}

.p-mv__wrap {
	display: grid;
	align-items: flex-end;
	grid-template-columns: 1fr 57%;
	-moz-column-gap: 5.4rem;
	column-gap: 5.4rem;
	margin-right: -8rem;
}

.p-mv__img {
	order: 2;
}

.p-mv__info {
	padding-bottom: 2.6rem;
	margin-top: 0;
}

.p-mv__txt {
	font-size: 1rem;
	margin-top: 9.4rem;
}

.p-mv__scroll {
	display: block;
	position: absolute;
	bottom: -2.5rem;
	left: 50%;
	transform: translateX(-50%);
}

.p-mv__scroll img {
	width: 3.7rem;
}

.p-osusume {
	padding-block: 10.5rem 12rem;
}

.p-osusume .hline01 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8rem;
}

.p-osusume .hline01__ttl::after {
	left: calc(100% + 2.4rem);
	top: 50%;
	transform: translateY(-50%);
}

.p-osusume__center {
	top: calc(50% - 1.5rem);
	width: min(41.5vw, 41.5rem);
}

.p-osusume-list {
	gap: min(21vw, 21rem) min(20vw, 20rem);
}

.p-osusume-list__image {
	width: min(31.3vw, 31.3rem);
}

.p-feature {
	padding-block: 12rem;
}

.p-feature .hline01 {
	margin-bottom: 6rem;
}

.p-feature-list__item {
	gap: min(4vw, 4rem);
}

.p-feature-list__item:not(:last-child) {
	margin-bottom: min(9.5vw, 9.5rem);
}

.p-feature-list__image {
	flex: 0 0 min(38vw, 38rem);
	margin-top: 1.8rem;
}

.p-feature-list__content {
	flex: 1 1;
}

.p-feature-list__num {
	margin-bottom: 3.5rem;
}

.p-feature-list__ttl {
	font-size: min(2.6vw, 2.6rem);
	margin-bottom: min(3vw, 3rem);
}

.p-feature-list__txt {
	font-size: 1.4rem;
}

.p-pickup {
	padding-block: 15rem 12rem;
}

.p-pickup-list__item {
	gap: min(2vw, 2rem);
	display: flex;
	align-items: center;
}

.p-pickup-list__body {
	flex: 1 1;
}

.p-pickup-list__image {
	width: min(38vw, 38rem);
}

.p-pickup-list__head {
	margin-bottom: 2.5rem;
}

.p-pickup-list__label {
	margin-right: min(1.5vw, 1.5rem);
	font-size: min(2.2vw, 2.2rem);
}

.p-pickup-list__number {
	font-size: min(6.2vw, 6.2rem);
	margin-right: min(3vw, 3rem);
}

.p-pickup-list__tag {
	font-size: min(3.4vw, 3.4rem);
}

.p-pickup-list__ttl {
	font-size: min(2.6vw, 2.6rem);
}

.p-pickup-list__desc {
	max-width: 54rem;
}

.p-overview {
	padding-top: 12rem;
}

.p-overview .hline01 {
	margin-bottom: 2.5rem;
}

.p-overview .hline01-sub {
	font-size: min(3vw, 3rem);
	margin-bottom: min(2vw, 2rem);
}

.p-overview-list__item {
	gap: 0;
	padding-block: 4rem;
	grid-template-columns: repeat(2, 1fr);
}

.p-overview-list__item:not(:last-child)::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	height: 1px;
	width: 100%;
	background-image: repeating-linear-gradient(to right, #d9dbd5 0, #d9dbd5 0.4rem, transparent 0.4rem, transparent 1rem);
}

.p-overview-list__head {
	padding-right: 2rem;
}

.p-overview-list__ttl {
	font-size: min(2.6vw, 2.6rem);
}

.p-overview-list__content {
	font-size: 1.4rem;
}

.p-overview-list__content small {
	font-size: 1rem;
}

.p-tuition {
	padding-block: 5rem;
}

.p-tuition__wrap {
	padding-left: 4rem;
}

.p-tuition__note {
	font-size: 1rem;
}

.p-tuition__table-note {
	display: none;
}

.p-tuition-table table {
	font-size: min(1.2vw, 1.2rem);
	width: 100%;
}

.p-tuition-table table th,
.p-tuition-table table td {
	padding-block: min(0.8vw, 0.8rem);
}

.p-tuition-table table th.col-first {
	width: 16.3rem;
}

.p-tuition-table table td.txt-left {
	padding-left: min(1.3vw, 1.3rem);
}

.p-access .hline01 {
	margin-bottom: 8rem;
}

.p-access__txt {
	margin-bottom: 6rem;
	font-size: 1.4rem;
	text-align: center;
}

.p-access__btn {
	font-size: 1.8rem;
	padding: 0.9rem 1rem;
	width: 40rem;
}

.p-access-area {
	height: 90.3rem;
	padding-block: 6rem;
	margin-top: 8rem;
}

.p-access-area__ttl {
	width: 37.1rem;
}

.p-access-box {
	max-width: 44rem;
	padding: 1.8rem;
}

}

@media (min-width: 1000px) {

.d-lg-none {
	display: none !important;
}

.d-lg-block {
	display: block !important;
}

.d-lg-flex {
	display: flex !important;
}

.p-header {
	padding-block: 3.2rem;
}

.p-header__logo img {
	width: 24.6rem;
}

.p-header__nav {
	display: flex;
	-moz-column-gap: 4rem;
	column-gap: 4rem;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
}

.p-header__nav a::after {
	height: 0.3rem;
	transform: scaleY(0);
}

.hamburger-box {
	display: none;
}

.hline01-sub {
	left: 4rem;
}

.sp-lg {
	display: none !important;
}

.p-mv__wrap {
	grid-template-columns: 1fr 57rem;
}

.p-about__wrap {
	grid-template-columns: 1fr 44rem;
}

.p-about__img {
	order: -1;
	margin-left: -8rem;
}

.p-feature-list__item {
	gap: min(8vw, 8rem);
	padding-left: 4rem;
}

.p-pickup-list__item {
	padding-right: 3.5rem;
}

.p-overview-list {
	padding-inline: 4rem;
}

.p-access-area__wrap {
	padding-right: 4rem;
}

}

@media (min-width: 1200px) {

.d-xl-none {
	display: none !important;
}

.d-xl-block {
	display: block !important;
}

.d-xl-flex {
	display: flex !important;
}

}

@media (max-width: 999px) {

.p-header__nav a {
	padding-block: 0.8rem;
}

.p-header__nav a:not(:last-child) {
	margin-bottom: 4rem;
}

.p-header__content {
	left: 10rem;
	top: 0;
	bottom: 0;
	right: 0;
	position: fixed;
	background-color: #dfe0d9;
	padding: 6rem 8rem 6rem 3.4rem;
	overflow-y: auto;
	transform: translateX(100%);
	transition: all 0.2s ease-in-out;
	opacity: 0;
}

.p-header__content.is-active {
	opacity: 1;
	transform: translateX(0);
}

.pc-lg {
	display: none !important;
}

.p-access-area__wrap {
	flex-direction: column;
	gap: 4rem;
}

.p-access-box {
	margin: auto;
}

}

@media (max-width: 767px) {

.hline01 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.5rem;
}

.pc {
	display: none !important;
}

.p-mv {
	margin-top: var(--headH);
}

.p-mv__img {
	margin-inline: calc(var(--gutter) * -1);
}

.p-mv__logo {
	padding-inline: 4.7rem;
	text-align: center;
}

.p-osusume .hline01__ttl::after {
	bottom: 100%;
	right: -3rem;
}

.p-feature .inner {
	padding-inline: 5rem;
}

.p-feature-list__item {
	flex-direction: column-reverse;
}

.p-feature-list__head {
	display: flex;
	align-items: center;
	flex-flow: wrap;
	gap: 4rem;
	margin-bottom: 2rem;
}

.p-feature-list__image {
	padding: 0 6.5rem;
}

.p-pickup .hline01 {
	gap: 2rem;
}

.p-pickup-list__image {
	margin-inline: auto;
	margin-top: 4rem;
}

.p-overview .hline01 {
	gap: 0;
}

.p-overview-list__head {
	text-align: center;
}

.p-tuition .hline01 {
	gap: 2.5rem;
}

.p-tuition .inner {
	padding-inline: 5rem;
}

.p-tuition-table {
	overflow-x: auto;
	padding-bottom: 0.5rem;
}

.p-access .hline01 {
	gap: 2.5rem;
}

}

@keyframes fadeUp {

0% {
	opacity: 0;
	transform: translate(0px, 40px);
}

100% {
	opacity: 1;
	transform: translate(0px, 0);
}

}

@keyframes fadeIn {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes fadeZoomOut {

0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}

}

