@charset "UTF-8";
*,
*:before,
*:after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	color: #333333;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	line-height: 1.5;
}

img,
video,
object {
	border: none;
	display: block;
	height: auto;
	max-width: 100%;
}

a {
	text-decoration: none;
	transition: opacity 0.3s ease;
}

a:hover {
	opacity: 0.7;
}

/*===================================================================
# ヘッダー
===================================================================*/

.header {
	background-color: transparent;
	height: 80px;
	left: 0;
	position: fixed;
	top: 0;
	transition: background-color 0.3s ease;
	width: 100%;
	z-index: 100;
}

.header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	margin-inline: 86px 100px;
}

.header__logo-img {
	height: 100%;
	max-height: 70px;
	opacity: 0;
	transition: opacity 0.6s ease;
	width: auto;
}

.header__nav {
	display: flex;
}

.header__list {
	display: flex;
}

.header__list li {
	margin-inline-end: 40px;
}

.header__list li:nth-last-child(2) {
	margin-inline-end: 32px;
}

.header__list li:last-child {
	margin-inline-end: 0;
}

.header__list li a {
	color: #00162F;
}

.header__list .header__reserve-btn a {
	background-color: #AA9766;
	border: 1.7px solid #AA9766;
	color: #FFF;
	font-weight: 600;
	padding: 11px 21.5px;
	transition: color 0.3s ease, background-color 0.3s ease;
}

.header.is-scrolled {
	background-color: rgba(255, 255, 255, 0.8);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	height: 60px;
}

.header.is-scrolled .header__logo-img {
	max-height: 50px;
	opacity: 1;
}

.header.is-scrolled .header__list .header__reserve-btn a {
	padding: 8px 16px;
}

/*===================================================================
# フッター
===================================================================*/

.footer {
	background-color: #00162F;
	overflow-x: clip;
	padding-block: 93px 35px;
}

.footer__inner {
	margin-inline: auto;
	max-width: 660px;
	text-align: center;
}

.footer__logo {
	height: auto;
	margin-inline: auto;
	width: 180px;
}

.footer__nav {
	margin-block: 38px 42px;
}

.footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 35px;
	justify-content: center;
}

.footer__nav-link {
	color: #FFF;
}

.footer__company-name {
	color: #FFF;
	font-size: 18px;
}

.footer__company-address {
	color: #FFF;
	font-size: 14px;
	margin-block-start: 12px;
}

.footer__policies {
	display: flex;
	justify-content: center;
	-moz-column-gap: 20px;
	column-gap: 20px;
	margin-block: 50px 5px;
}

.footer__policies li {
	position: relative;
}

.footer__policies li + li::before {
	background-color: #fff;
	content: "";
	height: 17px;
	left: -10px;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 1px;
}

.footer__policy-link {
	color: #FFF;
	font-size: 12px;
}

.footer__copyright {
	color: #FFF;
	font-size: 12px;
}

/*===================================================================
# Common
===================================================================*/

.page-header {
	background: url(../../assets/img/page_header_bg.png) center center/cover no-repeat;
	padding-top: 10%;
	text-align: center;
}

.page-header__title {
	color: #00162F;
	font-size: 60px;
}
h1.page-header__title{
	font-weight:400;
}
.page-header__title:not(:has(+ .page-header__sub-title)) {
	margin-block-end: 122px;
}

.page-header__sub-title {
	color: #00162F;
	font-size: 24px;
	line-height: 40px; /* 166.667% */
	margin-block-end: 122px;
}

