/* =========================================================
   ViXer 24H PRIVATE GYM - Top page
   Mobile-first / Black・White・Gold
   ========================================================= */

:root {
  --black: #0b0b0b;
  --black-2: #161616;
  --black-3: #222;
  --white: #fff;
  --off: #f5f4f1;
  --gray-1: #e8e6e1;
  --gray-2: #9a968f;
  --text: #1c1c1c;
  --text-sub: #5b5852;
  --gold: #c9862b;
  --gold-2: #d9a24a;
  --gold-light: #e9c98c;
  --gold-pale: #fbf3e4;
  --gold-text: #b5761d;

  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 6px 20px rgba(0, 0, 0, .08);
  --shadow-dark: 0 8px 24px rgba(0, 0, 0, .45);

  --container: 1120px;
  --gutter: 20px;
  --fixed-cta-h: 50px;

  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-ja);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--fixed-cta-h) + env(safe-area-inset-bottom));
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
strong { font-weight: 700; }
small { font-weight: 400; }
.sp { display: inline; }
.center { text-align: center; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: 48px 0; }

/* ---------- Icons ---------- */
.ic {
  width: 1.25em; height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  vertical-align: middle;
}
.ic--arrow { width: 1em; height: 1em; margin-left: auto; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; flex-direction: column; line-height: 1; color: var(--white); }
.logo__main {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .06em;
}
.logo__sub {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  margin-top: 4px;
  opacity: .9;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  border: 1.5px solid transparent;
  transition: opacity .2s, transform .2s, background-color .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { opacity: .88; }
.btn:active { transform: scale(.985); }
.btn__label { display: flex; flex-direction: column; text-align: left; }
.btn__label strong { font-size: 17px; }
.btn__label small { font-size: 11px; font-weight: 500; opacity: .8; margin-top: 2px; }
.btn--lg { min-height: 64px; padding: 12px 18px; border-radius: 12px; }
.btn--sm { min-height: 40px; padding: 6px 14px; font-size: 13px; border-radius: 8px; }

.btn--white { background: var(--white); color: var(--text); border-color: var(--white); }
.btn--gold  { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--dark  { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--ghost { background: var(--white); color: var(--text); border-color: var(--gray-1); font-weight: 500; }
.btn--outline { background: transparent; color: var(--white); border-color: var(--gold-2); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); font-weight: 500; }
.btn--outline .ic { color: var(--gold-2); }

/* ---------- Section titles ---------- */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.sec-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .03em;
}
.sec-title small { font-size: 12px; font-weight: 500; color: var(--text-sub); margin-left: 4px; }
.sec-title--stack small { display: block; margin-left: 0; margin-top: 2px; line-height: 1.5; }
.sec-title--center { text-align: center; }
.sec-title--light { color: var(--white); }
.sec-title--light em {
  font-style: normal;
  color: var(--gold-2);
  font-family: var(--font-en);
  font-size: 1.25em;
  border-bottom: 2px solid var(--gold-2);
  padding: 0 2px;
}
.sec-title--underline {
  display: inline-block;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text);
  padding: 4px 0;
}
.more .ic { color: var(--gold-text); }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.header__actions { display: flex; align-items: center; gap: 14px; }
.header__cta { display: none; white-space: nowrap; } /* スマホはロゴ＋メニューのみ。PC(>=960px)で表示 */
.header__inner, .logo__main, .logo__sub, .menu-btn { transition: padding .2s, font-size .2s, opacity .2s, min-height .2s; }
/* スクロール後のコンパクト表示（スマホ） */
.header.is-compact .header__inner { padding-top: 8px; padding-bottom: 8px; }
.header.is-compact .logo__main { font-size: 21px; }
.header.is-compact .logo__sub { font-size: 8px; margin-top: 2px; opacity: .75; }
.header.is-compact .menu-btn { min-height: 40px; }
.header.is-compact .menu-btn__label { display: none; }
.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}
.menu-btn__bars { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.menu-btn__bars i { display: block; height: 2px; background: var(--white); border-radius: 2px; }
.menu-btn__label { font-size: 10px; letter-spacing: .05em; }

/* Drawer */
.drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0; transition: opacity .25s;
}
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(84vw, 360px);
  background: var(--black);
  color: var(--white);
  padding: 16px 20px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex; flex-direction: column;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.drawer__close { font-size: 32px; line-height: 1; width: 44px; height: 44px; }
.drawer__list li a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-weight: 500;
}
.drawer__sub { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer__sub li a {
  display: block;
  font-size: 12px;
  text-align: center;
  padding: 9px 6px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  opacity: .9;
}
.drawer__sns { display: flex; gap: 18px; margin-top: 14px; font-size: 12px; }
.drawer__sns a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.drawer__cta { display: grid; gap: 12px; margin-top: 22px; }
.drawer__cta .btn { justify-content: center; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero__bg { position: absolute; inset: 0; background: var(--black); isolation: isolate; } /* スライドの重なり順を背景の中に閉じ込める（文字より前に出ないように） */
/* 背景スライド：文字は固定、背景だけが静かにクロスフェード（JS が .is-active を切り替え） */
.hero__slide { position: absolute; inset: 0; margin: 0; opacity: 0; z-index: 0; transition: opacity 1.2s ease-in-out; }
.hero__slide.is-prev { opacity: 1; z-index: 1; }
.hero__slide.is-active { opacity: 1; z-index: 2; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
@media (prefers-reduced-motion: reduce) { .hero__slide { transition: none; } }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.74) 45%, rgba(0,0,0,.3) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.6) 100%);
}
/* スマホは文字が全幅に乗るので、左右差のない落ち着いた暗さにする */
@media (max-width: 599px) {
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.52) 45%, rgba(0,0,0,.8) 100%);
  }
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px var(--gutter) 40px;
}
.hero__area {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-light);
  border: 1px solid rgba(217,162,74,.6);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.hero__title { display: block; }
.hero__lead {
  display: block;
  color: var(--gold-2);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.4;
}
.hero__title-main {
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
  margin-top: 6px;
}
.hero__title-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.7;
  margin-top: 12px;
  opacity: .85;
}
.hero__title-brand { white-space: nowrap; font-family: var(--font-en); letter-spacing: .06em; }
.hero__bar {
  display: block;
  width: 120px;
  height: 2px;
  background: var(--gold-2);
  margin: 18px 0;
}
.hero__text { font-size: 15px; line-height: 1.9; opacity: .95; }
.hero__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
  max-width: 520px;
}
.hero__btns .btn { padding-left: 12px; padding-right: 12px; gap: 8px; }
.hero__btns .btn__label strong { font-size: 16px; }
.hero__btns .btn__label small { font-size: 10px; letter-spacing: 0; white-space: nowrap; }
@media (max-width: 479px) {
  .hero__btns .ic--arrow { display: none; }
}

/* =========================================================
   News bar
   ========================================================= */
.newsbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px var(--gutter);
  background: var(--white);
  border-bottom: 1px solid var(--gray-1);
  font-size: 13px;
  max-width: 100%;
}
.newsbar__label { color: var(--gold-text); font-family: var(--font-en); font-weight: 700; letter-spacing: .08em; }
.newsbar__date { color: var(--text-sub); white-space: nowrap; }
.newsbar__text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.newsbar .ic--arrow { width: 16px; height: 16px; }

/* =========================================================
   Recommend
   ========================================================= */
.recommend {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.recommend__photo { position: absolute; inset: 0; }
.recommend__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 85% 20%; }
.recommend__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.86) 55%, rgba(0,0,0,.45) 100%);
}
.recommend__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 44px var(--gutter) 48px;
}
.recommend__title { font-size: 21px; font-weight: 700; line-height: 1.5; }
.recommend__sub { font-size: 12px; color: var(--gold-light); margin-top: 6px; letter-spacing: .04em; }
.checklist { margin-top: 20px; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.checklist .ic { color: var(--gold-2); width: 22px; height: 22px; }
.recommend__note { margin-top: 22px; font-size: 14px; line-height: 1.9; opacity: .92; }
.recommend .btn--ghost { margin-top: 18px; padding: 10px 20px; }

.campaign {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.campaign__badge {
  width: 196px;
  height: 196px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  box-shadow: 0 0 0 6px rgba(217,162,74,.25), var(--shadow-dark);
}
.campaign__tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.campaign__name { font-size: 16px; font-weight: 700; }
.campaign__price { display: flex; align-items: baseline; gap: 2px; margin-top: 2px; }
.campaign__price strong { font-family: var(--font-en); font-size: 58px; line-height: 1; font-weight: 700; }
.campaign__price { font-size: 20px; font-weight: 700; }
.campaign__sub { font-size: 12px; font-weight: 700; margin-top: 4px; }
.campaign__points { display: grid; gap: 6px; }
.campaign__points li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }
.campaign__points .ic { color: var(--gold-2); width: 18px; height: 18px; }

/* =========================================================
   Reasons
   ========================================================= */
.reasons { background: var(--black); color: var(--white); padding: 44px 0 40px; }
.reasons .sec-title { margin-bottom: 8px; }
.reasons__sub { text-align: center; font-size: 12px; opacity: .8; margin-bottom: 22px; }
.reason-list { display: grid; gap: 16px; }
.reason-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-2);
  border: 1px solid rgba(217,162,74,.45);
  min-height: 200px;
}
.reason-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.reason-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.9) 100%);
}
.reason-card__num {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  display: grid; place-items: center;
}
.reason-card__body { position: relative; z-index: 2; padding: 92px 18px 20px; }
.reason-card__body h3 { font-size: 19px; font-weight: 700; line-height: 1.45; }
.reason-card__body p { font-size: 13px; margin-top: 6px; opacity: .92; line-height: 1.8; }
.reasons .btn--outline-light { margin-top: 24px; padding: 10px 26px; min-width: 280px; justify-content: center; }
.reasons .btn--outline-light .ic--arrow { margin-left: 8px; }

/* =========================================================
   Flow
   ========================================================= */
