@charset "UTF-8";
/* =========================================================
   RENACER theme — main.css
   配色: ブラック / ホワイト / グリーン（アクセント=グリーン）
   ここの変数を変えるだけで全体の色・余白・画像を調整できます。
   ========================================================= */

:root {
	/* カラー */
	--c-bg: #ffffff;
	--c-bg-alt: #f5f6f5;
	--c-ink: #111111;
	--c-ink-soft: #4a4f4c;
	--c-ink-mute: #8a908c;
	/* アクセント：いったん緑を抑えてモノトーン基調に（NewsPicks風）。
	   緑に戻す場合はここの3値を緑系に変更すればOK。 */
	--c-green: #111111;
	--c-green-dark: #000000;
	--c-green-soft: #f1f1f1;
	--c-accent: #111111; /* 将来アクセント色を入れたい時用 */
	--c-line: #e5e7eb;
	--c-white: #ffffff;
	--c-black: #111111;

	/* フォント */
	--font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
	--font-en: "Helvetica Neue", Helvetica, Arial, var(--font-jp);

	/* レイアウト */
	--container: 1120px;
	--container-narrow: 760px;
	--gutter: 20px;
	--radius: 14px;
	--radius-sm: 8px;
	/* 影は一旦すべてオフ（装飾シャドウなし） */
	--shadow: none;
	--shadow-sm: none;
	--header-h: 76px;

	/* ヒーロー背景スライド（後で実写真URLに差し替え可）
	   写真を入れる場合は url("../img/hero1.jpg") のように追記してください。
	   ※緑のグラデーションは廃止し、ニュートラルなダークトーンに。 */
	--hero-image-1: linear-gradient(135deg, #2a2a2a, #111111);
	--hero-image-2: linear-gradient(135deg, #1c1c1c, #333333);
	--hero-image-3: linear-gradient(135deg, #242424, #0d0d0d);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-jp);
	color: var(--c-ink);
	background: var(--c-bg);
	line-height: 1.8;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	padding-bottom: 56px; /* 追従固定CTAバンドの高さ分 */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.4; font-weight: 700; }
p { margin: 0 0 1em; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 8px 14px; z-index: 1000; border-radius: 6px; }

/* ---------- 共通レイアウト ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: 88px 0; }
.section--alt { background: var(--c-bg-alt); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head__en {
	display: block; font-family: var(--font-en); font-weight: 700; letter-spacing: .16em;
	color: var(--c-green); font-size: 14px; margin-bottom: 10px;
}
.section-head__title { font-size: clamp(24px, 4.4vw, 34px); letter-spacing: .02em; }
.section-head__title span { color: var(--c-green); }
.section-head__lead { margin-top: 16px; color: var(--c-ink-soft); }

/* ---------- ボタン ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-weight: 700; line-height: 1.2; text-align: center;
	padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }
.btn--primary { background: var(--c-ink); color: #fff; }
.btn--primary:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn--ghost:hover { background: var(--c-ink); color: #fff; }
.btn--line { background: #06c755; color: #fff; }
.btn--line:hover { background: #05b54c; }
.btn--tel { flex-direction: column; gap: 0; background: transparent; color: var(--c-ink); padding: 6px 10px; border: none; }
.btn--tel:hover { transform: none; color: var(--c-green); }
.btn--tel .btn__label { font-size: 11px; color: var(--c-ink-mute); }
.btn--tel .btn__num { font-family: var(--font-en); font-weight: 700; font-size: 18px; letter-spacing: .03em; }

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: #fff;
	border-bottom: none;
	transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: none; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }

.site-logo { display: inline-flex; align-items: center; line-height: 1.1; }
.site-logo__main { font-family: var(--font-en); font-weight: 700; font-size: 22px; letter-spacing: .12em; color: var(--c-ink); }
.site-header__logo { height: 25px; width: auto; display: block; }
.custom-logo { max-height: 30px; width: auto; }

.site-header__right { display: flex; align-items: center; gap: 16px; }
.header-cta { padding: 11px 24px; font-size: 14px; }

/* ハンバーガー（PC・スマホ共通で常時表示） */
.nav-toggle {
	display: inline-flex; align-items: center; gap: 10px; border: none; background: transparent;
	cursor: pointer; padding: 6px; color: var(--c-ink);
}
.nav-toggle__bars { display: inline-flex; flex-direction: column; justify-content: center; gap: 6px; width: 28px; height: 20px; }
.nav-toggle__bar { display: block; width: 28px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav-toggle__label { font-family: var(--font-en); font-weight: 600; font-size: 12px; letter-spacing: .18em; color: var(--c-ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* 全画面オーバーレイナビ（ヘッダーより前面に） */
.global-nav {
	position: fixed; inset: 0; z-index: 110;
	background: #0c0c0c;
	display: flex; align-items: center; justify-content: center;
	padding: 80px var(--gutter) 40px; overflow-y: auto;
	opacity: 0; visibility: hidden; pointer-events: none;
	clip-path: circle(0% at calc(100% - 48px) 38px);
	transition: clip-path .55s cubic-bezier(.7,0,.2,1), opacity .4s ease, visibility .4s;
}
/* 閉じるボタン */
.global-nav__close {
	position: absolute; top: 18px; right: max(16px, calc((100% - var(--container)) / 2 + 8px));
	width: 48px; height: 48px; border: none; background: transparent; cursor: pointer; z-index: 2;
}
.global-nav__close span {
	position: absolute; top: 50%; left: 50%; width: 26px; height: 2px; background: #fff;
	transition: background .2s ease;
}
.global-nav__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.global-nav__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.global-nav__close:hover span { background: #bdbdbd; }
.global-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; clip-path: circle(150% at calc(100% - 48px) 38px); }
.global-nav__inner { width: 100%; max-width: 680px; text-align: center; }
.global-nav__list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 36px; }
.global-nav__list a, .global-nav__link {
	display: inline-block; color: #fff; font-family: var(--font-en); font-weight: 600;
	font-size: clamp(26px, 6vw, 44px); letter-spacing: .04em; padding: 10px 0; position: relative;
	opacity: 0; transform: translateY(28px); transition: opacity .5s ease, transform .5s ease, color .2s ease;
}
.global-nav__list a::after, .global-nav__link::after {
	content: ""; position: absolute; left: 50%; bottom: 4px; width: 0; height: 2px; background: #fff;
	transform: translateX(-50%); transition: width .3s ease;
}
.global-nav__list a:hover, .global-nav__link:hover { color: #bdbdbd; }
.global-nav__list a:hover::after, .global-nav__link:hover::after { width: 60%; }
.global-nav.is-open .global-nav__list li:nth-child(1) a, .global-nav.is-open .global-nav__list li:nth-child(1) .global-nav__link { transition-delay: .18s; }
.global-nav.is-open .global-nav__list li:nth-child(2) a, .global-nav.is-open .global-nav__list li:nth-child(2) .global-nav__link { transition-delay: .26s; }
.global-nav.is-open .global-nav__list li:nth-child(3) a, .global-nav.is-open .global-nav__list li:nth-child(3) .global-nav__link { transition-delay: .34s; }
.global-nav.is-open .global-nav__list li:nth-child(4) a, .global-nav.is-open .global-nav__list li:nth-child(4) .global-nav__link { transition-delay: .42s; }
.global-nav.is-open .global-nav__list li:nth-child(5) a, .global-nav.is-open .global-nav__list li:nth-child(5) .global-nav__link { transition-delay: .50s; }
.global-nav.is-open .global-nav__list li:nth-child(6) a, .global-nav.is-open .global-nav__list li:nth-child(6) .global-nav__link { transition-delay: .58s; }
.global-nav.is-open .global-nav__list a, .global-nav.is-open .global-nav__list .global-nav__link { opacity: 1; transform: none; }

.global-nav__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; opacity: 0; transform: translateY(20px); transition: opacity .5s ease .62s, transform .5s ease .62s; }
.global-nav.is-open .global-nav__cta { opacity: 1; transform: none; }
.global-nav__tel { font-family: var(--font-en); font-weight: 700; font-size: 22px; letter-spacing: .04em; color: #fff; }
.global-nav__ig { color: #cfd6d2; font-size: 13px; border-bottom: 1px solid rgba(207,214,210,.4); padding-bottom: 2px; }
.global-nav__ig:hover { color: #fff; }

/* ============================================================
   ローディング
   ============================================================ */
.loader {
	position: fixed; inset: 0; z-index: 9999; background: #000;
	display: grid; place-items: center; text-align: center;
	animation: loader-out .7s ease 3.9s forwards; /* JSが無くても自動で消える保険 */
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loader-out { to { opacity: 0; visibility: hidden; pointer-events: none; } }
/* コピー：フェードイン → 少し見せる → フェードアウト */
.loader__copy {
	grid-area: 1 / 1; padding: 0 24px;
	color: #fff; font-weight: 700; line-height: 1.5;
	font-size: clamp(22px, 5.5vw, 40px); margin: 0;
	opacity: 0;
	animation: loader-copy 2.5s cubic-bezier(.16,.84,.44,1) .2s forwards;
}
@keyframes loader-copy {
	0%   { opacity: 0; transform: translateY(16px); letter-spacing: .2em; }
	22%  { opacity: 1; transform: translateY(0);   letter-spacing: .04em; }
	60%  { opacity: 1; transform: translateY(0);   letter-spacing: .04em; }
	88%  { opacity: 0; transform: translateY(-12px); letter-spacing: .12em; }
	100% { opacity: 0; }
}
/* ロゴ：コピーが消えた後にフェードイン */
.loader__logo {
	grid-area: 1 / 1; margin: 0 auto; height: clamp(46px, 10vw, 72px); width: auto;
	opacity: 0; transform: translateY(14px) scale(.96);
	animation: loader-logo 1s cubic-bezier(.16,.84,.44,1) 2.7s forwards;
}
.loader__logo--text { font-family: var(--font-en); font-weight: 700; font-size: 40px; letter-spacing: .14em; color: #fff; }
@keyframes loader-logo { to { opacity: 1; transform: none; } }

/* ============================================================
   ヒーロー
   ============================================================ */
.hero { position: relative; background: #fff; color: var(--c-ink); overflow: hidden; padding: clamp(48px, 7vw, 88px) 0 clamp(44px, 6vw, 76px); }
/* テキスト（上） */
.hero__text { max-width: 820px; }
.hero__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--c-ink-mute); margin: 0 0 18px; }
.hero__title { font-size: clamp(38px, 6.2vw, 64px); line-height: 1.3; letter-spacing: .005em; font-weight: 700; }
.hero__desc { margin: 26px 0 0; font-size: clamp(14px, 1.6vw, 16px); color: var(--c-ink-soft); line-height: 2; max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* 横に流れる写真スライダー（下・間隔広め・ミニマル） */
.hero__slider { margin-top: clamp(40px, 6vw, 76px); overflow: hidden; }
.hero__slider-track { display: flex; width: max-content; will-change: transform; animation: hero-marquee-x 48s linear infinite; }
.hero:hover .hero__slider-track { animation-play-state: paused; }
.hero-tile {
	flex: 0 0 auto; width: clamp(280px, 34vw, 460px); aspect-ratio: 3 / 2;
	margin-right: clamp(28px, 5vw, 72px);
	border-radius: 14px; background-size: cover; background-position: center; background-color: #ececec;
}
.hero-tile--ph1 { background-image: linear-gradient(150deg, #2b2b2b, #111); }
.hero-tile--ph2 { background-image: linear-gradient(150deg, #3a3a3a, #1c1c1c); }
.hero-tile--ph3 { background-image: linear-gradient(150deg, #d7d7d7, #b9b9b9); }
.hero-tile--ph4 { background-image: linear-gradient(150deg, #4b4b4b, #2b2b2b); }
@keyframes hero-marquee-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   流れるテキスト（マーキー）
   ============================================================ */
.marquee { overflow: hidden; background: var(--c-ink); color: #fff; padding: 16px 0; white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; gap: 0; animation: marquee 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-en); font-weight: 700; font-size: clamp(15px, 2.4vw, 20px); letter-spacing: .06em; padding: 0 28px; }
.marquee__star { color: rgba(255,255,255,.45); font-size: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   コンセプト
   ============================================================ */
.concept__text { max-width: 760px; margin: 0 auto 44px; text-align: center; color: var(--c-ink-soft); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.stats__item { text-align: center; padding: 28px 16px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); }
.stats__num { display: block; font-family: var(--font-en); font-weight: 800; font-size: clamp(26px, 5vw, 38px); color: var(--c-green); letter-spacing: .02em; }
.stats__num small { font-size: .5em; font-weight: 700; color: var(--c-ink-soft); margin: 0 1px; }
.stats__label { display: block; margin-top: 8px; font-size: 13px; color: var(--c-ink-soft); }

/* 固定背景（パララックス）＋白文字。任意のセクションに .section--fixed で付与。
   背景画像は style="--fixed-img:url(...)" で指定（無ければダークグラデ）。 */
.section--fixed {
	position: relative; color: #fff;
	background-color: #111;
	background-image: var(--fixed-img, linear-gradient(135deg, #2a2a2a, #111111));
	background-size: cover; background-position: center center; background-attachment: fixed;
}
.section--fixed::before { content: ""; position: absolute; inset: 0; background: rgba(8, 9, 9, .66); }
.section--fixed > .container { position: relative; z-index: 1; }
.section-head--light .section-head__title { color: #fff; }
.section-head--light .section-head__title span { color: #fff; }
.section-head--light .section-head__en { color: rgba(255,255,255,.6); }
.section-head--light .section-head__lead { color: rgba(255,255,255,.78); }
@media (max-width: 768px) { .section--fixed { background-attachment: scroll; } }

/* ============================================================
   選ばれる理由
   ============================================================ */
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason-card {
	position: relative; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
	padding: 40px 28px 32px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.reason-card__no {
	font-family: var(--font-en); font-weight: 800; font-size: 40px; color: var(--c-green);
	line-height: 1; display: inline-block; margin-bottom: 14px;
}
.reason-card__no::after { content: ""; display: block; width: 36px; height: 3px; background: var(--c-green); margin-top: 12px; border-radius: 2px; }
.reason-card__title { font-size: 20px; margin-bottom: 12px; }
.reason-card__text { color: var(--c-ink-soft); font-size: 15px; margin: 0; }

/* ============================================================
   料金
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card {
	position: relative; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
	padding: 32px 22px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card--featured { border-color: var(--c-green); }
.price-card__badge {
	position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	background: var(--c-green); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .08em;
	padding: 5px 16px; border-radius: 999px;
}
.price-card__name { font-size: 18px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--c-line); }
.price-card__price { font-family: var(--font-en); font-weight: 800; font-size: 32px; color: var(--c-ink); margin: 0 0 14px; line-height: 1.1; }
.price-card__yen { font-size: .6em; margin-right: 2px; }
.price-card__price small { font-size: .42em; font-weight: 700; color: var(--c-ink-mute); margin-left: 2px; }
.price-card__desc { font-size: 13px; color: var(--c-ink-soft); margin: 0; }
.price__note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--c-ink-mute); }

/* 料金セクション：ダーク（NewsPicks風） */
.price--dark { background: #0d0d0d; color: #fff; }
.price--dark .section-head__title { color: #fff; }
.price--dark .section-head__en { color: rgba(255,255,255,.6); }
.price--dark .section-head__lead { color: rgba(255,255,255,.7); }
.price--dark .price-card { background: #181818; border-color: rgba(255,255,255,.12); }
.price--dark .price-card__name { color: #fff; border-bottom-color: rgba(255,255,255,.14); }
.price--dark .price-card__price { color: #fff; }
.price--dark .price-card__price small { color: rgba(255,255,255,.55); }
.price--dark .price-card__desc { color: rgba(255,255,255,.68); }
.price--dark .price-card--featured { border-color: #fff; }
.price--dark .price-card__badge { background: #fff; color: #111; }
.price--dark .price__note { color: rgba(255,255,255,.5); }

/* ============================================================
   こんな方へ
   ============================================================ */
.target-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.target-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-sm); }
.target-card { transition: transform .25s ease, box-shadow .25s ease; }
.target-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.target-card__img {
	display: flex; align-items: center; justify-content: center; height: 150px;
	font-family: var(--font-en); font-weight: 800; letter-spacing: .12em; font-size: 18px; color: #fff;
	background-image: linear-gradient(135deg, #3a3a3a, #1c1c1c);
	transition: transform .5s ease;
}
.target-card:hover .target-card__img { transform: scale(1.06); }
.target-card__img--photo { background-size: cover; background-position: center; font-size: 0; }
.target-card:nth-child(2) .target-card__img { background-image: linear-gradient(135deg, #1f2937, #111827); }
.target-card:nth-child(3) .target-card__img { background-image: linear-gradient(135deg, #52524f, #2b2b2b); }
.target-card:nth-child(4) .target-card__img { background-image: linear-gradient(135deg, #374151, #4b5563); }
.target-card__title { font-size: 17px; padding: 20px 18px 6px; }
.target-card__text { font-size: 13px; color: var(--c-ink-soft); padding: 0 18px 24px; margin: 0; }

/* ============================================================
   Before / After
   ============================================================ */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.ba-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-card__images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--c-line); }
.ba-card__img {
	height: 220px; display: flex; align-items: flex-end; padding: 12px; position: relative;
	background-color: #e7eae8; background-size: cover; background-position: center;
}
.ba-card__img em { font-family: var(--font-en); font-style: normal; font-weight: 700; font-size: 12px; letter-spacing: .14em; color: #fff; background: rgba(17,17,17,.65); padding: 4px 10px; border-radius: 4px; }
.ba-card__img--before { background-image: linear-gradient(160deg, #cfd6d2, #aeb6b1); }
.ba-card__img--after { background-image: linear-gradient(160deg, #bfe9cd, #7fcf9c); }
.ba-card__img--after em { background: var(--c-green-dark); }
.ba-card__body { padding: 20px 22px 24px; }
.ba-card__cat { display: inline-block; font-family: var(--font-en); font-weight: 700; letter-spacing: .05em; font-size: 13px; color: #fff; background: var(--c-ink); padding: 5px 14px; border-radius: 999px; margin-bottom: 12px; }
.ba-card__meta { display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap; margin-bottom: 6px; }
.ba-card__term { font-weight: 700; color: var(--c-green); font-size: 14px; }
.ba-card__who { font-size: 13px; color: var(--c-ink-mute); }
.ba-card__text { margin: 4px 0 0; font-size: 14px; color: var(--c-ink-soft); }
.ba__note { text-align: center; margin-top: 24px; font-size: 12px; color: var(--c-ink-mute); }

/* ============================================================
   お客様の声（スライダー）
   ============================================================ */
.voice-slider { position: relative; max-width: 820px; margin: 0 auto; overflow: hidden; }
.voice-slider__track { display: flex; transition: transform .45s ease; }
.voice-card {
	flex: 0 0 100%; margin: 0; padding: 40px clamp(24px, 5vw, 56px); text-align: center;
	background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.voice-card__text { position: relative; font-size: clamp(15px, 2.4vw, 18px); color: var(--c-ink); margin: 0 0 18px; }
.voice-card__text::before { content: "“"; font-family: var(--font-en); font-size: 56px; color: var(--c-green-soft); display: block; line-height: .6; margin-bottom: 8px; }
.voice-card__who { font-size: 13px; color: var(--c-ink-mute); letter-spacing: .04em; }
.voice-slider__controls { display: flex; justify-content: center; gap: 14px; margin-top: 24px; }
.slider-btn {
	width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--c-line); background: #fff;
	font-size: 22px; line-height: 1; color: var(--c-ink); cursor: pointer; transition: all .2s ease;
}
.slider-btn:hover { background: var(--c-green); color: #fff; border-color: var(--c-green); }

/* ============================================================
   トレーナー（カード）
   ============================================================ */
.trainer-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tcard { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease; }
.tcard:hover { transform: translateY(-6px); }
.tcard__media { display: block; aspect-ratio: 4 / 5; background: #ececec; overflow: hidden; }
.tcard__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .5s ease; }
.tcard:hover .tcard__media img { transform: scale(1.05); }
.tcard__ph { display: flex; align-items: center; justify-content: center; height: 100%; font-family: var(--font-en); font-weight: 800; font-size: 64px; color: rgba(255,255,255,.9); background: linear-gradient(150deg, #2b2b2b, #111); }
.tcard__body { padding: 18px 20px 22px; text-align: center; }
.tcard__name { font-size: 20px; letter-spacing: .04em; }
.tcard__roma { font-family: var(--font-en); font-size: 12px; color: var(--c-ink-mute); letter-spacing: .08em; margin: 3px 0 12px; }
.tcard__ig { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--c-ink-soft); }
.tcard__ig svg { display: block; }
.tcard__ig:hover { color: var(--c-ink); }

/* ============================================================
   CTAバンド
   ============================================================ */
.cta-band {
	background: #0d0d0d; color: #fff; text-align: center; padding: 80px 0;
	background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 60%);
}
.cta-band__sub { font-family: var(--font-en); letter-spacing: .2em; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 10px; }
.cta-band__title { font-size: clamp(24px, 4.4vw, 34px); margin-bottom: 14px; }
.cta-band__text { color: #cfd6d2; max-width: 560px; margin: 0 auto 30px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
/* 暗い背景上のプライマリボタンは白地に */
.cta-band .btn--primary, .global-nav .btn--primary { background: #fff; color: #111; box-shadow: none; }
.cta-band .btn--primary:hover, .global-nav .btn--primary:hover { background: #e6e6e6; }

/* ============================================================
   下層ページ共通（ヒーロー）
   ============================================================ */
.page-hero {
	padding: clamp(60px, 12vw, 110px) 0 clamp(40px, 8vw, 70px);
	background: var(--c-bg-alt); text-align: center; border-bottom: 1px solid var(--c-line);
}
.page-hero__en { font-family: var(--font-en); font-weight: 700; letter-spacing: .18em; color: var(--c-green); font-size: 14px; display: block; margin-bottom: 10px; }
.page-hero__title { font-size: clamp(26px, 5vw, 40px); letter-spacing: .04em; }
.page-hero__lead { margin: 18px auto 0; max-width: 640px; color: var(--c-ink-soft); }

/* ============================================================
   トレーナー一覧
   ============================================================ */
.trainer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.trainer-card { display: flex; gap: 0; flex-direction: column; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.trainer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
@media (min-width: 720px) { .trainer-card { flex-direction: row; } }
.trainer-card__photo {
	flex: 0 0 200px; min-height: 220px; display: flex; align-items: center; justify-content: center;
	background: linear-gradient(150deg, #2b2b2b, #111111);
}
.trainer-card__initial { font-family: var(--font-en); font-weight: 800; font-size: 64px; color: rgba(255,255,255,.85); }
.trainer-card__img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; object-position: center top; }
.trainer-card__body { padding: 26px 26px 28px; flex: 1; }
.trainer-card__role { font-size: 12px; font-weight: 700; color: var(--c-green); letter-spacing: .08em; margin: 0 0 6px; }
.trainer-card__name { font-size: 24px; letter-spacing: .04em; }
.trainer-card__roma { font-family: var(--font-en); font-size: 12px; color: var(--c-ink-mute); letter-spacing: .08em; margin: 2px 0 14px; }
.trainer-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.trainer-card__tags li { font-size: 11px; font-weight: 700; color: var(--c-green-dark); background: var(--c-green-soft); padding: 4px 12px; border-radius: 999px; }
.trainer-card__profile { font-size: 14px; color: var(--c-ink-soft); margin: 0 0 16px; }
.trainer-card__awards { border-top: 1px solid var(--c-line); padding-top: 14px; }
.trainer-card__awards-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--c-ink-mute); margin-bottom: 6px; }
.trainer-card__awards ul { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.trainer-card__awards li { position: relative; font-size: 13px; color: var(--c-ink-soft); padding-left: 14px; }
.trainer-card__awards li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--c-green); }

/* ============================================================
   お問い合わせ
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.contact-block__title { font-size: 22px; margin-bottom: 8px; }
.contact-block__title::after { content: ""; display: block; width: 40px; height: 3px; background: var(--c-green); margin-top: 12px; border-radius: 2px; }
.contact-block__lead { color: var(--c-ink-soft); font-size: 14px; margin-bottom: 24px; }

.contact-form-wrap { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 32px clamp(20px, 4vw, 36px); box-shadow: var(--shadow-sm); }

/* フォーム共通（暫定フォーム & CF7 両対応） */
.dummy-form__note { font-size: 12px; color: var(--c-ink-mute); background: var(--c-bg-alt); padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 20px; }
.form-row, .wpcf7-form p { margin: 0 0 18px; }
.form-row label, .wpcf7-form label { display: block; font-weight: 700; font-size: 14px; }
.req { display: inline-block; font-size: 11px; font-weight: 700; color: #fff; background: var(--c-green); padding: 2px 8px; border-radius: 4px; margin-left: 6px; vertical-align: middle; }
.form-row input, .form-row select, .form-row textarea,
.wpcf7-form input.wpcf7-form-control:not([type="submit"]),
.wpcf7-form select.wpcf7-form-control,
.wpcf7-form textarea.wpcf7-form-control {
	width: 100%; margin-top: 8px; padding: 13px 14px; font: inherit; color: var(--c-ink);
	background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm); transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus,
.wpcf7-form .wpcf7-form-control:focus {
	outline: none; border-color: var(--c-green); box-shadow: 0 0 0 3px var(--c-green-soft);
}
.form-row textarea, .wpcf7-form textarea.wpcf7-form-control { resize: vertical; }
.form-row--submit { text-align: center; margin-top: 28px; }

/* CF7 送信ボタン */
.wpcf7-form input.wpcf7-submit, .dummy-form .wpcf7-submit {
	background: var(--c-green); color: #fff; border: none; border-radius: 999px;
	padding: 16px 40px; font-weight: 700; font-size: 16px; cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}
.wpcf7-form input.wpcf7-submit:hover { background: var(--c-green-dark); transform: translateY(-2px); }
.dummy-form .wpcf7-submit[disabled] { opacity: .55; cursor: not-allowed; box-shadow: none; }
.wpcf7 .wpcf7-response-output { border-radius: var(--radius-sm); margin: 1.4em 0 0; }

/* サイド */
.contact-side { display: grid; gap: 22px; }
.contact-box { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.contact-box__title { font-size: 18px; margin-bottom: 10px; }
.contact-box__text { font-size: 13px; color: var(--c-ink-soft); margin: 0 0 14px; }
.contact-box__sub { font-size: 12px; color: var(--c-ink-mute); margin: 8px 0 0; }
.contact-tel { font-family: var(--font-en); font-weight: 800; font-size: 28px; color: var(--c-ink); letter-spacing: .03em; }
.line-embed { margin-top: 4px; }
.map-embed { height: 220px; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; background: repeating-linear-gradient(45deg, #eef1ef, #eef1ef 10px, #e7ebe8 10px, #e7ebe8 20px); }
.map-embed__placeholder { font-family: var(--font-en); font-weight: 700; letter-spacing: .12em; color: var(--c-ink-mute); }
.map-embed iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius-sm); }

/* ============================================================
   フッター
   ============================================================ */
.site-footer { background: #0d0d0d; color: #cfcfcf; padding-top: 64px; }
.site-footer__inner { display: grid; grid-template-columns: 1.3fr 1.2fr 1fr; gap: 40px; padding-bottom: 48px; }
.site-logo--footer .site-logo__main { color: #fff; }
.site-logo--footer .site-logo__sub { color: #8a948e; }
.site-footer__logo { width: 200px; max-width: 72%; height: auto; }
.site-footer__social { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 20px; }
.footer-ig { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #cfd6d2; }
.footer-ig__icon { width: 22px; height: 22px; display: block; }
.footer-ig span { border-bottom: 1px solid rgba(207,214,210,.35); padding-bottom: 2px; }
.footer-ig:hover span { color: #fff; }
.footer-line img { display: block; }
.footer-dl { margin: 0; display: grid; grid-template-columns: 64px 1fr; row-gap: 12px; column-gap: 14px; font-size: 14px; }
.footer-dl dt { color: #8a948e; font-weight: 700; }
.footer-dl dd { margin: 0; }
.footer-dl a { border-bottom: 1px solid rgba(207,214,210,.3); }
.footer-map { margin-top: 18px; border-radius: 10px; overflow: hidden; height: 180px; }
.footer-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer-nav__list { display: grid; gap: 12px; }
.footer-nav__list a { font-size: 14px; transition: color .2s ease; }
.footer-nav__list a:hover { color: #fff; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.site-footer__bottom small { font-size: 12px; color: #79837d; }

/* 追従固定CTA（全画面・メインビジュアルの2ボタン） */
.sticky-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; border-top: 1px solid rgba(255,255,255,.12); }
.sticky-cta__item { flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; padding: 16px 10px; font-weight: 700; font-size: 15px; color: #fff; letter-spacing: .02em; transition: background .2s ease; }
.sticky-cta__item--book { background: #111; }
.sticky-cta__item--book:hover { background: #000; }
.sticky-cta__item--tel { background: #3a3a3a; }
.sticky-cta__item--tel:hover { background: #2a2a2a; }

/* ============================================================
   汎用リッチテキスト / 投稿
   ============================================================ */
.rich-text :is(h2,h3) { margin: 1.6em 0 .6em; }
.rich-text a { color: var(--c-green-dark); border-bottom: 1px solid currentColor; }
.post-list { display: grid; gap: 24px; }
.post-card { border: 1px solid var(--c-line); border-radius: var(--radius); padding: 24px; }
.post-card__title a:hover { color: var(--c-green); }
.post-card__meta { font-size: 12px; color: var(--c-ink-mute); margin: 6px 0 10px; }

/* ============================================================
   サンクスページ
   ============================================================ */
.thanks { padding: clamp(80px, 14vw, 160px) 0; text-align: center; }
.thanks__inner { max-width: 560px; margin: 0 auto; }
.thanks__icon { margin-bottom: 28px; }
.thanks__icon svg { display: inline-block; }
.thanks__icon circle { stroke-dasharray: 188; stroke-dashoffset: 188; animation: thanks-circle .8s ease .2s forwards; }
.thanks__icon polyline { stroke-dasharray: 40; stroke-dashoffset: 40; animation: thanks-check .5s ease .7s forwards; }
@keyframes thanks-circle { to { stroke-dashoffset: 0; } }
@keyframes thanks-check { to { stroke-dashoffset: 0; } }
.thanks__title { font-size: clamp(22px, 4.4vw, 32px); margin-bottom: 20px; }
.thanks__text { color: var(--c-ink-soft); line-height: 2; margin-bottom: 32px; }
.thanks__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 36px; }
.thanks__back { font-size: 14px; color: var(--c-ink-mute); border-bottom: 1px solid var(--c-line); padding-bottom: 2px; }
.thanks__back:hover { color: var(--c-ink); }

/* ============================================================
   出現アニメ
   ============================================================ */
[data-reveal] {
	opacity: 0; transform: translateY(28px);
	transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
	transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* カウントアップ中の数字がガタつかないように */
.count { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
	.hero__slider-track { animation: none; }
	.marquee__track { animation: none; }
	.loader { display: none; }
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 900px) {
	.reason-grid { grid-template-columns: 1fr; }
	.price-grid { grid-template-columns: repeat(2, 1fr); }
	.target-grid { grid-template-columns: repeat(2, 1fr); }
	.ba-grid { grid-template-columns: 1fr; }
	.contact-layout { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
	.hero-tile { width: clamp(260px, 50vw, 380px); }
}
@media (max-width: 768px) {
	.section { padding: 64px 0; }
	.nav-toggle__label { display: none; }
	.header-cta { padding: 10px 18px; font-size: 13px; }
	.stats { grid-template-columns: 1fr; max-width: 360px; }
	.sticky-cta__item { font-size: 14px; padding: 14px 8px; }
	/* SP：見出し小さめ・写真は下に横スライド */
	.hero__title { font-size: clamp(32px, 9vw, 48px); line-height: 1.3; letter-spacing: 0; }
	.hero__desc { font-size: 14px; line-height: 1.9; max-width: 100%; }
	.hero-tile { width: clamp(240px, 78vw, 340px); margin-right: clamp(20px, 6vw, 40px); }
}
@media (max-width: 560px) {
	.price-grid { grid-template-columns: 1fr; }
	.target-grid { grid-template-columns: 1fr; }
	.trainer-cards { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
	.site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
	.header-cta { display: none; } /* 極小画面はメニュー内のCTAに集約 */
}