.page-header__line {
	background: linear-gradient(90deg, #F2E8C0 -2.32%, #AD9143 48.79%, #F2E8C0 103.98%);
	height: 4px;
	width: 100%;
}

.webp .page-header {
	background-image: url(../../assets/img/page_header_bg.webp); /* webp対応ブラウザ用の画像設定 */
}

.breadcrumb {
	font-size: 13px;
	line-height: 25px; /* 192.308% */
	margin-block-start: 12px;
	text-align: right;
}

.breadcrumb__separator {
	margin-inline: 1em;
}

.pagination__lists {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
}

.pagination__link {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	color: #00162F;
	display: flex;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	height: 32px;
	justify-content: center;
	transition: color 0.3s ease, background-color 0.3s ease;
	width: 32px;
}

.pagination__link--active {
	background-color: #00162F;
	border: 1.5px solid #00162F;
	color: #fff;
}

.pagination__dot {
	font-size: 12px;
}

.pagination__label {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	position: relative;
}

.pagination__label--prev::before,
.pagination__label--next::after {
	content: "";
	mask: url("../../assets/img/pagination_arrow.svg") no-repeat center;
	position: absolute;
	-webkit-mask: url("../../assets/img/pagination_arrow.svg") no-repeat center;
	background-color: #00162F;
	height: 16px;
	top: 50%;
	translate: 0 -50%;
	width: 16px;
}

.pagination__label--prev {
	margin-inline-end: 10px;
}

.pagination__label--prev::before {
	left: -24px;
}

.pagination__label--next {
	margin-inline-start: 10px;
}

.pagination__label--next::after {
	right: -24px;
	transform: scaleX(-1);
}

.pagination__label--disabled {
	color: #757575;
	cursor: default;
	opacity: 0.7;
	pointer-events: none;
	text-decoration: none;
}

.pagination__label--disabled::before,
.pagination__label--disabled::after {
	background-color: #757575;
}

/* single用：記事下の 前へ / 一覧へ戻る / 次へ */

.post-pagination {
	margin-block-start: 100px; /* ボタン（前へ／次へ） */ /* 無効（端） */ /* 一覧へ戻る */
}

.post-pagination__lists {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.post-pagination__list {
	align-items: center;
	display: flex;
}

.post-pagination__list::before {
	content: none !important;
}

.post-pagination__label {
	color: #00162F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	line-height: 100%; /* 18px */
	position: relative;
	transition: color 0.3s ease, opacity 0.3s ease;
}

.post-pagination__label--prev::before,
.post-pagination__label--next::after {
	content: "";
	mask: url("../../assets/img/pagination_arrow.svg") no-repeat center;
	position: absolute;
	-webkit-mask: url("../../assets/img/pagination_arrow.svg") no-repeat center;
	background-color: currentColor; /* ← 色の一元管理 */
	height: 16px;
	top: 50%;
	translate: 0 -50%;
	width: 16px;
}

.post-pagination__label--prev {
	padding-inline-start: 24px;
}

.post-pagination__label--prev::before {
	left: 0;
}

.post-pagination__label--next {
	padding-inline-end: 24px;
}

.post-pagination__label--next::after {
	right: 0;
	transform: scaleX(-1);
}

.post-pagination__label--disabled {
	color: #757575;
	cursor: default;
	opacity: 0.7;
	pointer-events: none;
	text-decoration: none; /* ::before/::after は currentColor を拾うので色替え不要 */
}

.post-pagination__back {
	margin-block-start: 23px;
	text-align: center;
}

.post-pagination__back-link {
	color: #CABE8B;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	letter-spacing: -0.08px;
	line-height: 36px; /* 180% */
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: text-decoration-color 0.3s ease;
}

/* 出現アニメーション：左からめくれるように表示 */

.js-left {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	transition: -webkit-clip-path 0.8s ease;
	transition: clip-path 0.8s ease;
	transition: clip-path 0.8s ease, -webkit-clip-path 0.8s ease;
}

.js-left.is-visible {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
}

/* 出現アニメーション：右からめくれるように表示 */

.js-right {
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
	transition: -webkit-clip-path 0.8s ease;
	transition: clip-path 0.8s ease;
	transition: clip-path 0.8s ease, -webkit-clip-path 0.8s ease;
}

.js-right.is-visible {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
}

/* 出現アニメーション：ふわっと表示 */

.js-fadein {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	will-change: opacity, transform;
}

.js-fadein.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.js-fadein-sp { /* SPのみ */
}

/*===================================================================
# ボタン
===================================================================*/

.common__link-wrapper {
	display: flex;
	justify-content: center;
}

.common__link {
	align-items: center;
	display: flex;
	justify-content: center;
	-moz-column-gap: 20px;
	background-color: #CABE8B;
	border: 1.7px solid #CABE8B;
	color: #FFF;
	column-gap: 20px;
	font-size: 24px;
	font-weight: 600;
	height: 82px;
	transition: color 0.3s ease, background-color 0.3s ease;
	width: 360px;
}

.common__link--no-arrow {
	align-items: center;
	background-color: #CABE8B;
	border: 1.7px solid #CABE8B;
	color: #FFF;
	display: flex;
	font-size: 24px;
	font-weight: 600;
	height: 82px;
	justify-content: center;
	transition: color 0.3s ease, background-color 0.3s ease;
	width: 360px;
}

.common__underline-link {
	font-size: 20px;
	font-weight: 500;
	position: relative;
}

.common__underline-link::after {
	background-color: currentColor;
	bottom: -2px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(1);
	transform-origin: center;
	transition: transform 0.3s ease;
	width: 100%;
}

/*===================================================================
# ドロワー
===================================================================*/

.drawer {
	background-color: #00162F;
	height: 100vh; /* svhに対応しないスマホ用 */
	height: 100svh; /* 画面下のメニューを考慮する */
	overflow-y: scroll;
	position: fixed;
	right: 0;
	top: 0;
	transition: translate 0.5s ease;
	translate: 101%;
	width: 100%;
	z-index: 101;
}

.drawer.js-show {
	translate: 0%;
}

.drawer__body {
	height: -moz-fit-content;
	height: fit-content;
	padding-block: 81px 40px;
	width: 100%;
}

.drawer__list {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap: 38px;
}

.drawer__list li a {
	color: #CABE8B;
	font-size: 16px;
}

.drawer__list .header__reserve-btn {
	align-items: center;
	background-color: #AA9766;
	display: flex;
	height: 53px;
	justify-content: center;
	width: 240px;
}

.drawer__list .header__reserve-btn a {
	color: #FFF;
	font-size: 16px;
	font-weight: 600;
}

.drawer__btn {
	background: #fff;
	border-radius: 100vmax;
	color: #001A75;
	display: inline-block;
	font-size: 20px;
	line-height: normal;
	padding: 6px 30px;
}

.drawer__icon {
	align-items: flex-end;
	display: none;
	flex-direction: column;
	height: 20px;
	justify-content: space-between;
	position: fixed;
	right: 20px;
	top: 20px;
	width: 38px;
	z-index: 102;
}

.drawer__icon--bar {
	background-color: #00162F;
	height: 1px;
	transition: rotate 0.5s ease, translate 0.5s ease, opacity 0.5s ease, background-color 0.5s ease;
}

.drawer__icon--bar:nth-of-type(1) {
	width: 28px;
}

.drawer__icon--bar:nth-of-type(2) {
	width: 33px;
}

.drawer__icon--bar:nth-of-type(3) {
	width: 38px;
}

/* メニューが開いている時 */

.drawer__icon.js-show .drawer__icon--bar {
	background-color: #fff;
	width: 36px;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
	rotate: 24.5deg;
	translate: 0 9.5px;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
	display: none;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
	rotate: -24.5deg;
	translate: 0 -9.5px;
}

/*===================================================================
# ホバー
===================================================================*/

/*===================================================================
# インナー幅
===================================================================*/

.inner {
	margin-inline: auto;
	max-width: 1200px; /* インナー幅は1200px */
	padding-inline: 20px;
}

/*===================================================================
# セクション
===================================================================*/

.section__title {
	color: #00162F;
	font-size: 61.2px; /* セクションタイトル */
	font-weight: 500;
	position: relative;
}

.section__title::before {
	background-color: #CABE8B;
	content: "";
	height: 8.5px;
	left: 0;
	position: absolute;
	top: -10px;
	width: 54.4px;
}

.section__title--white {
	color: rgba(255, 255, 255, 0.88);
}

.section__title--center {
	text-align: center;
}

.section__title--center::before {
	left: 50%;
	translate: -50%;
}

.section__title--school {
	font-size: 34px;
	margin-block-start: 36px;
}

.section__title--school::before {
	top: -16px;
}

/*===================================================================
# Fee
===================================================================*/

.fee {
	padding-block: 40px;
}

.fee__outer {
	margin-inline: auto;
	max-width: 1382px;
	padding-inline: 30px;
}

.fee__inner {
	border: 2px solid #00162F;
	box-shadow: 0 3px 6px 0 rgba(0, 22, 47, 0.2);
	padding: 30px 20px 40px;
	text-align: center;
}

.fee__sub-title {
	color: #AA9766;
	font-size: 27.2px;
}

.fee__title {
	color: #00162F;
	font-size: 34px;
	font-weight: 600;
	margin-block: 11px 32px;
}

.fee__price-container {
	align-items: center;
	display: flex;
	justify-content: center;
	-moz-column-gap: 22px;
	column-gap: 22px;
}

.fee__time {
	color: #00162F;
	font-size: 30px;
	font-weight: 600;
}

.fee__minutes {
	font-size: 21.6px;
}

.fee__price {
	color: #00162F;
	font-size: 30px;
	font-weight: 600;
}

.fee__yen {
	font-size: 21.6px;
	margin-inline-start: 0.2em;
}

.fee__tax {
	font-size: 21.6px;
	margin-inline-start: 0.2em;
}

.fee__plus {
	margin-block: 13px;
}

.fee__price-sub {
	color: #00162F;
	font-size: 20px;
	font-weight: 500;
}

.fee__asterisk {
	font-size: 10px;
	font-weight: 500;
	margin-inline-start: -5px;
	vertical-align: top;
}

.fee__annotation {
	font-size: 16px;
	font-weight: 500;
	margin-block: 44px 34px;
}

.fee__link {
	font-size: 20px;
	font-weight: 500;
	position: relative;
}

.fee__link::after {
	background-color: currentColor;
	bottom: -2px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(1);
	transform-origin: center;
	transition: transform 0.3s ease;
	width: 100%;
}

/*===================================================================
# CTA
===================================================================*/

.cta {
	isolation: isolate; /* stacking文脈を分離 */
	position: relative; /* 擬似要素の基準にする */
}

.cta::before {
	background: url(../../assets/img/cta_bg.png) center center/cover no-repeat;
	content: "";
	inset: 0; /* 高さはセクションに追従 */
	left: 50%; /* センター基準にして */
	position: absolute;
	transform: translateX(-50%); /* 100vwを中央寄せ配置 */
	width: 100vw; /* 画面幅いっぱい */
	z-index: -1; /* 背景として後ろに */
}

.cta__line {
	background: linear-gradient(90deg, #F2E8C0 -2.32%, #AD9143 48.79%, #F2E8C0 103.98%);
	height: 4px;
	left: 50%; /* 親の中央を基準に */
	position: relative;
	transform: translateX(-50%); /* 中心から横に広げる */
	width: 100vw;
	z-index: 1;
}

.cta__title {
	color: #FFF;
	font-size: 30.6px;
	padding-block-start: 96px;
	text-align: center;
}

.cta__line-name {
	color: #FFF;
	font-size: 23.8px;
	font-weight: 600;
	margin-block: 36px 20px;
	text-align: center;
}

.cta__qr {
	height: auto;
	margin-inline: auto;
	padding-block-end: 100px;
	width: 200px;
}

.cta__reserve-link {
	align-items: center;
	background-color: #CABE8B;
	color: #fff;
	display: none;
	font-size: 16px;
	font-weight: 600;
	height: 46px;
	justify-content: center;
	margin: 0 auto 52px;
	width: 224px;
}

.webp .cta::before {
	background-image: url(../../assets/img/cta_bg.webp); /* webp対応ブラウザ用の画像設定 */
}

/*===================================================================
# CTA
===================================================================*/

.banner__container {
	align-items: stretch;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.banner__course {
	background: url(../../assets/img/banner_course_bg.jpg) center center/cover no-repeat;
	position: relative;
}

.banner__course-outer {
	height: 100%;
	padding: 25px;
	position: relative;
	z-index: 1;
}

.banner__course-overlay {
	background: rgba(236, 239, 242, 0.9);
	inset: 0; /* top, right, bottom, left をまとめて指定 */
	position: absolute;
	z-index: 0;
}

.banner__course-inner {
	border: 1.7px solid #00162F;
	height: 100%;
	padding: 90px 20px 100px;
	position: relative;
	z-index: 1;
}

.banner__course-message {
	color: #00162F;
	font-size: 34px;
	line-height: 54.4px; /* 160% */
	text-align: center;
	text-shadow: 0 6.8px 6.8px rgba(255, 255, 255, 0.15);
}

.banner__course-sub-title {
	font-size: 23.8px;
	line-height: 54.4px; /* 228.571% */
	margin-block-start: 30px;
	text-align: center;
}

.banner__course-title {
	font-size: 37.4px;
	font-weight: 400;
	line-height: 54.4px; /* 145.455% */
	text-align: center;
}

.banner__course-link {
	align-items: center;
	border: 1.7px solid #AA9766;
	border-radius: 50%;
	display: flex;
	height: 143px;
	justify-content: center;
	position: absolute;
	width: 143px;
	-moz-column-gap: 15px;
	bottom: 25px;
	column-gap: 15px;
	padding-block-end: 12px;
	right: 25px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.banner__course-link span {
	font-size: 20.4px;
	line-height: 20.4px; /* 100% */
	text-align: center;
}

.banner__course-link svg {
	transform: translate(0, 0);
	transform-box: fill-box;
	transform-origin: center;
	transition: transform 0.3s ease, color 0.3s ease, stroke 0.3s ease;
	will-change: transform;
}

.banner__corporate {
	background: url(../../assets/img/banner_corporate_bg.jpg) center center/cover no-repeat;
	position: relative;
}

.banner__corporate-outer {
	height: 100%;
	padding: 25px;
	position: relative;
	z-index: 1;
}

.banner__corporate-overlay {
	background: rgba(19, 39, 61, 0.9);
	inset: 0; /* top, right, bottom, left をまとめて指定 */
	position: absolute;
	z-index: 0;
}

.banner__corporate-inner {
	border: 1.7px solid #CABE8B;
	height: 100%;
	padding: 94px 20px 100px;
	position: relative;
	z-index: 1;
}

.banner__corporate-title {
	color: #CABE8B;
	font-size: 34px;
	font-weight: 400;
	margin-block-end: 50px;
	text-align: center;
	text-shadow: 1.7px 1.7px 3.4px rgba(0, 0, 0, 0.3);
}

.banner__corporate-message {
	color: #FFF;
	font-size: 20.4px;
	line-height: 34px; /* 166.667% */
	text-align: center;
}

.banner__corporate-message:last-of-type {
	margin-block-start: 25px;
}

.banner__corporate-link {
	align-items: center;
	border: 1.7px solid #AA9766;
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 143px;
	justify-content: center;
	position: absolute;
	width: 143px;
	-moz-column-gap: 15px;
	bottom: 25px;
	column-gap: 15px;
	padding-block-end: 12px;
	right: 25px;
	transition: background-color 0.3s ease;
}

.banner__corporate-link span {
	font-size: 20.4px;
	line-height: 20.4px; /* 100% */
	text-align: center;
}

.banner__corporate-link svg {
	transform: translate(0, 0);
	transform-box: fill-box;
	transform-origin: center;
	transition: transform 0.3s ease, color 0.3s ease, stroke 0.3s ease;
	will-change: transform;
}

.webp .banner__course {
	background-image: url(../../assets/img/banner_course_bg.webp); /* webp対応ブラウザ用の画像設定 */
}

.webp .banner__corporate {
	background-image: url(../../assets/img/banner_corporate_bg.webp);
}

/*===================================================================
# Top-Fv
===================================================================*/

.top-fv {
	aspect-ratio: 1728/950;
	background: url(../../assets/img/fv_bg.png) center center/cover no-repeat;
	position: relative;
}

.top-fv__inner {
	margin-inline: auto;
	max-width: 1200px;
}

.top-fv__title-wrapper {
	left: 11%;
	position: absolute;
	top: 19.8%;
}

.top-fv__title {
	color: transparent;
	position: relative;
}

.top-fv__title::after {
	background: url(../../assets/img/fv_logo.svg) center center/contain no-repeat;
	content: "";
	height: 184px;
	left: 0;
	position: absolute;
	top: 0;
	width: 352px;
}

.top-fv__sub-title {
	color: transparent;
}

.top-fv__text-wrapper {
	left: 12.5%;
	position: absolute;
	top: 49.8%;
}

.top-fv__main-text {
	color: #00162F;
	font-family: "Shippori Mincho B1", serif;
	font-size: 35.031px;
	font-weight: 400;
	line-height: 70.063px; /* 200% */
}

.top-fv__main-text--large {
	font-size: 38.216px;
	text-shadow: 0 4.777px 9.554px rgba(0, 28, 60, 0.2);
}

.top-fv__main-text--large:first-of-type {
	margin-inline-start: -10px;
}

.top-fv__main-text--small {
	font-size: 31.847px;
	letter-spacing: -0.02em;
	margin-inline: -8px;
	white-space: nowrap;
}

.top-fv__sub-text {
	color: #00162F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	line-height: 44.585px; /* 202.66% */
	margin-block-start: 28px;
}

.top-fv__scroll {
	bottom: 32px;
	color: #00162F;
	font-size: 16px;
	left: 50%;
	position: absolute;
	translate: -50%;
}

.top-fv__line-wrapper {
	animation: scrollBounce 3s ease-in-out infinite;
	bottom: 12px;
	color: #00162F; /* 矢印・線の色（currentColorで継承） */
	left: 50%;
	position: absolute;
	translate: -50%;
	z-index: 1;
}

.top-fv__line {
	height: 20px;
	position: relative;
	width: 0; /* 幅ゼロでもOK（borderで描画） */
}

.top-fv__line::before {
	border-left: 1px solid currentColor;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	top: 0;
}

.top-fv__line::after {
	border-bottom: 1px solid currentColor;
	border-left: 1px solid currentColor;
	bottom: 0;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	transform: translateX(calc(-50% + 0.5px)) rotate(-45deg);
	width: 8px;
}

.top-fv__link {
	align-items: center;
	background-color: #AA9766;
	border-radius: 10px 0 0 0;
	bottom: -12px;
	color: #FFF;
	display: none;
	font-family: "Shippori Mincho B1", serif;
	font-size: 14px;
	font-weight: 600;
	height: 50px;
	justify-content: center;
	position: absolute;
	right: 0;
	width: 120px;
}

.webp .top-fv {
	background-image: url(../../assets/img/fv_bg.webp); /* webp対応ブラウザ用の画像設定 */
}

/*===================================================================
# Top-Concept
===================================================================*/

.top-concept {
	background-color: #00162F;
	padding-block: 108px 100px;
}

.top-concept__title {
	color: #CABE8B;
	font-family: "Shippori Mincho B1", serif;
	font-size: 34px;
	font-weight: 600;
	margin-block: 42px 36px;
	text-align: center;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.top-concept__text {
	color: #FFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 40px; /* 200% */
	text-align: center;
}

.top-concept__details {
	margin-block-start: 17.22px;
}

.top-concept__details.is-opened .top-concept__summary::after {
	transform: rotate(180deg);
}

.top-concept__details.is-opened .top-concept__more-content {
	opacity: 1;
}

.top-concept__summary {
	color: #CABE8B;
	cursor: pointer;
	font-family: "Shippori Mincho B1";
	font-size: 20px;
	font-weight: 600;
	line-height: 42.5px; /* 212.5% */
	list-style: none; /* デフォルトの三角マークを非表示 */
	outline: none;
	padding-block-end: 40px;
	position: relative;
	text-align: center;
}

.top-concept__summary::after {
	background: url(../../assets/img/read_more.svg) center center/contain no-repeat;
	bottom: 22px;
	content: "";
	height: 11px;
	left: 50%;
	position: absolute;
	transition: transform 0.5s ease;
	translate: -50%;
	width: 25px;
}

.top-concept__more-content {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: height 0.32s ease, opacity 0.2s ease;
}

.top-concept__more-content p {
	margin-block-end: 40px;
}

.top-concept__more-content p:last-child {
	margin-block-end: 0;
}

/*===================================================================
# Top-Uniqueness
===================================================================*/

.top-uniqueness {
	padding-block: 89px 105px;
}

.top-uniqueness__main-message {
	color: #CABE8B;
	font-family: "Shippori Mincho B1", serif;
	font-size: 34px;
	font-weight: 600;
	line-height: 59.84px; /* 176% */
	margin-block: 40px 37px;
	text-align: center;
	text-shadow: 0 3.4px 10.2px rgba(0, 0, 0, 0);
}

.top-uniqueness__sub-message {
	color: #00162F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 47.6px; /* 238% */
	text-align: center;
}

.top-uniqueness__items {
	display: grid;
	gap: 53.5px 40px;
	grid-template-columns: repeat(2, 1fr); /* 上段は2列 */
	grid-template-rows: auto auto;
	margin: 50px auto 0;
	max-width: 1192.5px;
}

.top-uniqueness__items > .top-uniqueness__item:nth-child(3) {
	grid-column: 1/-1; /* 3番目は両列にまたがる */
	justify-self: center; /* 左右中央寄せ */
	padding-block-start: 70px;
}

.top-uniqueness__item {
	background-color: #ECEFF2;
	border-radius: 85px 0;
	box-shadow: 0 1.7px 10.2px 0 rgba(0, 22, 47, 0.2);
	max-width: 569.5px;
	padding: 59.5px 32.3px 28.7px;
}

.top-uniqueness__item-title {
	color: #00162F;
	font-family: "Shippori Mincho B1", serif;
	font-size: 30.6px;
	font-weight: 600;
	line-height: 76.5px; /* 250% */
	position: relative;
	text-align: center;
}

.top-uniqueness__item-title::before,
.top-uniqueness__item-title::after {
	background: linear-gradient(90deg, #F2E8C0 -2.32%, #AD9143 48.79%, #F2E8C0 103.98%);
	content: "";
	height: 3.4px;
	left: 50%;
	position: absolute;
	translate: -50%;
	width: 100%;
}

.top-uniqueness__item-title::before {
	top: -10px;
}

.top-uniqueness__item-title::after {
	bottom: -10px;
}

.top-uniqueness__item:nth-child(3) .top-uniqueness__item-title {
	line-height: 42.84px; /* 140% */
}

.top-uniqueness__item:nth-child(3) .top-uniqueness__item-title::before {
	top: -25px;
}

.top-uniqueness__item:nth-child(3) .top-uniqueness__item-title::after {
	bottom: -25px;
}

.top-uniqueness__item-text {
	color: #00162F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 44.2px; /* 221% */
	margin-block-start: 31.8px;
}

.top-uniqueness__item:nth-child(3) .top-uniqueness__item-text {
	margin-block-start: 60px;
}

/*===================================================================
# Top-Tellers
===================================================================*/

.top-tellers {
	background-color: #00162F;
	overflow: hidden;
	padding-block: 108px 100px;
	position: relative;
}

.top-tellers__title {
	color: #CABE8B;
	font-family: "Shippori Mincho B1", serif;
	font-size: 34px;
	font-weight: 600;
	margin-block: 40px 40px;
	text-align: center;
}

.top-tellers__message {
	color: #FFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 44.2px; /* 221% */
	text-align: center;
}

.top-tellers__items-outer {
	margin-inline: auto;
	max-width: 1700px;
	overflow: visible;
	padding-block: 72px 77px;
	position: relative;
}

.top-tellers__items {
	position: relative;
	z-index: 1;
}

.top-tellers__item {
	padding-block-end: 50px;
}

.top-tellers__item-img-wrapper {
	background: url(../../assets/img/top_teller_slide_bg.svg) center center/contain no-repeat;
	border: 1.7px solid #CABE8B;
	height: 563px;
	margin-inline-start: 5.37%;
	position: relative;
	transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
	width: 77.777%;
	z-index: 2;
}

.top-tellers__item-img {
	aspect-ratio: 330/520;
	bottom: 0;
	left: 50%;
	max-height: 520px;
	position: absolute;
	transition: opacity 0.3s ease;
	translate: -50%;
	width: auto;
	z-index: 2;
	object-fit:contain;
}

.top-tellers__item-text-body {
	background: url(../../assets/img/top_teller_text_bg.svg) center center/contain no-repeat;
	margin-block-start: -9.3%;
	max-height: 174px;
	max-width: 540px;
	padding: 20px 0 8% 15%;
	position: relative;
	width: 100%;
	z-index: 3;
}

.top-tellers__item-name-wrapper {
	display: block;
}

.top-tellers__item-role {
	color: #00162F;
	font-size: 18px;
	font-weight: 600;
	line-height: 40.8px;
	min-height: 40.8px; /* 空白の場合も高さを維持する */
}

.top-tellers__item-name {
	color: #00162F;
	font-size: 28px;
	font-weight: 600;
	line-height: 40.8px;
	margin-block-start: -2px;
}

.top-tellers__item-method {
	color: #00162F;
	font-size: 18px;
	line-height: 33.15px; /* 162.5% */
	margin-block-start: 10px;
}

.top-tellers__link-wrapper {
	text-align: center;
}

.top-tellers__item-more {
	display: flex;
	flex-direction: column;
	position: absolute;
	right: 40px;
	top: 20px;
	z-index: 2;
}

.top-tellers__item-more span {
	color: #FFF;
	font-size: 17px;
	font-weight: 600;
	line-height: 0.7em;
	margin-inline-start: 5px;
	transition: color 0.3s ease;
}

.top-tellers__item-more svg {
	transform: translate(0, 0);
	transform-box: fill-box;
	transform-origin: center;
	transition: transform 0.3s ease, color 0.3s ease, stroke 0.3s ease;
	will-change: transform;
}

.top-tellers__more-link {
	border: 1.7px solid #FFF;
	color: #FFF;
	display: inline-block;
	font-size: 23.8px;
	line-height: 40.8px; /* 171.429% */
	padding: 11px 38px;
	transition: color 0.3s ease, background-color 0.3s ease;
}

.top-tellers__deco-left {
	bottom: 13.5%;
	left: 0;
	position: absolute; /* 背景のキラキラ（左側） */
}

.top-tellers__deco-right {
	position: absolute; /* 背景のキラキラ（右側） */
	right: 0;
	top: 36.5%;
}

.top-tellers__deco-sp {
	display: none; /* 背景のキラキラ（スマホ用） */
}

.tellers__swiper .swiper-slide {
	transform: translateY(50px); /* 非アクティブのスライドを下げる */
	transition: transform 0.3s ease;
}

.tellers__swiper .swiper-slide.swiper-slide-active {
	transform: translateY(0);
}

.tellers__swiper.swiper {
	position: relative;
}

/* スライド群を前面レイヤーに */

.tellers__swiper .swiper-wrapper {
	position: relative;
	z-index: 2;
}

/* Swiper デフォルト矢印を消す */

.swiper-button-prev::after,
.swiper-button-next::after {
	content: none;
}

.tellers__swiper .swiper-button-prev,
.tellers__swiper .swiper-button-next {
	height: auto;
	position: absolute;
	top: 45% !important;
	width: 53px;
	z-index: 1;
}

.swiper-button-prev {
	left: 31% !important;
}

.swiper-button-next {
	right: 34% !important;
}

/*===================================================================
# Top-Flow
===================================================================*/

.top-flow {
	background-color: #ECEFF2;
	padding-block: 84px;
}

.top-flow__title {
	color: #00162F;
	font-size: 34px;
	font-weight: 600;
	margin-block: 54px 34px;
	text-align: center;
}

.top-flow__message {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 44.2px; /* 221% */
	text-align: center;
}

.top-flow__items {
	margin: 45px auto 0;
	max-width: 900px;
}

.top-flow__item {
	margin-block-end: 60px;
	position: relative;
}

.top-flow__item::after {
	background-color: #AA9766;
	content: "";
	height: calc(100% - 23px);
	left: 27px;
	position: absolute;
	top: 55px;
	width: 3.4px;
}

.top-flow__item-title {
	color: #00162F;
	font-size: 27.2px;
	font-weight: 600;
	line-height: 44.2px; /* 162.5% */
}

.top-flow__item-num {
	color: #AA9766;
	font-size: 30.6px;
	font-weight: 600;
	line-height: 42.84px; /* 140% */
	margin-inline-end: 23px;
}

.top-flow__item-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 44.2px;
	margin-block-start: 18.5px;
	margin-inline-start: 71px;
}

.top-flow__item-link {
	background-color: #CABE8B;
	border-radius: 24.65px;
	color: #FFF;
	display: inline-block;
	font-size: 20px;
	margin-block-start: 20px;
	margin-inline-start: 71px;
	padding: 4px 35px;
	text-align: center;
}

.top-flow__item-list {
	margin-block-start: 11.65px;
	margin-inline-start: 71px;
}

.top-flow__item-list li {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 35.7px; /* 150% */
}

.top-flow__img-step4 {
	height: auto;
	margin-block-start: 30px;
	margin-inline-start: 71px;
	width: 543px;
}

/*===================================================================
# Top-Voices
===================================================================*/

.top-voices {
	background: url(../../assets/img/voices_bg.jpg) center center/cover no-repeat;
	padding-block: 105px 100px;
}

.top-voices__main-message {
	color: #00162F;
	font-size: 34px;
	font-weight: 600;
	margin-block: 61px 36px;
	text-align: center;
}

.top-voices__sub-message {
	font-size: 20px;
	line-height: 44.2px; /* 221% */
	text-align: center;
}

.top-voices__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-block-start: 85px;
	row-gap: 10px;
}

.top-voices__item {
	height: auto;
	width: 273.7px;
}

.webp .top-voices {
	background-image: url(../../assets/img/voices_bg.webp); /* webp対応ブラウザ用の画像設定 */
}

/*===================================================================
# Top-Blog
===================================================================*/

.top-blog {
	padding-block: 100px 112px;
}

.top-blog__sub-title {
	color: #AA9766;
	font-size: 27.2px;
	text-align: center;
}

.top-blog__title {
	color: #00162F;
	font-size: 34px;
	font-weight: 600;
	margin-block: 10px 42px;
	text-align: center;
}

.top-blog__message {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 44.2px; /* 221% */
	text-align: center;
}

.top-blog__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	-moz-column-gap: 32.5px;
	column-gap: 32.5px;
	margin-block: 44px 74px;
}

.top-blog__item-title {
	color: #AA9766;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin-block: 10px 13px;
}

.top-blog__category-container {
	display: flex;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.top-blog__category {
	font-size: 16px;
	line-height: 100%; /* 18px */
}

.top-blog__more-container {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	-moz-column-gap: 21.25px;
	column-gap: 21.25px;
}

.top-blog__more-arrow {
	height: auto;
	width: 7.5px;
}

.top-blog__more-link {
	display: inline-block;
	font-size: 20px;
	line-height: 40.8px; /* 204% */
	margin-inline-end: 61.25px;
	position: relative;
}

.top-blog__more-link::after {
	background-color: #CABE8B;
	bottom: -6px;
	content: "";
	height: 1.7px;
	left: -28.75px;
	position: absolute;
	transform: scaleX(1);
	transform-origin: center;
	transition: transform 0.3s ease;
	width: 250px;
}

/*===================================================================
# Top-Area
===================================================================*/

.top-area {
	padding-block: 91px 226px;
}

.top-area__inner {
	position: relative;
}

.top-area__sub-title {
	color: #AA9766;
	font-size: 27.2px;
	text-align: center;
}

.top-area__title {
	color: #00162F;
	font-size: 34px;
	font-weight: 600;
	margin-block: 13px 22px;
	text-align: center;
}

.top-area__message {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 44.2px; /* 221% */
	text-align: center;
}

.top-area__img {
	height: 506.024px;
	position: absolute;
	right: 13px;
	top: -57px;
	transform: rotate(8.352deg);
	width: 506.024px;
}

/*===================================================================
# Top-Qa
===================================================================*/

.top-qa {
	background-color: #00162F;
	padding-block: 107px 100px;
}

.top-qa__main-message {
	color: #CABE8B;
	font-size: 34px;
	font-weight: 600;
	margin-block: 83px 42px;
	text-align: center;
}

.top-qa__sub-message {
	color: #FFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 44.2px; /* 221% */
	text-align: center;
}

.top-qa__items {
	margin-block-start: 40px;
	margin-inline: auto;
	max-width: 900px;
}

.top-qa__item {
	margin-block-end: 50px;
}

.top-qa__item.is-opened .top-qa__summary::after {
	transform: rotate(180deg);
}

.top-qa__summary {
	color: #FFF;
	font-size: 27.2px;
	line-height: 40.8px; /* 150% */
	list-style: none; /* デフォルトの三角マークを非表示 */
	padding-inline-start: 56px;
	position: relative;
}

.top-qa__summary::before {
	background: url(../../assets/img/question.svg) center center/cover no-repeat;
	content: "";
	height: 34px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 35px;
}

.top-qa__summary::after {
	background: url(../../assets/img/qa_arrow.svg) center center/contain no-repeat;
	content: "";
	height: 13px;
	position: absolute;
	right: 15px;
	top: 50%;
	transition: transform 0.5s ease;
	translate: 0 -50%;
	width: 21px;
}

.top-qa__content {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: height 0.32s ease, opacity 0.2s ease;
}

.top-qa__answer {
	color: #FFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 44.2px; /* 221% */
	margin-block-start: 30px;
}

.is-opened .faq__triangle {
	transform: rotate(180deg);
}

/*===================================================================
# Tellers
===================================================================*/

.tellers {
	padding-block-end: 150px;
}

.tellers__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-block: 84px 91px;
	row-gap: 50px;
}

.tellers__item {
	background-color: #00162F;
	max-width: 500px;
	padding: 40px 30px 30px;
}

.tellers__item-img-outer {
	background: url(../../assets/img/tellers_item_bg.svg) top center/cover no-repeat;
	margin-inline: auto;
	max-height: 410px;
	max-width: 420px;
	overflow: hidden;
	padding-block-start: 40px;
	padding-inline: 20px;
	position: relative;
}

.tellers__item-img-outer::before {
	border: 1.7px solid #CABE8B;
	border-bottom: none; /* 下側は消す */
	content: "";
	height: 100%;
	inset: 0 0 auto 0; /* top/left/right=0, heightは下で指定 */
	pointer-events: none; /* クリック妨げない */
	position: absolute;
	z-index: 0;
}

.tellers__item-img-inner {
	aspect-ratio: 330/370;
	margin-inline: auto;
	max-width: 330px;
	position: relative;
	z-index: 1;
}

.tellers__item-img {
	display: block;
	height: auto;
	width: 100%;
}

.tellers__item-text-body {
	padding-block-start: 30px;
}

.tellers__item-lead {
	color: #CABE8B;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px; /* 171.429% */
	text-align: center;
}

.tellers__item-name-container {
	align-items: center;
	display: flex;
	justify-content: center;
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.tellers__item-role {
	color: #CABE8B;
	font-size: 16px;
	font-weight: 600;
	line-height: 40.8px; /* 255% */
}

.tellers__item-name {
	color: #CABE8B;
	font-size: 24px;
	font-weight: 600;
	line-height: 33.6px; /* 140% */
}

.tellers__item-method {
	color: #FFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 28.8px; /* 180% */
	margin-block-start: 12px;
	text-align: center;
}

.tellers__item-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 10px;
	margin-block-start: 17px;
}

.tellers__tag-link {
	background-color: #ECEFF2;
	border-radius: 15px;
	color: #00162F;
	display: inline-block;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	line-height: 24px;
	padding-inline: 18px;
	text-align: center;
	transition: opacity 0.3s ease;
}

.tellers__item-ctas {
	display: flex;
	justify-content: center;
	-moz-column-gap: 25px;
	column-gap: 25px;
	margin-block-start: 30px;
}

.tellers__item-link {
	align-items: center;
	border: 1px solid #CABE8B;
	display: flex;
	height: 40px;
	justify-content: center;
	transition: color 0.3s ease, background-color 0.3s ease;
	width: 100%;
}

.tellers__item-link--detail {
	background-color: #CABE8B;
	color: #FFF;
	font-size: 16px;
}

.tellers__item-link--schedule {
	color: #CABE8B;
}

.tellers__item-bg {
	left: 0;
	position: absolute;
	top: 85px;
	z-index: 0;
}

#schedule,
.tellers-detail__schedule {
	scroll-margin-top: 120px; /* スケジュールの遷移先にオフセットを設定する */
}

/*===================================================================
# Tellers-Detail
===================================================================*/

.tellers-detail {
	padding-block-end: 100px;
}

.tellers-detail__article {
	margin-inline: auto;
	max-width: 1000px;
	padding-block-start: 186px;
}

.tellers-detail__item {
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	max-width: 870px;
}

.tellers-detail__intro {
	flex: 0 0 438px;
	padding-block-start: 142px;
	width: 438px;
}

.tellers-detail__lead {
	color: #CABE8B;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.08px;
	line-height: 40.8px; /* 204% */
	padding-inline-end: 10px;
}

.tellers-detail__intro-line {
	background-color: #CABE8B;
	height: 1px;
	width: 100%;
}

.tellers-detail__role {
	color: #CABE8B;
	font-size: 23px;
	font-weight: 600;
	line-height: 57.528px; /* 250.122% */
	margin-block-start: 13px;
}

.tellers-detail__name {
	color: #CABE8B;
	font-size: 34px;
	font-weight: 600;
	line-height: 57.528px; /* 169.2% */
	margin-block-start: -13px;
}

.tellers-detail__img-outer {
	aspect-ratio: 432/567;
	background-color: #00162F;
	max-width: 432px;
	padding: 40px;
	position: relative;
	width: 100%;
}

.tellers-detail__img-inner {
	align-items: center;
	background: url(../../assets/img/tellers_detail_img_bg.svg) top center/cover no-repeat;
	border: 1.7px solid #CABE8B;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	inset: 40px;
	justify-content: flex-end;
	overflow: hidden;
	padding-block-start: 30px;
	position: absolute;
}

.tellers-detail__img {
	display: block;
	height: auto;
	max-height: 100%;
	max-width: 285px;
	width: auto;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: bottom;
	object-position: bottom;
}

.tellers-detail__title {
	align-self: flex-start;
	color: #00162F;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.08px;
	line-height: 18px; /* 75% */
	padding-inline-start: 15px;
	position: relative;
	white-space: nowrap;
}

.tellers-detail__title::before {
	background-color: #CABE8B;
	content: "";
	height: 31px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 5px;
}

.tellers-detail__profile-wrapper {
	margin-block-start: 58px;
}

.tellers-detail__profile {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	letter-spacing: -0.08px;
	line-height: 36px; /* 180% */
	margin-block-start: 26px;
}

.tellers-detail__attributes {
	display: flex;
	margin-block-start: 55px;
}

.tellers-detail__methods-wrapper {
	flex: 1;
}

.tellers-detail__methods {
	margin-block-start: 29px;
}

.tellers-detail__methods li {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	letter-spacing: -0.08px;
	line-height: 27px; /* 150% */
	line-height: 36px; /* 180% */
}

.tellers-detail__tags-wrapper {
	flex: 1;
}

.tellers-detail__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-block-start: 27px;
}

.tellers-detail__tags li {
	background-color: #ECEFF2;
	border-radius: 15px;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	line-height: 24px;
	padding-inline: 20px;
}

.tellers-detail__other-wrapper {
	margin-block-start: 56px;
}

.tellers-detail__other {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	letter-spacing: -0.08px;
	line-height: 27px; /* 135% */
	margin-block-start: 26px;
}

.tellers-detail__schedule {
	margin-block-start: 55px;
}

.tellers-detail__calendar-wrapper {
	background-color: #ECEFF2;
	margin-block-start: 26px;
	padding: 40px 40px 35px;
}

.tellers-detail__calendar-title {
	color: #00162F;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.08px;
	line-height: 18px; /* 75% */
	text-align: center;
}

.tellers-detail__calendar {
	margin: 20px auto 0;
	max-width: 750px;
}

.tellers-detail__calendar-inner {
	height: 0;
	overflow: hidden;
	padding-top: 75%; /* 4:3 → 600/800=0.75 → 75% */
	position: relative;
	width: 100%;
}

.tellers-detail__calendar iframe {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.tellers-detail__links {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-block: 70px 80px;
	row-gap: 20px;
}

.tellers-detail__reserve-link {
	align-items: center;
	background-color: #AA9766;
	border: 1.7px solid #AA9766;
	color: #f5f5f5;
	display: flex;
	font-size: 20px;
	font-weight: 600;
	height: 68px;
	justify-content: center;
	line-height: 100%; /* 20px */
	transition: color 0.3s ease, background-color 0.3s ease;
	width: 275px;
}

.tellers-detail__flow-link {
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	letter-spacing: -0.08px;
	line-height: 27px; /* 135% */
	position: relative;
}

.tellers-detail__flow-link::after {
	background-color: currentColor;
	bottom: 0px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform-origin: center;
	transition: transform 0.3s ease;
	width: 100%;
}

.tellers-detail__pager {
	align-items: center;
	display: flex;
	justify-content: center;
	-moz-column-gap: 32px;
	column-gap: 32px;
}

.tellers-detail__pager-disabled {
	color: #d9d9d9;
	cursor: default;
	pointer-events: none;
}

.tellers-detail__prev,
.tellers-detail__next,
.tellers-detail__back {
	font-size: 18px;
	font-weight: 500;
	position: relative;
}

.tellers-detail__prev::after,
.tellers-detail__next::after,
.tellers-detail__back::after {
	background-color: currentColor;
	bottom: -2px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
	width: 100%;
}

.tellers-detail__prev:has(.tellers-detail__pager-disabled)::after,
.tellers-detail__next:has(.tellers-detail__pager-disabled)::after,
.tellers-detail__back:has(.tellers-detail__pager-disabled)::after {
	content: none !important;
}

/*===================================================================
# Blog（一覧）
===================================================================*/

.blog {
	padding-block-end: 153px;
}

.blog__items {
	display: grid;
	gap: 75px 32.5px;
	grid-template-columns: repeat(3, 1fr);
	padding-block: 115px 136px;
}

.blog__thumbnail {
	aspect-ratio: 365/230;
	width: 100%;
	-o-object-fit: cover;
	display: block;
	object-fit: cover;
}

.blog__title {
	color: #AA9766;
	font-size: 20px;
	font-weight: 600;
	line-height:1.4;
	margin-block-start: 11px;
}

.blog__categories {
	display: flex;
	-moz-column-gap: 20px;
	column-gap: 20px;
	margin-block-start: 11px;
}

.blog__category-link {
	font-size: 16px;
}

body.blog {
	padding-block-end: 0; /* WordPressがbodyにblogタグを付与しているため打ち消し */
}

/*===================================================================
# Blog（個別投稿）
===================================================================*/

.blog-single {
	padding-block-end: 145px;
}

.blog-single__article {
	padding-block: 115px 0;
}

.blog-single__date {
	font-size: 18px;
	line-height: 100%; /* 18px */
	text-align: right;
}

.blog-single__content-inner {
	margin-inline: auto;
	max-width: 1000px;
}

.blog-single__title {
	color: #AA9766;
	font-size: 34px;
	font-weight: 600;
	line-height: 51px; /* 150% */
	margin-block-start: 15px;
}

.blog-single__cats {
	display: flex;
	-moz-column-gap: 20px;
	column-gap: 20px;
	margin-block-start: 18px;
}

.blog-single__cat-link {
	font-size: 18px;
	line-height: 100%; /* 18px */
}

.blog-single__thumb-img {
	aspect-ratio: 750/472;
	height: auto;
	max-width: 750px;
	width: 100%;
	-o-object-fit: cover;
	display: block;
	margin: 45px auto 0;
	object-fit: contain;
}

.blog-single__content :where(h2) {
	border: 1px solid #CABE8B;
	color: #AA9766;
	font-size: 30px;
	font-weight: 600;
	line-height: 51px; /* 170% */
	margin-block-start: 50px;
	padding: 0 20px;
}

.blog-single__content :where(h3) {
	color: #00162F;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.08px;
	line-height: 18px; /* 75% */
	margin-block-start: 50px;
	padding-inline-start: 16px;
	position: relative;
}

.blog-single__content :where(h3)::before {
	background-color: #CABE8B;
	content: "";
	height: 30px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 5px;
}

.blog-single__content :where(h4){
	color: #00162F;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.08px;
	line-height: 18px; /* 75% */
	margin-block-start: 50px;
}
.blog-single__content :where(h5) {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.08px;
	margin-top:20px;
}
.vk_borderBox .vk_borderBox_title_container .vk_borderBox_title{
		font-size: 20px !important;
	}
.blog-single__content :where(p) {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	letter-spacing: -0.08px;
	line-height: 36px; /* 180% */
	margin-block-start: 30px;
}

.blog-single__content :where(ul),
.blog-single__content :where(ol){
	list-style: none; /* 既存のマーカーを消す */
	margin-top:20px;
	padding-inline-start: 0;
}

.blog-single__content :where(ul li),
.blog-single__content :where(ol li){
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	letter-spacing: -0.08px;
	line-height: 36px; /* 180% */
	padding-left: 0.9em;
	position: relative;
}
.blog-single__content :where(ul li)::before {
	background-color: #00162F;
	border-radius: 50%;
	content: "";
	width: 8px;
	height: 8px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
}

.blog-single__content :where(ol){
	list-style: decimal;
	margin-left:20px;
}
.blog-single__content :where(ol li){
	list-style: decimal;
	padding-left:10px;
}

.blog-single__content :where(a) {
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: text-decoration-color 0.3s ease;
}

/*===================================================================
# Corporations
===================================================================*/

.corporations__intro {
	padding-block-start: 113px;
}

.corporations__intro-media {
	display: flex;
	-moz-column-gap: 40px;
	column-gap: 40px;
}

.corporations__intro-img {
	flex: 0 0 500px;
	max-width: 100%;
	width: 500px;
}

.corporations__intro-body {
	flex: 1 1 0;
	min-width: 0;
	padding-block-start: 18px;
}

.corporations__intro-title {
	color: #00162F;
	font-size: 30px;
	font-weight: 600;
	margin-block-end: 36px;
}

.corporations__intro-lead {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 40px; /* 200% */
}

.corporations__intro-lead + .corporations__intro-lead {
	margin-block-start: 20px;
}

.corporations__audience-list {
	display: flex;
	justify-content: space-between;
	margin-block-start: 50px;
}

.corporations__audience-item {
	align-items: center;
	aspect-ratio: 1/1;
	border: 1px solid #00162F;
	border-radius: 50%;
	color: #00162F;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	justify-content: center;
	line-height: 40px; /* 200% */
	max-width: 275px;
	text-align: center;
	width: 100%;
}

.corporations__services {
	display: flex;
	flex-direction: column;
	margin-block-start: 100px;
	row-gap: 70px;
}

.corporations__service {
	display: flex;
	-moz-column-gap: 45px;
	column-gap: 45px;
}

.corporations__service:nth-of-type(even) {
	flex-direction: row-reverse; /* 右カラム（偶数行）＝右端にフルブリード */
}

.corporations__service:nth-of-type(even) .corporations__service-img {
	margin-inline-end: calc((1160px - 100vw) / 2);
	margin-inline-start: 0;
	width: calc(100% + (100vw - 1160px) / 2);
}

.corporations__service-img {
	display: block;
	height: auto;
	margin-inline-start: calc((1160px - 100vw) / 2);
	max-width: none; /* これがないと巨大化時に 100% で止まることがある */ /* 左カラム（奇数行）＝左端にフルブリード */
	width: calc(100% + (100vw - 1160px) / 2);
}

.corporations__service-body {
	max-width: 580px;
	padding-block-start: 40px;
}

.corporations__service-title {
	color: #CABE8B;
	font-size: 34px;
	font-weight: 600;
	line-height: 44.2px; /* 130% */
}

.corporations__service-subtitle {
	color: #00162F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 44.2px; /* 221% */
	margin-block-start: 21px;
}

.corporations__service-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 36px; /* 225% */
}

.corporations__plan {
	padding-block: 106px 100px;
}

.corporations__plan-message {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 40px; /* 200% */
	margin: 30px auto 0;
	max-width: 500px;
	text-align: center;
}

.corporations__plan-items {
	display: flex;
	-moz-column-gap: 15px;
	align-items: stretch;
	column-gap: 15px;
	margin-block-start: 73px;
}

.corporations__plan-item {
	background-color: #ECEFF2;
	border-radius: 3px;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	padding: 40px 35px 35px;
	width: 100%;
}

.corporations__plan-item:nth-of-type(2) {
	border: 5px solid #CABE8B;
	padding-block: 30px 25px;
	position: relative;
}

.corporations__plan-item-icon {
	height: 62px;
	margin-inline: auto;
	width: auto;
}

.corporations__plan-item-title {
	color: #00162F;
	font-size: 34px;
	font-weight: 600;
	line-height: 44.2px; /* 130% */
	margin-block-start: 5px;
	text-align: center;
}

.corporations__plan-item-type {
	color: #00162F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	margin-block: 4px 24px;
	text-align: center;
}

.corporations__plan-item-line {
	background-color: #CABE8B;
	height: 2px;
	width: 100%;
}

.corporations__plan-item-list {
	align-items: stretch;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	padding-block: 30px;
	row-gap: 20px;
}

.corporations__plan-item-list li {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}

.corporations__plan-item-price {
	font-size: 30px;
	font-weight: 600;
	line-height: 44.2px; /* 147.333% */
	margin-block-start: 30px;
	text-align: center;
}

.corporations__plan-item-yen {
	font-size: 20px;
}

.corporations__plan-item-deco {
	background-color: #CABE8B;
	color: #FFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 600;
	left: 50%;
	line-height: 50px;
	padding-inline: 17px;
	position: absolute; /* 人気プラン */
	text-align: center;
	top: -27.5px;
	translate: -50%;
}

.corporations__plan-rules {
	display: flex;
	flex-direction: column;
	margin-block-start: 40px;
	padding-inline-start: 140px;
	row-gap: 20px;
}

.corporations__plan-rule {
	display: flex;
	-moz-column-gap: 20px;
	align-items: flex-start;
	column-gap: 20px;
}

.corporations__plan-rule-label {
	border: 1px solid #00162F;
	color: #00162F;
	display: inline;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 35px;
	padding-inline: 26.5px;
	white-space: nowrap;
}

.corporations__plan-rule-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
}

.corporations__plan-rule-list {
	display: flex;
	flex-direction: column;
	margin-block-start: 6px;
	row-gap: 5px;
}

.corporations__plan-rule-list li {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
}

.corporations__support {
	background: url(../../assets/img/support_bg.jpg) center center/cover no-repeat;
	padding-block: 100px 89px;
}

.corporations__support-intro {
	display: flex;
	-moz-column-gap: 30px;
	column-gap: 30px;
}

.corporations__support-texts {
	width: 55.7522123894%;
}

.corporations__support-title {
	color: #00162F;
	font-size: 30px;
	font-weight: 600;
	margin-block: 22px 32px;
}

.corporations__support-text {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 2; /* 200% */
	margin-inline-end: 6px;
}

.corporations__support-text--strong {
	font-weight: 600;
}

.corporations__support-text + .corporations__support-text {
	margin-block-start: 20px;
}

.corporations__support-img {
	aspect-ratio: 500/375;
	height: auto;
	max-width: 500px;
	width: 44.2477876106%;
}

.corporations__support-list {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(2, 1fr);
	margin-block-start: 30px;
}

.corporations__support-item {
	align-items: center;
	background-color: #ECEFF2;
	display: flex;
	padding: 20px 50px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}

.corporations__support-item-img-container {
	align-items: flex-end;
	display: flex;
	flex: 0 0 112px;
	height: 112px;
	justify-content: center;
	width: 112px;
}

.corporations__support-item-img {
	max-height: 100%;
	max-width: 100%;
}

.corporations__support-item-img--1 {
	height: 110px;
	width: 97px;
}

.corporations__support-item-img--2 {
	height: 89px;
	width: 112px;
}

.corporations__support-item-img--3 {
	height: 93px;
	width: 111px;
}

.corporations__support-item-img--4 {
	aspect-ratio: 48/87;
	height: 87px;
	width: 48px;
}

.corporations__support-item-title {
	color: #00162F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.67; /* 166.667% */
}

.corporations__support-message {
	color: #00162F;
	font-size: 24px;
	font-weight: 600;
	line-height: 2; /* 200% */
	margin-block-start: 52px;
	text-align: center;
}

.corporations .cta__title {
	padding-block-start: 67px;
}

.corporations .cta__line-name {
	margin-block-end: 5px;
}

.corporations .cta__qr {
	padding-block-end: 45px;
	width: 182px;
}

.corporations .cta__reserve-link {
	margin-block-end: 30px;
}

.webp .corporations__support {
	background-image: url(../../assets/img/support_bg.webp); /* webp対応ブラウザ用の画像設定 */
}

/*===================================================================
# Corporations
===================================================================*/

.school__intro {
	padding-block-start: 113px;
}

.school__intro-media {
	display: flex;
	-moz-column-gap: 40px;
	column-gap: 40px;
}

.school__intro-img {
	flex: 0 0 500px;
	max-width: 100%;
	width: 500px;
}

.school__intro-body {
	flex: 1 1 0;
	min-width: 0;
	padding-block-start: 18px;
}

.school__intro-title {
	color: #00162F;
	font-size: 30px;
	font-weight: 600;
	margin-block-end: 36px;
}

.school__intro-lead {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 40px; /* 200% */
}

.school__intro-lead + .school__intro-lead {
	margin-block-start: 20px;
}

.school__dual { /* 東洋と西洋の占星術 */
}

.school__dual-title {
	font-size: 34px;
	font-weight: 600;
	line-height: 44.2px; /* 130% */
	margin-block: 51px 31px;
	text-align: center;
}

.school__dual-lead {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 40px; /* 200% */
	text-align: center;
}

.school__dual-list {
	display: flex;
	justify-content: space-between;
	margin-block-start: 40px;
}

.school__dual-item {
	width: 550px; /* 西洋と東洋の特徴ボックス */
}

.school__dual-item-head {
	align-items: center;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #00162F;
	border-radius: 20px 20px 0 0;
	display: flex;
	height: 85px;
	justify-content: center;
}

.school__dual-item-title {
	color: #FFF;
	font-size: 30px;
	font-weight: 600;
	text-align: center;
}

.school__dual-item-body {
	border: 1px solid #00162F;
	padding-block: 38px 57px;
}

.school__dual-item-img {
	height: auto;
	margin: 0 auto 20px;
	width: 280px;
}

.school__dual-item-description {
	color: #00162F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	line-height: 44.2px; /* 184.167% */
	margin-block-end: 18px;
	position: relative;
	text-align: center;
}

.school__dual-item-description::after {
	background-color: #CABE8B;
	bottom: 3px;
	content: "";
	height: 10px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: -1;
}

.school__dual-item-description--1::after {
	width: 423px;
}

.school__dual-item-description--2::after {
	width: 280px;
}

.school__dual-item-text {
	color: #00162F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 44.2px; /* 221% */
	text-align: center;
}

.school__dual-item-text + .school__dual-item-text {
	margin-block-start: 40px;
	position: relative;
}

.school__dual-item-text + .school__dual-item-text::after {
	background-color: #00162F;
	content: "";
	height: 40px;
	left: 50%;
	position: absolute;
	top: -40px;
	translate: -50%;
	width: 2px;
}

.school__course {
	padding-block: 108px 60px; /* 各コースの紹介（ボックス） */
}

.school__course-list {
	display: grid;
	gap: 50px 60px;
	grid-template-columns: repeat(2, 1fr);
	margin-block-start: 41px;
}

.school__course-item {
	align-items: center;
	display: flex;
	flex-direction: column;
	position: relative;
}

.school__course-item-popular-wrapper {
	height: 101px;
	left: 7px;
	position: absolute;
	top: 19px;
	width: 92px;
}

.school__course-item-popular {
	color: #FFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 600;
	position: relative;
	text-align: center;
	z-index: 1;
}

.school__course-item-popular::before {
	background: url(../../assets/img/school_popular_bg.png) center center/contain no-repeat;
	content: "";
	height: 101px;
	left: 50%;
	position: absolute;
	top: -30px;
	translate: -50%;
	width: 92px;
	z-index: -1;
}

.school__course-item-sub-title-wrapper {
	display: flex;
	justify-content: center;
}

.school__course-item-sub-title {
	color: #00162F;
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 44.2px; /* 221% */
	position: relative;
}

.school__course-item-sub-title::before,
.school__course-item-sub-title::after {
	background: url(../../assets/img/school_course_deco.svg) center center/contain no-repeat;
	content: "";
	height: 20px;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 16px;
}

.school__course-item-sub-title::before {
	left: -38px;
}

.school__course-item-sub-title::after {
	right: -38px;
	transform: scaleX(-1);
}

.school__course-item-title {
	color: #CABE8B;
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 3.4px;
	position: relative;
	text-align: center;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.school__course-item-title-small {
	font-size: 24px;
}

.school__course-item-body {
	background-color: #ECEFF2;
	flex: 1;
	margin-block-start: -20px;
	padding: 84px 30px 38px;
	position: relative;
}

.school__course-item-round-bg {
	height: auto;
	left: 50%;
	max-width: 550px;
	position: absolute;
	top: 0;
	translate: -50%;
	width: 100%;
	z-index: 0;
}

.school__course-item-message {
	color: #00162F;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 44.2px; /* 221% */
	margin-block-end: 28px;
	text-align: center;
}

.school__course-item-description {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 36px; /* 180% */
	text-align: center;
}

.school__course-item-link-wrapper {
	display: flex;
	justify-content: center;
	margin-block-start: 29px;
}

.school__course-item-link {
	align-items: center;
	display: flex;
	justify-content: center;
	-moz-column-gap: 20px;
	background-color: #CABE8B;
	border: 1.7px solid #CABE8B;
	border-radius: 50px;
	color: #FFF;
	column-gap: 20px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 600;
	height: 67px;
	transition: color 0.3s ease, background-color 0.3s ease;
	width: 286px;
}

.school__course-details {
	margin-block: 102px 100px; /* 各コースの詳細 */
}

.school__course-detail + .school__course-detail {
	margin-block-start: 103px;
}

.school__course-detail-title-wrapper {
	position: relative;
	text-align: center;
}

.school__course-detail-title-wrapper::before {
	background-color: #333;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
}

.school__course-detail-title {
	background-color: #fff;
	color: #00162F;
	display: inline-block;
	font-size: 34px;
	font-weight: 600;
	line-height: 30.2px; /* 88.824% */
	padding-inline: 25px;
	position: relative;
	text-align: center;
	z-index: 2;
}

.school__course-detail-box { /* 背景画像付きのボックス */
}

.school__course-detail-box-container {
	background: url(../../assets/img/school_basic_bg.png) center center/cover no-repeat;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
	height: auto;
	margin-block-start: 50px;
	margin-inline: auto;
	max-width: 670px;
	position: relative;
	width: 100%;
}

.school__course-detail-box-container::before {
	background: rgba(255, 255, 255, 0.7);
	content: "";
	inset: 30px;
	pointer-events: none;
	position: absolute;
	z-index: 0; /* 背面へ */
}

.school__course-detail-box-container--1 {
	background: url(../../assets/img/school_basic_bg.png) center center/cover no-repeat;
}

.school__course-detail-box-container--2 {
	background: url(../../assets/img/school_advanced_bg.png) center center/cover no-repeat;
}

.school__course-detail-box-container--3 {
	background: url(../../assets/img/school_basic_advanced_bg.png) center center/cover no-repeat;
	margin-block-start: 30px;
}

.school__course-detail-box-inner {
	padding: 30px;
	position: relative;
	z-index: 1;
}

.school__course-detail-box-price-container {
	align-items: center;
	display: flex;
	justify-content: center;
	-moz-column-gap: 60px;
	column-gap: 60px;
	margin-block-start: 39px;
}

.school__course-detail-box-info {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.6;
}

.school__course-detail-box-info-small {
	font-size: 16px;
}

.school__course-detail-box-price {
	font-size: 34px;
	font-weight: 600;
	line-height: 30.2px; /* 88.824% */
}

.school__course-detail-box-price-regular {
	font-size: 20px;
	font-weight: 600;
	line-height: 30.2px; /* 151% */
	text-decoration-color: rgba(0, 0, 0, 0.6);
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: -5px;
	-webkit-text-decoration-skip-ink: none;
	margin-block-end: 16px;
	text-decoration-skip-ink: none;
}

.school__course-detail-box-price-regular-wrapper {
	position: relative;
}

.school__course-detail-box-price-regular-triangle {
	bottom: -10px;
	left: 15px;
	position: absolute;
}

.school__course-detail-box-yen {
	font-size: 24px;
}

.school__course-detail-box-description {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 2.2;
	margin-block: 30px 26px;
	text-align: center;
}

.school__course-detail-steps {
	margin-block-start: 38px;
	margin-inline: auto;
	max-width: 1000px; /* 各ステップ */
}

.school__course-detail-step + .school__course-detail-step {
	margin-block-start: 55px;
}

.school__course-detail-step--2 {
	padding-inline-start: 50px;
}

.school__course-detail-step-num {
	height: auto;
	width: 86px;
}

.school__course-detail-step-container {
	margin-block-start: 25px;
	padding-inline-start: 213px;
	position: relative;
}

.school__course-detail-step-title-wrapper {
	left: 77px;
	position: absolute;
	top: 36px;
}

.school__course-detail-step-title-wrapper--two-chars {
	left: 92px; /* タイトルの文字数により位置を調整 */
}

.school__course-detail-step-title-wrapper--four-chars {
	left: 64px;
}

.school__course-detail-step-title-wrapper--four-chars-2 {
	left: 64px;
	top: 15px; /* 4文字2段 */
}

.school__course-detail-step-title-wrapper--five-chars {
	left: 50px;
}

.school__course-detail-step-title {
	align-items: center;
	color: #FFF;
	display: flex;
	font-size: 28px;
	font-weight: 600;
	justify-content: center;
	position: relative;
	text-align: center;
	white-space: nowrap;
	z-index: 2;
}

.school__course-detail-step-title::before {
	background: url(../../assets/img/chart_bg.png) center center/cover no-repeat;
	content: "";
	height: 165px;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 150px;
	z-index: -1;
}

.school__course-detail-step-lead {
	color: #00162F;
	font-size: 24px;
	font-weight: 600;
	line-height: 30.2px; /* 125.833% */
}

.school__course-detail-step-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 36px; /* 180% */
	margin-block-start: 20px;
}

.school__course-detail-link-wrapper {
	display: flex;
	justify-content: center;
	margin-block-start: 88px;
}

.school__course-detail-link {
	align-items: center;
	display: flex;
	justify-content: center;
	-moz-column-gap: 20px;
	background-color: #CABE8B;
	border: 1.7px solid #CABE8B;
	color: #FFF;
	column-gap: 20px;
	font-size: 24px;
	font-weight: 600;
	height: 82px;
	transition: color 0.3s ease, background-color 0.3s ease;
	width: 360px;
}

.school__course-detail-note {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	margin-block-start: 49px;
	text-align: center;
}

.school__teacher {
	background-color: #ECEFF2;
	margin-block-end: 100px;
	padding-block-start: 178px;
}

.school__teacher-container {
	background-color: #00162F;
	padding-block-end: 109px;
}

.school__teacher-inner {
	display: flex;
	margin-inline: auto;
	max-width: 1200px;
	padding-inline: 20px;
	-moz-column-gap: 47px;
	column-gap: 47px;
}

.school__teacher-img {
	border-radius: 50px 0;
	margin-block-start: -109px;
	max-width: 350px;
}

.school__teacher-img img {
	height: auto;
	width: 100%;
}

.school__teacher-texts {
	margin-block-start: -109px;
	padding-inline-end: 80px;
}

.school__teacher-name-wrapper {
	display: flex;
	-moz-column-gap: 25px;
	align-items: flex-end;
	column-gap: 25px;
	margin-block-start: 62px;
}

.school__teacher-role {
	color: #CABE8B;
	font-size: 20px;
	font-weight: 600;
}

.school__teacher-name {
	color: #CABE8B;
	font-size: 20px;
	font-weight: 600;
}

.school__teacher-message-wrapper {
	margin-block-start: 19px;
}

.school__teacher-message {
	color: #FFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 28.8px; /* 180% */
}

.school__teacher-message + .school__teacher-message {
	margin-block-start: 15px;
}

.school .cta__title {
	padding-block-start: 67px;
}

.school .cta__line-name {
	margin-block-end: 5px;
}

.school .cta__qr {
	padding-block-end: 45px;
	width: 182px;
}

.school .cta__reserve-link {
	margin-block-end: 30px;
}

.webp .school__course-detail-box-container--1 {
	background-image: url(../../assets/img/school_basic_bg.webp); /* webp対応ブラウザ用の画像設定 */
}

.webp .school__course-detail-box-container--2 {
	background-image: url(../../assets/img/school_advanced_bg.webp); /* webp対応ブラウザ用の画像設定 */
}

.webp .school__course-detail-box-container--3 {
	background-image: url(../../assets/img/school_basic_advanced_bg.webp); /* webp対応ブラウザ用の画像設定 */
}

/*===================================================================
# Contact
===================================================================*/

.contact__inner {
	margin-inline: auto;
	max-width: 763px;
	padding-block: 114px 150px;
	width: 100%;
}

.contact__intro-container.is-hidden {
	display: none;
}

.contact__lead {
	font-size: 20px;
	line-height: 2; /* 200% */
	text-align: center;
}

.contact__note-wrapper {
	height: auto;
	margin: 30px auto 0;
	max-width: 566px;
	width: 100%;
}

.contact__note {
	line-height: 2.25; /* 225% */
}

.contact__link {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 28.8px;
	position: relative;
}

.contact__link::after {
	background-color: currentColor;
	bottom: -1px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(1);
	transform-origin: center;
	transition: transform 0.3s ease;
	width: 100%;
}

.contact__form {
	display: flex;
	flex-direction: column;
	margin: 50px auto;
	max-width: 600px;
	row-gap: 20px;
}

.contact__form.is-hidden {
	display: none;
}

.contact__form-must {
	color: #F00;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	line-height: 2.25; /* 225% */
	margin-inline-start: 6px;
}

.contact__head {
	font-family: "Noto Sans JP", sans-serif; /* 項目名 */
	font-weight: 600;
	line-height: 2.25; /* 225% */
}

.contact__btn-wrapper {
	display: flex;
	justify-content: center;
}

.contact__error {
	color: red;
}

.contact__btn {
	font-size: 20px;
	height: 67px;
	line-height: 2.21; /* 221% */
	width: 276px; /* 「確認する」ボタン */
}

.contact__btn:disabled,
.contact__btn[disabled] {
	background-color: #c9c9c9;
	cursor: not-allowed;
	opacity: 0.7;
}

.contact__btn:focus-visible {
	outline: none; /* デフォルト青枠を消す */ /* フォーカス時 */
	outline: 1px solid #00162F; /* あなたのテーマ色に変更 */
}

.contact__google-note {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	line-height: 1.8; /* 180% */
	margin-block-start: 2px;
	text-align: center;
}

.contact__underline-link {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8; /* 180% */
}

.contact__line {
	background-color: #ECEFF2;
	display: block;
	margin-inline: auto;
	max-width: 600px;
	padding: 31px 20px 30px;
	width: 100%;
}

.contact__line.is-hidden {
	display: none;
}

.contact__line-lead {
	font-size: 20px;
	line-height: 1.8;
	text-align: center;
}

.contact__line-title {
	font-family: "Noto Sans JP", sans-serif;
	margin-block: 6px 15px;
	text-align: center;
}

.contact__line img {
	height: auto;
	margin-inline: auto;
	width: 110px;
}

.contact__confirm {
	margin-inline: auto;
	max-width: 600px;
	padding-block: 50px 30px;
	width: 100%;
}

.contact__confirm.is-hidden {
	display: none;
}

.contact__confirm-text {
	white-space: normal;
}

.contact__confirm-text-wrapper + .contact__confirm-text-wrapper {
	margin-block-start: 23px;
}

.contact__confirm-label {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	line-height: 2.25; /* 225% */
}

.contact__confirm-must {
	color: #F00;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	line-height: 2.25; /* 225% */
	margin-inline-start: 6px;
}

.contact__confirm-text {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 2.25; /* 225% */
	margin-block-start: 10px;
}

.contact__confirm-btn-container {
	display: flex;
	justify-content: center;
	margin-block: 50px 50px;
	-moz-column-gap: 50px;
	column-gap: 50px;
}

.contact__confirm-btn-container .wpcf7-spinner {
	display: none !important;
}

.contact__confirm-btn {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 600;
	height: 67px;
	width: 275px;
}

.contact__confirm-btn--back {
	background: #C9C9C9;
	border: 1.7px solid #C9C9C9;
}

.contact__thanks.is-hidden {
	display: none;
}

.contact__thanks-main-message {
	font-size: 20px;
	font-weight: 600;
	line-height: 2;
	text-align: center;
}

.contact__thanks-sub-message {
	font-size: 20px;
	line-height: 2; /* 200% */
	padding-block: 21px 98px;
	text-align: center;
}

.contact__thanks-link {
	font-size: 20px;
	height: 67px;
	width: 275px;
}

input[type=text],
input[type=email],
textarea {
	background-color: #FFF;
	border: 1px solid #DDD;
	border-radius: 3px;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 2.25; /* 225% */
	padding: 6px 10px;
	width: 100%;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
textarea::-moz-placeholder {
	color: #DDD;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
	color: #DDD;
}

/* フォーカス時 */

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
	outline: 1px solid #00162F;
}

textarea {
	height: 200px;
	resize: vertical;
}

.contact__data-inquiry-type input[type=checkbox] {
	block-size: 1px;
	border: 0;
	inline-size: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	overflow: hidden;
}

.contact__data-inquiry-type .wpcf7-form-control.wpcf7-checkbox {
	display: flex;
	flex-direction: column;
	margin-block-start: 16px;
	row-gap: 21px;
}

/* ラベルの行 */

.contact__data-inquiry-type .wpcf7-list-item {
	display: block;
}

/* クリック領域（label） */

.contact__data-inquiry-type .wpcf7-list-item > label {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
}

/* テキスト部（ここに□/✓を描く） */

.contact__data-inquiry-type .wpcf7-list-item-label {
	font-size: 16px;
	padding-left: 28px;
	position: relative;
}

/* □ 枠 */

.contact__data-inquiry-type .wpcf7-list-item-label::before {
	border: 1px solid #333;
	border-radius: 2px;
	content: "";
	height: 18px;
	left: 0;
	pointer-events: none; /* ← これ大事 */
	position: absolute;
	top: 4px;
	width: 18px;
}

/* ✓ マーク（ラジオをチェックボックス風に） */

.contact__data-inquiry-type .wpcf7-list-item-label::after {
	border-bottom: 2.5px solid #fff;
	border-right: 2.5px solid #fff;
	content: "";
	height: 12px;
	left: 7px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	rotate: 45deg;
	top: 5px;
	transition: opacity 0.2s ease;
	width: 6px;
}

/* チェック時（CF7の構造：input + .wpcf7-list-item-label） */

.contact__data-inquiry-type input[type=checkbox]:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}

.contact__data-inquiry-type input[type=checkbox]:checked + .wpcf7-list-item-label::before {
	background-color: #333;
}

/* フォーカス時 */

.contact__data-inquiry-type input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
	outline: 1px solid #00162F;
}