.flow { background: var(--white); }
.flow-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.flow-card {
  background: var(--off);
  border-radius: var(--radius);
  padding: 16px 12px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-card__head {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold-text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: left;
  align-self: flex-start;
  min-height: 34px;
}
.flow-card__num {
  width: 24px; height: 24px; flex: 0 0 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 12px;
  display: grid; place-items: center;
}
.flow-card__icon { width: 96px; margin: 14px 0 10px; color: var(--text); }
.flow-card__icon svg { width: 100%; height: auto; }
.flow-card p { font-size: 12px; line-height: 1.7; color: var(--text-sub); }

/* =========================================================
   Reviews
   ========================================================= */
.reviews { background: var(--off); }
.review-list { display: grid; gap: 12px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow);
}
.review-card__avatar {
  flex: 0 0 52px; width: 52px; height: 52px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.review-card__avatar::before {
  content: ""; position: absolute; left: 50%; top: 30%; transform: translateX(-50%);
  width: 46%; height: 46%; border-radius: 50%; background: #f3dcc8;
}
.review-card__avatar::after {
  content: ""; position: absolute; left: 50%; top: 72%; transform: translateX(-50%);
  width: 80%; height: 60%; border-radius: 50% 50% 0 0; background: #fff;
}
.review-card__avatar--a { background: #a9c7e3; }
.review-card__avatar--b { background: #e6c7b0; }
.review-card__avatar--c { background: #bdb7d6; }
.review-card__body { flex: 1 1 auto; min-width: 0; }
.stars { display: flex; align-items: center; gap: 1px; color: var(--gold); font-size: 13px; }
.stars .ic { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.stars span { margin-left: 6px; font-weight: 700; color: var(--text); }
.review-card h3 { font-size: 15px; font-weight: 700; margin-top: 6px; }
.review-card p { font-size: 13px; color: var(--text-sub); margin-top: 6px; line-height: 1.8; }
.review-card__meta { display: block; margin-top: 8px; font-size: 11px; color: var(--gray-2); }

/* =========================================================
   Plans
   ========================================================= */
.plans { background: var(--white); }
.plan-list { display: grid; gap: 14px; }
.plan-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--radius-lg);
  padding: 26px 20px 22px;
  text-align: center;
}
.plan-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 26px rgba(201,134,43,.15);
}
.plan-card__ribbon {
  position: absolute; top: -12px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
}
.plan-card__name { font-size: 15px; font-weight: 700; color: var(--gold-text); }
.plan-card__price {
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  margin-top: 6px;
  color: var(--gold-text);
}
.plan-card__unit { font-size: 13px; font-weight: 700; margin-right: 4px; }
.plan-card__price strong { font-family: var(--font-en); font-size: 42px; line-height: 1; letter-spacing: -.01em; }
.plan-card__yen { font-size: 16px; font-weight: 700; }
.plan-card__tax { font-size: 11px; color: var(--text-sub); font-weight: 500; }
.plan-card__feats { margin-top: 16px; display: grid; gap: 8px; text-align: left; }
.plan-card__feats li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }
.plan-card__feats .ic { color: var(--gold); width: 18px; height: 18px; }
.plans__note { margin-top: 18px; font-size: 13px; color: var(--text-sub); line-height: 1.8; }
.plans__note strong { color: var(--gold-text); }

/* =========================================================
   Blog & News
   ========================================================= */
.info { background: var(--off); }
.info__grid { display: grid; gap: 14px; }
.panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow);
}
.panel__head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-bottom: 14px;
}
.panel__title { font-size: 16px; font-weight: 700; line-height: 1.4; }
.panel__title small { display: block; font-size: 12px; font-weight: 500; color: var(--text-sub); line-height: 1.5; }
.panel__sep { display: none; font-weight: 400; color: var(--gray-2); margin: 0 2px; }

.blog-list { display: grid; gap: 10px; }
.blog-item { display: flex; gap: 12px; align-items: center; }
.blog-item img { flex: 0 0 92px; width: 92px; height: 70px; object-fit: cover; border-radius: 8px; }
.blog-item__body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.blog-item__title { font-size: 14px; font-weight: 500; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-item time { font-size: 12px; color: var(--gray-2); margin-bottom: 2px; font-family: var(--font-en); letter-spacing: .02em; }

.news-list { display: grid; gap: 14px; }
.news-item { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.news-item__meta { display: flex; align-items: center; gap: 10px; }
.news-item__title { font-size: 14px; font-weight: 500; line-height: 1.6; display: block; }
.tag {
  flex: 0 0 auto;
  min-width: 64px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 2px;
}
.tag--info { background: #2f5fa3; }
.tag--campaign { background: #c9385a; }
.tag--hours { background: #1f9a8a; }
.news-item__body { display: flex; flex-direction: column; min-width: 0; }
.news-item time { font-size: 12px; color: var(--text-sub); font-family: var(--font-en); letter-spacing: .02em; }
.news-item a { font-size: 14px; font-weight: 500; line-height: 1.6; }

/* =========================================================
   Access
   ========================================================= */
.access { background: var(--white); }
.access .sec-title { margin-bottom: 14px; }
.access__grid { display: grid; grid-template-columns: 148px 1fr; gap: 14px; align-items: start; }
.access__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; }
.access__name { font-size: 12px; font-weight: 700; color: var(--gold-text); letter-spacing: .04em; }
.access__addr { font-size: 14px; font-weight: 700; line-height: 1.6; font-style: normal; margin-top: 2px; }
.access__list { margin-top: 8px; display: grid; gap: 4px; }
.access__list li { display: flex; align-items: center; gap: 8px; font-size: 13px; flex-wrap: wrap; }
.access__list .ic { width: 18px; height: 18px; color: var(--text); }
.access__list a { font-weight: 700; }
.access__body .more { margin-top: 8px; }
.access__map { margin-top: 20px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-1); }
.access__map iframe { display: block; width: 100%; height: 260px; }

/* Local area */
.area { background: var(--off); }
.area .sec-title { margin-bottom: 14px; }
.area__text { font-size: 14px; line-height: 1.95; color: var(--text-sub); }
.area__list { margin-top: 18px; display: grid; gap: 12px; }
.area__list div {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.area__list dt { font-size: 13px; font-weight: 700; color: var(--gold-text); }
.area__list dd { margin: 4px 0 0; font-size: 13px; line-height: 1.8; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--off); }
.faq .sec-title { margin-bottom: 16px; }
.faq .sec-head { margin-bottom: 16px; }
.faq .sec-head .sec-title { margin-bottom: 0; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 44px 16px 44px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  position: absolute; left: 16px; top: 15px;
  font-family: var(--font-en);
  color: var(--gold-text);
  font-weight: 700;
  font-size: 16px;
}
.faq-item summary::after {
  content: "";
  position: absolute; right: 18px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--gold-text);
  border-bottom: 2px solid var(--gold-text);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item p {
  padding: 0 18px 16px 44px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.85;
  position: relative;
}
.faq-item p::before {
  content: "A";
  position: absolute; left: 16px; top: -2px;
  font-family: var(--font-en);
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

/* =========================================================
   Reserve
   ========================================================= */
.reserve {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 52px 0 56px;
}
.reserve__lead { color: var(--gold-2); font-size: 14px; font-weight: 500; letter-spacing: .06em; }
.reserve__title { font-size: 24px; font-weight: 700; margin-top: 6px; }
.reserve__text { font-size: 14px; margin-top: 12px; opacity: .9; }
.reserve__btns { display: grid; gap: 12px; margin: 26px auto 0; max-width: 520px; }
.reserve__tel { margin-top: 22px; font-size: 13px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px; opacity: .9; }
.reserve__tel a { font-family: var(--font-en); font-weight: 700; font-size: 18px; color: var(--gold-2); }
.reserve__tel small { font-size: 11px; width: 100%; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--black-2); color: var(--white); padding: 36px 0 24px; font-size: 13px; }
.footer__inner { display: grid; gap: 24px; }
.footer__desc { margin-top: 12px; font-size: 13px; font-weight: 500; }
.footer__company { margin-top: 4px; font-size: 12px; opacity: .8; }
.footer__nap { margin-top: 8px; line-height: 1.9; opacity: .8; font-size: 12px; font-style: normal; }
.footer__sns { display: flex; gap: 16px; margin-top: 12px; font-size: 12px; }
.footer__sns a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.footer__nav a { opacity: .85; }
.footer__copy { text-align: center; font-size: 11px; opacity: .55; margin-top: 28px; font-family: var(--font-en); letter-spacing: .04em; }

/* =========================================================
   Fixed bottom CTA
   ========================================================= */
.fixed-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 4px 10px calc(4px + env(safe-area-inset-bottom));
  background: rgba(11,11,11,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.08);
  transition: transform .25s;
}
.fixed-cta.is-hidden { transform: translateY(110%); }
.fixed-cta .btn { min-height: 42px; height: 100%; padding: 3px 8px; gap: 8px; justify-content: center; border-radius: 8px; }
.fixed-cta .btn .ic { display: none; width: 1.2em; height: 1.2em; }
.fixed-cta .btn__label { min-width: 0; }
.fixed-cta .btn__label strong { font-size: 13.5px; letter-spacing: 0; white-space: nowrap; line-height: 1.25; }
.fixed-cta .btn__label small { font-size: 8.5px; letter-spacing: 0; white-space: nowrap; margin-top: 0; line-height: 1.3; }
@media (max-width: 359px) {
  .fixed-cta { gap: 8px; padding-left: 8px; padding-right: 8px; }
}
.ic--line { fill: currentColor; stroke: none; }
.fixed-cta .ic--arrow { display: none; }

/* =========================================================
   Mobile only (< 600px): カードの余白・文字サイズ・行間の微調整
   ========================================================= */
@media (max-width: 599px) {
  .reason-card__body { padding: 84px 16px 18px; }
  .reason-card__body h3 { font-size: 18px; line-height: 1.5; }
  .reason-card__body p { font-size: 13.5px; line-height: 1.85; margin-top: 8px; }
  .flow-card { padding: 16px 12px 16px; }
  .flow-card p { font-size: 13px; line-height: 1.75; }
  .flow-card__icon--sm { margin: 10px 0 10px; }
  .review-list { gap: 10px; }
  .review-card { padding: 16px 16px 14px; }
  .review-card h3 { font-size: 15px; line-height: 1.55; }
  .review-card p { font-size: 13.5px; line-height: 1.85; }
  .review-card__src { margin-top: 8px; }
  .trial-card { padding: 24px 16px 20px; gap: 16px; }
  .trial-card .campaign__points li { font-size: 14px; line-height: 1.7; }
  .compare__cell { padding: 13px 12px; font-size: 13.5px; line-height: 1.65; }
  .compare__note { font-size: 13px; }
  .plans-simple { padding: 22px 16px; }
  .plans-simple__text { font-size: 13.5px; line-height: 1.8; }
  .plans-simple__list li { font-size: 13.5px; padding: 11px 12px; }
  .faq-item summary { font-size: 14px; line-height: 1.65; padding: 15px 42px 15px 42px; }
  .faq-item p { font-size: 13.5px; line-height: 1.85; padding: 0 16px 16px 42px; }
}

/* =========================================================
   Responsive: tablet (>= 600px)
   ========================================================= */
@media (min-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .sp { display: none; }
  .hero__lead { font-size: 30px; }
  .hero__title-main { font-size: 40px; }
  .hero__title-sub { font-size: 14px; }
  .access__map iframe { height: 340px; }
  .area__list { grid-template-columns: 1fr 1fr; }
  .review-list { grid-template-columns: repeat(3, 1fr); }
  .review-card { flex-direction: column; }
  .sec-title--stack small { display: inline; margin-left: 4px; }
  .panel__title small { display: inline; }
  .panel__sep { display: inline; }
  .plan-list { grid-template-columns: repeat(3, 1fr); }
  .info__grid { grid-template-columns: 1.15fr 1fr; align-items: start; }
  .flow-list { grid-template-columns: repeat(4, 1fr); }
  .section.gallery .gallery__slide { flex-basis: 46%; }
  .section.gallery .gallery__btn { display: grid; }
  .section.gallery .gallery__btns { grid-template-columns: 1fr 1fr; }
  .section.flow .flow__lead { font-size: 14px; }
  .access__grid { grid-template-columns: 240px 1fr; gap: 24px; }
  .fixed-cta .ic--arrow { display: block; }
  .fixed-cta .btn .ic { display: block; }
  .fixed-cta .btn__label strong { font-size: 15px; }
  .reserve__btns { grid-template-columns: 1fr 1fr; max-width: 600px; }
  .footer__inner { grid-template-columns: 1fr auto; align-items: start; }
}

/* =========================================================
   Responsive: desktop (>= 960px)
   ========================================================= */
@media (min-width: 960px) {
  :root { --gutter: 32px; --fixed-cta-h: 0px; }
  body { padding-bottom: 0; }
  .fixed-cta { display: none; }

  .header__inner, .header.is-compact .header__inner { padding-top: 14px; padding-bottom: 14px; }
  .header.is-compact .logo__main { font-size: 30px; }
  .header.is-compact .logo__sub { font-size: 10px; margin-top: 4px; opacity: .9; }
  .header.is-compact .menu-btn { min-height: 44px; }
  .header.is-compact .menu-btn__label { display: block; }
  .header__cta { display: inline-flex; }
  .logo__main { font-size: 30px; }

  .hero { min-height: 640px; }
  .hero__inner { padding: 100px var(--gutter) 90px; }
  .hero__lead { font-size: 32px; }
  .hero__title-main { font-size: 48px; }
  .hero__title-sub { font-size: 15px; }
  .hero__area { font-size: 12px; }
  .hero__text { font-size: 17px; }
  .reasons__sub { font-size: 14px; margin-bottom: 32px; }
  .recommend__sub { font-size: 14px; }
  .area__text { font-size: 15px; }
  .area__list dd { font-size: 14px; }
  .access__map iframe { height: 400px; }
  .hero__btns { margin-top: 34px; }
  .section.gallery .gallery__slide { flex-basis: 31.5%; }
  .section.gallery .gallery__lead { font-size: 14px; margin-bottom: 26px; }
  .section.gallery .gallery__btn--prev { left: calc(50% - var(--container) / 2 + 4px); }
  .section.gallery .gallery__btn--next { right: calc(50% - var(--container) / 2 + 4px); }
  .section.flow .flow__lead { font-size: 15px; margin-bottom: 32px; }

  .newsbar {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    font-size: 14px;
  }

  .recommend__inner {
    padding: 80px var(--gutter);
    display: grid;
    grid-template-columns: 1fr 260px;
    grid-template-areas:
      "title camp"
      "sub   camp"
      "list  camp"
      "note  camp"
      "btn   camp";
    column-gap: 60px;
    align-items: center;
    justify-content: start;
    max-width: 900px;
    margin: 0 auto;
  }
  .recommend__title { grid-area: title; font-size: 28px; }
  .recommend__sub { grid-area: sub; }
  .checklist { grid-area: list; }
  .recommend__note { grid-area: note; font-size: 16px; }
  .recommend .btn--ghost { grid-area: btn; justify-self: start; }
  .campaign { grid-area: camp; margin-top: 0; }
  .campaign__badge { width: 240px; height: 240px; }
  .campaign__name { font-size: 19px; }
  .campaign__price strong { font-size: 72px; }
  .recommend__photo::after {
    background: linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.9) 50%, rgba(0,0,0,.35) 100%);
  }

  .reasons { padding: 72px 0 64px; }
  .reasons .sec-title { font-size: 28px; margin-bottom: 32px; }
  .reason-list { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .reason-card { min-height: 300px; }
  .reason-card__body { padding-top: 170px; }
  .reason-card__body h3 { font-size: 21px; }
  .reason-card__body p { font-size: 14px; }

  .sec-title { font-size: 26px; }
  .sec-title small { font-size: 14px; }
  .more { font-size: 14px; }
  .sec-head { margin-bottom: 28px; }

  .flow-card { padding: 22px 18px 20px; }
  .flow-card__head { font-size: 15px; }
  .flow-card__icon { width: 120px; }
  .flow-card p { font-size: 14px; }

  .review-card { padding: 22px 20px; }
  .review-card p, .plan-card__feats li { font-size: 14px; }

  .plan-card { padding: 34px 24px 28px; }
  .plan-card__price strong { font-size: 50px; }

  .panel { padding: 26px 24px; }
  .panel__title { font-size: 18px; }
  .blog-item img { width: 110px; flex-basis: 110px; height: 82px; }

  .access__grid { grid-template-columns: 320px 1fr; gap: 32px; }
  .access__addr { font-size: 16px; }
  .access__list li { font-size: 15px; }

  .faq-item summary { font-size: 15px; }
  .faq-item p { font-size: 14px; }

  .reserve { padding: 80px 0; }
  .reserve__title { font-size: 32px; }
  .reserve__text { font-size: 15px; }
}

/* ---------- Focus visible ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 2px;
}

/* =========================================================
   Sub page: 料金・プラン (price.html)
   ========================================================= */
.page-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 80% 50%; }
.page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.75) 50%, rgba(0,0,0,.3) 100%);
}
.page-hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px var(--gutter) 40px;
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 11px; opacity: .8; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; }
.page-hero__title { font-size: 32px; font-weight: 700; letter-spacing: .04em; margin-top: 10px; line-height: 1.3; }
.page-hero__text { margin-top: 12px; font-size: 14px; line-height: 1.9; }

