/* IRONPACT — パーソナルジム LP（制作見本）
   CSS 設計: FLOCSS 風（l- レイアウト / c- 部品 / p- ページ固有 / u- 補助 / is- 状態）+ BEM
   モバイルファースト。ブレークポイント: 600 / 768 / 1024 / 1280px */

/* ==========================================================
   Foundation
   ========================================================== */
:root {
  /* 色: 黒に近い地 + 暖かい白 + 溶けた鉄の橙 1 色 */
  --c-ink: #0b0b0b;
  --c-ink-2: #141414;
  --c-ink-3: #1c1c1c;
  --c-line: #2a2a2a;
  --c-line-2: #3d3d3d;
  --c-paper: #f3f1ec;
  --c-mute: #a39f98;        /* 本文の補助。地に対して 7:1 */
  --c-fire: #ff5a1f;        /* アクセント。黒地に対して 6.3:1、橙地の文字は黒 */
  --c-fire-hot: #ff7a47;
  --c-error: #ff8b8b;

  --f-display: "Anton", "Noto Sans JP", sans-serif;
  --f-label: "Barlow Condensed", "Noto Sans JP", sans-serif;
  --f-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", system-ui, sans-serif;

  /* 斜めの切り返しは 3° だけ。tan(3°) × 100vw ≒ 5.24vw */
  --slope: 5.24vw;
  --gutter: clamp(20px, 5vw, 64px);
  --container: 1200px;
  --header-h: 60px;
  --sec-pad: clamp(72px, 9vw, 120px);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .5 0 0 0 0 .5 0 0 0 0 .5 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (min-width: 1024px) {
  :root { --header-h: 72px; }
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
html.is-locked { overflow: hidden; }
body {
  margin: 0;
  background: var(--c-ink);
  color: var(--c-paper);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (min-width: 768px) { body { font-size: 16px; } }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; letter-spacing: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
  font-feature-settings: "palt";
  word-break: auto-phrase;
  overflow-wrap: anywhere; /* 文節が 1 行に収まらない幅では、どこでも折る */
  text-wrap: balance;
}
p, li, dd { text-wrap: pretty; }
::selection { background: var(--c-fire); color: var(--c-ink); }
:focus-visible { outline: 3px solid var(--c-fire); outline-offset: 3px; }
[hidden] { display: none !important; }

/* ==========================================================
   Layout
   ========================================================== */
.l-container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.l-section {
  position: relative;
  padding-block: var(--sec-pad);
}
/* 一段明るい面。上下の辺を同じ 3° で切り返す（切られた三角には地の黒が見える） */
.l-section--slant {
  background: var(--c-ink-2);
  clip-path: polygon(0 var(--slope), 100% 0, 100% calc(100% - var(--slope)), 0 100%);
  padding-block: calc(var(--sec-pad) + var(--slope) * .6);
}

/* ---------- header ---------- */
.l-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
}
/* 背景は疑似要素に持たせる（header に backdrop-filter を付けると、中の固定要素の基準が header になるため） */
.l-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, .86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  opacity: 0;
  transition: opacity .35s;
}
.l-header.is-scrolled::before,
.l-header.is-open::before { opacity: 1; }
.l-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding-inline: var(--gutter);
}
.l-header__logo { margin-right: auto; }
.l-header__nav { display: none; }
.l-header .l-header__cta { display: none; }
.l-header__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  pointer-events: none;
}
.l-header__progress span {
  display: block;
  height: 100%;
  background: var(--c-fire);
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
}
@media (min-width: 360px) {
  .l-header .l-header__cta { display: inline-flex; }
}
@media (min-width: 1024px) {
  .l-header__inner { gap: 28px; }
  .l-header__nav { display: block; }
  .l-header__menu { display: none; }
}

/* ---------- footer ---------- */
.l-footer {
  position: relative;
  background: var(--c-ink-2);
  border-top: 1px solid var(--c-line);
  padding: 72px 0 calc(40px + env(safe-area-inset-bottom));
  font-size: 13px;
  color: var(--c-mute);
}
.l-footer__top {
  display: grid;
  gap: 20px;
  justify-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-line);
}
.l-footer .c-logo { color: var(--c-paper); }
.l-footer__tagline { color: var(--c-paper); font-weight: 700; }
.l-footer__stores {
  display: grid;
  gap: 20px;
  padding-block: 32px;
  line-height: 1.8;
}
.l-footer__stores b {
  display: block;
  margin-bottom: 4px;
  color: var(--c-paper);
  font-size: 14px;
}
.l-footer__stores a { color: var(--c-paper); }
.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-block: 20px 28px;
  border-top: 1px solid var(--c-line);
}
.l-footer__links a {
  display: inline-block;
  padding-block: 8px;
  text-decoration: none;
  color: var(--c-paper);
}
.l-footer__links a:hover { color: var(--c-fire); }
.l-footer__note,
.l-footer__credit { font-size: 12px; line-height: 1.8; }
.l-footer__credit { margin-top: 8px; }
.l-footer__copy { margin-top: 24px; font-family: var(--f-label); letter-spacing: .12em; }
@media (min-width: 768px) {
  .l-footer__top { grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
  .l-footer__stores { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
/* スマホは追従ボタンの分だけ下に余白 */
@media (max-width: 1023px) {
  .l-footer { padding-bottom: calc(112px + env(safe-area-inset-bottom)); }
}

/* ==========================================================
   Components
   ========================================================== */
.c-skip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--c-fire);
  color: var(--c-ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
}
.c-skip:focus { transform: none; }

/* ---------- logo ---------- */
.c-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  line-height: 1;
}
.c-logo__mark { width: 14px; height: 20px; fill: var(--c-fire); }
.c-logo__text {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: .04em;
  padding-top: 2px;
}
.c-logo--lg .c-logo__mark { width: 20px; height: 28px; }
.c-logo--lg .c-logo__text { font-size: 32px; }
@media (min-width: 1024px) {
  .l-header .c-logo__mark { width: 16px; height: 23px; }
  .l-header .c-logo__text { font-size: 26px; }
}

/* ---------- button ---------- */
.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 2px;
  background: none;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s, border-color .2s, color .2s;
}
.c-btn--fire { background: var(--c-fire); color: var(--c-ink); }
.c-btn--fire:hover { background: var(--c-fire-hot); }
.c-btn--ghost { border-color: rgba(243, 241, 236, .42); color: var(--c-paper); }
.c-btn--ghost:hover { border-color: var(--c-paper); background: rgba(243, 241, 236, .06); }
.c-btn--lg { min-height: 60px; padding: 0 30px; font-size: 16px; }
.c-btn--sm { min-height: 42px; padding: 0 18px; font-size: 13px; letter-spacing: .04em; }
.c-btn--block { display: flex; width: 100%; }
.c-btn__arrow {
  position: relative;
  flex: none;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .35s var(--ease-out);
}
.c-btn__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.c-btn:hover .c-btn__arrow { transform: translateX(5px); }