.contact__acceptance {
	grid-template-columns: 1fr;
	margin-bottom: 16px;
	text-align: center;
}

.contact__underline-btn-link {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 2.25; /* 225% */
}

input[type=checkbox] {
	height: 1px;
	position: absolute;
	width: 1px; /* デフォルトのものを消す */
	clip: rect(0, 0, 0, 0);
}

/* フォーカス時 */

input[type=checkbox]:focus + span::before {
	outline: 1px solid #00162F;
}

/* チェックされた時の挙動 */

input[type=checkbox]:checked + span::before {
	background-color: #333;
}

input[type=checkbox]:checked + span::after {
	opacity: 1;
}

.contact__data-privacy span {
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	line-height: normal;
	padding-left: 28px;
	position: relative;
}

.contact__data-privacy span::before {
	border: 1px solid #333;
	border-radius: 2px;
	content: ""; /* ボックス */
	height: 18px;
	left: 0;
	position: absolute;
	top: 10px;
	width: 18px;
}

.contact__data-privacy span::after {
	border-bottom: 2.5px solid #fff;
	border-right: 2.5px solid #fff;
	content: ""; /* チェックマーク */
	height: 12px;
	left: 7px;
	opacity: 0;
	position: absolute;
	rotate: 45deg;
	top: 11px;
	transition: opacity 0.3s ease;
	width: 6px;
}

