*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

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

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: inherit;
}

body {
	background-color: #faf8f6;
	color: #322e2c;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

img {
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
}

.l-inner {
	padding: 0 15px;
}

.c-title {
	font-weight: 700;
}

.c-title .main {
	color: #ff9200;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	text-transform: capitalize;
}

.c-title .sub {
	font-size: 32px;
	line-height: 1.45;
	margin-top: 4px;
}

.c-more-link {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 8px;
}

.c-more-link .icon {
	height: 40px;
	width: 40px;
}

.c-card__image {
	aspect-ratio: 520/390;
	width: 100%;
}

.c-card__image img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-card__body {
	background: #fff;
	border-radius: 0 0 16px 16px;
	padding: 32px 24px;
}

.c-card__tag {
	background: #ff9200;
	border-radius: 50%;
	height: 16px;
	width: 16px;
}

.c-card__title {
	font-size: 20px;
	font-weight: 700;
	margin-top: 16px;
}

.c-card__text {
	line-height: 1.45;
	margin-top: 8px;
}

.c-card__link {
	margin-top: 16px;
}

.p-header {
	background: #fff;
	border-radius: 0 0 16px 16px;
	padding: 8px 0;
	position: fixed;
	width: 100%;
	z-index: 400;
}

.p-header a {
	display: block;
}

.p-header__inner {
	margin-left: auto;
	margin-right: auto;
	padding: 0 8px;
}

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

.p-header__logo {
	height: 44px;
	width: 86px;
}

.p-header__logo img {
	height: 100%;
	width: 100%;
}

.p-header__nav {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 4px;
}

.min-tab {
	display: none;
}

.p-header__list {
	align-items: center;
	display: flex;
	gap: 24px;
}

.p-header__item a {
	position: relative;
}

.p-header__item a::after {
	background: #322e2c;
	bottom: -8px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: all 0.3s;
	width: 100%;
}

.p-header__item a:hover::after {
	transform: scale(1, 1);
}

.drawer-icon {
	background: #eee;
	border-radius: 8px;
	height: 48px;
	position: relative;
	width: 48px;
	z-index: 500;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
	top: 7px;
	transform: rotate(30deg);
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
	display: none;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
	top: 7px;
	transform: rotate(-30deg);
}

.drawer-icon__bars {
	height: 16px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
}

.drawer-icon__bar {
	background: #322e2c;
	height: 2px;
	left: 0;
	position: absolute;
	top: 0;
	transition: transform 0.3s linear, top 0.3s linear;
	width: 24px;
}

.drawer-icon__bar:nth-of-type(2) {
	top: 7px;
}

.drawer-icon__bar:nth-of-type(3) {
	top: 13px;
}

.drawer-content {
	background: #faf8f6;
	height: 100%;
	overscroll-behavior-y: none;
	padding: 85px 16px 0px 16px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(110%);
	transition: transform 0.3s linear;
	width: 100%;
	z-index: 200;
}

.drawer-content.is-checked {
	transform: translateX(0);
}

.drawer-content__item {
	border-bottom: 1px solid #cfcdcc;
	display: block;
	font-size: 14px;
	line-height: 1;
	padding: 16px 17px 16px 8px;
	position: relative;
}

.drawer-content__item::after {
	background: url(./img/arrow-icon4.svg) no-repeat center center/contain;
	content: "";
	height: 15px;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 9px;
}

.p-header__item-button {
	background: #ff9200;
	border-radius: 8px;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 18px 24px;
}

.p-header__item-button a::after {
	display: none;
}

.drawer-content__privacyPolicy {
	font-size: 14px;
	letter-spacing: 1.4px;
	margin-top: 29px;
}

.p-tracking {
	bottom: 10px;
	opacity: 0;
	position: fixed;
	right: 16px;
	transition: 0.4s;
	z-index: -1;
}

.p-tracking__container {
	display: flex;
	flex-direction: row;
}

.p-tracking__link {
	align-items: center;
	border-radius: 50%;
	display: block;
	display: flex;
	font-size: 16px;
	height: 120px;
	justify-content: center;
	letter-spacing: 0.6px;
	line-height: 1.16;
	text-align: center;
	width: 120px;
}

.p-tracking__link.left {
	background: #ff9200;
	border: 1px solid #fff;
	color: #fff;
}

.p-tracking__link.right {
	background: #fff;
	border: 1px solid #ff9200;
	color: #ff9200;
}

.p-mv {
	background: url(./img/mv-sp.png) no-repeat center center/cover;
	border-radius: 0 0 0 32px;
	height: 667px;
	width: 100%;
}

.p-mv__inner {
	position: relative;
	width: 100%;
}

.p-mv__container {
	height: 667px;
	position: relative;
}

.p-mv__background {
	position: absolute;
}

.p-mv__lead {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	height: 90px;
	left: 32px;
	line-height: 1.45;
	position: absolute;
	top: 53%;
	transform: translateY(-50%);
	width: 230px;
}

.p-mv__lead span {
	color: #ff9200;
}

.p-mv__wrap {
	background: #fff;
	border-radius: 20px 0 0 20px;
	bottom: 24px;
	padding: 8px 48px;
	position: absolute;
	right: 0;
}

.p-mv__head {
	color: #ff9200;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
}

.p-mv__head span {
	text-transform: uppercase;
}

.p-mv__body {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
}

.p-reserve {
	margin-top: 48px;
}

.p-reserve__inner {
	background: #ff9200;
	border-radius: 64px 64px 0 0;
	padding: 60px 16px;
}

.p-reserve__container {
	border-radius: 16px;
	display: block;
	height: 274px;
	margin-left: auto;
	margin-right: auto;
	max-width: 343px;
	position: relative;
	width: 100%;
}

.p-reserve__image {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-reserve__image img {
	border-radius: 16px;
	-o-object-fit: cover;
	aspect-ratio: 342/274;
	object-fit: cover;
}

.p-reserve__title {
	bottom: 58px;
	color: #fff;
	left: 32px;
	position: absolute;
}

.p-reserve__title .main {
	font-family: "Poppins", sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 0.7;
	text-transform: capitalize;
}

.p-reserve__title .sub {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 10px;
}

.p-about {
	background: #ff9200;
	padding-bottom: 120px;
}

.p-about__inner {
	padding: 0 16px;
}

.p-about__image img {
	width: 100%;
}

.p-about__body {
	background: #fff;
	border-radius: 0 0 16px 16px;
	padding: 24px;
}

.p-about__lead {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 24px;
}

.p-about__text {
	line-height: 1.45;
	margin-top: 16px;
}

.p-about__link {
	margin-top: 16px;
}

.p-class {
	background: #ff9200;
}

.p-class__inner {
	background: #faf8f6;
	border-radius: 0 64px 0 0;
	padding: 120px 16px;
}

.p-class__cards {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin-top: 48px;
}

.p-class__tag.tag2 {
	background: #447fe0;
}

.p-class__tag.tag3 {
	background: #18ba94;
}

.p-class__tag.tag4 {
	background: #efd04f;
}

.p-class__link .icon2 circle {
	fill: #447fe0;
}

.p-class__link .icon3 circle {
	fill: #18ba94;
}

.p-class__link .icon4 circle {
	fill: #efd04f;
}

.p-staff {
	background: #faf8f6;
}

.p-staff__inner {
	background: #fff;
	border-radius: 64px 0 0 0;
	padding: 118px 16px 60px 16px;
}

.p-staff__body {
	margin-top: 48px;
}

.p-staff__image {
	aspect-ratio: 343/258;
}

.p-staff__image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	border-radius: 16px;
	object-fit: cover;
}

.p-staff__head {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.45;
	margin-top: 16px;
}

.p-staff__text {
	line-height: 1.42;
	margin-top: 9px;
}

.p-staff__link {
	font-size: 20px;
	margin-top: 16px;
}

.p-facility {
	background: #fff;
	padding: 60px 0 120px 0;
}

.p-facility__items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	margin-top: 48px;
}

