/* =========================================================
   GROW BASE ATHLETE - main.css
   トークン設計:
   --gb-main   : メインカラー(ヘッダー/フッター/見出し等)
   --gb-accent : アクセントカラー(CTA/リンク/装飾)
   --gb-sub    : サブ背景色(セクション背景の淡色)
   --gb-dark   : 濃色(オーバーレイ等)
   ========================================================= */

:root {
	--gb-main: #12233d;
	--gb-accent: #f2762e;
	--gb-sub: #e9eef5;
	--gb-dark: #0b1626;

	--gb-font-en: 'Oswald', sans-serif;
	--gb-font-jp: 'Zen Kaku Gothic New', sans-serif;

	--gb-header-h: 84px;
	--gb-sp-footer-h: 60px;
	--gb-radius: 6px;
	--gb-ease: cubic-bezier(.22, .61, .36, 1);
}

@media (max-width: 767px) {
	:root { --gb-header-h: 64px; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--gb-font-jp);
	color: #22282f;
	background: #fff;
	line-height: 1.8;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.sp-only { display: none; }
@media (max-width: 767px) {
	.sp-only { display: inline; }
	.pc-only { display: none; }
}

/* =========================================================
   共通レイアウト
   ========================================================= */
.sec-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}
.sec-inner--narrow { max-width: 880px; }
.sec-inner--wide { max-width: 1360px; }

@media (max-width: 767px) {
	.sec-inner { padding: 0 20px; }
}

.sec { padding: 96px 0; }
@media (max-width: 767px) {
	.sec { padding: 64px 0; }
}
.sec:nth-of-type(even) { background: var(--gb-sub); }

