@charset "utf-8";

/* =============================================
リセット
============================================= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

/* body {
    line-height: 1;
} */

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font: inherit;
	outline: none;
}

summary {
	display: block;
}

summary::-webkit-details-marker {
	display: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
input[type="date"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

/* =============================================
共通
============================================= */
* {
	box-sizing: border-box;
}

:root {
	--leading-trim: calc((1em - 1lh) / 2);
	--color-navy: #0f165b;
	--color-light-blue: #eff1f9;
	--color-yellow: #ffc344;
	--color-light-yellow: #fff0d1;
	--color-black-on-yellow: #46340d;
	--color-black: #333;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	color: var(--color-black);
	letter-spacing: .4px;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	background: var(--color-light-blue);
}

a {
	text-decoration: none;
}

p {
	line-height: 1.6;
}

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

.section {
	padding: 80px 0;
}

.section__inner {
	width: 90vw;
	max-width: 1080px;
	margin-inline: auto;
}

.section__heading {
	color: var(--color-navy);
	font-size: 39px;
	font-weight: 700;
	margin-bottom: 40px;
	margin-top: var(--leading-trim);
	line-height: 1.4;
	position: relative;
}

.section__heading::before {
	content: attr(data-heading);
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	color: rgba(15, 22, 91, 0.2);
	display: block;
	line-height: 1;
	z-index: 3;
	position: relative;
}

.section__heading::after {
	content: "";
	display: block;
	background: var(--color-navy);
	height: 1px;
	width: 100%;
	position: absolute;
	right: 0;
	top: 70px;
	z-index: 1;
}

.section__heading-inner {
	background: var(--color-light-blue);
	padding-right: 20px;
	z-index: 2;
	position: relative;
}

.section__small-heading {
	font-size: 25px;
	font-weight: 700;
	color: var(--color-navy);
	margin-top: 50px;
	margin-bottom: 40px;
	position: relative;
}

.section__small-heading::after {
	content: "";
	display: block;
	background: #b9bcd3;
	height: 1px;
	width: 100%;
	position: absolute;
	right: 0;
	top: 22px;
	z-index: 1;
}

.section__small-heading-inner {
	position: relative;
	z-index: 2;
	background: var(--color-light-blue);
	position: relative;
	padding-right: 20px;
}

.section__lead-text {
	margin-bottom: 20px;
}

.text--large {
	font-size: 1.4em !important;
}

.text--bold {
	font-weight: 700 !important;
}

.text--yellow {
	color: var(--color-yellow) !important;
}

.text--roboto {
	font-family: "Roboto", sans-serif !important;
	font-weight: 700 !important;
}

.text--note {
	font-size: .8em !important;
}

.text--center {
	text-align: center !important;
}

.button {
	cursor: pointer;
	font-weight: 700 !important;
	display: block;
	margin-inline: auto;
	padding: .6em 1em;
	width: fit-content;
}

.button--yellow {
	background: var(--color-yellow) !important;
	color: var(--color-black-on-yellow) !important;
}

.button--shadow {
	filter: drop-shadow(0px 3px 0px rgb(32 33 33 / 0.1));
}

.button--two-line {
	display: flex;
	flex-direction: column;
	gap: 6px;
	line-height: 1;
	align-items: center;
	justify-content: center;
}

.button__microcopy {
	font-size: .66em;
	opacity: 0.8;
}

.bg--navy {
	background: var(--color-navy) !important;
	color: #fff !important;
}

.bg--light-blue {
	background: var(--color-light-blue) !important;
}

.scroll-hint-wrapper {
	position: relative;
	overflow-x: auto;
	white-space: nowrap;
}

.table {
	border-collapse: collapse;
	width: 100%;
	line-height: 1.4;
}

.table--fixed {
	table-layout: fixed;
}

.table__header {
	font-weight: 700;
	vertical-align: middle;
}

.table__header,
.table__data {
	border: 1px solid #fff;
	padding: 10px;
}

.table__header--navy {
	background: var(--color-navy);
	color: #fff;
}

.table__header--yellow {
	background: var(--color-yellow);
	color: var(--color-black-on-yellow);
}

.table__data {
	background: #fff;
}

.table__data--light-yellow {
	background: var(--color-light-yellow);
}

.mt--0 {
	margin-top: 0px !important;
}

.mt--10 {
	margin-top: 10px !important;
}

.mt--20 {
	margin-top: 20px !important;
}

.mt--30 {
	margin-top: 30px !important;
}

.mt--40 {
	margin-top: 40px !important;
}

.mt--50 {
	margin-top: 50px !important;
}

.mt--60 {
	margin-top: 60px !important;
}

.mt--70 {
	margin-top: 70px !important;
}

.mt--80 {
	margin-top: 80px !important;
}

.mt--90 {
	margin-top: 90px !important;
}

.mt--100 {
	margin-top: 100px !important;
}

.mb--0 {
	margin-bottom: 0px !important;
}

.mb--10 {
	margin-bottom: 10px !important;
}

.mb--20 {
	margin-bottom: 20px !important;
}

.mb--30 {
	margin-bottom: 30px !important;
}

.mb--40 {
	margin-bottom: 40px !important;
}

.mb--50 {
	margin-bottom: 50px !important;
}

.mb--60 {
	margin-bottom: 60px !important;
}

.mb--70 {
	margin-bottom: 70px !important;
}

.mb--80 {
	margin-bottom: 80px !important;
}

.mb--90 {
	margin-bottom: 90px !important;
}

.mb--100 {
	margin-bottom: 100px !important;
}

.pt--0 {
	padding-top: 0px !important;
}

.pt--10 {
	padding-top: 10px !important;
}

.pt--20 {
	padding-top: 20px !important;
}

.pt--30 {
	padding-top: 30px !important;
}

.pt--40 {
	padding-top: 40px !important;
}

.pt--50 {
	padding-top: 50px !important;
}

.pt--60 {
	padding-top: 60px !important;
}

.pt--70 {
	padding-top: 70px !important;
}

.pt--80 {
	padding-top: 80px !important;
}

.pt--90 {
	padding-top: 90px !important;
}

.pt--100 {
	padding-top: 100px !important;
}

.pb--0 {
	padding-bottom: 0px !important;
}

.pb--10 {
	padding-bottom: 10px !important;
}

.pb--20 {
	padding-bottom: 20px !important;
}

.pb--30 {
	padding-bottom: 30px !important;
}

.pb--40 {
	padding-bottom: 40px !important;
}

.pb--50 {
	padding-bottom: 50px !important;
}

.pb--60 {
	padding-bottom: 60px !important;
}

.pb--70 {
	padding-bottom: 70px !important;
}

.pb--80 {
	padding-bottom: 80px !important;
}

.pb--90 {
	padding-bottom: 90px !important;
}

.pb--100 {
	padding-bottom: 100px !important;
}

.sp {
	display: none !important;
}

@media (max-width: 660px) {
	.sp {
		display: block !important;
	}

	.pc {
		display: none !important;
	}

	.section {
		padding: 30px 0;
	}

	.section__heading {
		font-size: 22px;
	}

	.section__heading::after {
		margin-top: 10px;
		position: static;
	}

	.section__small-heading {
		font-size: 20px;
		margin-top: 40px;
		margin-bottom: 20px;
	}

	.section__small-heading::after {
		top: 16px;
	}

	.table--fixed {
		table-layout: auto;
	}
}

/* =============================================
ヘッダー
============================================= */
.header {
	height: 60px;
	width: 100%;
	transition: .3s ease-in-out;
	z-index: 99998;
	position: fixed;
	top: 0;
	background: #fff;
}

.header--float {
	/* height: 60px; */
	/* background: #fff !important; */
}

.header__inner,
.header__list,
.header__inquiry-list {
	display: flex;
}

.header__inner {
	justify-content: space-between;
	align-items: center;
	height: 100%;
	width: 90%;
	margin: 0 auto;
}

.header__logo-wrapper {
	height: 100%;
	display: flex;
	align-items: center;
}

.header__logo {
	width: 120px;
}

/* .header__navi {
    display: none;
} */

/* .header--float .header__navi {
    display: block;
} */

.header__list-item {
	position: relative;
	display: flex;
	align-items: center;
}

.header__list-item:not(:last-child) {
	margin-right: 30px;
}

.header__link {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-black);
	text-decoration: none;
}

/* .header--float .header__link {
    color: var(--color-black);
} */

.header__cta {
	font-weight: 700 !important;
}

.header__hamburger-menu {
	width: 40px;
	height: 40px;
	position: relative;
	border: none;
	background: transparent;
	appearance: none;
	padding: 0;
	cursor: pointer;
	display: none;
	margin-right: -10px;
}

.header__hamburger-menu__bar {
	display: inline-block;
	width: 50%;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	/* transition: .5s; */
}

.header__hamburger-menu__bar:first-child {
	top: 12px;
}

.header__hamburger-menu__bar:nth-child(2) {
	top: 20px;
}

.header__hamburger-menu__bar:last-child {
	top: 28px;
}

.header__hamburger-menu--open .header__hamburger-menu__bar {
	top: 50%;
}

.header__hamburger-menu--open .header__hamburger-menu__bar:first-child {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.header__hamburger-menu--open .header__hamburger-menu__bar:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.header__hamburger-menu--open .header__hamburger-menu__bar:nth-child(2) {
	display: none;
}

@media (max-width: 1180px) {
	.header__inner {
		width: 96%;
	}

	.header__list-item:not(:last-child) {
		margin-right: 18px;
	}

	.header__link {
		font-size: 13px;
	}
}

@media (max-width: 1024px) {
	.header {
		height: 60px;
		transition: 0s;
	}

	.header__inner {
		padding: 0 30px;
		width: 100%;
	}

	.header__hamburger-menu {
		display: block;
		background: var(--color-navy);
	}

	.header__list {
		display: none;
		background: #fff;
		position: absolute;
		top: 58px;
		width: 100%;
		max-width: 310px;
		right: 0;
		z-index: 99998;
		overflow-y: scroll;
		max-height: calc(100vh - 60px);
	}

	.header__list--open {
		display: block;
	}

	.header__list-item {
		border-top: 1px dashed #ced3d3;
		position: relative;
	}

	.header__list-item:not(:has(.header__cta)):after {
		content: "";
		position: absolute;
		top: 50%;
		right: 30px;
		width: 6px;
		height: 6px;
		border-top: 2px solid;
		border-right: 2px solid;
		transform: rotate(45deg) translateY(-50%);
	}

	.header__list-item:not(:last-child) {
		margin-right: 0;
	}

	.header__link {
		font-size: 16px;
		padding: 20px 30px;
		width: 100%;
	}

	.header__cta {
		margin: 20px auto;
		width: calc(100% - 40px);
		max-width: 300px;
		height: auto;
	}

	.header__handling-display {
		display: inline;
	}
}

@media (max-width: 660px) {
	.header {
		border-bottom: solid 2px var(--color-navy);
		background: #fff !important;
	}

	.header__inner {
		padding: 0 30px;
		width: 100%;
	}
}

@media (max-width: 690px) {
	.header__inner {
		width: 90vw;
		padding: 0;
	}
}

@media (max-width: 540px) {
	.header__list {
		max-width: 100%;
	}
}

/* =============================================
ファーストビュー
============================================= */
.fv {
	background-color: var(--color-navy);
	background-image: url(../images/fv-bg-large.webp);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 140px 0 80px;
}

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

.fv__maincopy {
	font-size: 45px;
	color: #fff;
	font-weight: 900;
	margin-bottom: 40px;
}

.fv__maincopy-smalltext {
	color: #fff;
	font-size: .8em;
}

.text--with-dot {
	position: relative;
}

.text--with-dot::before {
	content: "・";
	position: absolute;
	top: -30px;
	line-height: 1;
	color: #fff;
	left: 50%;
	transform: translateX(-50%);
}

.fv__list {
	list-style: disc;
	padding-left: 26px;
	margin-bottom: 40px;
}

.fv__list-item {
	color: #fff;
	font-size: 25px;
}

.fv__list-item:not(:last-child) {
	margin-bottom: 20px;
}

.text--with-dashed-line {
	text-decoration: underline dashed var(--color-yellow) 2px;
	text-underline-offset: 8px;
}

.fv__lease {
	display: flex;
	flex-direction: column;
	margin-bottom: 50px;
}

.fv__lease-inner {
	width: fit-content;
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 10px;
}

.fv__lease-note {
	color: #fff;
	font-size: 10px;
	letter-spacing: .2px;
}

.fv__cta {
	background: var(--color-light-blue);
	padding: 14px;
	width: fit-content;
}

.fv__cta-button {
	font-size: 31px;
	min-width: 600px;
}

@media (max-width: 1600px) {
	.fv {
		background-image: url(../images/fv-bg.webp);
	}
}

@media (max-width: 1400px) {
	.fv {
		background-image: url(../images/fv-bg-small.webp);
	}
}

@media (max-width: 1290px) {
	.fv {
		padding: 100px 0 60px;
	}

	.fv__inner {
		max-width: 990px;
		padding-left: 20px;
	}

	.fv__maincopy {
		font-size: 39px;
		margin-bottom: 10px;
	}

	.fv__list {
		margin-bottom: 30px;
	}

	.fv__list-item {
		font-size: 20px;
	}

	.fv__list-item:not(:last-child) {
		margin-bottom: 16px;
	}

	.fv__lease-inner {
		gap: 10px;
	}

	.fv__cta-button {
		min-width: unset;
	}
}

@media (max-width: 660px) {
	.fv {
		background-image: none;
		padding: 80px 0 40px;
	}

	.fv__inner {
		padding: 0;
		width: 90vw;
		max-width: 420px;
	}

	.fv__image {
		display: block;
		margin: 0 auto 20px;
	}

	.fv__maincopy {
		font-size: 28px;
	}

	.text--with-dot::before {
		top: -14px;
	}

	.text--with-dashed-line {
		text-decoration: underline dashed var(--color-yellow) 1px;
		text-underline-offset: 6px;
	}

	.fv__list {
		padding-left: 18px;
		margin-bottom: 20px;
	}

	.fv__list-item {
		line-height: 1.7;
		font-size: 18px;
	}

	.fv__list-item:not(:last-child) {
		margin-bottom: 16px;
	}

	.fv__lease {
		margin-bottom: 30px;
		align-items: center;
		margin-inline: auto;
	}

	.fv__lease-image {
	}

	.fv__cta {
		width: 100%;
		padding: 10px;
	}

	.fv__cta-button {
		font-size: 18px;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.fv__maincopy {
		font-size: 25px;
	}

	.fv__list-item {
		font-size: 16px;
	}

	.fv__list-item:not(:last-child) {
		margin-bottom: 8px;
	}

	.fv__lease-image {
		width: 40%;
	}
}

/* =============================================
選ばれる理由
============================================= */

.reasons__box {
	display: flex;
	gap: 60px;
}

.reasons__box:not(:last-child) {
	margin-bottom: 60px;
}

.reasons__box:last-child {
	margin-bottom: 80px;
}

.reasons__box-text {
	padding-top: 50px;
	padding-left: 30px;
	position: relative;
}

.reasons__box-heading {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 16px;
}

.reasons__box-heading::before {
	font-size: 142px;
	content: attr(data-heading);
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	color: #0f165b;
	line-height: 1;
	opacity: 0.06;
	position: absolute;
	top: -16px;
	left: 0;
}

.reasons__box-figure {
	width: 100%;
	min-width: 420px;
}

.reasons__score-note {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 10px;
	max-width: 1080px;
	margin: -40px auto 60px;
	color: var(--color-navy);
	border: solid 1px var(--color-navy);
	font-weight: 700;
}

.reasons__score-note-image {
}

.reasons__user {
	background: var(--color-navy);
	padding: 80px 0;
}

.reasons__user-inner {
	width: 90vw;
	max-width: 880px;
	margin-inline: auto;
}

.reasons__user-heading {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

.reasons__descritpion {
	font-size: 20px;
	margin-bottom: 20px;
	font-family: 700;
	color: #fff;
}

.reasons__user-box {
	padding: 40px;
	background: var(--color-light-blue);
}

.reasons__user-box-heading {
	color: var(--color-navy);
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	margin-top: var(--leading-trim);
}

.reasons__user-box-heading-inner {
	background: var(--color-light-blue);
	padding-right: 14px;
	z-index: 2;
	position: relative;
}

.reasons__user-box-heading::after {
	content: "";
	display: block;
	background: var(--color-navy);
	height: 1px;
	width: 100%;
	position: absolute;
	right: 0;
	top: 16px;
	z-index: 1;
}

.reasons__user-box-list-item {
	background: var(--color-navy);
	color: #fff;
	font-size: 25px;
	font-weight: 700;
	padding: 4px 8px 4px 10px;
	line-height: 1.4;
	margin-top: var(--leading-trim);
	display: flex;
	gap: 10px;
	align-items: center;
	letter-spacing: 0;
	width: fit-content;
}

.reasons__user-box-list-item:not(:last-child) {
	margin-bottom: 20px;
}

.reasons__user-box-list-item::before {
	content: "";
	display: block;
	width: 18px;
	min-width: 18px;
	height: 18px;
	background-image: url(../images/icon-check.svg);
	background-repeat: no-repeat;
	background-size: 18px;
}

@media (max-width: 660px) {
	.reasons__box {
		flex-direction: column;
		gap: 20px;
	}

	.reasons__box:last-child {
		margin-bottom: 40px;
	}

	.reasons__box-text {
		padding-top: 10px;
		padding-left: 20px;
	}

	.reasons__box-heading {
		font-size: 22px;
	}

	.reasons__box-heading::before {
		font-size: 80px;
	}

	.reasons__box-figure {
		min-width: unset;
	}

	.reasons__box-image {
		width: 80%;
		margin-inline: auto;
		display: block;
	}

	.reasons__box--reverse .reasons__box-text {
		order: 1;
	}

	.reasons__box--reverse .reasons__box-figure {
		order: 2;
	}

	.reasons__score-note {
		width: 80%;
		font-size: 14px;
		line-height: 1.6;
	}

	.reasons__user {
		padding: 30px 0;
	}

	.reasons__user-heading {
		font-size: 22px;
		line-height: 1.7;
	}

	.reasons__descritpion {
		font-size: 16px;
	}

	.reasons__user-box {
		padding: 20px;
	}

	.reasons__user-box-list-item {
		font-size: 18px;
		padding: 8px 8px 8px 12px;
		width: 100%;
	}

	.reasons__user-box-list-item::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		background-size: 20px;
	}
}

/* =============================================
スライダー
============================================= */
.slider {
	position: relative;
}

.slick-dots.slick-dots {
	bottom: -50px;
}

.slick-dots.slick-dots li {
	margin: 0 1px;
}

.slider__arrow {
	background: var(--color-navy);
	width: 38px;
	height: 38px;
	border-radius: 99999px;
	position: absolute;
	bottom: -60px;
	z-index: 3;
	cursor: pointer;
}

.slider__arrow--prev {
	content: url(../images/slider-arrow-prev.svg);
}

.slider__arrow--next {
	content: url(../images/slider-arrow-next.svg);
}

.slider-item {
	background: #fff;
	padding: 20px;
	height: fit-content !important;
	margin: 0 15px;
}

.slider-item-upper {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.slider-item-upper-figure {
	border: solid 2px #f0f1fa;
	height: fit-content;
}

.slider-item-upper-label {
	background: var(--color-navy);
	color: #fff;
	padding: 4px 10px;
	font-weight: 700;
	width: fit-content;
	margin-bottom: 10px;
	line-height: 1.4;
}

.slider-item-upper-sublabel {
	font-size: 14px;
	font-size: 12px;
	margin-bottom: 2px;
	color: var(--color-navy);
}

.slider-item-upper-text {
	font-weight: 700;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.slider-item-upper-name {
	white-space: nowrap;
}

.slider-item-upper-name-separator {
	margin: 0px 10px;
	font-size: .8em;
	color: #b9bcd3;
	line-height: 1.4;
}

.slider-item-lower-heading {
	color: var(--color-navy);
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 20px;
}

.slider-item-lower-description {
	/* font-size: 14px; */
}

@media (max-width: 660px) {
	.slider-item-upper {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 10px;
	}

	.slider-item-upper-image {
		width: 100%;
	}

	.slider-item-upper-text {
		align-items: center;
	}
}

/* =============================================
受講生の声
============================================= */
.voices__slider .slider__arrow--prev {
	left: 420px;
}

.voices__slider.slider .slider__arrow--next {
	right: 420px;
}

@media (max-width: 1180px) {
	.voices__slider .slider__arrow--prev {
		left: -10px;
		top: 50%;
	}

	.voices__slider.slider .slider__arrow--next {
		right: -10px;
		top: 50%;
	}
}

/* =============================================
料金
============================================= */
.price__table-wrapper {
	margin-top: 60px;
}

.price__table-header {
	font-size: 20px;
	vertical-align: middle;
}

.table__label {
	background: var(--color-black);
	color: #fff;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 700;
	width: 70px;
	text-align: center;
}

.price__table-header--with-copy {
	position: relative;
}

.price__table-header--with-copy::before {
	content: "＼他社の半額程度の受講料／";
	position: absolute;
	top: -34px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.price__table-data {
	font-size: 20px;
	font-weight: 700;
}

.price__table-data-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 53%;
	white-space: nowrap;
	margin-inline: auto;
}

.price__table-data-inner:not(:last-child) {
	margin-bottom: 4px;
}

.price__table-tag-wrapper {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-bottom: 10px;
}

.price__table-tag {
	font-size: 12px;
	padding: .2em .6em;
	border-radius: 9999px;
}

.price__table-tag--yellow {
	background: var(--color-yellow);
	color: var(--color-black-on-yellow);
}

.price__table-tag--navy {
	background: var(--color-navy);
	color: #fff;
}

.price__price-box {
	background: #fff;
	padding: 16px;
	display: flex;
	gap: 10px;
}

.price__price-box:not(:last-child) {
	margin-bottom: 20px;
}

.price__price-box-inner {
	padding: 14px;
}

.price__price-box-inner-left,
.price__price-box-inner-right {
	max-width: 320px;
	width: 100%;
}

.price__price-box-inner-left {
	background: var(--color-light-blue);
	color: var(--color-navy);
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.price__price-box-inner-right {
	background: var(--color-navy);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
}

.price__price-box-inner-right .text--roboto {
	font-size: 25px;
}

.price__detail {
	display: flex;
	gap: 30px;
	margin-top: 30px;
}

.price__detail-box {
	background: #fff;
	padding: 20px;
	width: calc((100% - 30px) / 2);
}

.price__detail-box-heading {
	color: var(--color-navy);
	text-align: center;
	margin-bottom: 10px;
	font-weight: 700;
}

.price__detail-box-content {
	width: fit-content;
	max-width: 400px;
	padding: 6px 10px;
	font-weight: 700;
	margin-inline: auto;
}

.price__detail-box--refund .price__detail-box-content {
	line-height: 1.6;
	padding: 16px;
}

.price__detail-box-content .text--roboto {
	font-size: 20px;
}

.price__detail-box-list {
	margin-top: 10px;
	font-size: 10px;
}

.price__detail-box-list-item:not(:last-child) {
	margin-bottom: 4px;
}

@media (max-width: 660px) {
	.price__table-wrapper {
		margin-top: 20px;
	}

	.price__table-header {
		font-size: 14px;
	}

	.price__table-data {
		font-size: 18px;
	}

	.price__table-data-inner {
		width: 100%;
	}

	.price__table-header--with-copy {
		padding-top: 30px;
		font-size: 16px;
	}

	.price__table-header--with-copy::before {
		content: "＼他社の半額程度／";
		top: 14px;
		font-size: 14px;
	}

	.price__price-box {
		flex-direction: column;
	}

	.price__price-box-inner {
		padding: 10px;
	}

	.price__price-box-inner-left {
		font-size: 18px;
	}

	.price__price-box-inner-right {
		font-size: 18px;
	}

	.price__price-box-inner-right .text--roboto {
		font-size: 22px;
	}

	.price__detail {
		flex-direction: column;
		gap: 20px;
	}

	.price__detail-box {
		width: 100%;
	}

	.price__detail-box--refund .price__detail-box-content {
		padding: 10px;
	}
}

/* =============================================
プログラム内容
============================================= */
.program__coaching {
	display: flex;
	gap: 30px;
}

.program__coaching-box {
	background: #fff;
	padding: 20px;
	width: calc((100% - 30px) / 2);
}

.program__coaching-box-heading {
	text-align: center;
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 20px;
	color: var(--color-navy);
}

.program__coaching-box-inner {
	display: flex;
	gap: 20px;
}

.program__coaching-box-image {
	width: 200px;
}

.program__curriculum {
	display: flex;
	gap: 15px;
}

.program__curriculum-box {
	background: var(--color-navy);
	padding: 20px;
	width: calc((100% - 30px) / 3);
	display: flex;
	flex-direction: column;
}

.program__curriculum-box-heading {
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	margin-bottom: 10px;
}

.program__curriculum-box-description {
	background: var(--color-light-blue);
	padding: 10px;
	height: 100%;
}

.program__textbook-box:not(:last-of-type) {
	border-bottom: solid 1px rgba(185, 188, 211, 0.5);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.program__textbook-box-figure {
	min-width: 350px;
}

.program__textbook-box-image {
	height: fit-content;
}

.program__textbook-box-inner {
	display: flex;
	gap: 30px;
}

.program__textbook-box-heading {
	color: var(--color-navy);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.program__textbook-box-small-heading {
	font-weight: 700;
	margin-bottom: 8px;
}

.program__textbook-box-small-heading:not(:first-of-type) {
	margin-top: 40px;
}

.program__textbook-box-description {
	line-height: 1.8;
}

.program__example {
	margin-inline: auto;
	width: 90vw;
	max-width: 880px;
}

.program__example-data {
	vertical-align: middle;
	border: 1px solid var(--color-light-blue);
	padding: 16px 10px;
}

@media (max-width: 660px) {
	.program__coaching {
		flex-direction: column;
		gap: 20px;
	}

	.program__coaching-box {
		width: 100%;
	}

	.program__coaching-box-heading {
		font-size: 18px;
	}

	.program__coaching-box-inner {
		flex-direction: column;
		gap: 10px;
	}

	.program__coaching-box-image {
		margin-inline: auto;
	}

	.program__curriculum {
		flex-direction: column;
		gap: 10px;
	}

	.program__curriculum-box {
		padding: 10px;
		width: 100%;
	}

	.program__curriculum-box-heading {
		font-size: 18px;
	}

	.program__textbook-box-inner {
		flex-direction: column;
		gap: 20px;
	}

	.program__textbook-box-figure {
		min-width: unset;
	}

	.program__textbook-box-small-heading:not(:first-of-type) {
		margin-top: 20px;
	}

	.program__textbook-box-heading {
		font-size: 18px;
	}

	.program__textbook-box:not(:last-of-type) {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.program__textbook-box-description {
		font-size: 14px;
	}

	.program__example .program__example-data {
		white-space: nowrap;
	}
}

/* =============================================
講師・コーチ
============================================= */
.coach__slider {
	margin-bottom: 100px !important;
}

.coach__slider .slider__arrow--prev {
	left: 440px;
}

.coach__slider.slider .slider__arrow--next {
	right: 440px;
}

.coach__supervisor {
	background: #fff;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.coach__supervisor-inner-center {
	width: 100%;
	max-width: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.coach__supervisor-inner-left {
	min-width: 200px;
}

.coach__supervisor-inner-right {
	background: var(--color-light-blue);
	padding: 20px;
}

.coach__supervisor-image {
	height: fit-content;
}

@media (max-width: 660px) {
	.coach__slider .slider-item-upper-text {
		flex-direction: row;
		gap: 10px;
		align-items: center;
	}

	.coach__supervisor {
		flex-direction: column;
		padding: 16px;
		gap: 14px;
	}

	.coach__supervisor-inner-center {
		align-items: center;
	}

	.slider-item-upper-label {
		margin-bottom: 6px;
	}

	.coach__supervisor-inner-right {
		padding: 10px;
		font-size: 14px;
		line-height: 1.6;
	}
}

/* =============================================
よくある質問
============================================= */
.faq__accordion {
	width: 90vw;
	margin-inline: auto;
	max-width: 880px;
}

.faq__accordion:not(:last-of-type) {
	margin-bottom: 20px;
}

.faq__summary {
	display: block;
	background: var(--color-navy);
	color: #fff;
	font-weight: bold;
	position: relative;
	list-style: none;
	cursor: pointer;
	font-size: 18px;
	padding: 20px;
	line-height: 1.4;
}

/* Chrome、Safari でデフォルトの矢印を消す */
summary::-webkit-details-marker {
	display: none;
}

.faq__summary::before {
	content: "Q.";
	font-family: "Roboto", sans-serif;
	font-size: 22px;
	margin-right: 16px;
}

.faq__summary::after {
	content: "";
	background: url(../images/faq-plus.svg) no-repeat center center;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 99999px;
}

.faq__accordion[open] .faq__summary::after {
	background: url(../images/faq-minus.svg) no-repeat center center;
}

.faq__detail {
	padding: 16px 80px 16px 98px;
	position: relative;
}

.faq__detail::before {
	content: "A.";
	font-family: "Roboto", sans-serif;
	font-size: 22px;
	color: var(--color-navy);
	position: absolute;
	left: 62px;
	top: 10px;
}

@media only screen and (max-width: 1180px) {
	.coach__slider .slider__arrow--prev {
		left: -10px;
		top: 50%;
	}

	.coach__slider.slider .slider__arrow--next {
		right: -10px;
		top: 50%;
	}
}

@media only screen and (max-width: 660px) {
	.faq__inner {
		width: 90vw;
	}

	.faq__accordion:not(:last-of-type) {
		margin-bottom: 12px;
	}

	.faq__summary {
		padding-top: 16px;
		padding-right: 60px;
		font-size: 16px;
	}

	.faq__summary::before {
		font-size: 20px;
		margin-right: 10px;
	}

	.faq__summary::after {
		right: 20px;
		width: 30px;
		height: 30px;
	}

	.faq__detail {
		padding: 10px 20px 16px 54px;
	}

	.faq__detail::before {
		top: 12px;
		left: 24px;
		font-size: 20px;
	}
}

/* =============================================
運営会社
============================================= */
.company__table-row:not(:last-child) {
	/* border-bottom: 10px solid var(--color-light-blue); */
}

.company__table-header,
.company__table-data {
	padding: 20px;
	border: 4px solid #fff;
}

@media only screen and (max-width: 660px) {
	.company__table-header,
	.company__table-data {
		padding: 10px;
		font-size: 14px;
		white-space: nowrap;
	}
}

/* =============================================
フォーム
============================================= */
.contact {
	/* border-top: solid 2px var(--color-navy);
    border-bottom: solid 2px var(--color-navy); */
	z-index: 99997;
	position: relative;
	background: var(--color-navy);
	color: #fff;
}

.contact .section__heading::before {
	color: #ffffff59;
}

.contact .section__heading-inner {
	color: #fff;
	background: var(--color-navy);
}

.contact .section__heading::after {
	background: #ffffff;
}

.form {
	width: 90vw;
	max-width: 500px;
	margin-inline: auto;
}

.form__group {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	padding: 10px 15px;
}

.form__label {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 16px;
}

.form__label-requirement {
	margin-left: 8px;
	padding: 2px 8px;
	font-size: 12px;
}

.form__label-requirement--required {
	color: var(--color-black-on-yellow);
	background: var(--color-yellow);
}

.form__label-requirement--optional {
	color: #fff;
	background: var(--color-black);
}

.form__control.form__control {
	font-size: 16px;
	border: 0;
	background: inherit;
	box-shadow: 0px 4px 6px #0d1347;
	border-radius: 5px;
	background: #fff;
	padding: 0 1em;
	height: 56px;
	text-align: left;
	color: var(--color-black);
}

input:focus {
	background: #fff !important;
}

/* input:-webkit-autofill {
    box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset !important;
} */

.form__field-error-message {
	color: var(--color-yellow);
	font-size: 14px;
	font-weight: 700;
	margin-top: 4px;
}

.form__submit-button {
	margin-top: 20px;
	padding: .8em 3em !important;
	font-size: 18px !important;
}

.form__note {
	font-size: 10px;
	margin-top: 20px;
	text-align: center;
	padding: 0 20px;
}

/* =============================================
フッター
============================================= */
.footer {
	z-index: 99998;
	position: relative;
	background: #fff;
	padding: 20px 10px;
	text-align: center;
	display: flex;
	gap: 20px;
}

.footer__copyrihgt {
	margin-left: auto;
	font-size: 14px;
}

.footer__link {
	color: #292929;
}

@media (max-width: 660px) {
	.footer {
		padding: 10px;
		flex-direction: column;
		justify-content: space-between;
	}

	.footer__copyrihgt {
		margin-left: 0;
		font-size: 12px;
	}
}

/* =============================================
フロートCTA
============================================= */
.float-cta.show {
	transform: translateY(0);
}

.float-cta {
	transition: transform 0.5s ease;
	will-change: transform;
	width: 100%;
	position: fixed;
	bottom: 0px;
	left: 50%;
	translate: -50%;
	z-index: 99996;
	padding: 10px;
	text-align: center;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transform: translateY(100%);
}

.float-cta__button {
	font-size: 25px;
	max-width: unset;
	width: fit-content;
}

@media (max-width: 660px) {
	.float-cta {
		transform: translateY(0) !important;
	}

	.float-cta__button {
		font-size: 18px;
		padding: .6em;
		width: 100%;
	}
}

/* =============================================
スクロールヒント
============================================= */
.scrollable {
	position: relative;
	overflow-x: auto;
	white-space: nowrap;
}

.scroll-hint {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-weight: 700;
	line-height: 1.4;
	display: none;
	animation: scroll-hint-animation 2s infinite ease;
}

@keyframes scroll-hint-animation {
	0% {
		transform: translate(-50%, -50%);
	}

	50% {
		transform: translate(-40%, -50%);
	}

	100% {
		transform: translate(-50%, -50%);
	}
}

.scroll-hint--show {
	display: block;
}

/* =============================================
プレゼントキャンペーン
============================================= */
.campaign__inner {
	background: var(--color-light-blue);
	border: solid 4px #fff;
	padding: 50px;
	display: flex;
	gap: 50px;
	align-items: center;
}

.campaign__image {
	width: 100%;
	max-width: 180px;
	filter: drop-shadow(0px 3px 10px rgb(32 33 33 / 0.1));
}

.campaign__heading {
	font-size: 25px;
	font-weight: 700;
	color: var(--color-navy);
	padding-bottom: 12px;
	margin-bottom: 20px;
	border-bottom: solid 1px #b9bcd3;
	margin-top: var(--leading-trim);
}

.link--underline {
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--color-navy);
}

.campaign__button {
	margin-left: 0;
	margin-top: 20px;
	font-size: 25px;
}

@media (hover: hover) {
	.link--underline:hover {
		text-decoration: none;
	}
}

@media (max-width: 660px) {
	.campaign__inner {
		flex-direction: column;
		gap: 16px;
		padding: 16px;
	}

	.campaign__image {
		max-width: 100px;
	}

	.campaign__heading {
		font-size: 18px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.text--notecampaign__paragraph {
		font-size: 14px;
		line-height: 1.8;
	}

	.campaign__button {
		font-size: 18px;
		width: 100%;
		padding: .8em 0;
	}
}

/* =============================================
他サービス
============================================= */
.other-service {
	background: var(--color-light-blue);
	color: #fff;
	z-index: 99997;
	position: relative;
}

.other-service__inner {
	display: flex;
	gap: 4px;
}

.other-service__box {
	background: center center no-repeat;
	background-size: cover;
	padding: 100px 50px;
	width: 50%;
	height: 460px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.other-service__box:first-of-type {
	background-image: url(../images/kikitori.webp);
}

.other-service__box:last-of-type {
	background-image: url(../images/ielts.webp);
}

.other-service__heading {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 10px;
}

.other-service__description {
	font-size: 14px;
	margin-bottom: 30px;
	max-width: 600px;
}

.other-service__link {
	border: solid 1px #fff;
	font-weight: 700;
	color: #fff;
	padding: 12px 8px;
	min-width: 160px;
	display: block;
	width: fit-content;
	text-align: center;
	background: #ffffff20;
}

@media (max-width: 1560px) {
	.other-service__box {
		height: auto;
	}
}

@media (max-width: 660px) {
	.other-service__inner {
		flex-direction: column;
		gap: 2px;
	}

	.other-service__box {
		width: 100%;
		padding: 40px 20px;
	}

	.other-service__heading {
		font-size: 20px;
		margin-bottom: 4px;
	}

	.other-service__description {
		font-size: 12px;
		margin-bottom: 20px;
	}

	.other-service__link {
		min-width: 130px;
		font-size: 14px;
		padding: 8px;
	}
}

.button_social_group {
	margin: 0 0 0 30px;
}