/* 送信ボタンを指カーソルに */

.contact__confirm-btn,
#js-submit,
input[type=submit].wpcf7-submit {
	cursor: pointer;
}

/*デフォルトのサンクスメッセージを非表示*/

/*===================================================================
# Privacy-Policy
===================================================================*/

.policy__inner {
	margin-inline: auto;
	max-width: 1000px;
	padding-block: 113px 150px;
}

.policy__lead {
	line-height: 36px; /* 225% */
	margin-block-end: 46px;
	text-align: center;
}

.policy__article + .policy__article {
	margin-block-start: 31px;
}

.policy__article-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 36px; /* 180% */
}

.policy__article-sub-title {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	line-height: 28.8px; /* 180% */
	margin-block: 21px 11px;
	padding-inline-start: 25px;
	position: relative;
}

.policy__article-sub-title::before {
	background-color: #00162F;
	border-radius: 50%;
	content: "";
	height: 15px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 15px;
}

.policy__article-sub-title:first-of-type {
	margin-block-start: 10px;
}

.policy__article-text {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 28.8px; /* 180% */
	margin-block: 9px 10px;
}

.policy__article-text:last-of-type {
	margin-block-end: 0;
}

.policy__article-text--strong {
	font-weight: 600;
}

.policy__article-list {
	margin-block-start: 12px;
}