.price { padding-top: 24px; padding-bottom: 56px; }
.price__note { font-size: 11px; color: var(--text-sub); text-align: center; margin-top: 10px; line-height: 1.7; }

/* 入会金 */
.fee__box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
}
.fee__icon {
  flex: 0 0 52px; width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid; place-items: center;
}
.fee__icon .ic { width: 26px; height: 26px; }
.fee__before { flex: 1 1 auto; min-width: 0; }
.fee__label { font-size: 14px; font-weight: 700; }
.fee__old { font-size: 13px; color: var(--text); line-height: 1.2; margin-top: 2px; }
.fee__old s { text-decoration: line-through; text-decoration-color: #d83a3a; text-decoration-thickness: 2px; }
.fee__old strong { font-family: var(--font-en); font-size: 26px; }
.fee__old small { font-size: 11px; margin-left: 2px; }
.fee__arrow { color: var(--gold); font-size: 22px; font-weight: 700; flex: 0 0 auto; }
.fee__after { flex: 1 1 auto; text-align: center; min-width: 0; }
.fee__tag { display: block; color: #d83a3a; font-size: 10px; font-weight: 700; letter-spacing: 0; white-space: nowrap; }
.fee__new { color: #d83a3a; font-weight: 700; font-size: 14px; line-height: 1.1; }
.fee__new strong { font-family: var(--font-en); font-size: 40px; }
.fee__new small { font-size: 11px; color: var(--text); font-weight: 500; margin-left: 2px; }
.fee__badge {
  flex: 0 0 56px; width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 10px; font-weight: 700; line-height: 1.3;
  display: grid; place-items: center; text-align: center;
}

/* セクション見出し（左右にゴールドの罫線） */
.price-sec { margin-top: 36px; }
.price-sec__title {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 18px; font-weight: 700; letter-spacing: .06em;
  margin-bottom: 16px;
}
.price-sec__title::before, .price-sec__title::after { content: ""; width: 34px; height: 2px; background: var(--gold); }
.price-sec__title small { font-size: 12px; font-weight: 500; color: var(--text-sub); letter-spacing: 0; }

/* 月額プラン */
.mplan-list { display: grid; gap: 12px; }
.mplan {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-areas:
    "icon body"
    "price price";
  align-items: center;
  gap: 8px 12px;
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--radius);
  padding: 18px 14px 16px;
}
.mplan--popular { border-color: var(--gold); }
.mplan__ribbon {
  position: absolute; top: -1px; left: -1px;
  background: var(--gold); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 3px 12px;
  border-radius: 10px 0 10px 0;
}
.mplan__icon {
  grid-area: icon;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--black);
  color: var(--white);
  display: grid; place-items: center;
  position: relative;
}
.mplan__icon .ic { width: 30px; height: 30px; }
.mplan__icon b { position: absolute; right: 6px; bottom: 5px; font-family: var(--font-en); font-size: 10px; background: var(--black); padding: 0 2px; }
.mplan__body { grid-area: body; min-width: 0; }
.mplan__name { font-size: 19px; font-weight: 700; line-height: 1.2; }
.mplan__desc { font-size: 12px; margin-top: 4px; line-height: 1.6; }
.mplan__desc small { font-size: 11px; color: var(--text-sub); }
.mplan__desc .mplan__warn { color: #d83a3a; font-weight: 700; }
.mplan__for {
  display: inline-block;
  margin-top: 8px;
  background: var(--gold-pale);
  color: var(--gold-text);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}
.mplan__price {
  grid-area: price;
  text-align: right;
  line-height: 1;
  white-space: nowrap;
  border-top: 1px dashed var(--gray-1);
  padding-top: 10px;
  margin-top: 2px;
}
.mplan__price strong { font-family: var(--font-en); font-size: 28px; letter-spacing: -.01em; }
.mplan__price span { font-size: 12px; font-weight: 700; margin-left: 2px; }
.mplan__price small { font-size: 10px; font-weight: 500; color: var(--text-sub); }

/* パーソナル */
.pt {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--radius);
  padding: 18px 16px;
}
.pt__icon { flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center; color: var(--text); }
.pt__icon .ic { width: 40px; height: 40px; stroke-width: 1.4; }
.pt__price { font-size: 15px; font-weight: 700; line-height: 1.2; }
.pt__price strong { font-family: var(--font-en); font-size: 26px; margin: 0 2px; }
.pt__price small { font-size: 11px; font-weight: 500; color: var(--text-sub); }
.pt__sep { margin: 0 6px; color: var(--gray-2); }
.pt__desc { font-size: 12px; color: var(--text-sub); margin-top: 6px; line-height: 1.7; }

/* 回数券 */
.ticket-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ticket {
  position: relative;
  background: var(--off);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 22px 8px 14px;
  text-align: center;
}
.ticket--best { background: var(--white); border-color: var(--gold); }
.ticket__ribbon {
  position: absolute; top: -12px; right: -4px;
  background: var(--gold); color: var(--white);
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 6px;
}
.ticket__name { display: flex; align-items: center; justify-content: center; gap: 4px; font-size: 14px; font-weight: 700; }
.ticket__name .ic { width: 20px; height: 20px; }
.ticket__price { margin-top: 6px; font-weight: 700; font-size: 12px; line-height: 1.1; }
.ticket__price strong { font-family: var(--font-en); font-size: 20px; }
.ticket__price small { display: block; font-size: 10px; font-weight: 500; color: var(--text-sub); margin-top: 3px; }
.ticket__per {
  display: inline-block; margin-top: 10px;
  background: var(--gold-pale); color: var(--gold-text);
  font-size: 11px; font-weight: 700;
  padding: 4px 8px; border-radius: 6px;
}
.ticket__per b { font-family: var(--font-en); font-size: 14px; }

/* 迷ったら */
.guide-list { display: grid; gap: 10px; }
.guide-list li {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--off);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 13px; line-height: 1.8;
}
.guide-list .ic { color: var(--gold); width: 20px; height: 20px; flex: 0 0 20px; margin-top: 3px; }

