/*
 Theme Name:   SCキャリコンLPテーマ2025
 Template:     blankslate
*/

/* 
========================================
  CSS編集ガイド
----------------------------------------
- クラス命名：基本はBEM方式（.block__element--modifier）
- セレクタの入れ子は原則避ける
- IDやタグ指定（例: #nav h2）は原則使わない
- マージン：原則、margin-right／margin-bottomのみ使用（レイアウト崩れ防止）
- 色・フォント：原則、個別に指定しない。変数を利用（例: var(--color-primary)）
- ブランドロゴの周囲には既定の余白を空ける
========================================
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root {
	/* カラー */
	--main-color: #8CFF00;
	--hd-color: #275974;
	--white: #fff;
	--light-gray: #efefef;
	--dark-gray: #9FA0A0;
	--text-color: #333;
	--text-sub-color: #555;
	--dark-green: #136077;
	--input-bg-color: #efefef;

	/* フォント */
	--main-font: "Noto Sans JP", sans-serif;
	--serif-font: "Noto Serif JP", serif;
	--font-awesome: "Font Awesome 6 Free";

	/* レイアウト */

	--header-height: 114px;
	--mb-header-height: 80px;
	--max-w: 1280px;
	--max-width-s: 1070px;
	--max-width-ss: 860px;

	/* 効果 */
	--basic-transition: .3s;
	--text-shadow: 0 4px 8px rgb(0 0 0 / 10%);
}

/* common
==================================================== */

* {
	box-sizing: border-box;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .04em;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--text-color);
	font-family: var(--main-font);
}

a, button {
	cursor: pointer;
	text-decoration: none;
	transition: var(--basic-transition);
}

a:hover {
	opacity: .7;
}

b {
	font-size: inherit;
	font-weight: 700;
}


button, input[type="submit"] {
	cursor: pointer;
}


button:hover {
	opacity: .7;
}


img {
	height: auto;
}

.br-pc {
	display: block;
}

.br-mb {
	display: none;
}

@media (width <=768px) {
	.br-pc {
		display: none;
	}

	.br-mb {
		display: block;
	}

}



/* decoration */

.marker {
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	text-decoration: underline;
	text-decoration-color: var(--main-color);
	text-decoration-skip-ink: none;
	text-decoration-thickness: .33em;
	text-underline-offset: -0.2em;
}

.underline {
	text-decoration: underline;
}


/* メインボタン */
.btn {
	background-color: var(--main-color);
	border-radius: 100vh;
	color: var(--white);
	display: inline-block;
	padding: 1em 4em;
	text-align: center;
}

.btn:hover {
	opacity: unset;
	transform: scale(1.05);
}

/* noteやSNSのボタン */
.dark-btn {
	align-items: center;
	background: var(--text-color);
	border-radius: 100vh;
	color: var(--white);
	display: inline-flex;
	font-weight: 500;
	justify-content: center;
	letter-spacing: .05em;
	position: relative;
	text-align: center;
	text-decoration: none;
}

.dark-btn::after {
	color: var(--white);
	content: "\f08e";
	font-family: var(--font-awesome);
	font-size: 14px;
	font-weight: 900;
	position: absolute;
	right: 28px;
}

.btn span {
	display: block;
	font-weight: 400;
	letter-spacing: .1em;
}

/* 横スクロール可能な要素 */
.scroll-x {
	-webkit-overflow-scrolling: touch;

	/* iOSで慣性スクロール */
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-color: rgb(0 0 0 / 30%) transparent;
	scrollbar-width: thin;
	width: 100%;
}

.scroll-x::-webkit-scrollbar {
	height: 6px;
}

.scroll-x::-webkit-scrollbar-track {
	background: transparent;
}

.scroll-x::-webkit-scrollbar-thumb {
	background-color: rgb(0 0 0 / 30%);
	border-radius: 3px;
}

.scroll-x::-webkit-scrollbar-thumb:hover {
	background-color: rgb(0 0 0 / 50%);
}


.section {
	padding: 120px 0;
}

.section-header {
	margin-bottom: 80px;
	text-align: center;
}

.section-label {
	color: var(--main-color);
	display: block;
	font-size: clamp(18px, 3vw, 24px);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.2;
	margin-bottom: 0.4em;
}

.section-title {
	color: var(--hd-color);
	font-size: clamp(28px, 5vw, 51px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: .7em;
}

.section-text {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
}


.container {
	margin: 0 auto;
	max-width: var(--max-w);
	width: 90%;
}

@media (width <=1024px) {
	.section {
		padding: 80px 0;
	}

	.section-header {
		margin-bottom: 60px;
	}

	.section-text {
		text-align: justify;
	}

	.btn span {
		font-size: clamp(18px, 5vw, 20px);
	}

}


/* Cookie Notice
========================== */

#cookie-notice {
	border-radius: 10px;
	bottom: 10px;
	box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 15%);
	left: 50% !important;
	min-width: unset !important;
	transform: translateX(-50%);
	width: 60% !important;
	z-index: 9999999 !important;
}

.cookie-notice-container {
	margin: 0 auto;
	padding: 15px 40px !important;
	width: 100%;
}

.cn-text-container {
	font-size: 13px;
	margin: 0 0 1em !important;
	text-align: left;
}

.cn-privacy-policy-link {
	color: var(--white);
	font-size: inherit;
	text-decoration: underline;
}

.cn-buttons-container {
	display: flex;
	justify-content: center;
}

.cn-button.cookie-btn {
	background: var(--dark-green);
	border: 0;
	border-radius: 3px;
	color: var(--white);
	font-size: 14px;
	padding: .2em 1em;
}

@media (width <=768px) {
	#cookie-notice {
		width: 92% !important;
	}

	.cookie-notice-container #cn-notice-buttons {
		display: flex;
		flex-direction: column;
		gap: 5px;
		margin: 0 auto;
		max-width: 300px;
	}

	.cn-button.cookie-btn {
		height: 35px;
	}
}


/* header
==================================================== */

.site-header {
	height: var(--header-height);
	left: 0;
	padding-top: 20px;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
}

.site-header__container {
	height: 100%;
}

.site-header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	padding: 0 30px;

}

.site-branding__image {
	position: relative;
	width: clamp(100px, 12vw, 145px);
	z-index: -1;
}

.site-branding__label {
	color: var(--white);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.05em;
}


/* .site-header__inner.fadeDown.is-animated {
	animation: fadeDown 1s forwards;
}

@keyframes fadeDown {
	0% {
		opacity: 0;
		transform: translateY(-30px);
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
} */

.site-header__right {
	align-items: center;
	display: flex;
	gap: 32px;
}

.main-menu {
	color: var(--white);
	display: flex;
	gap: clamp(25px, 3vw, 35px);
	list-style: none;
}

/* PCの時だけTOPを非表示 */
.main-menu li:first-of-type {
	display: none;
}

.main-menu__item {
	color: inherit;
	font-size: clamp(14px, 1vw, 16px);
	font-weight: 400;
	letter-spacing: .05em;
}

.main-menu__item span {
	display: block;
	font-family: var(--main-font);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .05em;
	text-align: center;
}

/* ヘッダーの連絡先情報
========================== */

.info {
	align-items: center;
	color: var(--main-color);
	display: flex;
	gap: 12px;
}

.info__title {
	border: 1px solid currentcolor;
	display: grid;
	font-size: 12px;
	font-weight: 400;
	height: 57px;
	letter-spacing: .05em;
	place-items: center;
	text-align: center;
	width: 57px;
}

.info__time {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0;
}

.info__tel {
	color: inherit;
	font-size: clamp(20px, 2vw, 27px);
	font-weight: 700;
	letter-spacing: 0.05em;
}

@media (any-hover: hover) {
	.main-nav__item a:hover {
		color: var(--text-color);
	}
}