/* ---------- menu button ---------- */
.c-menu-btn {
  position: relative;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  border: 0;
  background: none;
}
.c-menu-btn__bars,
.c-menu-btn__bars::before,
.c-menu-btn__bars::after {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--c-paper);
  transition: transform .3s var(--ease-out), opacity .2s;
}
.c-menu-btn__bars { top: 21px; }
.c-menu-btn__bars::before,
.c-menu-btn__bars::after { content: ""; left: 0; }
.c-menu-btn__bars::before { top: -7px; }
.c-menu-btn__bars::after { top: 7px; width: 16px; }
.c-menu-btn[aria-expanded="true"] .c-menu-btn__bars { background: transparent; }
.c-menu-btn[aria-expanded="true"] .c-menu-btn__bars::before { transform: translateY(7px) rotate(45deg); }
.c-menu-btn[aria-expanded="true"] .c-menu-btn__bars::after { width: 24px; transform: translateY(-7px) rotate(-45deg); }

/* ---------- section heading ---------- */
.c-sechead { margin-bottom: clamp(40px, 6vw, 72px); }
.c-sechead__set {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
}
.c-sechead__no {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-fire);
}
.c-sechead__no::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--c-fire);
  transform-origin: left;
}
.c-sechead__en { color: var(--c-mute); }
.c-sechead__title {
  margin-top: 18px;
  font-size: clamp(30px, 8vw, 58px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: .01em;
}
.c-sechead__lead {
  margin-top: 18px;
  max-width: 40em;
  color: var(--c-mute);
  word-break: auto-phrase;
  text-wrap: balance;
}
.c-sechead--center { text-align: center; }
.c-sechead--center .c-sechead__set { justify-content: center; }
.c-sechead--center .c-sechead__lead { margin-inline: auto; }

/* ---------- photo（モノクロ写真 + 粒子） ---------- */
.c-photo {
  position: relative;
  overflow: hidden;
  background: var(--c-ink-3);
}
.c-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  mix-blend-mode: overlay;
  opacity: .45;
  pointer-events: none;
}

/* ---------- form parts ---------- */
.c-req,
.c-opt {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 7px 2px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.3;
  vertical-align: .15em;
}
.c-req { background: var(--c-fire); color: var(--c-ink); }
.c-opt { border: 1px solid var(--c-line-2); color: var(--c-mute); font-weight: 400; }

.c-field { display: grid; align-content: start; gap: 8px; min-width: 0; margin: 0; padding: 0; border: 0; }
.c-field__label { font-size: 14px; font-weight: 700; padding: 0; }
.c-field__input {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid var(--c-line-2);
  border-radius: 2px;
  background: var(--c-ink);
  color: var(--c-paper);
  font-size: 16px;
  line-height: 1.6;
  transition: border-color .2s, box-shadow .2s;
}
.c-field__input::placeholder { color: #86827c; } /* 地に対して 5:1 */
.c-field__input:hover { border-color: #575757; }
.c-field__input:focus { outline: none; border-color: var(--c-fire); box-shadow: 0 0 0 3px rgba(255, 90, 31, .28); }
.c-field__input[aria-invalid="true"] { border-color: var(--c-error); }
.c-field__input--area { min-height: 112px; resize: vertical; }
.c-field__hint { font-size: 12px; color: var(--c-mute); line-height: 1.6; }
.c-field__error {
  display: flex;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-error);
}
.c-field__error::before { content: "！"; }

.c-checks { display: grid; gap: 8px; }
@media (min-width: 600px) { .c-checks { grid-template-columns: 1fr 1fr; } }
.c-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--c-line-2);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  transition: border-color .2s, background-color .2s;
}
.c-check input {
  flex: none;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--c-fire);
}
.c-check:hover { border-color: #5c5c5c; }
.c-check:has(input:checked) { border-color: var(--c-fire); background: rgba(255, 90, 31, .08); }
.c-check--agree { border: 0; padding-inline: 0; font-size: 15px; }
.c-check--agree a { color: var(--c-paper); text-underline-offset: 4px; }

/* ---------- toast ---------- */
.c-toast {
  position: fixed;
  left: 50%;
  bottom: calc(96px + env(safe-area-inset-bottom));
  z-index: 90;
  max-width: calc(100% - 32px);
  padding: 14px 20px;
  border-left: 4px solid var(--c-fire);
  background: var(--c-paper);
  color: var(--c-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
  transform: translateX(-50%);
  animation: toast-in .35s var(--ease-out);
}
@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
@media (min-width: 1024px) { .c-toast { bottom: 40px; } }

/* ==========================================================
   Project: navigation
   ========================================================== */
.p-gnav__list { display: flex; gap: 26px; }
.p-gnav__list a {
  position: relative;
  display: block;
  padding-block: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  white-space: nowrap;
}
.p-gnav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--c-fire);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.p-gnav__list a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (min-width: 1024px) and (max-width: 1199px) {
  .p-gnav__list { gap: 18px; }
  .p-gnav__list li:nth-child(6) { display: none; }
}

/* ---------- drawer（スマホ・タブレットのメニュー） ---------- */
.p-drawer {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--drawer-top, var(--header-h));
  bottom: 0;
  z-index: -1;
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 8px var(--gutter) calc(40px + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--c-ink);
  animation: drawer-in .4s var(--ease-out);
}
@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: none; }
}
.p-drawer__list li { border-bottom: 1px solid var(--c-line); }
.p-drawer__list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}
.p-drawer__no {
  flex: none;
  width: 54px;
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--c-fire);
}
.p-drawer__tel { font-size: 13px; color: var(--c-mute); }
.p-drawer__tel a { color: var(--c-paper); font-weight: 700; }
@media (min-width: 1024px) { .p-drawer { display: none !important; } }