.policy__article-list--cancel {
	margin-block-start: 4px; /* キャンセルポリシーの注意事項 */
}

.policy__article-list--cancel .policy__article-item {
	line-height: 28.8px; /* 180% */
}

.policy__article-list--cancel-menseki .policy__article-item {
	line-height: 2.2; /* キャンセルポリシーの免責事項 */
}

.policy__article-item {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 36px; /* 225% */
	margin-inline-start: 1em;
}

.policy__article-item::marker {
	content: "・ ";
	font-size: 1em;
}

.policy__article-link {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 28.8px;
	position: relative;
}

.policy__article-link::after {
	background-color: currentColor;
	bottom: -1px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(1);
	transform-origin: center;
	transition: transform 0.3s ease;
	width: 100%;
}

/*===================================================================
# ブレークポイントによる表示 / 非表示
===================================================================*/

.show__sp {
	display: none; /* spのみ表示 */
}

.show__tab {
	display: none; /* tabのみ表示 */
}

.show__tab-pc {
	display: block; /* tab～pc間で表示 */
}

.show__tab-pc--inline {
	display: inline-block;
}

.show__medium-pc {
	display: block; /* medium～pc間で表示 */
}

.show__sp-medium {
	display: none; /* sp～medium間で表示 */
}

@media (any-hover: hover) {

.header__list .header__reserve-btn a:hover {
	background-color: #fff;
	color: #AA9766;
	opacity: 1;
}

.breadcrumb span a:hover {
	text-decoration: underline;
}

.pagination__link:hover {
	background-color: #00162F;
	color: #fff;
}

.post-pagination__label:hover {
	opacity: 0.8;
}

.post-pagination__back-link:hover {
	text-decoration: none;
}

.common__link:hover {
	background-color: #fff;
	color: #CABE8B;
	opacity: 1;
}

.common__link--no-arrow:hover {
	background-color: #fff;
	color: #CABE8B;
	opacity: 1;
}

.common__underline-link:hover::after {
	transform: scaleX(0);
}

.fee__link:hover::after {
	transform: scaleX(0);
}

.banner__course-link:hover {
	background-color: #AA9766;
	color: #fff;
}

.banner__course-link:hover svg {
	transform: translate(2px, -2px);
}

.banner__course-link:hover svg path {
	stroke: #fff;
}

.banner__corporate-link:hover {
	background-color: #AA9766;
	opacity: 1;
}

.banner__corporate-link:hover svg {
	transform: translate(2px, -2px);
}

.banner__corporate-link:hover svg path {
	stroke: #fff;
}

.top-tellers__item:hover {
	opacity: 1;
}

.top-tellers__item:hover .top-tellers__item-more span {
	color: #00162F;
}

.top-tellers__item:hover .top-tellers__item-more svg {
	transform: translate(2px, 0);
}

.top-tellers__item:hover .top-tellers__item-more svg path {
	stroke: #00162F;
}

.top-tellers__item:hover .top-tellers__item-img-wrapper {
	background-color: rgba(170, 151, 102, 0.9);
}

.top-tellers__more-link:hover {
	background-color: #fff;
	color: #00162F;
	opacity: 1;
}

.top-blog__more-link:hover::after {
	transform: scaleX(0);
}

.top-qa__summary:hover {
	cursor: pointer;
}

.tellers__tag-link:hover {
	opacity: 0.8;
}

.tellers__item-link:hover {
	background-color: #FFF;
	color: #00162F;
	opacity: 1;
}

.tellers-detail__reserve-link:hover {
	background-color: #FFF;
	color: #AA9766;
	opacity: 1;
}

.tellers-detail__flow-link:hover::after {
	transform: scaleX(0);
}

.tellers-detail__prev:hover::after,
.tellers-detail__next:hover::after,
.tellers-detail__back:hover::after {
	transform: scaleX(1);
}

.blog-single__content :where(a):hover {
	text-decoration: none;
}

.school__course-item-link:hover {
	background-color: #fff;
	color: #CABE8B;
	opacity: 1;
}

.school__course-detail-link:hover {
	background-color: #fff;
	color: #CABE8B;
	opacity: 1;
}

.contact__link:hover::after {
	transform: scaleX(0);
}

.contact__btn:disabled:hover,
.contact__btn[disabled]:hover {
	background-color: #c9c9c9;
	border: 1.7px solid #c9c9c9;
	color: #fff;
	opacity: 0.7;
}

.contact__confirm-btn--back:hover {
	color: #C9C9C9;
}

.policy__article-link:hover::after {
	transform: scaleX(0);
}

}

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