/* CTA */
.price-cta { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
@media (min-width: 600px) { .price-cta { grid-template-columns: 1fr 1fr; } }
.price-cta .btn { padding-left: 12px; padding-right: 12px; gap: 8px; }
.price-cta .btn__label strong { font-size: 16px; }
.price-cta .btn__label small { font-size: 10px; letter-spacing: 0; white-space: nowrap; }
@media (max-width: 479px) { .price-cta .ic--arrow { display: none; } }

@media (min-width: 600px) {
  .page-hero__title { font-size: 40px; }
  .page-hero__text { font-size: 16px; }
  .fee__box { padding: 26px 24px; gap: 18px; }
  .mplan { padding: 22px 20px; gap: 16px; grid-template-columns: 68px 1fr auto; grid-template-areas: "icon body price"; }
  .mplan__price { border-top: 0; padding-top: 0; margin-top: 0; }
  .mplan__icon { width: 68px; height: 68px; }
  .mplan__name { font-size: 22px; }
  .mplan__desc { font-size: 13px; }
  .mplan__price strong { font-size: 34px; }
  .ticket-list { gap: 12px; }
  .ticket { padding: 26px 12px 18px; }
  .ticket__price strong { font-size: 26px; }
  .guide-list li { font-size: 14px; }
}
@media (min-width: 960px) {
  .page-hero__inner { padding: 40px var(--gutter) 64px; }
  .page-hero__title { font-size: 48px; }
  .price { padding-top: 40px; padding-bottom: 80px; max-width: 900px; }
  .price-sec { margin-top: 56px; }
  .price-sec__title { font-size: 24px; }
  .price-sec__title::before, .price-sec__title::after { width: 56px; }
  .fee__new strong { font-size: 52px; }
  .fee__old strong { font-size: 32px; }
  .fee__badge { width: 68px; height: 68px; font-size: 12px; }
  .mplan__price strong { font-size: 38px; }
  .ticket__price strong { font-size: 30px; }
  .price-cta { max-width: 640px; margin-left: auto; margin-right: auto; }
}

/* Reviews: tags & placeholder */
.reviews__lead { font-size: 13px; color: var(--text-sub); margin-bottom: 10px; }
.voice-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.voice-tags li {
  background: var(--white);
  border: 1px solid var(--gold-light);
  color: var(--gold-text);
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}
.review-card--placeholder { border: 1.5px dashed var(--gray-1); box-shadow: none; }
.review-card--placeholder .stars span { font-family: var(--font-en); font-size: 11px; color: var(--gray-2); }
.review-card--placeholder h3 { color: var(--text-sub); }
.reviews__cta { margin-top: 18px; }
.reviews__cta .btn { padding: 10px 20px; }
.plans__more { margin-top: 18px; }
.plans__more .btn { padding: 12px 24px; }
@media (min-width: 600px) { .plan-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .plan-list { grid-template-columns: repeat(4, 1fr); } .plan-card { padding: 30px 18px 24px; } .plan-card__price strong { font-size: 40px; } }

/* =========================================================
   Sub page: ViXerが合う3つの理由 (reasons.html)
   ========================================================= */
.page-hero__title--reasons { line-height: 1.25; }
.page-hero__title--reasons em { font-style: normal; color: var(--gold-2); font-family: var(--font-en); font-size: 1.5em; line-height: 1; }

.why { padding-top: 24px; padding-bottom: 56px; }
.why-item { padding: 20px 0 24px; border-bottom: 1px solid var(--gray-1); }
.why-item:first-child { padding-top: 0; }
.why-item__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; background: var(--black-2); }
.why-item__media img { width: 100%; height: 100%; object-fit: cover; }
.why-item__media--split { position: relative; display: grid; grid-template-columns: 1fr 1fr; }
.why-item__media--split img:first-child { clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%); }
.why-item__media--split img:last-child { margin-left: -18%; clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%); width: 118%; }
.why-item__body { margin-top: 16px; }
.why-item__head { display: flex; align-items: flex-start; gap: 10px; }
.why-item__num {
  flex: 0 0 44px; width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-en); font-weight: 700; font-size: 15px;
  display: grid; place-items: center;
}
.why-item__icon { flex: 0 0 40px; width: 40px; height: 44px; display: grid; place-items: center; color: var(--gold-text); }
.why-item__icon .ic { width: 32px; height: 32px; }
.why-item__worry { font-size: 13px; font-weight: 700; color: var(--text); }
.why-item__title { font-size: 21px; font-weight: 700; color: var(--gold-text); line-height: 1.35; margin-top: 2px; }
.why-item__text { margin-top: 12px; font-size: 14px; line-height: 1.9; }
.why-item__pill {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  background: var(--off);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 700;
}
.why-item__pill .ic { color: #06c755; fill: currentColor; stroke: none; width: 20px; height: 20px; }
.why-item__note { margin-top: 10px; font-size: 12px; color: var(--text-sub); }

.fit { margin-top: 32px; background: var(--off); border-radius: var(--radius-lg); padding: 22px 16px; }
.fit .price-sec__title { margin-bottom: 14px; }
.fit__list { display: grid; gap: 10px; }
.fit__list li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; }
.fit__list .ic { width: 40px; height: 40px; flex: 0 0 40px; color: var(--text); }

.why-cta { margin-top: 36px; text-align: center; }
.why-cta__lead { font-size: 14px; color: var(--text-sub); }
.why-cta__title { font-size: 20px; font-weight: 700; line-height: 1.5; margin-top: 4px; }
.why-cta__title em { font-style: normal; color: var(--gold-text); }
.why-cta .price-cta { margin-top: 20px; }
.why-cta__note { margin-top: 12px; font-size: 12px; color: var(--text-sub); }

@media (min-width: 600px) {
  .why-item__title { font-size: 24px; }
  .fit__list { grid-template-columns: repeat(4, 1fr); }
  .fit__list li { flex-direction: column; text-align: center; gap: 8px; padding: 0 8px; }
  .fit__list li + li { border-left: 1px solid var(--gray-1); }
  .why-cta__title { font-size: 24px; }
}
@media (min-width: 960px) {
  .why { padding-top: 48px; padding-bottom: 80px; max-width: 980px; }
  .why-item { display: grid; grid-template-columns: 420px 1fr; gap: 36px; align-items: center; padding: 36px 0; }
  .why-item__body { margin-top: 0; }
  .why-item__title { font-size: 28px; }
  .why-item__text { font-size: 15px; }
  .fit { padding: 32px 28px; margin-top: 48px; }
  .fit__list li { font-size: 15px; }
  .why-cta { margin-top: 56px; }
  .why-cta__title { font-size: 28px; }
}

/* Reviews: 4 real reviews grid */
.review-card__quote { font-size: 13px; color: var(--text-sub); line-height: 1.85; }
.review-card__src { display: block; margin-top: 10px; font-size: 11px; color: var(--gray-2); }
@media (min-width: 600px) { .review-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .review-list { grid-template-columns: repeat(3, 1fr); } .review-card { flex-direction: column; } }

/* LINE button */
.btn--line { background: #06c755; color: var(--white); border-color: #06c755; justify-content: center; margin-top: 12px; }
.btn--line .ic { fill: currentColor; stroke: none; width: 22px; height: 22px; }
.reserve .btn--line { max-width: 520px; width: 100%; margin-left: auto; margin-right: auto; display: flex; }
.why-item__pill .ic--arrow { fill: none; stroke: currentColor; color: var(--gold-text); margin-left: 4px; }

/* =========================================================
   Sub pages: news / blog / legal / contact
   ========================================================= */
.page-hero--plain { background: var(--black); }
.page-hero--plain .page-hero__inner { padding: 24px var(--gutter) 32px; }
.sub { padding-top: 28px; padding-bottom: 56px; }
.tag--event { background: #7a4fb5; }

.posts { display: grid; gap: 16px; }
.post { background: var(--white); border: 1px solid var(--gray-1); border-radius: var(--radius-lg); padding: 20px 18px; }
.post__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-sub); }
.post__title { font-size: 18px; font-weight: 700; line-height: 1.5; margin-top: 8px; }
.post__body { margin-top: 12px; font-size: 14px; line-height: 1.9; color: var(--text); }
.post__body p + p, .post__body ul + p, .post__body p + ul { margin-top: 10px; }
.post__body h3 { font-size: 15px; font-weight: 700; margin: 18px 0 6px; padding-left: 10px; border-left: 3px solid var(--gold); }
.post__body ul { padding-left: 1.2em; list-style: disc; }
.post__body a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 3px; }
.post__empty { color: var(--text-sub); font-size: 14px; }
.post--single { border: 0; padding: 0; }
.post--single .post__title { font-size: 22px; }
.post__hero { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); margin-top: 14px; }
.post__back { margin-top: 28px; font-size: 14px; }
.post__back a { color: var(--gold-text); font-weight: 700; }

.blog-cards { display: grid; gap: 14px; }
.blog-card a { display: block; background: var(--white); border: 1px solid var(--gray-1); border-radius: var(--radius-lg); overflow: hidden; }
.blog-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-card__body { display: block; padding: 14px 16px 16px; }
.blog-card time { font-size: 12px; color: var(--gray-2); }
.blog-card__title { display: block; font-size: 16px; font-weight: 700; line-height: 1.5; margin-top: 4px; }
.blog-card__excerpt { display: block; font-size: 13px; color: var(--text-sub); margin-top: 6px; line-height: 1.7; }