/* ---------- set indicator（PC の画面右端） ---------- */
.p-setnav { display: none; }
@media (min-width: 1280px) {
  .p-setnav {
    position: fixed;
    right: 18px;
    top: 50%;
    z-index: 40;
    display: grid;
    justify-items: end;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translate(12px, -50%);
    transition: opacity .4s, transform .4s var(--ease-out), visibility .4s;
  }
  .p-setnav.is-visible { opacity: 1; visibility: visible; transform: translate(0, -50%); }
}
.p-setnav__now {
  display: grid;
  justify-items: end;
  font-family: var(--f-label);
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
}
.p-setnav__set { font-size: 11px; color: var(--c-mute); }
.p-setnav__num {
  margin-top: 6px;
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--c-paper);
}
.p-setnav__num.is-flip { animation: set-flip .45s var(--ease-out); }
@keyframes set-flip {
  from { opacity: 0; transform: translateY(60%); }
  to { opacity: 1; transform: none; }
}
.p-setnav__total { margin-top: 6px; font-size: 11px; color: var(--c-mute); }
.p-setnav__list { display: grid; gap: 2px; justify-items: end; }
.p-setnav__list a {
  position: relative;
  display: block;
  width: 32px;
  height: 14px;
}
.p-setnav__list a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--c-line-2);
  transform: translateY(-50%);
  transition: width .35s var(--ease-out), background-color .35s;
}
.p-setnav__list a.is-done::before { background: var(--c-paper); }
.p-setnav__list a[aria-current="true"]::before { width: 30px; height: 3px; background: var(--c-fire); }
.p-setnav__label {
  position: absolute;
  right: 42px;
  top: 50%;
  padding: 4px 10px;
  background: var(--c-paper);
  color: var(--c-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity .2s, transform .2s;
}
.p-setnav__list a:hover .p-setnav__label,
.p-setnav__list a:focus-visible .p-setnav__label { opacity: 1; transform: translate(0, -50%); }

/* ==========================================================
   Project: FV
   ========================================================== */
.p-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - var(--demo-bar-h, 0px) - 40px - 3vw);
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 84px;
  overflow: hidden;
  isolation: isolate;
}
.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.p-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}
/* 文字の下を暗く。スマホは下から、PC は左から */
.p-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, .6) 0%, rgba(11, 11, 11, 0) 16%),
    linear-gradient(0deg, rgba(11, 11, 11, .97) 0%, rgba(11, 11, 11, .9) 46%, rgba(11, 11, 11, .62) 66%, rgba(11, 11, 11, .2) 84%, rgba(11, 11, 11, 0) 94%);
}
.p-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--grain);
  mix-blend-mode: overlay;
  opacity: .5;
  pointer-events: none;
}
.p-hero__inner { position: relative; }
.p-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.4;
  color: var(--c-paper);
}
/* 見出しの前の橙の線（各セクションの見出しと同じ語彙） */
.p-hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--c-fire);
}
.p-hero__eyebrow span + span { letter-spacing: .12em; }
.p-hero__eyebrow,
.p-hero__title { text-shadow: 0 2px 18px rgba(11, 11, 11, .45); }
.p-hero__title {
  margin-top: 14px;
  font-size: clamp(56px, 16.4vw, 104px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.01em;
  text-wrap: nowrap;
}
.p-hero__line { display: block; overflow: hidden; padding-bottom: .04em; }
.p-hero__line > span { display: inline-block; }
.p-hero__line:nth-child(2) > span { color: var(--c-fire); }
.p-hero__lead {
  margin-top: 20px;
  max-width: 34em;
  font-size: 15px;
  line-height: 1.85;
  color: #d9d6d0;
  word-break: auto-phrase;
}
.p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.p-hero__actions .c-btn--fire { flex: 1 1 auto; }
.p-hero__actions .c-btn--ghost { display: none; }
.p-hero__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-top: 1px solid rgba(243, 241, 236, .2);
}
.p-hero__badge {
  display: grid;
  align-content: start;
  gap: 2px;
  padding: 14px 10px 0 0;
  line-height: 1.3;
}
.p-hero__badge + .p-hero__badge { padding-left: 12px; border-left: 1px solid rgba(243, 241, 236, .2); }
.p-hero__badge-key { font-size: 11px; color: var(--c-mute); letter-spacing: .06em; }
.p-hero__badge-val { font-size: 17px; font-weight: 900; letter-spacing: .02em; }
.p-hero__badge:first-child .p-hero__badge-val { font-family: var(--f-display); font-size: 26px; font-weight: 400; color: var(--c-fire); }
.p-hero__badge-sub { font-size: 11px; color: var(--c-mute); text-decoration: none; }
s.p-hero__badge-sub { text-decoration: line-through; }
.p-hero__scroll { display: none; }

@media (min-width: 600px) {
  .p-hero__actions .c-btn--fire { flex: 0 1 auto; }
  .p-hero__actions .c-btn--ghost { display: inline-flex; }
  .p-hero__badges { max-width: 520px; }
}
@media (min-width: 768px) {
  .p-hero { align-items: center; padding-top: calc(var(--header-h) + 8px); padding-bottom: 64px; }
  .p-hero__bg img { object-position: 72% 30%; }
  .p-hero::before {
    background:
      linear-gradient(180deg, rgba(11, 11, 11, .6) 0%, rgba(11, 11, 11, 0) 20%),
      linear-gradient(90deg, rgba(11, 11, 11, .94) 0%, rgba(11, 11, 11, .74) 34%, rgba(11, 11, 11, .12) 62%, rgba(11, 11, 11, 0) 80%);
  }
  .p-hero__title { font-size: clamp(84px, 10.4vw, 124px); }
  .p-hero__lead { font-size: 16px; }
}
@media (min-width: 1024px) {
  .p-hero__title { font-size: clamp(72px, min(8.2vw, 11vh), 132px); }
  .p-hero__eyebrow { margin-top: 8px; }
  .p-hero__lead { margin-top: 18px; }
  .p-hero__actions { margin-top: 24px; }
  .p-hero__badges { margin-top: 20px; }
  .p-hero__scroll {
    position: absolute;
    right: var(--gutter);
    bottom: 110px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--f-label);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3em;
    writing-mode: vertical-rl;
    color: var(--c-mute);
  }
  .p-hero__scroll::after {
    content: "";
    width: 1px;
    height: 72px;
    background: linear-gradient(var(--c-paper), transparent);
    animation: scroll-line 2.2s var(--ease-io) infinite;
  }
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- marquee（FV の下端に 3° で斜めに掛かる帯） ---------- */
.p-marquee {
  position: relative;
  z-index: 5;
  overflow: hidden;                      /* overflow: clip 未対応のブラウザ向け */
  overflow-x: clip;
  overflow-y: visible;
  margin-block: -27px;                   /* 帯の中心を FV の下端にそろえる（帯の高さの半分） */
  pointer-events: none;
}
.p-marquee__band {
  width: 112%;
  margin-left: -6%;
  background: var(--c-fire);
  color: var(--c-ink);
  transform: rotate(-3deg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .45);
}
.p-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.p-marquee__track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 0 8px 28px;
  font-family: var(--f-display);
  font-size: 30px;
  letter-spacing: .04em;
  line-height: 1.2;
  white-space: nowrap;
}
.p-marquee__track span::after {
  content: "";
  width: 12px;
  height: 20px;
  background: var(--c-ink);
  clip-path: polygon(40% 0, 100% 0, 60% 100%, 0 100%);
}
@media (min-width: 1024px) {
  .p-marquee { margin-block: -36px; }
  .p-marquee__track span { font-size: 44px; gap: 36px; padding-left: 36px; }
  .p-marquee__track span::after { width: 16px; height: 30px; }
}

/* ==========================================================
   Project: SET 01 お悩み
   ========================================================== */