/* === pcで非表示 === */
.hamburger__text {
	visibility: hidden;
}


/* モバイル：ハンバーガーメニュー
==================================================== */
@media only screen and (width <=1280px) {
	.main-nav {
		background-color: #fff;
		height: 100vh;
		overflow-y: auto;
		padding: var(--mb-header-height) 40px 0;
		position: fixed;
		right: -100%;
		top: 0;
		transition: all .6s;
		width: min(350px, 80%);
		z-index: 200;
	}

	.main-nav .main-menu {
		align-items: center;
		flex-direction: column;
		gap: 24px;
		margin-bottom: 0;
	}

	.main-menu__item {
		color: var(--text-color);
	}

	.hamburger {
		cursor: pointer;
		height: 40px;
		position: absolute;
		right: 15px;
		top: 17px;
		width: 40px;
		z-index: 300;
	}

	.hamburger__text {
		color: var(--hd-color);
		font-family: var(--english-font);
		font-size: 12px;
		font-weight: 600;
		left: 50%;
		position: absolute;
		top: 32px;
		transform: translateX(-50%);
		visibility: visible;
	}

	.hamburger__border {
		background-color: var(--hd-color);
		height: 2px;
		left: 11px;
		position: absolute;
		transition: all .6s;
		width: 18px;
	}

	.hamburger__border_top {
		top: 14px;
	}

	.hamburger__border_center {
		top: 20px;
	}

	.hamburger__border_bottom {
		top: 26px;
	}

	.black_bg {
		background-color: #333;
		cursor: pointer;
		height: 100vh;
		left: 0;
		opacity: 0;
		position: fixed;
		top: 0;
		transition: all .6s;
		visibility: hidden;
		width: 100vw;
		z-index: -2;
	}

	/* === 表示された時用のCSS === */

	.main-nav-open .main-nav {
		right: 0;
	}

	.main-nav-open .black_bg {
		opacity: .5;
		visibility: visible;
	}

	.main-nav-open .hamburger__border_top {
		top: 20px;
		transform: rotate(45deg);
	}

	.main-nav-open .hamburger__border_center {
		left: 50%;
		width: 0;
	}

	.main-nav-open .hamburger__border_bottom {
		top: 20px;
		transform: rotate(-45deg);
	}
}


@media (width <=1280px) {
	.site-branding {
		display: none;
	}

	.site-branding__label {
		display: none;
	}

	.info {
		display: none;
	}

	.site-header {
		height: var(--mb-header-height);
		position: fixed;
	}

	.site-header__inner {
		align-items: center;
		padding: 0;
	}

	.site-header__inner.fadeDown.is-animated {
		animation: none;
	}

	.main-menu li:first-of-type {
		display: block;
	}
}


/* hero
==================================================== */

.hero-wrap {
	position: relative;
}