.legal { font-size: 14px; line-height: 1.9; }
.legal h2 { font-size: 16px; font-weight: 700; margin: 26px 0 8px; padding-left: 10px; border-left: 3px solid var(--gold); }
.legal h3 { font-size: 14px; font-weight: 700; margin: 14px 0 4px; }
.legal p + p { margin-top: 8px; }
.legal ul { padding-left: 1.2em; list-style: disc; margin-top: 4px; }
.legal ol.legal__ol { padding-left: 1.6em; list-style: decimal; margin-top: 4px; }
.legal li + li { margin-top: 3px; }
.legal a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 3px; }
.legal__date { margin-top: 28px; color: var(--text-sub); }
.legal__note { margin-top: 14px; font-size: 12px; color: #b0341f; background: #fff4f1; border-radius: 8px; padding: 10px 12px; }
.legal code { font-family: ui-monospace, Menlo, monospace; font-size: 12px; background: var(--off); padding: 1px 5px; border-radius: 4px; }
.legal__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal__table th, .legal__table td { padding: 12px 10px; border-bottom: 1px solid var(--gray-1); text-align: left; vertical-align: top; line-height: 1.7; }
.legal__table th { width: 34%; font-weight: 700; background: var(--off); }

.contact-list { display: grid; gap: 14px; }
.contact-card { background: var(--white); border: 1px solid var(--gray-1); border-radius: var(--radius-lg); padding: 20px 18px; }
.contact-card h2 { font-size: 16px; font-weight: 700; }
.contact-card p, .contact-card address { font-size: 14px; line-height: 1.8; margin-top: 6px; font-style: normal; }
.contact-card .btn { margin-top: 14px; width: 100%; }
.contact-card .btn--line { justify-content: center; }
.contact-card__tel a { font-family: var(--font-en); font-size: 26px; font-weight: 700; color: var(--gold-text); }
.contact-card .more { margin-top: 8px; }

.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 16px; max-width: var(--container); margin: 24px auto 0; padding: 20px var(--gutter) 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer__legal a { opacity: .75; }
.footer__legal a:hover { opacity: 1; }

@media (min-width: 600px) {
  .blog-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-list { grid-template-columns: repeat(2, 1fr); }
  .legal { font-size: 15px; }
  .post__body { font-size: 15px; }
}
@media (min-width: 960px) {
  .sub { padding-top: 48px; padding-bottom: 80px; max-width: 900px; }
  .blog-cards { grid-template-columns: repeat(3, 1fr); }
  .post--single .post__title { font-size: 28px; }
  .page-hero--plain .page-hero__inner { padding: 40px var(--gutter) 56px; }
}

/* Real photos: focal points */
.page-reasons .page-hero__bg img { object-position: 60% 45%; }
.recommend__photo img { object-position: 70% 50%; }

/* =========================================================
   Flow: ご来店からご入会の流れ
   ========================================================= */
.flow__title em { font-style: normal; color: var(--gold-text); }
.flow__lead { text-align: center; font-size: 13px; color: var(--text-sub); margin: 8px 0 22px; }
.steps { display: grid; gap: 0; counter-reset: step; }
.step { position: relative; padding: 18px 0 22px; border-top: 1px solid var(--gray-1); }
.step:first-child { border-top: 0; padding-top: 0; }
.step + .step::before {
  content: ""; position: absolute; left: 50%; top: -9px; width: 14px; height: 14px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  background: var(--white);
}
.flow .step + .step::before { background: var(--white); }
.step__head { display: flex; align-items: center; gap: 12px; }
.step__num { font-family: var(--font-en); font-size: 34px; font-weight: 700; color: var(--gold-text); line-height: 1; min-width: 24px; }
.step__head h3 { font-size: 17px; font-weight: 700; color: var(--gold-text); line-height: 1.4; }
.step p { margin-top: 10px; font-size: 14px; line-height: 1.9; color: var(--text); }
.step p a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.step__items { margin-top: 6px; padding-left: 0; list-style: none; counter-reset: item; display: grid; gap: 4px; }
.step__items li { counter-increment: item; font-size: 14px; line-height: 1.8; padding-left: 1.6em; position: relative; }
.step__items li::before { content: counter(item); position: absolute; left: 0; top: .35em; width: 1.2em; height: 1.2em; border-radius: 50%; background: var(--gold); color: var(--white); font-size: 11px; font-weight: 700; display: grid; place-items: center; line-height: 1; }
.flow__cta { margin-top: 26px; }
.flow__cta .btn { padding: 12px 22px; }
.flow__cta .ic--arrow { margin-left: 6px; }

@media (min-width: 960px) {
  .flow__lead { font-size: 15px; margin-bottom: 36px; }
  .steps { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .step { padding: 8px 28px 8px 0; border-top: 0; border-left: 1px solid var(--gray-1); padding-left: 24px; }
  .step:first-child { border-left: 0; padding-left: 0; }
  .step + .step::before { left: -8px; top: 36px; transform: rotate(-45deg); }
  .step p, .step__items li { font-size: 14px; }
  .steps--compact { grid-template-columns: repeat(2, 1fr); gap: 24px 40px; }
  .steps--compact .step { border-left: 0; padding: 0; }
  .steps--compact .step + .step::before { display: none; }
}

/* =========================================================
   30日間ジム無料お試し (trial.html)
   ========================================================= */
.trial-hero { background: var(--black); color: var(--white); text-align: center; overflow: hidden; }
.trial-hero__inner { max-width: 760px; margin: 0 auto; padding: 24px var(--gutter) 36px; }
.trial-hero .breadcrumb { text-align: left; margin-bottom: 18px; }
.trial-hero__lead { font-size: 22px; font-weight: 900; letter-spacing: .04em; }
.hexes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 18px auto 0; max-width: 420px; }
.hex {
  aspect-ratio: 1.15 / 1;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: var(--gold);
  display: grid; place-items: center;
  position: relative;
}
.hex span {
  position: absolute; inset: 2px;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: var(--black);
  color: var(--gold-2);
  display: grid; place-items: center;
  font-weight: 900; font-size: 15px; line-height: 1.25; letter-spacing: .04em;
}
.hex--fill span { background: var(--gold); color: var(--white); }
.trial-hero__title { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 4px 10px; line-height: 1; }
.trial-hero__days { display: inline-flex; align-items: baseline; gap: 2px; color: var(--gold-2); }
.trial-hero__days em { font-style: normal; font-family: var(--font-en); font-weight: 800; font-size: 64px; letter-spacing: -.02em; }
.trial-hero__days small { font-size: 16px; font-weight: 900; }
.trial-hero__main { font-size: 30px; font-weight: 900; letter-spacing: .02em; }
.trial-hero__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; }
.trial-hero__badges li { background: var(--white); color: var(--black); font-weight: 900; font-size: 13px; padding: 6px 14px; border-radius: 6px; border: 2px solid var(--gold-2); }
.trial-hero__badges b { font-family: var(--font-en); font-size: 18px; color: var(--gold-text); margin: 0 1px; }

.trial-intro { text-align: center; font-size: 15px; line-height: 1.9; }
.trial-intro__list { display: grid; gap: 8px; margin: 18px auto; max-width: 420px; text-align: left; }
.trial-intro__list li { display: flex; align-items: flex-start; gap: 8px; font-weight: 700; font-size: 14px; background: var(--off); border-radius: 8px; padding: 10px 12px; }
.trial-intro__list .ic { color: var(--gold); width: 20px; height: 20px; flex: 0 0 20px; margin-top: 3px; }
.trial-intro__quote { font-weight: 700; color: var(--gold-text); }

.trial-points { display: grid; gap: 14px; }
.trial-point { display: grid; grid-template-columns: 110px 1fr; gap: 14px; align-items: center; background: var(--white); border: 1px solid var(--gray-1); border-radius: var(--radius-lg); overflow: hidden; }
.trial-point img { width: 110px; height: 100%; min-height: 120px; object-fit: cover; }
.trial-point__body { padding: 14px 14px 14px 0; }
.trial-point h3 { font-size: 15px; font-weight: 700; color: var(--gold-text); }
.trial-point p { font-size: 13px; line-height: 1.8; margin-top: 4px; color: var(--text-sub); }

.trial-notes { display: grid; gap: 6px; font-size: 13px; color: var(--text-sub); line-height: 1.8; padding-left: 1.2em; list-style: disc; }

.trial-cta { margin-top: 36px; text-align: center; display: grid; gap: 12px; justify-items: center; }
.trial-cta__lead { font-size: 15px; font-weight: 700; }
.trial-cta .btn { width: 100%; max-width: 480px; }
.trial-cta .btn--line { margin-top: 0; }
.trial-cta__tel { justify-content: center; border-color: var(--gray-1); }
.trial-cta__tel strong { font-family: var(--font-en); font-size: 20px; }

.drawer__list--sub { margin-top: 10px; }
.drawer__list--sub li a { font-size: 13px; padding: 11px 4px; opacity: .85; }

@media (min-width: 600px) {
  .trial-hero__lead { font-size: 28px; }
  .hexes { max-width: 520px; gap: 8px; }
  .hex span { font-size: 19px; }
  .trial-hero__days em { font-size: 88px; }
  .trial-hero__days small { font-size: 20px; }
  .trial-hero__main { font-size: 42px; }
  .trial-hero__badges li { font-size: 15px; }
  .trial-points { grid-template-columns: repeat(3, 1fr); }
  .trial-point { grid-template-columns: 1fr; }
  .trial-point img { width: 100%; height: 170px; min-height: 0; }
  .trial-point__body { padding: 14px 16px 18px; }
}
@media (min-width: 960px) {
  .trial-hero__inner { padding: 40px var(--gutter) 56px; }
  .trial-hero__main { font-size: 52px; }
  .trial-point img { height: 200px; }
  .trial-point h3 { font-size: 17px; }
  .trial-point p { font-size: 14px; }
  .trial-notes { font-size: 14px; }
}

/* =========================================================
   Conversion pass: hero trial pill, trial section, compare, simple plans
   ========================================================= */
.hero__trial {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px;
  margin-top: 18px;
  padding: 10px 16px 10px 14px;
  border-radius: 12px;
  background: rgba(217,162,74,.14);
  border: 1px solid rgba(217,162,74,.7);
  backdrop-filter: blur(4px);
}
.hero__trial-tag { font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--gold-light); }
.hero__trial-main { font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.2; }
.hero__trial-main em { font-style: normal; font-family: var(--font-en); font-size: 26px; color: var(--gold-2); margin-right: 2px; }
.hero__trial-main b { color: var(--gold-2); margin-left: 6px; font-size: 20px; }
.hero__trial-sub { font-size: 11px; opacity: .85; }
/* ヒーロー：口コミの一行（主張のすぐ下に証拠） */
.hero__proof {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 12px; font-weight: 500; opacity: .95;
}
.hero__proof-stars { display: inline-flex; gap: 1px; color: var(--gold-2); }
.hero__proof-stars .ic { width: 14px; height: 14px; fill: currentColor; stroke: none; }
.hero__proof strong { font-family: var(--font-en); font-size: 16px; color: var(--gold-2); line-height: 1; }
.hero__proof span:last-child { border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 1px; }
/* ヒーロー：出口は「お試し」1本。LINE・見学は小さな文字リンクに */
.hero__trial--primary {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  width: 100%; max-width: 420px;
  margin-top: 16px;
  padding: 12px 52px 12px 16px;
  background: var(--gold);
  border-color: var(--gold);
  backdrop-filter: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  transition: opacity .2s, transform .2s;
}
.hero__trial--primary:hover { opacity: .92; }
.hero__trial--primary:active { transform: scale(.985); }
.hero__trial--primary .hero__trial-tag { color: rgba(255,255,255,.9); }
.hero__trial--primary .hero__trial-main em, .hero__trial--primary .hero__trial-main b { color: var(--white); }
.hero__trial--primary .hero__trial-sub { opacity: .92; }
.hero__trial--primary .ic--arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; margin: 0; }
.hero__links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 14px; font-size: 13px; font-weight: 500; }
.hero__links a { display: inline-flex; align-items: center; gap: 6px; opacity: .92; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(255,255,255,.4); }
.hero__links .ic { width: 18px; height: 18px; color: var(--gold-2); }
.hero__links .ic--line { fill: currentColor; stroke: none; }

/* 数字の帯（ヒーロー直下） */
.facts {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.08);
}
.facts li {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  padding: 14px 8px;
  background: var(--black-2);
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}
.facts strong { font-family: var(--font-en); font-size: 24px; color: var(--gold-2); letter-spacing: .02em; }
.facts strong small { font-family: var(--font-ja); font-size: 11px; font-weight: 700; margin-left: 2px; color: var(--gold-light); }
.facts span { font-size: 11px; opacity: .85; }
@media (min-width: 600px) {
  .facts { grid-template-columns: repeat(4, 1fr); }
  .facts li { padding: 16px 8px; }
  .facts strong { font-size: 28px; }
  .facts span { font-size: 12px; }
  .hero__proof { font-size: 13px; }
  .hero__links { font-size: 14px; }
}

.trial-card__note { margin: 12px auto 0; max-width: 340px; font-size: 12px; color: var(--text-sub); line-height: 1.7; text-align: center; }

.hero__btns--stack { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; max-width: 420px; }
.hero__btns--stack .btn { padding: 12px 16px; gap: 12px; }
.hero__btns--stack .ic--arrow { display: block !important; }
.hero__btns--stack .btn--outline-light { border-color: rgba(255,255,255,.7); }
.hero__btns--stack .btn__label small { white-space: normal; }

.recommend__inner--simple { padding-bottom: 44px; }

.trialsec { background: var(--gold-pale); padding: 40px 0; }
.trial-card {
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 26px 18px 22px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  box-shadow: 0 10px 30px rgba(201,134,43,.12);
}
.trial-card .campaign__badge { width: 180px; height: 180px; box-shadow: 0 0 0 6px rgba(217,162,74,.18); }
.trial-card__body { width: 100%; }
.trial-card__eyebrow { font-size: 12px; font-weight: 700; color: var(--gold-text); letter-spacing: .04em; text-align: center; }
.trial-card__title { font-size: 22px; font-weight: 700; text-align: center; margin-top: 4px; }
.trial-card .campaign__points { margin: 16px auto 0; max-width: 340px; gap: 8px; }
.trial-card .campaign__points li { font-size: 14px; }
.trial-card__btn { width: 100%; margin-top: 18px; justify-content: space-between; }
.trial-card__btn .btn__label strong { font-size: 16px; }