.p-facility__item {
	aspect-ratio: 340/340;
	width: calc(50% - 8px);
}

.p-facility__item img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-facility__head {
	font-size: 20px;
	font-weight: 700;
	margin-top: 30px;
}

.p-facility__text {
	line-height: 1.4;
	margin-top: 8px;
}

.p-facility__link {
	font-size: 20px;
	margin-top: 16px;
}

.p-news {
	margin-top: 120px;
}

.p-news__inner {
	padding: 0 16px;
}

.p-news__container {
	background: #fff;
	border-radius: 16px;
	padding: 80px 24px 77px 24px;
}

.p-news__item {
	display: none;
}

.p-news__item.active {
	display: block;
}

.p-news__item-wrap {
	padding: 31.5px 72px 31.5px 8px;
	position: relative;
	text-align: left;
	transition: opacity 0.5s ease;
}

.p-news__item-wrap:not(:last-of-type) {
	border-bottom: 1px solid #cfcdcc;
}

.p-news__item-wrap::after {
	background: url(./img/arrow-icon2.svg) no-repeat center center/contain;
	content: "";
	height: 40px;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
}

.p-news__item-wrap:nth-of-type(1) {
	border-top: 1px solid #cfcdcc;
}

.p-news__day {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	opacity: 0.5;
}

.p-news__head {
	margin-top: 16px;
}

.p-news__link-wrap {
	margin-top: 42px;
	text-align: center;
}

.p-news__link {
	display: inline-block;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	padding-right: 56px;
	position: relative;
}