.header__inner {
	margin-inline: clamp(20px, -40.2352941176px + 7.8431372549vw, 40px);
}

.header__list li {
	margin-inline-end: clamp(10px, -20.1176470588px + 3.9215686275vw, 20px);
}

.header__list li:nth-last-child(2) {
	margin-inline-end: clamp(20px, -16.1411764706px + 4.7058823529vw, 32px);
}

.header__list li a {
	font-size: 12px;
}

.header__list .header__reserve-btn a {
	padding-inline: clamp(12px, -21.1294117647px + 4.3137254902vw, 23px);
}

.inner {
	padding-inline: 30px;
}

.cta__qr {
	display: none;
}

.cta__reserve-link {
	display: flex;
	font-size: 18px;
}

.banner__container {
	grid-template-columns: 1fr;
}

.top-fv__title::after {
	height: clamp(105px, 26.6941176471px + 10.1960784314vw, 131px);
	width: clamp(200px, 49.4117647059px + 19.6078431373vw, 250px);
}

.top-fv__text-wrapper {
	left: 6%;
}

.top-fv__main-text {
	font-size: clamp(28px, 6.9176470588px + 2.7450980392vw, 35px);
}

.top-fv__main-text--large {
	font-size: clamp(32px, 13.9294117647px + 2.3529411765vw, 38px);
}

.top-fv__main-text--small {
	font-size: clamp(24px, 2.9176470588px + 2.7450980392vw, 31px);
}

.top-fv__sub-text {
	font-size: clamp(14px, -10.0941176471px + 3.137254902vw, 22px);
	line-height: 1.8;
	margin-block-start: clamp(18px, -12.1176470588px + 3.9215686275vw, 28px);
}

.top-fv__scroll {
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: 5px;
	padding: 3px 5px;
}

.top-uniqueness__items {
	padding-inline: 20px;
}

.top-uniqueness__item-title {
	font-size: clamp(18px, -6.0941176471px + 3.137254902vw, 26px);
}

.top-uniqueness__item-text {
	font-size: clamp(16px, -2.3717647059px + 2.3921568627vw, 22.1px);
}

.top-voices__items {
	display: block;
	-moz-column-count: 2;
	column-count: 2;
	-moz-column-gap: 10px;
	column-gap: 10px;
	margin-block-start: 50px;
}

.top-voices__item {
	display: block;
	margin: 0 0 20px;
	width: auto;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
	page-break-inside: avoid;
}

.top-blog__items {
	grid-template-columns: repeat(2, 1fr);
	-moz-column-gap: 20px;
	column-gap: 20px;
	row-gap: 40px;
}

.top-area__inner {
	max-width: clamp(680px, 17.4117647059px + 86.2745098039vw, 900px);
}

.blog__items {
	grid-template-columns: repeat(2, 1fr);
}

.corporations__intro-img {
	flex: 0 0 auto;
	width: clamp(330px, -182px + 66.6666666667vw, 500px);
}

.corporations__intro-title {
	font-size: clamp(27px, 17.9647058824px + 1.1764705882vw, 30px);
}

.corporations__intro-lead {
	font-size: clamp(18px, 11.9764705882px + 0.7843137255vw, 20px);
}

.corporations__audience-item {
	font-size: clamp(14px, 1.9529411765px + 1.568627451vw, 18px);
	max-width: clamp(175px, 9.3529411765px + 21.568627451vw, 230px);
}

.corporations__service {
	flex-direction: column;
}

.corporations__service:nth-of-type(even) {
	flex-direction: column;
}

.corporations__service:nth-of-type(even) .corporations__service-img {
	margin-inline: auto 0;
	max-width: 817px;
	width: 100%;
}

.corporations__service-img {
	margin-inline: 0 auto;
	max-width: 817px;
	width: 100%;
}

.corporations__plan-item {
	padding-inline: clamp(20px, -25.1764705882px + 5.8823529412vw, 35px);
}

.corporations__plan-item-list li {
	font-size: clamp(20px, 7.9529411765px + 1.568627451vw, 24px);
}

.corporations__plan-rules {
	padding-inline-start: 0;
}

.corporations__support-intro {
	flex-direction: column;
	row-gap: 30px;
}

.corporations__support-texts {
	width: 100%;
}

.corporations__support-title {
	text-align: center;
}

.corporations__support-text {
	margin-inline-end: 0;
}

.corporations__support-img {
	margin-inline: auto;
	width: 100%;
}

.corporations__support-list {
	grid-template-columns: 1fr;
	margin-block-start: 40px;
}

.corporations__support-item {
	margin-inline: auto;
	width: 560px;
}

.school__intro-media {
	-moz-column-gap: 25px;
	column-gap: 25px;
}

.school__intro-img {
	width: clamp(340px, 8.7058823529px + 43.137254902vw, 450px);
}

.school__dual-list {
	flex-direction: column;
	row-gap: 60px;
}

.school__dual-item {
	margin-inline: auto;
}

.school__course-list {
	grid-template-columns: 1fr;
	margin-inline: auto;
	max-width: 550px;
}

.school__course-item {
	align-items: stretch;
}

.policy__lead {
	text-align: left;
}

.show__tab {
	display: block;
}

.show__medium-pc {
	display: none;
}

.show__sp-medium {
	display: block;
}

}

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

.top-tellers__items-outer {
	max-width: 1100px;
	padding-inline: clamp(30px, -50.1192250373px + 10.4321907601vw, 100px);
}

.top-tellers__item-img-wrapper {
	height: clamp(330px, 190.3636363636px + 18.1818181818vw, 452px);
	padding-block-start: 40px;
}

.top-tellers__item-img {
	height: clamp(300px, 166.086438152px + 17.436661699vw, 417px);
}

.top-tellers__item-text-body {
	padding-inline-start: 11%;
}

.top-tellers__item-role {
	font-size: clamp(16px, 11.4217585693px + 0.5961251863vw, 18px);
	line-height: clamp(24px, 4.7713859911px + 2.5037257824vw, 40.8px);
	min-height: clamp(24px, 4.7713859911px + 2.5037257824vw, 40.8px);
}

.top-tellers__item-name {
	font-size: clamp(24px, 16.4459016393px + 0.9836065574vw, 28px);
	line-height: clamp(36px, 30.5061102832px + 0.7153502235vw, 40.8px);
}

.top-tellers__item-method {
	font-size: clamp(14px, 9.4217585693px + 0.5961251863vw, 18px);
	margin-block-start: clamp(0px, -11.4456035768px + 1.4903129657vw, 10px);
}

.tellers__swiper .swiper-button-prev,
.tellers__swiper .swiper-button-next {
	top: 30% !important;
	width: clamp(29px, 1.5305514158px + 3.5767511177vw, 53px);
}

.swiper-button-prev {
	left: 10px !important;
}

.swiper-button-next {
	right: 10px !important;
}

}

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

.tellers-detail__intro {
	flex: 0 0 clamp(370px, 26vw + 172px, 438px);
}

}

@media screen and (min-width: 768px) and (max-width: 1023px) and (min-width: 1024px) and (max-width: 1239px) {

.corporations__service:nth-of-type(even) .corporations__service-body {
	margin-inline: auto 0;
}

}