.flow__lead--strong { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.flow__eyebrow { text-align: center; font-size: 12px; font-weight: 700; color: var(--gold-text); letter-spacing: .08em; margin-bottom: 6px; }
.flow .flow__lead { font-size: 13px; line-height: 1.8; margin: 10px 0 20px; }

/* =========================================================
   Gallery (館内写真カルーセル)
   ========================================================= */
.gallery { background: var(--white); }
.gallery__lead { text-align: center; font-size: 13px; color: var(--text-sub); line-height: 1.8; margin: 8px 0 18px; }
.gallery__wrap { position: relative; }
.gallery__track {
  position: relative;
  display: flex; gap: 12px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--gutter) 4px;
  max-width: var(--container); margin: 0 auto;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__slide { flex: 0 0 84%; min-width: 0; scroll-snap-align: center; margin: 0; }
.gallery__slide img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); background: var(--off); }
.gallery__slide figcaption { text-align: center; font-size: 12px; color: var(--text-sub); margin-top: 8px; line-height: 1.6; }
.gallery__btn {
  display: none; place-items: center;
  position: absolute; top: 50%; transform: translateY(-70%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.94); color: var(--text);
  box-shadow: var(--shadow); z-index: 2;
}
.gallery__btn .ic { width: 16px; height: 16px; }
.gallery__btn--prev { left: 8px; } .gallery__btn--prev .ic { transform: rotate(180deg); }
.gallery__btn--next { right: 8px; }
.gallery__dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.gallery__dots i { width: 6px; height: 6px; border-radius: 3px; background: var(--gray-1); transition: width .2s, background .2s; cursor: pointer; }
.gallery__dots i.is-active { width: 18px; background: var(--gold); }
.gallery__btns { display: grid; gap: 10px; margin: 22px auto 0; max-width: 520px; }
.gallery__btns .btn { justify-content: flex-start; gap: 10px; }
.gallery__btns .btn span { flex: 1; text-align: left; font-size: 15px; }
.gallery--sub { padding-top: 8px; }
.why--head { padding-bottom: 8px; }
.why--tail { padding-top: 0; }
.flow-card__icon--sm { width: 56px; height: 56px; border-radius: 50%; background: var(--white); display: grid; place-items: center; margin: 12px 0 10px; color: var(--gold-text); }
.flow-card__icon--sm .ic { width: 28px; height: 28px; }
.flow__note { text-align: center; font-size: 13px; color: var(--text-sub); margin-top: 18px; line-height: 1.8; }

.compare { background: var(--white); }
.compare__lead { text-align: center; font-size: 14px; color: var(--text-sub); margin: 8px 0 20px; line-height: 1.8; }
.compare__table { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-1); }
.compare__head, .compare__row { display: grid; grid-template-columns: 1fr 1.15fr; }
.compare__col { padding: 12px 10px; text-align: center; font-weight: 700; font-size: 14px; }
.compare__col--other { background: var(--off); color: var(--text-sub); }
.compare__col--vixer { background: var(--black); color: var(--gold-2); letter-spacing: .06em; font-family: var(--font-en); font-size: 16px; }
.compare__row { border-top: 1px solid var(--gray-1); }
.compare__cell { padding: 14px 12px; font-size: 13px; line-height: 1.6; display: flex; align-items: center; gap: 8px; }
.compare__cell--other { color: var(--text-sub); background: var(--white); }
.compare__cell--vixer { background: var(--gold-pale); font-weight: 700; color: var(--text); }
.compare__cell--vixer .ic { color: var(--gold); width: 18px; height: 18px; flex: 0 0 18px; }
.compare__note { margin-top: 16px; font-size: 13px; color: var(--text-sub); line-height: 1.8; text-align: center; }

.plans-simple { background: var(--off); border-radius: var(--radius-lg); padding: 24px 18px; }
.plans-simple__from { display: flex; align-items: baseline; justify-content: center; gap: 4px; color: var(--gold-text); }
.plans-simple__label { font-size: 14px; font-weight: 700; margin-right: 4px; }
.plans-simple__from strong { font-family: var(--font-en); font-size: 48px; line-height: 1; letter-spacing: -.01em; }
.plans-simple__yen { font-size: 18px; font-weight: 700; }
.plans-simple__from small { font-size: 11px; color: var(--text-sub); font-weight: 500; }
.plans-simple__text { text-align: center; font-size: 13px; margin-top: 10px; line-height: 1.8; }
.plans-simple__text strong { color: var(--gold-text); }
.plans-simple__list { margin-top: 16px; display: grid; gap: 6px; }
.plans-simple__list li { display: grid; grid-template-columns: 5.5em 1fr auto; align-items: center; gap: 8px; background: var(--white); border-radius: 8px; padding: 10px 12px; font-size: 13px; }
.plans-simple__pop { outline: 1.5px solid var(--gold); }
.plans-simple__name { font-weight: 700; }
.plans-simple__name em { font-style: normal; font-size: 10px; background: var(--gold); color: var(--white); border-radius: 4px; padding: 1px 6px; margin-left: 4px; vertical-align: middle; }
.plans-simple__desc { color: var(--text-sub); font-size: 12px; display: flex; align-items: center; flex-wrap: wrap; gap: 4px 6px; }
.plan-24h { display: inline-flex; align-items: center; gap: 3px; font-size: 10px; font-weight: 700; color: var(--gold-text); border: 1px solid var(--gold-light); border-radius: 4px; padding: 1px 5px; line-height: 1.4; white-space: nowrap; background: var(--white); }
.plan-24h .ic { width: 11px; height: 11px; }
.plans-simple__price { font-family: var(--font-en); font-weight: 700; font-size: 16px; color: var(--gold-text); white-space: nowrap; }
.plans-simple__price small { font-family: var(--font-ja); font-size: 10px; color: var(--text-sub); margin-left: 2px; font-weight: 500; }

.area--inline { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray-1); }
.area--inline .area__title { font-size: 16px; margin-bottom: 10px; }
.area--inline .area__text { font-size: 13px; }
.area--inline .area__list { margin-top: 12px; }
.area--inline .area__list div { box-shadow: none; background: var(--off); }

.reserve .reserve__btns { margin-bottom: 0; }