.hero {
	background-image: url("images/hero.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	padding-bottom: 90px;
	padding-top: 254px;
}

.hero__mb-logo {
	display: none;
}

.hero__inner {
	color: var(--white);
	text-align: center
}

.hero__main-copy {
	color: var(--white);
	font-size: clamp(26px, 4.2vw, 36px);
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

.hero__text {
	font-size: clamp(14px, 2.8vw, 18px);
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.6;
}


.hero__en-copy {
	color: #547587;
	font-family: var(--main-font);
	font-size: clamp(30px, 4.8vw, 47px);
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.6;
	margin-bottom: 40px;
}


@media (width <=1280px) {
	.hero {
		background-position: 20% top;
		background-size: cover;
		height: 800px;
		padding-top: 20px;
	}

	.hero__mb-logo {
		display: block;
		margin-bottom: 60px;
	}

	.hero__text {
		margin-bottom: 40px;
	}

	.hero__en-copy {
		margin-bottom: 40px;
	}
}


/* CTAボタン
========================== */
.offer__text {
	color: var(--main-color);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.2;
	margin-bottom: 5px;
	text-align: center;
}

.offer__inner {
	margin: 0 auto;
	position: relative;
	width: fit-content;
}

.offer__btn {
	color: #2D4312;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.35;
	padding: 1.2em 2em;
	text-shadow: 0 2px 0 var(--white);
	width: 390px;
}

.offer__bubble {
	background: var(--text-color);
	border-radius: 100%;
	color: var(--main-color);
	display: grid;
	font-size: 12px;
	font-weight: 700;
	height: 70px;
	left: -27px;
	letter-spacing: .01em;
	line-height: 1.2;
	place-items: center;
	position: absolute;
	text-align: center;
	top: -18px;
	transform: rotate(-24deg);
	width: 70px;
}

.offer__bubble::before {
	border: 7px solid transparent;
	border-top: 10px solid var(--text-color);
	content: "";
	left: 74%;
	position: absolute;
	top: 95%;
	transform: translateX(-50%) rotate(-24deg);
}

.offer__btn span {
	display: block;
	font-size: 21px;
	font-weight: 500;
	letter-spacing: .1em;
}

@media (width <=768px) {
	.offer__text {
		margin-bottom: 35px;
	}

	.offer__bubble {
		left: -10px;
		top: -30px;
	}
}

/* 実技合格率
========================== */

.stat {
	background: #00A6FF6E;
	border-radius: 50%;
	bottom: 60px;
	color: var(--white);
	display: grid;
	height: 224px;
	place-items: center;
	position: absolute;
	right: 14%;
	text-align: center;
	width: 224px;
}

.stat__inner {
	transform: rotate(18deg);
}

.stat__text {
	color: inherit;
	font-size: 25px;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.15;
}

.stat__percent {
	font-family: var(--main-font);
	font-size: 66px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
}

.stat__pct {
	font-size: 40px;
	letter-spacing: 0.05em;
}

.stat__note {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .1em;
	line-height: 1.7;
	margin-top: 2px;
}

.stat__deco-left {
	left: 18px;
	position: absolute;
	top: 15px;

}

.stat__deco-right {
	position: absolute;
	right: -25px;
	top: 80px;
}

@media (width <=1024px) {
	.stat {
		bottom: -40px;
		right: 35px;
	}

}


/* catch
==================================================== */

.catch {
	padding: 100px 0;
}

.catch__content {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: auto;
	max-width: 90%;
}

.catch__label {
	color: var(--hd-color);
	font-family: var(--main-font);
	font-size: clamp(20px, 2vw, 40px);
	font-weight: 500;
	letter-spacing: .05em;
	text-align: center;
	white-space: nowrap;
	width: 40%;
}

.catch__right {
	width: 60%;
}

.catch__title {
	color: var(--hd-color);
	font-size: clamp(18px, 1.7vw, 33px);
	font-weight: 500;
	letter-spacing: .04em;
	margin-bottom: 1.3em;

}

.catch__text {
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
	text-align: justify;
}


@media (width <=768px) {
	.catch__content {
		flex-direction: column;
		gap: 60px;
	}

	.catch__label {
		width: 100%;
	}

	.catch__right {
		width: 90%;
	}
}

/* issue
==================================================== */

.issue {
	border-left: 16px solid var(--main-color);
	padding: 0 0 30px 80px;
}

.issue__container {
	display: flex;
	gap: 68px;
	width: 100%;
}

.issue__left,
.issue__right {
	flex: 1;
}


.issue__left {
	max-width: 592px;
}

.issue__text {
	margin-bottom: 1.5em;
}

.issue__subtitle {
	color: var(--text-sub-color);
	font-size: 26px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 24px;
}

.issue__graph {
	align-items: center;
	border: 1px solid #EFEFEF;
	border-radius: 23px;
	display: flex;
	gap: 44px;
	padding: 40px 46px 30px;
}

.issue__graph img {
	display: block;
	height: auto;
	width: 199px;
}

.issue__graph-title {
	color: var(--hd-color);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: .9em;
}

.troube__graph-text {
	color: var(--hd-color);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 1.7;
}

/* 右側 */
.issue__right {
	position: relative;
}




.issue__balloon {
	position: absolute;
	width: fit-content;

}

.issue__balloon:first-of-type {
	bottom: 165px;
	left: 0;
}

.issue__balloon:nth-of-type(2) {
	bottom: 330px;
	left: 90px;
}

.issue__balloon:nth-of-type(3) {
	bottom: 305px;
	right: 40px;
}

.issue__balloon-img {
	height: auto;
	width: 245px;
}


.issue__balloon:first-of-type .issue__balloon-img {
	width: 230px;
}

.issue__balloon-text {
	color: var(--hd-color);
	font-size: 17px;
	font-weight: 400;
	left: 50%;
	letter-spacing: .05em;
	line-height: 1.6;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 215px;
}

.issue__balloon:nth-of-type(2) .issue__balloon-text {
	top: 45%;
}



.issue__person {
	bottom: 30px;
	left: 53%;
	position: absolute;
	transform: translateX(-50%);
}

.issue__person img {
	display: block;
	height: auto;
	margin-top: 24px;
	width: 282px;
}

@media (width <=768px) {
	.issue {
		padding-left: 0;
	}

	.issue__container {
		align-items: center;
		flex-direction: column;
		gap: 130px;
		width: 90%;
	}


	.issue__subtitle {
		font-size: 22px;
	}

	.issue__graph {
		flex-direction: column;
	}

	.issue__right {
		max-width: 400px;
		width: 100%;
	}

	.issue__balloon {
		width: 120px;
	}

	.issue__balloon:nth-of-type(2) {
		bottom: 260px;
		left: 70px;
	}

	.issue__balloon:nth-of-type(3) {
		bottom: 200px;
		right: 0;
	}

	.issue__balloon-text {
		font-size: 12px;
		width: 12em;
	}

	.issue__person {
		position: relative;
		width: 200px;
	}
}

@media (width >=768px) and (width <=1024px) {
	.issue__container {
		flex-direction: column;
		width: 90%;
	}

	.issue__right {
		margin-top: 170px;
	}

	.issue__person {
		position: relative;
		width: fit-content;
	}
}


/* voices
==================================================== */

.voices {
	padding: 40px 0 110px;
}

/* 275px = 両矢印がきれいに見える余白 */
.voices__container {
	max-width: unset;
	text-align: center;
	width: calc(100% - 275px);
}

.voices__title {
	color: var(--dark-green);
	font-size: clamp(22px, 3.5vw, 30px);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 8px;
	text-align: center;
}

.voices__lead {
	line-height: 1.6;
	margin-bottom: 80px;
}


/* ここにheight: auto がないと中の枠線ブロックを伸ばせない */
.voices__item {
	height: auto;
	position: relative;
}

/* 上にマージンをつけているのでそのぶんを高さから引く（単に100％の高さにすると下部が見切れる） */
.voices__item-inner {
	border: 1px solid var(--dark-green);
	border-radius: 30px;
	height: calc(100% - 45px);
	margin-top: 45px;
	padding: 85px 45px 30px;
}

.voices__icon {
	background: var(--white);
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);

}


.voices__name, .voices__job {
	color: var(--hd-color);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 25px;
}

.voices__job {
	margin-bottom: 25px;
}

.voices__subtitle {
	color: var(--dark-green);
	font-size: clamp(22px, 3.5vw, 30px);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: .5em;
}

.voices__text {
	text-align: left;
}

@media (width <=768px) {
	.voices__container {
		width: 90%;
	}

	.voices__item {
		margin: 0 10px;
	}
}


/* Slick.js
========================== */

.slick-track {
	display: flex;
	gap: 40px;
}

.slick-dots {
	bottom: -50px;
}

.slick-dots li {
	height: 13px;
	width: 13px;
}


.slick-dots li button::before {
	color: #9FA0A0;
	content: '•';
	font-size: 13px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height: 13px;
	left: 0;
	line-height: 13px;
	opacity: 1;
	position: absolute;
	text-align: center;
	top: 0;
	width: 13px;
}

.slick-dots li.slick-active button::before {
	color: #555;
	opacity: 1;
}

@media (width <=768px) {
	.slick-dots {
		bottom: -70px;
	}
}

/* note-link
==================================================== */

.note-link__box {
	border: 1px solid var(--text-sub-color);
	border-radius: 26px;
	margin: 0 auto;
	max-width: 860px;
	padding: 35px 40px;
}

.note-link__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.note-link__left {
	flex: 0 0 275px;
	text-align: center;
}

.note-link__logo {
	height: auto;
	width: 100%;
}

.note-link__right {
	flex: 1;
	text-align: center;
}

.note-link__title {
	color: var(--text-color);
	font-size: clamp(18px, 3vw, 24px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 12px;
}

.note-link__text {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 6px;
}

.note-link__url {
	color: var(--dark-green);
	display: block;
	font-family: var(--main-font);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
	margin-bottom: 23px;
	word-break: break-all;
}



.note-link__btn.dark-btn {
	font-size: 14px;
	max-width: 364px;
	padding: 1.2em 2em;
	width: 100%;
}

@media (width <=768px) {
	.note-link__inner {
		flex-direction: column;
	}

	.note-link__left {
		flex: 0;
	}
}




/* cta
==================================================== */

.bg-to-gray {
	background: linear-gradient(to bottom,
			var(--white) 0%,
			var(--white) 50%,
			var(--light-gray) 50%,
			var(--light-gray) 100%);
}

.bg-to-white {
	background: linear-gradient(to bottom,
			var(--light-gray) 0%,
			var(--light-gray) 50%,
			var(--white) 50%,
			var(--white) 100%);
}

.cta {
	background-image: url('images/cta-bg.png');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--white);
	padding: 0;
	text-align: center;
}

.cta__container {
	padding: 210px 0 165px;
}

.cta__catch {
	font-family: var(--serif-font);
	font-size: clamp(20px, 3.2vw, 26px);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.45;
	margin-bottom: 16px;
}

.cta__subcatch {
	font-family: var(--serif-font);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 2;
	margin-bottom: 20px;
}

.cta__desc {
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.75;
}

.cta__price-block {
	margin-bottom: 40px;
}

.cta__price {
	color: var(--main-color);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .04em;
}

.cta__price-num {
	font-size: 41px;
	font-weight: 700;
	letter-spacing: .04em;
}

.cta__price-note {
	color: var(--main-color);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .05em;
}

.cta__action-block {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
}

.cta__left {
	flex: 0 0 200px;
}

.cta__btn {
	background-color: #f90;
	border-radius: 6px;
	color: #fff;
	display: inline-block;
	font-weight: bold;
	padding: 12px 24px;
	text-decoration: none;
}

.cta__right {
	border: 1px solid #FFFFFF40;
	border-radius: 18px;
	flex: 1;
	max-width: 455px;
	padding: 14px 20px 14px 0;
}

.cta__info {
	align-items: center;
	display: flex;
}

/* LINEロゴの最小高さ: 40px LINEロゴの半分以上余白をとる */
.cta__info-icon {
	height: 40px;
	margin: 20px;
	width: auto;
}

.cta__info-center {
	color: var(--white);
	flex: 1;
	margin-right: 8px;
	text-align: left;
}

.cta__info-text {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 21px;
}

.cta__info-link {
	color: inherit;
	font-family: var(--main-font);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 29px;
	text-decoration: underline;
}

.cta__info-link::after {
	color: inherit;
	content: "\f08e";
	font-family: var(--font-awesome);
	font-size: 14px;
	font-weight: 900;
	margin-left: 7px;
	vertical-align: middle;
}

.cta__info-img {
	height: auto;
	width: 120px;
}

@media (width <=768px) {
	.cta {
		background-position: left center;
		padding-bottom: 80px;
	}

	.cta__container {
		padding: 170px 0 40px;
	}

	.cta__left {
		flex: 1;
	}

	.cta__action-block {
		align-items: center;
		flex-direction: column;
	}

	.cta__info-img {
		display: none;
	}
}

@media (width >=768px) and (width <=1024px) {
	.cta__info-img {
		display: none;
	}
}



/* answer
==================================================== */

/* 例外でmargin-top */
.answer {
	border-left: 16px solid var(--main-color);
	margin-bottom: 160px;
	margin-top: 80px;
	padding: 0 0 0 80px;
}

.answer__container {
	max-width: var(--max-w);
	width: 100%;

}

.answer__header {
	margin-bottom: 24px;
}

.answer__title {
	margin-bottom: 20px;
}

.answer__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.answer__left {
	flex: 1;
	min-width: 280px;
}

.answer__copy {
	color: var(--text-sub-color);
	font-size: clamp(20px, 3.2vw, 26px);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 20px;
}

.answer__subtitle {
	color: var(--hd-color);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 16px;
}

.answer__text {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
	margin-bottom: 2em;
}

.answer__text:last-of-type {
	margin-bottom: 0;
}

.answer__right {
	flex: 1;
	min-width: 280px;
}

.answer__right-inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 56px;
}

