/*=======================
基本設定
=======================*/

/*=======================
共通パーツ
=======================*/

body {
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	letter-spacing: normal;
}

body.is-fixed {
	overflow: clip;
}

.body-container {
	overflow: hidden;
}

.inner {
	margin: 0 auto;
	max-width: 1000px;
}

.sec-title {
	position: relative;
}

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

.sec-title--center.sec-title--deco .title-en::after {
	left: 50%;
	translate: -50% 0;
}

.sec-title--deco .title-en {
	position: relative;
}

.sec-title--deco .title-en::after {
	background: #bfbfbf;
	bottom: -1px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 56px;
}

.sec-title--white .title-en {
	color: #fff !important;
}

.sec-title--white .title-en::after {
	background: #fff !important;
}

.sec-title--white .title-jp {
	color: #fff !important;
}

.sec-title .title-en {
	color: #bfbfbf;
	display: block;
	font-family: "Outfit", sans-serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.14em;
	line-height: 2.5;
}

.sec-title .title-jp {
	color: #222;
	display: block;
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.5;
	margin-top: 10px;
}

.font-color--gold {
	color: #be9c24;
}

.under-color {
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 0 0.1em;
	position: relative;
}

.under-color--yellow {
	background: linear-gradient(transparent 70%, #ffff95 70%);
}

.bg-color {
	font-size: 26px;
	padding-left: 6px;
	position: relative;
}

.bg-color::after {
	content: "";
	height: 110%;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 101%;
	z-index: -1;
}

.bg-color--black {
	color: #fff;
}

.bg-color--black::after {
	background: #000;
}

.btn {
	cursor: pointer;
	display: grid;
	place-content: center;
	position: relative;
	transition: all 0.3s ease;
	z-index: 5;
}

br.is-pc {
	display: block;
}

br.is-sp {
	display: none;
}

span.is-pc {
	display: inline;
}

span.is-sp {
	display: none;
}

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

.nav {
	display: grid;
	height: inherit;
	place-content: center;
}

.nav-items {
	align-items: center;
	display: flex;
	gap: 0 30px;
	justify-content: center;
}

.nav-item-link {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.5;
	position: relative;
	transition: all 0.3s ease;
}

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

.js-fadeUp {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

/*=======================
下層ページ共通設定
=======================*/

.page-wrapper.-pageLow .page-head {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow-x: hidden;
	position: relative;
}

.breadcrumb-items {
	align-items: center;
	display: flex;
}

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

.header {
	background: #121212;
	display: grid;
	grid-template-columns: 1fr 4.8rem;
	height: 40px;
	place-content: center;
}

.header-text {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 2;
	text-align: center;
}

.drawer-icon {
	display: none;
}

.drawer {
	display: none;
}

/* details 行（＋／−アイコン） */

.js-drawer-details[open] > .drawer-item-link::before {
	transform: translateY(-50%) rotate(180deg);
}

/* パネル本体（heightアニメ前提） */

/*=======================
FV
=======================*/

.fv-container {
	height: calc(100dvh - 93px - 40px);
	position: relative;
}

.fv-nav-bar {
	height: 93px;
}

.fv-nav-item-link {
	color: #121212;
}

.fv-slider {
	height: inherit;
}

.fv-slider .swiper-wrapper {
	height: inherit;
}

.fv-slider { /* ===== Swiper ページネーション（縦配置） ===== */
}

.fv-slider .swiper-pagination {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: absolute;
	right: 25px;
	top: 32%;
	transform: translateY(-50%);
	z-index: 10;
}

.fv-slider { /* ===== bulletリセット ===== */
}

.fv-slider .swiper-pagination-bullet {
	background: transparent !important;
	border: none;
	height: 42px;
	margin: 0;
	opacity: 1 !important;
	overflow: visible;
	position: relative;
	width: 42px;
}

.fv-slider .swiper-pagination-bullet::before,
.fv-slider .swiper-pagination-bullet::after {
	content: none !important;
	display: none !important;
}

.fv-slider { /* ===== ドット（常時表示／直径4px） ===== */
}

.fv-slider .swiper-pagination .bullet-dot {
	background: #fff !important;
	border-radius: 50%;
	height: 4px;
	left: 50%;
	margin-left: -2px;
	margin-top: -2px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	width: 4px;
	z-index: 2;
}

.fv-slider { /* ===== 円（SVG・直径42px）：アクティブのみ表示 ===== */
}

.fv-slider .bullet-ring {
	display: none;
	height: 42px;
	left: 50%;
	margin-left: -21px;
	margin-top: -21px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	width: 42px;
	z-index: 1;
}

.fv-slider .swiper-pagination-bullet-active .bullet-ring {
	display: block;
}

.fv-slider { /* ===== リングの線設定 ===== */
}

.fv-slider .ring-track {
	fill: none;
	stroke: #ccc; /* ベースはグレー */
	stroke-width: 2; /* ← 線の太さを2pxに変更 */
	stroke-linecap: butt;
}

.fv-slider .ring-progress {
	fill: none;
	stroke: #fff; /* 回転する線は白 */
	stroke-width: 2; /* ← 同じく2pxに変更 */
	stroke-linecap: butt;
	stroke-dasharray: 100 100;
	stroke-dashoffset: 100;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
	will-change: stroke-dashoffset;
}

.fv-slider { /* 完走したとき、ベースも白に変化 */
}

.fv-slider .swiper-pagination-bullet.bullet-filled .ring-track {
	stroke: #fff;
}

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

.fv-content {
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -56%;
	z-index: 1;
}

.fv-scroll {
	bottom: 100px;
	bottom: 22.3%;
	position: absolute;
	right: 46px;
	z-index: 1;
}

.fv-scroll-text {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: "Outfit", sans-serif;
	font-size: 11px;
	font-weight: 500;
	gap: 11px;
	height: -moz-max-content;
	height: max-content;
	letter-spacing: 0.2em;
	line-height: 1.2727272727;
	position: relative;
	text-transform: uppercase;
	width: 1px;
	writing-mode: vertical-lr;
}

.fv-scroll-text::before {
	animation: scroll-dot 2.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
	background-color: #be9c24;
	border-radius: 50%;
	content: "";
	display: block;
	height: 7px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 7px;
}

.fv-scroll-text::after {
	background: #fff;
	content: "";
	display: block;
	height: 95px;
	width: 1px;
}

.fv-copy {
	color: #fff;
	text-align: center;
}

.fv-copy-main {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.5;
	margin-top: 5px;
	position: relative;
}

.fv-copy-main::after {
	background: #fff;
	bottom: -22px;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 559px;
}

.fv-copy-sub {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.08em;
}

.fv-copy-en {
	font-family: "Outfit", sans-serif;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 1.5555555556;
	margin-top: 40px;
}

.fv-items {
	display: flex;
	gap: 0 43px;
	justify-content: center;
	margin-top: 58px;
}

.fv-item {
	background: url(../img/fv_deco.svg) no-repeat center center/cover;
	color: #fff;
	display: grid;
	font-size: 18px;
	font-weight: bold;
	height: 161px;
	letter-spacing: 0.02em;
	line-height: 1.3333333333;
	place-content: center;
	text-align: center;
	width: 161px;
}

.loop-items {
	bottom: -16px;
	display: flex;
	overflow: hidden;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.loop-item {
	animation: loop-slide 40s infinite linear both;
	color: #fff;
	flex-shrink: 0;
	font-family: "Outfit", sans-serif;
	font-size: 104px;
	font-weight: 500;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

/* ページ全体：読み込み中は非表示、準備できたら表示 */

html:not(.is-ready) body {
	opacity: 0;
}

html.is-ready body {
	opacity: 1;
	transition: opacity 0.3s ease;
}

/* FVテキスト初期状態（入場アニメ用） */

.fv-copy-sub,
.fv-copy-main,
.fv-copy-en {
	opacity: 0;
	transform: translateY(8px);
	will-change: opacity, transform;
}

/*=======================
コンセプト
=======================*/

.concept {
	padding: 85px 0 76px;
}

.concept-content {
	display: grid;
	gap: 21px 100px;
	grid-template-columns: 450px 1fr;
	grid-template-rows: auto 1fr;
}

.concept-title {
	grid-column: 1/2;
	grid-row: 1/2;
	padding-top: 36px;
}

.concept-title .title-en {
	letter-spacing: 0.08em;
}

.concept-title .title-jp {
	font-size: 34px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6176470588;
	margin-top: 9px;
}

.concept-text {
	font-size: 16px;
	grid-column: 1/2;
	grid-row: 2/3;
	letter-spacing: 0.04em;
	line-height: 2.25;
	padding-right: 4px;
}

.concept-img {
	grid-column: 2/3;
	grid-row: 1/3;
}

.concept-items {
	display: grid;
	gap: 20px 35px;
	grid-template-columns: 1fr 1fr 1fr;
	margin-top: 73px;
}

.concept-item figure {
	position: relative;
}

.concept-item figcaption {
	background: #121212;
	color: #fff;
	display: grid;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.4444444444;
	min-height: 54px;
	place-content: center;
}

/*=======================
こんな方におすすめ
=======================*/

.recommend {
	background: #121212;
	padding: 33px 0 59px;
}

.recommend-title {
	display: grid;
	margin-left: 12px;
	place-content: center;
	position: relative;
	text-align: center;
}

.recommend-title .title-en {
	color: #e8e8e8;
	font-family: "Outfit", sans-serif;
	font-size: 108px;
	font-weight: 500;
	letter-spacing: 0.12em;
	opacity: 0.1;
}

.recommend-title .title-jp {
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	color: #fff;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 25px;
	font-weight: bold;
	left: 50%;
	letter-spacing: 0.08em;
	line-height: 1.92;
	padding: 4px 0;
	position: absolute;
	top: 50%;
	translate: -50% -40%;
	width: 379px;
}

.recommend-content {
	align-items: center;
	display: grid;
	gap: 0 37px;
	grid-template-columns: 374px 1fr;
	margin-top: 11px;
}

.recommend-items {
	background: #fff;
	padding: 18px 29px;
	position: relative;
}

.recommend-items::before {
	background: #fff;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	content: "";
	height: 25px;
	left: -23px;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 24px;
}

.recommend-item {
	border-bottom: 1px dashed #e8e8e8;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.8125;
	padding: 14px 16px 14px 48px;
	position: relative;
	z-index: 1;
}

.recommend-item::before {
	background: url(../img/icon_check.svg) no-repeat center center/cover;
	content: "";
	height: 20px;
	left: 15px;
	position: absolute;
	top: 19px;
	width: 24px;
}

.recommend-item:last-of-type {
	border-bottom: none;
}

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

.features {
	margin-inline: auto;
	max-width: 1440px;
	padding: 71px 0 140px;
	width: 100%;
}

.features-items {
	counter-reset: features-counter;
	display: grid;
	gap: 67px;
	grid-template-columns: 1fr;
	margin-top: 49px;
}

.features-item {
	counter-increment: features-counter;
	position: relative;
}

.features-item:nth-child(even)::before {
	left: 8px;
	right: auto;
}

.features-item:nth-child(even) .features-item-container {
	grid-template-columns: 418px 1fr;
}

.features-item:nth-child(even) .features-item-container .features-item-img {
	grid-column: 2/3;
}

.features-item:nth-child(even) .features-item-container .features-item-num,
.features-item:nth-child(even) .features-item-container .features-item-title,
.features-item:nth-child(even) .features-item-container .features-item-text {
	grid-column: 1/2;
}

.features-item::before {
	color: #000;
	content: "FEATURE0" counter(features-counter);
	font-family: "Outfit", sans-serif;
	font-size: 70px;
	font-weight: 500;
	letter-spacing: 0.08em;
	opacity: 0.05;
	position: absolute;
	right: 8px;
	top: 50%;
	translate: 0 -50%;
	writing-mode: vertical-lr;
}

.features-item-container {
	align-items: center;
	display: grid;
	gap: 0 66px;
	grid-template-columns: 1fr 424px;
	grid-template-rows: auto auto 1fr;
	margin-inline: auto;
	max-width: 1000px;
}

.features-item-img {
	grid-column: 1/2;
	grid-row: 1/4 !important;
}

.features-item:nth-child(even) .features-item-img {
	order: 1;
}

.features-item-num {
	color: #b59a24;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 500;
	grid-column: 2/3;
	grid-row: 1/2;
	letter-spacing: 0.12em;
	margin-top: 27px;
}

.features-item-num::before {
	content: "FEATURES 0" counter(features-counter);
}

.features-item-title {
	font-size: 28px;
	font-weight: bold;
	grid-column: 2/3;
	grid-row: 2/3;
	letter-spacing: 0.06em;
	line-height: 1.6;
	margin-top: 18px;
}

.features-item-text {
	font-size: 16px;
	grid-column: 2/3;
	grid-row: 3/4;
	letter-spacing: 0.04em;
	line-height: 2.25;
	margin-top: -10px;
}

/*=======================
トレーナー
=======================*/

.trainer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 818px;
}

.trainer-content {
	background: transparent linear-gradient(223deg, #3b3b3b 0%, #111111 100%) 0% 0% no-repeat padding-box;
	display: grid;
	padding: 0 20px;
	place-content: center;
}

.trainer-content-container {
	max-width: 514px;
}

.trainer-title {
	color: #b59a24;
	font-family: "Outfit", sans-serif;
	font-size: 85px;
	font-weight: 500;
	letter-spacing: 0.08em;
}

.trainer-job {
	color: #fff;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin-top: 30px;
}

.trainer-info {
	align-items: center;
	display: grid;
	gap: 0 58px;
	grid-template-columns: 1fr 42px;
	margin-top: 18px;
}

.trainer-name {
	align-items: center;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	padding: 21px 17px;
}

.name-jp {
	font-size: 36px;
	font-weight: 500;
	letter-spacing: 0.06em;
}

.name-en {
	font-family: "Outfit", sans-serif;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin-top: 4px;
}

.trainer-link {
	border-radius: 50%;
	transition: all 0.3s ease;
}

.trainer-items {
	border-top: 2px solid #fff;
	display: grid;
	gap: 28px;
	grid-template-columns: 1fr;
	margin-top: 20px;
	padding-top: 55px;
}

.trainer-item {
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.04em;
	line-height: 1.5;
	padding-left: 17px;
	position: relative;
}

.trainer-item::before {
	background: #fff;
	border-radius: 50%;
	content: "";
	height: 4px;
	left: 6px;
	position: absolute;
	top: 11px;
	width: 4px;
}

.trainer-img {
	position: relative;
}

.trainer-img img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
}

/*=======================
動画
=======================*/

.movie {
	background: #121212;
	padding: 72px 0 78px;
}

.location {
	background: #efefef;
	padding: 29px 38px 35px;
	position: relative;
}

.location::after {
	bottom: 0;
	color: #fff;
	content: "LOCATION";
	font-family: "Outfit", sans-serif;
	font-size: 85px;
	font-weight: 500;
	letter-spacing: 0.08em;
	position: absolute;
	right: 0;
}

.mini-title {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.04em;
	padding-left: 18px;
	position: relative;
}

.mini-title::before {
	background: #be9c24;
	content: "";
	height: 25px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 3px;
	z-index: 0;
}

.location-items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 50px;
	margin-top: 23px;
	position: relative;
	z-index: 1;
}

.location-item-title {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 2;
	margin-bottom: 6px;
}

.location-item-text {
	font-size: 16px;
	letter-spacing: 0.04em;
	line-height: 1.625;
}

.location-item-text:last-of-type {
	margin-top: 13px;
}

.location-item-attention {
	font-size: 12px;
	letter-spacing: 0.04em;
	margin-top: 24px;
	position: relative;
	z-index: 1;
}

.movie-content {
	background: #fff;
	margin-top: 26px;
	padding-top: 26.0784313725%;
	position: relative;
	width: 100%;
}

.movie-content iframe {
	border: none;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/*=======================
インスタグラム
=======================*/

.instagram {
	padding: 64px 0 86px;
}

.instagram-items,
#sbi_images {
	display: grid;
	gap: 18px 33px;
	grid-template-columns: repeat(auto-fit, 225px);
	justify-content: center;
	margin-top: 26px;
}

.instagram-btn {
	background: #be9c24;
	border: 3px solid #fff;
	border-radius: 40px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	height: 66px;
	letter-spacing: 0.1em;
	margin: 57px auto 0;
	position: relative;
	width: 363px;
}

.instagram-btn::after {
	background: url(../img/arrow_white_right.svg) no-repeat center center/cover;
	content: "";
	height: 10px;
	position: absolute;
	right: 20px;
	top: 50%;
	translate: 0 -50%;
	width: 5px;
}

/*=======================
お客様の声
=======================*/

.voice {
	background: #f7f7f7;
	padding: 55px 0 83px;
}

.voice-text {
	font-size: 16px;
	letter-spacing: 0.04em;
	line-height: 2.25;
	margin-top: 12px;
	text-align: center;
}

.voice-slider {
	margin-inline: calc(50% - 50vw);
	margin-top: 45px;
	position: relative;
	width: 100vw;
}

.voice-slider .swiper-wrapper {
	max-width: 1000px;
	width: 100%;
}

.voice-slider .swiper-slide {
	height: auto;
	margin: 0 10px;
	min-height: 454px;
}

.voice-slider .swiper-button-prev,
.voice-slider .swiper-button-next {
	border-radius: 50%;
	height: 69px;
	margin-top: initial;
	width: 70px;
}

.voice-slider .swiper-button-prev::after,
.voice-slider .swiper-button-next::after {
	background: url(../img/arrow-slide-right.svg) no-repeat center center/cover;
	content: "";
	height: 100%;
	width: 100%;
}

.voice-slider .swiper-button-prev {
	left: calc(50% - 500px - 50px);
	right: initial;
	transform: translateY(-50%) scaleX(-1);
}

.voice-slider .swiper-button-next {
	left: initial;
	right: calc(50% - 500px - 50px);
	transform: translateY(-50%);
}

.voice-content {
	background: #fff;
	display: grid;
	gap: 55px;
	grid-template-columns: 234px 1fr;
	height: 100%;
	padding: 52px 97px 66px;
}

.voice-content-info {
	display: grid;
	gap: 6px;
	margin-top: 22px;
}

.voice-content-info-item {
	display: grid;
	grid-template-columns: 48px 1fr;
}

.voice-content-info-item dt,
.voice-content-info-item dd {
	font-size: 14px;
	letter-spacing: 0.04em;
}

.voice-content-info-item dt {
	border-bottom: 2px solid #616365;
	padding: 11px 0px;
}

.voice-content-info-item dd {
	border-bottom: 2px solid #e0e0e0;
	padding: 9px 10px;
}

.voice-content-right {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.voice-content-title {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.55;
	padding-left: 16px;
	position: relative;
}

.voice-content-title::before {
	background: #be9c24;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 3px;
}

.voice-content-text {
	font-size: 14px;
	letter-spacing: 0.06em;
	line-height: 2;
	margin-bottom: 20px;
	margin-left: 1px;
	margin-top: 22px;
	margin-top: 18px;
}

.voice-content-gallery {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(auto-fit, 161px);
	margin-top: auto;
}

/*=======================
料金プラン
=======================*/

.price {
	padding-top: 60px;
}

.price-items {
	display: grid;
	gap: 30px 0;
	grid-template-columns: 1fr;
	margin-top: 32px;
}

.price-item--black .price-item-title {
	background: #121212;
}

.price-item--black .price-content {
	border: 3px solid #121212;
}

.price-item--gold .price-item-title {
	background: #be9c24;
}

.price-item--gold .price-content {
	border: 3px solid #be9c24;
}

.price-item--attention .price-content-title {
	margin-bottom: 10px;
	margin-top: 20px;
}

.price-item-title {
	align-items: center;
	color: #fff;
	display: flex;
	gap: 0 12px;
	height: 48px;
	justify-content: center;
	padding: 0 26px 0 22px;
	width: -moz-fit-content;
	width: fit-content;
}

.price-item-title .title-jp {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.06em;
}

.price-item-title .title-en {
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin-top: 3px;
}

.price-item-title--w100 {
	text-align: center;
	width: 100%;
}

.price-content {
	padding: 35px 30px 32px 30px;
}

.price-content-txt {
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 1.6428571429;
}

.price-content-title {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.06em;
	padding-left: 15px;
	position: relative;
}

.price-content-title::before {
	background: #be9c24;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 8px;
}

.price-box {
	display: grid;
	grid-template-columns: 48% 52%;
	margin-top: 24px;
}

.price-table {
	border: 1px solid #121212;
	border-collapse: collapse;
}

.price-table th,
.price-table td {
	border: 1px solid #121212;
}

.price-table th {
	background: #f7f7f7;
	font-size: 16px;
	font-weight: bold;
	height: 46px;
	text-align: center;
	vertical-align: middle;
}

.price-table td {
	padding: 14px 16px;
}

.price-table td.bottom-none {
	border-bottom: none;
	padding-bottom: 12px;
	position: relative;
}

.price-table td.bottom-none::after {
	background: #cbcbcb;
	bottom: 5px;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	translate: -50% 0;
	width: 143px;
}

.price-table td.top-none {
	border-top: none;
	padding-top: 0;
}

.price-table:first-of-type thead th:first-of-type {
	width: calc(100% - 189px);
}

.price-table:first-of-type thead th:last-of-type {
	width: 189px;
}

.price-table:first-of-type td {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.3;
	text-align: center;
	vertical-align: middle;
}

.price-table:first-of-type td .font-large {
	font-size: 21px;
}

.price-table:first-of-type td .font-small {
	font-size: 14px;
}

.price-table:first-of-type td .font-number {
	font-family: "Oswald", sans-serif;
}

.price-table:last-of-type {
	border-left: none;
}

.price-table:last-of-type thead th {
	width: 50%;
}

.price-table:last-of-type th,
.price-table:last-of-type td {
	border-left: none;
}

.price-table:last-of-type td {
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 1.6428571429;
	padding: 19px 30px;
}

.price-list-item {
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 1.6428571429;
	padding-left: 9px;
	position: relative;
}

.price-list-item::before {
	background: #000;
	border-radius: 50%;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	top: 11px;
	width: 3px;
}

/*=======================
トレーナーご挨拶
=======================*/

.message {
	margin-inline: auto;
	max-width: 1440px;
	padding: 62px 0 196px;
	position: relative;
}

.message-inner {
	max-width: initial;
	width: initial !important;
}

.message-content {
	display: flex;
	gap: 0 61px;
	margin-top: 27px;
	position: relative;
	z-index: 1;
}

.message-img {
	height: 405px;
	max-width: 632px;
	position: relative;
	width: 100%;
}

.message-img img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
}

.message-box {
	padding-right: 20px;
	padding-top: 31px;
}

.message-lead {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.5454545455;
	padding-left: 20px;
	position: relative;
}

.message-lead::before {
	background: #be9c24;
	content: "";
	height: 25px;
	left: 0;
	position: absolute;
	top: 3px;
	width: 3px;
}

.message-text {
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 2.4285714286;
	margin-top: 22px;
	max-width: 580px;
}

.message-bg {
	background: #f2f2f2;
	bottom: 0;
	display: flex;
	flex-direction: column;
	height: 292px;
	max-width: 1268px;
	position: absolute;
	right: 0;
	text-align: right;
	width: 88.0555555556%;
}

.message-bg-text {
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-size: 134px;
	font-weight: 500;
	letter-spacing: 0.12em;
	margin-top: auto;
	opacity: 0.8;
}

.faq-bg {
	bottom: -22px;
	color: #f2f2f2;
	font-family: "Outfit", sans-serif;
	font-size: 187px;
	left: 33px;
	letter-spacing: 0.1em;
	position: absolute;
	z-index: -1;
}

/*=======================
よくある質問
=======================*/

.faq {
	padding: 56px 0 97px;
	position: relative;
}

.faq-items-title {
	margin-top: 40px;
}

.faq-items {
	display: grid;
	gap: 19px 0;
	grid-template-columns: 1fr;
	margin: 26px auto 0;
}

.faq-item-question {
	align-items: center;
	background: #121212;
	cursor: pointer;
	display: grid;
	gap: 0 40px;
	grid-template-columns: 1fr 40px;
	min-height: 83px;
	padding: 10px 22px 10px 26px;
}

.faq-item-question::-webkit-details-marker {
	display: none;
}

.faq-item-title {
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.07em;
	line-height: 1.25;
}

.faq-item-title::before {
	color: #fff;
	content: "Q.";
	top: -4px;
}

.faq-item-answer-container {
	letter-spacing: 0.04em;
	line-height: 2.25;
}

.faq-item-answer-container::before {
	color: #be9c24;
	content: "A.";
	top: -2px;
}

.faq-item-title,
.faq-item-answer-container {
	font-size: 16px;
	padding-left: 44px;
	position: relative;
}

.faq-item-title::before,
.faq-item-answer-container::before {
	font-family: "Outfit", sans-serif;
	font-size: 23px;
	font-weight: 500;
	left: 0;
	letter-spacing: 0.08em;
	position: absolute;
}

.faq-item-btn {
	border-radius: 50%;
	height: 40px;
	position: relative;
	width: 40px;
}

.faq-item-btn .btn-bar {
	background: #fff;
	height: 1px;
	left: 50%;
	position: absolute;
	top: 50%;
	transition: all 0.3s ease;
	translate: -50% -50%;
	width: 15px;
}

.faq-item-btn .btn-bar.bar01 {
	rotate: 90deg;
}

details[open] .faq-item-btn .btn-bar.bar01 {
	rotate: 180deg;
}

.faq-item-answer {
	background: #fff;
	border: 1px solid #121212;
	overflow: hidden;
	padding: 0 25px;
}

.faq-item-answer-container {
	padding: 15px 0 26px 44px;
}

.faq-item-answer-container::before {
	top: 7px;
}

/*=======================
お問い合わせブロック
=======================*/

.cta {
	background: url(../img/contact_pc.png) no-repeat center center/cover;
	padding: 65px 0 74px;
}

.cta-text {
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.04em;
	margin-top: 25px;
	text-align: center;
}

.cta-items {
	display: flex;
	justify-content: center;
	margin-top: 47px;
}

.cta-item {
	padding: 22px 0 31px;
	width: -moz-fit-content;
	width: fit-content;
}

.cta-item:first-of-type {
	border-right: 1px solid #fff;
	padding-right: 62px;
}

.cta-item:first-of-type .cta-icon {
	height: 43px;
	width: 45px;
}

.cta-item:last-of-type {
	padding-left: 62px;
}

.cta-item:last-of-type .cta-icon {
	height: 38px;
	width: 47px;
}

.cta-item:last-of-type .cta-item-title {
	margin-top: 37px;
}

.cta-icon {
	margin-inline: auto;
}

.cta-item-title {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.13em;
	margin-top: 32px;
	text-align: center;
}

.cta-btn {
	border: 1px solid #fff;
	border-radius: 70px;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	height: 60px;
	letter-spacing: 0.13em;
	margin: 40px auto 0;
	width: 260px;
}

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

.footer {
	background: #121212;
	padding: 82px 0 91px;
	position: relative;
}

.footer::after {
	background: #be9c24;
	bottom: 0;
	content: "";
	height: 15px;
	left: 0;
	position: absolute;
	width: 100%;
}

.footer-nav-item-link {
	color: #fff;
}

.footer-link {
	color: #fff;
	display: block;
	font-size: 14px;
	letter-spacing: 0.2em;
	margin: 70px auto 0;
	text-decoration: underline;
	transition: all 0.3s ease;
	width: -moz-fit-content;
	width: fit-content;
}

.copyright {
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.1em;
	margin-top: 26px;
	text-align: center;
}

.top-scroll {
	position: absolute;
	right: 28px;
	top: 28px;
	transition: all 0.3s ease;
}

.float-items {
	bottom: 0;
	display: grid;
	gap: 0 10px;
	grid-template-columns: 1fr 1fr;
	left: 0;
	opacity: 0;
	padding: 0 15px;
	position: fixed;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 10;
}

.float-items.is-show {
	opacity: 1;
	visibility: visible;
}

.float-item {
	align-items: center;
	background: rgba(0, 0, 0, 0.85);
	border-radius: 10px 10px 0 0;
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	gap: 0 4px;
	height: 50px;
	justify-content: center;
	letter-spacing: 0.04em;
}

.float-item-icon {
	width: 17px;
}

/*=======================
下層
=======================*/

.pageLow-head {
	display: grid;
	height: 320px;
	place-content: center;
}

.pageLow-title {
	color: #fff;
	margin-bottom: 15px;
	position: relative;
	text-align: center;
}

.pageLow-title::before {
	font-family: "Outfit", sans-serif;
	font-size: 110px;
	font-weight: bold;
	left: 50%;
	letter-spacing: 0.11em;
	opacity: 0.1;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
}

.pageLow-title .title-en {
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.14em;
}

.pageLow-title .title-jp {
	display: block;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 34px;
	font-weight: bold;
	letter-spacing: 0.11em;
	margin-top: 18px;
}

.breadcrumb-items {
	align-items: center;
	display: flex;
	gap: 0 13px;
	padding: 26px 0;
}

.breadcrumb-bar {
	background: #373737;
	height: 1px;
	width: 22px;
}

.breadcrumb-item {
	color: #be9c24;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.06em;
}

.breadcrumb-item-link {
	color: #000;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.06em;
	transition: all 0.3s ease;
}

/*=======================
下層 / お問い合わせ
=======================*/

.page-wrapper.pageContact .pageLow-head {
	background: url(../img/head_contact_pc.png) no-repeat center center/cover;
}

.page-wrapper.pageContact .pageLow-head .pageLow-title::before {
	content: "CONTACT";
}

.page-wrapper.pageContact .btn-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-top: 35px;
}

.page-wrapper.pageContact .contact-btn {
	background: #000;
	border-radius: 70px;
	height: 60px;
	position: relative;
	width: 239px;
}

.page-wrapper.pageContact .contact-btn::after {
	background: url(../img/arrow_white_right.svg) no-repeat center center/cover;
	content: "";
	height: 10px;
	position: absolute;
	right: 30px;
	top: 50%;
	translate: 0 -50%;
	width: 5px;
}

.page-wrapper.pageContact .contact-btn input {
	background: transparent;
	border-radius: inherit;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	height: inherit;
	letter-spacing: 0.04em;
	width: inherit;
}

.page-wrapper.pageContact .contact-btn--back::after {
	left: 30px;
	right: initial;
	rotate: 180deg;
}

.contact-content {
	background: #fff;
	margin-top: 3px;
	padding-bottom: 104px;
	position: relative;
	z-index: 1;
}

.contact-content::after {
	background: #f7f7f7;
	bottom: 0;
	content: "";
	height: 70%;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.contact-txt {
	font-size: 14px;
	letter-spacing: 0.06em;
	line-height: 2.2857142857;
	margin-bottom: 64px;
	text-align: center;
}

.contact-items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	margin: 0 auto;
}

.contact-step-items {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 543px;
}

.contact-step-item {
	background: #d5d5d5;
	border-radius: 50%;
	height: 10px;
	position: relative;
	width: 10px;
}

.contact-step-item.-current {
	background: #b59a24;
}

.contact-step-item.-current .contact-step-num {
	color: #b59a24;
}

.contact-step-item.-current .contact-step-txt {
	color: #000;
}

.contact-step-num,
.contact-step-txt {
	color: #d5d5d5;
	display: block;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: -moz-max-content;
	width: max-content;
}

.contact-step-num {
	font-family: "Outfit", sans-serif;
	font-size: 17px;
	font-weight: bold;
	letter-spacing: 0.08em;
	top: -26px;
}

.contact-step-txt {
	bottom: -34px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.08em;
}

.contact-step-bar {
	background: #d5d5d5;
	height: 1px;
	width: calc((100% - 30px) / 2);
}

.contact-form-title {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.08em;
	padding-left: 13px;
	position: relative;
}

.contact-form-title::before {
	background: #be9c24;
	content: "";
	height: 26px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
}

.contact-form {
	background: #fff;
	border: 1px solid #bcbcbc;
	border-radius: 20px;
	margin-top: 74px;
	padding: 49px 50px 66px;
}

.contact-form form {
	border-top: 1px solid #bcbcbc;
	margin-top: 19px;
	padding-top: 28px;
}

.contact-form dl {
	display: flex;
	gap: 0 44px;
	margin-bottom: 20px;
}

.contact-form dl:last-of-type {
	margin-bottom: 0;
}

.contact-form dl.radio input {
	height: auto;
	width: auto;
}

.contact-form dt,
.contact-form dd {
	align-items: center;
	display: flex;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.625;
}

.contact-form dt {
	display: flex;
	justify-content: space-between;
	width: 190px;
}

.contact-form dd {
	width: calc(100% - 190px - 44px);
	word-break: break-all;
}

.contact-form .wpcf7-form-control-wrap {
	width: 100%;
}

.contact-form .contact-dt-txt {
	margin-right: auto;
	padding-left: 2px;
	width: 145px;
}

.contact-form .required {
	align-items: center;
	background: #b59a24;
	color: #fff;
	display: flex;
	font-size: 14px;
	font-weight: bold;
	height: 22px;
	justify-content: center;
	letter-spacing: 0.08em;
	width: 42px;
}

.contact-form .text-multi {
	align-items: flex-start;
	border-top: 1px solid #bcbcbc;
	padding-top: 30px;
}

.contact-form .text-multi dt {
	align-items: start;
}

.contact-form .text-multi dt .required {
	margin-top: 4px;
}

.contact-form input[type=radio] {
	margin: 0;
	opacity: 0;
	position: absolute;
}

.contact-form input[type=radio]:focus-visible + span::before {
	outline: auto 1px;
}

.contact-form input[type=radio] + span {
	cursor: pointer;
	margin-left: 27px;
	position: relative;
}

.contact-form input[type=radio] + span::before {
	background: #fff;
	border: 1px solid #000;
	border-radius: 50%;
	content: "";
	display: block;
	height: 18px;
	left: -25px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
}

.contact-form input[type=radio] + span::after {
	background: #000;
	border: 1px solid transparent;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: -20px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.contact-form input[type=radio]:checked + span::after {
	opacity: 1;
}

input,
select,
textarea {
	background: #f5f5f5;
	border: none;
	border-radius: initial;
	font-size: 16px;
	letter-spacing: 0.08em;
	line-height: 1.625;
	padding: 10px;
	width: 100%;
}

input,
select {
	height: 60px;
}

textarea {
	height: 178px;
}

.wpcf7-spinner {
	bottom: -34px;
	left: 50%;
	margin: 0;
	position: absolute;
	transform: translateX(-50%);
}

span.wpcf7-form-control.wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 15px;
}

.wpcf7-list-item {
	margin: 0;
}

.wpcf7 form .wpcf7-response-output {
	display: none;
}

/*=======================
下層 / お問い合わせ確認
=======================*/

.pageConfirm .contact-step-items,
.pageThanks .contact-step-items {
	margin-top: 50px;
}

.pageConfirm .confirm-box,
.pageThanks .confirm-box {
	margin-top: 100px;
}

.pageConfirm .confirm-box dl,
.pageThanks .confirm-box dl {
	display: grid;
	grid-template-columns: 220px 1fr;
}

.pageConfirm .confirm-box dl:last-of-type dt,
.pageConfirm .confirm-box dl:last-of-type dd,
.pageThanks .confirm-box dl:last-of-type dt,
.pageThanks .confirm-box dl:last-of-type dd {
	border-bottom: none;
}

.pageConfirm .confirm-box dt,
.pageConfirm .confirm-box dd,
.pageThanks .confirm-box dt,
.pageThanks .confirm-box dd {
	align-items: center;
	display: flex;
	font-size: 16px;
	letter-spacing: 0.08em;
	min-height: 90px;
	padding: 30px;
	word-break: break-all;
}

.pageConfirm .confirm-box dt,
.pageThanks .confirm-box dt {
	background: #121212;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-weight: bold;
}

.pageConfirm .confirm-box dd,
.pageThanks .confirm-box dd {
	background: #f2f2f2;
	border-bottom: 1px solid #c6c6c6;
}

.pageConfirm .confirm-box .btn-wrapper,
.pageThanks .confirm-box .btn-wrapper {
	margin-top: 50px;
}

.pageThanks .contact-content::after {
	height: 80%;
}

.thanks-box {
	margin-top: 160px;
	text-align: center;
}

.thanks-title {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.4;
}

.thanks-text {
	font-size: 16px;
	letter-spacing: 0.08em;
	line-height: 1.4;
	margin-top: 30px;
}

.thanks-btn {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

/*=======================
プライバシーポリシー
=======================*/

.page-wrapper.pagePrivacy .pageLow-head {
	background: url(../img/head_privacy_pc.png) no-repeat center center/cover;
}

.page-wrapper.pagePrivacy .pageLow-head .pageLow-title::before {
	content: "PRIVACY POLICY";
}

.privacy-content {
	margin-top: 18px;
}

.privacy-text {
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2.125;
}

.privacy-text:nth-of-type(1) {
	margin-top: 20px;
}

.privacy-sec-items {
	background: #f7f7f7;
	margin-top: 54px;
	padding-bottom: 165px;
	position: relative;
	z-index: 1;
}

.privacy-sec-items::before {
	background: #fff;
	content: "";
	height: calc(100% - 90px);
	left: 50%;
	position: absolute;
	top: 0;
	translate: -50% 0;
	width: 1200px;
	z-index: 0;
}

.privacy-sec-item {
	background: #fff;
	margin-bottom: 50px;
	position: relative;
}

.privacy-sec-item:last-of-type {
	margin-bottom: 0;
}

.privacy-title {
	border-bottom: 1px solid #000;
	border-top: 1px solid #000;
	display: grid;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin-bottom: 34px;
	padding: 30px 0;
	place-content: center;
	width: 100%;
}

@media (hover: hover) and (pointer: fine) {

.btn:hover {
	opacity: 0.5;
}

.nav-item-link:hover {
	color: #be9c24;
}

.nav-item-link:hover::after {
	transform: scaleX(1);
}

.trainer-link:hover {
	opacity: 0.5;
}

.footer-link:hover {
	opacity: 0.5;
}

.top-scroll:hover {
	opacity: 0.5;
}

.breadcrumb-item-link:hover {
	opacity: 0.7;
}

}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {

.btn:hover {
	opacity: 0.5;
}

.nav-item-link:hover {
	color: #be9c24;
}

.nav-item-link:hover::after {
	transform: scaleX(1);
}

.trainer-link:hover {
	opacity: 0.5;
}

.footer-link:hover {
	opacity: 0.5;
}

.top-scroll:hover {
	opacity: 0.5;
}

.breadcrumb-item-link:hover {
	opacity: 0.7;
}

}

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

html { /* 1rem = 10px設定*/ /* 10px / カンプ幅(ex.1440px) × 100% = 0.515463vw*/
	font-size: 0.6944444444vw;
}

}

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

html { /* 1rem = 10px設定*/ /* 10px / 375 * 100% */
	font-size: 2.6666666667vw;
}

.inner {
	margin-inline: auto;
	max-width: initial;
	width: 33.5rem;
}

.sec-title--deco .title-en::after {
	bottom: -0.1rem;
	height: 0.1rem;
	width: 4.6rem;
}

.sec-title .title-en {
	font-size: 1.2rem;
	line-height: 2.5;
}

.sec-title .title-jp {
	font-size: 2.8rem;
	line-height: 1.3928571429;
	margin-top: 0.9rem;
}

.bg-color {
	font-size: 2.6rem;
	padding-left: 0.6rem;
}

br.is-pc {
	display: none;
}

br.is-sp {
	display: inline;
}

span.is-pc {
	display: none;
}

span.is-sp {
	display: inline;
}

.header {
	height: 4.8rem;
	padding-left: 1.2rem;
	place-content: initial;
}

.header-text {
	align-items: center;
	display: flex;
	font-size: 1rem;
	letter-spacing: 0.02em;
	line-height: 1.4;
	padding-right: 2rem;
	text-align: left;
}

.drawer-icon {
	background: #be9c24;
	cursor: pointer;
	display: grid;
	height: 4.8rem;
	place-content: center;
	width: 4.8rem;
}

.drawer-bars {
	height: 1.4rem;
	position: relative;
	width: 1.9rem;
}

.drawer-bar {
	background: #fff;
	height: 0.1rem;
	position: absolute;
	transition: all 0.3s ease;
	width: 1.9rem;
}

.drawer-bar.bar01 {
	top: 0;
}

.drawer-bar.bar02 {
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
}

.drawer-bar.bar03 {
	bottom: 0;
	top: initial;
}

.drawer-bar.is-active.bar01 {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.drawer-bar.is-active.bar02 {
	opacity: 0;
	visibility: hidden;
}

.drawer-bar.is-active.bar03 {
	bottom: initial;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.drawer {
	background: #fff;
	display: block;
	height: calc(100dvh - 4.8rem);
	overflow-y: scroll;
	position: fixed;
	right: 0;
	top: 4.8rem;
	transform: translateX(100%);
	transition: all 0.3s ease;
	width: 100%;
	z-index: 20;
}

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

.drawer-container {
	background: #fff;
	padding-bottom: 5.5rem;
	padding-top: 2rem;
	position: relative;
}

.drawer-container::before {
	background: #000;
	content: "";
	inset: 0;
	opacity: 0.8;
	position: absolute;
}

.drawer-nav {
	margin-inline: auto;
	position: relative;
	width: 32rem;
}

.drawer-item {
	border-bottom: 1px solid #fff;
	padding: 1rem 0;
}

.drawer-item-link {
	color: #fff;
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
	padding: 1rem 0;
	position: relative;
}

.drawer-item-link::after {
	background: url(../img/arrow_white_right.svg) no-repeat center/cover;
	content: "";
	height: 0.7rem;
	position: absolute;
	right: 1.6rem;
	top: 50%;
	translate: 0 -50%;
	width: 0.4rem;
}

.drawer-item-link::-webkit-details-marker {
	display: none;
}

.js-drawer-details > .drawer-item-link {
	padding-right: 4rem;
}

.js-drawer-details > .drawer-item-link::before,
.js-drawer-details > .drawer-item-link::after {
	background: #fff;
	content: "";
	height: 0.1rem;
	position: absolute;
	right: 1.4rem;
	top: 50%;
	transition: transform 0.28s ease;
	width: 0.9rem;
}

.js-drawer-details > .drawer-item-link::before {
	transform: translateY(-50%) rotate(90deg);
}

.js-drawer-details > .drawer-item-link::after {
	transform: translateY(-50%) rotate(0deg);
}

.drawer-subitems-wrapper {
	overflow: hidden;
}

.drawer-subitems {
	contain: layout paint;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	padding: 0 3.5rem 1rem;
}

.drawer-subitem-link {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 500;
}

.drawer-btn-wrapper {
	display: grid;
	gap: 1.5rem;
	margin: 2.8rem auto 0;
	position: relative;
	z-index: 1;
}

.drawer-btn {
	background: #fff;
	border-radius: 7rem;
	color: #222;
	display: grid;
	font-size: 1.3rem;
	height: 5.3rem;
	letter-spacing: 0.02em;
	margin-inline: auto;
	place-content: center;
	width: 26rem;
}

.drawer-btn::before,
.drawer-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
}

.drawer-btn::before {
	left: 3.3rem;
}

.drawer-btn::after {
	background: url(../img/arrow-black-right.svg) no-repeat center center/cover;
	height: 0.9rem;
	right: 2.5rem;
	width: 0.5rem;
}

.drawer-btn--mail::before {
	background: url(../img/icon_letter_black.svg) no-repeat center center/cover;
	height: 1.5rem;
	width: 2rem;
}

.drawer-btn--line::before {
	background: url(../img/icon_line_black.svg) no-repeat center center/cover;
	height: 1.8rem;
	width: 1.9rem;
}

.fv-container {
	height: initial;
}

.fv-nav-bar {
	display: none;
}

.fv-slider {
	height: 26rem;
}

.fv-slider .swiper-pagination {
	gap: 1.2rem;
	right: 0.8rem;
	top: 47%;
}

.fv-slider .swiper-pagination-bullet {
	height: 3rem;
	margin: 0 !important;
	width: 3rem;
}

.fv-slider .swiper-pagination .bullet-dot {
	height: 0.3rem;
	width: 0.3rem;
}

.fv-slider .bullet-ring {
	height: 3rem;
	margin-left: -1.5rem;
	margin-top: -1.5rem;
	width: 3rem;
}

.fv-img {
	position: static;
}

.fv-content {
	margin-inline: auto;
	padding-top: 2.8rem;
	position: static;
	translate: initial;
	width: 33.5rem;
}

.fv-scroll {
	right: 2.5rem;
	top: 33.4rem;
}

.fv-scroll-text {
	color: #3c3c3c;
	font-size: 1.1rem;
	gap: 1.1rem;
	width: 0.1rem;
}

.fv-scroll-text::before {
	height: 0.7rem;
	width: 0.7rem;
}

.fv-scroll-text::after {
	background: #3c3c3c;
	height: 7.8rem;
	width: 0.1rem;
}

.fv-copy {
	color: #121212;
	text-align: left;
}

.fv-copy-main {
	font-size: 2.6rem;
	letter-spacing: 0.06em;
	line-height: 1.3846153846;
	margin-top: 0.8rem;
}

.fv-copy-main::after {
	background: #3c3c3c;
	bottom: -1.6rem;
	height: 0.1rem;
	left: 0;
	transform: initial;
	width: 28rem;
}

.fv-copy-sub {
	font-size: 1.2rem;
	letter-spacing: 0.02em;
	line-height: 1.1666666667;
}

.fv-copy-en {
	color: #3c3c3c;
	font-size: 1.3rem;
	letter-spacing: 0.12em;
	line-height: 1.8461538462;
	margin-top: 2.8rem;
}

.fv-items {
	gap: 0 0.7rem;
	margin-top: 3.5rem;
	position: relative;
	z-index: 1;
}

.fv-item {
	font-size: 1.3rem;
	height: 10.7rem;
	letter-spacing: 0em;
	line-height: 1.2307692308;
	width: 10.7rem;
}

.loop-items {
	bottom: -4rem;
	z-index: 0;
}

.loop-item {
	color: #ededed;
	font-size: 7.4rem;
	letter-spacing: 0.1em;
}

.concept {
	padding: 4.6rem 0 9rem;
}

.concept-content {
	gap: 1.9rem;
	grid-template-columns: 1fr;
	grid-template-rows: initial;
}

.concept-title {
	padding-top: 3.6rem;
}

.concept-title .title-jp {
	font-size: 2.4rem;
	line-height: 1.5416666667;
	margin-top: 0.1rem;
}

.concept-text {
	font-size: 1.6rem;
	grid-row: 3/4;
	line-height: 2.625;
	margin-top: 0.3rem;
	padding-right: initial;
}

.concept-img {
	grid-column: 1/2;
	grid-row: 2/3;
}

.concept-items {
	gap: 6rem;
	grid-template-columns: 1fr;
	margin-top: -1.1rem;
}

.concept-item figcaption {
	bottom: -4rem;
	font-size: 1.8rem;
	min-height: 5.4rem;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.recommend {
	padding: 2.6rem 0 5rem;
}

.recommend-title {
	margin-left: initial;
}

.recommend-title .title-en {
	font-size: 5.3rem;
	line-height: 0.9433962264;
}

.recommend-title .title-jp {
	font-size: 2.1rem;
	padding: 0.4rem 0;
	top: 44%;
	width: 100%;
}

.recommend-content {
	gap: 1rem;
	grid-template-columns: 1fr;
	margin-top: -0.4rem;
}

.recommend-items {
	padding: 1.1rem 0.9rem 1.7rem;
}

.recommend-items::before {
	display: none;
}

.recommend-item {
	font-size: 1.6rem;
	line-height: 1.375;
	padding: 1.5rem 1.6rem 1.5rem 4.8rem;
}

.recommend-item::before {
	height: 2rem;
	left: 1.5rem;
	top: 1.6rem;
	width: 2.4rem;
}

.features {
	max-width: initial;
	padding: 4.6rem 0 4.7rem;
}

.features-items {
	gap: 0.8rem;
	margin-top: 0.4rem;
}

.features-item::before {
	display: none;
}

.features-item-container {
	gap: initial !important;
	grid-template-columns: 1fr !important;
	grid-template-rows: initial !important;
	max-width: initial;
	width: 33.5rem;
}

.features-item-img {
	grid-column: 1/2 !important;
	grid-row: 3/4 !important;
	margin-top: 1.2rem;
}

.features-item-num {
	font-size: 1.4rem;
	grid-column: 1/2;
}

.features-item-title {
	font-size: 2.8rem;
	grid-column: 1/2;
	margin-top: 1.7rem;
}

.features-item-text {
	font-size: 1.6rem;
	grid-column: 1/2;
	grid-row: 4/5;
	line-height: 2.625;
	margin-top: 1.6rem;
}

.trainer {
	grid-template-columns: 1fr;
	min-height: initial;
}

.trainer-content {
	grid-row: 2/3;
	padding: 4.7rem 2rem 1.3rem;
}

.trainer-content-container {
	max-width: initial;
}

.trainer-title {
	font-size: 5.4rem;
}

.trainer-job {
	font-size: 1.4rem;
	margin-top: 1.9rem;
}

.trainer-info {
	gap: 0 1.5rem;
	grid-template-columns: 1fr 4.2rem;
	margin-top: 1.2rem;
	padding-right: 1.6rem;
}

.trainer-name {
	gap: 0.9rem;
	padding: 1.4rem 1.1rem;
}

.name-jp {
	font-size: 2.2rem;
}

.name-en {
	font-size: 1.2rem;
	margin-top: 0.4rem;
}

.trainer-items {
	border-width: 0.2rem;
	gap: 1.8rem;
	margin-top: 1.1rem;
	padding-top: 2.8rem;
}

.trainer-item {
	font-size: 1.6rem;
}

.trainer-item::before {
	height: 0.4rem;
	left: 0.6rem;
	top: 1.1rem;
	width: 0.4rem;
}

.trainer-img {
	grid-row: 1/2;
}

.trainer-img img {
	height: auto;
	left: initial;
	position: static;
	top: initial;
	translate: initial;
}

.movie {
	padding: 2.7rem 0 5.7rem;
}

.location {
	padding: 3.2rem 2.2rem 3.6rem;
}

.location::after {
	bottom: initial;
	font-size: 8rem;
	top: 50%;
	translate: 0 -50%;
	writing-mode: vertical-lr;
}

.mini-title {
	font-size: 2.2rem;
	padding-left: 1.8rem;
}

.mini-title::before {
	height: 2.5rem;
	width: 0.3rem;
}

.location-items {
	gap: 2.4rem 0;
}

.location-item {
	width: 100%;
}

.location-item-title {
	font-size: 1.8rem;
	line-height: 1.3333333333;
	margin-bottom: 0.6rem;
}

.location-item-text {
	font-size: 1.6rem;
}

.location-item-text:last-of-type {
	margin-top: 1.3rem;
}

.location-item-attention {
	font-size: 1.2rem;
	margin-top: 2.8rem;
}

.movie-content {
	margin-top: 2rem;
	padding-top: 55.3571428571%;
}

.instagram {
	padding: 5.3rem 0 5rem;
}

.instagram-items,
#sbi_images {
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
	margin-top: 2rem;
}

.instagram-btn {
	border-radius: 4rem;
	border-width: 0.3rem;
	box-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.1607843137);
	font-size: 1.7rem;
	height: 6.6rem;
	margin-top: 3.7rem;
	width: 100%;
}

.instagram-btn::after {
	height: 1rem;
	right: 2.2rem;
	width: 0.5rem;
}

.voice {
	padding: 4.2rem 0 5.7rem;
}

.voice-text {
	font-size: 1.6rem;
	line-height: 2;
	margin-top: 1.2rem;
}

.voice-slider {
	margin-top: 2.6rem;
}

.voice-slider .swiper-wrapper {
	max-width: initial;
}

.voice-slider .swiper-slide {
	height: auto;
	margin: 0 1rem;
	min-height: initial;
	width: 29.5rem;
}

.voice-slider .swiper-button-prev,
.voice-slider .swiper-button-next {
	display: none;
}

.voice-content {
	display: flex;
	flex-direction: column;
	gap: 1.7rem;
	padding: 3.2rem 3rem 3.4rem;
}

.voice-content-left {
	align-items: start;
	display: grid;
	gap: 1rem;
	grid-template-columns: 7.7rem 1fr;
}

.voice-content-info {
	gap: 0.6rem;
	margin-top: initial;
}

.voice-content-info-item {
	grid-template-columns: 4.8rem 1fr;
}

.voice-content-info-item dt,
.voice-content-info-item dd {
	font-size: 1.4rem;
}

.voice-content-info-item dt {
	border-width: 0.2rem;
	padding: 0.8rem 0;
}

.voice-content-info-item dd {
	border-width: 0.2rem;
	padding: 0.8rem 0.2rem 0.8rem 1rem;
}

.voice-content-title {
	font-size: 1.8rem;
	line-height: 1.3888888889;
}

.voice-content-title::before {
	width: 0.3rem;
}

.voice-content-text {
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
	margin-left: initial;
	margin-top: 0.9rem;
}

.voice-content-gallery {
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
}

.price {
	padding-bottom: 5.1rem;
	padding-top: 4.2rem;
}

.price-items {
	gap: 1.9rem;
	margin-top: 2.2rem;
}

.price-item--attention .price-content-title {
	margin-bottom: 1.1rem;
	margin-top: 2.2rem;
}

.price-item-title {
	display: block;
	height: initial;
	min-height: 8rem;
	padding: 1.8rem 2.2rem 1.6rem;
	width: 100%;
}

.price-item-title .title-jp {
	font-size: 2.2rem;
}

.price-item-title .title-en {
	display: block;
	font-size: 1.4rem;
	margin-top: 1rem;
}

.price-item-title--w100 .title-jp {
	line-height: 1.5454545455;
}

.price-content {
	padding: 2.5rem 1.6rem 2.8rem 1.9rem;
}

.price-content-txt {
	font-size: 1.6rem;
	line-height: 1.875;
}

.price-content-title {
	font-size: 2rem;
	padding-left: 1.5rem;
}

.price-content-title::before {
	height: 0.8rem;
	width: 0.8rem;
}

.price-box {
	gap: 1rem 0;
	grid-template-columns: 1fr;
	margin-top: 1.7rem;
}

.price-table th,
.price-table td {
	width: 50% !important;
}

.price-table th {
	font-size: 1.6rem;
	height: 4.6rem;
}

.price-table td {
	padding: 1.4rem;
}

.price-table td.bottom-none {
	padding-bottom: 1.1rem;
}

.price-table td.bottom-none::after {
	bottom: 0.5rem;
	height: 0.1rem;
	width: 11.1rem;
}

.price-table:first-of-type td {
	font-size: 1.6rem;
}

.price-table:first-of-type td .font-large {
	font-size: 2.1rem;
}

.price-table:first-of-type td .font-small {
	font-size: 1.4rem;
}

.price-table:last-of-type {
	border: 1px solid #121212;
}

.price-table:last-of-type th,
.price-table:last-of-type td {
	border: 1px solid #121212;
}

.price-table:last-of-type td {
	font-feature-settings: "palt";
	font-size: 1.4rem;
	padding: 1.9rem 1.4rem;
}

.price-table:last-of-type td .price-list-item {
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	line-height: 1.6428571429;
}

.price-list-item {
	font-size: 1.6rem;
	line-height: 1.875;
	padding-left: 0.9rem;
}

.price-list-item::before {
	height: 0.3rem;
	top: 1.5rem;
	width: 0.3rem;
}

.message {
	max-width: initial;
	padding: 5.7rem 0 3.6rem;
}

.message-inner {
	width: 33.5rem !important;
}

.message-content {
	display: block;
	margin-top: 1.9rem;
}

.message-img {
	height: auto;
	max-width: initial;
}

.message-img img {
	height: auto;
	left: initial;
	position: static;
	top: initial;
	translate: initial;
}

.message-box {
	padding-right: initial;
	padding-top: 1.7rem;
}

.message-lead {
	font-size: 2.2rem;
	padding-left: 1.8rem;
}

.message-lead::before {
	height: 0.3rem;
	height: 91%;
	top: 56%;
	translate: 0 -50%;
}

.message-text {
	font-size: 1.6rem;
	line-height: 2.625;
	margin-top: 0.9rem;
	max-width: initial;
}

.message-bg {
	align-items: end;
	height: 63rem;
	max-width: initial;
	width: 28.6rem;
}

.message-bg-text {
	font-size: 8.8rem;
	margin-bottom: 1.9rem;
	writing-mode: vertical-lr;
}

.faq-bg {
	bottom: -1.8rem;
	font-size: 12.6rem;
	left: 50%;
	translate: -50% 0;
}

.faq {
	padding: 5.9rem 0 7.8rem;
}

.faq-items-title {
	margin-top: 4rem;
}

.faq-items {
	gap: 1.8rem 0;
	margin-top: 2.6rem;
}

.faq-item-question {
	gap: 0 1.2rem;
	grid-template-columns: 1fr 3.2rem;
	min-height: 8.2rem;
	padding: 0.9rem 1.5rem 0.9rem 2rem;
}

.faq-item-title::before {
	top: -0.4rem;
}

.faq-item-title::before,
.faq-item-answer-container::before {
	font-size: 2.3rem;
}

.faq-item-title,
.faq-item-answer-container {
	font-size: 1.6rem;
	padding-left: 3.7rem;
}

.faq-item-btn {
	height: 3.2rem;
	width: 3.2rem;
}

.faq-item-btn .btn-bar {
	height: 0.1rem;
	width: 1.4rem;
}

.faq-item-answer {
	padding: 0 2.1rem;
}

.faq-item-answer-container::before {
	top: 0.6rem;
}

.faq-item-answer-container {
	padding: 1.5rem 0 1.9rem 4rem;
}

.cta {
	padding: 6.1rem 0 3.7rem;
}

.cta-text {
	font-feature-settings: "palt";
	font-size: 1.6rem;
	line-height: 2;
	margin-top: 1.5rem;
}

.cta-items {
	display: block;
	margin-top: 1.4rem;
}

.cta-item {
	margin-inline: auto;
	padding: 2.2rem 0 3.1rem;
}

.cta-item:first-of-type {
	border-bottom: 1px solid #fff;
	border-right: none;
	padding-right: initial;
}

.cta-item:first-of-type .cta-icon {
	height: 4.3rem;
	width: 4.5rem;
}

.cta-item:last-of-type {
	padding-left: initial;
	padding-top: 3.2rem;
}

.cta-item:last-of-type .cta-icon {
	height: 3.8rem;
	width: 4.7rem;
}

.cta-item:last-of-type .cta-item-title {
	margin-top: 1.7rem;
}

.cta-item-title {
	font-size: 1.8rem;
	margin-top: 1.4rem;
}

.cta-btn {
	font-size: 1.5rem;
	height: 6rem;
	margin-top: 2.5rem;
	width: 26rem;
}

.footer {
	padding: 5.8rem 0 8.7rem;
}

.footer::after {
	height: 1.5rem;
}

.footer-nav {
	display: block;
}

.footer-nav-items {
	display: grid;
	gap: 3.1rem;
	grid-template-columns: 1fr;
}

.footer-nav-item-link {
	font-size: 1.8rem;
	letter-spacing: 0.08em;
	line-height: 1.4444444444;
}

.footer-link {
	font-size: 1.6rem;
	letter-spacing: 0.08em;
	margin-left: initial;
	margin-right: initial;
	margin-top: 5.5rem;
}

.copyright {
	font-size: 1.6rem;
	letter-spacing: 0.08em;
	line-height: 1.8125;
	margin-top: 2.6rem;
	text-align: left;
}

.top-scroll {
	height: 10.8rem;
	right: 2.1rem;
	top: 5.8rem;
	width: 2.9rem;
}

.float-items {
	gap: 0 0.7rem;
	padding: initial;
}

.float-item {
	font-size: 1.2rem;
	gap: 0 0.4rem;
	height: 5rem;
}

.float-item:first-of-type {
	border-radius: 0 0.8rem 0 0;
}

.float-item:last-of-type {
	border-radius: 0.8rem 0 0 0;
}

.float-item-icon {
	width: 1.9rem;
}

.pageLow-head {
	height: 17rem;
}

.pageLow-title {
	margin-bottom: 0.3rem;
}

.pageLow-title::before {
	font-size: 5.2rem;
	letter-spacing: 0.14em;
}

.pageLow-title .title-en {
	font-size: 1.2rem;
}

.pageLow-title .title-jp {
	font-size: 2.6rem;
	margin-top: 1.4rem;
}

.breadcrumb-items {
	gap: 0 2rem;
	padding: 2.6rem 0;
}

.breadcrumb-bar {
	height: 0.1rem;
	width: 2.2rem;
}

.breadcrumb-item {
	font-size: 1.2rem;
}

.breadcrumb-item-link {
	font-size: 1.4rem;
}

.page-wrapper.pageContact .pageLow-head {
	background-image: url(../img/head_contact_sp.png);
}

.page-wrapper.pageContact .btn-wrapper {
	gap: 1rem;
	margin-top: 2.2rem;
}

.page-wrapper.pageContact .contact-btn {
	border-radius: 7rem;
	height: 5.2rem;
	width: 23.9rem;
}

.page-wrapper.pageContact .contact-btn::after {
	height: 1rem;
	right: 3rem;
	width: 0.5rem;
}

.page-wrapper.pageContact .contact-btn input {
	font-size: 1.3rem;
}

.page-wrapper.pageContact .contact-btn--back::after {
	left: 3rem;
}

.contact-content {
	margin-top: initial;
	padding-bottom: 5.6rem;
	padding-top: initial;
}

.contact-txt {
	font-size: 1.4rem;
	line-height: 2.2857142857;
	margin-bottom: 5.5rem;
	text-align: left;
}

.contact-items {
	gap: 1.6rem 0;
}

.contact-step-items {
	max-width: initial;
	width: 28.4rem;
}

.contact-step-item {
	height: 0.8rem;
	width: 0.8rem;
}

.contact-step-num {
	font-size: 1.3rem;
	letter-spacing: 0.03em;
	top: -1.8rem;
}

.contact-step-txt {
	bottom: -2.6rem;
	font-size: 1.2rem;
}

.contact-step-bar {
	height: 0.1rem;
	width: 13rem;
}

.contact-form-title {
	font-size: 2rem;
}

.contact-form-title::before {
	height: 2.6rem;
	width: 0.3rem;
}

.contact-form {
	border-radius: 1rem;
	margin-top: 5.7rem;
	padding: 3.6rem 1.9rem 4.9rem;
}

.contact-form form {
	border: none;
	margin-top: 1.9rem;
	padding-top: 2.2rem;
}

.contact-form dl {
	display: block;
	margin-bottom: 1.5rem;
}

.contact-form dt,
.contact-form dd {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.8571428571;
	width: 100%;
}

.contact-form dt {
	gap: 1rem;
	justify-content: initial;
	letter-spacing: 0.04em;
	margin-bottom: 0.6rem;
}

.contact-form dd {
	letter-spacing: 0.06em;
}

.contact-form .contact-dt-txt {
	margin-right: 0.9rem;
	padding-left: 0.4rem;
	width: -moz-fit-content;
	width: fit-content;
}

.contact-form .required {
	font-size: 1.2rem;
	font-weight: 500;
	height: 2rem;
	letter-spacing: normal;
	padding-bottom: 0.2rem;
	width: 4.4rem;
}

.contact-form .text-multi {
	align-items: center;
	padding-top: 1.7rem;
}

.contact-form .text-multi dt {
	align-items: center;
}

.contact-form .text-multi dt .required {
	margin-top: initial;
}

.contact-form input[type=radio]:focus-visible + span::before {
	outline: auto 0.1rem;
}

.contact-form input[type=radio] + span {
	margin-left: 2.7rem;
}

.contact-form input[type=radio] + span::before {
	border-width: 0.1rem;
	height: 1.8rem;
	left: -2.7rem;
	width: 1.8rem;
}

.contact-form input[type=radio] + span::after {
	border-width: 0.1rem;
	height: 0.8rem;
	left: -2.2rem;
	width: 0.8rem;
}

input,
select,
textarea {
	font-size: 1.4rem;
	line-height: 1.8571428571;
	padding: 1rem;
}

input,
select {
	height: 4rem;
}

textarea {
	height: 12rem;
}

span.wpcf7-form-control.wpcf7-radio {
	display: block;
}

span.wpcf7-form-control.wpcf7-radio label {
	display: block;
	margin-bottom: 1.4rem;
}

span.wpcf7-form-control.wpcf7-radio label:last-of-type {
	margin-bottom: 0;
}

.wpcf7-list-item {
	display: block;
	margin-bottom: 0.3rem;
}

.wpcf7-list-item:last-child {
	margin-bottom: 0;
}

.pageConfirm .contact-step-items,
.pageThanks .contact-step-items {
	margin-top: 3.5rem;
}

.pageConfirm .confirm-box,
.pageThanks .confirm-box {
	margin-top: 8rem;
}

.pageConfirm .confirm-box dl,
.pageThanks .confirm-box dl {
	grid-template-columns: 11.5rem 1fr;
}

.pageConfirm .confirm-box dt,
.pageConfirm .confirm-box dd,
.pageThanks .confirm-box dt,
.pageThanks .confirm-box dd {
	font-size: 1.2rem;
	min-height: 6rem;
	padding: 1rem 0.5rem;
}

.pageConfirm .confirm-box .btn-wrapper,
.pageThanks .confirm-box .btn-wrapper {
	margin-top: 4rem;
}

.thanks-box {
	margin-top: 12rem;
}

.thanks-title {
	font-size: 2.2rem;
}

.thanks-text {
	font-size: 1.6rem;
	margin-top: 2.2rem;
}

.thanks-btn {
	font-size: 1.3rem;
}

.page-wrapper.pagePrivacy .pageLow-head {
	background-image: url(../img/head_privacy_sp.png);
}

.privacy-content {
	margin-top: 1.8rem;
}

.privacy-text {
	font-size: 1.4rem;
}

.privacy-text:nth-of-type(1) {
	margin-top: 2rem;
}

.privacy-sec-items {
	margin-top: 3rem;
	padding-bottom: 10rem;
}

.privacy-sec-items::before {
	height: 98%;
	width: 100%;
}

.privacy-sec-item {
	margin-bottom: 4rem;
}

.privacy-title {
	font-size: 2.2rem;
	margin-bottom: 2rem;
	padding: 2rem 0;
}

}

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

.inner {
	width: 95%;
}

.concept-content {
	align-items: end;
	gap: 21px 20px;
}

.features-item::before {
	font-size: 40px;
}

}

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

.nav-items {
	gap: 0 20px;
}

.nav-item-link {
	font-size: 14px;
}

.header-text {
	font-size: 12px;
}

.recommend-title .title-en {
	font-size: 80px;
}

.features-item-container {
	gap: 0 20px;
	padding: 0 2.5%;
}

}

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

.voice-slider .swiper-button-prev {
	left: 20px;
}

.voice-slider .swiper-button-next {
	right: 20px;
}

}

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

.voice-content-gallery {
	grid-template-columns: 1fr 1fr;
}

}

@keyframes scroll-dot {

0% {
	top: 45%;
}

100% {
	top: 100%;
}

}

@keyframes loop-slide {

from {
	transform: translateX(0);
}

to {
	transform: translateX(-100%);
}

}