.p-problem { padding-top: calc(var(--sec-pad) + 24px); }
.p-problem__list { border-top: 1px solid var(--c-line); }
.p-problem__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.p-problem__no {
  font-family: var(--f-display);
  font-size: 20px;
  color: #5e5a55;
  letter-spacing: .04em;
}
.p-problem__answer {
  margin-top: clamp(56px, 8vw, 96px);
  padding-top: 40px;
  border-top: 3px solid var(--c-fire);
}
.p-problem__answer-main {
  word-break: auto-phrase;
  font-size: clamp(22px, 5.6vw, 40px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .01em;
  font-feature-settings: "palt";
}
.p-problem__answer-main em {
  font-style: normal;
  color: var(--c-ink);
  background: linear-gradient(transparent 8%, var(--c-fire) 8%, var(--c-fire) 94%, transparent 94%);
  padding-inline: .12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-problem__answer-sub { margin-top: 16px; color: var(--c-mute); }
@media (min-width: 1024px) {
  .p-problem__inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 0 64px;
  }
  .p-problem__head { grid-row: 1; }
  .p-problem__list { grid-row: 1; margin-top: 8px; }
  .p-problem__item { grid-template-columns: 64px 1fr; padding: 24px 0; font-size: 18px; }
  .p-problem__no { font-size: 26px; }
  .p-problem__answer { grid-column: 1 / -1; }
}

/* ==========================================================
   Project: SET 02 選ばれる理由
   ========================================================== */
.p-reason__items { display: grid; gap: clamp(72px, 10vw, 128px); }
.p-reason__item { display: grid; gap: 28px; }
/* 写真の下辺も 3°（4:3 の写真なら高さの約 7%） */
.p-reason__photo {
  aspect-ratio: 4 / 3;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
}
.p-reason__body { position: relative; }
.p-reason__no {
  font-family: var(--f-display);
  font-size: 88px;
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-fire);
  letter-spacing: .02em;
}
.p-reason__title {
  margin-top: 18px;
  font-size: clamp(24px, 6.2vw, 36px);
  font-weight: 900;
  line-height: 1.4;
}
.p-reason__text { margin-top: 18px; color: var(--c-mute); }
.p-reason__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.p-reason__points li {
  padding: 6px 12px;
  border: 1px solid var(--c-line-2);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
.p-reason__extra {
  display: grid;
  gap: 1px;
  margin-top: clamp(72px, 10vw, 112px);
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.p-reason__extra li {
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  background: var(--c-ink-2);
  font-size: 14px;
  color: var(--c-mute);
  line-height: 1.6;
}
.p-reason__extra-key {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--c-paper);
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .p-reason__extra { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .p-reason__item {
    grid-template-columns: repeat(12, 1fr);
    align-items: end;
    gap: 0;
  }
  .p-reason__photo { grid-column: 1 / 8; grid-row: 1; }
  .p-reason__body { grid-column: 8 / 13; grid-row: 1; padding: 0 0 48px 56px; }
  .p-reason__item--rev .p-reason__photo { grid-column: 6 / 13; }
  .p-reason__item--rev .p-reason__body { grid-column: 1 / 6; padding: 0 56px 48px 0; }
  .p-reason__no { font-size: 132px; }
  .p-reason__title { font-size: clamp(26px, 2.8vw, 36px); }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .p-reason__body { padding: 0 0 32px 40px; }
  .p-reason__item--rev .p-reason__body { padding: 0 40px 32px 0; }
  .p-reason__no { font-size: 104px; }
}

/* ==========================================================
   Project: SET 03 実績
   ========================================================== */
.p-result__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
}
.p-result__stat {
  padding: 22px 16px 24px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.p-result__num {
  display: flex;
  align-items: baseline;
  font-family: var(--f-display);
  font-size: clamp(48px, 13vw, 96px);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--c-fire);
  font-variant-numeric: tabular-nums;
}
.p-result__sign { margin-right: .04em; }
.p-result__unit {
  margin-left: .12em;
  font-family: var(--f-body);
  font-size: .3em;
  font-weight: 900;
  color: var(--c-paper);
}
.p-result__label { margin-top: 12px; font-size: 13px; font-weight: 700; line-height: 1.5; }
.p-result__note { margin-top: 16px; font-size: 12px; color: var(--c-mute); line-height: 1.7; }
.p-result__subtitle {
  margin-top: clamp(64px, 9vw, 104px);
  margin-bottom: 24px;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 900;
}
.p-result__cases { display: grid; gap: 16px; }
@media (min-width: 1024px) {
  .p-result__stats { grid-template-columns: repeat(4, 1fr); }
  .p-result__stat { padding: 32px 24px 34px; }
  .p-result__cases { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.p-case {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  background: var(--c-ink-2);
  border: 1px solid var(--c-line);
}
.p-case__head {
  display: grid;
  align-items: baseline;
  gap: 4px 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}
.p-case__tag {
  grid-column: 1 / -1;
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--c-fire);
}
.p-case__who { font-size: 18px; font-weight: 900; line-height: 1.5; }
.p-case__course { font-size: 12px; color: var(--c-mute); }
@media (min-width: 480px) and (max-width: 1023px), (min-width: 1280px) {
  .p-case__head { grid-template-columns: 1fr auto; }
  .p-case__course { white-space: nowrap; }
}
.p-case__data { display: grid; gap: 18px; padding-block: 22px; }
.p-case__row {
  display: grid;
  grid-template-columns: 5.2em 1fr;
  align-items: baseline;
  gap: 6px 10px;
}
.p-case__row dt { font-size: 13px; color: var(--c-mute); }
.p-case__row dd:first-of-type {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.p-case__vals { white-space: nowrap; }
.p-case__vals b { font-size: 18px; font-weight: 900; }
.p-case__diff {
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--c-fire);
}
.p-case__bar {
  grid-column: 1 / -1;
  position: relative;
  height: 6px;
  background: repeating-linear-gradient(-60deg, var(--c-line-2) 0 2px, transparent 2px 6px);
}
.p-case__bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--ratio) * 100%);
  background: var(--c-paper);
  transform-origin: left;
}
/* 増えたほうが良い指標は、増えた分を橙で重ねる */
.p-case__row--up .p-case__bar span {
  background: linear-gradient(90deg, var(--c-paper) 0 calc(var(--from) * 100%), var(--c-fire) calc(var(--from) * 100%));
}
.p-case__row:not(.p-case__row--up) .p-case__bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--ratio) * 100%);
  right: 0;
  border: 1px solid var(--c-fire);
  border-left: 0;
}
.js .p-case .p-case__bar span { transform: scaleX(0); transition: transform 1.2s var(--ease-out) .2s; }
.js .p-case.is-in .p-case__bar span { transform: scaleX(1); }
.p-case__comment {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}
.p-case__comment::before { content: "“"; margin-right: 2px; font-family: var(--f-display); color: var(--c-fire); }

/* ==========================================================
   Project: SET 04 プログラム
   ========================================================== */