/* 円形 */
.answer__circle {
	align-items: center;
	border: 1px solid var(--main-color);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	height: 164px;
	justify-content: center;
	padding: 20px;
	text-align: center;
	width: 164px;
}

.answer__circle-num {
	color: var(--hd-color);
	font-size: 25px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 35px;
}

.answer__circle-title {
	color: var(--hd-color);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .04em;
}

.answer__content {
	flex: 1;
}

.answer__content-text {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.9;
	margin-bottom: 8px;
}

.answer__list {
	padding-left: 20px;
}

.answer__list-item {
	color: var(--hd-color);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
}

.answer__img {
	margin-bottom: 38px;

}

@media (width <=768px) {
	.answer {
		margin-bottom: 80px;
		padding-left: 0;
	}

	.answer__container {
		width: 90%;
	}

	.answer__inner {
		gap: 30px;
	}

	.answer__right-inner {
		flex-direction: column;
		gap: 30px;
	}

	.answer__circle {
		height: 130px;
		width: 130px;
	}

	.answer__circle-title {
		font-size: 16px;
	}
}


/* strengths
==================================================== */

.strengths__bg {
	background: url('images/strengths-bg.jpg') no-repeat center/cover;
	padding: 60px 0;

}

.strengths__container {
	max-width: var(--max-width-s);
}

.strengths__header {
	margin-bottom: 45px;
	text-align: center;
}