@media screen and (min-width: 1024px) and (max-width: 1239px) {

.header__inner {
	margin-inline: 40px;
}

.header__list li {
	margin-inline-end: clamp(20px, -75.2558139535px + 9.3023255814vw, 40px);
}

.header__list .header__reserve-btn a {
	font-size: 14px;
}

.inner {
	padding-inline: 40px;
}

.banner__course-inner {
	padding-block-end: 185px;
}

.banner__course-message {
	font-size: clamp(28px, -0.576744186px + 2.7906976744vw, 34px);
}

.banner__corporate-inner {
	padding-block-end: 185px;
}

.top-fv__title::after {
	height: clamp(157px, 28.4046511628px + 12.5581395349vw, 184px);
	width: clamp(300px, 52.3348837209px + 24.1860465116vw, 352px);
}

.top-fv__text-wrapper {
	left: 6%;
}

.top-fv__scroll {
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: 5px;
	padding: 3px 5px;
}

.top-uniqueness__items {
	padding-inline: 20px;
}

.top-uniqueness__item-title {
	font-size: clamp(26px, 4.0911627907px + 2.1395348837vw, 30.6px);
}

.top-voices__item {
	width: calc(33.3% - 20px);
}

.top-area__inner {
	max-width: clamp(900px, 471.3488372093px + 41.8604651163vw, 990px);
}

.corporations__audience-item {
	font-size: clamp(18px, 8.4744186047px + 0.9302325581vw, 20px);
	max-width: clamp(230px, 15.6744186047px + 20.9302325581vw, 275px);
}

.corporations__service {
	flex-direction: column;
}

.corporations__service:nth-of-type(even) {
	flex-direction: column;
}

.corporations__service:nth-of-type(even) .corporations__service-img {
	margin-inline: auto 0;
	max-width: 817px;
	width: 100%;
}

.corporations__service:nth-of-type(even) .corporations__service-body {
	margin-inline: auto 0;
}

.corporations__service-img {
	margin-inline: 0 auto;
	max-width: 817px;
	width: 100%;
}

.corporations__support-title {
	font-size: clamp(24px, 4.9488372093px + 1.8604651163vw, 28px);
}

.corporations__support-item {
	padding-inline: 30px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.corporations__support-item-img-container {
	height: 92px;
}

.corporations__support-item-title {
	font-size: clamp(20px, 0.9488372093px + 1.8604651163vw, 24px);
}

.school__dual-list {
	-moz-column-gap: 30px;
	column-gap: 30px;
}

.school__course-list {
	gap: 40px 30px;
}

.show__sp-medium {
	display: block;
}

}

@media screen and (min-width: 1024px) and (max-width: 1579px) {

.banner__course-inner {
	padding-block-end: 200px;
}

.banner__corporate-inner {
	padding-block-end: 200px;
}

}

@media screen and (min-width: 1240px) and (max-width: 1727px) {

.corporations__service {
	-moz-column-gap: clamp(30px, -8.1930184805px + 3.0800821355vw, 45px);
	column-gap: clamp(30px, -8.1930184805px + 3.0800821355vw, 45px);
}

.corporations__service-body {
	max-width: clamp(540px, 438.1519507187px + 8.2135523614vw, 580px);
}

}

@media screen and (min-width: 1440px) and (max-width: 1727px) {

.top-tellers__items-outer {
	padding-inline: 30px;
}

.top-tellers__item-img-wrapper {
	height: clamp(452px, -103px + 38.5416666667vw, 563px);
}

.top-tellers__item-img {
	height: clamp(417px, -98px + 35.7638888889vw, 520px);
}

}

@media screen and (min-width: 1440px) and (max-width: 1730px) {

.top-tellers__item-text-body {
	padding-inline-start: 11%;
}

}

@media screen and (max-width: 1439px) {

.tellers__swiper .swiper-slide,
.tellers__swiper .swiper-slide.swiper-slide-active {
	transform: none !important;
}

}

@media screen and (max-width: 1239px) {

.tellers__items {
	-moz-column-gap: 20px;
	column-gap: 20px;
}

}

@media screen and (max-width: 1100px) {

.tellers__items {
	align-items: center;
	flex-direction: column;
}

}

@media screen and (max-width: 767px) {

.header {
	height: 60px;
}

.header__inner {
	margin-inline: 20px;
}

.header__logo-img {
	max-height: 50px;
}

.header__nav {
	display: none;
}

.header.is-scrolled {
	height: 40px;
}

.header.is-scrolled .header__logo-img {
	max-height: 30px;
}

.header.is-scrolled.is-scrolled + .drawer__icon,
.header.is-scrolled.is-scrolled ~ .drawer__icon {
	top: 10px;
}

.footer {
	padding-block-end: calc(30px + env(safe-area-inset-bottom));
	padding-block-start: 47px;
}

.footer__inner {
	margin-inline: 35px;
}

.footer__logo {
	width: 110px;
}

.footer__nav {
	margin-block: 40px 52px;
}

.footer__nav-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-inline: auto;
	max-width: 400px;
	row-gap: 30px;
}

.footer__nav-link {
	font-size: 14px;
}

.footer__policies {
	margin-block: 44px 20px;
}

.footer__copyright {
	font-size: 10px;
}

.page-header {
	padding-block-start: 80px;
}

.page-header__title:not(:has(+ .page-header__sub-title)) {
	margin-block-end: 60px;
}

.page-header__title {
	font-size: 36px;
	font-weight:400;
}
	h1.page-header__title{
		font-weight:400;
	}
.page-header__sub-title {
	font-size: 18px;
	margin-block-end: 60px;
}

.breadcrumb {
	font-size: 11px;
	margin-block-start: 7px;
}

.breadcrumb__separator {
	margin-inline: 0.5em;
}

.pagination__link {
	font-size: 16px;
}

.pagination__label {
	font-size: 14px;
}

.post-pagination {
	margin-block-start: 60px;
}

.post-pagination__label {
	font-size: 14px;
}

.post-pagination__back-link {
	font-size: 16px;
}

.js-fadein-sp {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	will-change: opacity, transform;
}

.js-fadein-sp.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.common__link {
	font-size: 22px;
	height: 60px;
}

.common__link svg {
	height: auto;
	width: 9px;
}

.common__link--no-arrow {
	font-size: 22px;
	height: 60px;
}

.common__underline-link {
	font-size: 14px;
}

.drawer__icon {
	display: flex;
}

.section__title::before {
	height: 5px;
	top: -4px;
	width: 32px;
}

.section__title {
	font-size: 36px;
}

.fee {
	padding-block: 30px;
}

.fee__outer {
	padding-inline: 20px;
}

.fee__inner {
	padding: 30px 15px;
}

.fee__sub-title {
	font-size: 19.04px;
}

.fee__title {
	font-size: 20px;
	margin-block: 9px 26px;
}

.fee__time {
	font-size: 21px;
}

.fee__minutes {
	font-size: 15.12px;
}

.fee__price {
	font-size: 21px;
}

.fee__yen {
	font-size: 15.12px;
}

.fee__tax {
	font-size: 15.12px;
}

.fee__plus {
	height: 12.6px;
	margin-block: 19px 11px;
	width: 12.6px;
}

.fee__price-sub {
	font-size: 14px;
}

.fee__asterisk {
	font-size: 7px;
	margin-inline-start: -4px;
}

.fee__annotation {
	font-size: 12px;
	line-height: 21.6px; /* 180% */
	margin-block: 28px 26px;
}

.fee__link {
	font-size: 14px;
}

.cta::before {
	background-image: url(../../assets/img/cta_bg_sp.png);
}

.cta__line {
	height: 2px;
}

.cta__title {
	font-size: 18px;
	padding-block-start: 52px;
}

.cta__line-name {
	font-size: 14px;
	margin-block: 11px 10px;
}

.cta__qr {
	display: none;
}

.cta__reserve-link {
	display: flex;
}

.webp .cta::before {
	background-image: url(../../assets/img/cta_bg_sp.webp);
}

.banner__container {
	grid-template-columns: 1fr;
}

.banner__course {
	background-image: url(../../assets/img/banner_course_bg_sp.jpg);
}

.banner__course-outer {
	padding: 12px;
}

.banner__course-inner {
	border: 1px solid #00162F;
	padding: 47px 8.95px 57px;
}

.banner__course-message {
	font-size: 20px;
	line-height: 32px; /* 160% */
}

.banner__course-sub-title {
	font-size: 14px;
	line-height: 32px; /* 228.571% */
	margin-block-start: 12px;
}

.banner__course-title {
	font-size: 22px;
	line-height: 32px; /* 145.455% */
	margin-block-start: -1px;
}

.banner__course-link {
	height: 62px;
	width: 62px;
	-moz-column-gap: 3px;
	bottom: 10px;
	column-gap: 3px;
	padding-block-end: 0;
	right: clamp(12px, -139.1479591837px + 40.306122449vw, 170px);
}

.banner__course-link span {
	font-size: 12px;
	line-height: 12px; /* 100% */
}

.banner__course-link svg {
	height: 7px;
	width: 7px;
}

.banner__corporate {
	background-image: url(../../assets/img/banner_corporate_bg_sp.jpg);
}

.banner__corporate-outer {
	padding: 12px;
}

.banner__corporate-inner {
	border: 1px solid #CABE8B;
	padding: 45px 20px 61px;
}

.banner__corporate-title {
	font-size: 20px;
	margin-block-end: 18px;
}

.banner__corporate-message:last-of-type {
	margin-block-start: 8px;
}

.banner__corporate-message {
	font-size: 12px;
	line-height: 20px; /* 166.667% */
}

.banner__corporate-link {
	height: 62px;
	width: 62px;
	-moz-column-gap: 3px;
	bottom: 10px;
	column-gap: 3px;
	padding-block-end: 0;
	right: clamp(12px, -139.1479591837px + 40.306122449vw, 170px);
}

.banner__corporate-link span {
	font-size: 12px;
	line-height: 12px; /* 100% */
}

.banner__corporate-link svg {
	height: 7px;
	width: 7px;
}

.webp .banner__course {
	background-image: url(../../assets/img/banner_course_bg_sp.webp);
}

.webp .banner__corporate {
	background-image: url(../../assets/img/banner_corporate_bg_sp.webp);
}

.top-fv {
	aspect-ratio: 375/700;
	background-image: url(../../assets/img/fv_bg_sp.png);
}

.top-fv__inner {
	padding-inline-start: 20px;
}

.top-fv__title-wrapper {
	left: 4.8%;
	top: 18.75%;
}

.top-fv__title::after {
	background-image: url(../../assets/img/fv_logo_sp.svg);
	height: clamp(77px, 32.0382653061px + 11.9897959184vw, 124px);
	width: clamp(124px, 51.2959183673px + 19.387755102vw, 200px);
}

.top-fv__text-wrapper {
	left: 20px;
	top: 38.7%;
}

.top-fv__main-text {
	font-size: clamp(22px, 9.5637755102px + 3.3163265306vw, 35px);
	line-height: 1.5;
}

.top-fv__main-text--large {
	font-size: clamp(24px, 10.6071428571px + 3.5714285714vw, 38px);
	line-height: 44px; /* 183.333% */
}

.top-fv__main-text--large:first-of-type {
	margin-inline-start: 20px;
}

.top-fv__main-text--small {
	font-size: clamp(20px, 9.4770408163px + 2.806122449vw, 31px);
	line-height: 44px;
	margin-inline: -5px;
}

.top-fv__main-text--small:last-of-type {
	margin-inline: -4px;
}

.top-fv__sub-text {
	font-size: clamp(14px, 6.3469387755px + 2.0408163265vw, 22px);
	line-height: 2;
	margin-block-start: 13px;
}

.top-fv__scroll {
	bottom: 42px;
	font-size: 14px;
}

.top-fv__line-wrapper {
	bottom: 10px;
}

.top-fv__line {
	height: 30px;
}

.top-fv__link {
	display: flex;
}

.webp .top-fv {
	background-image: url(../../assets/img/fv_bg_sp.webp);
}

.top-concept {
	padding-block: 78px 52px;
}

.top-concept__title {
	font-size: 22px;
	margin-block: 38px 15px;
	text-align: left;
}

.top-concept__text {
	font-size: 14px;
	line-height: 28px; /* 200% */
	text-align: left;
}

.top-concept__details {
	margin-block-start: 25px;
}

.top-concept__summary::after {
	bottom: 23px;
	height: 7px;
	width: 15px;
}

.top-concept__summary {
	font-size: 12px;
	line-height: 25px; /* 208.333% */
	padding-block-end: 35px;
}

.top-concept__more-content p {
	margin-block-end: 28px;
}

.top-uniqueness {
	padding-block: 67px;
}

.top-uniqueness__main-message {
	font-size: 24px;
	line-height: 35.2px; /* 146.667% */
	margin-block-end: 26px;
	text-align: left;
}

.top-uniqueness__sub-message {
	font-size: 14px;
	line-height: 28px; /* 200% */
	max-width: 600px;
	text-align: left;
}

.top-uniqueness__items > .top-uniqueness__item:nth-child(3) {
	padding-block-start: 40px;
}

.top-uniqueness__items {
	grid-template-columns: 1fr;
	margin-block-start: 24px;
	margin-inline: auto;
	max-width: 500px;
	padding-inline: 20px;
	row-gap: 20px;
}

.top-uniqueness__item {
	border-radius: 50px 0;
	box-shadow: 0 1px 6px 0 rgba(0, 22, 47, 0.2);
	padding: 38px 19px 26px;
}

.top-uniqueness__item-title::before {
	top: -5px;
}

.top-uniqueness__item-title::after {
	bottom: -5px;
}

.top-uniqueness__item-title {
	font-size: 18px;
	line-height: 45px; /* 250% */
}

.top-uniqueness__item:nth-child(3) .top-uniqueness__item-title {
	line-height: 25.2px; /* 140% */
}

.top-uniqueness__item:nth-child(3) .top-uniqueness__item-title::before {
	top: -13px;
}

.top-uniqueness__item:nth-child(3) .top-uniqueness__item-title::after {
	bottom: -13px;
}

.top-uniqueness__item-text {
	font-size: 13px;
	line-height: 26px; /* 200% */
	margin-block-start: 26px;
}

.top-uniqueness__item:nth-child(3) .top-uniqueness__item-text {
	margin-block-start: 34px;
}

.top-tellers {
	padding-block: 64px 60px;
}

.top-tellers__title {
	font-size: 22px;
	margin-block-end: 22px;
	text-align: left;
}

.top-tellers__message {
	font-size: 13px;
	line-height: 26px; /* 200% */
	text-align: left;
}

.top-tellers__items-outer {
	max-width: 375px;
	padding-block: 46px 47px;
}

.top-tellers__items {
	margin-inline: auto;
	max-width: 375px;
	padding-inline: 47px 10px;
}

.top-tellers__item {
	padding-block-end: 0;
}

.top-tellers__item-img-wrapper {
	height: 330px;
	margin-inline-start: 16px;
	width: 247px;
}

.top-tellers__item-img {
	height: 300px;
}

.top-tellers__item-text-body {
	margin-block-start: -8.75%;
	max-width: 318px;
	min-height: 103px;
	padding-block-end: 0;
	padding-block-start: 4.6%;
	padding-inline-start: 44px;
}

.top-tellers__item-name-wrapper {
	align-items: baseline;
	display: flex;
	flex-direction: column;
	-moz-column-gap: 2px;
	column-gap: 2px;
}

.top-tellers__item-role {
	font-size: 14px;
	line-height: 24px; /* 171.429% */
	min-height: 24px;
	white-space: nowrap;
}

.top-tellers__item-name {
	font-size: 18px;
	line-height: 24px;
	margin-block-start: 0;
	white-space: nowrap;
}

.top-tellers__item-method {
	font-size: 12px;
	line-height: 19.5px; /* 162.5% */
	margin-block-start: 4px;
}

.top-tellers__item-more span {
	font-size: 10px;
	line-height: 24px; /* 240% */
	margin-inline-start: 2px;
}

.top-tellers__item-more svg {
	margin-block-start: -11px;
	width: 40px;
}

.top-tellers__item-more {
	right: 26px;
	top: 1px;
}

.top-tellers__more-link {
	font-size: 14px;
	line-height: 24px; /* 171.429% */
	padding: 6px 22px;
}

.top-tellers__deco-left {
	display: none;
}

.top-tellers__deco-right {
	display: none;
}

.top-tellers__deco-sp {
	display: block;
	height: auto;
	left: 50%;
	position: absolute;
	top: 42.25%;
	translate: -50%;
	width: 100%;
}

.tellers__swiper .swiper-button-prev,
.tellers__swiper .swiper-button-next {
	top: 54% !important;
	translate: 0 -50%;
	width: 29px;
}

.swiper-button-prev {
	left: 3% !important;
}

.swiper-button-next {
	right: 3% !important;
}

.top-flow {
	padding-block: 67px 36px;
}

.top-flow__title {
	font-size: 20px;
	margin-block: 33px 21px;
	text-align: left;
}

.top-flow__message {
	font-size: 13px;
	line-height: 26px; /* 200% */
	text-align: left;
}

.top-flow__items {
	margin-block-start: 39px;
}

.top-flow__item::after {
	height: calc(100% - 14px);
	left: 14px;
	top: 29px;
	width: 2px;
}

.top-flow__item {
	margin-block-end: 35px;
}

.top-flow__item-title {
	font-size: 16px;
	line-height: 26px; /* 162.5% */
}

.top-flow__item-num {
	font-size: 18px;
	line-height: 25.2px; /* 140% */
	margin-inline-end: 20px;
}

.top-flow__item-text {
	font-size: 14px;
	line-height: 26px; /* 185.714% */
	margin-block-start: 11px;
	margin-inline-start: 35px;
}

.top-flow__item-link {
	font-size: 14px;
	margin-block-start: 10px;
	margin-inline-start: 35px;
	padding: 2px 12px;
}

.top-flow__item-list li {
	font-size: 14px;
	line-height: 21px; /* 150% */
}

.top-flow__item-list {
	margin-block-start: 8px;
	margin-inline-start: 35px;
}

.top-flow__img-step4 {
	margin-block-start: 13px;
	margin-inline-start: 35px;
	width: calc(100% - 35px);
}

.top-voices {
	padding-block: 54px 40px;
}

.top-voices__main-message {
	font-size: 20px;
	margin-block: 35px 21px;
}

.top-voices__sub-message {
	font-size: 13px;
	line-height: 26px; /* 200% */
}

.top-voices__items {
	display: block;
	-moz-column-count: 2;
	column-count: 2;
	-moz-column-gap: 20px;
	column-gap: 20px;
	margin-block-start: 22px;
}

.top-voices__item {
	display: block;
	margin: 0 0 10px;
	width: auto;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
	page-break-inside: avoid;
}

.top-blog {
	padding-block: 38px 57px;
}

.top-blog__sub-title {
	font-size: 16px;
}

.top-blog__title {
	font-size: 20px;
	margin-block: 7px 20px;
}

.top-blog__message {
	font-size: 13px;
	line-height: 26px; /* 200% */
}

.top-blog__items {
	grid-template-columns: 1fr;
	margin: 39px auto 40px;
	max-width: 500px;
	row-gap: 40px;
}

.top-blog__item-title {
	font-size: 16px;
	line-height: 25.6px; /* 160% */
	margin-block: 11px 8px;
}

.top-blog__category-container {
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.top-blog__category {
	font-size: 13px;
	line-height: 100%; /* 13px */
}

.top-blog__more-container {
	-moz-column-gap: 17px;
	column-gap: 17px;
	margin-inline: auto;
	max-width: 500px;
}

.top-blog__more-arrow {
	width: 6px;
}

.top-blog__more-link {
	font-size: 14px;
	line-height: 24px; /* 171.429% */
	margin-inline-end: 65px;
}

.top-blog__more-link::after {
	left: -23px;
	width: 200px;
}

.top-area {
	padding-block: 56px 157px;
}

.top-area__inner {
	max-width: 400px;
}

.top-area__sub-title {
	font-size: 16px;
}

.top-area__title {
	font-size: 16px;
	margin-block: 8px 27px;
}

.top-area__message {
	font-size: 14px;
	line-height: 26px; /* 185.714% */
}

.top-area__img {
	height: 297.661px;
	right: 22px;
	top: 15px;
	width: 297.661px;
}

.top-qa {
	padding-block: 56px 41px;
}

.top-qa__main-message {
	font-size: 20px;
	margin-block: 36px 21px;
	text-align: left;
}

.top-qa__sub-message {
	font-size: 13px;
	line-height: 26px; /* 200% */
	text-align: left;
}

.top-qa__items {
	margin-block-start: 48px;
}

.top-qa__item {
	margin-block-end: 13px;
}

.top-qa__summary::before {
	height: 21px;
	width: 22px;
}

.top-qa__summary::after {
	height: 8px;
	right: 0;
	width: 16px;
}

.top-qa__summary {
	font-size: 16px;
	padding-inline-start: 34px;
}

.top-qa__answer {
	font-size: 14px;
	line-height: 26px; /* 185.714% */
	margin-block-start: 8px;
	padding-block-end: 10px;
}

.tellers {
	padding-block-end: 100px;
}

.tellers__items {
	margin-block: 60px;
	row-gap: 40px;
}

.tellers__item {
	padding: 25px 20px 25px;
}

.tellers__item-img-outer {
	aspect-ratio: 420/410;
}

.tellers__item-text-body {
	padding-block-start: 20px;
}

.tellers__item-lead {
	line-height: 1.5;
}

.tellers__item-name-container {
	flex-direction: column;
	margin-block-start: 6px;
}

.tellers__item-name {
	font-size: 22px;
	line-height: 1.5;
}

.tellers__item-method {
	font-size: 14px;
	margin-block-start: 7px;
}

.tellers__tag-link {
	padding-inline: 10px;
}

.tellers__item-ctas {
	-moz-column-gap: 15px;
	column-gap: 15px;
	margin-block-start: 20px;
}

.tellers-detail__article {
	max-width: 600px;
	padding-block-start: 85px;
}

.tellers-detail__item {
	align-items: center;
	flex-direction: column-reverse;
}

.tellers-detail__intro {
	flex: 1 1 auto;
	padding-block-start: 20px;
	width: 100%;
}

.tellers-detail__lead {
	font-size: 14px;
	letter-spacing: -0.056px;
	line-height: 28.56px; /* 204% */
}

.tellers-detail__intro-line {
	width: 306px;
}

.tellers-detail__role {
	font-size: 16px;
	line-height: 2.5;
}

.tellers-detail__name {
	font-size: 24px;
	line-height: 1.7;
}

.tellers-detail__title {
	font-size: 20px;
}

.tellers-detail__profile-wrapper {
	margin-block-start: 45px;
}

.tellers-detail__profile {
	font-size: 14px;
	line-height: 1.8;
}

.tellers-detail__attributes {
	flex-direction: column;
	margin-block-start: 37px;
}

.tellers-detail__methods {
	display: flex;
	-moz-column-gap: 10px;
	column-gap: 10px;
	margin-block-start: 26px;
}

.tellers-detail__methods li {
	font-size: 14px;
	line-height: 1.8;
}

.tellers-detail__tags-wrapper {
	margin-block-start: 35px;
}

.tellers-detail__tags {
	margin-block-start: 32px;
}

.tellers-detail__other-wrapper {
	margin-block-start: 43px;
}

.tellers-detail__other {
	font-size: 14px;
}

.tellers-detail__schedule {
	margin-block-start: 35px;
}

.tellers-detail__calendar-wrapper {
	margin-block-start: 32px;
	padding: 30px 25px 25px;
}

.tellers-detail__calendar-title {
	font-size: 20px;
}

.tellers-detail__links {
	margin-block: 45px 60px;
}

.tellers-detail__reserve-link {
	font-size: 18px;
	height: 50px;
	width: 250px;
}

.tellers-detail__flow-link {
	font-size: 14px;
}

.tellers-detail__prev,
.tellers-detail__next,
.tellers-detail__back {
	font-size: 14px;
}

.blog {
	padding-block-end: 100px;
}

.blog__items {
	grid-template-columns: 1fr;
	padding-block: 80px 60px;
	row-gap: 50px;
}

.blog__item {
	margin-inline: auto;
	max-width: 500px;
}

.blog__title {
	font-size: 16px;
	line-height: 1.5;
}

.blog__categories {
	margin-block-start: 5px;
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.blog__category-link {
	font-size: 14px;
}

.blog-single {
	padding-block-end: 80px;
}

.blog-single__article {
	padding-block-start: 60px;
}

.blog-single__date {
	font-size: 14px;
}

.blog-single__title {
	font-size: 24px;
	line-height: 1.5;
}

.blog-single__cats {
	-moz-column-gap: 10px;
	column-gap: 10px;
	margin-block-start: 7px;
}

.blog-single__cat-link {
	font-size: 14px;
}

.blog-single__thumb-img {
	margin-block-start: 25px;
	max-width: 500px;
}

.blog-single__content :where(h2) {
	font-size: 24px;
	line-height: 1.5;
	padding:0 10px;
	margin-block-start: 40px;
}

.blog-single__content :where(h3) {
	font-size: 20px;
	line-height: 1.2;
	margin-block-start: 40px;
}

.blog-single__content :where(h4){
	font-size: 18px;
	line-height: 0.75;
	margin-block-start: 30px;
}
	
.blog-single__content :where(h5) {
	font-size: 16px;
	line-height: 0.75;
	margin-block-start: 40px;
}
	.vk_borderBox .vk_borderBox_title_container .vk_borderBox_title{
		font-size: 18px !important;
	}
.blog-single__content :where(p) {
	font-size: 14px;
	line-height: 1.8;
	margin-block-start: 20px;
}

.blog-single__content :where(ul li) {
	font-size: 16px;
	line-height: 1.8;
}

.blog-single__content :where(ul li)::before {
	height: 8px;
	width: 8px;
}

.blog-single__content :where(a) {
	font-size: 14px;
}

.corporations__intro {
	margin-inline: auto;
	max-width: 550px;
	padding-block-start: 80px;
}

.corporations__intro-media {
	flex-direction: column;
}

.corporations__intro-img {
	margin-inline: auto;
}

.corporations__intro-title {
	font-size: 24px;
	text-align: center;
}

.corporations__intro-lead {
	font-size: 14px;
	line-height: 1.6;
}

.corporations__audience-list {
	align-items: center;
	flex-direction: column;
	margin-block-start: 40px;
	row-gap: 20px;
}

.corporations__audience-item {
	font-size: 16px;
	max-width: 200px;
}

.corporations__services {
	margin-block-start: 80px;
	row-gap: 60px;
}

.corporations__service {
	flex-direction: column;
}

.corporations__service:nth-of-type(even) {
	flex-direction: column;
}

.corporations__service:nth-of-type(even) .corporations__service-img {
	margin-inline: auto;
	width: 100%;
}

.corporations__service-img {
	margin-inline: auto;
	max-width: 500px;
	width: 100%;
}

.corporations__service-body {
	padding-block-start: 30px;
}

.corporations__service-title {
	font-size: 24px;
}

.corporations__service-subtitle {
	font-size: 17px;
	margin-block-start: 5px;
}

.corporations__service-text {
	font-size: 14px;
	margin-block-start: 5px;
}

.corporations__plan {
	margin-inline: auto;
	max-width: 550px;
	padding-block: 80px 60px;
}

.corporations__plan-message {
	font-size: 14px;
}

.corporations__plan-items {
	flex-direction: column;
	margin-block-start: 40px;
	row-gap: 80px;
}

.corporations__plan-item {
	margin-inline: auto;
	max-width: 400px;
}

.corporations__plan-item-list {
	padding-block: 18px;
}

.corporations__plan-item-list li {
	font-size: 20px;
}

.corporations__plan-item-price {
	font-size: 24px;
}

.corporations__plan-item-yen {
	font-size: 16px;
}

.corporations__plan-item-deco {
	font-size: 18px;
}

.corporations__plan-rules {
	margin-block-start: 60px;
	padding-inline-start: 0;
	row-gap: 30px;
}

.corporations__plan-rule {
	flex-direction: column;
}

.corporations__plan-rule-label {
	font-size: 18px;
}

.corporations__plan-rule-text {
	font-size: 14px;
	margin-block-start: 10px;
}

.corporations__plan-rule-list {
	margin-block-start: 15px;
}

.corporations__plan-rule-list li {
	font-size: 14px;
}

.corporations__support {
	padding-block: 60px 50px;
}

.corporations .inner {
	margin-inline: auto;
	max-width: 550px;
}

.corporations__support-intro {
	flex-direction: column;
	row-gap: 30px;
}

.corporations__support-texts {
	width: 100%;
}

.corporations__support-title {
	font-size: 20px;
	margin-block: 0 20px;
	text-align: center;
}

.corporations__support-text {
	font-size: 14px;
	margin-inline-end: 0;
}

.corporations__support-img {
	margin-inline: auto;
	max-width: 450px;
	width: 100%;
}

.corporations__support-list {
	grid-template-columns: 1fr;
	margin-block-start: 40px;
	row-gap: 30px;
}

.corporations__support-item {
	padding: 10px 15px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	margin-inline: auto;
	max-width: 400px;
	width: 100%;
}

.corporations__support-item-img-container {
	flex: 0 0 70px;
	height: 70px;
	width: 70px;
}

.corporations__support-item-title {
	font-size: 16px;
}

.corporations__support-message {
	font-size: 16px;
	margin-block-start: 30px;
}

.corporations .cta__title {
	padding-block-start: 40px;
}

.corporations .cta__line-name {
	margin-block-end: 10px;
}

.school__intro {
	margin-inline: auto;
	max-width: 550px;
	padding-block-start: 80px;
}

.school__intro-media {
	flex-direction: column;
}

.school__intro-img {
	flex: 0 0 auto;
	margin-inline: auto;
	max-width: 500px;
	width: 100%;
}

.school__intro-title {
	font-size: 24px;
	line-height: 1.8;
	margin-block-end: 25px;
	text-align: center;
}

.school__intro-lead {
	font-size: 14px;
}

.school__dual-title {
	font-size: 20px;
	margin-block: 30px 15px;
}

.school__dual-lead {
	font-size: 14px;
}

.school__dual-list {
	flex-direction: column;
	row-gap: 40px;
}

.school__dual-item {
	margin-inline: auto;
	max-width: 550px;
	width: 100%;
}

.school__dual-item-head {
	height: 65px;
}

.school__dual-item-title {
	font-size: 22px;
}

.school__dual-item-body {
	padding: 20px 10px 25px;
}

.school__dual-item-img {
	margin-bottom: 15px;
	max-width: 220px;
	padding-inline: 0px;
	width: 100%;
}

.school__dual-item-description {
	font-size: 16px;
}

.school__dual-item-description::after {
	height: 5px;
}

.school__dual-item-description--1::after {
	max-width: 290px;
	width: 100%;
}

.school__dual-item-description--2::after {
	max-width: 195px;
	width: 100%;
}

.school__dual-item-text {
	font-size: 14px;
	line-height: 2;
}

.school__dual-item-text + .school__dual-item-text::after {
	height: 30px;
	top: -34.5px;
}

.school__course {
	margin-inline: auto;
	max-width: 550px;
	padding-block: 80px 60px;
}

.school__course-list {
	grid-template-columns: 1fr;
	margin-block-start: 25px;
}

.school__course-item {
	align-items: stretch;
}

.school__course-item-popular-wrapper {
	left: -25px;
	top: 38px;
}

.school__course-item-popular {
	font-size: 12px;
}

.school__course-item-popular::before {
	height: 66px;
	top: -21px;
	width: 60px;
}

.school__course-item-sub-title {
	font-size: 16px;
}

.school__course-item-sub-title::before {
	left: -25px;
}

.school__course-item-sub-title::after {
	right: -25px;
}

.school__course-item-title {
	font-size: 28px;
}

.school__course-item-title-small {
	font-size: 24px;
}

.school__course-item-body {
	padding: 50px 25px 30px;
}

.school__course-item-message {
	font-size: 18px;
	line-height: 2;
}

.school__course-item-description {
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
}

.school__course-item-link {
	font-size: 18px;
	height: 55px;
	max-width: 286px;
	width: 100%;
	-moz-column-gap: 15px;
	column-gap: 15px;
}

.school__course-item-link svg {
	height: auto;
	margin-block-start: 3px;
	width: 15px;
}

.school__course-details {
	margin-block: 40px 20px;
}

.school__course-detail + .school__course-detail {
	margin-block-start: 80px;
}

.school__course-detail-title-wrapper::before {
	width: 75%;
}

.school__course-detail-title {
	font-size: 24px;
	padding-inline: 15px;
}

.school__course-detail-box-container::before {
	inset: 20px;
}

.school__course-detail-box-inner {
	padding: 20px;
}

.school__course-detail-box-price-container {
	flex-direction: column;
	margin-block-start: 15px;
	row-gap: 15px;
}

.school__course-detail-box-price {
	font-size: 28px;
}

.school__course-detail-box-price-regular {
	font-size: 18px;
}

.school__course-detail-box-yen {
	font-size: 20px;
}

.school__course-detail-box-description {
	font-size: 14px;
	margin-inline: 10px;
	text-align: left;
}

.school__course-detail-steps {
	margin-block-start: 60px;
}

.school__course-detail-step--2 {
	padding-inline-start: 0;
}

.school__course-detail-step-num {
	width: 75px;
}

.school__course-detail-step-container {
	display: flex;
	flex-direction: column;
	padding-inline-start: 0;
}

.school__course-detail-step-title-wrapper {
	left: 74px;
	top: 23px;
}

.school__course-detail-step-title-wrapper--two-chars {
	left: 86px;
}

.school__course-detail-step-title-wrapper--four-chars {
	left: 64px;
}

.school__course-detail-step-title-wrapper--four-chars-2 {
	top: 7px;
}

.school__course-detail-step-title-wrapper--four-chars-2 {
	left: 64px;
}

.school__course-detail-step-title-wrapper--five-chars {
	left: 53px;
}

.school__course-detail-step-title {
	font-size: 22px;
}

.school__course-detail-step-title::before {
	height: 132px;
	width: 120px;
}

.school__course-detail-step-lead {
	font-size: 18px;
	line-height: 1.25;
	margin-block-start: 125px;
}

.school__course-detail-step-text {
	font-size: 14px;
	line-height: 1.8;
}

.school__course-detail-link-wrapper {
	margin-block-start: 50px;
}

.school__course-detail-link {
	font-size: 22px;
	height: 60px;
}

.school__course-detail-link svg {
	height: auto;
	width: 9px;
}

.school__course-detail-note {
	font-size: 18px;
	margin-block-start: 28px;
}

.school__teacher {
	margin-block-end: 80px;
	padding-block-start: 110px;
}

.school__teacher-container {
	padding-block-end: 80px;
}

.school__teacher-inner {
	flex-direction: column;
	margin-inline: auto;
	max-width: 550px;
	padding-block-start: 20px;
}

.school__teacher-title {
	margin-block-start: -100px;
	order: 1;
}

.school__teacher-visual {
	order: 2;
}

.school__teacher-img {
	margin-block-start: 60px;
	margin-inline: auto;
	width: 100%;
}

.school__teacher-texts {
	display: contents;
}

.school__teacher-name-wrapper {
	margin-block-start: 35px;
	order: 3;
}

.school__teacher-role {
	font-size: 16px;
}

.school__teacher-name {
	font-size: 22px;
}

.school__teacher-message-wrapper {
	order: 4;
}

.school__teacher-message {
	font-size: 14px;
	line-height: 1.8;
}

.school .cta__title {
	padding-block-start: 40px;
}

.school .cta__line-name {
	margin-block-end: 10px;
}

.contact__link {
	font-size: 14px;
}

.policy__inner {
	padding-block: 40px 75px;
}

.policy__lead {
	font-size: 14px;
	margin-block-end: 25px;
	text-align: left;
}

.policy__article + .policy__article {
	margin-block-start: 20px;
}

.policy__article-title {
	font-size: 18px;
}

.policy__article-text {
	font-size: 14px;
}

.policy__article-list--cancel .policy__article-item {
	line-height: 2;
}

.policy__article-item {
	font-size: 14px;
	line-height: 2;
}

.policy__article-link {
	font-size: 14px;
}

.show__sp {
	display: block;
}

.show__tab-pc--inline {
	display: none;
}

.show__tab-pc {
	display: none;
}

.show__medium-pc {
	display: none;
}

}

@media screen and (max-width: 499px) {

.tellers-detail__calendar-wrapper {
	padding-inline: 5px;
}

.tellers-detail__calendar-inner {
	padding-top: 133%;
}

}

@media screen and (max-width: 471px) {

.tellers-detail__img-outer {
	max-width: 335px;
	padding: 30px;
}

.tellers-detail__img-inner {
	inset: 30px;
}

}

@media screen and (max-width: 374px) {

.banner__course-link {
	bottom: 5px;
	height: 55px;
	width: 55px;
}

.banner__corporate-link {
	bottom: 5px;
	height: 55px;
	width: 55px;
}

}

@keyframes scrollBounce {

0%,100% {
	transform: translateY(0);
}

50% {
	transform: translateY(8px);
}

}
.btn__{
	text-align:center;
}
.btn__ a{
	display:inline-block;
	padding:10px 30px;
	border:2px solid #AA9766;
	color: #AA9766;
    margin-top: 30px;
}