@media (min-width: 600px) {
  .hero__btns--stack { grid-template-columns: 1fr 1fr; max-width: 560px; }
  .trial-card { flex-direction: row; align-items: center; gap: 28px; padding: 28px 28px; }
  .trial-card__eyebrow, .trial-card__title { text-align: left; }
  .trial-card .campaign__points { margin-left: 0; }
  .trial-card__btn { width: auto; min-width: 360px; }
  .compare__cell { font-size: 14px; padding: 16px 18px; }
  .plans-simple { padding: 32px; }
  .plans-simple__list { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (min-width: 960px) {
  .hero__trial { margin-top: 22px; padding: 12px 20px; }
  .hero__trial-main { font-size: 20px; }
  .hero__trial-main em { font-size: 32px; }
  .trialsec { padding: 56px 0; }
  .trial-card { max-width: 900px; margin: 0 auto; }
  .trial-card__title { font-size: 28px; }
  .compare__table { max-width: 860px; margin: 0 auto; }
  .compare__lead, .compare__note { font-size: 15px; }
  .plans-simple { max-width: 860px; margin: 0 auto; }
  .plans-simple__list { grid-template-columns: repeat(4, 1fr); }
  .plans-simple__list li { grid-template-columns: 1fr; text-align: center; gap: 4px; padding: 14px 10px; }
  .flow__lead--strong { font-size: 18px; margin-bottom: 30px; }
  .flow__note { font-size: 14px; }
}

/* スマホでは下部固定CTAに「見学」があるため、ヒーローの2つ目ボタンは非表示（PCは従来どおり） */
@media (max-width: 959px) {
  .hero__btns--stack .btn--outline-light { display: none; }
}

/* ① ファーストビュー（スマホ）：余白を締めて詰め込み感を減らす。PC(>=960px)は従来どおり */
@media (max-width: 959px) {
  .hero__inner { padding-top: 44px; padding-bottom: 34px; }
  .hero__title-sub { margin-top: 10px; }
  .hero__bar { margin: 14px 0; }
  .hero__text { font-size: 14.5px; line-height: 1.85; }
  .hero__trial { margin-top: 20px; }
  .hero__btns--stack { margin-top: 16px; }
}

/* =========================================================
   Mobile-first refinements (⑦〜⑬)
   ========================================================= */
.nowrap { white-space: nowrap; }
.reviews__title { margin-bottom: 14px; }
.reviews__title small { font-size: 12px; }
.plans-simple__cond { text-align: center; font-size: 11px; color: var(--text-sub); margin-top: 4px; }
.access__mapbtn { margin-top: 12px; justify-content: center; }
.access__mapbtn .ic--arrow { margin-left: 0; }
.faq-list { gap: 8px; }

@media (max-width: 599px) {
  /* ⑦ 流れ：1列・横並びカード */
  .flow-list { grid-template-columns: 1fr; gap: 10px; }
  .flow-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-areas: "icon head" "icon text";
    column-gap: 12px; row-gap: 4px;
    align-items: start;
    text-align: left;
    padding: 14px 14px 14px 12px;
  }
  .flow-card__head { grid-area: head; min-height: 0; font-size: 14px; align-self: center; }
  .flow-card__icon, .flow-card__icon--sm { grid-area: icon; width: 40px; margin: 0; align-self: start; }
  .flow-card p { grid-area: text; font-size: 13px; line-height: 1.75; }
  .flow__note { margin-top: 16px; }

  /* ⑧ お客様の声 */
  .voice-tags { gap: 6px; margin-bottom: 14px; }
  .voice-tags li { font-size: 11.5px; padding: 4px 10px; }
  .review-card p { font-size: 13.5px; line-height: 1.8; }

  /* ⑨ 料金：折り返し抑制 */
  .plans-simple { padding: 22px 14px; }
  .plans-simple__list li { grid-template-columns: 6em 1fr auto; gap: 6px; padding: 10px 10px; }
  .plans-simple__name { white-space: nowrap; }
  .plans-simple__name em { display: inline-block; }
  .plans-simple__desc { font-size: 11.5px; }
  .plans-simple__price { font-size: 15px; }

  /* ⑫ FAQ をややコンパクトに */
  .faq-item summary { padding: 13px 40px 13px 40px; font-size: 14px; }
  .faq-item summary::before { top: 12px; left: 14px; }
  .faq-item p { padding: 0 16px 14px 40px; }
  .faq-item p::before { left: 14px; }

  /* ⑬ アクセス：完全1カラム */
  .access__grid { grid-template-columns: 1fr; gap: 14px; }
  .access__img { aspect-ratio: 16 / 10; border-radius: var(--radius); }
  .access__name { font-size: 13px; }
  .access__addr { font-size: 15px; }
  .access__list { margin-top: 10px; gap: 8px; }
  .access__list li { font-size: 14px; flex-wrap: nowrap; align-items: flex-start; line-height: 1.6; }
  .access__list .ic { margin-top: 3px; }
  .access__mapbtn { width: 100%; margin-top: 14px; }
}
@media (min-width: 600px) {
  .access__mapbtn { margin-top: 12px; }
}

/* 料金：パーソナルトレーニングの補足 */
.plans-simple__pt { margin-top: 12px; font-size: 12.5px; line-height: 1.75; color: var(--text-sub); text-align: center; }
.plans-simple__pt strong { color: var(--gold-text); }
@media (min-width: 960px) { .plans-simple__pt { font-size: 14px; margin-top: 16px; } }

/* 料金：本入会特典 */
.fee__bonus { display: flex; align-items: center; gap: 10px; margin-top: 10px; background: var(--gold-pale); color: var(--text); border-radius: 10px; padding: 10px 14px; font-size: 13px; line-height: 1.6; }
.fee__bonus .ic { width: 22px; height: 22px; flex: 0 0 22px; color: var(--gold-text); }
.fee__bonus strong { color: var(--gold-text); }
.fee__bonus small { font-size: 11px; color: var(--text-sub); margin-left: 2px; }
@media (min-width: 600px) { .fee__bonus { font-size: 14px; justify-content: center; } }

.plans-simple__camp { display: inline-block; font-size: 11px; color: var(--text-sub); margin-top: 2px; }

.step__note { margin-top: 8px; font-size: 12px; color: var(--text-sub); line-height: 1.7; }

/* =========================================================
   Blog (tools/build_blog.py が生成するページ用)
   ========================================================= */
.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.blog-cats a { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--gray-1); background: var(--white); font-size: 12px; font-weight: 700; color: var(--text-sub); }
.blog-cats a small { font-size: 10px; font-weight: 500; opacity: .7; }
.blog-cats a[aria-current="page"] { background: var(--black); color: var(--white); border-color: var(--black); }
.blog-card__meta { display: flex; align-items: center; gap: 8px; }
.blog-card__cat { font-size: 10px; font-weight: 700; color: var(--gold-text); background: var(--gold-pale); padding: 2px 8px; border-radius: 4px; }
.page-hero--post .page-hero__inner { padding-bottom: 28px; }
.page-hero__title--post { font-size: 22px; line-height: 1.45; margin-top: 8px; }
.post__meta--hero { color: rgba(255,255,255,.8); margin-top: 10px; }
.post__cat { font-size: 11px; font-weight: 700; color: var(--gold-light); border: 1px solid rgba(233,201,140,.6); padding: 2px 8px; border-radius: 4px; }
.post__updated { font-size: 11px; opacity: .75; }
.post__author { font-size: 11px; opacity: .8; }
.post__meta--hero { flex-wrap: wrap; gap: 8px 10px; }
.sub--post { padding-top: 20px; }
.post--single .post__hero { margin-top: 0; }
.post__body h2 { font-size: 17px; font-weight: 700; margin: 26px 0 8px; padding: 8px 12px; background: var(--off); border-left: 4px solid var(--gold); border-radius: 0 6px 6px 0; line-height: 1.5; }
.post__body h3 { font-size: 15px; margin: 20px 0 6px; }
.post__body ol { padding-left: 1.4em; list-style: decimal; }
.post__body li + li { margin-top: 4px; }
.post__body blockquote { margin: 12px 0; padding: 10px 14px; background: var(--off); border-radius: 8px; color: var(--text-sub); }
.post__body img { border-radius: var(--radius); margin: 12px 0; }
/* 本文中のイメージ画像（16:9・注記付き） */
.post__figure { margin: 22px 0; }
.post__figure img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; margin: 0; border-radius: var(--radius); background: var(--off); }
.post__figure figcaption { font-size: 11px; color: var(--text-sub); margin-top: 6px; text-align: right; }
.post__figure + h2, .post__figure + h3 { margin-top: 24px; }
.post__body hr { border: 0; border-top: 1px solid var(--gray-1); margin: 22px 0; }
.post__body p + h2, .post__body ul + h2, .post__body ol + h2 { margin-top: 28px; }
.post__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.post__tags li { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-sub); background: var(--off); padding: 4px 10px; border-radius: 999px; }
.post__tags .ic { width: 14px; height: 14px; }
.post-cta { margin-top: 26px; padding: 20px 16px; border-radius: var(--radius-lg); background: var(--black); color: var(--white); }
.post-cta__eyebrow { font-size: 11px; font-weight: 700; color: var(--gold-light); letter-spacing: .08em; }
.post-cta__title { font-size: 19px; font-weight: 700; margin-top: 4px; line-height: 1.4; }
.post-cta__title b { color: var(--gold-2); font-family: var(--font-en); font-size: 1.15em; margin-left: 4px; }
.post-cta__text { font-size: 13px; opacity: .9; margin-top: 8px; line-height: 1.8; }
.post-cta__btns { display: grid; gap: 10px; margin-top: 14px; }
.post-cta__btns .btn { justify-content: center; }
.post-cta__btns .btn--ghost { border-color: transparent; }
.post-nav { display: grid; gap: 10px; margin-top: 24px; }
.post-nav a { display: block; padding: 12px 14px; border: 1px solid var(--gray-1); border-radius: var(--radius); font-size: 13px; line-height: 1.5; }
.post-nav a small { display: block; font-size: 11px; color: var(--gold-text); font-weight: 700; margin-bottom: 2px; }
.post-nav__next { text-align: right; }
/* 参考コラム（固定ページ・トップのコラム欄） */
.read-more { margin: 32px 0 0; padding: 16px 18px; background: var(--off); border-radius: var(--radius-lg); }
.read-more__title { font-size: 13px; font-weight: 700; color: var(--text-sub); letter-spacing: .04em; }
.read-more ul { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 10px; }
.read-more li a { font-size: 14px; font-weight: 500; line-height: 1.6; color: var(--text); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.read-more li a:hover { color: var(--gold-text); }
.read-more li small { display: block; font-size: 12px; line-height: 1.6; color: var(--text-sub); margin-top: 2px; }
.read-more--panel { margin-top: 14px; padding: 12px 14px; }
.read-more--panel .read-more__title { font-size: 12px; }
.read-more--panel li a { font-size: 13px; }
.read-more--panel li small { display: none; }
.post-related { margin-top: 36px; }
.post-related__title { font-size: 17px; font-weight: 700; margin-bottom: 14px; padding-left: 10px; border-left: 3px solid var(--gold); }
@media (min-width: 600px) {
  .page-hero__title--post { font-size: 28px; }
  .post-cta { padding: 26px 24px; }
  .post-cta__btns { grid-template-columns: 1fr 1fr; }
  .post-nav { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .page-hero__title--post { font-size: 34px; }
  .post__body { font-size: 16px; }
  .post__body h2 { font-size: 20px; }
}

/* フッターのロゴ画像 */
.footer__logo { width: 84px; height: auto; }
@media (min-width: 960px) { .footer__logo { width: 100px; } }

/* =========================================================
   Contact: メールフォーム
   ========================================================= */
.cform { margin-top: 28px; background: var(--white); border: 1px solid var(--gray-1); border-radius: var(--radius-lg); padding: 22px 18px 24px; }
.cform__title { font-size: 18px; font-weight: 700; line-height: 1.4; }
.cform__title small { font-size: 12px; font-weight: 500; color: var(--text-sub); }
.cform__lead { font-size: 13px; color: var(--text-sub); line-height: 1.8; margin-top: 6px; }
.cform__lead a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 3px; }
.cform__form { margin-top: 16px; display: grid; gap: 16px; }
.cform__form[hidden], .cform__confirm[hidden], .cform__done[hidden], .cform__error[hidden] { display: none; }
.cform__field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.cform__field input, .cform__field select, .cform__field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--text);
  background: var(--off); border: 1.5px solid var(--gray-1); border-radius: 10px;
  padding: 12px 14px; min-height: 48px; -webkit-appearance: none; appearance: none;
}
.cform__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235b5852' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.cform__field textarea { resize: vertical; min-height: 150px; line-height: 1.7; }
.cform__field input:focus, .cform__field select:focus, .cform__field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,134,43,.18); }
.cform__agree { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.6; }
.cform__agree input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 20px; accent-color: var(--gold); }
.cform__agree a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 3px; }
.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cform__error { font-size: 13px; font-weight: 700; color: #c62828; background: #fdecea; border-radius: 8px; padding: 10px 12px; line-height: 1.6; }
.cform__submit { width: 100%; justify-content: center; }
.cform__note { font-size: 12px; line-height: 1.7; color: var(--text-sub); margin-top: -4px; }
.cform__turnstile { margin-top: 14px; min-height: 65px; }
.cform__turnstile[hidden] { display: none; }
.cform__submit .ic--arrow { margin-left: 0; }
.cform__confirm h3, .cform__done h3 { font-size: 17px; font-weight: 700; margin-top: 16px; }
.cform__summary { margin-top: 14px; display: grid; gap: 0; border-top: 1px solid var(--gray-1); }
.cform__summary dt { font-size: 12px; font-weight: 700; color: var(--text-sub); padding: 12px 0 2px; }
.cform__summary dd { margin: 0; font-size: 15px; line-height: 1.7; padding: 0 0 12px; border-bottom: 1px solid var(--gray-1); white-space: pre-wrap; word-break: break-word; }
.cform__confirm-btns { display: grid; gap: 10px; margin-top: 18px; }
.cform__confirm-btns .btn { width: 100%; justify-content: center; }
.cform__done p { font-size: 14px; line-height: 1.9; margin-top: 8px; }
.cform__done .more { margin-top: 12px; }
@media (min-width: 600px) {
  .cform { padding: 30px 28px 32px; }
  .cform__title { font-size: 21px; }
  .cform__confirm-btns { grid-template-columns: 1fr 2fr; }
}

/* Footer: 運営会社（スリーエスグループ） */
.footer__group { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.footer__group-label { font-size: 11px; letter-spacing: .08em; opacity: .6; }
.footer__group-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; letter-spacing: .04em; opacity: .9; }
.footer__group-link::before { content: ""; width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255,255,255,.55); background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.6), rgba(255,255,255,0) 60%); flex: 0 0 22px; }
.footer__group-link img { height: 36px; width: auto; display: block; opacity: .9; }
@media (min-width: 600px) {
  .footer__inner { grid-template-columns: 1fr auto auto; column-gap: 40px; }
}

/* =========================================================
   Sub page: よくあるご質問 (faq/)
   ========================================================= */
.faq--page { padding-top: 24px; }
.faq-jump ul { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.faq-jump a {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  padding: 7px 12px;
  border: 1px solid var(--gray-1);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
}
.faq-jump a::before { content: "＃"; color: var(--gold-text); margin-right: 2px; }
.faq-group { scroll-margin-top: 80px; }
.faq-group + .faq-group { margin-top: 32px; }
.faq-group__title {
  font-size: 17px; font-weight: 700; line-height: 1.4;
  padding-left: 10px; border-left: 3px solid var(--gold);
  margin-bottom: 12px;
}
.faq-cta { margin-top: 40px; text-align: center; }
.faq-cta__text { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.faq-cta__btns { display: grid; gap: 12px; max-width: 520px; margin: 0 auto; }
.faq-cta__btns .btn { justify-content: center; }
@media (min-width: 600px) {
  .faq-jump a { font-size: 13px; }
  .faq-group__title { font-size: 20px; }
  .faq-cta__btns { grid-template-columns: 1fr 1fr; max-width: 600px; }
}

.reserve__btns .btn--white .ic--line { color: #06c755; }

/* ヘッダーのロゴ文字：Life Design を小さく前置き */
.logo__pre { font-size: .5em; font-weight: 600; letter-spacing: .1em; margin-right: .45em; opacity: .92; vertical-align: .18em; }

/* 料金の大きな数字：狭い画面で「月額」「（税込）」が縦に割れないように */
.plans-simple__from { flex-wrap: nowrap; white-space: nowrap; }
.plans-simple__from .plans-simple__label, .plans-simple__from small { white-space: nowrap; }
@media (max-width: 379px) { .plans-simple__from strong { font-size: 40px; } }

/* 締め：見学・無料体験 と 30日無料お試し を並べて選ばせる */
.choose { display: grid; gap: 14px; margin: 24px auto 0; max-width: 760px; text-align: left; }
.choose__card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 20px 16px 18px; display: flex; flex-direction: column; }
.choose__card--trial { border-color: rgba(217,162,74,.6); background: rgba(217,162,74,.1); }
.choose__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--gold-light); }
.choose__title { font-size: 19px; font-weight: 700; line-height: 1.35; margin-top: 4px; }
.choose__text { font-size: 13px; line-height: 1.8; opacity: .92; margin-top: 8px; flex: 1 1 auto; }
.choose .btn { margin-top: 14px; width: 100%; justify-content: space-between; }
.choose .btn .ic--arrow { margin-left: 8px; }
.reserve__text--line { margin-top: 18px; font-size: 13px; }
.reserve__text--line a { color: var(--gold-2); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; display: inline-flex; align-items: center; gap: 4px; }
.reserve__text--line .ic--line { width: 16px; height: 16px; }
@media (min-width: 600px) {
  .choose { grid-template-columns: 1fr 1fr; gap: 16px; }
  .choose__card { padding: 24px 22px 22px; }
  .choose__title { font-size: 21px; }
  .choose__text { font-size: 14px; }
}
.choose .btn { padding: 12px 14px; gap: 8px; }
.choose .btn__label strong { font-size: 15px; }
.choose .btn__label small { white-space: normal; }
@media (max-width: 359px) { .choose .btn__label strong { font-size: 14px; } }