.strengths__label {
	color: var(--hd-color);
	display: block;
	font-family: var(--main-font);
	font-size: clamp(18px, 3vw, 24px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: -6px;
}

.strengths__title {
	margin-bottom: 20px;
}

.strengths__content {
	backdrop-filter: blur(10px);
	background: rgb(255 255 255 / 18%);
	border-radius: 15px;
	display: flex;
	gap: 40px;
	padding: 55px 38px;
}

.strengths__left,
.strengths__right {
	flex: 1;
}

.strengths__left {
	text-align: center;
}

.strengths__left-title {
	color: var(--hd-color);
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

.strengths__left-title .larger {
	font-size: 30px;
	font-weight: inherit;
	letter-spacing: .05em;
}

.strengths__images {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 20px;
}

.strengths__image {
	border-radius: 6px;
	object-fit: cover;
	width: 100%;
}

.strengths__caption {
	color: var(--hd-color);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 1.7;
}

.strengths__right-title {
	color: var(--hd-color);
	font-size: clamp(18px, 5vw, 24px);
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: 30px;
}

.strengths__right-text {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
}



.strengths__right-bold {
	color: var(--hd-color);
	font-weight: 700;
}

.strengths__right-accent {
	color: #d54c6d;
	font-weight: 700;
}


@media screen and (width <=768px) {
	.strengths__content {
		flex-direction: column;
	}

	.strengths__images {
		flex-direction: column;
	}
}



.strengths-more {
	padding: 80px 0 140px;
}

.strengths-more__columns {
	align-items: center;
	display: flex;
	gap: 120px;
	justify-content: space-between;
	margin-bottom: 80px;
}

.strengths-more__item {
	flex: 1;
	text-align: center;
}

.strengths-more__label {
	color: var(--dark-green);
	font-size: clamp(18px, 4vw, 24px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 8px;
}

.strengths-more__heading {
	color: var(--hd-color);
	font-size: clamp(24px, 5vw, 33px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 1.2em;

}

.strengths-more__desc {
	font-size: 16px;
	line-height: 1.8;
}

.strengths-more__plus {
	color: var(--main-color);
	flex-shrink: 0;
	font-family: var(--main-font);
	font-size: 133px;
	font-weight: 100;
}

.strengths-more__box {
	background: rgb(255 255 255 / 75%);
	border: 1px solid var(--main-color);
	border-radius: 15px;
	margin: 0 auto;
	max-width: 760px;
	padding: 35px 65px 40px;
	position: relative;
	text-align: center;
}

.strengths-more__box::before {
	background: var(--main-color);
	content: '';
	height: 6px;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 605px;
}

.strengths-more__box-en {
	color: var(--main-color);
	font-family: var(--main-font);
	font-size: clamp(18px, 3vw, 24px);
	font-weight: 500;
	letter-spacing: 5%;
	margin-bottom: 12px;
}

.strengths-more__box-catch {
	color: var(--hd-color);
	font-size: clamp(22px, 3.5vw, 29px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 28px;
}

.strengths-more__box-text {
	font-size: 16px;
	line-height: 1.8;
}

@media (width <=768px) {
	.strengths-more {
		padding: 60px 0 80px;
	}

	.strengths-more__columns {
		flex-direction: column;
		gap: 24px;
	}

	.strengths-more__plus {
		font-size: 32px;
	}

	.strengths-more__box {
		padding: 20px;
	}

	.strengths-more__box::before {
		width: 80%;
	}
}



/* msg
==================================================== */

.msg {
	padding: 78px 0 56px;
}

.msg__container {
	max-width: var(--max-width-ss);
	text-align: center;
}

.msg__copy {
	color: var(--hd-color);
	font-family: var(--serif-font);
	font-size: clamp(24px, 4vw, 33px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 48px;
}

.msg__text {
	color: var(--hd-color);
	font-size: clamp(16px, 2.8vw, 18px);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.8;
}

.msg__text a {
	text-decoration: underline;
}



/* price
==================================================== */

.price {
	background: var(--light-gray);
	padding: 55px 0 25px;
	text-align: center;
}

.price__container {
	max-width: var(--max-width-s);
}

.price__header {
	margin-bottom: 60px;
}

.price__label {
	color: var(--hd-color);
	font-family: var(--main-font);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: -6px;
}

.price__title {
	margin: 10px 0;
}

.price__lead {
	font-size: 16px;
}

.price__main {
	margin-top: 40px;
}

.price__box {
	background: var(--white);
	border: 1px solid #EDFF47;
	border-radius: 20px;
	margin: 0 auto;
	margin-bottom: 95px;
	max-width: 620px;
	padding: 35px 60px;
	position: relative
}

.price__bubble {
	background: #EDFF47;
	border-radius: 50%;
	height: 70px;
	left: 92px;
	padding: 0;
	position: absolute;
	top: -20px;
	transform: rotate(-26deg);
	width: 70px;
}

.price__bubble::before {
	border: 7px solid transparent;
	border-top: 10px solid #EDFF47;
	content: "";
	left: 74%;
	position: absolute;
	top: 95%;
	transform: translateX(-50%) rotate(-24deg);
}

.price__bubble-text {
	color: var(--dark-green);
	font-size: 11px;
	font-weight: 700;
	left: 50%;
	line-height: 1.35;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.price__bubble-text span {
	color: inherit;
	font-family: var(--main-font);
	font-size: 18px;
	font-weight: 900;
	letter-spacing: .05em;
	line-height: 1;
}

.price__text {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .05em;
	margin-bottom: 6px;
}

.price__catch {
	color: var(--dark-green);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .05em;
}

.price__catch .marker {
	display: block;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: 24px;
}

.price__row {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 20px;
}

.price__tag {
	background: var(--main-color);
	border-radius: 100vh;
	display: grid;
	font-size: 13px;
	font-weight: 700;
	height: 22px;
	letter-spacing: 0.05em;
	place-items: center;
	width: 90px;
}

.price__value {
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .05em;
	overflow-wrap: break-word;
	word-break: keep-all;
}

.price__value span {
	font-size: 33px;
	font-weight: inherit;
	letter-spacing: 0.05em;
}

.price__note {
	background: var(--light-gray);
	border-radius: 14px;
	padding: 15px;
}

.price__note-text {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 1.7;
}

.price__subtitle {
	color: var(--dark-green);
	font-size: clamp(22px, 3.5vw, 30px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 7px;
}

.price__sublead {
	margin-bottom: 48px;
}

.price__options {
	display: flex;
	gap: 20px;
	margin-bottom: 65px;
}

.price__option {
	background: #fff;
	border-radius: 20px;
	flex: 1;
	padding: 35px;
	position: relative;
}

.price__option-label {
	background: var(--hd-color);
	border-radius: 100vh;
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
	left: 50%;
	letter-spacing: .05em;
	line-height: 1.75;
	padding: 5px 30px;
	position: absolute;
	top: -18px;
	transform: translateX(-50%);
}

.price__option-copy {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .05em;
	margin-bottom: 8px;
}

.price__option-title {
	color: var(--dark-green);
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 18px;
}

.price__list {
	margin: 0 auto;
	padding-left: 14px;
	width: fit-content;
}

.price__list li {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .05em;
	text-align: left;
}

.price__message {
	color: var(--dark-green);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 8px;
	text-shadow: 0 3px 0 var(--main-color);
}

.price__message span {
	font-size: 38px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 0.8;
}

.price__desc {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .05em;
	margin-bottom: 25px;
}

.price__image img {
	margin: 0 auto 8px;
}

.price__caution {
	color: var(--dark-green);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .05em;
}

@media (width <=768px) {
	.price__label {
		font-size: 16px;
	}

	.price__box {
		margin-bottom: 60px;
		padding: 35px;
	}

	.price__bubble {
		left: 0;
		top: -30px;
	}

	.price__options {
		flex-direction: column;
		gap: 50px;
	}

	.price__option-label {
		width: 90%;
	}

	.price__option-title {
		font-size: 20px;
	}
}



/* 講師紹介
==================================================== */

.instructors {
	border-left: 16px solid var(--hd-color);
	padding: 0 0 25px 80px;
}

.instructors__inner {
	align-items: flex-end;
	display: flex;
	gap: 120px;
}

.instructors__left {
	flex: 0 0 40%;
	margin-bottom: 110px;
	max-width: 385px;
}

.instructors__label {
	margin-bottom: 20px;
}


.instructors__lead {
	color: #555;
	font-size: clamp(18px, 3vw, 20px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 8px;
}

.instructors__title {
	color: var(--hd-color);
	font-size: clamp(24px, 5vw, 33px);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.45;
	margin-bottom: 35px;
}

.instructors__text {
	color: #555;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}

.instructors__right {
	display: flex;
	overflow-x: auto;
	padding: 36px;
}

.instructors__list {
	display: flex;
	gap: 30px;
}

.instructor-card {
	flex: 0 0 430px;
	position: relative;
}

.instructor-card__img {
	height: auto;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 180px;
}

.instructor-card__inner {
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 0 36px 0 #0000001A;
	color: var(--hd-color);
	margin-top: 94px;
	padding: 100px 35px 65px;
	text-align: center;
}

.instructor-card__name {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 12px;
}

.instructor-card__license {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .05em;
}

.instructor-card__role {
	color: var(--text-color);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: 38px;
}

.instructor-card__catch {
	color: var(--dark-green);
	font-family: var(--serif-font);
	font-size: clamp(16px, 3vw, 19px);
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 16px;
}

.instructor-card__desc {
	color: #555;
	font-size: clamp(14px, 2.5vw, 16px);
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
	margin: auto;
	max-width: 332px;
	text-align: justify;
}

@media (width <=768px) {
	.instructors {
		padding-bottom: 0;
		padding-left: 0;
	}

	.instructors__inner {
		flex-direction: column;
		gap: 30px;
		margin: 0 auto;
		width: 90%;
	}

	.instructors__left {
		margin-bottom: 0;
	}

	.instructors__right {
		padding: 25px;
	}

	.instructor-card {
		flex: 0 0 300px;
	}

	.instructor-card__img {
		width: 120px;
	}

	.instructor-card__inner {
		margin-top: 30px;
		padding: 100px 25px 30px;
	}

	.instructor-card__role {
		margin-bottom: 20px;
	}
}


.round-tag {
	background: var(--main-color);
	border-radius: 100vh;
	color: var(--white);
	font-size: inherit;
	font-weight: 400;
	letter-spacing: 0.11em;
	padding: 0.4em 1.6em;
	white-space: nowrap;
	width: fit-content;
}


/* floatのなごり 不要 */
.slick-track::before,
.slick-track::after {
	content: none !important;
	display: none !important;
}

/*  矢印 */
.prev-arrow, .next-arrow {
	cursor: pointer;
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	z-index: 100;
}

.prev-arrow {
	left: -100px;
}

.next-arrow {
	right: -100px;
}


@media (width <=768px) {
	.prev-arrow, .next-arrow {
		display: none !important;
	}

	.slick-track {
		gap: unset;
	}
}


/* movie
==================================================== */
.movie {
	padding: 60px 0 0;
}

.movie__container {
	max-width: 760px;
}

.movie__header {
	margin-bottom: 40px;
}

.movie__video {
	margin-bottom: 70px;
}

.movie__video iframe {
	aspect-ratio: 760 / 428;
	border-radius: 20px;
	width: 100%;
}

/* sns
==================================================== */

.sns {
	text-align: center;
}

.sns__container {
	max-width: var(--max-width-ss);
}

.sns__title {
	color: var(--dark-green);
	font-family: var(--main-font);
	font-size: clamp(22px, 3.5vw, 30px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 8px;
}

.sns__lead {
	margin-bottom: 40px;
}

.sns__list {
	display: flex;
	gap: 40px;
	justify-content: center;
}

/* grid-template-rows: auto; にしておかないとロゴ周囲の余白が確保できなくなる */
.sns__item {
	align-items: center;
	border: 1px solid #D9D9D9;
	border-radius: 20px;
	display: grid;
	grid-template-rows: auto;
	height: 184px;
	max-width: 184px;
	padding: 20px 25px;
	text-align: center;
	width: 184px;
}

.sns__item-title {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .04em;

}

/* ロゴのセーフスペースのための囲み 余白サイズはロゴの大きさにより再検討が必要 */
.sns__logo-wrap {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 84px;
	padding: 21px;
}

/* Threads, note余白 */
.sns__item:nth-of-type(3) .sns__logo-wrap,
.sns__item:nth-of-type(4) .sns__logo-wrap {
	padding: 0;
}

.sns__item-logo {
	max-height: 84px;
	width: 100%;
}

.sns__item-logo--instagram {
	margin: 0 auto;
	width: 42px;
}

.sns__item-logo--note {
	width: auto;
}

.sns__item-logo--x {
	width: 36px;
}

.sns__item-logo--threads {
	width: 57px;
}

.sns__item-btn {
	font-family: var(--main-font);
	font-size: 12px;
	font-weight: 400;
	height: 32px;
	letter-spacing: .04em;
	width: 137px;
}

.sns__item-btn.dark-btn::after {
	font-size: 11px;
	right: 12px;
}

@media (width <=768px) {
	.sns__list {
		display: grid;
		gap: 10px;
		grid-template-columns: 1fr 1fr;
	}

	.sns__item {
		max-width: unset;
		padding: 15px;
		width: auto;
	}

	.sns__item-btn {
		width: 100%;
	}
}

@media (width >=769px) and (width <=1024px) {
	.sns__list {
		flex-wrap: wrap;
	}
}

.msg-second {
	padding: 110px 0 0;
}

.msg-second p {
	color: var(--hd-color);
	font-family: var(--serif-font);
	font-size: 31px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 2;
	text-align: center;
}

@media (width <=768px) {
	.msg-second {
		padding: 80px 0 0;
	}

	.msg-second p {
		font-size: 20px;
	}
}

/* tel
==================================================== */

.tel {
	color: var(--hd-color);
}

.tel__text {
	color: inherit;
	font-size: clamp(16px, 2.8vw, 18px);
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	text-align: center;
}

.tel__label {
	background: var(--hd-color);
	border: 1px solid currentcolor;
	color: var(--white);
	display: grid;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.35;
	max-height: 80px;
	padding: 20px 16px;
	place-items: center;
}

.tel__content {
	color: inherit;
	display: flex;
	gap: 26px;
	justify-content: center;
}

.tel__info {
	text-align: left;
}

.tel__business-hours {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.35;
}

.tel__number {
	color: currentcolor;
	font-size: 65px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

@media (width <=768px) {
	.tel__label {
		padding: .5em;
		width: 16em;
	}

	.tel__business-hours {
		font-size: 12px;
		margin-bottom: 6px;
	}

	.tel__number {
		font-size: 24px;
	}


}



/* contact
==================================================== */
.contact {
	padding-bottom: 60px;
	padding-top: 90px;
	text-align: center;
}

.contact__container {
	max-width: 1140px;
}

.contact__header {
	margin-bottom: 25px;
}

.contact__tel-block {
	margin-bottom: 90px;
}

.contact__copy {
	color: var(--main-color);
	font-family: var(--serif-font);
	font-size: 31px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 2;
	margin-bottom: 90px;
}




@media (width <=768px) {
	.contact__tel-block {
		margin-bottom: 40px;
	}
}

/* footer
==================================================== */

.site-footer {
	background: var(--hd-color);
	color: var(--white);
	padding: 42px 0 100px;
	text-align: center;
}

.site-footer__container {
	max-width: var(--max-width-s);
}

.site-footer__inner {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
	padding-left: 16px;
	padding-right: 42px;
}

.site-footer__tel .tel {
	color: var(--white);
}

.site-footer__tel .tel__text {
	display: none;
}


.site-footer__image {
	width: clamp(100px, 12vw, 145px);
}

.site-footer__logo-text {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.45;
}

.site-footer__copyright {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.45;
}

.footer-nav {
	margin-bottom: 20px;
}


.footer-menu {
	display: flex;
	justify-content: center;
	list-style: none;
}

.footer-menu li {
	border-right: 1px solid var(--white);
	display: grid;
	max-height: 16px;
	padding: 0 1em;
	place-items: center;
}

.footer-menu li:last-of-type {
	border-right: none;
}

.footer-menu__item {
	color: inherit;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
}


@media (width <=960px) {
	.footer-nav {
		margin-bottom: 30px;
	}

	.footer-menu__item {
		font-size: 12px;
	}

	.site-footer__inner {
		align-items: center;
		flex-direction: column;
		gap: 30px;
		padding: 0;
	}

	.site-footer__image {
		width: 130px;
	}

	.site-footer__copyright {
		font-weight: 300;
		padding: 0;
	}

}

@media (width <=768px) {
	.footer-menu {
		display: grid;
		gap: 20px;
		grid-template-columns: 1fr 1fr;
		margin-top: 0;
		place-items: flex-start;
	}

	.footer-menu li {
		border-right: 0;
	}
}




/* 固定ページ
==================================================== */

body.page, body.error404 {
	background-image: url("images/sub-hdbg.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: auto 360px;
}

/* ページヘッダー */

.page-header {
	padding-top: calc(var(--header-height) + 60px);
	text-align: center;
}

.page-header__title {
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.6;
	margin-bottom: 180px;
}

.page-header__title span {
	display: block;
	font-size: 14px;
	letter-spacing: .04em;
}


.page-article {
	padding-bottom: 80px;
}



.page__title {
	color: var(--main-color);
	font-size: 32px;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-align: center;
}

.page__title::before {
	color: var(--main-color);
	content: attr(data-en);
	font-family: var(--english-font);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 21px;
	text-align: center;
}

.page__header.section-header {
	margin-bottom: 125px;
}

.page__section {
	padding-top: 30px;
	position: relative;
}


@media (width <=1024px) {
	.page-header img {
		height: 300px;
	}
}

.page-record__container {
	margin-bottom: 120px;
	max-width: var(--max-w);
	width: 90%;
}

/* page-contact
==================================================== */

.page-contact__tel-block {
	margin-bottom: 75px;
}

@media (width <=768px) {
	.page-contact__tel-block {
		margin-bottom: 40px;
	}
}

/* === 問合せステップ === */

.step {
	margin: 0 auto 28px;
	position: relative;
	width: fit-content;
}

.step__line {
	border-top: 1px solid var(--dark-gray);
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 0;
}

.step__list {
	display: flex;
	gap: 50px;
	justify-content: center;
	list-style: none;
	margin-bottom: 90px;
	position: relative;
}

.step__list-item {
	align-items: center;
	background-color: #E6E6E6;
	border-radius: 50%;
	color: var(--dark-gray);
	display: flex;
	font-size: 16px;
	font-weight: 700;
	height: 106px;
	justify-content: center;
	letter-spacing: 1em;
	text-align: center;
	width: 106px;
}

.step__list-item.current {
	background: var(--hd-color);
	color: var(--white);
}

.step__list-item span:last-of-type {
	font-weight: inherit;
	letter-spacing: 0;
}



/* === フォーム === */

.form {
	background-color: #fff;
	border-radius: 30px;
	box-shadow: 0 0 40px 0 #0000001A;
	color: var(--hd-color);
	margin: 0 auto;
	padding: 50px 90px 70px 50px;
	position: relative;
}

.form select, input[type="checkbox"], input[type="radio"] {
	appearance: none;
}

.form__text {
	color: currentcolor;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .22em;
	margin-bottom: 30px;
	text-align: center;
}


.mwform-checkbox-field.horizontal-item {
	flex: 1;
	padding-left: 14px;
	text-align: left;
	white-space: nowrap;
}

.mw_wp_form {
	color: var(--hd-color);
}

/* 通常エラー */
.mw_wp_form .error {
	display: inline;
	font-size: 12px !important;
	letter-spacing: 0.1em;
	text-align: left;
	width: 100%;
}

.select-wrapper .error {
	left: 0;
}

.form__group .error {
	display: block;
	padding-top: 1em;
}


/* checked */

.form__inner--type .mwform-checkbox-field.horizontal-item {
	align-items: center;
	border: 1px solid var(--light-gray);
	border-radius: 15px;
	display: flex;
	height: 60px;
	justify-content: flex-start;
	padding: 20px;
	width: fit-content;
}

.form__inner--type .mwform-checkbox-field.horizontal-item:has(input:checked) {
	background-color: var(--hd-color);
	color: var(--white);
	transition: background-color 0.3s;
}

.form__inner--type .mwform-checkbox-field.horizontal-item:has(input:checked) .mwform-checkbox-field-text::before {
	background-color: var(--white);
}


.mw_wp_form .horizontal-item+.horizontal-item {
	margin-left: 35px !important;
}


.form__confirm-btns {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.form__btn {
	background-color: var(--hd-color);
	border: none;
	border-radius: 100vh;
	color: #fff;
	display: block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1;
	margin: 0 auto;
	padding: 32px 2em;
	text-align: center;
	width: 405px;
}

.form__btn--back, .form__btn--confirm {
	margin: 0;
}

.form__btn--back {
	background: #fff;
	border: 2px solid currentcolor;
	color: var(--sub-color);
}

.mwform-checkbox-field-text {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .22em;
}

/* チェックボックス本体は非表示に */
.form input[type="checkbox"] {
	height: 0;
	margin: 0;
	opacity: 0;
	padding: 0;
	width: 0;
}

/* ラベル内のspanをチェックボックスの見た目にする */
.mwform-checkbox-field span.mwform-checkbox-field-text {
	align-items: center;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	height: 22px;
	padding-left: calc(22px + 19px);
	position: relative;
	user-select: none;
}

/* 疑似チェックボックスの枠 */
.mwform-checkbox-field span.mwform-checkbox-field-text::before {
	background-color: #FFB6B6;
	border-radius: 3px;
	content: "";
	height: 22px;
	left: 0;
	position: absolute;
	top: 0;
	width: 22px;
}

.form__inner--type .mwform-checkbox-field span.mwform-checkbox-field-text {
	font-size: 16px;
	font-weight: 350;
	letter-spacing: 0.22em;
}

.form__inner--type .mwform-checkbox-field span.mwform-checkbox-field-text::before {
	background-color: #e6e6e6;
}

/* === プライバシーポリシー === */

.form__privacy-policy .mwform-checkbox-field span.mwform-checkbox-field-text {
	color: #E95377;
}

.privacy-box {
	border: 1px solid var(--dark-gray);
	border-radius: 15px;
	color: #555;
	height: 235px;
	margin-top: 20px;
	padding: 24px 8px 24px 40px;
	width: auto;
}

.privacy-box__inner {
	height: 100%;
	overflow-y: scroll;
	padding-right: 30px;
}

/* Webkit系ブラウザのカスタムスクロールバー */
@supports selector(::-webkit-scrollbar) {
	.privacy-box__inner::-webkit-scrollbar {
		height: 8px;
		width: 8px;
	}

	.privacy-box__inner::-webkit-scrollbar-thumb {
		background: var(--text-color);
	}
}

/* Firefox専用のスクロールバー */
@supports not selector(::-webkit-scrollbar) {
	.privacy-box__inner {
		scrollbar-color: var(--text-color) #fff;
		scrollbar-width: thin;
	}
}


.privacy-box h3 {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.5;
	margin-bottom: 10px;
	text-align: center;
}

.privacy-box p {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .22em;
	line-height: 1.5;
	margin-bottom: 1em;
}

.privacy-box .address {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.5;
	margin-bottom: 12px;
	text-align: right;
}

/* チェック時のマーク */
.mwform-checkbox-field input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
	border: solid var(--hd-color);
	border-width: 0 3px 3px 0;
	content: "";
	height: 10px;
	left: 8px;
	position: absolute;
	top: 4px;
	transform: rotate(45deg);
	width: 6px;
}

/* form - privacy-policy */

.form__privacy-policy input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
	border: solid var(--white);
	border-width: 0 3px 3px 0;
}



.form__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
	width: 100%;
}

.full-width {
	column-gap: 20px;
	width: 100% !important;
}


.form__label {
	align-items: flex-start;
	display: inline-flex;
	gap: 20px;
	width: calc((100% - 40px) / 2);
}

.form__label--check {
	align-items: center;
	width: 100%;
}


.form__label--long {
	align-items: flex-start;
	margin-bottom: 40px;
	width: 100%;
}

/* チェックボックス部の特別対応 */
.form__check-wrapper {
	display: flex;
	gap: 20px;
	margin-bottom: 65px;
}

.form__label input, .form__label select {
	background: var(--input-bg-color);
	border: none;
	border-radius: 15px;
	color: var(--text-color);
	flex: 1;
	font-weight: 400;
	padding: 1em;
	width: 100%;
}

.form__label select {
	appearance: none;
	cursor: pointer;
}

.form__label textarea {
	background: var(--input-bg-color);
	border: none;
	border-radius: 15px;
	color: var(--text-color);
	flex: 1;
	font-weight: 400;
	padding: 1em;
	width: 100%;
}

.form__label input::placeholder, .form__label textarea::placeholder, .form__label select {
	color: var(--dark-gray);
	font-size: 16px;
	font-weight: 350;
	letter-spacing: .22em;
}

.select-wrapper {
	flex: 1;
	max-height: 80px;
	position: relative;
	width: 100%;
}

.select-wrapper::after {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 8px solid var(--dark-gray);
	content: "";
	height: 0;
	pointer-events: none;
	position: absolute;
	right: 1.25em;
	top: 26px;
	width: 0;
}

.mw_wp_form_confirm .select-wrapper {
	color: #9FA0A0;
	font-size: 16px;
	font-weight: 350;
	letter-spacing: 0.22em;
	padding-left: 13px;
}

.mw_wp_form_confirm .form__inner {
	margin-bottom: 65px;
}


.form__label-title, .form__check-wrapper .form__label {
	display: inline-block;
	flex: 0;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .22em;
	min-width: 125px;
	text-align: right;
}

/* 問合せ種別 */

.form__contact-type .form__type-check-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}

/* エラーメッセージを一段下に表示 */
.form__contact-type .form__type-check-wrapper .error {
	display: block;
	padding-top: 5px;
	width: 100%;
}

.mw_wp_form_confirm .form__contact-type {
	align-items: center;
}




.form__small-title {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

/*  「必須」など */
.form__label-note {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .22em;
	padding-top: 6px;
}

.form__group {
	flex: 1;
	text-align: left;
}




.form__small-text {
	font-size: 10px;
	font-weight: 700;
}

/* これで囲まないとレイアウト崩れる */
.form__label-content {
	flex: 1;
	max-height: 90px;
	width: 100%;
}


/*  日付選択 */

.form__label-content.form__label-content--date {
	flex: none;
	margin-bottom: 30px;
}

.form__label-content--date span {
	display: block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.22em;
	line-height: 116%;
	margin-bottom: 12px;
	text-align: left;
}


/* align-items for error text */
.form__date {
	align-items: center;
	display: flex;
	gap: 35px;
}

/* 入れないとエラー画面で狭くなる */
.form__date input, .form__date select {
	letter-spacing: 0.22em;
	min-width: 295px;
	width: 295px;
}

.form__date .select-wrapper {
	flex: 0;
}

/* calendar mark */

.form__date-box {
	letter-spacing: inherit;
	position: relative;
	width: 295px;
}

.form__date-box::after {
	color: var(--hd-color);
	content: '\f073';
	font-family: var(--font-awesome);
	font-size: 21px;
	font-weight: 900;
	pointer-events: none;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.mw_wp_form_confirm .form__date .select-wrapper {
	flex: auto;
}


/* アンケート */


.form__survey-item {
	border-top: 1px solid var(--light-gray);
	padding: 25px 0;
}

.form__survey-item:last-of-type {
	border-bottom: 1px solid var(--light-gray);

}

/* 1．学習ペースについて etc */
.form__survey-label {
	display: block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .22em;
	margin-bottom: 16px;
	text-align: left;
}

/* options */
.form__survey .mwform-checkbox-field-text {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .22em;
}

.form__survey-check {
	display: flex;
	gap: 45px;
}

.form__survey-check .mwform-checkbox-field.horizontal-item {
	flex: 0;
	margin-bottom: 0;
	margin-left: 0 !important;
	padding-left: 0;
}

.form__survey-check .mwform-checkbox-field-text {
	margin-bottom: 0;
}

/* checkbox */
.form__survey .mwform-checkbox-field span.mwform-checkbox-field-text::before {
	background-color: var(--light-gray);
}

/* checkmark */
.form__survey .mwform-checkbox-field input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
	border-color: currentcolor;
}

@media (width <=1000px) {
	.mw_wp_form .horizontal-item+.horizontal-item {
		margin-left: 0 !important;
	}

	.form__date {
		flex-direction: column;
	}

	.form__date-box {
		width: 100%;
	}

	.form__survey {
		width: 100%;
	}

	.form__survey-check {
		flex-direction: column;
		gap: 10px;
	}
}


.form__label--long .form__label-content {
	max-height: none;
}




.mw_wp_form .error:nth-of-type(3) {
	bottom: -3.5em !important;
	color: blue !important;
}



@media (width <=1024px) {
	.form__type-check-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	.form__type-check-wrapper .error {
		padding-top: 0;
	}
}

/* === 確認画面 === */

.mw_wp_form_confirm .form__label {
	align-items: center;
	gap: 38px;
}

.mw_wp_form_confirm .form__label-content {
	color: #9FA0A0;
	font-size: 16px;
	font-weight: 350;
	letter-spacing: 0.22em;
	overflow-wrap: break-word;
}

.mw_wp_form_confirm .form__label-title {
	margin-top: 0;
}

.mw_wp_form_confirm .select-wrapper::after,
.mw_wp_form_confirm .privacy-box {
	display: none;
}

.mw_wp_form_confirm .form__label--long {
	align-items: center;
}

/* confirm - privacy */

.mw_wp_form_confirm .form__group {
	color: #9FA0A0;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.22em;
}

.mw_wp_form_confirm .form__check-wrapper {
	align-items: flex-start;
}

.mw_wp_form_confirm .full-width .form__label {
	align-items: flex-start;
	width: 100%;
}

/* type */

.mw_wp_form_confirm .form__type-check-wrapper {
	color: #9FA0A0;
	font-size: 16px;
	font-weight: 350;
	gap: 0;
	letter-spacing: 0.22em;
	padding-left: 13px;
}


/* date */

/* 【第1希望】など */
.mw_wp_form_confirm .form__label-content--date span {
	color: var(--hd-color);
	margin-bottom: 25px;
}

.mw_wp_form_confirm .form__date {
	color: #9FA0A0;
	font-size: 16px;
	font-weight: 350;
	letter-spacing: 0.22em;
	padding-left: 13px;
}

.mw_wp_form_confirm .form__date-box {
	width: 400px;
}

/* survey */

.mw_wp_form_confirm .form__survey {
	width: 100%;
}

.mw_wp_form_confirm .form__survey-check {
	color: #9FA0A0;
	font-size: 16px;
	font-weight: 350;
	gap: 0;
	letter-spacing: 0.22em;
}

/* confirm - checkmark */
.mw_wp_form_confirm .form__group::before,
.mw_wp_form_confirm .form__type-check-wrapper::before,
.mw_wp_form_confirm .form__survey-check::before {
	color: var(--hd-color);
	content: '\f00c';
	font-family: var(--font-awesome);
	font-weight: 900;
	margin-right: 16px;
}

@media (width <=1024px) {
	.form {
		padding: 50px 20px;
	}

	.step__list {
		gap: 20px;
		margin-bottom: 30px;
	}

	.step__list-item {
		height: 80px;
		width: 80px;
	}

	.form__inner {
		gap: 1.5em;
	}

	.form__label, .form__check-wrapper {
		align-items: flex-start;
		flex-direction: column;
		gap: .5em;
		width: 100%;
	}

	.form__label--long {
		margin-bottom: 1.5em;
	}

	.form__label-title, .form__check-wrapper .form__label {
		font-size: 16px;
		margin-bottom: 0;
		text-align: left;
		width: auto;
	}

	.lower {
		padding-top: 0;
	}

	.form__label input, .form__label select {
		border-radius: 10px;
		width: 100%;
	}

	.form__btn {
		width: 100%;
	}

	.mwform-checkbox-field.horizontal-item {
		padding-left: 0;
	}

	.form__label-content--date {
		flex: none;
		margin-bottom: 30px;
		max-height: unset;
	}

	.privacy-box {
		border-radius: 20px;
	}

	.mw_wp_form .error {
		left: 0;
	}

	.mw_wp_form_confirm .form__date {
		align-items: flex-start;
		gap: 10px;
	}

	/* === 確認画面 === */
	.mw_wp_form_confirm .form__label--long {
		align-items: flex-start;
	}

	.mw_wp_form_confirm .form__label {
		align-items: flex-start;
		gap: 10px;
	}

	.form__confirm-btns {
		flex-direction: column;
	}

	.mw_wp_form_confirm .form__survey-check,
	.mw_wp_form_confirm .form__type-check-wrapper {
		flex-direction: row;
		flex-wrap: unset;
	}

	.mw_wp_form_confirm .form__date-box {
		width: 100%;
	}

	.mw_wp_form_confirm .form__date .select-wrapper {
		padding-left: 0;
	}
}

/* 送信完了 */

.mw_wp_form_complete {
	color: var(--text-color);
	text-align: center;
}

/* 404
==================================================== */

.error-page__section {
	padding-top: 0;
}

.error-page__container {
	text-align: center;
}

.error-page__text {
	margin-bottom: 60px;
}

.error__btn {
	background: var(--hd-color);
}

/* 校舎のご案内
==================================================== */
.school-list {
	padding-bottom: 180px;
	padding-top: 60px;
}

.school-list__container {
	max-width: 1390px;
}

.schools {
	color: var(--hd-color);
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
}

.schools__item {
	border: 1px solid currentcolor;
	border-radius: 15px;
	max-width: 390px;
	padding: 30px 5px 20px 20px;
	width: calc(100% / 3 - 40px);
}

.schools__name-en {
	color: var(--main-color);
	display: block;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-align: center;
}

.schools__name {
	display: block;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
	text-align: center;

}

.schools__content {
	display: flex;
	gap: 20px;
	justify-content: flex-start;
}

.schools__cord a {
	color: inherit;
	display: block;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 2px;
	text-align: center;
	text-decoration-line: underline;
}

.schools__cord a i {
	font-size: 13px;
	margin-right: 3px;
}

.schools__cord img {
	max-width: 108px;
}

.schools__address {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 8px;


}

.schools__text {
	color: inherit;
	display: block;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-decoration-line: underline;
}

.schools__icon {
	font-size: 13px;
	margin-right: 5px;
}

@media (width <=1024px) {
	.school-list {
		padding-bottom: 80px;
	}

	.schools {
		align-items: center;
		flex-direction: column;
		gap: 20px;
	}

	.schools__item {
		padding: 20px 15px;
		width: 100%;
	}

	.schools__content {
		flex-direction: column;
	}

	.schools__cord img {
		/* max-width: 90px; */
		display: none;
	}
}

.js-scrollable {
	overflow-x: auto;
}

.scroll-hint-icon-wrap {
	z-index: 80;

}

.swipe-hint {
	display: none;
}

@media (width <=768px) {
	.slider-wrapper {
		position: relative;
	}

	.swipe-hint {
		background: rgb(0 0 0 / 50%);
		border-radius: 6px;
		color: #fff;
		display: block;
		font-size: 13px;
		padding: 4px 8px;
		pointer-events: none;
		position: absolute;
		right: 10px;
		top: 10px;
		z-index: 999999999;
	}

}

@media (width <=768px) {
	.btn {
		width: 100%;
	}
}