.sec-head { position: relative; text-align: center; margin-bottom: 56px; }
.sec-head[data-bgtext]:not([data-bgtext=""])::before {
	content: attr(data-bgtext);
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -55%);
	font-family: var(--gb-font-bgtext);
	font-size: clamp(56px, 11vw, 150px);
	font-weight: 700;
	color: var(--gb-main);
	opacity: .05;
	white-space: nowrap;
	pointer-events: none;
	z-index: 0;
	line-height: 1;
}
.sec-head > * { position: relative; z-index: 1; }
.sec-en {
	display: block;
	font-family: var(--gb-font-en);
	font-size: 13px;
	letter-spacing: .35em;
	color: var(--gb-accent);
	font-weight: 600;
	margin-bottom: 10px;
}
.sec-title {
	position: relative;
	display: inline-block;
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 700;
	color: var(--gb-main);
	letter-spacing: .03em;
	padding-bottom: 20px;
}
.sec-title::after {
	content: '';
	position: absolute;
	left: 50%; bottom: 0;
	width: 44px; height: 3px;
	background: var(--gb-accent);
	border-radius: 2px;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	transition: transform .6s var(--gb-ease);
}
.sec-head.is-visible .sec-title::after,
.sec-head.reveal.is-visible .sec-title::after { transform: translateX(-50%) scaleX(1); }
.sec-lead { margin-top: 16px; color: #5a6472; }

.btn-more {
	display: inline-block;
	padding: 14px 36px;
	border: 1px solid var(--gb-main);
	border-radius: 999px;
	color: var(--gb-main);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .05em;
	transition: background .3s var(--gb-ease), color .3s var(--gb-ease);
	background: none;
}
.btn-more:hover { background: var(--gb-main); color: #fff; }
.sec-more { text-align: center; margin-top: 40px; }

/* =========================================================
   オープニングアニメーション
   ========================================================= */
.gb-opening {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: var(--gb-main);
	display: flex;
	align-items: center;
	justify-content: center;
	--gb-opening-out: 700ms;
	transition: opacity var(--gb-opening-out) var(--gb-ease), visibility var(--gb-opening-out) var(--gb-ease);
}
.gb-opening.is-hide { opacity: 0; visibility: hidden; pointer-events: none; }

.gb-opening__inner { position: relative; text-align: center; color: #fff; }
.gb-opening__logo { max-width: 220px; margin: 0 auto; }
.gb-opening__text {
	font-family: var(--gb-font-en);
	font-size: clamp(28px, 6vw, 56px);
	font-weight: 600;
	letter-spacing: .08em;
}
.gb-opening__char {
	display: inline-block;
	white-space: pre;
	opacity: 0;
	transform: translateY(16px);
}
.gb-opening__sub {
	margin-top: 12px;
	font-size: 13px;
	letter-spacing: .3em;
	opacity: 0;
	color: rgba(255,255,255,.75);
}
.gb-opening__line {
	display: block;
	width: 0;
	height: 2px;
	background: var(--gb-accent);
	margin: 22px auto 0;
}

/* letters: 一文字ずつ浮かび上がる */
.opening-letters .gb-opening__char {
	animation: gbCharUp .7s var(--gb-ease) forwards;
	animation-delay: calc(var(--char-i) * 0.06s + .2s);
}
.opening-letters .gb-opening__sub { animation: gbFadeIn .6s ease forwards .9s; }
.opening-letters .gb-opening__line { animation: gbLineGrow .5s var(--gb-ease) forwards 1.2s; }
@keyframes gbCharUp { to { opacity: 1; transform: translateY(0); } }

/* fade: ロゴがゆっくりフェードイン */
.opening-fade .gb-opening__logo,
.opening-fade .gb-opening__text { opacity: 0; animation: gbFadeIn 1.2s ease forwards .2s; }
.opening-fade .gb-opening__sub { animation: gbFadeIn .8s ease forwards .8s; }
.opening-fade .gb-opening__line { animation: gbLineGrow .5s var(--gb-ease) forwards 1.3s; }
@keyframes gbFadeIn { to { opacity: 1; } }

/* zoom: ズームイン+ブラー解除 */
.opening-zoom .gb-opening__logo,
.opening-zoom .gb-opening__text {
	opacity: 0;
	transform: scale(1.3);
	filter: blur(10px);
	animation: gbZoomIn 1s var(--gb-ease) forwards .2s;
}
.opening-zoom .gb-opening__sub { animation: gbFadeIn .8s ease forwards .9s; }
.opening-zoom .gb-opening__line { animation: gbLineGrow .5s var(--gb-ease) forwards 1.2s; }
@keyframes gbZoomIn { to { opacity: 1; transform: scale(1); filter: blur(0); } }

/* curtain: カーテンが左右に開く */
.gb-opening__curtain {
	position: absolute;
	top: 0; bottom: 0;
	width: 50%;
	background: var(--gb-dark);
	z-index: 1;
}
.gb-opening__curtain--left { left: 0; }
.gb-opening__curtain--right { right: 0; }
.opening-curtain .gb-opening__curtain--left { animation: gbCurtainLeft .8s var(--gb-ease) forwards 1s; }
.opening-curtain .gb-opening__curtain--right { animation: gbCurtainRight .8s var(--gb-ease) forwards 1s; }
.opening-curtain .gb-opening__logo,
.opening-curtain .gb-opening__text { opacity: 0; animation: gbFadeIn .6s ease forwards .3s; }
.opening-curtain .gb-opening__sub { animation: gbFadeIn .5s ease forwards .6s; }
@keyframes gbCurtainLeft { to { transform: translateX(-100%); } }
@keyframes gbCurtainRight { to { transform: translateX(100%); } }
.gb-opening:not(.opening-curtain) .gb-opening__curtain { display: none; }

/* line: ライン描画→ロゴ表示 */
.opening-line .gb-opening__logo,
.opening-line .gb-opening__text { opacity: 0; animation: gbFadeIn .6s ease forwards .8s; }
.opening-line .gb-opening__sub { animation: gbFadeIn .5s ease forwards 1.1s; }
.opening-line .gb-opening__line {
	width: 0; opacity: 1;
	animation: gbLineDraw 1s var(--gb-ease) forwards .1s;
}
@keyframes gbLineDraw { to { width: 160px; } }
@keyframes gbLineGrow { to { width: 60px; } }

/* =========================================================
   ヘッダー(3スタイル共通土台)
   ========================================================= */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 600;
	height: var(--gb-header-h);
	background: rgba(255,255,255,.96);
	backdrop-filter: saturate(150%) blur(6px);
	box-shadow: 0 1px 0 rgba(0,0,0,.06);
	transition: transform .4s var(--gb-ease), background .3s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.force-visible { transform: translateY(0) !important; }

/* =========================================================
   透過ヘッダー(トップページ限定・任意設定)
   ========================================================= */
.site-header.is-transparent {
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-transparent:not(.is-scrolled) .nav-list a,
.site-header.is-transparent:not(.is-scrolled) .brand-name,
.site-header.is-transparent:not(.is-scrolled) .tel-number,
.site-header.is-transparent:not(.is-scrolled) .header-join {
	color: #fff;
}
.site-header.is-transparent:not(.is-scrolled) .tel-icon { color: #fff; }
.site-header.is-transparent:not(.is-scrolled) .brand-sub { color: rgba(255,255,255,.75); }
.site-header.is-transparent:not(.is-scrolled) .hamburger span { background: #fff; }
.site-header.is-transparent:not(.is-scrolled) .header-join { border-color: rgba(255,255,255,.6); }
/* ドロップダウンを開いている間は、白いパネルと視覚的につながるようヘッダー自体にも背景を付ける */
.site-header.is-transparent:not(.is-scrolled):has(.has-mega:hover),
.site-header.is-transparent:not(.is-scrolled):has(.has-mega.is-open) {
	background: rgba(255,255,255,.98);
	backdrop-filter: saturate(150%) blur(6px);
	box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.site-header.is-transparent:not(.is-scrolled):has(.has-mega:hover) .nav-list a,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega.is-open) .nav-list a,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega:hover) .brand-name,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega.is-open) .brand-name,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega:hover) .tel-number,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega.is-open) .tel-number,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega:hover) .header-join,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega.is-open) .header-join {
	color: #2c333c;
}
.site-header.is-transparent:not(.is-scrolled):has(.has-mega:hover) .tel-icon,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega.is-open) .tel-icon { color: var(--gb-accent); }
.site-header.is-transparent:not(.is-scrolled):has(.has-mega:hover) .brand-name,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega.is-open) .brand-name { color: var(--gb-main); }
.site-header.is-transparent:not(.is-scrolled):has(.has-mega:hover) .header-join,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega.is-open) .header-join { border-color: var(--gb-main); }
.site-header.is-transparent:not(.is-scrolled):has(.has-mega:hover) .hamburger span,
.site-header.is-transparent:not(.is-scrolled):has(.has-mega.is-open) .hamburger span { background: var(--gb-main); }
.site-header.is-transparent.is-scrolled {
	background: rgba(255,255,255,.96);
	backdrop-filter: saturate(150%) blur(6px);
	box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.header-inner {
	max-width: 1360px;
	margin: 0 auto;
	height: 100%;
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.header-brand { min-width: 0; flex-shrink: 1; }
.header-brand .brand-link { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.brand-logo { max-height: 44px; width: auto; }
.brand-name {
	font-family: var(--gb-font-en);
	font-size: 22px;
	font-weight: 700;
	color: var(--gb-main);
	letter-spacing: .02em;
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.brand-sub {
	font-size: 10px;
	letter-spacing: .1em;
	color: #6b7480;
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 1440px) {
	.nav-list { gap: 22px; }
	.nav-list a { font-size: 13px; }
}
@media (max-width: 1300px) {
	.brand-name { font-size: 19px; }
}
@media (max-width: 480px) {
	.header-inner { gap: 10px; padding: 0 14px; }
	.header-brand { max-width: 56vw; }
	.brand-name { font-size: 15px; letter-spacing: 0; }
	.brand-sub { font-size: 9px; }
	.header-actions { gap: 8px; }
}
@media (max-width: 360px) {
	.brand-sub { display: none; }
	.brand-name { font-size: 13px; }
}

.header-nav { min-width: 0; overflow: hidden; }
.nav-list { display: flex; align-items: center; gap: 32px; flex-wrap: nowrap; }
.nav-list a {
	font-size: 14px;
	font-weight: 600;
	color: #2c333c;
	position: relative;
	padding: 6px 0;
	white-space: nowrap;
	flex-shrink: 0;
}
.nav-list a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--gb-accent);
	transition: width .3s var(--gb-ease);
}
.nav-list a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-join {
	font-size: 13px;
	font-weight: 700;
	color: var(--gb-main);
	border: 1px solid var(--gb-main);
	border-radius: 999px;
	padding: 10px 18px;
	white-space: nowrap;
	transition: background .25s ease, color .25s ease;
}
.header-join:hover { background: var(--gb-main); color: #fff; }
.header-tel { display: flex; align-items: center; gap: 6px; line-height: 1.2; }
.tel-icon { width: 18px; height: 18px; color: var(--gb-accent); flex-shrink: 0; }
.tel-number { font-family: var(--gb-font-en); font-size: 18px; font-weight: 600; color: var(--gb-main); }

.btn-reserve {
	background: var(--gb-accent);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	padding: 12px 24px;
	border-radius: 999px;
	white-space: nowrap;
	transition: transform .25s var(--gb-ease), box-shadow .25s var(--gb-ease);
	box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.btn-reserve:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,.16); }

.hamburger {
	display: none;
	position: relative;
	width: 44px; height: 44px;
	background: none; border: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	z-index: 510;
}
.hamburger span {
	display: block;
	width: 24px; height: 2px;
	background: var(--gb-main);
	transition: transform .3s var(--gb-ease), opacity .3s var(--gb-ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1300px) {
	.header-nav { display: none; }
	.hamburger { display: flex; }
	.header-actions .header-tel { display: none; }
	.header-actions .header-join { display: none; }
	/* header-nav が消えると残り3要素(ブランド/予約ボタン/ハンバーガー)がspace-betweenで
	   並び、予約ボタンが中央寄りに見えてしまうため、予約ボタン+ハンバーガーを右側にまとめる */
	.header-inner { justify-content: flex-start; }
	.header-actions { margin-left: auto; }
}
@media (max-width: 480px) {
	.header-actions .btn-reserve { padding: 10px 16px; font-size: 12px; }
}

/* =========================================================
   ドロワーメニュー
   ========================================================= */
.drawer {
	position: fixed;
	top: 0; right: 0;
	width: min(320px, 84vw);
	height: 100%;
	background: var(--gb-main);
	color: #fff;
	z-index: 590;
	transform: translateX(100%);
	transition: transform .4s var(--gb-ease);
	overflow-y: auto;
	padding: calc(var(--gb-header-h) + 20px) 28px 40px;
}
.drawer.is-open { transform: translateX(0); }

.drawer-close {
	position: absolute;
	top: calc(var(--gb-header-h) + 14px);
	right: 18px;
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.3);
	background: rgba(255,255,255,.06);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 591;
}
.drawer-list > li { border-bottom: 1px solid rgba(255,255,255,.12); }
.drawer-list > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 4px;
	font-size: 16px;
	font-weight: 600;
}
.drawer-list .mega-arrow {
	width: 9px; height: 9px;
	border-right: 2px solid rgba(255,255,255,.6);
	border-bottom: 2px solid rgba(255,255,255,.6);
	transform: rotate(45deg);
	transition: transform .3s ease;
	flex-shrink: 0;
	margin-left: 12px;
}
.drawer-list li.is-expanded > a .mega-arrow { transform: rotate(-135deg); }

.drawer-list .mega-dropdown {
	position: static;
	inset: auto;
	height: 0;
	overflow: hidden;
	visibility: visible;
	transform: none;
	box-shadow: none;
	padding: 0;
	background: transparent;
	transition: height .35s var(--gb-ease);
}
.drawer-list .mega-dropdown__inner {
	display: block;
	max-width: none;
	padding: 0;
	gap: 0;
}
.drawer-list .mega-dropdown__heading {
	flex: none;
	flex-direction: row;
	align-items: baseline;
	gap: 8px;
	padding: 0 0 10px;
	margin-bottom: 10px;
	border-right: none;
	border-bottom: 1px solid rgba(255,255,255,.15);
}
.drawer-list .mega-dropdown__heading-en {
	font-size: 15px;
	color: #fff;
}
.drawer-list .mega-dropdown__heading-jp {
	margin-top: 0;
	font-size: 11px;
	color: rgba(255,255,255,.6);
}
.drawer-list .mega-dropdown__list {
	overflow: hidden;
	min-height: 0;
	display: block;
	max-width: none;
	margin: 0;
	padding: 4px 0 14px;
}
.drawer-list .mega-dropdown__item { margin-bottom: 8px; }
.drawer-list .mega-dropdown__item a {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px;
	border-radius: 8px;
	background: rgba(255,255,255,.06);
	min-width: 0;
}
.drawer-list .mega-dropdown__thumb {
	width: 56px; height: 56px;
	flex: 0 0 56px;
	border-radius: 6px;
	overflow: hidden;
	background: rgba(255,255,255,.12);
}
.drawer-list .mega-dropdown__thumb img { width: 100%; height: 100%; object-fit: cover; }
.drawer-list .mega-dropdown__label {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	display: block;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: break-word;
	line-height: 1.5;
}
.drawer-list .mega-dropdown__desc {
	display: block;
	font-size: 12px;
	color: rgba(255,255,255,.82);
	margin-top: 4px;
	line-height: 1.5;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: break-word;
}

.drawer-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.drawer-tel { font-family: var(--gb-font-en); font-size: 20px; font-weight: 600; color: var(--gb-accent); }
.drawer-join {
	text-align: center;
	border: 1px solid rgba(255,255,255,.4);
	border-radius: 999px;
	padding: 12px;
	font-weight: 700;
	font-size: 14px;
}
.drawer-cta .btn-reserve { text-align: center; }

.drawer-overlay {
	position: fixed; inset: 0;
	background: rgba(0,0,0,.5);
	z-index: 585;
	opacity: 0; visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

/* =========================================================
   ヒーロー(ファーストビュー)
   ========================================================= */
.hero {
	position: relative;
	height: 100svh;
	min-height: 560px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	color: #fff;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
	position: absolute; inset: 0;
	opacity: 0;
	transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide picture, .hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__slide--video video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--gb-dark); }
.hero__slide--placeholder { background: linear-gradient(135deg, var(--gb-main), var(--gb-dark)); }

.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0,0,0, calc(var(--gb-hero-dark, 0.3) * 0.55)) 0%,
		rgba(0,0,0, calc(var(--gb-hero-dark, 0.3) * 0.33)) 40%,
		rgba(0,0,0, calc(var(--gb-hero-dark, 0.3) * 1.35)) 100%
	);
}