.p-program__phases {
  position: relative;
  display: grid;
  gap: 0;
  counter-reset: phase;
}
/* 進み具合の線（スクロールで伸びる） */
.p-program__phases::before,
.p-program__phases::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--c-line-2);
}
.p-program__phases::after {
  background: var(--c-fire);
  transform: scaleY(var(--line, 0));
  transform-origin: top;
}
.p-program__phase {
  position: relative;
  padding: 0 0 40px 40px;
}
.p-program__phase::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 2px solid var(--c-fire);
  background: var(--c-ink-2);
  transform: rotate(45deg);
}
.p-program__week {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--c-fire);
}
.p-program__title { margin-top: 8px; font-size: 22px; font-weight: 900; line-height: 1.45; }
.p-program__text { margin-top: 10px; font-size: 14px; color: var(--c-mute); line-height: 1.8; }
.p-program__load {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--c-mute);
}
.p-program__meter {
  display: block;
  width: 110px;
  height: 10px;
  background:
    linear-gradient(90deg, var(--c-fire) calc(var(--level) * 20%), transparent 0),
    repeating-linear-gradient(90deg, var(--c-line-2) 0 18px, transparent 18px 23px);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 18px, transparent 18px 23px);
  mask: repeating-linear-gradient(90deg, #000 0 18px, transparent 18px 23px);
}
.p-program__session {
  margin-top: clamp(40px, 7vw, 80px);
  padding: 28px 22px;
  border: 1px solid var(--c-line);
  background: var(--c-ink);
}
.p-program__session-title { font-size: 18px; font-weight: 900; }
.p-program__split {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}
.p-program__split li {
  display: grid;
  grid-template-columns: 3.4em 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-left: 4px solid var(--c-line-2);
  background: var(--c-ink-3);
  font-size: 14px;
  line-height: 1.5;
}
.p-program__split li.is-main { border-left-color: var(--c-fire); }
.p-program__split-min { font-family: var(--f-display); font-size: 18px; letter-spacing: .02em; }
.p-program__daily { margin-top: 18px; font-size: 14px; color: var(--c-mute); line-height: 1.8; }
.p-program__daily b { display: block; color: var(--c-paper); }
@media (min-width: 1024px) {
  .p-program__phases { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .p-program__phases::before,
  .p-program__phases::after { left: 0; right: 0; top: 7px; bottom: auto; width: auto; height: 2px; }
  .p-program__phases::after { transform: scaleX(var(--line, 0)); transform-origin: left; }
  .p-program__phase { padding: 44px 0 0; }
  .p-program__phase::before { top: 0; }
  .p-program__week { font-size: 30px; }
  .p-program__session { display: grid; grid-template-columns: 220px 1fr; gap: 24px 40px; padding: 36px 40px; }
  .p-program__split {
    grid-template-columns: minmax(112px, 5fr) minmax(120px, 10fr) 35fr minmax(150px, 10fr);
    gap: 4px;
    margin-top: 0;
  }
  .p-program__split li {
    grid-template-columns: 1fr;
    gap: 4px;
    align-content: start;
    min-height: 92px;
    padding: 12px;
    border-left: 0;
    border-top: 4px solid var(--c-line-2);
    font-size: 12px;
  }
  .p-program__split li.is-main { border-top-color: var(--c-fire); font-size: 14px; }
  .p-program__daily { grid-column: 2; margin-top: 0; }
}

/* ---------- 全幅の写真帯 ---------- */
.p-band {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(420px, 62vw, 680px);
  clip-path: polygon(0 var(--slope), 100% 0, 100% calc(100% - var(--slope)), 0 100%);
  isolation: isolate;
}
.p-band__photo {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-band__photo img { object-position: 20% 50%; }
.p-band__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 11, 11, .2), rgba(11, 11, 11, .78));
}
.p-band__inner { position: relative; padding-block: calc(var(--slope) + 48px); }
.p-band__en {
  font-family: var(--f-display);
  font-size: clamp(40px, 11vw, 132px);
  line-height: .95;
  letter-spacing: .01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(243, 241, 236, .55);
}
.p-band__text {
  margin-top: 20px;
  font-size: clamp(28px, 7.4vw, 60px);
  font-weight: 900;
  line-height: 1.35;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .p-band__photo::before { background: linear-gradient(90deg, rgba(11, 11, 11, 0) 20%, rgba(11, 11, 11, .82) 70%); }
  .p-band__inner { justify-items: end; text-align: right; display: grid; }
}

/* ==========================================================
   Project: SET 05 トレーナー
   ========================================================== */
.p-trainer__list { display: grid; gap: 40px; }
.p-trainer__card { display: grid; gap: 20px; }
.p-trainer__photo { aspect-ratio: 1; }
.p-trainer__photo img { transition: transform 1s var(--ease-out); }
.p-trainer__card:hover .p-trainer__photo img { transform: scale(1.04); }
.p-trainer__spec {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 6px 14px 5px;
  background: var(--c-fire);
  color: var(--c-ink);
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
}
.p-trainer__role { font-size: 13px; color: var(--c-mute); }
.p-trainer__name {
  margin-top: 4px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.3;
}
.p-trainer__name span {
  display: block;
  margin-top: 4px;
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--c-mute);
}
.p-trainer__data {
  display: grid;
  margin-top: 16px;
  border-top: 1px solid var(--c-line);
  font-size: 14px;
  line-height: 1.6;
}
.p-trainer__data div {
  display: grid;
  grid-template-columns: 4.2em 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line);
}
.p-trainer__data dt { color: var(--c-mute); }
.p-trainer__data dd,
.p-store-card__info dd { word-break: auto-phrase; }
.p-trainer__quote {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--c-fire);
  font-weight: 700;
  line-height: 1.7;
}
.p-trainer__note { margin-top: 32px; font-size: 12px; color: var(--c-mute); }
@media (min-width: 600px) {
  .p-trainer__list { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
}
@media (min-width: 1024px) {
  .p-trainer__list { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .p-trainer__card:nth-child(2) { margin-top: 64px; }
  .p-trainer__card:nth-child(3) { margin-top: 128px; }
}

/* ==========================================================
   Project: SET 06 料金
   ========================================================== */
.p-price__entry {
  display: grid;
  gap: 4px;
  justify-items: start;
  margin-bottom: 32px;
  padding: 22px 24px;
  border: 1px dashed var(--c-fire);
}
.p-price__entry-label { font-size: 13px; font-weight: 700; color: var(--c-mute); }
.p-price__entry-val {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: .02em;
}
.p-price__entry-val s { color: var(--c-mute); text-decoration-thickness: 2px; }
.p-price__entry-val b { font-weight: 400; font-size: 44px; line-height: 1; color: var(--c-fire); }
.p-price__entry-arrow { font-family: var(--f-body); color: var(--c-mute); }
.p-price__entry-cond { font-size: 14px; font-weight: 700; }
.p-price__plans { display: grid; gap: 16px; }
.p-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  background: var(--c-ink);
  border: 1px solid var(--c-line);
}
.p-plan--main {
  border: 2px solid var(--c-fire);
  padding-top: 44px;
}
.p-plan__badge {
  position: absolute;
  left: -2px;
  top: -2px;
  padding: 6px 14px;
  background: var(--c-fire);
  color: var(--c-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}
.p-plan__name { font-size: 22px; font-weight: 900; line-height: 1.4; }
.p-plan__spec { margin-top: 4px; font-size: 13px; color: var(--c-mute); }
.p-plan__price {
  display: flex;
  align-items: baseline;
  margin-top: 20px;
  font-family: var(--f-display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}
.p-plan--main .p-plan__price { font-size: 60px; }
.p-plan__yen { font-size: .5em; margin-right: 4px; }
.p-plan__tax { margin-left: 10px; font-family: var(--f-body); font-size: 13px; font-weight: 700; color: var(--c-mute); letter-spacing: .04em; }
.p-plan__per { margin-top: 12px; font-size: 13px; color: var(--c-mute); line-height: 1.7; }
.p-plan__incl {
  display: grid;
  gap: 10px;
  margin-block: 22px 26px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
  font-size: 14px;
  line-height: 1.5;
}
.p-plan__incl li { display: flex; gap: 10px; }
.p-plan__incl li::before {
  content: "";
  flex: none;
  width: 12px;
  height: 7px;
  margin-top: .45em;
  border-left: 2px solid var(--c-fire);
  border-bottom: 2px solid var(--c-fire);
  transform: rotate(-45deg);
}
.p-plan .c-btn { margin-top: auto; }
.p-price__notes {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--c-mute);
  line-height: 1.8;
}
.p-price__notes li { display: flex; gap: 6px; }
.p-price__notes li::before { content: "※"; }
@media (min-width: 768px) {
  .p-price__entry { grid-template-columns: auto auto 1fr; align-items: center; gap: 24px; }
}
@media (min-width: 1024px) {
  .p-price__plans { grid-template-columns: 1.25fr 1fr 1fr; align-items: stretch; gap: 20px; }
  .p-plan { padding: 36px 32px; }
  .p-plan--main { padding: 52px 36px 36px; }
}

/* ==========================================================
   Project: SET 07 会員の声
   ========================================================== */
.p-voice__list { display: grid; gap: 16px; }
.p-voice__card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid var(--c-line);
  background: var(--c-ink-2);
}
.p-voice__title { font-size: 19px; font-weight: 900; line-height: 1.6; }
.p-voice__title::before {
  content: "";
  display: block;
  width: 26px;
  height: 22px;
  margin-bottom: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 22'%3E%3Cpath d='M7 0h6L6 22H0zM20 0h6l-7 22h-6z' fill='%23ff5a1f'/%3E%3C/svg%3E") no-repeat;
}
.p-voice__text { margin-block: 14px 22px; font-size: 14px; color: var(--c-mute); line-height: 1.9; }
.p-voice__who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.p-voice__who small { display: block; margin-top: 2px; font-size: 12px; font-weight: 400; color: var(--c-mute); }
.p-voice__avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--c-fire);
  border-radius: 50%;
  font-family: var(--f-label);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
}
@media (min-width: 1024px) {
  .p-voice__list { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .p-voice__card { padding: 36px 32px; }
}

/* ==========================================================
   Project: SET 08 体験の流れ
   ========================================================== */
.p-flow__steps { display: grid; gap: 12px; counter-reset: step; }
.p-flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 2px 14px;
  align-items: baseline;
  padding: 20px 20px 22px;
  background: var(--c-ink);
  border: 1px solid var(--c-line);
}
.p-flow__no {
  grid-row: span 2;
  font-family: var(--f-display);
  font-size: 36px;
  line-height: 1;
  color: var(--c-fire);
}
.p-flow__title { font-size: 17px; font-weight: 900; line-height: 1.5; }
.p-flow__time {
  justify-self: end;
  padding: 2px 10px;
  border: 1px solid var(--c-line-2);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.p-flow__text { grid-column: 2 / -1; font-size: 14px; color: var(--c-mute); line-height: 1.75; }
@media (min-width: 1024px) {
  .p-flow__steps { grid-template-columns: repeat(5, 1fr); gap: 0; }
  .p-flow__step {
    grid-template-columns: 1fr auto;
    align-content: start;
    gap: 12px;
    padding: 28px 22px 30px;
    border-left-width: 0;
  }
  .p-flow__step:first-child { border-left-width: 1px; }
  /* 次のステップへの矢印（3° と同じ向きの斜線） */
  .p-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -9px;
    top: 36px;
    z-index: 1;
    width: 16px;
    height: 16px;
    border-top: 2px solid var(--c-fire);
    border-right: 2px solid var(--c-fire);
    background: var(--c-ink);
    transform: rotate(45deg);
  }
  .p-flow__no { grid-row: auto; font-size: 44px; }
  .p-flow__time { grid-row: 1; grid-column: 2; align-self: center; }
  .p-flow__title { grid-column: 1 / -1; }
  .p-flow__text { grid-column: 1 / -1; }
}