.p-news__link::after {
	background: url(./img/arrow-icon3.svg) no-repeat center center/contain;
	content: "";
	height: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.p-news-modal__date {
	color: #64615f;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1.6px;
	line-height: 1;
	text-align: left;
}

.p-news-modal__title {
	font-size: 20px;
	line-height: 1.5;
	margin-top: 16px;
	text-align: left;
}

.p-news-modal__thumb {
	margin-top: 24px;
}

.p-news-modal__thumb img {
	aspect-ratio: 295/148;
	border-radius: 8px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-news-modal__text {
	line-height: 1.5;
	margin-top: 24px;
	text-align: left;
}

.p-news__items-wrapper {
	margin-top: 48px;
}

.accordion_header {
	border-top: 1px solid #cfcdcc;
}

.p-faq {
	margin-top: 80px;
}

.p-faq__inner {
	padding: 0 16px;
}

.p-faq__container {
	background: #fff;
	border-radius: 16px;
	padding: 78px 24px 77px 24px;
}

.p-faq__title .main {
	text-transform: uppercase;
}

.p-faq__items {
	margin-top: 46px;
}

.p-faq__item {
	border-top: 1px solid #cfcdcc;
}

.p-faq__item:last-of-type {
	border-bottom: 1px solid #cfcdcc;
}

.accordion-box.is-open .bar:nth-child(2) {
	transform: rotate(0);
}

.accordion-head {
	cursor: pointer;
	padding: 31.5px 56px 31.5px 62px;
	position: relative;
}

.accordion-head::before {
	content: "Q";
	font-size: 28px;
	font-weight: 300;
	height: 42px;
	left: 13px;
	line-height: 1.5;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
}

.accordion-button {
	text-align: left;
}

.accordion-bars {
	height: 24px;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.accordion-bars .bar {
	background: #ff9200;
	height: 1px;
	position: absolute;
	transition: all 0.3s;
	width: 24px;
}

.accordion-bars .bar:nth-of-type(1) {
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.accordion-bars .bar:nth-of-type(2) {
	right: 0;
	top: 50%;
	transform: rotate(90deg) translateY(-50%);
}

.accordion-body {
	background: #faf8f6;
	color: #ff9200;
	display: none;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	padding: 33.5px 8px 31.5px 62px;
	position: relative;
}

.accordion-body::before {
	content: "A";
	font-size: 28px;
	font-weight: 500;
	height: 42px;
	left: 14px;
	line-height: 1.5;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
}

.p-information {
	margin-top: 65px;
	padding-bottom: 152px;
}

.p-information__inner {
	padding: 16px;
}

.p-information__container {
	background: #fff;
	border-radius: 16px;
	padding: 82px 24px 77px 24px;
}

.p-information__map {
	border-radius: 8px;
	height: 0;
	margin-top: 48px;
	overflow: hidden;
	padding-bottom: 51.25%;
	position: relative;
}

.p-information__map iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-information__item {
	border-bottom: 1px solid #cfcdcc;
	display: flex;
	flex-direction: column;
	font-size: 16px;
	gap: 8px;
	letter-spacing: 1.6px;
	padding: 31.5px 8px;
}

.p-information__item-head {
	width: 160px;
}

.p-information__item-text {
	word-wrap: break-word;
}

.p-information__item-text.last {
	line-height: 1.7;
	margin-top: 2px;
	width: 100%;
}

.p-information__item-wrap .image {
	margin-top: 16px;
	max-width: 231px;
	width: 100%;
}

.p-footer {
	position: relative;
}

.p-footer__inner {
	background: #fff;
}

.footer__inner-colored {
	background: #faf8f6;
}

.p-footer__container {
	padding: 82px 16px 0 16px;
}

.p-footer__logo {
	margin-left: auto;
	margin-right: auto;
	max-width: 235px;
	width: 100%;
}

.p-footer__nav {
	margin-top: 44px;
}

.p-footer__lists {
	border-bottom: 1px solid #cfcdcc;
	display: flex;
	flex-direction: column;
	font-size: 16px;
	gap: 24px;
	padding: 0 8px 27px 8px;
}

.p-footer__list a {
	padding-bottom: 8px;
	position: relative;
}

.p-footer__list a::after {
	background: #322e2c;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: all 0.3s;
	width: 100%;
}

.p-footer__list a:hover::after {
	transform: scale(1, 1);
}

.p-footer__bottom {
	margin-top: 29px;
}

.p-footer__bottom-items {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	gap: 9px;
	letter-spacing: 1.5px;
	padding: 0 8px 44px 8px;
}

.p-footer__bottom-item a {
	padding-bottom: 8px;
	position: relative;
}

.p-footer__bottom-item a::after {
	background: #322e2c;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: all 0.3s;
	width: 100%;
}

.p-footer__bottom-item a:hover::after {
	transform: scale(1, 1);
}

.p-footer__copyright {
	background: #ff9200;
	color: #fff;
	display: block;
	font-size: 12px;
	padding: 9px 0;
	text-align: center;
	width: 100%;
}

.p-footer__pageTop {
	height: 64px;
	left: 50%;
	position: absolute;
	top: -32px;
	transform: translateX(-50%) rotate(-90deg);
	width: 64px;
}

.p-footer__pageTop img {
	height: 100%;
	width: 100%;
}

.p-top {
	position: relative;
}

.p-top::after {
	background: #fff;
	border-radius: 64px 0 0 0;
	bottom: -33px;
	content: "";
	height: 120px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-top-about {
	background: url(./img/top-about_sp.png) no-repeat center top/cover;
}

.p-top-class {
	background: url(./img/top-class_sp.png) no-repeat center top/cover;
}

.p-top-price {
	background: url(./img/top-price_sp.png) no-repeat center top/cover;
}

.p-top-facility {
	background: url(./img/top-facility_sp.png) no-repeat center top/cover;
}

.p-top__inner {
	height: 667px;
	width: 100%;
}

.p-top__title {
	left: 32px;
	position: absolute;
	top: 48%;
	transform: translateY(-50%);
}

.p-top__title .sub {
	color: #fff;
}

.p-feature {
	background: #fff;
}

.p-feature__container {
	padding-top: 33px;
}

.p-feature__items {
	display: flex;
	flex-direction: column;
	gap: 80px;
	justify-content: center;
	margin-top: 48px;
}

.p-feature__image {
	aspect-ratio: 343/255;
	width: 100%;
}

.p-feature__image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	border-radius: 16px;
	object-fit: cover;
}

.p-feature__head {
	font-size: 20px;
	font-weight: 700;
	margin-top: 17px;
}

.p-feature__text {
	line-height: 1.45;
	margin-top: 8px;
}

.p-cta {
	background: #fff;
	padding-bottom: 152px;
	padding-top: 78px;
	position: relative;
}

.p-cta::after {
	background: url(./img/cta_sp.png) no-repeat center center/cover;
	content: "";
	height: 210px;
	left: 0;
	position: absolute;
	top: 78px;
	width: 100%;
	z-index: 0;
}

.p-cta__inner {
	padding-top: 161px;
}

.p-cta__container {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	padding: 37px 24px;
	position: relative;
	text-align: center;
	z-index: 1;
}

.p-cta__head {
	font-size: 20px;
	font-weight: 700;
}

.p-cta__text {
	margin-top: 6px;
}

.p-cta__button-wrap {
	margin-top: 30px;
	text-align: center;
}

.p-cta__button {
	background: #ff9200;
	border-radius: 90px;
	color: #fff;
	display: inline-block;
	letter-spacing: 0.9px;
	line-height: 1;
	max-width: 295px;
	padding: 16px 20px;
	width: 100%;
}

.p-staff-lower {
	background: #fff;
	padding-bottom: 152px;
}

.p-staff-lower__items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 48px;
	row-gap: 32px;
	-moz-column-gap: 16px;
	column-gap: 16px;
}

.p-staff-lower__item {
	width: calc((100% - 16px) / 2);
}

.p-staff-lower__image {
	aspect-ratio: 256/256;
}

.p-staff-lower__image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	border-radius: 16px;
	object-fit: cover;
}

.p-staff-lower__head {
	font-size: 20px;
	line-height: 1;
	margin-top: 15px;
}

.p-staff-lower__text {
	font-size: 14px;
	margin-top: 8px;
}

.p-footer-lower {
	margin-top: 0 !important;
}

.p-footer-lower__inner {
	background: #faf8f6;
}

.p-class-lower__menu {
	background: #fff;
	padding-top: 31px;
}

.p-class-lower__menu-lists {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	-moz-column-gap: 6%;
	column-gap: 6%;
	font-size: 24px;
	row-gap: 32px;
}

.p-class-lower__menu-list a {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-left: 24px;
	position: relative;
}

.p-class-lower__menu-list a::before {
	border-radius: 50%;
	content: "";
	height: 16px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.p-class-lower__menu-list a::after {
	bottom: -8px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: all 0.3s;
	width: 100%;
}

.p-class-lower__menu-list.list1 a::before {
	background: #ff9200;
}

.p-class-lower__menu-list.list1 a::after {
	background: #ff9200;
}

.p-class-lower__menu-list.list2 a::before {
	background: #447fe0;
}

.p-class-lower__menu-list.list2 a::after {
	background: #447fe0;
}

.p-class-lower__menu-list.list3 a::before {
	background: #18ba94;
}

.p-class-lower__menu-list.list3 a::after {
	background: #18ba94;
}

.p-class-lower__menu-list.list4 a::before {
	background: #efd04f;
}

.p-class-lower__menu-list.list4 a::after {
	background: #efd04f;
}

.p-class-lower__menu-list.list5 a::before {
	background: #64615f;
}

.p-class-lower__menu-list.list5 a::after {
	background: #64615f;
}

.p-class-lower__course {
	background: #fff;
	display: flex;
	flex-direction: column;
	padding-top: 120px;
}

.p-class-lower__course-tag {
	border-radius: 50%;
	height: 16px;
	width: 16px;
}

.p-class-lower__course-tag.tag1 {
	background: #ff9200;
}

.p-class-lower__course-tag.tag2 {
	background: #447fe0;
}

.p-class-lower__course-tag.tag3 {
	background: #18ba94;
}

.p-class-lower__course-tag.tag4 {
	background: #efd04f;
}

.p-class-lower__course-title {
	font-size: 24px;
	font-weight: 700;
	margin-top: 22px;
}

.p-class-lower__course-text {
	line-height: 1.4;
	margin-top: 16px;
}

.p-class-lower__course-price {
	margin-top: 18px;
}

.p-class-lower__course-price .items {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.p-class-lower__course-price .items .item span.fz {
	font-size: 16px;
}

.p-class-lower__course-price .items .item span.annotation {
	font-size: 10px;
	font-weight: 300;
	position: absolute;
	top: -2px;
}

.item-wrap {
	display: flex;
	flex-direction: row;
	font-weight: 400;
	gap: 24px;
	padding-left: 16px;
	position: relative;
}

.item-wrap::before {
	background: #e6e6e6;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.p-class-lower__course-lead {
	font-size: 20px;
	margin-top: 16px;
}

.p-class-lower__course-price-text {
	font-size: 10px;
	font-weight: 400;
	margin-top: 6px;
}

.p-class-lower__course-image {
	aspect-ratio: 343/258;
	margin-top: 32px;
}

.p-class-lower__course-image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	border-radius: 16px;
	object-fit: cover;
}

.p-class-lower__course-wrap {
	padding: 0 16px;
	position: relative;
}

.p-class-lower__course-wrap.course-wrap2::before,
.p-class-lower__course-wrap.course-wrap3::before,
.p-class-lower__course-wrap.course-wrap4::before {
	content: "";
	height: 120px;
	left: 0;
	position: absolute;
	top: -120px;
	width: 100%;
}

.p-class-lower__course-wrap.course-wrap2 {
	background: #faf8f6;
	margin-top: 240px;
}

.p-class-lower__course-wrap.course-wrap2::before {
	background: #faf8f6;
	border-radius: 0 64px 0 0;
}

.p-class-lower__course-wrap.course-wrap3 {
	background: #fff;
}

.p-class-lower__course-wrap.course-wrap3::before {
	background: #fff;
	border-radius: 64px 0 0 0;
}

.p-class-lower__course-wrap.course-wrap4 {
	background: #faf8f6;
}

.p-class-lower__course-wrap.course-wrap4::before {
	background: #faf8f6;
	border-radius: 0 64px 0 0;
}

.p-class-lower__course-box.box2 {
	padding-bottom: 240px;
}

.p-class-lower__course-box.box3 {
	padding-bottom: 240px;
}

.p-class-lower__course-box.box4 {
	padding-bottom: 120px;
}

.p-class-lower__course-levels {
	border-radius: 16px;
	margin-top: 13px;
	padding: 24px 32px 0 32px;
}

.p-class-lower__course-levels.course-levels2 {
	background: #fff;
}

.p-class-lower__course-levels.course-levels3 {
	background: #faf8f6;
	margin-top: 36px;
}

.p-class-lower__course-levels.course-levels3 .p-class-lower__course-level {
	padding-bottom: 28px;
}

.p-class-lower__course-levels.course-levels3 .p-class-lower__course-level:last-of-type {
	padding-bottom: 22px;
}

.p-class-lower__course-levels.course-levels4 {
	background: #fff;
	margin-top: 28px;
}

.p-class-lower__course-levels.course-levels4 .p-class-lower__course-level:last-of-type {
	padding-bottom: 19px;
}

.p-class-lower__course-level {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding-bottom: 29px;
}

.p-class-lower__course-level:not(:first-of-type) {
	border-top: 1px solid #cfcdcc;
	padding-top: 31px;
}

.p-class-lower__course-level-item {
	font-size: 20px;
	font-weight: 700;
	padding-left: 32px;
	position: relative;
}

.p-class-lower__course-level-item::before {
	border-radius: 50%;
	content: "";
	height: 16px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.p-class-lower__course-level-item.tag2::before {
	background: #447fe0;
}

.p-class-lower__course-level-item.tag3 {
	font-size: 18px;
}

.p-class-lower__course-level-item.tag3 span {
	display: block;
	font-size: 20px;
}

.p-class-lower__course-level-item.tag3 span:nth-of-type(2) {
	color: #64615f;
	font-size: 16px;
	font-weight: 400;
}

.p-class-lower__course-level-item.tag3::before {
	background: #18ba94;
}

.p-class-lower__course-level-item.tag4 {
	font-size: 18px;
}

.p-class-lower__course-level-item.tag4 span {
	font-size: 20px;
}

.p-class-lower__course-level-item.tag4::before {
	background: #efd04f;
}

.p-class-lower__course-level-text {
	font-size: 18px;
	line-height: 1.45;
}

.p-class-lower__course-level-price {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.p-class-lower__course-level-price .items {
	display: flex;
	flex-direction: row;
	gap: 24px;
	padding-left: 16px;
	position: relative;
}

.p-class-lower__course-level-price .items::before {
	background: #e6e6e6;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.p-class-lower__course-level-price .items .item span.fz {
	font-size: 16px;
}

.p-class-lower__course-level-price .items .item span.annotation {
	font-size: 10px;
	font-weight: 300;
	position: absolute;
	top: -2px;
}

.p-class-lower__course-level-annotation {
	display: flex;
	flex-direction: column;
	font-size: 10px;
	font-weight: 400;
	gap: 8px;
	margin-top: 18px;
}

.p-class-lower__course-level-annotation.annotation3 {
	margin-top: 24px;
}

.p-class-lower__course-level-annotation.annotation4 {
	margin-top: 21px;
}

.p-class-lower__schedule {
	padding: 120px 0 150px 0;
}

.p-class-lower__schedule-image {
	margin-top: 48px;
	overflow-x: scroll;
	width: 100%;
}

.p-class-lower__schedule-image img {
	height: 480px;
	max-width: none;
	width: auto;
}

.p-class-lower__schedule-scroll {
	font-size: 20px;
	font-weight: 600;
	margin-top: 10px;
	padding-right: 44px;
	position: relative;
	text-align: right;
	text-transform: uppercase;
}

.p-class-lower__schedule-scroll::after {
	background: url(./img/arrow-icon3.svg) no-repeat center center/contain;
	content: "";
	height: 14px;
	position: absolute;
	right: -5px;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	width: 24px;
}

.p-price__reserve {
	background: #fff;
	padding-top: 33px;
}

.p-price__container {
	aspect-ratio: 343/274;
	border-radius: 16px;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-price__benefits {
	background: #fff;
	padding-bottom: 80px;
	padding-top: 157px;
}

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

.p-price__benefits__head {
	display: inline;
	position: relative;
}

.p-price__benefits__head .tag {
	align-items: center;
	background: #ff9200;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	height: 80px;
	justify-content: center;
	left: -65px;
	position: absolute;
	top: -96px;
	transform: rotate(-20deg);
	width: 80px;
}

.p-price__benefits__head .title {
	display: inline;
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}

.p-price__benefits__items {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-top: 48px;
}

.p-price__benefits__item {
	align-items: flex-end;
	align-items: flex-end;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: row;
	min-height: 125px;
	padding: 16px 22px 24px 22px;
	width: 100%;
}

.p-price__benefits__num {
	color: #ff9200;
	font-size: 50px;
	font-weight: 700;
	line-height: 1;
	padding-top: 24px;
	position: relative;
}

.p-price__benefits__num::after {
	background: #ff9200;
	border-radius: 50%;
	content: "";
	height: 12px;
	left: 0;
	position: absolute;
	top: 7px;
	width: 12px;
}

.p-price__benefits__text {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	gap: 4px;
	line-height: 1.2;
	padding-left: 16px;
	-moz-text-align-last: left;
	text-align-last: left;
}

.p-price__benefits__text .bold {
	font-size: 20px;
	font-weight: 700;
}

.p-price__benefits__text .bold span {
	display: block;
	font-size: 16px;
}

.p-price__cost {
	margin-top: 120px;
}

.p-price__cost-items {
	background: #fff;
	border: 1px solid #ff9200;
	border-radius: 16px;
	padding: 21px 24px;
}

.p-price__cost-item {
	color: #ff9200;
	display: flex;
	flex-direction: row;
	font-size: 20px;
	font-weight: 700;
	justify-content: space-between;
}

.p-price__cost-item:nth-of-type(1) {
	border-bottom: 1px solid #f7ddba;
	padding-bottom: 32px;
}

.p-price__cost-item:nth-of-type(2) {
	padding-top: 32px;
}

.p-price__cost-item .right span {
	font-size: 16px;
	font-weight: 500;
}

.p-price__member {
	margin-top: 79px;
}

.p-price__member-container {
	background: #fff;
	border-radius: 16px;
	padding: 64px 24px;
}

.p-price__member-title {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}

.p-price__member-items {
	margin-top: 45px;
}

.p-price__member-item {
	align-items: center;
	border-top: 1px solid #cfcdcc;
	display: flex;
	flex-direction: column;
	gap: 15px;
	justify-content: center;
	padding: 32px 9px 30px 9px;
	text-align: center;
}

.p-price__member-item-box .sub {
	color: #64615f;
	font-size: 16px;
}

.p-price__member-item-head {
	font-size: 24px;
	font-weight: 700;
}

.p-price__member-item-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	margin-top: 8px;
}

.p-price__member-item-wrap {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-right: 16px;
}

.p-price__member-item-wrap:nth-of-type(2) {
	margin-top: 8px;
}

.p-price__member-item-wrap.small p {
	font-size: 16px;
}

.p-price__member-item-wrap.annotation1,
.p-price__member-item-wrap.annotation2 {
	position: relative;
}

.p-price__member-item-wrap.annotation1::after,
.p-price__member-item-wrap.annotation2::after {
	font-size: 10px;
	font-weight: 300;
	height: 14px;
	position: absolute;
	right: 0;
	top: 0;
	width: 16px;
}

.p-price__member-item-wrap.annotation1::after {
	content: "※1";
}

.p-price__member-item-wrap.annotation2::after {
	content: "※2";
}

.p-price__member-item-wrap p {
	font-size: 18px;
}

.p-price__member-item-wrap p span {
	color: #ff9200;
}

.p-price__member-item-wrap p.large {
	text-align: right;
}

.p-price__member-item-wrap p.large span {
	color: #ff9200;
	font-size: 24px;
}

.p-price__member-item-wrap p.tag {
	padding-left: 16px;
	position: relative;
}

.p-price__member-item-wrap p.tag::before {
	background: #e6e6e6;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.p-price__member-text {
	display: flex;
	flex-direction: column;
	font-size: 10px;
	gap: 8px;
	margin-top: 7px;
	padding-left: 9px;
}

.p-price__schedule {
	margin-top: 78px;
	padding-bottom: 152px;
}

.p-price__schedule-button-wrap {
	display: flex;
	justify-content: center;
}

.p-price__schedule-button {
	background: #ff9200;
	border-radius: 90px;
	color: #fff;
	font-size: 18px;
	letter-spacing: 0.9px;
	line-height: 1;
	max-width: 343px;
	padding: 16px 20px;
	text-align: center;
	width: 100%;
}

.p-facility-lower {
	background: #fff;
	padding-bottom: 152px;
	padding-top: 33px;
}

.p-facility-lower__title {
	font-size: 24px;
	font-weight: 700;
}

.p-facility-lower__text {
	line-height: 1.45;
	margin-top: 8px;
}

.p-facility-lower__items {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.p-facility-lower__item-title {
	font-size: 20px;
	font-weight: 700;
	padding-left: 20px;
	position: relative;
}

.p-facility-lower__item-title::before {
	background: #ff9200;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 4px;
}

.p-facility-lower__item-text {
	line-height: 1.45;
	margin-top: 16px;
}

.p-facility-lower__image {
	aspect-ratio: 343/255;
	margin-top: 16px;
}

.p-facility-lower__image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	border-radius: 16px;
	object-fit: cover;
}

.p-privacypolicy {
	background: #fff;
	padding-bottom: 146px;
	padding-top: 136px;
}

.p-privacypolicy__title {
	font-size: 24px;
	font-weight: 700;
}

.p-privacypolicy__lead {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 2.4px;
	line-height: 1.5;
	margin-top: 40px;
}

.p-privacypolicy__body {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 2.4px;
	line-height: 1.5;
	margin-top: 20px;
}

.p-privacypolicy__treaty:not(:first-of-type) {
	margin-top: 24px;
}

.u-hidden-sp {
	display: none;
}

.u-only-pc {
	display: none;
}

@media screen and (min-width: 768px) {

.c-title .main {
	font-size: 24px;
}

.c-title .sub {
	font-size: 48px;
}

.c-more-link p {
	font-size: 20px;
}

.c-card {
	display: flex;
	flex-direction: column;
}

.c-card__body {
	flex: 1;
	min-height: 338px;
	padding: 32px 32px 104px 32px;
	position: relative;
}

.c-card__title {
	font-size: 24px;
	margin-top: 33px;
}

.c-card__text {
	line-height: 1.4;
	margin-top: 16px;
}

.c-card__link {
	bottom: 29px;
	margin-top: 0;
	position: absolute;
}

.p-header {
	padding: 16px 0;
}

.p-header__inner {
	padding: 0 32px;
}

.p-header__logo {
	height: 48px;
	width: 94px;
}

.p-header__nav {
	gap: 20px;
}

.p-header__item {
	font-size: 16px;
}

.p-header__item-button {
	border-radius: 90px;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 16px 48px;
}

.p-tracking {
	right: 32px;
}

.p-mv {
	background: none;
	height: 100vh;
}

.p-mv__container {
	height: 100vh;
}

.p-mv__background {
	background: url(./img/mv-pc.png) no-repeat center center/cover;
	border-radius: 40px;
	height: calc(100vh - 120px);
	right: 32px;
	top: 120px;
	width: 81.5%;
}

.p-mv__lead {
	bottom: 31px;
	color: #322e2c;
	font-size: 40px;
	height: 326px;
	left: 77px;
	letter-spacing: 5.5px;
	line-height: 1.6;
	top: auto;
	transform: none;
	width: 104px;
	writing-mode: vertical-rl;
}

.p-mv__wrap {
	border-radius: 16px;
	bottom: 40px;
	padding: 16px 48px;
	right: 72px;
}

.p-mv__head {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
}

.p-mv__body {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
}

.p-reserve {
	margin-top: 87px;
}

.p-reserve__container {
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}

.p-reserve__image img {
	aspect-ratio: 800/300;
}

.p-reserve__title {
	bottom: auto;
	left: 68px;
	top: 50%;
	transform: translateY(-50%);
}

.p-reserve__title .main {
	font-size: 64px;
}

.p-reserve__title .sub {
	font-size: 24px;
}

.p-about {
	padding-bottom: 240px;
}

.p-about__inner {
	padding: 0 40px;
}

.p-about__lead {
	font-size: 32px;
	margin-top: 56px;
}

.p-about__text {
	font-size: 18px;
}

.p-about__link {
	margin-top: 32px;
}

.p-class__container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1120px;
}

.p-class__cards {
	flex-direction: row;
	margin-top: 56px;
	row-gap: 120px;
	-moz-column-gap: 7%;
	column-gap: 7%;
	flex-wrap: wrap;
}

.p-class__card {
	width: calc(50% - 40px);
}

.p-staff {
	margin-left: auto;
	margin-right: auto;
}

.p-staff__wrap {
	width: 42.5%;
}

.p-staff__container {
	display: flex;
	flex-direction: row;
	gap: 7%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1120px;
}

.p-staff__image {
	aspect-ratio: 600/450;
	width: 57.5%;
}

.p-staff__head {
	font-size: 24px;
	margin-top: 56px;
}

.p-staff__text {
	margin-top: 16px;
}

.p-staff__link {
	margin-top: 32px;
}

.p-facility {
	padding: 120px 0 240px 0;
}

.p-facility__items {
	margin-top: 56px;
	row-gap: 64px;
	-moz-column-gap: 4.5%;
	column-gap: 4.5%;
}

.p-facility__item {
	width: calc(33.3333333333% - 34px);
}

.p-facility__head {
	font-size: 24px;
	margin-top: 56px;
}

.p-facility__bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}

.p-facility__text {
	margin-top: 16px;
	max-width: 640px;
	width: 60%;
}

.p-facility__link {
	margin-top: 28px;
}

.p-news {
	margin-top: 240px;
}

.p-news__inner {
	padding: 0 30px;
}

.p-news__container {
	border-radius: 24px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1312px;
	padding: 160px 30px;
}

.p-news__wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 960px;
}

.p-news__item-wrap {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 32px;
	padding: 39.5px 104px 39.5px 32px;
	width: 100%;
}

.p-news__item-wrap::after {
	right: 32px;
}

.p-news__day {
	font-size: 20px;
	width: 105px;
}

.p-news__head {
	font-size: 20px;
	margin-top: 0;
	width: calc(100% - 105px);
}

.p-news__link-wrap {
	margin-top: 59px;
}

.p-news__link {
	font-size: 20px;
}

.p-news-modal__title {
	font-size: 24px;
	margin-top: 24px;
}

.p-news-modal__thumb {
	margin-top: 56px;
}

.p-news-modal__thumb img {
	aspect-ratio: 960/480;
	border-radius: 16px;
}

.p-news-modal__text {
	font-size: 18px;
	margin-top: 56px;
}

.p-news__items-wrapper {
	margin-top: 56px;
}

.p-faq {
	margin-top: 120px;
}

.p-faq__inner {
	padding: 0 30px;
}

.p-faq__container {
	border-radius: 24px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1312px;
	padding: 155px 30px;
}

.p-faq__wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 960px;
}

.p-faq__items {
	margin-top: 56px;
}

.accordion-head {
	padding: 50px 56px 50px 88px;
}

.accordion-head::before {
	font-size: 32px;
	height: 48px;
	left: 37px;
}

.accordion-button {
	letter-spacing: 2px;
}

.accordion-bars {
	right: 31px;
}

.accordion-body {
	letter-spacing: 2px;
	line-height: 1.6;
	padding: 41.5px 60px 39.5px 88px;
}

.accordion-body::before {
	font-size: 32px;
	left: 38px;
}

.p-information {
	margin-top: 130px;
	padding-bottom: 272px;
}

.p-information__inner {
	padding: 0 30px;
}

.p-information__container {
	border-radius: 24px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1312px;
	padding: 155px 30px;
}

.p-information__wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 960px;
}

.p-information__map {
	border-radius: 16px;
	padding-bottom: 50.25%;
}

.p-information__map {
	margin-top: 56px;
}

.p-information__items {
	margin-top: 24px;
}

.p-information__item {
	flex-direction: row;
	gap: 56px;
	padding: 31.5px 0;
}

.p-information__item-text {
	width: calc(100% - 160px);
}

.p-information__item-text.last {
	margin-top: 0;
}

.p-footer__container {
	padding: 80px 30px 0 30px;
}

.p-footer__logo {
	max-width: 274px;
}

.p-footer__nav {
	margin-left: auto;
	margin-right: auto;
	margin-top: 64px;
	max-width: 1120px;
}

.p-footer__lists {
	flex-direction: row;
	justify-content: space-between;
	padding: 0 0 27px 0;
}

.p-footer__bottom-items {
	flex-direction: row;
	gap: 24px;
	justify-content: center;
	padding: 0 0 60px 0;
}

.p-top-about {
	background: url(./img/top-about_pc.webp) no-repeat center top/cover;
}

.p-top-class {
	background: url(./img/top-class_pc.webp) no-repeat center top/cover;
}

.p-top-price {
	background: url(./img/top-price_pc.webp) no-repeat center top/cover;
}

.p-top-facility {
	background: url(./img/top-facility_pc.webp) no-repeat center top/cover;
}

.p-top__inner {
	height: 740px;
}

.p-top__title {
	left: 50%;
	max-width: 1180px;
	padding: 0 30px;
	top: 39%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-feature__container {
	padding-top: 0px;
}

.p-feature__items {
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 59px;
	-moz-column-gap: 7%;
	column-gap: 7%;
	row-gap: 122px;
}

.p-feature__item {
	width: calc((100% - 80px) / 2);
}

.p-feature__head {
	font-size: 24px;
	margin-top: 32px;
}

.p-feature__text {
	margin-top: 16px;
}

.p-cta {
	padding-bottom: 272px;
	padding-top: 160px;
}

.p-cta::after {
	background: url(./img/cta_pc.webp) no-repeat center center/cover;
	height: 480px;
	top: 160px;
}

.p-cta__inner {
	padding: 293px 30px 0 30px !important;
}

.p-cta__container {
	max-width: 1120px;
	padding: 108.5px 30px 109.5px 30px;
}

.p-cta__head {
	font-size: 24px;
	letter-spacing: -0.4px;
}

.p-cta__text {
	font-size: 20px;
	margin-top: 8px;
}

.p-cta__button {
	font-size: 20px;
	letter-spacing: 1px;
	max-width: 295px;
}

.p-staff-lower {
	padding-bottom: 272px;
}

.p-staff-lower__items {
	margin-top: 56px;
	row-gap: 64px;
	-moz-column-gap: 32px;
	column-gap: 32px;
}

.p-staff-lower__item {
	width: calc((100% - 96px) / 4);
}

.p-staff-lower__head {
	font-size: 24px;
	margin-top: 24px;
}

.p-staff-lower__text {
	font-size: 18px;
	margin-top: 16px;
}

.p-class-lower__menu {
	padding-top: 0px;
}

.p-class-lower__menu-lists {
	flex-direction: row;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 1120px;
}

.p-class-lower__menu-list {
	max-width: 200px;
}

.p-class-lower__menu-list a {
	font-size: 24px;
}

.p-class-lower__menu-list a:hover::after {
	transform: scale(1, 1);
}

.p-class-lower__course-body {
	width: 42%;
}

.p-class-lower__course-title {
	font-size: 32px;
	margin-top: 32px;
}

.p-class-lower__course-text {
	font-size: 18px;
	margin-top: 24px;
}

.p-class-lower__course-lead {
	font-size: 24px;
	margin-top: 21px;
}

.p-class-lower__course-image {
	margin-top: 0;
	width: 58%;
}

.p-class-lower__course-wrap {
	display: flex;
	flex-direction: row;
	gap: 7.5%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1180px;
	padding: 0 30px;
	position: relative;
}

.p-class-lower__course-wrap.course-wrap2::before,
.p-class-lower__course-wrap.course-wrap3::before,
.p-class-lower__course-wrap.course-wrap4::before {
	height: 240px;
	top: -240px;
}

.p-class-lower__course-wrap.course-wrap2 {
	margin-top: 475px;
	max-width: none;
}

.p-class-lower__course-wrap.course-wrap3 {
	max-width: none;
}

.p-class-lower__course-wrap.course-wrap4 {
	max-width: none;
}

.p-class-lower__course-box {
	display: flex;
	flex-direction: column;
	margin-left: auto;
	margin-right: auto;
	max-width: 1120px;
	padding-bottom: 480px;
}

.p-class-lower__course-box.box2 {
	padding-bottom: 480px;
}

.p-class-lower__course-box.box3 {
	padding-bottom: 480px;
}

.p-class-lower__course-box.box4 {
	padding-bottom: 240px;
}

.p-class-lower__course-contain {
	display: flex;
	flex-direction: row;
	gap: 7.5%;
}

.p-class-lower__course-levels {
	border-radius: 24px;
	margin-top: 80px;
	padding: 60px 30px 32px 30px;
}

.p-class-lower__course-levels.course-levels3 {
	margin-top: 73px;
	padding: 65px 30px 41px 30px;
}

.p-class-lower__course-levels.course-levels4 {
	margin-top: 78px;
	padding-bottom: 47px;
}

.p-class-lower__course-level-item {
	font-size: 24px;
	padding-left: 32px;
	width: 260px;
}

.p-class-lower__course-level-item.tag3 {
	font-size: 16px;
}

.p-class-lower__course-level-item.tag3 span {
	font-size: 24px;
}

.p-class-lower__course-level-item.tag4 {
	font-size: 20px;
}

.p-class-lower__course-level-item.tag4 span {
	font-size: 24px;
}

.p-class-lower__course-level-price {
	width: 199px;
}

.p-class-lower__schedule {
	padding-bottom: 268px;
	padding-top: 240px;
}

.p-class-lower__schedule-image {
	margin-top: 56px;
}

.p-class-lower__schedule-image img {
	height: auto;
	max-width: 1120px;
	width: 100%;
}

.p-price__reserve {
	padding-top: 0;
}

.p-price__benefits {
	padding-bottom: 160px;
	padding-top: 218px;
}

.p-price__benefits__head .tag {
	font-size: 20px;
	height: 100px;
	left: -117px;
	top: -90px;
	width: 100px;
}

.p-price__benefits__head .title {
	font-size: 48px;
}

.p-price__benefits__items {
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 55px;
	-moz-column-gap: 40px;
	column-gap: 40px;
	row-gap: 41px;
}

.p-price__benefits__item {
	align-items: center;
}

.p-price__benefits__text {
	font-size: 20px;
	padding-left: 32px;
	width: calc(100% - 90px);
}

.p-price__benefits__text .bold {
	font-size: 32px;
}

.p-price__benefits__text .bold span {
	font-size: 26px;
}

.p-price__cost {
	margin-top: 235px;
}

.p-price__cost-items {
	border-radius: 24px;
	padding: 61px 32px;
}

.p-price__cost-item {
	font-size: 32px;
	padding: 0 32px;
}

.p-price__cost-item:nth-of-type(1) {
	padding-bottom: 40px;
}

.p-price__cost-item:nth-of-type(2) {
	padding-top: 40px;
}

.p-price__cost-item .right span {
	font-size: 24px;
}

.p-price__member {
	margin-top: 120px;
}

.p-price__member-container {
	border-radius: 24px;
	padding: 64px 32px;
}

.p-price__member-title {
	font-size: 48px;
}

.p-price__member-items {
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	max-width: 992px;
}

.p-price__member-item-head {
	font-size: 32px;
}

.p-price__member-item-wrap.small p {
	font-size: 18px;
}

.p-price__member-item-wrap p {
	font-size: 20px;
}

.p-price__member-item-wrap p.large {
	width: calc(100% - 155px);
}

.p-price__member-item-wrap p.large span {
	font-size: 32px;
}

.p-price__member-item-wrap p.tag {
	width: 155px;
	-moz-text-align-last: left;
	text-align-last: left;
}

.p-price__member-text {
	flex-direction: row;
	justify-content: center;
	margin-top: 15px;
}

.p-price__schedule {
	margin-top: 120px;
	padding-bottom: 272px;
}

.p-price__schedule-button {
	font-size: 20px;
	letter-spacing: 1px;
	max-width: 336px;
}

.p-facility-lower {
	padding-bottom: 334px;
	padding-top: 0;
}

.p-facility-lower__title {
	font-size: 32px;
}

.p-facility-lower__text {
	margin-top: 15px;
	max-width: 640px;
}

.p-facility-lower__items {
	gap: 116px;
}

.p-facility-lower__item-title {
	font-size: 24px;
}

.p-facility-lower__image {
	aspect-ratio: 1120/586;
}

.p-privacypolicy {
	padding-bottom: 262px;
	padding-top: 240px;
}

.p-privacypolicy__title {
	font-size: 48px;
}

.p-privacypolicy__lead {
	margin-top: 47px;
}

.p-privacypolicy__body {
	margin-top: 44px;
}

.u-hidden-sp {
	display: block;
}

.u-hidden-tab {
	display: none;
}

}

@media screen and (min-width: 1026px) {

.l-inner {
	margin: 0 auto;
	max-width: 1180px;
	padding: 0 30px;
}

.min-tab {
	display: flex;
}

.p-tracking__link {
	font-size: 20px;
	height: 180px;
	letter-spacing: 1.8px;
	width: 180px;
}

.p-reserve__inner {
	border-radius: 240px 240px 0 0;
	padding: 120px 30px;
}

.p-about__inner {
	padding: 0 0 0 40px;
}

.p-about__container {
	align-items: center;
	display: flex;
	flex-direction: row-reverse;
	height: 824px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 1440px;
	position: relative;
}

.p-about__image {
	max-width: 920px;
	position: absolute;
	right: 0;
	top: 0;
	width: 66%;
}

.p-about__body {
	border-radius: 24px;
	bottom: 0;
	left: 49%;
	max-width: 567px;
	padding: 64px;
	position: absolute;
	transform: translateX(-100%);
	width: 50%;
}

.p-class__inner {
	border-radius: 0 240px 0 0;
	padding: 240px 30px;
}

.p-staff__inner {
	border-radius: 240px 0 0 0;
	padding: 240px 30px 120px 30px;
}

.p-top::after {
	border-radius: 240px 0 0 0;
	bottom: 0;
	height: 240px;
}

.p-class-lower__course-wrap.course-wrap2::before {
	border-radius: 0 240px 0 0;
}

.p-class-lower__course-wrap.course-wrap3::before {
	border-radius: 240px 0 0 0;
}

.p-class-lower__course-wrap.course-wrap4::before {
	border-radius: 0 480px 0 0;
}

.p-class-lower__course-levels.course-levels3 .p-class-lower__course-level {
	padding-bottom: 37px;
}

.p-class-lower__course-level {
	align-items: center;
	flex-direction: row;
	gap: 36px;
	padding: 0 33px 37px 33px;
}

.p-class-lower__course-level:not(:first-of-type) {
	padding-top: 39px;
}

.p-class-lower__course-level-text {
	width: calc(100% - 471px);
}

.p-class-lower__course-level-annotation {
	flex-direction: row;
	gap: 8px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.p-price__benefits__item {
	aspect-ratio: 540/200;
	justify-content: center;
	padding: 42px 32px 42px 52px;
	width: calc((100% - 40px) / 2);
}

.p-price__benefits__num {
	font-size: 74px;
	padding-top: 0;
	text-align: right;
	width: 90px;
}

.p-price__benefits__num::after {
	height: 16px;
	left: -20px;
	top: -28px;
	width: 16px;
}

.p-price__member-item {
	flex-direction: row;
	gap: 30px;
	justify-content: space-between;
	padding: 39px 0;
	text-align: left;
}

.p-price__member-item:first-of-type {
	border-top: none;
	padding: 0 0 40px 0;
}

.p-price__member-item-box:nth-of-type(1) {
	max-width: 615px;
	width: 100%;
}

.p-price__member-item-box:nth-of-type(2) {
	max-width: 325px;
	text-align: right;
	width: 100%;
}

.p-price__member-item-text {
	font-size: 18px;
	margin-top: 16px;
	max-width: 560px;
}

.u-hidden-pc {
	display: none;
}

.u-only-pc {
	display: block;
}

}