.hero__copy {
	position: relative;
	z-index: 2;
	padding: 0 32px 96px;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}
.hero__title {
	font-size: clamp(30px, 5vw, 54px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: .02em;
	text-shadow: 0 2px 16px rgba(0,0,0,.25);
	opacity: 0;
	transform: translateY(24px);
	animation: gbHeroUp .9s var(--gb-ease) forwards .3s;
}
.hero__sub {
	margin-top: 18px;
	font-size: clamp(14px, 1.6vw, 17px);
	opacity: 0;
	transform: translateY(16px);
	animation: gbHeroUp .8s var(--gb-ease) forwards .55s;
}
.hero__cta {
	display: inline-block;
	margin-top: 32px;
	background: var(--gb-accent);
	color: #fff;
	font-weight: 700;
	padding: 16px 40px;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(0,0,0,.25);
	opacity: 0;
	transform: translateY(16px);
	animation: gbHeroUp .8s var(--gb-ease) forwards .8s;
	transition: transform .25s var(--gb-ease);
}
.hero__cta:hover { transform: translateY(-3px); }
@keyframes gbHeroUp { to { opacity: 1; transform: translateY(0); } }

.hero__dots {
	position: absolute;
	right: 32px; bottom: 40px;
	z-index: 2;
	display: flex;
	gap: 10px;
}
.hero__dots span {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,.4);
	transition: background .3s ease, transform .3s ease;
}
.hero__dots span.is-active { background: #fff; transform: scale(1.3); }

.hero__scroll {
	position: absolute;
	left: 32px; bottom: 40px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gb-font-en);
	font-size: 11px;
	letter-spacing: .2em;
}
.hero__scroll span {
	width: 1px; height: 32px;
	background: rgba(255,255,255,.6);
	position: relative;
	overflow: hidden;
}
.hero__scroll span::after {
	content: '';
	position: absolute;
	top: -100%; left: 0; right: 0;
	height: 100%;
	background: #fff;
	animation: gbScrollLine 1.6s ease-in-out infinite;
}
@keyframes gbScrollLine { to { top: 100%; } }