/* ==========================================================
   Project: SET 09 よくある質問
   ========================================================== */
.p-faq__list { border-top: 1px solid var(--c-line); }
.p-faq__item { border-bottom: 1px solid var(--c-line); }
.p-faq__q button {
  display: grid;
  grid-template-columns: 28px 1fr 24px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 18px 0;
  border: 0;
  background: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  transition: color .2s;
}
.p-faq__q button:hover { color: var(--c-fire); }
.p-faq__mark {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  color: var(--c-fire);
}
.p-faq__icon { position: relative; width: 18px; height: 18px; justify-self: end; }
.p-faq__icon::before,
.p-faq__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .35s var(--ease-out);
}
.p-faq__icon::after { transform: rotate(90deg); }
.p-faq__q button[aria-expanded="true"] .p-faq__icon::after { transform: rotate(0deg); }
.p-faq__a {
  color: var(--c-mute);
  overflow: hidden;
}
.p-faq__a.is-animating { transition: height .35s var(--ease-out); }
.p-faq__a p { position: relative; padding: 0 0 24px 40px; }
.p-faq__a p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: -.1em;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--c-paper);
}
@media (min-width: 1024px) {
  .p-faq__inner { display: grid; grid-template-columns: 4fr 8fr; gap: 64px; }
  .p-faq__inner .c-sechead { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; }
  .p-faq__q button { font-size: 17px; min-height: 76px; }
}

/* ==========================================================
   Project: SET 10 店舗
   ========================================================== */
.p-access__list { display: grid; gap: 24px; }
.p-store-card {
  display: grid;
  background: var(--c-ink);
  border: 1px solid var(--c-line);
}
.p-store-card__map { width: 100%; height: auto; }
.p-store-card__map .map-bg { fill: #121212; }
.p-store-card__map .map-road { fill: none; stroke: #262626; stroke-width: 12; }
.p-store-card__map .map-road--main { stroke: #303030; stroke-width: 18; }
.p-store-card__map .map-rail { fill: none; stroke: #4a4a4a; stroke-width: 6; stroke-dasharray: 14 8; }
.p-store-card__map .map-station { fill: var(--c-paper); }
.p-store-card__map .map-station-label { fill: var(--c-ink); font-size: 15px; font-weight: 900; text-anchor: middle; font-family: var(--f-body); }
.p-store-card__map .map-route { fill: none; stroke: var(--c-fire); stroke-width: 4; stroke-dasharray: 2 9; stroke-linecap: round; }
.p-store-card__map .map-walk { fill: var(--c-fire); font-size: 14px; font-weight: 700; font-family: var(--f-body); }
.p-store-card__map .map-pin path { fill: var(--c-fire); }
.p-store-card__map .map-pin circle { fill: var(--c-ink); }
.p-store-card__map .map-pin-bg { fill: var(--c-ink); stroke: var(--c-fire); stroke-width: 1.5; }
.p-store-card__map .map-pin-label { fill: var(--c-paper); font-size: 13px; font-weight: 900; font-family: var(--f-body); text-anchor: middle; }
.p-store-card__body { padding: 26px 22px 28px; }
.p-store-card__name { font-size: 24px; font-weight: 900; }
.p-store-card__info { margin-block: 14px 24px; font-size: 14px; line-height: 1.7; }
.p-store-card__info div {
  display: grid;
  grid-template-columns: 5.2em 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--c-line);
}
.p-store-card__info dt { color: var(--c-mute); }
@media (min-width: 1024px) {
  .p-access__list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .p-store-card__body { padding: 32px 32px 34px; }
}

/* ==========================================================
   Project: LAST SET 予約フォーム
   ========================================================== */
.p-reserve { overflow: hidden; }
/* 背景の大きな透かし文字 */
.p-reserve::before {
  content: "LAST SET";
  position: absolute;
  left: 50%;
  top: 40px;
  font-family: var(--f-display);
  font-size: clamp(96px, 24vw, 360px);
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px #242424;
  transform: translateX(-50%);
  pointer-events: none;
}
.p-reserve .l-container { position: relative; }
.p-reserve__steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-mute);
}
.p-reserve__steps li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-reserve__steps li + li::before {
  content: "";
  width: 28px;
  height: 1px;
  margin-right: 4px;
  background: var(--c-line-2);
}
.p-reserve__steps span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--c-line-2);
  border-radius: 50%;
  font-family: var(--f-label);
  font-size: 14px;
}
.p-reserve__steps li[aria-current="step"] { color: var(--c-paper); }
.p-reserve__steps li[aria-current="step"] span { border-color: var(--c-fire); background: var(--c-fire); color: var(--c-ink); }
.p-reserve__layout { display: grid; gap: 32px; }
@media (min-width: 1024px) {
  .p-reserve__layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; }
  .p-reserve__layout > .p-confirm,
  .p-reserve__layout > .p-done { grid-column: 1 / -1; max-width: 760px; width: 100%; margin-inline: auto; }
}