/* 入会金の箱：狭いスマホで「円（税込）」が縦に割れないように */
.fee__old, .fee__new, .fee__tag { white-space: nowrap; }
@media (max-width: 430px) {
  .fee__box { gap: 8px; padding: 18px 12px; }
  .fee__icon { display: none; }
  .fee__old strong { font-size: 22px; }
  .fee__new strong { font-size: 34px; }
  .fee__badge { flex-basis: 50px; width: 50px; height: 50px; font-size: 9px; }
}

/* ===== 2026-09 ポジショニング調整（自由だけど放っておかれない） ===== */
/* PCのみ改行 */
.pc { display: none; }
@media (min-width: 600px) { .pc { display: inline; } }

/* ヒーロー：主CTA＝見学・無料体験、副CTA＝LINE、30日お試しは一文で */
.hero__actions { display: grid; gap: 10px; width: 100%; max-width: 420px; margin-top: 18px; }
.hero__actions .btn--gold { justify-content: flex-start; box-shadow: 0 10px 28px rgba(0,0,0,.35); }
.hero__actions .btn--gold .ic--arrow { margin-left: auto; }
.hero__actions .btn__label strong { font-size: 16px; }
.hero__line { min-height: 48px; justify-content: center; background: rgba(0,0,0,.28); backdrop-filter: blur(4px); }
.hero__line .ic--line { fill: currentColor; stroke: none; color: var(--gold-2); }
.hero__note { margin-top: 12px; font-size: 12px; line-height: 1.7; opacity: .92; }
.hero__note a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 960px) {
  .hero__actions { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); max-width: 560px; align-items: stretch; }
  .hero__note { font-size: 13px; }
}

/* ViXerは、どんなジム？（一般的な24時間ジム／ViXer／パーソナルジム） */
.position { background: var(--white); }
.position__lead { text-align: center; font-size: 14px; color: var(--text-sub); margin-top: -6px; margin-bottom: 22px; line-height: 1.8; }
.position__list { display: grid; gap: 10px; max-width: 960px; margin: 0 auto; }
.position__card { background: var(--off); border: 1px solid var(--gray-1); border-radius: var(--radius-lg); padding: 18px 16px; text-align: center; }
.position__label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--text-sub); padding-bottom: 6px; border-bottom: 1px solid var(--gray-1); margin-bottom: 10px; }
.position__text { font-size: 15px; font-weight: 700; line-height: 1.6; }
.position__card--vixer { background: var(--black); color: var(--white); border-color: var(--gold); box-shadow: 0 10px 28px rgba(0,0,0,.18); padding: 24px 18px; }
.position__card--vixer .position__label { color: var(--gold-2); font-family: var(--font-en); font-size: 16px; letter-spacing: .08em; border-color: rgba(217,162,74,.5); }
.position__card--vixer .position__text { font-size: 17px; color: var(--white); }
.position__sub { margin-top: 10px; font-size: 12px; line-height: 1.8; color: var(--gold-light); }
.position__note { margin-top: 18px; text-align: center; font-size: 13px; line-height: 1.8; color: var(--text-sub); }
@media (min-width: 600px) {
  .position__list { grid-template-columns: 1fr 1.2fr 1fr; align-items: center; gap: 12px; }
  .position__card { padding: 22px 16px; }
  .position__card--vixer { padding: 30px 18px; }
}
@media (min-width: 960px) {
  .position__lead { font-size: 15px; }
  .position__text { font-size: 16px; }
  .position__card--vixer .position__text { font-size: 19px; }
}

/* 料金ブロック：金額ではなく「選べる4つのプラン」を見出しに */
.plans-simple__title { text-align: center; font-size: 18px; font-weight: 700; line-height: 1.5; }
@media (min-width: 600px) { .plans-simple__title { font-size: 20px; } }

/* 締めのCTA：30日お試しは安心材料の一文 */
.reserve__btns .btn { justify-content: flex-start; width: 100%; }
.reserve__btns .btn .ic--arrow { margin-left: auto; }
.reserve__btns .btn--white .ic--line { fill: currentColor; stroke: none; color: #06C755; }
.reserve__trial { margin-top: 18px; font-size: 13px; line-height: 1.8; opacity: .92; }
.reserve__trial a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }

/* 細かな折り返し調整 */
.position__lead { margin-top: 10px; }
.hero__note a, .reserve__trial a { white-space: nowrap; }
.price-sec__title--long { font-size: 16px; letter-spacing: .03em; }
.price-sec__title--long span { text-align: center; line-height: 1.5; }
@media (min-width: 600px) { .price-sec__title--long { font-size: 18px; } }
.why-item__title--long { font-size: 19px; }
@media (min-width: 600px) { .why-item__title--long { font-size: 22px; } }
@media (min-width: 960px) { .why-item__title--long { font-size: 26px; } }
@media (min-width: 600px) { .reserve__btns { max-width: 680px; grid-template-columns: 1.15fr 1fr; } .reserve__btns .btn__label strong { font-size: 16px; } }

/* ===== ViXerコラム（一覧・カテゴリ） ===== */
.page-hero--column .page-hero__text { font-size: 15px; }
.sub--column { padding-top: 24px; }
.col-section-title { font-size: 20px; font-weight: 700; line-height: 1.4; letter-spacing: .03em; display: inline-block; border-bottom: 2px solid var(--gold); padding-bottom: 4px; margin-bottom: 16px; }
.col-section-title--sm { font-size: 14px; color: var(--text-sub); border-bottom: 0; padding-bottom: 0; margin-bottom: 10px; }
.col-nav { margin-bottom: 34px; }
.col-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.col-cat { display: flex; flex-direction: column; height: 100%; padding: 12px 10px 10px; background: var(--white); border: 1px solid var(--gray-1); border-radius: var(--radius); transition: border-color .2s, background-color .2s; }
.col-cat__en { font-family: var(--font-en); font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--gold-text); }
.col-cat__name { font-size: 14px; font-weight: 700; line-height: 1.4; margin-top: 4px; color: var(--text); }
.col-cat__lead { display: none; font-size: 12px; line-height: 1.7; color: var(--text-sub); margin-top: 6px; flex: 1 1 auto; }
.col-cat__count { display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; font-size: 11px; color: var(--text-sub); }
.col-cat__count .ic { width: 12px; height: 12px; color: var(--gold-text); margin-left: 0; }
.col-cat[aria-current="page"] { background: var(--black); border-color: var(--black); }
.col-cat[aria-current="page"] .col-cat__name { color: var(--white); }
.col-cat[aria-current="page"] .col-cat__en, .col-cat[aria-current="page"] .col-cat__count .ic { color: var(--gold-2); }
.col-cat[aria-current="page"] .col-cat__lead, .col-cat[aria-current="page"] .col-cat__count { color: rgba(255,255,255,.75); }
.col-cat:hover { border-color: var(--gold); }
/* 読みやすさ（40代以上を想定して一段大きく） */
.blog-card__title { font-size: 17px; line-height: 1.55; }
.blog-card__excerpt { font-size: 14px; line-height: 1.75; }
.blog-card__cat { font-size: 11px; }
.blog-card time { font-size: 12.5px; }
.post__body { font-size: 15.5px; line-height: 1.95; }
@media (max-width: 359px) {
  .col-cats { grid-template-columns: 1fr; }
  .col-cat { flex-direction: row; align-items: center; gap: 10px; }
  .col-cat__name { margin-top: 0; }
  .col-cat__count { margin-top: 0; margin-left: auto; }
}
@media (min-width: 600px) {
  .page-hero--column .page-hero__text { font-size: 16px; }
  .col-cats { gap: 12px; }
  .col-cat { padding: 18px 16px 14px; }
  .col-cat__name { font-size: 17px; }
  .col-cat__lead { display: block; }
  .col-cat__count { font-size: 12px; margin-top: 12px; }
  .col-section-title { font-size: 22px; }
  .col-section-title--sm { font-size: 14px; }
  .col-nav { margin-bottom: 44px; }
}
@media (min-width: 960px) {
  .sub--column { max-width: 1120px; }
  .sub--column .blog-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .col-cat { padding: 22px 20px 16px; }
  .col-cat__name { font-size: 18px; }
  .post__body { font-size: 16px; }
}

/* コラムカード：アイキャッチは常に16:9・同じ角丸、日付の「更新」ラベル */
.blog-card img { aspect-ratio: 16 / 9; width: 100%; height: auto; object-fit: cover; background: var(--off); display: block; }
.blog-card a { display: flex; flex-direction: column; height: 100%; }
.blog-card__body { flex: 1 1 auto; }
.blog-card time small { font-size: 10px; font-weight: 700; color: var(--gold-text); margin-right: 4px; }
/* コラムカード：タイトルは最大3行、説明文は最大3行で揃える（高さのばらつきを抑える） */
.blog-card__title { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__excerpt { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== 控えめな動き（main.js が .reveal / .is-in を付ける。JSなし・視差軽減設定では静止表示） ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease-out, transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
/* PC（マウス操作）のときだけ、カードとボタンがわずかに浮く */
@media (hover: hover) and (pointer: fine) {
  .reason-card, .position__card, .review-card, .blog-card, .col-cat, .flow-card, .plans-simple__list li { transition: transform .25s ease, box-shadow .25s ease; }
  .reason-card:hover, .review-card:hover, .blog-card:hover, .flow-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
  .position__card:hover { transform: translateY(-3px); }
  .plans-simple__list li:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.08); }
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: scale(.985); }
}

/* 30日お試しページ：入口を LINE に一本化 */
.trial-hero__cta { margin-top: 18px; display: grid; gap: 8px; justify-items: center; }
.trial-hero__cta .btn--line { width: 100%; max-width: 480px; margin-top: 0; }
.trial-hero__cta-note { font-size: 12px; opacity: .9; text-align: center; line-height: 1.7; }
.trial-hero__cta-note a { font-family: var(--font-en); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.trial-cta__tel-note { font-size: 14px; line-height: 1.6; }
.trial-cta__tel-note a { font-family: var(--font-en); font-weight: 700; font-size: 18px; color: var(--gold-text); }
.trial-cta__tel-note small { font-size: 11px; color: var(--text-sub); }
.trial-cta__alt { margin-top: 6px; font-size: 12.5px; color: var(--text-sub); line-height: 1.7; }
.trial-cta__alt a { text-decoration: underline; text-underline-offset: 3px; color: var(--text); }