/* ヒーローアニメーション種別:横スライド */
.anim-slide .hero__slide {
	opacity: 1;
	transform: translateX(100%);
	transition: transform 1s var(--gb-ease);
}
.anim-slide .hero__slide.is-active { transform: translateX(0); }
.anim-slide .hero__slide.is-prev { transform: translateX(-100%); }

/* ヒーローアニメーション種別:Ken Burns(ズーム) */
.anim-kenburns .hero__slide img { transform: scale(1); transition: transform 6s linear; }
.anim-kenburns .hero__slide.is-active img { transform: scale(1.12); }

@media (max-width: 767px) {
	.hero { min-height: 480px; }
	.hero__copy { padding: 0 20px 88px; }
	.hero__scroll { left: 20px; bottom: 24px; }
	.hero__dots { right: 20px; bottom: 24px; }
}

/* =========================================================
   スクロールリビール(共通)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--gb-ease), transform .7s var(--gb-ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   お知らせリスト
   ========================================================= */
.news-list { max-width: 880px; margin: 0 auto; }
.post-item + .post-item { border-top: 1px solid #e4e7ec; }
.post-item a {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 8px;
	transition: opacity .25s ease;
}
.post-item a:hover { opacity: .6; }
.post-item time {
	font-family: var(--gb-font-en);
	font-size: 13px;
	color: #8a93a0;
	white-space: nowrap;
}
.post-cat {
	font-size: 11px;
	font-weight: 700;
	color: var(--gb-accent);
	border: 1px solid var(--gb-accent);
	border-radius: 999px;
	padding: 3px 12px;
	white-space: nowrap;
}
.post-cat--link { display: inline-block; }
.post-item .post-title { font-size: 15px; font-weight: 500; }
.post-item--empty { color: #8a93a0; padding: 20px 8px; }

/* =========================================================
   コンセプト
   ========================================================= */
.concept-lead { text-align: center; max-width: 720px; margin: 0 auto 48px; color: #4a525c; }
.concept-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.point-card {
	background: #fff;
	border-radius: var(--gb-radius);
	padding: 32px 28px;
	box-shadow: 0 8px 28px rgba(18,35,61,.06);
	transition: transform .3s var(--gb-ease), box-shadow .3s var(--gb-ease);
	transition-delay: 0s;
}
.point-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(18,35,61,.1); }
.point-num {
	display: inline-block;
	font-family: var(--gb-font-en);
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: var(--gb-accent);
	padding: 4px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.point-card h3 { font-size: 18px; color: var(--gb-main); margin-bottom: 10px; }
.point-card p { font-size: 14px; color: #5a6472; }
.reveal { transition-delay: var(--delay, 0s); }

@media (max-width: 900px) {
	.concept-points { grid-template-columns: 1fr; }
}

/* =========================================================
   プログラム
   ========================================================= */
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.program-card {
	background: var(--gb-main);
	color: #fff;
	border-radius: var(--gb-radius);
	padding: 24px 18px;
	position: relative;
	overflow: hidden;
	transition: transform .3s var(--gb-ease);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.program-card::before {
	content: '';
	position: absolute; inset: 0;
	background: var(--gb-accent);
	opacity: 0;
	transition: opacity .3s ease;
}
.program-card:hover { transform: translateY(-6px); }
.program-card:hover::before { opacity: .12; }
.program-card h3 { font-size: 15px; margin-bottom: 10px; position: relative; line-height: 1.4; }
.program-card p { font-size: 13px; color: rgba(255,255,255,.8); position: relative; }

@media (max-width: 900px) {
	.program-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.program-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   施設紹介
   ========================================================= */
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.facility-item { position: relative; border-radius: var(--gb-radius); overflow: hidden; aspect-ratio: 4/3; }
.facility-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--gb-ease); }
.facility-item:hover img { transform: scale(1.06); }
.facility-item figcaption {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 10px 14px;
	font-size: 13px; font-weight: 600; color: #fff;
	background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
}
.facility-placeholder {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background: var(--gb-sub);
	color: #9aa5b1;
	font-size: 13px;
}

@media (max-width: 900px) {
	.facility-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.facility-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   料金テーブル
   ========================================================= */
.price-table { max-width: 640px; margin: 0 auto; }
.price-row { display: flex; align-items: baseline; gap: 12px; padding: 16px 4px; }
.price-row + .price-row { border-top: 1px dashed #c9cfd8; }
.price-name { font-weight: 600; color: var(--gb-main); white-space: nowrap; }
.price-dots { flex: 1; border-bottom: 2px dotted #c9cfd8; transform: translateY(-4px); }
.price-value { font-family: var(--gb-font-en); font-size: 18px; font-weight: 600; color: var(--gb-accent); white-space: nowrap; }
.price-value small { font-family: var(--gb-font-jp); font-size: 11px; color: #8a93a0; }

/* =========================================================
   ジムブログカード
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
	display: block;
	background: #fff;
	border-radius: var(--gb-radius);
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(18,35,61,.06);
	transition: transform .3s var(--gb-ease), box-shadow .3s var(--gb-ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(18,35,61,.1); }
.blog-card__thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--gb-sub); }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--gb-ease); }
.blog-card:hover .blog-card__thumb img { transform: scale(1.06); }
.thumb-placeholder {
	display: flex; align-items: center; justify-content: center;
	width: 100%; height: 100%;
	font-family: var(--gb-font-en);
	color: #b7bfc9; font-size: 14px; letter-spacing: .1em;
}
.blog-card__body { padding: 20px; }
.blog-card__title { font-size: 15px; font-weight: 600; margin: 10px 0 8px; color: #22282f; line-height: 1.6; }
.blog-card__body time { font-family: var(--gb-font-en); font-size: 12px; color: #8a93a0; }

@media (max-width: 900px) {
	.blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.blog-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Instagram
   ========================================================= */
.instagram-feed { max-width: 1000px; margin: 0 auto; }

/* =========================================================
   アクセス
   ========================================================= */
.access-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: stretch; }
.access-map { border-radius: var(--gb-radius); overflow: hidden; min-height: 340px; }
.access-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.map-placeholder {
	width: 100%; height: 100%; min-height: 340px;
	display: flex; align-items: center; justify-content: center;
	background: var(--gb-sub); color: #9aa5b1; font-size: 13px; text-align: center; padding: 20px;
}
.access-info div { display: flex; padding: 14px 0; border-bottom: 1px solid #e4e7ec; gap: 16px; }
.access-info dt { width: 84px; flex-shrink: 0; font-weight: 700; color: var(--gb-main); font-size: 13px; }
.access-info dd { font-size: 14px; color: #444c56; }

@media (max-width: 900px) {
	.access-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA
   ========================================================= */
.sec-cta { background: var(--gb-main); text-align: center; }
.cta-title { font-size: clamp(22px, 3vw, 30px); color: #fff; font-weight: 700; line-height: 1.5; }
.cta-lead { margin-top: 16px; color: rgba(255,255,255,.75); font-size: 14px; }
.cta-buttons { margin-top: 32px; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.cta-btn { padding: 16px 36px; border-radius: 999px; font-weight: 700; font-size: 14px; transition: transform .25s var(--gb-ease); }
.cta-btn:hover { transform: translateY(-3px); }
.cta-btn--reserve { background: var(--gb-accent); color: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.cta-btn--tel { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.4); }

/* =========================================================
   フッター(4カラム構成:ブランド/ナビ×2/お問い合わせ)
   ========================================================= */
.site-footer { background: var(--gb-dark); color: rgba(255,255,255,.85); padding: 72px 0 28px; }
.footer-inner {
	max-width: 1240px; margin: 0 auto; padding: 0 32px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
	gap: 40px;
}
/* 「アスリートの方へ」列が空(ページ未作成)で非表示になった場合の3カラム用グリッド */
.footer-inner--3col { grid-template-columns: 1.4fr 1fr 1.1fr; }
.footer-col__title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--gb-accent);
	margin-bottom: 18px;
}
.footer-name { font-family: var(--gb-font-en); font-size: 20px; font-weight: 700; color: #fff; }
.footer-sub { font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-top: 4px; }
.footer-info { margin-top: 20px; }
.footer-info > div { display: flex; gap: 12px; font-size: 13px; padding: 4px 0; }
.footer-info dt { width: 60px; color: rgba(255,255,255,.5); flex-shrink: 0; }
.footer-info a { color: rgba(255,255,255,.85); }

.footer-list { display: flex; flex-direction: column; gap: 12px; }
.footer-list a { font-size: 14px; transition: opacity .2s ease; }
.footer-list a:hover { opacity: .7; }

/* 「footer」メニュー位置に手動でメニューを割り当てた場合:項目数が多くてもCSS columnsで自動的に段組みし、縦に間延びしないようにする */
.footer-list--columns {
	display: block;
	column-count: 2;
	column-gap: 32px;
}
.footer-list--columns li { break-inside: avoid; margin-bottom: 12px; }
.footer-col--nav-wide { grid-column: span 2; }

.footer-col--cta { display: flex; flex-direction: column; }
.footer-tel-link {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--gb-font-en);
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}
.footer-tel-icon { width: 20px; height: 20px; color: var(--gb-accent); flex-shrink: 0; }
.footer-cta-buttons { display: flex; flex-direction: column; gap: 12px; }
.footer-cta-buttons .btn-reserve { text-align: center; }
.footer-join {
	text-align: center;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 999px;
	padding: 12px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	transition: background .25s ease;
}
.footer-join:hover { background: rgba(255,255,255,.08); }

.footer-copy { text-align: center; margin-top: 56px; font-size: 12px; color: rgba(255,255,255,.4); }

@media (max-width: 1024px) {
	.footer-inner { grid-template-columns: 1fr 1fr; }
	.footer-col--brand { grid-column: span 2; }
	.footer-col--nav-wide { grid-column: span 2; }
}
@media (max-width: 767px) {
	.footer-inner { padding: 0 24px; grid-template-columns: 1fr; gap: 0; }
	.footer-col--brand, .footer-col--nav-wide, .footer-col--cta, .footer-col--nav { grid-column: span 1; }
	.footer-col { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
	.footer-col:first-child { padding-top: 0; }
	.footer-col:last-child { border-bottom: none; padding-bottom: 0; }
	.footer-col__title { margin-bottom: 14px; }
	.footer-list { gap: 14px; }
	.footer-list--columns { column-count: 1; }
	.site-footer { padding: 56px 0 28px; padding-bottom: calc(var(--gb-sp-footer-h) + 28px); }
	.footer-tel-link { font-size: 22px; }
	.footer-cta-buttons { max-width: 320px; }
	/* 住所・営業時間・定休日はラベルを上、値を下に積んで、長い文章でも綺麗に収まるようにする */
	.footer-info > div { flex-direction: column; gap: 2px; }
	.footer-info dt {
		width: auto;
		font-size: 11px;
		letter-spacing: .08em;
		color: var(--gb-accent);
		font-weight: 700;
	}
	.footer-info dd { line-height: 1.6; }
}

/* =========================================================
   スマホ追従フッター
   ========================================================= */
.sp-fixed-footer {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 400;
	height: var(--gb-sp-footer-h);
}
@media (max-width: 767px) {
	.sp-fixed-footer { display: flex; }
	body { padding-bottom: var(--gb-sp-footer-h); }
}
.sp-fixed-footer__tel,
.sp-fixed-footer__reserve {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}
.sp-fixed-footer__tel { background: var(--gb-main); }
.sp-fixed-footer__reserve { background: var(--gb-accent); }
.sp-fixed-footer__icon { width: 18px; height: 18px; flex-shrink: 0; color: #fff; }

/* トップへ戻る */
.to-top {
	position: fixed;
	right: 20px; bottom: 20px;
	width: 52px; height: 52px;
	border-radius: 50%;
	background: #fff;
	color: var(--gb-accent);
	border: 2px solid var(--gb-sub);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(18,35,61,.14);
	opacity: 0; visibility: hidden;
	transform: translateY(10px) scale(.9);
	transition: opacity .3s ease, transform .3s var(--gb-ease), visibility .3s ease, background .25s ease, border-color .25s ease, color .25s ease;
	z-index: 350;
}
.to-top svg { width: 22px; height: 22px; transition: transform .25s var(--gb-ease); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover {
	background: var(--gb-accent);
	border-color: var(--gb-accent);
	color: #fff;
	transform: translateY(-4px) scale(1);
}
.to-top:hover svg { transform: translateY(-2px); }
@media (max-width: 767px) { .to-top { bottom: calc(var(--gb-sp-footer-h) + 16px); width: 46px; height: 46px; } }

/* =========================================================
   アーカイブ(年別グループ・カテゴリーバー)
   ========================================================= */
.page-head--single { padding-top: 48px; }
.page-title { font-size: clamp(20px, 4.2vw, 30px); line-height: 1.5; color: var(--gb-main); font-weight: 700; overflow-wrap: break-word; }

.cat-bar { margin: 40px 0 8px; overflow-x: auto; }
.cat-list { display: flex; gap: 10px; flex-wrap: wrap; }
.cat-link {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 9px 18px;
	border-radius: 999px;
	border: 1px solid #d7dce3;
	font-size: 13px; font-weight: 600;
	color: #4a525c;
	white-space: nowrap;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.cat-link:hover { border-color: var(--gb-accent); color: var(--gb-accent); }
.cat-link.is-current { background: var(--gb-main); border-color: var(--gb-main); color: #fff; }
.cat-count { font-size: 11px; opacity: .7; }

.year-group { margin-top: 44px; }
.year-heading { margin-bottom: 8px; }
.year-num { font-family: var(--gb-font-en); font-size: 22px; color: var(--gb-main); margin-right: 6px; }
.year-group--current .year-heading { font-size: 15px; color: #4a525c; font-weight: 600; padding-bottom: 12px; border-bottom: 2px solid var(--gb-main); }

.year-toggle {
	width: 100%;
	display: flex; align-items: center; gap: 10px;
	background: none; border: none; border-bottom: 2px solid #e4e7ec;
	padding: 14px 4px;
	font-size: 15px; font-weight: 600; color: #4a525c;
	text-align: left;
}
.year-count { font-size: 12px; color: #9aa5b1; margin-left: auto; margin-right: 8px; }
.year-arrow {
	width: 10px; height: 10px;
	border-right: 2px solid #9aa5b1; border-bottom: 2px solid #9aa5b1;
	transform: rotate(45deg);
	transition: transform .3s ease;
}
.year-toggle[aria-expanded="true"] .year-arrow { transform: rotate(-135deg); }

.year-body[hidden] { display: none; }

.post-item.is-extra { display: none; }
.post-item.is-extra.is-shown { display: block; }
.btn-load-more {
	display: block; margin: 24px auto 0;
	background: none; border: 1px solid var(--gb-main);
	color: var(--gb-main); border-radius: 999px;
	padding: 12px 32px; font-size: 13px; font-weight: 600;
}

.archive-empty { text-align: center; color: #9aa5b1; padding: 60px 0; }

/* =========================================================
   単体記事ページ
   ========================================================= */
.breadcrumb { font-size: 12px; color: #8a93a0; }
.breadcrumb a { color: #8a93a0; }
.bc-sep { margin: 0 6px; }
.bc-current { color: #4a525c; }
.single-meta { display: flex; align-items: center; justify-content: center; gap: 12px; }
.single-meta time { font-family: var(--gb-font-en); font-size: 13px; color: #8a93a0; }

.page-head .breadcrumb,
.page-head .single-meta { justify-content: center; }
.page-head.has-image .breadcrumb,
.page-head.has-image .breadcrumb a,
.page-head.has-image .bc-current,
.page-head.has-image .single-meta time { color: rgba(255,255,255,.8); }
.single-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--gb-main); line-height: 1.5; }

.single-thumb { margin: 40px 0; border-radius: var(--gb-radius); overflow: hidden; }
.single-content { font-size: 15px; color: #333; }
.single-content h2 { font-size: 20px; color: var(--gb-main); margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gb-sub); }
.single-content h3 { font-size: 16px; color: var(--gb-main); margin: 28px 0 12px; }
.single-content p { margin-bottom: 20px; }

.single-nav { display: flex; align-items: center; justify-content: space-between; margin: 56px 0 40px; padding-top: 28px; border-top: 1px solid #e4e7ec; font-size: 14px; }
.single-nav__prev, .single-nav__next { flex: 1; }
.single-nav__next { text-align: right; }
.single-nav__list { padding: 8px 18px; border: 1px solid #d7dce3; border-radius: 999px; font-size: 12px; }

.notfound { text-align: center; padding: 100px 0; margin-top: var(--gb-header-h); }
.notfound-code { font-family: var(--gb-font-en); font-size: 64px; color: var(--gb-sub); font-weight: 700; }
.page-main .sec-inner:first-of-type, .archive-main .sec-inner:first-of-type { padding-top: 56px; padding-bottom: 80px; }

@media (max-width: 767px) {
	.single-nav { flex-direction: column; gap: 16px; align-items: flex-start; }
	.single-nav__next { text-align: left; }
}

/* =========================================================
 * 動画セクション(任意表示)
 * ========================================================= */
.video-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: var(--gb-radius);
	overflow: hidden;
	background: var(--gb-dark);
	box-shadow: 0 20px 48px rgba(18,35,61,.14);
}
.video-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.video-embed__error {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: rgba(255,255,255,.6);
	font-size: 13px;
	text-align: center;
	padding: 20px;
}

/* front-page.php 用の余白(固定ヘッダー分) */
.front-main { padding-top: 0; }

/* =========================================================
 * Contact Form 7 フォームの見た目調整
 * ========================================================= */
.wpcf7-form p { margin-bottom: 22px; font-weight: 600; color: var(--gb-main); font-size: 14px; }
.wpcf7-form .req {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: var(--gb-accent);
	padding: 2px 8px;
	border-radius: 999px;
	margin-left: 8px;
	vertical-align: middle;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea,
.wpcf7-form select {
	width: 100%;
	margin-top: 10px;
	padding: 13px 16px;
	border: 1px solid #d7dce3;
	border-radius: var(--gb-radius);
	font-size: 14px;
	font-family: inherit;
	font-weight: 400;
	color: #22282f;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.wpcf7-form textarea { min-height: 140px; resize: vertical; }
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
	outline: none;
	border-color: var(--gb-accent);
	box-shadow: 0 0 0 3px rgba(242,118,46,.15);
}
.wpcf7-form .wpcf7-list-item { margin: 0 16px 0 0; font-weight: 400; }
.wpcf7-form .wpcf7-radio .wpcf7-list-item,
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }
.wpcf7-form .wpcf7-acceptance { display: block; margin-top: 6px; font-weight: 400; font-size: 13px; color: #4a525c; }
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label { margin-left: 6px; }
.wpcf7-form input[type="submit"] {
	display: inline-block;
	background: var(--gb-accent);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	border: none;
	border-radius: 999px;
	padding: 16px 48px;
	cursor: pointer;
	transition: transform .25s var(--gb-ease), box-shadow .25s var(--gb-ease);
	box-shadow: 0 10px 24px rgba(0,0,0,.15);
}
.wpcf7-form input[type="submit"]:hover { transform: translateY(-2px); }
.wpcf7-form input[type="submit"]:disabled { opacity: .6; cursor: default; transform: none; }
.wpcf7-spinner { margin-left: 10px; }
.wpcf7-not-valid-tip { color: #d8402f; font-size: 12px; font-weight: 400; margin-top: 6px; }
.wpcf7-response-output {
	margin-top: 24px !important;
	padding: 14px 18px !important;
	border-radius: var(--gb-radius);
	font-size: 13px;
	font-weight: 600;
}
.wpcf7-mail-sent-ok { border: 1px solid #3a9d5d !important; color: #237a45; background: #eef8f1; }
.wpcf7-validation-errors, .wpcf7-acceptance-missing { border: 1px solid #d8402f !important; color: #b3301f; background: #fdf0ee; }
.gb-form-notice { color: #8a93a0; font-size: 13px; text-align: center; padding: 40px 0; }

/* =========================================================
 * ページヘッダー(アイキャッチ画像対応)
 * 画像未設定:無地・コンパクト / 画像設定:背景写真+オーバーレイで文字を保護
 * ========================================================= */
.page-head {
	position: relative;
	background: var(--gb-sub);
	margin-top: var(--gb-header-h);
	padding: 64px 0 44px;
	overflow: hidden;
	text-align: center;
}
/* 無地背景の場合、斜めの装飾ラインでのっぺり感を軽減 */
.page-head::before {
	content: '';
	position: absolute;
	top: -40%; right: -10%;
	width: 60%; height: 220%;
	background: var(--gb-main);
	opacity: .04;
	transform: rotate(-12deg);
	z-index: 0;
}
.page-head__inner { position: relative; z-index: 2; }
.page-head__eyebrow {
	display: inline-block;
	font-family: var(--gb-font-en);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .3em;
	color: var(--gb-accent);
	opacity: 0;
	transform: translateY(10px);
	animation: gbPhUp .6s var(--gb-ease) forwards .05s;
}
.page-head .page-title {
	color: var(--gb-main);
	font-size: clamp(22px, 4.2vw, 32px);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .02em;
	word-break: normal;
	overflow-wrap: break-word;
	margin-top: 10px;
	opacity: 0;
	transform: translateY(14px);
	animation: gbPhUp .7s var(--gb-ease) forwards .15s;
}
.page-head__line {
	display: block;
	width: 44px;
	height: 3px;
	background: var(--gb-accent);
	margin: 18px auto 0;
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	animation: gbPhLine .5s var(--gb-ease) forwards .5s;
}
.page-head__before { margin-bottom: 14px; }
.page-head__after { margin-top: 16px; }
.page-head__sub { margin-top: 16px; color: #5a6472; font-size: 14px; line-height: 1.7; }
@keyframes gbPhUp { to { opacity: 1; transform: translateY(0); } }
@keyframes gbPhLine { to { transform: scaleX(1); } }

.page-head.has-image {
	background-image: var(--gb-ph-image);
	background-size: cover;
	background-position: var(--gb-ph-focus-pc, 50% center);
	background-repeat: no-repeat;
	padding: 110px 0 68px;
	min-height: 280px;
	display: flex;
	align-items: flex-end;
}
.page-head.has-image::before { display: none; }
.page-head.has-image .page-title,
.page-head.has-image .page-head__eyebrow,
.page-head.has-image .page-head__sub { color: #fff; }
.page-head.has-image .page-head__eyebrow { color: #fff; opacity: .85; }
.page-head.has-image .page-head__sub { color: rgba(255,255,255,.88); }
.page-head.has-image .page-title { text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.page-head__overlay {
	position: absolute; inset: 0;
	background: #000;
	opacity: var(--gb-ph-overlay, 0.48);
	z-index: 1;
}

@media (max-width: 767px) {
	.page-head { padding: 44px 0 32px; }
	.page-head.has-image {
		background-position: var(--gb-ph-focus-sp, 50% center);
		min-height: 220px;
		padding: 72px 0 44px;
	}
}

/* =========================================================
 * デスクトップ メガメニュー(写真付きドロップダウン)
 * ========================================================= */
.has-mega { /* position指定なし: .mega-dropdown はposition:fixedの.site-headerを基準に配置される */ }
.has-mega > a { display: flex; align-items: center; gap: 6px; }
.mega-arrow {
	width: 7px; height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: .6;
	margin-top: -3px;
}
.mega-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: auto;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 20px 48px rgba(18,35,61,.16);
	padding: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
	z-index: 50;
}
.has-mega:hover .mega-dropdown,
.has-mega:focus-within .mega-dropdown,
.has-mega.is-open .mega-dropdown,
body.gb-debug-mega .has-mega .mega-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* デバッグモード:どの要素が対象になっているか分かるよう目印の枠線を付ける */
body.gb-debug-mega .has-mega { outline: 2px dashed red; }
body.gb-debug-mega .mega-dropdown { outline: 2px dashed blue; }

.mega-dropdown__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	gap: 48px;
	padding: 40px 32px;
}
.mega-dropdown__heading {
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	padding-right: 32px;
	border-right: 1px solid #eef0f3;
}
.mega-dropdown__heading-en {
	font-family: var(--gb-font-en);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--gb-main);
	line-height: 1.2;
}
.mega-dropdown__heading-jp {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	color: var(--gb-accent);
}
.mega-dropdown__heading-en + .mega-dropdown__heading-jp { margin-top: 8px; }
.mega-dropdown__list {
	flex: 1;
	min-width: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 8px;
}
.mega-dropdown__item a {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	border-radius: 10px;
	transition: background .2s ease;
	padding: 12px;
}
.mega-dropdown__item a:hover { background: var(--gb-sub); }
.mega-dropdown__thumb {
	width: 88px;
	height: 88px;
	flex: 0 0 88px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--gb-sub);
}
.mega-dropdown__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--gb-ease); }
.mega-dropdown__item a:hover .mega-dropdown__thumb img { transform: scale(1.06); }
.mega-dropdown__text {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1 1 auto;
	padding-top: 2px;
}
.mega-dropdown__label {
	font-size: 14px;
	font-weight: 700;
	color: #22282f;
	display: block;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: break-word;
	line-height: 1.5;
}
.mega-dropdown__desc {
	font-size: 12px;
	color: #8a93a0;
	display: block;
	margin-top: 4px;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: break-word;
	line-height: 1.6;
}
/* 画像が無い項目はサムネイル分の余白を取らないシンプルな行にする */
.mega-dropdown__item:not(:has(.mega-dropdown__thumb)) a { padding: 12px; }

/* =========================================================
 * 入会の流れ(ステップ)
 * ========================================================= */
.flow-list { counter-reset: none; margin: 40px 0; }
.flow-item { display: flex; gap: 24px; padding: 32px 0; }
.flow-item + .flow-item { border-top: 1px dashed #d7dce3; }
.flow-item__num {
	font-family: var(--gb-font-en);
	font-size: 40px;
	font-weight: 700;
	color: var(--gb-sub);
	-webkit-text-stroke: 1.5px var(--gb-accent);
	flex-shrink: 0;
	width: 64px;
	line-height: 1;
}
.flow-item__body { flex: 1; display: flex; gap: 20px; flex-wrap: wrap; }
.flow-item__img { width: 160px; flex-shrink: 0; border-radius: var(--gb-radius); overflow: hidden; }
.flow-item__img img { width: 100%; height: 100%; object-fit: cover; }
.flow-item__text { flex: 1; min-width: 200px; }
.flow-item__text h2 { font-size: 18px; color: var(--gb-main); margin-bottom: 8px; }
.flow-item__text p { font-size: 14px; color: #4a525c; }
.flow-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 48px 0; }

@media (max-width: 600px) {
	.flow-item { gap: 14px; }
	.flow-item__num { width: 44px; font-size: 28px; }
}

/* =========================================================
 * 設備紹介 / サポート・提携(グループ表示)
 * ========================================================= */
.equipment-group, .support-group { margin-bottom: 56px; }
.equipment-group__title {
	font-size: 18px;
	color: var(--gb-main);
	font-weight: 700;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--gb-accent);
	margin-bottom: 24px;
	display: inline-block;
}
.equipment-grid, .support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.equipment-card, .support-card {
	background: #fff;
	border-radius: var(--gb-radius);
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(18,35,61,.06);
	display: block;
	transition: transform .3s var(--gb-ease);
}
.equipment-card:hover, .support-card:hover { transform: translateY(-4px); }
.equipment-card__thumb, .support-card__logo { aspect-ratio: 4/3; background: var(--gb-sub); overflow: hidden; }
.equipment-card__thumb img, .support-card__logo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--gb-ease); }
.equipment-card:hover .equipment-card__thumb img, .support-card:hover .support-card__logo img { transform: scale(1.08); }
.equipment-card__body, .support-card__body { padding: 16px; }
.equipment-card__body h3, .support-card__body h3 { font-size: 14px; color: var(--gb-main); margin-bottom: 6px; }
.equipment-card__body p, .support-card__body p { font-size: 12px; color: #5a6472; }

@media (max-width: 900px) {
	.equipment-grid, .support-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.equipment-grid, .support-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
 * よくある質問(FAQ)
 * ========================================================= */
.faq-list { margin: 40px 0; }
.faq-item { border-bottom: 1px solid #e4e7ec; }
.faq-item__q {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 16px;
	background: none;
	border: none;
	text-align: left;
	padding: 22px 4px;
	font-size: 15px;
	font-weight: 600;
	color: #22282f;
}
.faq-mark {
	font-family: var(--gb-font-en);
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	background: var(--gb-main);
	width: 28px; height: 28px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.faq-mark--a { background: var(--gb-accent); align-self: flex-start; margin-top: 2px; }
.faq-item__q-text { flex: 1; }
.faq-arrow {
	width: 10px; height: 10px;
	border-right: 2px solid #9aa5b1;
	border-bottom: 2px solid #9aa5b1;
	transform: rotate(45deg);
	transition: transform .3s ease;
	flex-shrink: 0;
}
.faq-item__q[aria-expanded="true"] .faq-arrow { transform: rotate(-135deg); }
.faq-item__a { display: flex; gap: 16px; padding: 0 4px 24px 4px; }
.faq-item__a[hidden] { display: none; }
.faq-item__a p { font-size: 14px; color: #4a525c; }

/* =========================================================
 * トレーナー紹介
 * ========================================================= */
.trainer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.trainer-card {
	background: #fff;
	border-radius: var(--gb-radius);
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(18,35,61,.06);
	display: flex;
	flex-direction: column;
}
.trainer-card__photo { aspect-ratio: 1/1; background: var(--gb-sub); overflow: hidden; }
.trainer-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--gb-ease); }
.trainer-card:hover .trainer-card__photo img { transform: scale(1.06); }
.trainer-card__body { padding: 24px; }
.trainer-card__body h2 { font-size: 18px; color: var(--gb-main); }
.trainer-card__role { font-size: 13px; color: var(--gb-accent); font-weight: 700; margin-top: 4px; }
.trainer-card__qual { font-size: 12px; color: #8a93a0; margin-top: 4px; }
.trainer-card__message { font-size: 14px; color: #4a525c; margin-top: 14px; }

@media (max-width: 700px) {
	.trainer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
 * プログラム詳細 / 目的別ページ 共通(特徴リスト)
 * ========================================================= */
.feature-list { margin: 48px 0; }
.feature-item { display: flex; gap: 20px; padding: 22px 0; }
.feature-item + .feature-item { border-top: 1px dashed #d7dce3; }
.feature-item__num {
	font-family: var(--gb-font-en);
	font-size: 24px;
	font-weight: 700;
	color: var(--gb-accent);
	flex-shrink: 0;
	width: 40px;
}
.feature-item h3 { font-size: 16px; color: var(--gb-main); margin-bottom: 6px; }
.feature-item p { font-size: 14px; color: #4a525c; }

.goal-features__title { text-align: center; font-size: 20px; color: var(--gb-main); margin: 56px 0 28px; }
.goal-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.goal-feature-card {
	background: var(--gb-sub);
	border-radius: var(--gb-radius);
	padding: 24px;
}
.goal-feature-card h3 { font-size: 15px; color: var(--gb-main); margin-bottom: 8px; }
.goal-feature-card p { font-size: 13px; color: #4a525c; }

@media (max-width: 800px) {
	.goal-features { grid-template-columns: 1fr; }
}

/* =========================================================
 * プログラムカード(トップページ)にリンク要素追加分
 * ========================================================= */
.program-card { display: flex; }
.program-card__more {
	display: inline-block;
	margin-top: auto;
	padding-top: 14px;
	font-size: 12px;
	font-weight: 700;
	color: var(--gb-accent);
	position: relative;
}

/* CTA 入会するボタン */
/* 入会するボタン:明るい背景(通常の固定ページ等)でも読めるデフォルトスタイル */
.cta-btn--join {
	background: #fff;
	color: var(--gb-main);
	border: 2px solid var(--gb-main);
}
.cta-btn--join:hover { background: var(--gb-main); color: #fff; }

/* トップページの暗い背景CTAセクション内だけは、白背景に馴染む半透明スタイルにする */
.sec-cta .cta-btn--join {
	background: rgba(255,255,255,.12);
	color: #fff;
	border: 1px solid var(--gb-accent);
}
.sec-cta .cta-btn--join:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ヒーロー キャッチコピー専用フォント */
.hero__title { font-family: var(--gb-font-catch); }

/* ヒーロー画像:PC画像流用時のスマホ切り取り位置(SP画像未設定の場合のみ付与されるクラス) */
@media (max-width: 767px) {
	.hero__slide.no-sp:nth-child(1) img { object-position: var(--gb-hero-focus-1, 50% center); }
	.hero__slide.no-sp:nth-child(2) img { object-position: var(--gb-hero-focus-2, 50% center); }
	.hero__slide.no-sp:nth-child(3) img { object-position: var(--gb-hero-focus-3, 50% center); }
}