.p-form {
  display: grid;
  gap: 40px;
  padding: 28px 20px 32px;
  background: var(--c-ink-2);
  border: 1px solid var(--c-line);
}
@media (min-width: 768px) { .p-form { padding: 44px 44px 48px; } }
.p-form__group { margin: 0; padding: 0; border: 0; min-width: 0; }
.p-form__legend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0;
  font-size: 18px;
  font-weight: 900;
}
.p-form__step {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 400;
}
.p-form__legend .c-req { margin-left: 0; }
.p-form__note { margin-bottom: 12px; font-size: 12px; color: var(--c-mute); }
.p-form__noscript { font-size: 14px; color: var(--c-mute); }
.p-form__fields { display: grid; gap: 22px; }
@media (min-width: 768px) {
  .p-form__fields { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .p-form__fields .c-field--wide { grid-column: 1 / -1; }
}
.p-form__errors {
  padding: 18px 20px;
  border: 1px solid var(--c-error);
  background: rgba(255, 139, 139, .07);
}
.p-form__errors-title { font-weight: 900; color: var(--c-error); }
.p-form__errors ul { margin-top: 8px; font-size: 14px; display: grid; gap: 4px; }
.p-form__errors a { color: var(--c-paper); text-underline-offset: 4px; }
.p-form__agree { display: grid; gap: 6px; justify-items: center; }
.p-form__submit { margin-top: -8px; }

/* 店舗 */
.p-store-options { display: grid; gap: 10px; }
@media (min-width: 480px) { .p-store-options { grid-template-columns: 1fr 1fr; } }
.p-store-option {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 16px 18px 16px 52px;
  border: 1px solid var(--c-line-2);
  background: var(--c-ink);
  cursor: pointer;
  transition: border-color .2s, background-color .2s;
}
.p-store-option input {
  position: absolute;
  left: 18px;
  top: 19px;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--c-fire);
}
.p-store-option:hover { border-color: #5c5c5c; }
.p-store-option:has(input:checked) { border-color: var(--c-fire); background: rgba(255, 90, 31, .08); }
.p-store-option__name { font-size: 17px; font-weight: 900; line-height: 1.5; }
.p-store-option__meta { font-size: 12px; color: var(--c-mute); line-height: 1.5; }

/* カレンダー（radio を並べたもの。キーボードは矢印キーで移動） */
.p-cal__month {
  margin-bottom: 8px;
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-mute);
}
.p-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.p-cal__day {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 2px;
  min-height: 72px;
  padding: 8px 2px 6px;
  border: 1px solid var(--c-line-2);
  background: var(--c-ink);
  cursor: pointer;
  line-height: 1.2;
  transition: border-color .2s, background-color .2s, color .2s;
}
.p-cal__day input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.p-cal__md { font-family: var(--f-display); font-size: 18px; letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.p-cal__dow { font-size: 11px; color: var(--c-mute); }
.p-cal__day.is-sat .p-cal__dow { color: #8fb5ff; }
.p-cal__day.is-sun .p-cal__dow { color: #ff9b9b; }
.p-cal__mark { display: grid; place-items: center; height: 14px; }
.p-cal__day:hover { border-color: #666; }
.p-cal__day:has(input:focus-visible) { outline: 3px solid var(--c-fire); outline-offset: 2px; }
.p-cal__day:has(input:checked) { border-color: var(--c-fire); background: var(--c-fire); color: var(--c-ink); }
.p-cal__day:has(input:checked) .p-cal__dow,
.p-cal__day:has(input:checked) .p-cal__mark { color: var(--c-ink); }
.p-cal__day:has(input:disabled) {
  cursor: not-allowed;
  border-style: dashed;
  border-color: var(--c-line);
  background: transparent;
  color: #5b5853;
}
.p-cal__day:has(input:disabled) .p-cal__dow { color: #5b5853; }
.p-cal__day.is-today .p-cal__dow { color: var(--c-paper); font-weight: 700; }
@media (min-width: 768px) {
  .p-cal__grid { gap: 6px; }
  .p-cal__day { min-height: 84px; padding-top: 12px; }
  .p-cal__md { font-size: 22px; }
}

/* 空き状況の記号。◎△× は書体によって形や色が変わるので CSS で描く */
.c-mark {
  position: relative;
  display: inline-block;
  flex: none;
  width: 12px;
  height: 12px;
  font-style: normal;
  vertical-align: -1px;
}
.c-mark--ok { border: 2px solid currentColor; border-radius: 50%; }
.c-mark--ok::after { content: ""; position: absolute; inset: 2px; border-radius: 50%; background: currentColor; }
.c-mark--few { color: var(--c-fire); background: currentColor; clip-path: polygon(50% 4%, 100% 96%, 0 96%); }
.c-mark--full::before,
.c-mark--full::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: 5px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}
.c-mark--full::after { transform: rotate(-45deg); }
.c-mark--closed { width: auto; height: auto; font-size: 11px; font-weight: 700; line-height: 1; vertical-align: 0; }
.p-legend { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.p-legend span { display: inline-flex; align-items: center; gap: 6px; }

/* 時間帯 */
.p-slots__empty { font-size: 14px; color: var(--c-mute); padding: 16px; border: 1px dashed var(--c-line-2); }
.p-slots__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
@media (min-width: 600px) { .p-slots__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .p-slots__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.p-slot {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 2px;
  min-height: 58px;
  padding: 8px 4px;
  border: 1px solid var(--c-line-2);
  background: var(--c-ink);
  cursor: pointer;
  line-height: 1.2;
  transition: border-color .2s, background-color .2s, color .2s;
}
.p-slot input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.p-slot__time { font-family: var(--f-display); font-size: 19px; letter-spacing: .03em; font-variant-numeric: tabular-nums; }
.p-slot__state { font-size: 11px; color: var(--c-mute); }
.p-slot.is-few .p-slot__state { color: var(--c-fire); font-weight: 700; }
.p-slot:hover { border-color: #666; }
.p-slot:has(input:focus-visible) { outline: 3px solid var(--c-fire); outline-offset: 2px; }
.p-slot:has(input:checked) { border-color: var(--c-fire); background: var(--c-fire); color: var(--c-ink); }
.p-slot:has(input:checked) .p-slot__state { color: var(--c-ink); }
.p-slot:has(input:disabled) {
  cursor: not-allowed;
  border-style: dashed;
  border-color: var(--c-line);
  background: transparent;
  color: #5b5853;
}
.p-slot:has(input:disabled) .p-slot__state { color: #5b5853; }

/* 選択中の内容（PC は右に追従） */
.p-summary { display: none; }
@media (min-width: 1024px) {
  .p-summary {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    display: grid;
    gap: 20px;
    padding: 28px 26px;
    border: 1px solid var(--c-line);
    border-top: 3px solid var(--c-fire);
    background: var(--c-ink-2);
  }
  .p-reserve__layout[data-state="confirm"] .p-summary,
  .p-reserve__layout[data-state="done"] .p-summary { display: none; }
}
.p-summary__title { font-family: var(--f-label); font-size: 13px; font-weight: 700; letter-spacing: .16em; color: var(--c-mute); }
.p-summary__list { display: grid; }
.p-summary__list div {
  display: grid;
  grid-template-columns: 3.4em 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 15px;
  line-height: 1.5;
}
.p-summary__list dt { color: var(--c-mute); font-size: 13px; }
.p-summary__list dd { font-weight: 900; }
.p-summary__list dd.is-empty { color: var(--c-mute); font-weight: 400; }
.p-summary__offer { display: grid; gap: 2px; font-size: 13px; color: var(--c-mute); line-height: 1.6; }
.p-summary__offer b { font-size: 18px; color: var(--c-fire); }
.p-summary__tel { display: grid; gap: 2px; padding-top: 18px; border-top: 1px solid var(--c-line); font-size: 12px; color: var(--c-mute); line-height: 1.6; }
.p-summary__tel a { font-family: var(--f-display); font-size: 26px; letter-spacing: .04em; color: var(--c-paper); text-decoration: none; }

/* 確認・完了 */
.p-confirm,
.p-done {
  padding: 32px 22px 36px;
  background: var(--c-ink-2);
  border: 1px solid var(--c-line);
  outline: none;
}
@media (min-width: 768px) {
  .p-confirm,
  .p-done { padding: 48px 56px 52px; }
}
.p-confirm__title,
.p-done__title { font-size: clamp(22px, 5vw, 30px); font-weight: 900; }
.p-confirm__list { margin-top: 24px; border-top: 1px solid var(--c-line); }
.p-confirm__list div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
  line-height: 1.7;
}
.p-confirm__list dt { font-size: 13px; color: var(--c-mute); }
.p-confirm__list dd { font-weight: 700; overflow-wrap: anywhere; white-space: pre-wrap; }
@media (min-width: 768px) {
  .p-confirm__list div { grid-template-columns: 9em 1fr; gap: 16px; }
}
.p-confirm__text { margin-top: 24px; font-size: 14px; color: var(--c-mute); }
.p-confirm__actions,
.p-done__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 600px) {
  .p-confirm__actions { grid-template-columns: 1fr 2fr; }
  .p-done__actions { grid-template-columns: 1fr 1fr; }
}
.p-done { text-align: center; }
.p-done__en {
  font-family: var(--f-display);
  font-size: clamp(56px, 16vw, 120px);
  line-height: 1;
  color: var(--c-fire);
  letter-spacing: .02em;
}
.p-done__title { margin-top: 12px; }
.p-done__text { margin-top: 16px; line-height: 2; word-break: auto-phrase; }
.p-done__text b { display: inline-block; color: var(--c-fire); }
.p-done__demo {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 14px;
  border: 1px dashed var(--c-line-2);
  font-size: 13px;
  color: var(--c-mute);
}
.p-done__notes {
  display: grid;
  gap: 6px;
  max-width: 28em;
  margin: 24px auto 0;
  font-size: 14px;
  text-align: left;
  color: var(--c-mute);
}
.p-done__notes li { display: flex; gap: 8px; }
.p-done__notes li::before { content: "・"; color: var(--c-fire); }

/* ---------- スマホの追従ボタン ---------- */
.p-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(11, 11, 11, 0), rgba(11, 11, 11, .92) 30%);
  transform: translateY(110%);
  transition: transform .45s var(--ease-out);
}
.p-sticky-cta.is-visible { transform: none; }
.p-sticky-cta .c-btn { min-height: 56px; gap: 12px; font-size: 16px; box-shadow: 0 8px 28px rgba(0, 0, 0, .5); }
.p-sticky-cta__sub {
  padding: 3px 8px;
  background: var(--c-ink);
  color: var(--c-fire);
  font-size: 12px;
  line-height: 1.3;
}
@media (min-width: 1024px) { .p-sticky-cta { display: none; } }

/* ==========================================================
   Utility
   ========================================================== */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.u-fire { color: var(--c-fire); }
.u-phrase { word-break: keep-all; overflow-wrap: anywhere; }
.u-br-pc { display: none; }
@media (min-width: 768px) {
  .u-br-pc { display: inline; }
  .u-br-sp { display: none; }
}

/* ==========================================================
   Motion（JS が html.js を付けたときだけ初期状態を隠す）
   ========================================================== */
.js .js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js .js-reveal.is-in { opacity: 1; transform: none; }
/* 見出しの橙の線は左から伸びる */
.js .c-sechead.js-reveal .c-sechead__no::before { transform: scaleX(0); transition: transform .8s var(--ease-out) .25s; }
.js .c-sechead.js-reveal.is-in .c-sechead__no::before { transform: scaleX(1); }
/* 写真は下から幕が上がるように */
.js .c-photo.js-reveal { opacity: 1; transform: none; clip-path: inset(100% 0 0 0); transition: clip-path 1.2s var(--ease-io); }
.js .p-reason__photo.c-photo.js-reveal { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
.js .p-reason__photo.c-photo.js-reveal.is-in { clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%); }
.js .c-photo.js-reveal img { transform: scale(1.12); transition: transform 1.8s var(--ease-out); }
.js .c-photo.js-reveal.is-in img { transform: none; }

/* FV の登場: 写真が寄りから引き、見出しが 1 行ずつ下から突き上がる */
.js .p-hero__bg img { transform: scale(1.1); transition: transform 2.4s var(--ease-out); }
.js .p-hero__line > span { transform: translateY(105%) skewY(6deg); transition: transform 1s var(--ease-out); }
.js .p-hero__line:nth-child(2) > span { transition-delay: .1s; }
.js .p-hero__line:nth-child(3) > span { transition-delay: .2s; }
.js .p-hero__eyebrow,
.js .p-hero__lead,
.js .p-hero__actions,
.js .p-hero__badges { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .p-hero__lead { transition-delay: .45s; }
.js .p-hero__actions { transition-delay: .55s; }
.js .p-hero__badges { transition-delay: .65s; }
.js .p-hero.is-in .p-hero__bg img,
.js .p-hero.is-in .p-hero__line > span,
.js .p-hero.is-in .p-hero__eyebrow,
.js .p-hero.is-in .p-hero__lead,
.js .p-hero.is-in .p-hero__actions,
.js .p-hero.is-in .p-hero__badges { opacity: 1; transform: none; }
/* 帯は左から右へ引かれる（回転はそのまま、切り抜きの範囲を広げる。影のぶん上下は広めに） */
.js .p-marquee__band { clip-path: inset(-60px 100% -60px -2px); transition: clip-path 1.1s var(--ease-io) .5s; }
.js .p-marquee.is-in .p-marquee__band { clip-path: inset(-60px -2px -60px -2px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .js .js-reveal,
  .js .p-hero__line > span,
  .js .p-hero__eyebrow,
  .js .p-hero__lead,
  .js .p-hero__actions,
  .js .p-hero__badges,
  .js .p-hero__bg img,
  .js .c-photo.js-reveal img { opacity: 1; transform: none; }
  .js .c-photo.js-reveal { clip-path: none; }
  .js .p-reason__photo.c-photo.js-reveal { clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%); }
  .js .p-marquee__band { clip-path: none; }
  .js .p-case .p-case__bar span { transform: none; }
  .js .c-sechead.js-reveal .c-sechead__no::before { transform: none; }
}
