/* =============================================================
   NAORU整体院 — main.css
   設計原則: CSS変数 / BEM / Mobile First / prefers-reduced-motion
   ============================================================= */

/* -------------------------------------------------------------
   1. CSS カスタムプロパティ（デザイントークン）
   ------------------------------------------------------------- */
:root {
  /* ============ Color: minimal palette (White / Black / Gray + NAORU accent) ============ */
  --color-primary:    #d9301f;          /* NAORU vermilion (token) — accent only */
  --color-primary-dk: #b9281c;          /* hover/pressed (token) */
  --color-accent:     #d9ad65;          /* gold (token) — 賞・特典の装飾 */
  --color-bg:         #FFFFFF;
  --color-bg-sub:     #FAFAF9;          /* near-neutral off-white */
  --color-bg-deep:    #0A0A0A;          /* dramatic dark sections */
  --color-text:       #2f2a26;          /* warm dark brown (token) */
  --color-text-sub:   #525252;
  --color-text-soft:  #A3A3A3;
  --color-text-invert:#FFFFFF;
  --color-border:     #E5E5E5;
  --color-border-soft:#F0F0F0;
  --color-overlay:    rgba(10, 10, 10, 0.52);
  --color-white:      #FFFFFF;
  --color-glass:      rgba(255, 255, 255, 0.72);
  --color-glass-dark: rgba(10, 10, 10, 0.60);

  /* ============ Typography ============ */
  --font-jp:      'Zen Kaku Gothic New', 'Noto Sans JP', system-ui, sans-serif;
  --font-en:      'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;

  /* Font sizes (fluid) — refined for stronger hierarchy */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.4rem + 2.4vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1.6rem + 3.6vw, 5rem);
  --text-4xl:  clamp(3rem, 1.8rem + 5vw, 6rem);
  --text-hero: clamp(3.25rem, 1.5rem + 7vw, 8rem);

  /* Line height */
  --leading-tight: 1.1;
  --leading-snug:  1.3;
  --leading-base:  1.6;
  --leading-loose: 1.85;   /* JP body */

  /* Letter spacing */
  --tracking-tight: -0.03em;
  --tracking-snug:  -0.015em;
  --tracking-base:  0;
  --tracking-wide:  0.12em;

  /* Weight */
  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-bold:    700;

  /* ============ Spacing — Apple-like generous scale ============ */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.5rem;
  --space-6:   2rem;
  --space-7:   3rem;
  --space-8:   4rem;
  --space-9:   6rem;
  --space-10:  8rem;

  /* Legacy alias (existing CSS uses these) */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  clamp(3rem, 2rem + 4vw, 5rem);
  --space-2xl: clamp(5rem, 4rem + 6vw, 10rem);
  --space-3xl: clamp(7rem, 5rem + 8vw, 14rem);

  /* Fluid section padding — the "高級感" lever */
  --section-y:    clamp(5rem, 4rem + 6vw, 10rem);
  --section-y-lg: clamp(7rem, 5rem + 8vw, 14rem);
  --gap-card:     clamp(1.5rem, 1rem + 1.5vw, 2.5rem);

  /* ============ Layout ============ */
  --container-max:    1240px;
  --container:        1240px;
  --container-narrow: 880px;        /* article width for AEO long-form */
  --container-px:     clamp(1.25rem, 5vw, 3rem);

  /* ============ Border radius (modern, larger) ============ */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-2xl:  40px;
  --radius-full: 9999px;

  /* ============ Shadow — deeper, layered for depth ============ */
  --shadow-xs:   0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-sm:   0 2px 8px rgba(10, 10, 10, 0.04), 0 1px 2px rgba(10, 10, 10, 0.03);
  --shadow-md:   0 8px 28px rgba(10, 10, 10, 0.06), 0 2px 8px rgba(10, 10, 10, 0.04);
  --shadow-lg:   0 24px 64px rgba(10, 10, 10, 0.08), 0 8px 16px rgba(10, 10, 10, 0.04);
  --shadow-xl:   0 40px 96px rgba(10, 10, 10, 0.10), 0 16px 32px rgba(10, 10, 10, 0.06);
  --shadow-glow: 0 0 0 1px rgba(217, 48, 31, 0.10);

  /* ============ Motion ============ */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 180ms;
  --duration-base: 320ms;
  --duration-slow: 680ms;

  /* ============ Layout vars ============ */
  --header-h: 72px;
}


/* -------------------------------------------------------------
   2. リセット & ベース
   ------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-jp);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

/* フォーカスリング（アクセシビリティ） */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* -------------------------------------------------------------
   3. ユーティリティ
   ------------------------------------------------------------- */

/* コンテナ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* セクション共通 */
.section {
  padding-block: var(--space-2xl);
}

@media (max-width: 767px) {
  .section {
    padding-block: var(--space-xl);
  }
}

.section--bg-sub {
  background-color: var(--color-bg-sub);
}

/* セクションヘッダー */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-en);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.txt-accent {
  color: var(--color-accent, #c0392b);
  font-style: normal;
}

@media (max-width: 767px) {
  .section-title {
    font-size: var(--text-2xl);
  }
}

.section-desc {
  font-size: var(--text-md);
  color: var(--color-text-sub);
  max-width: 52ch;
  margin-inline: auto;
}

.section-more {
  text-align: center;
  margin-top: var(--space-xl);
}

/* テキストアクセント */
.text-accent {
  color: var(--color-accent);
}


/* -------------------------------------------------------------
   4. ボタン
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75em 1.75em;
  border-radius: var(--radius-full);
  font-family: var(--font-jp);
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* プライマリ（スライド塗りつぶし） */
.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(217, 48, 31, 0.25);
  isolation: isolate; /* スタッキングコンテキストを作って ::after を文字より背面に固定 */
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-primary-dk);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-base) var(--ease-out);
  z-index: -1; /* テキストノード/SVG/span より背面に */
}

.btn--primary:hover::after,
.btn--primary:focus-visible::after {
  transform: scaleX(1);
}

/* ゴースト */
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

/* アウトライン */
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
}

/* 会員ログイン */
.btn--member {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.5em 1.25em;
}

.btn--member:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* 大サイズ */
.btn--lg {
  font-size: var(--text-md);
  padding: 0.9em 2.25em;
}

/* ホバー時の微浮き上がり */
.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}


/* -------------------------------------------------------------
   5. ヘッダー
   ------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition:
    background-color var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out);
}

/* スクロール80px以降でスタイル変化（JS で .is-scrolled を付与） */
/* r114: 全ページで TOP と同じ translucent + blur ヘッダーに統一 */
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 0 rgba(10, 10, 10, 0.05), 0 2px 14px rgba(10, 10, 10, 0.025);
}

/* 透過時はロゴを白抜きに */
.header:not(.is-scrolled) .header__logo img {
  filter: brightness(0) invert(1);
}

/* 透過時はログインボタンを白系に */
.header:not(.is-scrolled) .btn--member {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.5);
}
.header:not(.is-scrolled) .btn--member:hover {
  color: #fff;
  border-color: #fff;
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__logo {
  flex-shrink: 0;
  margin-right: auto;
}

.header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* ナビリンク：下線スライドインアニメーション */
.header__nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
  position: relative;
  transition: color var(--duration-base) var(--ease-out);
}

.header.is-scrolled .header__nav-link {
  color: var(--color-text);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-base) var(--ease-out);
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
  color: var(--color-white);
}
.header.is-scrolled .header__nav-link:hover,
.header.is-scrolled .header__nav-link:focus-visible {
  color: var(--color-primary);
}
.header__nav-link:hover::after,
.header__nav-link:focus-visible::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__cta {
  display: none;
  font-size: var(--text-sm);
  font-weight: 700; /* r54: 全ページで shops-cta と統一 */
  padding: 0.6em 1.4em;
}

@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
  }
}

/* ハンバーガーボタン */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

@media (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base);
}

.header.is-scrolled .header__hamburger span {
  background: var(--color-text);
}

/* ハンバーガー → ✕ */
.header__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* -------------------------------------------------------------
   6. SPメニュー（モバイル）
   ------------------------------------------------------------- */
.sp-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--color-white);
  padding: var(--space-lg) var(--container-px);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  z-index: 99;
}

.sp-menu.is-open {
  transform: translateX(0);
}

.sp-menu__list li {
  border-bottom: 1px solid var(--color-border);
}

.sp-menu__list a {
  display: block;
  padding: var(--space-md) 0;
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-text);
}

.sp-menu__cta {
  display: block;
  text-align: center;
  margin-top: var(--space-lg);
  width: 100%;
  justify-content: center;
}


/* -------------------------------------------------------------
   7. FV / ヒーロー
   ------------------------------------------------------------- */
.fv {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  background: #111;
}

.fv__bg {
  position: absolute;
  inset: 0;
}

.fv__bg picture,
.fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fv__slider {
  position: absolute;
  inset: 0;
}

.fv__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.fv__slide.is-active {
  opacity: 1;
}

.fv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 5, 5, 0.72) 0%,
    rgba(10, 5, 5, 0.40) 60%,
    transparent 100%
  );
}

.fv__content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: clamp(2rem, 4vh, 4rem);
  padding-bottom: clamp(4rem, 10vh, 7rem);
  width: 100%;
}

/* ページロード前は非表示（JS でアニメーション）*/
.js-load-anim {
  opacity: 0;
  transform: translateY(24px);
}

.js-load-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.fv__eyebrow {
  font-family: var(--font-en);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-sm);
}

.fv__title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin-bottom: var(--space-md);
}

.fv__title-en {
  font-family: var(--font-en);
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 0.9;
}

.fv__title-jp-sub {
  font-family: var(--font-jp);
  font-size: clamp(1.15rem, 2.6vw, 1.75rem);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  margin-top: var(--space-xs);
  padding-left: 0.5em;
}

.fv__slide-indicators {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-xl);
  display: flex;
  gap: var(--space-md);
  z-index: 2;
}

.fv__slide-dot {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.3s;
}

.fv__slide-dot.is-active {
  color: #fff;
}

.fv__title-jp {
  font-family: var(--font-jp);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
  line-height: 1.15;
}

.fv__lead {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.fv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* スクロールインジケーター */
.fv__scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.fv__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}

.fv__scroll-text {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}


/* -------------------------------------------------------------
   8. スクロールフェードイン（Intersection Observer）
   ------------------------------------------------------------- */
.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
  /* Failsafe: if IntersectionObserver fails to fire (fast scroll / JS error),
     element becomes visible automatically after 1.8s. JS-driven path overrides via .is-visible. */
  animation: js-fade-failsafe 0.8s ease-out 1.8s forwards;
}

@keyframes js-fade-failsafe {
  to { opacity: 1; transform: translateY(0); }
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

/* stagger: data-delay 属性で遅延（JS で付与、またはCSSで補完） */
.js-fade-in[data-delay="1"] { transition-delay: 100ms; }
.js-fade-in[data-delay="2"] { transition-delay: 200ms; }
.js-fade-in[data-delay="3"] { transition-delay: 300ms; }
.js-fade-in[data-delay="4"] { transition-delay: 400ms; }


/* -------------------------------------------------------------
   9. FEATURES セクション
   ------------------------------------------------------------- */
.features__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .features__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.features__stat {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-sub);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.features__stat-num {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.features__stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
}

/* フィーチャーカード ── 没入型アコーディオン */

/* モバイル：縦積み */
.features__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* タブレット以上：横並び */
@media (min-width: 768px) {
  .features__cards {
    flex-direction: row;
    height: 460px;
    align-items: stretch;
    gap: 10px;
    transition: height 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* ホバー時：コンテナも縦に広がる */
  .features__cards:has(.feature-card:hover) {
    height: 560px;
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-surface, #f8f5f0);
  border: 1px solid var(--color-border);
  cursor: pointer;
}

/* デスクトップ：ホバーで大きく広がる */
@media (min-width: 768px) {
  .feature-card {
    flex: 1;
    min-width: 0;
    transition:
      flex 1.4s cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 0.8s ease,
      border-color 0.8s ease,
      filter 0.8s ease,
      border-radius 0.8s ease;
  }

  /* 非ホバー：縮小＋暗く＋ぼかし */
  .features__cards:has(.feature-card:hover) .feature-card {
    flex: 0.3;
    filter: brightness(0.7) saturate(0.6);
    border-radius: 12px;
  }

  /* ホバー：大きく展開、シネマ感 */
  .feature-card:hover {
    flex: 5 !important;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    border-color: transparent;
    filter: none !important;
    border-radius: 20px !important;
  }
}

/* ── メディア層 ── */
.feature-card__media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

@media (min-width: 768px) {
  .feature-card:hover .feature-card__media {
    opacity: 1;
  }
}

/* Ken Burns：ゆっくりズームイン */
.feature-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.12);
  transition: transform 10s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  .feature-card:hover .feature-card__video {
    transform: scale(1);
  }
}

/* オーバーレイ */
.feature-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.0) 100%
  );
}

/* ラベル */
.feature-card__media-label {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

@media (min-width: 768px) {
  .feature-card:hover .feature-card__media-label {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── ボディ層：テキスト ── */
.feature-card__body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: padding 0.5s ease;
}

.feature-card__icon {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  transition: opacity 1.2s ease, transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card__text {
  margin-top: 0;
  padding: var(--space-lg);
}


.feature-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  transition: color 0.4s ease, font-size 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  line-height: 1.75;
  transition: color 0.4s ease, opacity 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ホバー時：没入演出 */
@media (min-width: 768px) {
  .feature-card:hover .feature-card__body {
    justify-content: flex-end;
    padding: var(--space-xl);
  }

  .feature-card:hover .feature-card__text {
    padding: 0;
  }

  .feature-card:hover .feature-card__icon {
    opacity: 0;
    transform: scale(0) translateY(-8px);
  }

  .feature-card:hover .feature-card__title {
    color: #fff;
    font-size: 1.6rem;
  }

  .feature-card:hover .feature-card__desc {
    color: rgba(255, 255, 255, 0.82);
  }
}

/* ── 非ホバーカードの縮小時 ── */
@media (min-width: 768px) {
  .features__cards:has(.feature-card:hover) .feature-card:not(:hover) .feature-card__desc {
    display: none;
  }

  .features__cards:has(.feature-card:hover) .feature-card:not(:hover) .feature-card__title {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 1;
    color: var(--color-text);
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.15em;
  }

  .features__cards:has(.feature-card:hover) .feature-card:not(:hover) .feature-card__body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .features__cards:has(.feature-card:hover) .feature-card:not(:hover) .feature-card__text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .features__cards:has(.feature-card:hover) .feature-card:not(:hover) .feature-card__icon {
    display: none;
  }
}


/* -------------------------------------------------------------
   10. SYMPTOMS セクション
   ------------------------------------------------------------- */
.symptoms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .symptoms__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .symptoms__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* 症状カード */
.symptom-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.symptom-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.symptom-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.symptom-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.symptom-card:hover .symptom-card__img-wrap img {
  transform: scale(1.04);
}

.symptom-card__body {
  padding: var(--space-md);
  flex: 1;
}

.symptom-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 4px;
}

.symptom-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  line-height: 1.9;
  white-space: pre-line;
}


/* -------------------------------------------------------------
   11. BEFORE / AFTER フリップカード
   ------------------------------------------------------------- */
.ba-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ba-card {
  perspective: 1000px;
  height: 360px;
  cursor: pointer;
}
.ba-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.ba-card:hover .ba-card__inner,
.ba-card:focus .ba-card__inner {
  transform: rotateY(180deg);
}
.ba-card__face {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 32px 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba-card__face--before {
  background: #1a1a1a;
  color: #fff;
}
.ba-card__face--after {
  background: var(--color-primary);
  color: #fff;
  transform: rotateY(180deg);
}
.ba-card__badge {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.6;
}
.ba-card__symptom {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
.ba-card__result {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
.ba-card__situation {
  font-size: 0.875rem;
  line-height: 1.75;
  opacity: 0.85;
  flex: 1;
}
.ba-card__data {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 12px;
}
.ba-card__data dt { opacity: 0.6; }
.ba-card__data dd { font-weight: 700; }
@media (max-width: 768px) {
  .ba-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ba-card { height: 320px; }
}


/* -------------------------------------------------------------
   12. FLOW タイムライン
   ------------------------------------------------------------- */
.flow__timeline {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
  padding-left: 0;
}

/* 縦線 */
.flow__timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

@media (min-width: 768px) {
  .flow__timeline::before {
    left: 32px;
  }
}

.flow__step {
  position: relative;
  display: flex;
  gap: var(--space-lg);
  padding: 0 0 var(--space-xl) 72px;
  opacity: 0.35;
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
  transform: translateX(-8px);
}

@media (min-width: 768px) {
  .flow__step {
    padding-left: 88px;
  }
}

/* アクティブステップ（JS で付与） */
.flow__step.is-active {
  opacity: 1;
  transform: translateX(0);
}

.flow__step-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
  z-index: 1;
}

@media (min-width: 768px) {
  .flow__step-marker {
    width: 64px;
    height: 64px;
  }
}

.flow__step.is-active .flow__step-marker {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.flow__step-num {
  font-family: var(--font-en);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-sub);
  transition: color var(--duration-base);
}

.flow__step.is-active .flow__step-num {
  color: var(--color-white);
}

.flow__step-content {
  padding-top: 10px;
}

.flow__step-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.flow__step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  line-height: 1.8;
}


/* -------------------------------------------------------------
   13. REVIEWS
   ------------------------------------------------------------- */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--color-bg-sub);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  color: var(--color-accent);
  font-size: var(--text-md);
  letter-spacing: 2px;
}

.review-card__body {
  flex: 1;
}

.review-card__body p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.9;
}

.review-card__footer {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.review-card__author {
  font-size: var(--text-xs);
  color: var(--color-text-sub);
  font-style: normal;
}


/* -------------------------------------------------------------
   14. SHOPS
   ------------------------------------------------------------- */
.shops__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  min-height: 200px;
}

@media (min-width: 768px) {
  .shops__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .shops__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.shops__loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-sub);
  font-size: var(--text-sm);
  padding: var(--space-xl);
}

/* 店舗カード (.shop-card) のスタイル */
.shop-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.shop-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.shop-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.shop-card:hover .shop-card__img-wrap img {
  transform: scale(1.04);
}

.shop-card__body {
  padding: var(--space-md);
}

.shop-card__name {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 4px;
}

.shop-card__address {
  font-size: var(--text-xs);
  color: var(--color-text-sub);
}


/* -------------------------------------------------------------
   15. CTA バナー
   ------------------------------------------------------------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(217, 48, 31, 0.85);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-3xl);
}

.cta-banner__title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.cta-banner__desc {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}


/* -------------------------------------------------------------
   16. フッター
   ------------------------------------------------------------- */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.70);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 200px 1fr;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  color: rgba(255,255,255,0.50);
  transition: color var(--duration-base);
}

.footer__social a:hover {
  color: var(--color-white);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .footer__nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer__nav-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__nav ul li + li {
  margin-top: 10px;
}

.footer__nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--duration-base);
}

.footer__nav a:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-block: var(--space-md);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  text-align: center;
}


/* -------------------------------------------------------------
   17. アクセシビリティ：prefers-reduced-motion
   すべてのアニメーションを無効化
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js-fade-in,
  .js-load-anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* テキストカラーアニメーション無効時は即座に黒表示 */
  .js-text-fade {
    color: var(--color-text) !important;
  }
  /* ミッションバナーは即座に表示 */
  .who-we-are__mission {
    clip-path: none !important;
  }
  .who-we-are__mission p {
    opacity: 1 !important;
    transform: none !important;
  }

  .flow__step {
    opacity: 1 !important;
    transform: none !important;
  }

  .fv__scroll-line {
    animation: none !important;
  }

  .btn--primary::after {
    transition: none !important;
  }
}


/* -------------------------------------------------------------
   18. レスポンシブ補完（モバイル固有）
   ------------------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --header-h: 60px;
  }

  .fv__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .fv__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .features__stats {
    gap: var(--space-sm);
  }

  .symptoms__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow__step {
    padding-left: 64px;
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

/* =============================================================
   YOUR VISIT アコーディオン（ringfit スタイル）
   ============================================================= */

.visit__accordion {
  list-style: none;
  padding: 0;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
  /* コンテナからはみ出してフルブリード */
  margin-inline: calc(-1 * var(--container-px));
  border-top: 1px solid var(--color-border);
}

.visit__item {
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

/* ── トリガー行 ── */
.visit__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  padding: 32px var(--container-px);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease;
}

@media (min-width: 640px) {
  .visit__trigger {
    grid-template-columns: 72px 400px 1fr;
  }
}

/* 開いている・ホバー時は行全体に背景色 */
.visit__item.is-open .visit__trigger,
.visit__trigger:hover {
  background: var(--color-bg-sub);
}

.visit__trigger-num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-sub);
  transition: color 0.25s ease;
}

.visit__item.is-open .visit__trigger-num {
  color: var(--color-accent);
  font-weight: 700;
}

.visit__trigger-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.25s ease;
  line-height: 1.3;
}

.visit__item.is-open .visit__trigger-title {
  color: var(--color-text);
}

.visit__trigger-en {
  font-family: var(--font-en);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-text-sub);
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
  display: none;
}

@media (min-width: 640px) {
  .visit__trigger-en {
    display: block;
  }
}

.visit__item.is-open .visit__trigger-en {
  color: var(--color-accent);
}

/* ── アコーディオン本体 ── */
.visit__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.visit__item.is-open .visit__body {
  background: var(--color-bg-sub);
  grid-template-rows: 1fr;
}

.visit__body-inner {
  overflow: hidden;
  min-height: 0;
}

/* 左側：テキスト + ボタン */
.visit__body-left {
  flex: 1;
  padding: 40px var(--container-px) 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit__body-desc {
  font-size: var(--text-base);
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 520px;
}

/* 詳しく見る ボタン */
.visit__body-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px 12px 12px;
  border-radius: 4px;
  font-size: var(--text-sm);
  font-weight: 600;
  align-self: flex-start;
  transition: background 0.2s ease, transform 0.2s ease;
}

.visit__body-link:hover {
  background: var(--color-primary-dk);
  transform: translateX(3px);
}

.visit__body-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  font-size: 1rem;
}

/* 右側：画像パネル（アイテム全高・右端まで） */
.visit__body-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.visit__item.is-open .visit__body-right {
  opacity: 1;
}

@media (max-width: 767px) {
  .visit__body-right {
    display: none;
  }
}

.visit__body-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.visit__item.is-open .visit__body-img {
  transform: scale(1);
}

/* visit CTA */
.visit__cta {
  text-align: center;
}

.visit__cta-note {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  margin-bottom: var(--space-sm);
}

/* -------------------------------------------------------------
   CONCERNS セクション
   ------------------------------------------------------------- */
.concerns__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  list-style: none;
  padding: 0;
}

@media (min-width: 640px) {
  .concerns__list {
    grid-template-columns: 1fr 1fr;
  }
}

.concerns__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: var(--space-md) var(--space-lg);
}

.concerns__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

.concerns__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

.concerns__footer {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  max-width: 720px;
  margin: 0 auto;
}

.concerns__resolve {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

/* -------------------------------------------------------------
   PHILOSOPHY セクション
   ------------------------------------------------------------- */
.philosophy {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  padding-block: 0;
}

.philosophy__eyebrow {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.philosophy__eyebrow-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.philosophy__eyebrow-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.philosophy__eyebrow-bracket {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-color: var(--color-accent);
  border-style: solid;
}

.philosophy__eyebrow-bracket--tl {
  border-width: 2px 0 0 2px;
}

.philosophy__eyebrow-bracket--br {
  border-width: 0 2px 2px 0;
}

.philosophy__eyebrow-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-text);
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.philosophy__eyebrow-link:hover {
  opacity: 0.8;
}

.philosophy__eyebrow-arrow {
  font-size: 1rem;
  line-height: 1;
}

.philosophy__mark {
  position: absolute;
  left: 50%;
  top: calc(50% + 30px);
  transform: translateY(-50%);
  height: 90%;
  width: auto;
  color: #1A1A1A;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.philosophy__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-lg) var(--space-2xl);
}

.philosophy__content {
  max-width: 680px;
}

.section-header--left {
  text-align: left;
  align-items: flex-start;
}

.philosophy__prose {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.philosophy__prose-lead {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.75;
  color: rgba(0,0,0,0.2);
  transition: color 0.7s ease;
}

.philosophy__prose-lead.is-text-revealed {
  color: var(--color-text);
}

.philosophy__prose-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.philosophy__prose-group p {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.75;
  color: rgba(0,0,0,0.2);
  transition: color 0.7s ease;
}

.philosophy__prose-group p.is-text-revealed {
  color: var(--color-text);
}

.philosophy__mission-banner {
  background: #c0392b;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-md);
  display: inline-block;
  border-radius: 6px;
}

.philosophy__mission-banner p {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.philosophy__mission-after {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.75;
}

/* -------------------------------------------------------------
   PRICE セクション
   ------------------------------------------------------------- */
.price__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .price__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.price-card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 4px 24px rgba(196, 145, 58, 0.12);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: var(--space-lg);
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
}

.price-card__label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-card__amount {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.price-card__unit {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
}

.price-card__duration {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
}

.price-card__note {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  line-height: 1.6;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
  margin-top: auto;
}

.price__note {
  font-size: var(--text-xs);
  color: var(--color-text-sub);
  text-align: center;
}

/* -------------------------------------------------------------
   3パネル BEFORE / AFTER システム
   ------------------------------------------------------------- */

/* ── タブ ── */
.ba-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid var(--color-border);
}

.ba-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 18px 12px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  color: var(--color-text-sub);
  transition: color 0.2s;
  margin-bottom: -2px;
}

.ba-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.ba-tab.is-active {
  color: var(--color-text);
}

.ba-tab.is-active::after {
  transform: scaleX(1);
}

.ba-tab__en {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  opacity: 0.6;
}

.ba-tab.is-active .ba-tab__en {
  opacity: 1;
}

.ba-tab__jp {
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 600px) {
  .ba-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .ba-tab {
    white-space: nowrap;
    padding: 10px 14px 12px;
  }
}

/* ── パネル共通 ── */
.ba-panel {
  display: none;
}

.ba-panel.is-active {
  display: block;
}

.ba-panel__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .ba-panel__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl, 64px);
    align-items: center;
  }
}

.ba-panel__inner--rom {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* ── SVG ビジュアライザー ── */
.ba-panel__viz {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.ba-panel__viz svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── コントロールボタン ── */
.ba-controls {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.ba-controls--center {
  justify-content: center;
}

.ba-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-sub);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ba-ctrl.is-active,
.ba-ctrl--before.is-active {
  border-color: #E07B54;
  color: #E07B54;
  background: rgba(224,123,84,0.06);
}

.ba-ctrl--after.is-active {
  border-color: #5BAD8F;
  color: #5BAD8F;
  background: rgba(91,173,143,0.06);
}

.ba-ctrl--auto.is-active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(196,145,58,0.06);
}

/* ── 凡例 ── */
.ba-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--space-sm);
}

.ba-legend__item {
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.2s;
}

.ba-legend__item.is-active {
  background: var(--color-bg-sub);
}

.ba-legend__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.ba-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ba-legend__name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  flex: 1;
}

.ba-legend__chevron {
  color: var(--color-text-sub);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.ba-legend__desc {
  font-size: var(--text-sm);
  color: var(--color-text-sub);
  line-height: 1.75;
  padding: 0 var(--space-md) var(--space-md) calc(var(--space-md) + 22px);
  margin: 0;
}

/* ── ROM ゲージグリッド ── */
.ba-rom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 600px) {
  .ba-rom-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }
}

.ba-rom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
}

.ba-rom-item__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.ba-rom-item__photo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 3px 9px;
  border-radius: 20px;
  pointer-events: none;
}

.ba-rom-item__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.ba-rom-item__desc {
  font-size: 0.7rem;
  color: var(--color-text-sub);
}

/* -------------------------------------------------------------
   STICKY BOTTOM-RIGHT BANNER
   ------------------------------------------------------------- */
.sticky-banner {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 980;
  width: 300px;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transform: translateY(calc(100% + 40px));
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.55s ease;
  opacity: 0;
  will-change: transform, opacity;
}

@media (max-width: 480px) {
  .sticky-banner {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 16px;
  }
}

.sticky-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-banner.is-closing {
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  transition: transform 0.35s ease-in, opacity 0.35s ease-in;
}

.sticky-banner__inner {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

/* 上部：画像 */
.sticky-banner__img-wrap {
  width: 100%;
  height: 140px;
  overflow: hidden;
  flex-shrink: 0;
}

.sticky-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}

.sticky-banner__inner:hover .sticky-banner__img {
  transform: scale(1.04);
}

/* 下部：テキスト + ボタン */
.sticky-banner__body {
  padding: 14px 16px 4px;
}

.sticky-banner__label {
  font-size: 10px;
  font-family: var(--font-en);
  letter-spacing: 0.14em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.sticky-banner__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.sticky-banner__cta {
  padding: 10px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sticky-banner__price {
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  white-space: nowrap;
}

.sticky-banner__price small {
  font-size: 10px;
  font-family: var(--font-jp);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-left: 2px;
}

.sticky-banner__btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
}

.sticky-banner__inner:hover .sticky-banner__btn {
  background: var(--color-primary-dk);
}

/* 閉じるボタン */
.sticky-banner__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  border: none;
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}

.sticky-banner__close:hover {
  background: rgba(0,0,0,0.75);
  color: #fff;
}

/* ─────────────────────────────────────────────
   FV テキストフェードインアニメーション
───────────────────────────────────────────── */
/* FV マスクリビール — Keep / Health */
.fv__title-line {
  display: block;
  overflow: hidden;
  line-height: 0.95;
}
.fv__title-en.js-fv-anim {
  display: block;
  opacity: 1;
  transform: translateY(110%) skewY(5deg);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fv__title-en.js-fv-anim.is-visible {
  transform: translateY(0) skewY(0deg);
}
/* いつまでも健康に — フェードスライドイン */
.fv__title-jp-sub.js-fv-anim {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.fv__title-jp-sub.js-fv-anim.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─────────────────────────────────────────────
   PHILOSOPHY サイドテキスト（縦書き）
───────────────────────────────────────────── */
.philosophy__side-text {
  position: absolute;
  left: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  z-index: 1;
  pointer-events: none;
}
.philosophy__side-label {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  padding: 0.4em 0.3em;
}
.philosophy__side-copy {
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.3);
  line-height: 1;
}
@media (max-width: 768px) {
  .philosophy__side-text { display: none; }
}

/* ─────────────────────────────────────────────
   PHILOSOPHY プロズ スクロールテキスト変色
───────────────────────────────────────────── */
.philosophy__prose-lead {
  color: rgba(0,0,0,0.12);
  transform: translateY(18px);
  transition: color 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.philosophy__prose-lead.is-text-revealed {
  color: var(--color-text);
  transform: translateY(0);
}
.philosophy__prose-group p {
  color: rgba(0,0,0,0.12);
  transition: color 0.9s ease;
}
.philosophy__prose-group p.is-text-revealed {
  color: var(--color-text);
}

/* ─────────────────────────────────────────────
   FEATURES PILLARS（ベントグリッド写真カード）
───────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-block: var(--space-2xl, 64px);
}

/* tall left card: spans 2 rows */
.pillar-card--tall {
  grid-row: span 2;
}

/* wide bottom card: spans 2 columns */
.pillar-card--wide {
  grid-column: span 2;
}

.pillar-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  aspect-ratio: 4 / 3;
  background: #111;
  /* scroll reveal initial state handled by js-rc-zoom */
}

.pillar-card--tall {
  aspect-ratio: unset; /* height set by spanning rows */
}

.pillar-card--wide {
  aspect-ratio: 21 / 7;
}

/* ── 写真 ── */
.pillar-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.pillar-card:hover .pillar-card__photo {
  transform: scale(1.06);
}

/* ── グラデーションオーバーレイ ── */
.pillar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,6,4,0.92) 0%,
    rgba(8,6,4,0.55) 40%,
    rgba(8,6,4,0.12) 100%
  );
  transition: opacity 0.4s ease;
}

.pillar-card:hover .pillar-card__overlay {
  opacity: 0.85;
}

/* ── コンテンツ ── */
.pillar-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3.5vw, 40px);
  color: #fff;
}

.pillar-card__en {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 6px;
  /* color set inline per card */
}

.pillar-card__stat {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.pillar-card__title {
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.pillar-card__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
}

.pillar-card:hover .pillar-card__desc {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
}

/* ── レスポンシブ ── */
@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pillar-card--tall,
  .pillar-card--wide {
    grid-row: unset;
    grid-column: unset;
    aspect-ratio: 4 / 3;
  }
}

/* ─────────────────────────────────────────────
   MARQUEE STRIP（自動スクロール写真帯）
───────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  width: 100%;
  height: 320px;
  background: #111;
}
.marquee-track {
  display: flex;
  width: fit-content;
  height: 100%;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-inner {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.marquee-img {
  height: 320px;
  width: 480px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ─────────────────────────────────────────────
   TOPICS / COLUMN
───────────────────────────────────────────── */
.topics__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.topics__header-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.topics__header-icon svg {
  width: 20px;
  height: auto;
}
.topics__header-title {
  font-family: var(--font-en);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0;
}
.topics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.topic-card {
  display: flex;
  flex-direction: column;
}
.topic-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.topic-card__link:hover .topic-card__img {
  transform: scale(1.04);
}
.topic-card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 2;
  background: var(--color-surface);
  margin-bottom: var(--space-sm);
}
.topic-card__badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--color-accent, #c0392b);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 3px 9px;
  border-radius: 3px;
  pointer-events: none;
}
.topic-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.topic-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-xs);
}
.topic-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
}
.topic-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-xs);
  margin-top: auto;
  padding-top: var(--space-xs);
}
.topic-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.topic-card__tag {
  font-size: 0.7rem;
  color: #c0392b;
  font-weight: 600;
}
.topic-card__date {
  font-size: 0.7rem;
  color: var(--color-text-light, rgba(0,0,0,0.4));
  white-space: nowrap;
  font-family: var(--font-en);
}
@media (max-width: 900px) {
  .topics__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .topics__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   SHORT MOVIE
───────────────────────────────────────────── */
.movie__row {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
  -webkit-overflow-scrolling: touch;
}
.movie__row::-webkit-scrollbar { height: 4px; }
.movie__row::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.movie__row::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 2px; }
.movie-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
.movie-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.movie-card__thumb-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #222;
  margin-bottom: var(--space-xs);
}
.movie-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.movie-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.movie-card__link:hover .movie-card__play {
  background: rgba(0,0,0,0.35);
}
.movie-card__play svg {
  width: 56px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.movie-card__title {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}
@media (min-width: 768px) {
  .movie-card { flex: 0 0 calc(20% - var(--space-md) * 4/5); }
}

/* ─────────────────────────────────────────────
   スクロールリビール（js-rc-* 共通）
───────────────────────────────────────────── */
.js-rc-up,
.js-rc-left,
.js-rc-right,
.js-rc-zoom {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.js-rc-up    { transform: translateY(32px); }
.js-rc-left  { transform: translateX(-32px); }
.js-rc-right { transform: translateX(32px); }
.js-rc-zoom  { transform: scale(0.94); }

.js-rc-up.is-visible,
.js-rc-left.is-visible,
.js-rc-right.is-visible,
.js-rc-zoom.is-visible {
  opacity: 1;
  transform: none;
}

/* Philosophy prose はテキストリビールで別管理 */
.philosophy__prose-group {
  opacity: 1 !important;
  transform: none !important;
}
/* prose-lead: 常に表示、カラーとtransformのみ遷移 */
.philosophy__prose-lead {
  opacity: 1 !important;
  transition: color 0.9s ease,
              transform 0.9s cubic-bezier(0.16,1,0.3,1) !important;
}
/* mission-after: 同じくグレー→黒テキスト遷移 */
.philosophy__mission-after {
  opacity: 1 !important;
  transform: none !important;
  color: rgba(0,0,0,0.12) !important;
  transition: color 0.9s ease !important;
}
.philosophy__mission-after.is-text-revealed {
  color: var(--color-text) !important;
}

/* ─────────────────────────────────────────────
   ミッションバナー 左→右ワイプイン（オーバーレイ方式）
───────────────────────────────────────────── */
.philosophy__mission-banner {
  position: relative;
  overflow: hidden;
}
/* 白いマスクが右へ退いてバナーを左から露出する */
.philosophy__mission-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-surface, #faf9f7);
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.philosophy__mission-banner.is-visible::after {
  transform: scaleX(0);
}
.philosophy__mission-banner p {
  opacity: 1;
}
.mission-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.philosophy__mission-banner.is-visible .mission-char {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   PHILOSOPHY サイド 縦スクロールティッカー
───────────────────────────────────────────── */
.philosophy__side-text {
  position: absolute;
  left: 36px;
  top: 100px;
  bottom: 50px;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md, 16px);
  z-index: 1;
  pointer-events: none;
}
.philosophy__side-label {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #fff;
  background: var(--color-accent, #c0392b);
  padding: 0.5em 0.35em;
  flex-shrink: 0;
}
.philosophy__side-marquee {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.philosophy__side-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: side-ticker 22s linear infinite;
  will-change: transform;
}
.philosophy__side-track span {
  writing-mode: vertical-rl;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.22);
  white-space: nowrap;
  padding: 0.8em 0;
}
@keyframes side-ticker {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@media (max-width: 768px) {
  .philosophy__side-text { display: none; }
}

/* ─────────────────────────────────────────────
   MEMBER LOGIN セクション
───────────────────────────────────────────── */
.member-login {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-3xl, 80px);
}
.member-login__bg {
  position: absolute;
  inset: 0;
  background: #1a0a08;
}
.member-login__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(217,48,31,0.35) 0%, transparent 70%);
}
.member-login__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md, 16px);
}
.member-login__eyebrow {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.member-login__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.member-login__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.member-login__btn {
  margin-top: var(--space-sm, 8px);
  min-width: 200px;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.member-login__btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* =============================================================
   WHO WE ARE
   ============================================================= */
/* WHO WE ARE — ringfit.jp style */
/* =============================================================
   WHO WE ARE — ringfit.jp インスパイア
   ============================================================= */
.who-we-are {
  background: var(--color-bg);
  display: flex;
  overflow: hidden;
}

/* --- 左サイドカラム --- */
.who-we-are__side {
  width: 6.5rem;
  flex-shrink: 0;
  border-right: 1px solid #bababa;
  position: relative;
  overflow: hidden;
}
.who-we-are__side-track {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  white-space: nowrap;
}
.who-we-are__side-inner {
  display: flex;
  gap: 4rem;
  animation: wwa-slide-col 20s infinite linear;
}
.who-we-are__side-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(26, 26, 26, 0.4);
}
@keyframes wwa-slide-col {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- メインエリア --- */
.who-we-are__main {
  flex: 1;
  position: relative;
  /* overflow: hidden は外の .who-we-are に任せる（ゴーストロゴを表示するため） */
}

/* ゴーストロゴ（右上コーナーに正方形マークを配置 - ブランド署名的） */
.who-we-are__ghost {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3.5rem);
  top: clamp(1.5rem, 3vw, 3rem);
  width: clamp(120px, 14vw, 220px);
  aspect-ratio: 1 / 1;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.who-we-are__ghost img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .who-we-are__ghost {
    right: 1rem;
    top: 1rem;
    width: clamp(80px, 20vw, 140px);
    opacity: 0.10;
  }
}

/* ヘッダー行 */
.who-we-are__heads {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3rem;
  border-bottom: 1px solid #bababa;
}
.who-we-are__h2 {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.who-we-are__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.25s ease;
}
.who-we-are__btn:hover { gap: 16px; }
.who-we-are__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1.5px solid var(--color-text);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}
.who-we-are__btn:hover .who-we-are__btn-arrow {
  background: var(--color-text);
}
.who-we-are__btn:hover .who-we-are__btn-arrow path {
  fill: #fff;
}

/* 本文 */
.who-we-are__content {
  padding: 2.8rem 3rem 3rem 8rem;
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.who-we-are__lead {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 0;
}
.who-we-are__text {
  margin-top: 2rem;
}
.who-we-are__text p {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.who-we-are__text p:last-child { margin-bottom: 0; }
.who-we-are__text p.--gap {
  margin-top: 1.4rem;
}

/* スクロール連動テキストカラーアニメーション */
.js-text-fade {
  color: rgba(26, 26, 26, 0.18);
  transition: color 0.05s linear;
}

/* ミッションバナー
   Step 1: 赤バナーが左→右へ clip-path で展開（0.75s）
   Step 2: テキストが 0.65s 遅延でフェードイン（0.45s）
*/
.who-we-are__mission {
  display: block;
  background: var(--color-primary);
  border-radius: 6px;
  padding: 1.2rem 2rem;
  margin: 4.5rem 0 2.5rem;
  clip-path: inset(0 100% 0 0 round 6px);
  transition: clip-path 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.who-we-are__mission.is-visible {
  clip-path: inset(0 0% 0 0 round 6px);
}
.who-we-are__mission p {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease 0.65s, transform 0.45s ease 0.65s;
}
.who-we-are__mission.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

/* アフターテキスト */
.who-we-are__after {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin-bottom: 4.5rem;
}

/* MVV カード */
.mvv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 4.8rem;
}
.mvv-card {
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  background: var(--color-bg-sub);
}
.mvv-card__label {
  display: block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.mvv-card__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
}

/* who-we-are__link（他セクションで流用） */
.who-we-are__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  margin-top: 12px;
  transition: gap 0.2s ease;
}
.who-we-are__link:hover { gap: 10px; }

/* レスポンシブ */
@media (max-width: 1024px) {
  .who-we-are__content { padding: 6rem 3rem 8rem 6rem; }
  .who-we-are__main::before { width: 50rem; right: -10rem; }
}
@media (max-width: 768px) {
  .who-we-are__side { display: none; }
  .who-we-are__heads { padding: 2rem 1.5rem; }
  .who-we-are__content { padding: 4rem 1.5rem 6rem; }
  .who-we-are__main::before { display: none; }
  .mvv-cards { grid-template-columns: 1fr; }
}

/* =============================================================
   GALLERY
   ============================================================= */
.gallery {
  overflow: hidden;
  cursor: default;
}

/* ── トラック：5枚×2セット分の幅を flex で並べ、-50% ループ ── */
.gallery__track {
  display: flex;
  width: max-content;
  animation: gallery-marquee 24s linear infinite;
}

.gallery__item {
  flex-shrink: 0;
  width: clamp(260px, 33vw, 480px);
  height: 360px;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.04); }

@keyframes gallery-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .gallery__item { height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__track { animation: none; }
}

/* =============================================================
   SERVICE AI
   ============================================================= */
.service-ai {
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
}
.service-ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/sportip.webp');
  background-size: 52% auto;
  background-repeat: no-repeat;
  background-position: right 4% center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.service-ai .container { position: relative; z-index: 1; }
.service-ai__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-ai__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 16px 0 24px;
}
.service-ai__desc {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-text-sub);
  margin-bottom: 24px;
}
.service-ai__visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 0.85;
  gap: 0;
  user-select: none;
}
.service-ai__big-text {
  font-family: var(--font-en);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 0.9;
}
.service-ai__big-text--en {
  font-size: clamp(60px, 8vw, 120px);
  color: var(--color-primary);
}
.service-ai__cross {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 100;
  color: var(--color-text-sub);
  align-self: center;
}
@media (max-width: 768px) {
  .service-ai__inner { grid-template-columns: 1fr; gap: 40px; }
  .service-ai__visual { align-items: flex-start; }
}

/* =============================================================
   SERVICE FEATURES
   ============================================================= */
.service-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-feature-item {
  padding: 32px 24px;
  background: var(--color-bg);
  border-radius: 8px;
}
.service-feature-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--color-text);
}
.service-feature-item__desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-sub);
}
@media (max-width: 1024px) {
  .service-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .service-features__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   TEXT MARQUEE
   ============================================================= */
.text-marquee {
  overflow: hidden;
  background: var(--color-text);
  padding: 14px 0;
  white-space: nowrap;
}
.text-marquee__track {
  display: inline-flex;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .text-marquee__track { animation: none; }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.text-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.text-marquee__item strong {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.text-marquee__sep {
  color: rgba(255,255,255,0.3);
  padding: 0 8px;
}

/* =============================================================
   SERVICE LIST (症状別詳細)
   ============================================================= */
.service-list { background: var(--color-bg); }
.service-list__items { list-style: none; }
.service-list__item {
  display: grid;
  grid-template-columns: 80px 1fr 40%;
  gap: 48px;
  align-items: start;
  padding: 18px 0;
  overflow: hidden;
  max-height: 108px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  cursor: default;
  transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}
.service-list__item:hover,
.service-list__item:focus-within {
  max-height: 700px;
  padding: 40px 0;
}
.service-list__item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.service-list__num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  align-self: flex-start;
  padding-top: 8px;
}
.service-list__en {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.service-list__title {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}
/* アコーディオン：ホバーで展開（透明度のみ — 高さは親のmax-heightで制御） */
.service-list__collapse {
  opacity: 0;
  transition: opacity 0.35s ease 0.15s;
  margin-top: 14px;
}
.service-list__item:hover .service-list__collapse,
.service-list__item:focus-within .service-list__collapse {
  opacity: 1;
}
.service-list__desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-sub);
  margin-bottom: 16px;
}
.service-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.service-list__tag {
  font-size: 0.75rem;
  color: var(--color-text-sub);
  background: var(--color-bg-sub);
  padding: 4px 10px;
  border-radius: 100px;
}
.service-list__collapse .service-list__desc { margin-top: 14px; }
.service-list__img {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  clip-path: inset(0 100% 0 0 round 8px);
  transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-list__item:hover .service-list__img,
.service-list__item:focus-within .service-list__img {
  clip-path: inset(0 0% 0 0 round 8px);
}
.service-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-list__item:hover .service-list__img img { transform: scale(1.04); }
@media (max-width: 768px) {
  .service-list__item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .service-list__num { font-size: 2rem; }
  .service-list__img { order: -1; }
}

/* =============================================================
   CASE STUDY SLIDER
   ============================================================= */
.case-study { background: var(--color-bg); }
.case-study__slider {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
.case-study__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.case-study__card {
  flex: 0 0 calc(25% - 18px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-sub);
}
.case-study__card-img { aspect-ratio: 4/3; overflow: hidden; }
.case-study__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.case-study__card:hover .case-study__card-img img { transform: scale(1.04); }
.case-study__card-body { padding: 20px; }
.case-study__card-meta {
  font-size: 0.75rem;
  color: var(--color-text-sub);
  margin-bottom: 8px;
}
.case-study__card-quote {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}
.case-study__nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 24px;
}
.case-study__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.case-study__btn:hover { background: var(--color-text); color: #fff; }
@media (max-width: 1024px) {
  .case-study__card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 768px) {
  .case-study__card { flex: 0 0 85%; }
}

/* =============================================================
   PRICE FAQ
   ============================================================= */
.price-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 0;
}
.price-faq__card {
  padding: 64px 48px;
  background: var(--color-bg);
}
.price-faq__card:first-child { background: var(--color-text); }
.price-faq__card:first-child .section-label { color: rgba(255,255,255,0.5); }
.price-faq__card:first-child .price-faq__title,
.price-faq__card:first-child .price-faq__desc { color: #fff; }
.price-faq__card:first-child .who-we-are__link { color: #fff; }
.price-faq__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 12px 0 24px;
  line-height: 1.2;
}
.price-faq__desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-sub);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .price-faq__grid { grid-template-columns: 1fr; }
  .price-faq__card { padding: 48px 24px; }
}

/* =============================================================
   MERITS / 5つのメリット
   ============================================================= */
.merits { background: var(--color-bg); }
.merits__list { list-style: none; counter-reset: merits; margin-top: 48px; }
.merits__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.merits__item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.merits__num {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  opacity: 0.15;
}
.merits__title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}
.merits__desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-sub);
}
@media (max-width: 768px) {
  .merits__item { grid-template-columns: 48px 1fr; gap: 20px; }
  .merits__num { font-size: 2.5rem; }
}

/* =============================================================
   NEWS / MAGAZINE
   ============================================================= */
.news { background: var(--color-bg-sub); overflow: hidden; }
.news__marquee-wrap {
  overflow: hidden;
  margin-bottom: -20px;
}
.news__big-text {
  font-family: var(--font-en);
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 700;
  color: rgba(0,0,0,0.04);
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.news-card {
  background: var(--color-bg);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.news-card__date {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--color-text-sub);
}
.news-card__tag {
  font-size: 0.7rem;
  color: var(--color-primary);
  background: rgba(217,48,31,0.06);
  padding: 2px 8px;
  border-radius: 100px;
}
.news-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .news__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .news__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   CTA SPLIT
   ============================================================= */
.cta-split { background: var(--color-bg); }
.cta-split__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.cta-split__card {
  padding: 80px 64px;
  background: var(--color-bg-sub);
}
.cta-split__card--primary { background: var(--color-primary); }
.cta-split__card--primary .section-label { color: rgba(255,255,255,0.5); }
.cta-split__card--primary .cta-split__title,
.cta-split__card--primary .cta-split__desc { color: #fff; }
.cta-split__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 12px 0 24px;
  line-height: 1.2;
}
.cta-split__desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-sub);
  margin-bottom: 40px;
}
.cta-split__card--primary .cta-split__desc { color: rgba(255,255,255,0.8); }
@media (max-width: 768px) {
  .cta-split__grid { grid-template-columns: 1fr; }
  .cta-split__card { padding: 48px 24px; }
}

/* =============================================================
   FV DEEP RESOLUTION TYPOGRAPHY
   ============================================================= */
.fv__title-deep {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 700;
  line-height: 0.85;
  color: #fff;
  letter-spacing: -0.02em;
}
.fv__title-resolution {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(60px, 10vw, 150px);
  font-weight: 700;
  line-height: 0.85;
  color: #fff;
  letter-spacing: -0.02em;
}

/* =============================================================
   FOOTER NAV UPDATE
   ============================================================= */
.footer__nav-subheading {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  margin-top: -8px;
}
.footer__nav-main li a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__nav-main li a span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================================
   フローティング CTA バナー
   ============================================================= */

.float-banner {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  z-index: 900;
  overflow: hidden;
  transform: translateY(140%);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   0.3s  ease;
  pointer-events: none;
}

.float-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.float-banner__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.2s;
}
.float-banner__close:hover { background: var(--color-primary); }

.float-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
}

.float-banner__img {
  flex-shrink: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.float-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.float-banner__body {
  padding: 14px 16px 16px;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-banner__text {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.float-banner__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  white-space: nowrap;
}

.float-banner__price {
  color: #fff;
  line-height: 1;
  margin: 0;
}
.float-banner__price span {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.float-banner__price small {
  font-size: 12px;
  font-weight: 600;
  margin-left: 2px;
}

.float-banner__cta {
  display: block;
  text-align: center;
  background: #fff;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  margin: 0;
}
.float-banner__inner:hover .float-banner__cta {
  background: #f5e8e8;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .float-banner {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-banner { transition: none; }
}

/* =============================================================
   SHOP GALLERY
   ============================================================= */

.shop-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.shop-gallery__item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: #f0efec;
}

.shop-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-gallery__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .shop-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .shop-gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   SHOP NEWS
   ============================================================= */

.shop-news__list {
  list-style: none;
  border-top: 1px solid #e8e4df;
}

.shop-news__item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #e8e4df;
}

.shop-news__date {
  flex-shrink: 0;
  padding-top: 2px;
  font-size: 13px;
  color: var(--color-text-sub);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.03em;
  min-width: 90px;
}

.shop-news__content {
  flex: 1;
}

.shop-news__item-title,
.shop-news__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}

.shop-news__link {
  text-decoration: none;
  transition: color 0.2s;
}

.shop-news__link:hover {
  color: var(--color-primary);
}

.shop-news__body {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.8;
}

.shop-news__more {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.shop-news__more:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .shop-news__item {
    flex-direction: column;
    gap: 6px;
  }
  .shop-news__date {
    min-width: unset;
  }
}

/* =============================================================
   CASE STUDY SLIDER JS
   ============================================================= */


/* =============================================================
   phase4: variant-preview
   designer エージェント生成バリアントの可視化用。finalize 時に削除。
   ============================================================= */
.variant-preview {
  position: relative;
  margin-block: clamp(3rem, 2rem + 4vw, 6rem);
  border: 2px dashed var(--color-text-sub);
  padding: 1.5rem 1rem 1rem;
  background: var(--color-bg);
}

.variant-preview__label {
  position: sticky;
  top: 0;
  z-index: 20;
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(217, 48, 31, 0.2);
}

.variant-preview[data-variant="A"] .variant-preview__label { background: var(--color-primary); }
.variant-preview[data-variant="B"] .variant-preview__label { background: #1A3A5C; }
.variant-preview[data-variant="C"] .variant-preview__label { background: #3D6B4A; }

@media print {
  .variant-preview { break-inside: avoid; }
  .variant-preview__label { position: static; }
}



/* =============================================================
   phase4: common framework
   6ページ (about/price/first/reviews/blog/contact) で共有する
   汎用クラス群。個別セクションは各ページ固有ブロックで上書き。
   ============================================================= */

:root {
  --p4-max-width: 1200px;
  --p4-gutter: clamp(1.25rem, 5vw, 3rem);
  --p4-section-y: clamp(4rem, 3rem + 5vw, 10rem);
  --p4-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-only { display: none; }
@media (max-width: 767px) { .mobile-only { display: block; } }

/* ---- Hero 共通 ---- */
.p4-hero {
  position: relative;
  padding-block: clamp(8rem, 6rem + 10vw, 14rem) clamp(4rem, 3rem + 4vw, 7rem);
  background: var(--color-bg);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  overflow: hidden;
}
.p4-hero__inner {
  max-width: var(--p4-max-width);
  margin-inline: auto;
  padding-inline: var(--p4-gutter);
  position: relative;
  z-index: 1;
}
.p4-hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}
.p4-hero__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 1.5rem + 3.2vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1.75rem;
  font-feature-settings: "palt";
}
.p4-hero__lead {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.85;
  color: var(--color-text-sub);
  max-width: 640px;
}

/* Hero variants */
.p4-hero--editorial { background: var(--color-bg); }
.p4-hero--editorial::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 38%;
  background: var(--color-bg-sub);
  z-index: 0;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 767px) {
  .p4-hero--editorial::before { display: none; }
}

.p4-hero--image {
  color: #fff;
  background: #1A1A1A;
}
.p4-hero--image .p4-hero__title { color: #fff; }
.p4-hero--image .p4-hero__lead  { color: rgba(255,255,255,0.85); }
.p4-hero--image .p4-hero__eyebrow { color: var(--color-accent); }

/* ---- Section 共通 ---- */
.p4-section {
  padding-block: var(--p4-section-y);
  background: var(--color-bg);
}
.p4-section--bg-sub { background: var(--color-bg-sub); }
.p4-section .container {
  max-width: var(--p4-max-width);
  margin-inline: auto;
  padding-inline: var(--p4-gutter);
}
.p4-section-header {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 2rem + 2.5vw, 4rem);
}
.p4-section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.p4-section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.75rem, 1.4rem + 1.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-feature-settings: "palt";
}
.p4-section-desc {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.85;
  color: var(--color-text-sub);
}

/* ---- CTA band 共通 ---- */
.p4-cta-band {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-sub) 100%);
}
.p4-cta-band__inner {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(3rem, 2rem + 4vw, 5rem) clamp(1.5rem, 1rem + 2vw, 3rem);
  background: var(--color-bg);
  border: 1px solid rgba(217, 48, 31, 0.1);
  text-align: center;
  position: relative;
  box-shadow: var(--token-shadow-card, 0 10px 30px rgba(80,45,30,0.08));
}
.p4-cta-band__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.p4-cta-band__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-feature-settings: "palt";
}
.p4-cta-band__lead {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.85;
  color: var(--color-text-sub);
  margin-bottom: 2rem;
}
.p4-cta-band__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- btn--ghost (既存 btn に ghost variant) ---- */
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(26, 26, 26, 0.2);
}
.btn--ghost:hover {
  border-color: var(--color-text);
  background: rgba(26, 26, 26, 0.03);
}


/* =============================================================
   phase4: contact
   ============================================================= */

/* 3 connect method cards */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 0.75rem + 1vw, 1.75rem);
}
.contact-method {
  position: relative;
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  background: var(--color-bg);
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: transform 0.35s var(--p4-ease), box-shadow 0.35s var(--p4-ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--token-shadow-card, 0 10px 30px rgba(80,45,30,0.08));
}
.contact-method__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--color-bg-sub);
  color: var(--color-primary);
  border-radius: 999px;
}
.contact-method__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-sub);
}
.contact-method__body {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text);
  flex-grow: 1;
}
.contact-method__cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  align-self: flex-start;
}
.contact-method__cta::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.35s var(--p4-ease);
}
.contact-method__cta:hover::after { transform: scaleX(0.6); transform-origin: right; }

@media (prefers-reduced-motion: reduce) {
  .contact-method:hover { transform: none; box-shadow: none; }
  .contact-method__cta::after { transition: none; }
}

/* Contact form */
.contact-form {
  max-width: 780px;
  margin-inline: auto;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0.75rem + 1vw, 1.5rem);
}
@media (max-width: 640px) {
  .contact-form__grid { grid-template-columns: 1fr; }
}
.contact-form__field { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 0.875rem 1rem;
  font: inherit;
  border: 1px solid rgba(26, 26, 26, 0.15);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(217, 48, 31, 0.1);
}
.contact-form__field textarea { resize: vertical; min-height: 140px; }

.required-mark { color: var(--color-primary); font-weight: 500; }

.honeypot { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.contact-form__check {
  display: flex; gap: 0.625rem; align-items: flex-start;
  font-size: 0.9375rem; color: var(--color-text); line-height: 1.65;
}
.contact-form__check input[type="checkbox"] { margin-top: 0.25rem; }
.contact-form__check a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }

.contact-form__submit {
  margin-top: 2.5rem;
  text-align: center;
}
.contact-form__note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-sub);
}

/* Hours & shops section */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 0.75rem + 1vw, 1.75rem);
}
.hours-card {
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  background: var(--color-bg);
  border-left: 3px solid var(--color-primary);
}
.hours-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hours-card__list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1rem; }
.hours-card__list > div { display: flex; justify-content: space-between; padding-bottom: 0.625rem; border-bottom: 1px solid rgba(26, 26, 26, 0.06); }
.hours-card__list dt { font-size: 0.875rem; color: var(--color-text-sub); }
.hours-card__list dd { font-size: 0.9375rem; font-weight: 500; color: var(--color-text); }
.hours-card__note { font-size: 0.8125rem; color: var(--color-text-sub); line-height: 1.65; }
.hours-card__body { font-size: 0.9375rem; line-height: 1.85; color: var(--color-text); margin-bottom: 1.5rem; }
.hours-card--shops { background: var(--color-primary); color: #fff; border-left-color: var(--color-accent); }
.hours-card--shops .hours-card__title { color: #fff; }
.hours-card--shops .hours-card__body { color: rgba(255,255,255,0.9); }


/* =============================================================
   phase4: first
   ============================================================= */
.first-flow {
  display: grid;
  gap: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  list-style: none;
  counter-reset: flow;
}
.first-flow__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
  padding-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  position: relative;
}
.first-flow__step:last-child { border-bottom: none; padding-bottom: 0; }
.first-flow__num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  min-width: 80px;
}
.first-flow__num span { opacity: 0.25; }
.first-flow__step:hover .first-flow__num span { opacity: 1; transition: opacity 0.4s var(--p4-ease); }
.first-flow__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.first-flow__desc {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.first-flow__time {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* prep 3 cards */
.first-prep {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 0.75rem + 1vw, 1.75rem);
}
.first-prep__card {
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  background: var(--color-bg);
  border-left: 3px solid var(--color-primary);
}
.first-prep__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 1rem;
}
.first-prep__value {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.first-prep__value strong { color: var(--color-primary); }
.first-prep__value span { font-size: 0.5em; font-weight: 400; margin-left: 0.25rem; color: var(--color-text-sub); }
.first-prep__value--text { font-family: 'Noto Sans JP', sans-serif; font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem); color: var(--color-primary); }
.first-prep__desc { font-size: 0.9375rem; line-height: 1.75; color: var(--color-text-sub); }

/* FAQ accordion */
.first-faq { display: grid; gap: 0.75rem; }
.first-faq__item {
  background: var(--color-bg);
  border: 1px solid rgba(26, 26, 26, 0.08);
  padding: 0.25rem 0;
}
.first-faq__q {
  padding: 1.25rem 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.first-faq__q::-webkit-details-marker { display: none; }
.first-faq__q::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s var(--p4-ease);
}
.first-faq__item[open] .first-faq__q::after { transform: translateY(-50%) rotate(45deg); }
.first-faq__a {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text-sub);
}
.first-faq__a a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }

/* perk */
.first-perk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 2rem + 2vw, 4rem);
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 767px) { .first-perk { grid-template-columns: 1fr; } }
.first-perk__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.first-perk__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  font-feature-settings: "palt";
}
.first-perk__title span { color: var(--color-accent); }
.first-perk__body { font-size: 0.9375rem; line-height: 1.85; opacity: 0.95; margin-bottom: 1.75rem; }
.first-perk__visual {
  display: grid;
  place-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}
.first-perk__amount {
  font-size: clamp(4rem, 3rem + 6vw, 9rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.first-perk__amount-sub {
  font-size: 0.9375rem;
  text-decoration: line-through;
  opacity: 0.7;
}

/* =============================================================
   phase4: about
   ============================================================= */
.about-mission {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 0.75rem + 1vw, 1.75rem);
}
@media (max-width: 767px) { .about-mission { grid-template-columns: 1fr; } }
.about-mission__card {
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  background: var(--color-bg);
  border: 1px solid rgba(26, 26, 26, 0.08);
  grid-column: span 3;
}
.about-mission__card--large { grid-column: span 6; background: var(--color-text); color: #fff; }
@media (min-width: 768px) { .about-mission__card--large { grid-column: span 6; } }
.about-mission__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.about-mission__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.about-mission__body { font-size: 0.9375rem; line-height: 1.85; color: var(--color-text-sub); }
.about-mission__card--large .about-mission__body { color: rgba(255,255,255,0.85); }

/* stats counters */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 1rem + 1.5vw, 3rem);
}
.about-stats__item { text-align: left; }
.about-stats__num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3rem, 2rem + 4vw, 5.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}
.about-stats__unit { font-family: 'Noto Sans JP', sans-serif; font-size: 1rem; font-weight: 500; color: var(--color-accent); margin-left: 0.25rem; }
.about-stats__label { display: block; margin-top: 0.75rem; font-size: 0.875rem; color: var(--color-text-sub); }

/* message */
.about-message {
  max-width: 760px;
  margin-inline: auto;
}
.about-message__body {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 2;
  color: var(--color-text);
  padding-left: 1.75rem;
  border-left: 3px solid var(--color-primary);
}
.about-message__body p { margin-bottom: 1.5rem; }
.about-message__sig {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  display: flex;
  gap: 1.25rem;
  align-items: baseline;
}
.about-message__role { font-family: 'DM Sans', sans-serif; font-size: 0.8125rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-sub); }
.about-message__name { font-family: 'Noto Sans JP', sans-serif; font-size: 1.125rem; font-weight: 500; color: var(--color-text); }

/* timeline */
.about-timeline { list-style: none; max-width: 780px; margin-inline: auto; position: relative; padding-left: 1.5rem; }
.about-timeline::before { content: ""; position: absolute; left: 0.25rem; top: 0.5rem; bottom: 0.5rem; width: 1px; background: rgba(26, 26, 26, 0.15); }
.about-timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 1rem + 1vw, 2.5rem);
  padding-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  position: relative;
}
.about-timeline__item::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.625rem;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--color-bg-sub);
  border: 2px solid var(--color-primary);
}
.about-timeline__item--current::before { background: var(--color-primary); }
.about-timeline__year {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.4vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  min-width: 72px;
}
.about-timeline__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.about-timeline__body p { font-size: 0.9375rem; line-height: 1.85; color: var(--color-text-sub); }


/* =============================================================
   phase4: price
   ============================================================= */
.price-firstbanner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: center;
  padding: clamp(2.5rem, 2rem + 2vw, 4.5rem);
  background: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) { .price-firstbanner { grid-template-columns: 1fr; } }
.price-firstbanner__badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent);
  color: var(--color-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.price-firstbanner__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.5rem, 1.25rem + 1.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  font-feature-settings: "palt";
}
.price-firstbanner__body { font-size: 0.9375rem; opacity: 0.85; margin-bottom: 0.25rem; }
.price-firstbanner__price {
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}
.price-firstbanner__yen { font-size: 1.5rem; opacity: 0.85; margin-right: 0.25rem; }
.price-firstbanner__amount {
  font-size: clamp(3.5rem, 2.5rem + 4vw, 6rem);
  font-weight: 700;
  color: var(--color-accent);
}
.price-firstbanner__tax { font-size: 0.875rem; opacity: 0.7; margin-left: 0.5rem; letter-spacing: 0.05em; }
.price-firstbanner__right {
  position: relative;
  display: grid;
  place-items: center;
  font-family: 'DM Sans', sans-serif;
}
.price-firstbanner__deco {
  font-size: clamp(3rem, 2rem + 5vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.08);
  line-height: 0.9;
}
.price-firstbanner__deco--small { font-size: clamp(1.5rem, 1rem + 2vw, 3rem); }

/* courses 3-column */
.price-courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.75rem + 1vw, 1.75rem);
}
@media (max-width: 900px) { .price-courses { grid-template-columns: 1fr; } }
.price-course {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  background: var(--color-bg);
  border: 1px solid rgba(26, 26, 26, 0.08);
}
.price-course--featured {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
  transform: translateY(-8px);
  box-shadow: var(--token-shadow-card, 0 10px 30px rgba(80,45,30,0.08));
}
@media (max-width: 900px) { .price-course--featured { transform: none; } }
.price-course__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-bg-sub);
  color: var(--color-text-sub);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.price-course__badge--featured { background: var(--color-accent); color: var(--color-text); }
.price-course__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.price-course__tagline { font-size: 0.875rem; color: inherit; opacity: 0.75; margin-bottom: 1.25rem; }
.price-course__price {
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.price-course__yen { font-size: 1.25rem; opacity: 0.75; margin-right: 0.125rem; }
.price-course__amount { font-size: clamp(2.5rem, 2rem + 2vw, 3.75rem); font-weight: 700; }
.price-course__duration { font-size: 0.8125rem; color: inherit; opacity: 0.75; margin-bottom: 1.5rem; }
.price-course__features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.price-course__features li {
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9375rem;
  position: relative;
  padding-left: 1.25rem;
}
.price-course:not(.price-course--featured) .price-course__features li { border-bottom-color: rgba(26,26,26,0.08); }
.price-course__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* options grid */
.price-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--color-bg-sub);
  border-left: 2px solid var(--color-primary);
}
.price-option__name { font-size: 0.9375rem; color: var(--color-text); }
.price-option__amount { font-family: 'DM Sans', sans-serif; font-size: 0.9375rem; font-weight: 500; color: var(--color-primary); }
.price-options__note { margin-top: 1.5rem; font-size: 0.8125rem; color: var(--color-text-sub); }

/* campaigns */
.price-campaigns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0.75rem + 1vw, 1.75rem);
}
@media (max-width: 767px) { .price-campaigns { grid-template-columns: 1fr; } }
.price-campaign {
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  background: var(--color-bg);
  border-top: 3px solid var(--color-accent);
}
.price-campaign__period {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.price-campaign__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.price-campaign__body { font-size: 0.9375rem; line-height: 1.85; color: var(--color-text-sub); }

/* payment */
.price-payment {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.875rem;
}
.price-payment__item {
  padding: 1.25rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid rgba(26, 26, 26, 0.08);
}
.price-payment__name { font-family: 'Noto Sans JP', sans-serif; font-size: 0.9375rem; font-weight: 500; color: var(--color-text); margin-bottom: 0.375rem; }
.price-payment__detail { font-size: 0.8125rem; color: var(--color-text-sub); line-height: 1.65; }
.price-payment__note { margin-top: 1.5rem; font-size: 0.8125rem; color: var(--color-text-sub); line-height: 1.75; }

/* =============================================================
   phase4: reviews
   ============================================================= */
.reviews-rating {
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: baseline;
}
.reviews-rating__stars { font-size: 1.5rem; color: var(--color-accent); letter-spacing: 0.1em; }
.reviews-rating__half { opacity: 0.5; }
.reviews-rating__score {
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.02em;
}
.reviews-rating__score strong { font-size: 2.5rem; font-weight: 700; color: var(--color-text); }
.reviews-rating__score span { font-size: 1rem; color: var(--color-text-sub); margin-left: 0.25rem; }
.reviews-rating__count { font-size: 0.9375rem; color: var(--color-text-sub); }
.reviews-rating__count strong { font-family: 'DM Sans', sans-serif; color: var(--color-primary); font-weight: 700; }

/* tabs */
.reviews-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  padding-bottom: 1rem;
}
.reviews-tab {
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.15);
  color: var(--color-text);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.25s var(--p4-ease);
}
.reviews-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.reviews-tab.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* review cards (bento layout) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.75rem + 1vw, 1.5rem);
  grid-auto-flow: dense;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  padding: clamp(1.5rem, 1.25rem + 0.75vw, 2rem);
  background: var(--color-bg);
  border: 1px solid rgba(26, 26, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.35s var(--p4-ease), box-shadow 0.35s var(--p4-ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--token-shadow-card, 0 10px 30px rgba(80,45,30,0.08)); }
.review-card--large { grid-column: span 2; }
.review-card--tall { grid-row: span 2; background: var(--color-bg-sub); }
@media (max-width: 900px) { .review-card--large { grid-column: span 2; } .review-card--tall { grid-row: auto; } }
@media (max-width: 600px) { .review-card--large { grid-column: span 1; } }
.review-card__head { display: flex; justify-content: space-between; align-items: center; }
.review-card__stars { color: var(--color-accent); letter-spacing: 0.08em; }
.review-card__symptom {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-sub);
}
.review-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.review-card__body { font-size: 0.9375rem; line-height: 1.85; color: var(--color-text-sub); flex-grow: 1; }
.review-card__foot { display: flex; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid rgba(26,26,26,0.06); font-size: 0.8125rem; color: var(--color-text-sub); }

@media (prefers-reduced-motion: reduce) { .review-card:hover { transform: none; box-shadow: none; } }

/* BA cases */
.reviews-ba {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.75rem + 1vw, 1.5rem);
}
@media (max-width: 900px) { .reviews-ba { grid-template-columns: 1fr; } }
.ba-case {
  background: var(--color-bg);
  padding: clamp(1.5rem, 1.25rem + 0.75vw, 2rem);
  border-top: 3px solid var(--color-primary);
}
.ba-case__condition { font-family: 'Noto Sans JP', sans-serif; font-size: 0.9375rem; color: var(--color-text-sub); margin-bottom: 1rem; }
.ba-case__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 1.25rem;
  background: var(--color-bg-sub);
  aspect-ratio: 2 / 1.25;
}
.ba-case__img {
  display: grid;
  place-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  background-size: cover;
  background-position: center;
}
.ba-case__img--before { background-color: rgba(26,26,26,0.05); }
.ba-case__img--after { background-color: rgba(217,48,31,0.08); color: var(--color-primary); }
.ba-case__data { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(26,26,26,0.08); }
.ba-case__metric { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-sub); margin-bottom: 0.25rem; }
.ba-case__change { font-family: 'DM Sans', sans-serif; font-size: 1rem; color: var(--color-text); letter-spacing: -0.01em; }
.ba-case__change s { color: var(--color-text-sub); margin-right: 0.25rem; }
.ba-case__change strong { font-size: 1.375rem; font-weight: 700; color: var(--color-primary); }

/* =============================================================
   phase4: blog
   ============================================================= */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.blog-cat {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--color-text-sub);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: color 0.25s ease;
  position: relative;
}
.blog-cat::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--p4-ease);
}
.blog-cat:hover { color: var(--color-text); }
.blog-cat.is-active { color: var(--color-primary); font-weight: 500; }
.blog-cat.is-active::after { transform: scaleX(1); }

/* featured article */
.blog-featured { margin-bottom: 3rem; }
.blog-featured__link {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.5rem, 1rem + 1.5vw, 3rem);
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
  background: var(--color-bg);
  border: 1px solid rgba(26,26,26,0.08);
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: transform 0.35s var(--p4-ease), box-shadow 0.35s var(--p4-ease);
}
.blog-featured__link:hover { transform: translateY(-4px); box-shadow: var(--token-shadow-card, 0 10px 30px rgba(80,45,30,0.08)); }
@media (max-width: 767px) { .blog-featured__link { grid-template-columns: 1fr; } }
.blog-featured__visual {
  aspect-ratio: 16 / 10;
  background: var(--color-primary);
  display: grid;
  place-items: start end;
  padding: 1rem;
  position: relative;
}
.blog-featured__cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.2);
  padding: 0.25rem 0.75rem;
}
.blog-featured__meta { font-family: 'DM Sans', sans-serif; font-size: 0.8125rem; color: var(--color-text-sub); margin-bottom: 1rem; letter-spacing: 0.05em; }
.blog-featured__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.375rem, 1.15rem + 1vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.blog-featured__desc { font-size: 0.9375rem; line-height: 1.85; color: var(--color-text-sub); margin-bottom: 1.25rem; }
.blog-featured__more { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--color-primary); font-weight: 500; }

@media (prefers-reduced-motion: reduce) { .blog-featured__link:hover { transform: none; box-shadow: none; } }

/* card grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.75rem + 1vw, 1.75rem);
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card__link {
  display: block;
  background: var(--color-bg);
  border: 1px solid rgba(26,26,26,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--p4-ease), box-shadow 0.35s var(--p4-ease);
}
.blog-card__link:hover { transform: translateY(-4px); box-shadow: var(--token-shadow-card, 0 10px 30px rgba(80,45,30,0.08)); }
.blog-card__visual {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-sub);
  display: grid;
  place-items: start end;
  padding: 1rem;
}
.blog-card__cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: #fff;
  padding: 0.25rem 0.75rem;
}
.blog-card__body { padding: 1.5rem; }
.blog-card__meta { font-family: 'DM Sans', sans-serif; font-size: 0.8125rem; color: var(--color-text-sub); margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.blog-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.blog-card__desc { font-size: 0.875rem; line-height: 1.75; color: var(--color-text-sub); }

@media (prefers-reduced-motion: reduce) { .blog-card__link:hover { transform: none; box-shadow: none; } }

/* pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.blog-pagination__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid rgba(26,26,26,0.1);
  transition: all 0.25s ease;
}
.blog-pagination__btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.blog-pagination__btn.is-current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.blog-pagination__ellipsis { color: var(--color-text-sub); padding: 0 0.5rem; }
.blog-pagination__next {
  margin-left: 1rem;
  padding: 0 1.25rem;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--color-text);
  color: #fff;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  transition: background 0.25s ease;
}
.blog-pagination__next:hover { background: var(--color-primary); }


/* =============================================================
   phase4-addition: campaign-strip
   ============================================================= */
.campaign-strip {
  background: var(--color-primary);
  color: #fff;
  padding-block: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
  position: relative;
  overflow: hidden;
}
.campaign-strip::before,
.campaign-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 50px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  z-index: 1;
}
.campaign-strip::before { left: 0; }
.campaign-strip::after { right: 0; transform: scaleX(-1); }
.campaign-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  justify-content: center;
}
.campaign-strip__badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--color-accent);
}
.campaign-strip__message { font-size: 0.9375rem; letter-spacing: 0.02em; }
.campaign-strip__message strong { font-weight: 700; }
.campaign-strip__sep { margin: 0 0.625rem; opacity: 0.5; }
.campaign-strip__sub { opacity: 0.8; font-size: 0.8125rem; }
.campaign-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: transform 0.3s var(--p4-ease);
}
.campaign-strip__cta:hover { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) { .campaign-strip__cta:hover { transform: none; } }

/* =============================================================
   phase4-addition: fv-banner (初回料金バナー)
   ============================================================= */
.fv-banner {
  padding-block: var(--p4-section-y);
  background: var(--color-bg);
}
.fv-banner__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: center;
  padding: clamp(2.5rem, 2rem + 2vw, 4.5rem);
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 767px) { .fv-banner__inner { grid-template-columns: 1fr; } }
.fv-banner__badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent);
  color: var(--color-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.fv-banner__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-feature-settings: "palt";
}
.fv-banner__body { font-size: 0.9375rem; opacity: 0.85; margin-bottom: 1rem; }
.fv-banner__price {
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}
.fv-banner__yen { font-size: 1.5rem; opacity: 0.85; margin-right: 0.25rem; }
.fv-banner__price strong { font-size: clamp(3.5rem, 2.5rem + 4vw, 6rem); font-weight: 700; color: var(--color-accent); }
.fv-banner__tax { font-size: 0.875rem; opacity: 0.7; margin-left: 0.5rem; letter-spacing: 0.05em; }
.fv-banner__right {
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
}
.fv-banner__summary-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.fv-banner__summary-list { list-style: none; margin-bottom: 1rem; }
.fv-banner__summary-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
}
.fv-banner__summary-list li:last-child { border-bottom: none; }
.fv-banner__summary-price { font-family: 'DM Sans', sans-serif; font-weight: 500; }
.fv-banner__summary-price--accent { color: var(--color-accent); font-size: 1.125rem; }
.fv-banner__link { font-family: 'DM Sans', sans-serif; font-size: 0.8125rem; color: var(--color-accent); text-decoration: none; }
.fv-banner__link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   phase4-addition: services-13 (施術メニュー13種)
   ============================================================= */
.services-13__group { margin-bottom: clamp(2.5rem, 2rem + 1.5vw, 4rem); }
.services-13__group:last-child { margin-bottom: 0; }
.services-13__group-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(217, 48, 31, 0.15);
}
.services-13__grid { display: grid; gap: clamp(0.75rem, 0.5rem + 0.75vw, 1.25rem); }
.services-13__grid--signature { grid-template-columns: 1fr 1fr; }
.services-13__grid--core { grid-template-columns: repeat(4, 1fr); }
.services-13__grid--small { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
  .services-13__grid--signature { grid-template-columns: 1fr; }
  .services-13__grid--core { grid-template-columns: 1fr 1fr; }
  .services-13__grid--small { grid-template-columns: 1fr 1fr; }
}

.service-card {
  padding: clamp(1.25rem, 1rem + 0.75vw, 2rem);
  background: var(--color-bg);
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: transform 0.35s var(--p4-ease), box-shadow 0.35s var(--p4-ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--token-shadow-card, 0 10px 30px rgba(80,45,30,0.08)); border-color: rgba(217, 48, 31, 0.2); }
.service-card--lg { padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem); }
.service-card--md { padding: clamp(1.5rem, 1.25rem + 1vw, 2rem); }
.service-card--sm { padding: clamp(1rem, 0.875rem + 0.5vw, 1.25rem); }
.service-card__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.service-card__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.service-card--lg .service-card__name { font-size: clamp(1.125rem, 1rem + 0.4vw, 1.375rem); }
.service-card__tagline { font-size: 0.8125rem; color: var(--color-text-sub); margin-bottom: 0.75rem; }
.service-card__desc { font-size: 0.875rem; line-height: 1.75; color: var(--color-text-sub); }
.services-13__more { text-align: center; margin-top: clamp(2rem, 1.5rem + 1.5vw, 3rem); }

@media (prefers-reduced-motion: reduce) { .service-card:hover { transform: none; box-shadow: none; } }

/* =============================================================
   phase4-addition: body-map
   ============================================================= */
.body-map {
  --body-color: rgba(26, 26, 26, 0.06);
}
.body-map__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 600px) { .body-map__wrap { grid-template-columns: 1fr; } }
.body-map__figure {
  position: relative;
  aspect-ratio: 200 / 450;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}
.body-map__label-pos {
  position: absolute;
  top: 4%; left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  background: var(--color-bg);
  padding: 0.25rem 0.625rem;
  z-index: 2;
}
.body-map__svg { display: block; width: 100%; height: 100%; }

.body-map__hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid var(--color-primary);
  background: var(--color-bg);
  color: var(--color-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--p4-ease), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  z-index: 3;
}
.body-map__hotspot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  opacity: 0;
  transform: scale(0.85);
  transition: transform 0.4s var(--p4-ease), opacity 0.4s ease;
  pointer-events: none;
}
.body-map__hotspot:hover,
.body-map__hotspot:focus-visible {
  background: var(--color-primary);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(217, 48, 31, 0.25);
  outline: none;
}
.body-map__hotspot:hover::before,
.body-map__hotspot:focus-visible::before { opacity: 1; transform: scale(1.25); }
.body-map__hotspot span { display: block; line-height: 1; }

.body-map__note { text-align: center; margin-top: 2rem; font-size: 0.875rem; color: var(--color-text-sub); }

@media (prefers-reduced-motion: reduce) {
  .body-map__hotspot:hover,
  .body-map__hotspot:focus-visible { transform: translate(-50%, -50%); }
  .body-map__hotspot:hover::before { transform: scale(1.1); }
}

/* Body modal */
.body-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.body-modal[aria-hidden="false"] { display: block; }
.body-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(4px);
  animation: modal-fade 0.3s var(--p4-ease);
}
.body-modal__inner {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 640px);
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: var(--color-bg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  animation: modal-rise 0.4s var(--p4-ease);
}
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-rise { from { opacity: 0; transform: translate(-50%, -40%); } to { opacity: 1; transform: translate(-50%, -50%); } }

.body-modal__close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.1);
  color: var(--color-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}
.body-modal__close:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.body-modal__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.body-modal__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  font-feature-settings: "palt";
}
.body-modal__intro { font-size: 0.9375rem; line-height: 1.85; color: var(--color-text-sub); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(26, 26, 26, 0.08); }

.body-modal__symptoms { display: grid; gap: 0.75rem; }
.body-modal__symptom {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--color-bg-sub);
  border-left: 3px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.body-modal__symptom:hover { border-left-color: var(--color-primary); transform: translateX(4px); }
.body-modal__symptom--nolink { cursor: default; }
.body-modal__symptom-head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; margin-bottom: 0.375rem; }
.body-modal__symptom-name { font-family: 'Noto Sans JP', sans-serif; font-weight: 500; color: var(--color-text); }
.body-modal__symptom-badge { font-family: 'DM Sans', sans-serif; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.125rem 0.5rem; }
.body-modal__symptom-badge--available { color: var(--color-primary); background: rgba(217, 48, 31, 0.08); }
.body-modal__symptom-badge--soon { color: var(--color-text-sub); background: rgba(26, 26, 26, 0.06); }
.body-modal__symptom-summary { font-size: 0.875rem; line-height: 1.75; color: var(--color-text-sub); }

@media (prefers-reduced-motion: reduce) {
  .body-modal__backdrop { animation: none; }
  .body-modal__inner { animation: none; }
  .body-modal__symptom:hover { transform: none; }
}

/* =============================================================
   phase4-addition: recruit-banner
   ============================================================= */
.recruit-banner {
  padding-block: clamp(3rem, 2rem + 3vw, 5rem);
  background: var(--color-bg);
}
.recruit-banner__inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: center;
  padding: clamp(2.5rem, 2rem + 2vw, 4rem);
  background: var(--color-text);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--p4-ease), box-shadow 0.35s var(--p4-ease);
}
.recruit-banner__inner:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2); }
.recruit-banner__inner::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(217, 48, 31, 0.3));
  pointer-events: none;
}
@media (max-width: 767px) { .recruit-banner__inner { grid-template-columns: 1fr; } }

.recruit-banner__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.recruit-banner__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.75rem, 1.5rem + 1.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  font-feature-settings: "palt";
}
.recruit-banner__body { font-size: 0.9375rem; line-height: 1.85; opacity: 0.85; max-width: 480px; }
.recruit-banner__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  color: var(--color-accent);
}
.recruit-banner__cta-text { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.recruit-banner__inner:hover .recruit-banner__cta svg { transform: translateX(6px); transition: transform 0.35s var(--p4-ease); }

@media (prefers-reduced-motion: reduce) {
  .recruit-banner__inner:hover { transform: none; box-shadow: none; }
  .recruit-banner__inner:hover .recruit-banner__cta svg { transform: none; }
}


/* =============================================================
   phase4-addition-v2: campaign-section (大型キャンペーン)
   ============================================================= */
.campaign-section {
  padding-block: clamp(4rem, 3rem + 4vw, 7rem);
  background: var(--color-bg);
}
.campaign-section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.campaign-section__eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.25rem 1rem;
  background: rgba(196, 145, 58, 0.1);
  margin-bottom: 1.25rem;
}
.campaign-section__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
  font-feature-settings: "palt";
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.campaign-section__title-deco {
  color: var(--color-primary);
  font-weight: 300;
  font-size: 0.7em;
  transform: translateY(-2px);
}

.campaign-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0.75rem + 1vw, 1.75rem);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 767px) { .campaign-section__grid { grid-template-columns: 1fr; } }

.campaign-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: transform 0.4s var(--p4-ease), box-shadow 0.4s var(--p4-ease);
  background: var(--color-bg-sub);
}
.campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(217, 48, 31, 0.15);
}
.campaign-card__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.campaign-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--p4-ease);
}
.campaign-card:hover .campaign-card__visual img { transform: scale(1.05); }

.campaign-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  color: #fff;
  background: var(--color-primary);
}
.campaign-card__placeholder--a { background: var(--color-primary); }
.campaign-card__placeholder--b { background: linear-gradient(135deg, #1A1A1A 0%, #3d2424 100%); }
.campaign-card__placeholder::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(217, 173, 101, 0.2), transparent 70%);
  pointer-events: none;
}
.campaign-card__placeholder-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.campaign-card__placeholder-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  font-feature-settings: "palt";
  position: relative;
  z-index: 1;
}
.campaign-card__placeholder-price {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.25rem, 1.75rem + 2vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 0.25rem;
}
.campaign-card__placeholder-price span { font-size: 0.5em; margin-right: 0.125rem; }
.campaign-card__placeholder-note {
  font-size: 0.8125rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

.campaign-card__hover {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--color-primary);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  transform: translateY(100%);
  transition: transform 0.35s var(--p4-ease);
  z-index: 2;
}
.campaign-card:hover .campaign-card__hover { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .campaign-card:hover { transform: none; box-shadow: none; }
  .campaign-card:hover .campaign-card__visual img { transform: none; }
  .campaign-card:hover .campaign-card__hover { transform: translateY(0); }
}

/* =============================================================
   phase4-addition-v2: news-highlight (骨ゴリレイアウト / NAORU)
   ============================================================= */
.news-highlight {
  padding-block: clamp(4rem, 3rem + 4vw, 7rem);
  background: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.news-highlight::before {
  content: "NEWS";
  position: absolute;
  top: -15%;
  left: -2%;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(8rem, 15vw, 20rem);
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
}
.news-highlight__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) { .news-highlight__inner { grid-template-columns: 1fr; } }

.news-highlight__eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(196, 145, 58, 0.15);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}
.news-highlight__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  font-feature-settings: "palt";
}
.news-highlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: var(--color-accent);
  color: var(--color-text);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.3s var(--p4-ease), box-shadow 0.3s var(--p4-ease);
}
.news-highlight__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); }

.news-highlight__list { list-style: none; }
.news-highlight__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}
.news-highlight__item:last-child { border-bottom: none; }
.news-highlight__item:hover { background: rgba(255, 255, 255, 0.03); }

.news-highlight__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 0.75rem + 1vw, 2rem);
  padding: 1.25rem 0;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 600px) { .news-highlight__link { grid-template-columns: 1fr auto; } }
.news-highlight__date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.03em;
  min-width: 5.5rem;
}
@media (max-width: 600px) { .news-highlight__date { grid-column: 1 / -1; font-size: 0.8125rem; } }
.news-highlight__text { font-size: 0.9375rem; line-height: 1.65; }
.news-highlight__link svg { transition: transform 0.3s var(--p4-ease); opacity: 0.6; }
.news-highlight__link:hover svg { transform: translateX(4px); opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .news-highlight__cta:hover { transform: none; box-shadow: none; }
  .news-highlight__link:hover svg { transform: none; }
}

/* =============================================================
   phase4-addition-v2: fv-banner-v2 (エディトリアル)
   ============================================================= */
.fv-banner-v2 {
  position: relative;
  padding-block: clamp(5rem, 4rem + 4vw, 8rem);
  background: var(--color-bg);
  overflow: hidden;
}
.fv-banner-v2__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.045;
}
.fv-banner-v2__bg-text {
  position: absolute;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: var(--color-primary);
  white-space: nowrap;
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
}
.fv-banner-v2__bg-text--first { top: 5%; left: -3%; font-size: clamp(10rem, 22vw, 28rem); }
.fv-banner-v2__bg-text--visit { bottom: -8%; right: -3%; font-size: clamp(8rem, 18vw, 22rem); }

.fv-banner-v2__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--p4-gutter);
}
@media (max-width: 900px) { .fv-banner-v2__inner { grid-template-columns: 1fr; } }

.fv-banner-v2__priceside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.fv-banner-v2__priceside .fv-banner-v2__pricewrap {
  margin-bottom: 0;
  width: 100%;
  flex-wrap: wrap;
}

.fv-banner-v2__stamp {
  position: absolute;
  top: 0; left: 20px;
  display: grid;
  gap: 4px;
  padding: 0.75rem 0.5rem;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  transform: rotate(-4deg);
  z-index: 2;
}
.fv-banner-v2__stamp::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.fv-banner-v2__stamp span { position: relative; line-height: 1; }
@media (max-width: 900px) { .fv-banner-v2__stamp { left: 10px; top: 10px; font-size: 0.75rem; } }

.fv-banner-v2__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.fv-banner-v2__heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.fv-banner-v2__heading-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1;
  font-feature-settings: "palt";
}
.fv-banner-v2__heading-en {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--color-text-sub);
}
.fv-banner-v2__lead { font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.0625rem); line-height: 1.85; color: var(--color-text-sub); margin-bottom: 2rem; max-width: 480px; }

.fv-banner-v2__pricewrap {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.5rem + 1.5vw, 2rem);
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  flex-wrap: wrap;
}
.fv-banner-v2__price-old { display: flex; flex-direction: column; gap: 0.125rem; }
.fv-banner-v2__price-old-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-sub);
}
.fv-banner-v2__price-old-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  color: var(--color-text-sub);
  text-decoration: line-through;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 2px;
}
.fv-banner-v2__price-arrow { color: var(--color-text-sub); opacity: 0.6; }
.fv-banner-v2__price-new {
  font-family: 'DM Sans', sans-serif;
  line-height: 0.9;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.fv-banner-v2__price-new-yen {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  color: var(--color-text-sub);
}
.fv-banner-v2__price-new-amount {
  font-size: clamp(4rem, 3.25rem + 3vw, 6.5rem);
  font-weight: 700;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}
.fv-banner-v2__price-new-tax {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: var(--color-text-sub);
  margin-left: 0.375rem;
  letter-spacing: 0.05em;
}

.fv-banner-v2__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.fv-banner-v2__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text-sub);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.fv-banner-v2__link:hover { color: var(--color-primary); border-color: var(--color-primary); }

.fv-banner-v2__side {
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  background: var(--color-bg-sub);
  border-left: 3px solid var(--color-primary);
}
.fv-banner-v2__side-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.fv-banner-v2__side-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.fv-banner-v2__side-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.fv-banner-v2__side-list > div { display: flex; justify-content: space-between; padding: 0.625rem 0; border-bottom: 1px solid rgba(26, 26, 26, 0.08); }
.fv-banner-v2__side-list dt { font-size: 0.875rem; color: var(--color-text-sub); }
.fv-banner-v2__side-list dd { font-family: 'DM Sans', sans-serif; font-size: 1.0625rem; font-weight: 500; color: var(--color-text); letter-spacing: -0.01em; }
.fv-banner-v2__side-more { font-size: 0.8125rem; color: var(--color-primary); text-decoration: none; }
.fv-banner-v2__side-more:hover { text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   phase4-addition-v2: services-v2 (アイコン + stagger)
   ============================================================= */
.services-v2 { padding-block: var(--p4-section-y); background: var(--color-bg); }

.services-v2__header { max-width: 780px; margin: 0 auto clamp(3rem, 2rem + 2vw, 5rem); text-align: center; }
.services-v2__eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.services-v2__title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-feature-settings: "palt";
}
.services-v2__title-en {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.25rem, 1rem + 1vw, 2rem);
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}
.services-v2__title-ja { font-size: clamp(1.875rem, 1.5rem + 2vw, 3.25rem); }
.services-v2__lead { font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.0625rem); line-height: 1.85; color: var(--color-text-sub); }

.services-v2__group { margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.services-v2__group:last-of-type { margin-bottom: 0; }
.services-v2__group-label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(217, 48, 31, 0.12);
}
.services-v2__group-label-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}
.services-v2__group-label-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-sub);
}

.services-v2__grid { display: grid; gap: clamp(0.75rem, 0.5rem + 0.75vw, 1.25rem); }
.services-v2__grid--signature { grid-template-columns: 1fr 1fr; }
.services-v2__grid--core { grid-template-columns: repeat(4, 1fr); }
.services-v2__grid--small { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
  .services-v2__grid--signature { grid-template-columns: 1fr; }
  .services-v2__grid--core { grid-template-columns: 1fr 1fr; }
  .services-v2__grid--small { grid-template-columns: 1fr 1fr; }
}

.service-v2 {
  position: relative;
  padding: clamp(1.25rem, 1rem + 0.75vw, 2rem);
  background: var(--color-bg);
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: transform 0.45s var(--p4-ease), box-shadow 0.45s var(--p4-ease), border-color 0.3s ease, opacity 0.6s var(--p4-ease);
  opacity: 0;
  transform: translateY(24px);
  overflow: hidden;
}
.service-v2.is-in { opacity: 1; transform: translateY(0); }
.service-v2::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0; right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--p4-ease);
}
.service-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(217, 48, 31, 0.1);
  border-color: rgba(217, 48, 31, 0.2);
}
.service-v2:hover::before { transform: scaleX(1); }
.service-v2--lg { padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem); }
.service-v2--md { padding: clamp(1.5rem, 1.25rem + 1vw, 2rem); }
.service-v2--core { padding: clamp(1.25rem, 1rem + 0.75vw, 1.75rem); }
.service-v2--sm { padding: clamp(1rem, 0.875rem + 0.5vw, 1.5rem); }

.service-v2__icon { display: none; }
a.service-v2 { text-decoration: none; color: inherit; display: block; }
a.service-v2:hover .service-v2__name { color: var(--color-primary); }

/* price-faq 左カードをイラストに置換した時の調整 */
.price-faq__card--illust {
  background: transparent !important;
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-faq__card--illust svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* TOP 以外のページではヘッダーを初期から「白背景+ダーク文字」にする
   (body.is-home 以外のページは .header.is-scrolled と同じ見た目) */
body:not(.is-home) .header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
}
body:not(.is-home) .header .header__nav-link {
  color: var(--color-text);
}
body:not(.is-home) .header .header__logo img {
  filter: none;
}
body:not(.is-home) .header .btn--member {
  color: var(--color-text);
  border-color: rgba(26, 26, 26, 0.2);
}

/* About 代表メッセージ背景画像(右側のみ薄く配置) */
.about-message {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.about-message__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
  filter: grayscale(0.15);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0.8) 75%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0.8) 75%, rgba(0,0,0,0) 100%);
}
.about-message > .about-message__body,
.about-message > .about-message__sig {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .about-message__bg {
    width: 100%;
    opacity: 0.12;
    object-position: center top; /* 顔(写真上部)が見切れないように上寄せ */
    /* ハードな矩形の縁(=無駄な線)を消すため、顔まわりを中心に全方向へフェード */
    -webkit-mask-image: radial-gradient(135% 95% at 50% 26%, #000 38%, transparent 82%);
    mask-image: radial-gradient(135% 95% at 50% 26%, #000 38%, transparent 82%);
  }
}

.service-v2__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.service-v2__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.service-v2--lg .service-v2__name { font-size: clamp(1.125rem, 1rem + 0.4vw, 1.375rem); }
.service-v2__tagline { font-size: 0.8125rem; color: var(--color-text-sub); margin-bottom: 0.625rem; }
.service-v2__desc { font-size: 0.875rem; line-height: 1.75; color: var(--color-text-sub); }

.service-v2__arrow {
  position: absolute;
  right: 1.25rem; top: 1.25rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--color-text-sub);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.35s var(--p4-ease);
}
.service-v2:hover .service-v2__arrow { opacity: 1; transform: translateX(0); color: var(--color-primary); }

.services-v2__more { text-align: center; margin-top: clamp(2.5rem, 2rem + 1.5vw, 4rem); }

@media (prefers-reduced-motion: reduce) {
  .service-v2 { opacity: 1; transform: none; transition: none; }
  .service-v2:hover { transform: none; box-shadow: none; }
  .service-v2:hover::before { transform: scaleX(0); }
  .service-v2:hover .service-v2__icon { transform: none; }
}

/* =============================================================
   phase4-addition-v2: body-map 強化
   ============================================================= */
.body-map { --body-color: rgba(26, 26, 26, 0.08); }

/* ホットスポット: pulse ring + active glow */
.body-map__hotspot {
  animation: body-pulse 2.5s var(--p4-ease) infinite;
}
@keyframes body-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 48, 31, 0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(217, 48, 31, 0); }
}
.body-map__hotspot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  opacity: 0;
  animation: body-ripple 2.8s var(--p4-ease) infinite;
  pointer-events: none;
}
@keyframes body-ripple {
  0%   { transform: scale(0.8); opacity: 0; }
  30%  { opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.body-map__hotspot:hover {
  animation: none;
  background: var(--color-primary);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 8px 32px rgba(217, 48, 31, 0.4), 0 0 0 8px rgba(196, 145, 58, 0.2);
}
.body-map__hotspot:hover::after { animation: none; opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .body-map__hotspot { animation: none; }
  .body-map__hotspot::after { animation: none; }
}

/* symptom cards stagger in */
.body-modal__symptom {
  opacity: 0;
  transform: translateY(8px);
  animation: body-modal-symptom-in 0.5s var(--p4-ease) forwards;
}
@keyframes body-modal-symptom-in {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .body-modal__symptom { animation: none; opacity: 1; transform: none; }
}

.body-modal__symptom-badge--available::after { content: ""; }
.body-modal__empty { font-size: 0.9375rem; color: var(--color-text-sub); padding: 1rem; background: var(--color-bg-sub); text-align: center; }

/* =============================================================
   campaign LP template
   ============================================================= */
.campaign-lp-hero {
  position: relative;
  padding-block: clamp(8rem, 6rem + 8vw, 12rem) clamp(3rem, 2rem + 3vw, 5rem);
  overflow: hidden;
  background: #1A1A1A;
  color: #fff;
}
.campaign-lp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.campaign-lp-hero__inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding-inline: var(--p4-gutter); }
.campaign-lp-hero__eyebrow { font-family: 'DM Sans', sans-serif; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1.25rem; margin-top: 1rem; }
.campaign-lp-hero__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 1.5rem + 3vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-feature-settings: "palt";
}
.campaign-lp-hero__subtitle { font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.125rem); opacity: 0.8; }

.campaign-lp-body { padding-block: var(--p4-section-y); background: var(--color-bg); }
.campaign-lp-article { max-width: 780px; margin: 0 auto; }
.campaign-lp-block { margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem); }
.campaign-lp-block:last-child { margin-bottom: 0; }
.campaign-lp-block__heading { font-family: 'Noto Sans JP', sans-serif; font-size: clamp(1.375rem, 1.15rem + 1vw, 1.875rem); font-weight: 700; color: var(--color-text); margin-bottom: 1.25rem; letter-spacing: -0.01em; padding-left: 1rem; border-left: 3px solid var(--color-primary); }
.campaign-lp-block__body { font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.0625rem); line-height: 2; color: var(--color-text); }
.campaign-lp-block__list { list-style: none; padding-left: 0; }
.campaign-lp-block__list li { padding: 0.875rem 0 0.875rem 1.75rem; border-bottom: 1px solid rgba(26, 26, 26, 0.08); position: relative; line-height: 1.75; color: var(--color-text); }
.campaign-lp-block__list li::before { content: "✓"; position: absolute; left: 0; top: 0.875rem; color: var(--color-primary); font-weight: 700; }


/* =============================================================
   phase4-addition-v3: FV compact + vision/support
   (坂東さんフィードバック: "Keep Health" を小さく、
    ビジョン文言を追加)
   ============================================================= */
.fv__title--compact {
  font-size: clamp(2.5rem, 1.75rem + 5vw, 5.5rem) !important;
  line-height: 1 !important;
  margin-bottom: 1.25rem !important;
}
.fv__title--compact .fv__title-deep,
.fv__title--compact .fv__title-resolution {
  display: block;
  font-size: inherit !important;
  line-height: 1 !important;
}

.fv__lead--compact {
  font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.0625rem) !important;
  line-height: 1.75 !important;
  margin-bottom: 1.75rem !important;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
}

.fv__vision {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.625rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--color-accent);
  margin-bottom: 0.875rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-accent);
  max-width: 540px;
  font-feature-settings: "palt";
}
.fv__support {
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

/* =============================================================
   phase4-addition-v3: who-we-are AI block
   (service-ai を who-we-are に統合、sportip.webp を背景)
   ============================================================= */
.wwa-ai-block {
  position: relative;
  margin-top: clamp(3rem, 2rem + 3vw, 5rem);
  padding: clamp(2rem, 1.5rem + 2vw, 4rem) 0;
  min-height: 360px;
  overflow: visible;
}
.wwa-ai-block__bg {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(52%, 560px);
  aspect-ratio: 3 / 2;
  background: url('/assets/images/sportip.webp') no-repeat center/contain;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.08));
}
.wwa-ai-block__text {
  position: relative;
  z-index: 1;
  max-width: 52%;
}
.wwa-ai-block__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-feature-settings: "palt";
}
.wwa-ai-block__desc {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  line-height: 1.95;
  color: var(--color-text-sub);
  margin-bottom: 2rem;
}
.wwa-ai-block__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  color: var(--color-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: transform 0.3s var(--p4-ease), color 0.3s ease;
}
.wwa-ai-block__link:hover { transform: translateX(4px); color: var(--color-text); }
.wwa-ai-block__link-arrow { display: inline-flex; align-items: center; }

@media (max-width: 900px) {
  .wwa-ai-block__text { max-width: 100%; }
  .wwa-ai-block__bg {
    right: 0; left: 0;
    top: 0; bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    opacity: 0.08;
    background-size: 90% auto;
    background-position: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wwa-ai-block__link:hover { transform: none; }
}


/* =============================================================
   phase4-addition-v4: who-we-are AI コンテンツ化 (2026-04-19)
   h2 を日本語見出しに差し替え、本文を2カラム(text+image)に
   ============================================================= */

/* h2 日本語版 — 英字用の flush な詰め字を解除して、きちんと見出し化 */
.who-we-are__h2--ai {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: clamp(1.875rem, 1.4rem + 2.2vw, 3.25rem) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
  font-feature-settings: "palt";
  color: var(--color-text);
  text-transform: none !important;
}

/* ヘッダー行の縦ゆとりを拡大 */
.who-we-are__heads.who-we-are__heads {
  padding-block: clamp(2rem, 1.5rem + 1.5vw, 3.5rem);
}

/* 2カラムレイアウト — 縦幅を大きく確保 */
.who-we-are__content--ai {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 2rem + 2.5vw, 5rem);
  align-items: center;
  margin-top: clamp(3rem, 2rem + 3vw, 5.5rem);
  /* base .who-we-are__content の padding/max-width を ai レイアウト用に上書き
     (左 padding 8rem + max-width 680px だとテキストカラムが極端に狭くなる) */
  padding: clamp(2rem, 1.5rem + 2vw, 4.5rem) clamp(1rem, 0.5rem + 2vw, 3rem);
  max-width: none;
}
.who-we-are__content--ai .who-we-are__text-col {
  max-width: 580px;
}
.who-we-are__content--ai .who-we-are__text {
  margin-bottom: 0;
}
.who-we-are__content--ai .who-we-are__text p {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 2.05;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

/* 画像サイド — より大きく、ambient ring で奥行きを演出 */
.who-we-are__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 4;
  max-width: 680px;
  min-height: clamp(320px, 32vw, 520px);
  margin-inline: auto;
  isolation: isolate;
}
.who-we-are__visual::before {
  content: '';
  position: absolute;
  inset: 6% 8%;
  background: radial-gradient(ellipse at center,
    rgba(217, 48, 31, 0.10) 0%,
    rgba(217, 173, 101, 0.05) 35%,
    transparent 70%);
  filter: blur(48px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.who-we-are__visual img,
.who-we-are__visual picture {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.14));
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .who-we-are__content--ai {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    padding-block: clamp(1.5rem, 1rem + 2vw, 3rem);
  }
  .who-we-are__visual {
    aspect-ratio: 16 / 10;
    min-height: 260px;
    order: -1; /* モバイルでは画像を先に配置 */
  }
}


/* =============================================================
   phase4: shops-finder (2026-04-24)
   /shops/ の editorial shop finder。body.shop-page 配下に
   スコープし、既存グローバル CSS への影響を避ける。
   ============================================================= */

.shop-page {
  --color-primary-ink: #5a1313;
  --color-accent-soft: #E7C98E;
  --color-bg-deep: #F1EEEA;
  --color-text-mute: #9A9A97;
  --color-hair: rgba(26, 26, 26, 0.08);
  --color-hair-strong: rgba(26, 26, 26, 0.14);
  --color-pin: #EE4427;
  --color-line: #06C755;

  --ff-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --ff-en: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --sp-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sp-dur: 300ms;

  --sp-shadow-sm: 0 1px 2px rgba(26,26,26,0.04), 0 2px 6px rgba(26,26,26,0.04);
  --sp-shadow-md: 0 4px 14px rgba(26,26,26,0.06), 0 12px 28px rgba(26,26,26,0.08);
  --sp-shadow-lg: 0 18px 48px rgba(26,26,26,0.14);

  font-family: var(--ff-ja);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}
.shop-page * { box-sizing: border-box; }

.shop-page .num,
.shop-page .en {
  font-family: var(--ff-en);
  font-feature-settings: "ss01", "tnum";
}
.shop-page .eyebrow {
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
}

.shop-page .page-fade { animation: spPageIn 0.7s var(--sp-ease) both; }
@keyframes spPageIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.shop-page :focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.shop-page .sp-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

/* ── Header ──────────────────────────────────────────────── */
.shop-page .sp-header {
  border-bottom: 1px solid var(--color-hair);
  background: #fff;
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: saturate(1.1) blur(8px);
}
.shop-page .sp-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.shop-page .sp-brand {
  display: inline-flex; align-items: baseline; gap: 8px;
  text-decoration: none; color: var(--color-text);
}
.shop-page .sp-brand .pin-glyph { transform: translateY(5px); }
.shop-page .sp-brand__name { font-size: 22px; font-weight: 700; letter-spacing: 0.02em; }
.shop-page .sp-brand__sub { font-size: 12px; color: var(--color-text-sub); letter-spacing: 0.1em; }

.shop-page .sp-nav { display: flex; align-items: center; gap: 28px; }
.shop-page .sp-nav a {
  color: var(--color-text); text-decoration: none; font-size: 14px;
  font-weight: 500; position: relative;
}
.shop-page .sp-nav a[aria-current="page"] { color: var(--color-primary); }
.shop-page .sp-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -26px;
  height: 2px; background: var(--color-primary);
}
.shop-page .sp-nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-primary); color: #fff !important;
  padding: 10px 18px; border-radius: 999px; font-size: 13px;
  transition: background var(--sp-dur) var(--sp-ease);
}
.shop-page .sp-nav__cta:hover { background: var(--color-primary-ink); }
.shop-page .sp-nav__cta::after { display: none !important; }

.shop-page .sp-burger {
  background: none; border: 0; width: 32px; height: 32px;
  display: none; flex-direction: column; justify-content: center; gap: 4px; padding: 0;
  cursor: pointer;
}
.shop-page .sp-burger span { display: block; height: 1.5px; background: var(--color-text); }

@media (max-width: 900px) {
  .shop-page .sp-header__inner { height: 56px; }
  .shop-page .sp-nav { display: none; }
  .shop-page .sp-burger { display: flex; }
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.shop-page .sp-crumb {
  /* 標準 .header が position:fixed のため、先頭要素にヘッダー高さ分のオフセットを確保 */
  padding: calc(var(--header-h) + 16px) 0 16px;
  border-bottom: 1px solid var(--color-hair);
  background: var(--color-bg-sub);
}
.shop-page .sp-crumb ol {
  display: flex; gap: 10px; font-size: 12px; color: var(--color-text-sub);
  list-style: none; margin: 0; padding: 0;
}
.shop-page .sp-crumb li + li::before { content: "›"; margin-right: 10px; opacity: 0.5; }
.shop-page .sp-crumb a { color: var(--color-text-sub); text-decoration: none; }
.shop-page .sp-crumb li[aria-current] { color: var(--color-text); }

/* ── Search section ─────────────────────────────────────── */
.shop-page .sp-search {
  padding: clamp(40px, 4vw + 20px, 80px) 0 48px;
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-sub) 100%);
  overflow: hidden;
}
.shop-page .sp-search__head {
  max-width: 720px;
  margin-bottom: clamp(28px, 3vw + 10px, 48px);
  position: relative; z-index: 2;
}
.shop-page .sp-search__head .eyebrow { margin-bottom: 18px; display: block; }
.shop-page .sp-h1 {
  font-size: clamp(32px, 2.4vw + 20px, 52px);
  line-height: 1.22; font-weight: 700;
  letter-spacing: -0.02em; margin: 0 0 22px;
  color: var(--color-text);
}
.shop-page .sp-h1__sub {
  display: block; font-size: clamp(11px, 0.15vw + 10px, 13px);
  color: var(--color-text-sub);
  font-weight: 500; letter-spacing: 0.10em; margin-top: 18px;
  font-family: var(--ff-en);
  text-transform: none;
}
.shop-page .sp-lede {
  font-size: clamp(14px, 0.25vw + 13px, 17px);
  color: var(--color-text-sub);
  max-width: 560px; margin: 0;
  line-height: 1.75;
}
.shop-page .sp-lede__x {
  color: var(--color-accent); margin: 0 6px;
  font-family: var(--ff-en); font-weight: 500;
  font-size: 0.92em;
}

/* watermark legacy (hidden — replaced by counter) */
.shop-page .sp-search__watermark { display: none !important; }

/* Hero — flex with counter on the right */
.shop-page .sp-search__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 80px);
  flex-wrap: wrap;
}
.shop-page .sp-search__hero .sp-search__head {
  flex: 1 1 480px;
  min-width: 0;
}

/* Typographic shop counter (right) */
.shop-page .sp-search__counter {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: 10px;
  row-gap: 12px;
  padding: 8px 0 0;
  position: relative;
}
.shop-page .sp-counter__num {
  font-family: var(--ff-en);
  font-size: clamp(96px, 8vw + 32px, 180px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
  grid-row: 1; grid-column: 1;
  text-shadow: 0 2px 24px rgba(214, 64, 64, 0.08);
}
.shop-page .sp-counter__unit {
  font-size: clamp(22px, 1vw + 16px, 34px);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0;
  line-height: 1;
  padding-bottom: clamp(12px, 1vw, 22px);
  grid-row: 1; grid-column: 2;
}
.shop-page .sp-counter__label {
  font-family: var(--ff-en);
  font-size: clamp(11px, 0.15vw + 10px, 13px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.55;
  grid-row: 2; grid-column: 1 / -1;
  margin-top: 6px;
  position: relative;
  padding-top: 14px;
}
.shop-page .sp-counter__label::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--color-accent);
}

@media (max-width: 900px) {
  .shop-page .sp-search { padding-top: clamp(56px, 12vw, 96px); padding-bottom: 28px; }
  .shop-page .sp-search__hero {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  /* Hide text head on SP — counter becomes the hero */
  .shop-page .sp-search__hero .sp-search__head {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  /* Counter centered, big & bold */
  .shop-page .sp-search__hero .sp-search__counter {
    margin: 0 auto;
    padding: 0;
    grid-template-columns: auto auto;
    column-gap: 10px;
    row-gap: 14px;
    align-items: end;
    justify-content: center;
    text-align: center;
    flex: 0 0 auto;
    position: relative;
  }
  .shop-page .sp-counter__num {
    font-size: clamp(110px, 28vw, 180px);
    line-height: 0.86;
    letter-spacing: -0.05em;
    grid-row: 1; grid-column: 1;
    text-shadow: 0 4px 32px rgba(214, 64, 64, 0.10);
  }
  .shop-page .sp-counter__unit {
    font-size: clamp(28px, 6vw, 40px);
    padding-bottom: clamp(10px, 2vw, 18px);
    grid-row: 1; grid-column: 2;
  }
  .shop-page .sp-counter__label {
    grid-row: 2; grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 14px;
    font-size: 11px;
    letter-spacing: 0.24em;
    line-height: 1.55;
    text-align: center;
  }
  .shop-page .sp-counter__label::before {
    width: 32px; height: 2px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Spacing between counter hero and tabs */
  .shop-page .sp-search__hero .sp-tabs {
    margin-top: clamp(40px, 9vw, 72px);
  }
}

/* ── Tabs ───────────────────────────────────────────────── */
.shop-page .sp-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-hair-strong);
  position: relative;
  gap: 0;
  margin-bottom: 32px;
}
.shop-page .sp-tab {
  flex: 1;
  background: none; border: 0;
  padding: 20px 16px 22px;
  display: flex; align-items: baseline; gap: 14px;
  font-family: inherit; color: var(--color-text-sub);
  font-size: 18px; font-weight: 500;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: color var(--sp-dur) var(--sp-ease);
}
.shop-page .sp-tab:hover { color: var(--color-text); }
.shop-page .sp-tab.is-active { color: var(--color-primary); }
.shop-page .sp-tab__num { font-size: 12px; color: var(--color-text-mute); letter-spacing: 0.1em; }
.shop-page .sp-tab.is-active .sp-tab__num { color: var(--color-accent); }

.shop-page .sp-tabs__underline {
  position: absolute; bottom: -1px; height: 2px;
  background: var(--color-primary);
  width: 33.333%;
  transition: transform var(--sp-dur) var(--sp-ease);
}
.shop-page .sp-tabs__underline[data-pos="filter"] { transform: translateX(0); }
.shop-page .sp-tabs__underline[data-pos="geo"]    { transform: translateX(100%); }
.shop-page .sp-tabs__underline[data-pos="map"]    { transform: translateX(200%); }
.shop-page .sp-tabs__underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--color-accent); opacity: 0.4;
}

@media (max-width: 700px) {
  .shop-page .sp-tab {
    padding: 14px 8px 16px; font-size: 13px; gap: 8px;
    flex-direction: column; align-items: flex-start;
  }
}

/* ── Panels ─────────────────────────────────────────────── */
.shop-page .sp-panels { min-height: 180px; position: relative; }
.shop-page .sp-panel { animation: spPanelFade 0.45s var(--sp-ease); }
.shop-page .sp-panel[hidden] { display: none; }

/* 店舗検索ヒーロー: タブ＋パネルを全幅化し、エリアグリッドをヒーロー直下に配置 */
.shop-page .sp-search__hero .sp-tabs { flex-basis: 100%; width: 100%; }
.shop-page .sp-search__hero .sp-panels { flex-basis: 100%; width: 100%; }
.shop-page .sp-pref-index--hero { margin-top: 0; padding-top: 0; border-top: 0; }
@keyframes spPanelFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.shop-page .sp-panel--map .sp-panel__lead {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 16px;
}
.shop-page .sp-panel--map p { margin: 0; font-size: 16px; color: var(--color-text); }
.shop-page .sp-counter {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--color-text-sub);
}
.shop-page .sp-counter__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-pin);
  box-shadow: 0 0 0 4px rgba(238, 68, 39, 0.18);
  animation: spPulse 1.8s ease-in-out infinite;
}
@keyframes spPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(238, 68, 39, 0.18); }
  50%     { box-shadow: 0 0 0 8px rgba(238, 68, 39, 0.06); }
}

.shop-page .sp-regions { display: flex; flex-wrap: wrap; gap: 8px; }
.shop-page .sp-region {
  background: #fff; border: 1px solid var(--color-hair-strong);
  color: var(--color-text);
  padding: 10px 20px; border-radius: 999px;
  font-family: inherit; font-size: 14px; cursor: pointer;
  transition: transform var(--sp-dur) var(--sp-ease),
              background var(--sp-dur) var(--sp-ease),
              color var(--sp-dur) var(--sp-ease),
              border-color var(--sp-dur) var(--sp-ease);
}
.shop-page .sp-region:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}
.shop-page .sp-region.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* 都道府県サブ絞り込み (エリア選択後に表示) */
.shop-page .sp-prefs {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--color-hair);
  animation: sp-prefs-in 0.3s var(--sp-ease) both;
}
.shop-page .sp-prefs[hidden] { display: none; }
@keyframes sp-prefs-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.shop-page .sp-pref {
  background: var(--color-bg-sub); border: 1px solid var(--color-hair);
  color: var(--color-text-sub);
  padding: 7px 14px; border-radius: 999px;
  font-family: inherit; font-size: 13px; cursor: pointer;
  transition: transform var(--sp-dur) var(--sp-ease),
              background var(--sp-dur) var(--sp-ease),
              color var(--sp-dur) var(--sp-ease),
              border-color var(--sp-dur) var(--sp-ease);
}
.shop-page .sp-pref:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}
.shop-page .sp-pref.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.shop-page .sp-pref__count { opacity: 0.7; margin-left: 4px; font-size: 11px; }

.shop-page .sp-panel--geo { max-width: 680px; }
.shop-page .sp-geo__copy { font-size: 16px; color: var(--color-text); margin: 0 0 20px; }
.shop-page .sp-geo__cta {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--color-primary);
  color: #fff; border: 0;
  padding: 22px 32px; border-radius: 4px;
  font-family: inherit; font-size: 17px; font-weight: 500;
  cursor: pointer;
  box-shadow: var(--sp-shadow-md);
  transition: background var(--sp-dur) var(--sp-ease),
              transform var(--sp-dur) var(--sp-ease),
              box-shadow var(--sp-dur) var(--sp-ease);
  position: relative; overflow: hidden;
}
.shop-page .sp-geo__cta:hover:not(:disabled) {
  background: var(--color-primary-ink);
  transform: translateY(-2px);
  box-shadow: var(--sp-shadow-lg);
}
.shop-page .sp-geo__cta:disabled { opacity: 0.6; cursor: progress; }
.shop-page .sp-geo__pin { font-size: 22px; }

.shop-page .sp-geo__result {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  background: #fff; padding: 24px 28px;
  border: 1px solid var(--color-hair);
  border-left: 3px solid var(--color-primary);
}
.shop-page .sp-geo__latlng {
  font-size: 22px; font-weight: 600; color: var(--color-text);
  margin: 10px 0 6px; letter-spacing: -0.01em;
}
.shop-page .sp-geo__summary { font-size: 14px; color: var(--color-text-sub); }
.shop-page .sp-geo__reset {
  background: none; border: 1px solid var(--color-hair-strong);
  padding: 10px 18px; font-family: inherit; font-size: 13px;
  color: var(--color-text-sub); cursor: pointer; border-radius: 4px;
  transition: color var(--sp-dur) var(--sp-ease), border-color var(--sp-dur) var(--sp-ease);
}
.shop-page .sp-geo__reset:hover { color: var(--color-primary); border-color: var(--color-primary); }

@media (max-width: 700px) {
  .shop-page .sp-geo__cta { font-size: 14px; padding: 18px 20px; }
  .shop-page .sp-geo__result { flex-direction: column; align-items: flex-start; padding: 16px 18px; }
}

.shop-page .sp-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0; margin: 0 0 28px;
  list-style: none;
}
.shop-page .sp-step {
  background: #fff; border: 1px solid var(--color-hair);
  padding: 20px 24px;
  transition: border-color var(--sp-dur) var(--sp-ease),
              box-shadow var(--sp-dur) var(--sp-ease),
              opacity var(--sp-dur) var(--sp-ease);
  position: relative;
}
.shop-page .sp-step.is-active { border-color: var(--color-primary); box-shadow: var(--sp-shadow-sm); }
.shop-page .sp-step.is-done { border-color: var(--color-accent); }
.shop-page .sp-step.is-disabled { opacity: 0.5; pointer-events: none; }
.shop-page .sp-step__n {
  position: absolute; top: 16px; right: 20px;
  font-size: 11px; color: var(--color-text-mute); letter-spacing: 0.15em;
}
.shop-page .sp-step__label {
  display: block; font-size: 13px; color: var(--color-text-sub); margin-bottom: 8px;
}
.shop-page .sp-step select {
  width: 100%; padding: 10px 0;
  border: 0; border-bottom: 1px solid var(--color-hair-strong);
  background: transparent;
  font-family: inherit; font-size: 17px; color: var(--color-text);
  cursor: pointer; appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-text-sub) 50%),
                    linear-gradient(-45deg, transparent 50%, var(--color-text-sub) 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.shop-page .sp-step select:disabled { color: var(--color-text-mute); cursor: not-allowed; }

.shop-page .sp-filter__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-primary); color: #fff; border: 0;
  padding: 16px 32px; font-family: inherit; font-size: 15px; font-weight: 500;
  cursor: pointer; border-radius: 4px;
  transition: background var(--sp-dur) var(--sp-ease),
              transform var(--sp-dur) var(--sp-ease);
}
.shop-page .sp-filter__cta:hover:not(:disabled) { background: var(--color-primary-ink); transform: translateY(-1px); }
.shop-page .sp-filter__cta:disabled { background: var(--color-text-mute); cursor: not-allowed; }

@media (max-width: 700px) {
  .shop-page .sp-steps { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Big map ────────────────────────────────────────────── */
.shop-page .sp-map-sec {
  background: var(--color-bg-deep);
  padding: 40px 0;
}
.shop-page .sp-map-frame {
  position: relative;
  max-width: 1360px; margin: 0 auto;
  background: #EFEDE8;
  box-shadow: var(--sp-shadow-md);
  height: clamp(420px, 55vw, 680px);
}
.shop-page .sp-map { width: 100%; height: 100%; }
.shop-page .sp-map__overlay {
  position: absolute; z-index: 500;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  box-shadow: var(--sp-shadow-sm);
  pointer-events: none;
}
.shop-page .sp-map__overlay--tl { top: 20px; left: 20px; }
.shop-page .sp-map__overlay--bl {
  bottom: 20px; left: 20px; font-size: 11px; color: var(--color-text-sub);
  padding: 6px 12px;
}
.shop-page .sp-map__count {
  font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin-top: 4px;
}

.shop-page .leaflet-tile-pane { filter: saturate(0.55) brightness(1.04) contrast(0.96); }
.shop-page .leaflet-container { background: #EFEDE8 !important; font-family: var(--ff-ja) !important; }
.shop-page .leaflet-control-attribution {
  background: rgba(255,255,255,0.85) !important;
  font-family: var(--ff-en) !important;
  font-size: 10px !important;
  color: var(--color-text-sub) !important;
}
.shop-page .leaflet-control-zoom a {
  background: #fff !important;
  color: var(--color-text) !important;
  border-color: var(--color-hair) !important;
  font-family: var(--ff-en) !important;
}
.shop-page .leaflet-marker-icon { background: transparent; border: 0; }

/* Custom pin — Leaflet が body 直下に生成するので独自クラス名で衝突回避 */
.naoru-pin {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-primary);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(217,48,31,0.18);
  /* ズームレベルに応じて JS が --pin-scale を更新（低ズーム=全国表示でピンを縮小して重なり回避） */
  transform: scale(var(--pin-scale, 1));
  transform-origin: center center;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1),
              background 300ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.naoru-pin:hover {
  transform: scale(calc(var(--pin-scale, 1) * 1.15));
  box-shadow: 0 0 0 6px rgba(196,145,58,0.22), 0 8px 22px rgba(196,145,58,0.28);
}
.naoru-pin.is-selected { background: var(--color-primary); border-color: var(--color-primary); }

/* マーカークラスタ（密集ピンの件数バブル）。NAORU配色で円形バッジ表示 */
.naoru-cluster {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-primary);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(217,48,31,0.25);
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--ff-en, 'DM Sans', sans-serif);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.naoru-cluster span { line-height: 1; font-size: 13px; }
.naoru-cluster--md span { font-size: 15px; }
.naoru-cluster--lg span { font-size: 17px; }
.leaflet-marker-icon:hover > .naoru-cluster { transform: scale(1.08); }
.naoru-me {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #2E6BE6;
  border: 3px solid #fff;
  box-shadow: 0 0 0 6px rgba(46,107,230,0.22);
}

.naoru-tip-wrap.leaflet-tooltip {
  background: #fff !important;
  border: 1px solid var(--color-primary) !important;
  border-radius: 4px !important;
  box-shadow: 0 6px 20px rgba(217,48,31,0.18) !important;
  padding: 8px 12px !important;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #1A1A1A !important;
}
.naoru-tip-wrap.leaflet-tooltip::before { border-top-color: var(--color-primary) !important; }
.naoru-tip__name {
  font-size: 14px; font-weight: 700; color: var(--color-primary);
  letter-spacing: -0.01em; line-height: 1.2;
}
.naoru-tip__area { font-size: 11px; color: #666; margin-top: 2px; }

/* ── Results ────────────────────────────────────────────── */
.shop-page .sp-results {
  padding: clamp(40px, 4vw + 20px, 80px) 0 clamp(60px, 5vw + 20px, 100px);
  background: var(--color-bg);
}
.shop-page .sp-results__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: clamp(24px, 2vw + 10px, 40px);
  border-bottom: 1px solid var(--color-hair);
  padding-bottom: clamp(16px, 1vw + 8px, 24px);
  gap: 16px; flex-wrap: wrap;
}
.shop-page .sp-h2 {
  margin: 0; display: flex; flex-direction: column; gap: 6px;
  font-size: clamp(22px, 1.5vw + 16px, 32px); font-weight: 600; letter-spacing: -0.02em;
  color: var(--color-text);
}
.shop-page .sp-results__count { font-size: 14px; color: var(--color-text-sub); }
/* 都道府県クリック時のスクロール先: 固定ヘッダー分のオフセットを確保 */
.shop-page #sp-results-heading { scroll-margin-top: calc(var(--header-h) + 24px); }

.shop-page .sp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .shop-page .sp-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .shop-page .sp-cards { grid-template-columns: 1fr; gap: 12px; } }

.shop-page .sp-empty {
  grid-column: 1 / -1;
  padding: 40px; text-align: center;
  color: var(--color-text-sub);
  background: var(--color-bg-sub);
  border: 1px dashed var(--color-hair-strong);
  border-radius: 12px;
}

.shop-page .sp-card {
  background: #fff;
  border: 1px solid var(--color-hair);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--sp-dur) var(--sp-ease),
              box-shadow var(--sp-dur) var(--sp-ease),
              border-color var(--sp-dur) var(--sp-ease);
}
.shop-page .sp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sp-shadow-md);
  border-color: var(--color-hair-strong);
}
.shop-page .sp-card.is-selected {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(217,48,31,0.15), var(--sp-shadow-md);
}

.shop-page .shop-photo {
  aspect-ratio: 16 / 9;
  background: var(--color-bg-sub);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  border-bottom: 1px solid var(--color-hair);
  overflow: hidden;
}
.shop-page .shop-photo::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(217, 173, 101, 0.08), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(217, 48, 31, 0.06), transparent 50%);
}
/* 店舗写真を背景に表示（ロゴは残し、中央を明るくする白マスクで視認性を確保） */
.shop-page .shop-photo--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.shop-page .shop-photo--photo::before {
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,0.78), rgba(255,255,255,0.5) 58%, rgba(255,255,255,0.42) 100%);
}
.shop-page .shop-photo--photo .shop-photo__mark { opacity: 0.95; }
.shop-page .shop-photo--photo .shop-photo__name {
  color: var(--color-text);
  text-shadow: 0 1px 2px rgba(255,255,255,0.7);
}

.shop-page .shop-photo__mark { position: relative; opacity: 0.7; }
.shop-page .shop-photo__name {
  position: relative; font-size: 11px;
  color: var(--color-text-mute);
  letter-spacing: 0.2em;
  font-weight: 500;
}

.shop-page .sp-card__body {
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 16px; flex: 1;
}
.shop-page .sp-card__name {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; margin: 0 0 4px;
  color: var(--color-text);
}
.shop-page .sp-card__area { font-size: 13px; color: var(--color-text-sub); }

.shop-page .sp-card__meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--color-text-sub);
  border-top: 1px solid var(--color-hair);
  padding-top: 14px;
}
.shop-page .sp-card__meta li {
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.shop-page .sp-card__meta li svg { flex-shrink: 0; margin-top: 3px; color: var(--color-text-mute); }
.shop-page .sp-card__dist {
  flex-direction: column !important; align-items: flex-start !important;
  gap: 4px !important;
  background: var(--color-bg-sub);
  padding: 10px 12px;
  margin-top: 4px;
  border-left: 2px solid var(--color-accent);
}
.shop-page .sp-card__dist .eyebrow { font-size: 10px; }

.shop-page .sp-card__price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--color-hair);
  border-bottom: 1px solid var(--color-hair);
}
.shop-page .sp-card__price-label { font-size: 12px; color: var(--color-text-sub); }
.shop-page .sp-card__price-amount {
  flex: 1;
  font-size: 28px; font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.shop-page .sp-card__price-amount .en { font-size: 18px; margin-right: 2px; }
.shop-page .sp-card__price-tax { font-size: 11px; color: var(--color-text-mute); }

.shop-page .sp-card__ctas { display: flex; flex-direction: column; gap: 8px; }

/* 店舗カードのボタン専用スタイル。標準ヘッダー(.header__cta / .sp-menu__cta)には
   適用させないため main 配下にスコープを限定する (他ページとヘッダーCTAを完全統一) */
.shop-page main .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px; border-radius: 4px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background var(--sp-dur) var(--sp-ease),
              color var(--sp-dur) var(--sp-ease),
              border-color var(--sp-dur) var(--sp-ease),
              box-shadow var(--sp-dur) var(--sp-ease),
              transform var(--sp-dur) var(--sp-ease);
}
.shop-page main .btn--primary {
  background: var(--color-primary); color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 12px rgba(217,48,31,0.2);
  font-size: 15px; font-weight: 600;
  padding: 16px 20px;
}
.shop-page main .btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(196,145,58,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--sp-ease);
}
.shop-page main .btn--primary:hover::before { transform: translateX(100%); }
.shop-page main .btn--primary:hover {
  background: var(--color-primary-ink);
  box-shadow: 0 6px 18px rgba(217,48,31,0.3);
}
.shop-page main .btn--outline {
  background: transparent; color: var(--color-primary);
  border-color: var(--color-primary);
}
.shop-page main .btn--outline:hover { background: var(--color-primary); color: #fff; }
.shop-page main .btn--line { background: var(--color-line); color: #fff; }
.shop-page main .btn--line:hover { background: #05a349; }
.shop-page main .btn--text {
  background: transparent; color: var(--color-text-sub);
  padding: 10px 12px; font-size: 13px;
  font-family: var(--ff-en); font-weight: 500;
  letter-spacing: 0.02em;
}
.shop-page main .btn--text:hover { color: var(--color-primary); }

/* ── Prefecture index (SEO) ─────────────────────────────── */
.shop-page .sp-pref-index {
  margin-top: clamp(40px, 4vw + 10px, 80px);
  padding-top: clamp(32px, 3vw + 10px, 60px);
  border-top: 1px solid var(--color-hair);
}
.shop-page .sp-pref-index .eyebrow { margin-bottom: 10px; display: block; }
.shop-page .sp-pref-index__h {
  font-size: clamp(18px, 0.5vw + 16px, 24px); font-weight: 600; margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.shop-page .sp-pref-index__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
  background: var(--color-hair);
  border: 1px solid var(--color-hair);
}
@media (max-width: 900px) { .shop-page .sp-pref-index__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .shop-page .sp-pref-index__grid { grid-template-columns: repeat(3, 1fr); } }
.shop-page .sp-pref-index__grid a {
  background: #fff;
  padding: 14px 12px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 13px;
  text-align: center;
  transition: background var(--sp-dur) var(--sp-ease),
              color var(--sp-dur) var(--sp-ease);
}
.shop-page .sp-pref-index__grid a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ── Footer ─────────────────────────────────────────────── */
.shop-page .sp-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.shop-page .sp-footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.shop-page .sp-footer__brand {
  display: flex; align-items: center; gap: 12px; font-size: 13px;
}
.shop-page .sp-footer__brand .en { font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.shop-page .sp-footer__links { display: flex; gap: 28px; font-size: 12px; letter-spacing: 0.05em; }
.shop-page .sp-footer__links a { color: inherit; text-decoration: none; }
.shop-page .sp-footer__links a:hover { color: #fff; }
@media (max-width: 700px) {
  .shop-page .sp-footer__inner { flex-direction: column; gap: 14px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .shop-page *,
  .shop-page *::before,
  .shop-page *::after,
  .naoru-pin,
  .naoru-tip-wrap {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}


/* =============================================================
   phase4: symptoms-menu (2026-04-24)
   /symptoms/ 施術メニュー一覧。body.menu-page 配下にスコープ。
   12 メニューアコーディオン + Body-Map 逆引き + Pricing + CTA
   ============================================================= */

.menu-page {
  --color-primary-dark: #b9281c;
  --color-primary-08: rgba(217, 48, 31, 0.08);
  --color-primary-12: rgba(217, 48, 31, 0.12);
  --color-primary-20: rgba(217, 48, 31, 0.20);
  --color-accent-soft: #d4a658;
  --color-border: rgba(26, 26, 26, 0.08);
  --color-border-strong: rgba(26, 26, 26, 0.16);
  --font-en: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-accordion: 350ms;
  --p4-max-width: 1200px;
  --p4-gutter: clamp(1.25rem, 5vw, 3rem);
  --p4-section-y: clamp(4rem, 3rem + 5vw, 10rem);
  --shadow-card-hover: 0 18px 40px rgba(217, 48, 31, 0.08);
  --shadow-elevated: 0 24px 60px rgba(26, 26, 26, 0.08);

  font-family: var(--font-jp);
  font-weight: 400;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem);
  line-height: 1.85;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.menu-page *, .menu-page *::before, .menu-page *::after { box-sizing: border-box; }
.menu-page img, .menu-page svg { display: block; max-width: 100%; }
/* menu-page リセット — header / sp-menu / footer はグローバルスタイルを尊重するため main 配下に限定 */
.menu-page main button {
  font-family: inherit; cursor: pointer; background: none; border: none;
  padding: 0; color: inherit;
}
.menu-page main a { color: inherit; text-decoration: none; }
.menu-page main ul, .menu-page main ol { margin: 0; padding: 0; list-style: none; }

.menu-page h1, .menu-page h2, .menu-page h3, .menu-page h4 {
  font-family: var(--font-jp);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.menu-page h1 { font-size: clamp(2.25rem, 1.5rem + 3.2vw, 4.5rem); letter-spacing: -0.02em; line-height: 1.15; }
.menu-page h2 { font-size: clamp(1.75rem, 1.4rem + 1.8vw, 3rem); }
.menu-page h3 { font-size: clamp(1.25rem, 1.1rem + 0.4vw, 1.625rem); font-weight: 500; }
.menu-page h4 { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.04em; }

.menu-page .eyebrow {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-block;
}

.menu-page .btn {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              background var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.menu-page .btn-primary { background: var(--color-primary); color: #fff; }
.menu-page .btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 48, 31, 0.25);
}
.menu-page .btn-outline {
  border: 1px solid var(--color-border-strong);
  color: var(--color-text);
  background: transparent;
}
.menu-page .btn-outline:hover {
  border-color: var(--color-text);
  transform: translateY(-2px);
}
.menu-page .btn-lg { padding: 1.125rem 2.5rem; font-size: 1rem; }
.menu-page .btn-arrow { display: inline-block; transition: transform var(--duration-normal) var(--ease-out-expo); }
.menu-page .btn:hover .btn-arrow { transform: translateX(4px); }

.menu-page :focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.menu-page .menu-container {
  max-width: var(--p4-max-width);
  margin: 0 auto;
  padding-left: var(--p4-gutter);
  padding-right: var(--p4-gutter);
}
.menu-page .menu-section { padding-block: var(--p4-section-y); }

.menu-page .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out-expo),
              transform 800ms var(--ease-out-expo);
}
.menu-page .reveal.is-visible { opacity: 1; transform: none; }
.menu-page .reveal-delay-1 { transition-delay: 100ms; }
.menu-page .reveal-delay-2 { transition-delay: 200ms; }
.menu-page .reveal-delay-3 { transition-delay: 300ms; }

/* Site header */
.menu-page .site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.menu-page .site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 0; gap: 2rem;
}
.menu-page .site-logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-en); font-weight: 700;
  letter-spacing: 0.1em; font-size: 0.9375rem;
}
.menu-page .site-logo img { width: 32px; height: 32px; object-fit: contain; }
.menu-page .site-nav {
  display: flex; gap: 2rem; font-size: 0.875rem; font-weight: 500; align-items: center;
}
.menu-page .site-nav a { position: relative; padding: 0.25rem 0; transition: color var(--duration-normal); }
.menu-page .site-nav a.is-current { color: var(--color-primary); }
.menu-page .site-nav a.is-current::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--color-primary);
}
.menu-page .site-nav a:hover { color: var(--color-primary); }
.menu-page .site-header .site-cta { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }

/* Breadcrumb */
.menu-page .breadcrumb {
  padding: 1.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-sub);
  display: flex; gap: 0.5rem; align-items: center;
}
.menu-page .breadcrumb a:hover { color: var(--color-primary); }
.menu-page .breadcrumb-sep { color: var(--color-border-strong); }
.menu-page .breadcrumb-current { color: var(--color-text); }

/* Hero */
.menu-page .hero {
  position: relative;
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0 clamp(5rem, 4rem + 4vw, 8rem);
  overflow: hidden;
}
.menu-page .hero-inner {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 900px; position: relative; z-index: 2;
}
.menu-page .hero .eyebrow { margin-bottom: 0.25rem; }
.menu-page .hero h1 { font-weight: 700; }
.menu-page .hero h1 .accent { color: var(--color-primary); }
.menu-page .hero-sub {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  color: var(--color-text-sub);
  max-width: 620px; line-height: 1.9; margin-top: 0.5rem;
}
.menu-page .hero-sub strong { font-weight: 500; color: var(--color-text); }

.menu-page .hero-watermark {
  position: absolute;
  right: clamp(4rem, 10vw, 9rem);
  top: 50%; transform: translateY(-50%);
  width: clamp(240px, 32vw, 420px);
  aspect-ratio: 1; opacity: 0.05;
  z-index: 0; pointer-events: none;
}
.menu-page .hero-watermark img {
  width: 100%; height: 100%; object-fit: contain; filter: grayscale(1);
}
/* ロゴをブランド要素として表示。/price/ ヒーローと同じ配置・バランスに合わせる
   (PC: 右側・ヒーロー中央よりやや下 / SP・タブレット: 本文上に中央配置) */
.menu-page .hero-watermark--logo {
  right: clamp(3rem, 12vw, 9rem);
  top: 50%;
  transform: translateY(calc(-50% + 48px));
  width: clamp(200px, 22vw, 300px);
  opacity: 0.95;
  z-index: 1;
}
.menu-page .hero-watermark--logo img { filter: none; }
/* price と揃えるため、ロゴ表示時は縦ラベルを非表示にしてバランスを統一 */
.menu-page .hero:has(.hero-watermark--logo) .hero-vlabel { display: none; }
@media (max-width: 1023px) {
  .menu-page .hero-watermark--logo {
    position: static;
    transform: none;
    width: clamp(200px, 56vw, 300px);
    margin: 0 auto clamp(1rem, 3vw, 1.75rem);
  }
}
.menu-page .hero-vlabel {
  position: absolute; right: 1.5rem; bottom: 2rem;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 0.6875rem; letter-spacing: 0.3em;
  color: var(--color-text-sub);
  text-transform: uppercase;
  z-index: 2;
}

/* Section headers */
.menu-page .section-head {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
  max-width: 720px;
}
.menu-page .section-index {
  font-family: var(--font-en); font-weight: 500;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-text-sub);
  display: flex; align-items: center; gap: 0.75rem;
}
.menu-page .section-index::before {
  content: ""; width: 2.25rem; height: 1px; background: var(--color-accent);
}
.menu-page .section-title {
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.menu-page .section-title em { font-style: normal; color: var(--color-primary); }
.menu-page .section-desc {
  color: var(--color-text-sub);
  font-size: 0.9375rem; line-height: 1.9;
  max-width: 620px;
}

/* Menu accordion */
.menu-page .menu-list { border-top: 1px solid var(--color-border); }
.menu-page .menu-row {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--duration-normal) var(--ease-out-expo);
  position: relative;
}
.menu-page .menu-row:hover:not(.is-open) { background: var(--color-bg-sub); }
.menu-page .menu-row.is-open { background: var(--color-bg); }
.menu-page .menu-row-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 5rem 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1rem 1.5rem 0.5rem;
  text-align: left;
  transition: padding var(--duration-normal) var(--ease-out-expo);
}
.menu-page .menu-row-num {
  font-family: var(--font-en); font-weight: 700;
  font-size: 1.5rem; color: var(--color-accent);
  letter-spacing: -0.01em; line-height: 1;
}
.menu-page .menu-row-name {
  font-family: var(--font-jp); font-weight: 500;
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.3125rem);
  letter-spacing: -0.005em; color: var(--color-text);
}
.menu-page .menu-row-name small {
  display: block;
  font-family: var(--font-en); font-weight: 400;
  font-size: 0.6875rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-top: 0.125rem;
}
.menu-page .menu-row-tag {
  font-family: var(--font-en);
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 100px;
  color: var(--color-text-sub);
  white-space: nowrap;
}
.menu-page .menu-row-tag.signature {
  border-color: var(--color-accent); color: var(--color-accent);
}
.menu-page .menu-row-chevron {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              background var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) var(--ease-out-expo);
  flex-shrink: 0;
}
.menu-page .menu-row-chevron svg {
  width: 14px; height: 14px;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}
.menu-page .menu-row:hover .menu-row-chevron {
  border-color: var(--color-primary);
  background: var(--color-primary); color: #fff;
}
.menu-page .menu-row.is-open .menu-row-chevron {
  background: var(--color-primary); border-color: var(--color-primary); color: #fff;
}
.menu-page .menu-row.is-open .menu-row-chevron svg { transform: rotate(180deg); }

.menu-page .menu-panel {
  display: grid; overflow: hidden;
  transition: grid-template-rows var(--duration-accordion) var(--ease-out-expo);
  grid-template-rows: 0fr;
}
.menu-page .menu-row.is-open .menu-panel { grid-template-rows: 1fr; }
.menu-page .menu-panel-inner { min-height: 0; overflow: hidden; }
.menu-page .menu-panel-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  padding: 0.5rem 1rem 3rem 5.5rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 400ms 120ms var(--ease-out-expo),
              transform 400ms 120ms var(--ease-out-expo);
}
.menu-page .menu-row.is-open .menu-panel-content { opacity: 1; transform: none; }
.menu-page .menu-panel-media { display: flex; flex-direction: column; gap: 1.25rem; }

.menu-page .menu-photo {
  aspect-ratio: 16 / 10;
  background: var(--color-bg-sub);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.menu-page .menu-photo::after {
  display: none;
}
.menu-page .menu-photo img { width: 100%; height: 100%; object-fit: contain; opacity: 1; }

.menu-page .menu-duration {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--color-bg-sub);
  border-radius: 100px;
  font-family: var(--font-en);
  font-size: 0.8125rem; font-weight: 500;
  color: var(--color-primary);
  width: fit-content;
}
.menu-page .menu-duration svg { width: 14px; height: 14px; }

.menu-page .menu-block { margin-bottom: 1.75rem; }
.menu-page .menu-block:last-child { margin-bottom: 0; }
.menu-page .menu-block h4 {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-family: var(--font-en);
}
.menu-page .menu-desc { font-size: 0.9375rem; line-height: 1.85; color: var(--color-text); }
.menu-page .menu-for-list { display: flex; flex-direction: column; gap: 0.5rem; }
.menu-page .menu-for-list li {
  padding-left: 1.25rem; position: relative;
  font-size: 0.875rem; color: var(--color-text); line-height: 1.7;
}
.menu-page .menu-for-list li::before {
  content: ""; position: absolute; left: 0; top: 0.7em;
  width: 0.5rem; height: 1px; background: var(--color-primary);
}

.menu-page .chip-row { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.menu-page .chip {
  display: inline-flex; align-items: center;
  font-family: var(--font-jp);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--color-primary-20);
  color: var(--color-primary);
  background: transparent;
  transition: background var(--duration-normal) var(--ease-out-expo),
              color var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) var(--ease-out-expo);
  white-space: nowrap;
}
.menu-page .chip:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.menu-page .trust-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.menu-page .trust-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: var(--color-bg-sub);
  border-radius: 6px;
  font-size: 0.8125rem; color: var(--color-text); font-weight: 500;
}
.menu-page .trust-badge .check { width: 14px; height: 14px; color: var(--color-primary); }

.menu-page .menu-related { display: flex; flex-direction: column; gap: 0.375rem; }
.menu-page .menu-related a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--color-primary);
  padding: 0.375rem 0;
  border-bottom: 1px dashed var(--color-primary-20);
  width: fit-content;
  transition: gap var(--duration-normal) var(--ease-out-expo);
}
.menu-page .menu-related a:hover { gap: 0.75rem; border-bottom-style: solid; }

.menu-page .ba-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
}
.menu-page .ba-thumb {
  aspect-ratio: 1;
  background: var(--color-bg-sub);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 0.625rem; letter-spacing: 0.2em;
  color: var(--color-text-sub);
  text-transform: uppercase;
}

.menu-page .panel-cta {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

/* Body Map */
.menu-page .bodymap-section { background: var(--color-bg-sub); }
.menu-page .bodymap-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.menu-page .bodymap-placeholder {
  aspect-ratio: 4/5;
  background: var(--color-bg);
  border: 1px dashed var(--color-border-strong);
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  position: relative; overflow: hidden;
}
.menu-page .bodymap-placeholder::before {
  content: "";
  position: absolute; inset: 1.5rem; border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, var(--color-primary-08) 0 36px, transparent 37px),
    radial-gradient(circle at 50% 35%, var(--color-primary-08) 0 60px, transparent 61px),
    radial-gradient(circle at 50% 65%, var(--color-primary-08) 0 48px, transparent 49px),
    radial-gradient(circle at 44% 78%, var(--color-primary-08) 0 24px, transparent 25px),
    radial-gradient(circle at 56% 78%, var(--color-primary-08) 0 24px, transparent 25px);
}
.menu-page .bodymap-dot {
  position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(217, 48, 31, 0.15);
  animation: menuPulse 2.4s ease-in-out infinite;
}
.menu-page .bodymap-dot:nth-child(1) { top: 18%; left: 50%; }
.menu-page .bodymap-dot:nth-child(2) { top: 30%; left: 30%; animation-delay: 0.3s; }
.menu-page .bodymap-dot:nth-child(3) { top: 30%; left: 70%; animation-delay: 0.6s; }
.menu-page .bodymap-dot:nth-child(4) { top: 46%; left: 50%; animation-delay: 0.9s; }
.menu-page .bodymap-dot:nth-child(5) { top: 62%; left: 42%; animation-delay: 1.2s; }
.menu-page .bodymap-dot:nth-child(6) { top: 62%; left: 58%; animation-delay: 1.5s; }
.menu-page .bodymap-dot:nth-child(7) { top: 78%; left: 44%; animation-delay: 1.8s; }
.menu-page .bodymap-dot:nth-child(8) { top: 78%; left: 56%; animation-delay: 2.1s; }
@keyframes menuPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(217, 48, 31, 0.15); }
  50%      { box-shadow: 0 0 0 10px rgba(217, 48, 31, 0.04); }
}
.menu-page .bodymap-placeholder-label {
  position: relative; z-index: 2;
  font-family: var(--font-en);
  font-size: 0.6875rem; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  background: var(--color-bg);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--color-border);
}

.menu-page .bodymap-parts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem;
}
.menu-page .bodymap-part {
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem;
  transition: all var(--duration-normal) var(--ease-out-expo);
  font-size: 0.875rem;
  font-family: var(--font-jp); font-weight: 500;
  text-align: left; width: 100%;
}
.menu-page .bodymap-part:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateX(2px);
}
.menu-page .bodymap-part-col {
  display: flex; flex-direction: column; gap: 2px;
}
.menu-page .bodymap-part-num {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
}
.menu-page .bodymap-part-count {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  color: var(--color-text-sub);
}

/* Pricing */
.menu-page .pricing-section { background: var(--color-text); color: #fff; }
.menu-page .pricing-section .eyebrow { color: var(--color-accent); }
.menu-page .pricing-section h2 { color: #fff; }
.menu-page .pricing-section .section-desc { color: rgba(255,255,255,0.65); }
.menu-page .pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem; margin-bottom: 2.5rem;
}
.menu-page .price-card {
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
}
.menu-page .price-card.featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.menu-page .price-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.menu-page .price-card.featured .price-label { color: #fff; }
.menu-page .price-name { font-size: 1.25rem; font-weight: 500; }
.menu-page .price-amount {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 0.25rem;
}
.menu-page .price-amount .yen { font-size: 0.55em; font-weight: 500; }
.menu-page .price-amount .tax {
  font-size: 0.35em; font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-left: 0.5rem;
}
.menu-page .price-card.featured .price-amount .tax { color: rgba(255,255,255,0.75); }
.menu-page .price-meta { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }
.menu-page .price-card.featured .price-meta { color: rgba(255,255,255,0.85); }
.menu-page .price-card .price-custom-note {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
  margin: 0.5rem 0 0;
  flex: 1;
}
.menu-page .price-action { margin-top: auto; padding-top: 1rem; }
.menu-page .price-card .btn-primary {
  background: #fff; color: var(--color-primary);
  width: 100%; justify-content: center;
}
.menu-page .price-card .btn-primary:hover { background: var(--color-accent); color: #fff; }
.menu-page .price-card .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #fff; width: 100%; justify-content: center;
}
.menu-page .price-card .btn-outline:hover { border-color: #fff; }
.menu-page .pricing-fineprint {
  text-align: center; font-size: 0.8125rem;
  color: rgba(255,255,255,0.5); margin-top: 1rem;
}
.menu-page .pricing-fineprint a {
  color: rgba(255,255,255,0.75);
  border-bottom: 1px dotted rgba(255,255,255,0.25);
}
.menu-page .pricing-fineprint a:hover { color: var(--color-accent); }

/* CTA band */
.menu-page .cta-band {
  padding-block: clamp(5rem, 4rem + 4vw, 8rem);
  text-align: center;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  position: relative; overflow: hidden;
}
.menu-page .cta-band h2 {
  font-size: clamp(2rem, 1.6rem + 1.8vw, 3rem);
  max-width: 720px; margin: 0 auto 2rem;
  line-height: 1.3;
}
.menu-page .cta-band .actions {
  display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap;
}

/* Footer */
.menu-page .site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
  font-size: 0.8125rem;
}
.menu-page .site-footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.menu-page .site-footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.menu-page .site-footer h5 {
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}
.menu-page .site-footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.menu-page .site-footer a:hover { color: #fff; }
.menu-page .site-footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.menu-page .site-footer-brand img {
  width: 48px; height: 48px; filter: brightness(10);
}
.menu-page .site-footer-brand p { line-height: 1.8; }
.menu-page .site-footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 1rem;
}
.menu-page .site-footer-bottom .en {
  font-family: var(--font-en); letter-spacing: 0.15em;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-page .menu-panel-content { grid-template-columns: 1fr; padding-left: 5rem; }
  .menu-page .bodymap-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-page .pricing-grid { grid-template-columns: 1fr; }
  .menu-page .site-footer-top { grid-template-columns: 1fr; }
  .menu-page .site-footer-cols { grid-template-columns: repeat(2, 1fr); }
  .menu-page .site-nav { display: none; }
}
@media (max-width: 600px) {
  .menu-page .menu-row-tag { display: none; }
  .menu-page .menu-row-trigger {
    grid-template-columns: 2.5rem 1fr auto;
    padding: 1rem 0.5rem;
  }
  .menu-page .menu-row-num { font-size: 1.125rem; }
  .menu-page .menu-panel-content { padding-left: 3rem; padding-right: 0.5rem; }
  .menu-page .menu-row-name small { display: none; }
  .menu-page .hero-vlabel { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-page *, .menu-page *::before, .menu-page *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================================
   phase4-addition: logo swap + shops-cta nav (2026-04-24)
   ============================================================= */

/* Global header — horizontal logo sizing */
.header__logo img,
.header__logo picture img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Shop page — sp-brand horizontal logo */
.shop-page .sp-brand { align-items: center; gap: 0; }
.shop-page .sp-brand picture { display: inline-flex; align-items: center; }
.shop-page .sp-brand__logo {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Shop page — watermark img */
.shop-page .sp-search__watermark img {
  width: clamp(180px, 18vw, 280px);
  height: auto;
  display: block;
  filter: grayscale(1);
}

/* Shop page — footer brand: horizontal NAORU logo */
.shop-page .sp-footer__brand { align-items: center; gap: 16px; }
.shop-page .sp-footer__logo { display: inline-flex; line-height: 0; }
.shop-page .sp-footer__brand picture { display: inline-flex; align-items: center; }
.shop-page .sp-footer__brand img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.shop-page .sp-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* Shop card photo mark img */
.shop-page .shop-photo__mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

/* Map pin: image-based */
.naoru-pin .pin-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.naoru-pin.is-selected {
  background: #fff;
  border: 2px solid var(--color-primary);
  transform: scale(calc(var(--pin-scale, 1) * 1.15));
  box-shadow: 0 0 0 6px rgba(217,48,31,0.22), 0 10px 24px rgba(217,48,31,0.3);
}
.naoru-pin.is-selected .pin-img { transform: scale(1.05); }

/* =============================================================
   Global nav: 店舗一覧 CTA — filled pill button (like 初回体験予約)
   ============================================================= */
.header__nav-link.header__nav-link--shops-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6em 1.4em;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
  box-shadow: 0 2px 10px rgba(217, 48, 31, 0.22);
  font-weight: 500;
  transition: background var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}
/* Hide the default hover underline that .header__nav-link adds */
.header__nav-link--shops-cta::after { display: none !important; }

/* Keep white text regardless of scroll / non-home overrides */
.header.is-scrolled .header__nav-link.header__nav-link--shops-cta,
body:not(.is-home) .header .header__nav-link.header__nav-link--shops-cta {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.header__nav-link--shops-cta:hover,
.header__nav-link--shops-cta:focus-visible,
.header.is-scrolled .header__nav-link--shops-cta:hover,
.header.is-scrolled .header__nav-link--shops-cta:focus-visible,
body:not(.is-home) .header .header__nav-link--shops-cta:hover,
body:not(.is-home) .header .header__nav-link--shops-cta:focus-visible {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217, 48, 31, 0.35);
}

/* Shop-page sp-nav version — also filled pill (force white text) */
.shop-page .sp-nav a.sp-nav__shops-cta,
.shop-page .sp-nav a.sp-nav__shops-cta[aria-current="page"],
.sp-nav__shops-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff !important;
  border: 1px solid var(--color-primary);
  box-shadow: 0 2px 10px rgba(217, 48, 31, 0.22);
  font-weight: 700; /* 初回体験予約 と統一 (r54) */
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 150ms ease;
}
/* Kill the default [aria-current="page"] underline that sp-nav adds */
.shop-page .sp-nav a.sp-nav__shops-cta::after,
.shop-page .sp-nav a.sp-nav__shops-cta[aria-current="page"]::after {
  display: none !important;
  content: none !important;
}
.shop-page .sp-nav a.sp-nav__shops-cta:hover,
.shop-page .sp-nav a.sp-nav__shops-cta:focus-visible,
.shop-page .sp-nav a.sp-nav__shops-cta[aria-current="page"]:hover,
.sp-nav__shops-cta:hover,
.sp-nav__shops-cta:focus-visible,
.sp-nav__shops-cta[aria-current="page"] {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217, 48, 31, 0.35);
}

/* Mobile sp-menu (hamburger drawer) version — filled pill */
.sp-menu__shops-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.7em 1.4em !important;
  border-radius: 999px;
  background: var(--color-primary) !important;
  color: #fff !important;
  border: 1px solid var(--color-primary);
  box-shadow: 0 2px 10px rgba(217, 48, 31, 0.22);
  font-weight: 700; /* 初回体験予約 と統一 (r54) */
}

/* =============================================================
   phase4-addition: footer horizontal logo sizing (2026-04-24)
   ============================================================= */
.footer__logo picture { display: inline-flex; align-items: center; }
.footer__logo img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* =============================================================
   phase4-addition: footer nav — card-style (2026-04-24)
   Replaces the old 2-column symptoms+nav layout with stacked
   labeled blocks separated by hairlines, matching reference design
   ============================================================= */
.footer__nav.footer__nav--cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: start;
}
.footer__nav--cards .footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-block {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-block:first-child { padding-top: 0; }
.footer-block:last-child { border-bottom: none; }
.footer-block__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 10px 0;
  line-height: 1;
  text-transform: none;
}
.footer-block__title {
  display: inline-block;
  color: #fff;
  font-size: clamp(1rem, 0.9rem + 0.35vw, 1.25rem);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: opacity var(--duration-base) var(--ease-out);
}
.footer-block__title:hover,
.footer-block__title:focus-visible { opacity: 0.7; color: #fff; }

.footer-block__sub {
  margin: 14px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.footer-block__sub li { margin: 0 !important; }
.footer-block__sub a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--duration-base) var(--ease-out);
}
.footer-block__sub a:hover,
.footer-block__sub a:focus-visible {
  color: #fff;
}

/* Ensure new cards layout overrides the prior 4-col @1024+ rule */
@media (min-width: 1024px) {
  .footer__nav.footer__nav--cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer__nav.footer__nav--cards {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer__nav--cards .footer-block {
    padding: 18px 0;
  }
}

/* =============================================================
   footer-shops-acc :: 全国店舗アコーディオン (SEO内部リンク) — 2026-06-07
   ネイティブ <details> 採用: 折りたたみ時も <a> は DOM に残りクロール可能
   ============================================================= */
.footer-shops-acc {
  grid-column: 1 / -1; /* footer__inner が grid のため全幅にスパンさせる */
  /* footer__inner の row-gap(80px) が既に上に入るため、負マージンで詰める */
  margin-top: -2rem;
  padding-top: clamp(1.25rem, 0.9rem + 1vw, 1.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-shops-acc__head {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1rem 0;
  line-height: 1;
}
.footer-shops-acc__groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  column-gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: start;
}
.footer-shops-acc__group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-shops-acc__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  cursor: pointer;
  list-style: none;
  color: #fff;
  transition: opacity var(--duration-base) var(--ease-out);
}
.footer-shops-acc__summary::-webkit-details-marker { display: none; }
.footer-shops-acc__summary:hover { opacity: 0.75; }
.footer-shops-acc__summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 1.5px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  transition: transform var(--duration-base) var(--ease-out);
}
.footer-shops-acc__group[open] > .footer-shops-acc__summary::after {
  transform: rotate(-135deg);
}
.footer-shops-acc__pref {
  font-size: 0.9375rem;
  font-weight: 500;
}
.footer-shops-acc__count {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}
.footer-shops-acc__list {
  margin: 0 0 14px;
  padding: 2px 0 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
}
.footer-shops-acc__list li { margin: 0 !important; }
.footer-shops-acc__list a {
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.35;
  transition: color var(--duration-base) var(--ease-out);
}
.footer-shops-acc__list a:hover,
.footer-shops-acc__list a:focus-visible { color: #fff; }
.footer-shops-acc__area {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
}
@media (max-width: 768px) {
  .footer-shops-acc__groups { grid-template-columns: 1fr; }
}

/* =============================================================
   phase4-addition: short-movie section (YouTube Shorts) — 2026-04-24
   ============================================================= */
.short-movie {
  padding-block: clamp(3rem, 2rem + 4vw, 6rem);
  background: var(--color-bg);
}
.short-movie__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  flex-wrap: wrap;
}
.short-movie__yt { line-height: 0; display: inline-flex; }
.short-movie__yt svg { display: block; }
.short-movie__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0;
}
.short-movie__more {
  margin-left: auto;
  font-size: 0.875rem;
  color: var(--color-text-sub);
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.short-movie__more:hover,
.short-movie__more:focus-visible { color: var(--color-primary); }

/* Layout: desktop = 5-col grid, tablet/mobile = horizontal scroll */
.short-movie__scroller {
  display: grid;
  gap: 16px;
}
@media (min-width: 1024px) {
  .short-movie__scroller {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1023px) {
  .short-movie__scroller {
    grid-auto-flow: column;
    grid-auto-columns: clamp(160px, 42%, 220px);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
    margin-inline: calc(var(--space-md, 1.5rem) * -1);
    padding-inline: var(--space-md, 1.5rem);
    scrollbar-width: thin;
    scrollbar-color: rgba(217,48,31,0.4) rgba(0,0,0,0.06);
  }
  .short-card { scroll-snap-align: start; }
}

/* Card */
.short-card__link {
  display: block;
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  text-decoration: none;
  color: #fff;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 300ms ease;
  isolation: isolate;
}
.short-card__link:hover,
.short-card__link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.3);
}

/* Placeholder dark background with NAORU logo mark */
.short-card__media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
  z-index: 0;
}
.short-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.short-card__media img {
  width: 42%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  opacity: 0.35;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 0;
}

/* Caption */
.short-card__caption {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.short-card__tag {
  align-self: flex-start;
  display: inline-block;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
.short-card__headline {
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  font-size: 0.875rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  padding-right: 4px;
}

/* Play button overlay */
.short-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.45));
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 0;
  display: block;
}
.short-card__link:hover .short-card__play,
.short-card__link:focus-visible .short-card__play {
  transform: translate(-50%, -50%) scale(1.12);
}

@media (prefers-reduced-motion: reduce) {
  .short-card__link,
  .short-card__play { transition: none; }
  .short-card__link:hover,
  .short-card__link:focus-visible { transform: none; }
  .short-card__link:hover .short-card__play,
  .short-card__link:focus-visible .short-card__play { transform: translate(-50%, -50%); }
}

/* =============================================================
   phase4-addition: BEFORE/AFTER card media slot (2026-04-24)
   placeholder using NAORU logo mark — swap img src for real photos
   ============================================================= */
.ba-card { height: 480px; }
.ba-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.ba-card__face--after .ba-card__media {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}
.ba-card__media img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 300ms ease;
}
.ba-card:hover .ba-card__media img,
.ba-card:focus .ba-card__media img { opacity: 0.75; }
@media (max-width: 768px) {
  .ba-card { height: 440px; }
  .ba-card__media { height: 120px; }
  .ba-card__media img { width: 60px; height: 60px; }
}

/* ============ phase4: naoru-plan (月額サブスクリプション) ============ */
.price-naoru-plan-section__sub {
  display: inline-block;
  margin-left: 0.75em;
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0.12em;
  vertical-align: middle;
  padding: 0.25em 0.75em;
  background: var(--color-accent);
  color: var(--color-text);
  border-radius: 999px;
}
.price-naoru-plan {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  background: var(--color-text);
  color: #fff;
  border: 1px solid var(--color-text);
  overflow: hidden;
  position: relative;
}
.price-naoru-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 173, 101, 0.18), transparent 42%),
    radial-gradient(circle at 88% 92%, rgba(217, 48, 31, 0.32), transparent 50%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .price-naoru-plan { grid-template-columns: 1fr; }
}
.price-naoru-plan__main {
  padding: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-naoru-plan__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.85rem;
  background: var(--color-accent);
  color: var(--color-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.price-naoru-plan__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.625rem, 1.25rem + 1.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.price-naoru-plan__lead {
  font-size: 0.9375rem;
  line-height: 1.85;
  opacity: 0.82;
  max-width: 36ch;
}
.price-naoru-plan__features {
  list-style: none;
  margin-top: 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.price-naoru-plan__features li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.price-naoru-plan__feat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  text-align: center;
}
.price-naoru-plan__feat-num svg { display: inline-block; }
.price-naoru-plan__feat-text {
  font-size: 0.9375rem;
  line-height: 1.5;
}
.price-naoru-plan__pricebox {
  padding: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(160deg, rgba(196, 145, 58, 0.10), rgba(217, 48, 31, 0.18));
  border-left: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .price-naoru-plan__pricebox { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
}
.price-naoru-plan__monthly-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}
.price-naoru-plan__price {
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
}
.price-naoru-plan__yen {
  font-size: 1.5rem;
  opacity: 0.85;
  margin-right: 0.25rem;
}
.price-naoru-plan__amount {
  font-size: clamp(3rem, 2rem + 4vw, 4.5rem);
  font-weight: 700;
}
.price-naoru-plan__tax {
  font-size: 0.8125rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
}
.price-naoru-plan__compare {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.price-naoru-plan__compare s { opacity: 0.55; margin-inline: 0.25em; }
.price-naoru-plan__compare strong {
  color: var(--color-accent);
  font-weight: 700;
}
.price-naoru-plan__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.price-naoru-plan__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  opacity: 0.65;
  line-height: 1.6;
}


/* =============================================================
   phase4: shop-template-v2 — recruit (Variant A)
   2026-05-01 / 店舗ページの採用情報セクション。
   data-shop-section="recruit" の <section> 配下に適用。
   ============================================================= */

.shop-recruit {
  background: #1A1A1A;
  color: #fff;
  padding-block: clamp(4rem, 3rem + 5vw, 7rem);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.shop-recruit .container {
  max-width: 1200px;
  margin-inline: auto;
}
.shop-recruit__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 2rem + 3vw, 4rem);
}
.shop-recruit__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C4913A;
  margin-bottom: 1rem;
}
.shop-recruit__h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #fff;
}
.shop-recruit__catch {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.shop-recruit__path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
}
.shop-recruit__path::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, #C4913A 0%, rgba(196,145,58,0.25) 100%);
  z-index: 0;
}
.shop-recruit__step {
  text-align: center;
  position: relative;
  padding-inline: 0.75rem;
}
.shop-recruit__step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  border: 3px solid #1A1A1A;
}
.shop-recruit__step-stage {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #C4913A;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.shop-recruit__step-label {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.shop-recruit__step-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.shop-recruit__qual {
  max-width: 880px;
  margin: clamp(2.5rem, 2rem + 2vw, 4rem) auto clamp(2rem, 1.5rem + 1.5vw, 3rem);
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.shop-recruit__qual-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #C4913A;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.shop-recruit__qual-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.shop-recruit__qual-chip {
  padding: 0.5rem 1rem;
  background: rgba(196,145,58,0.15);
  color: #fff;
  font-size: 0.8125rem;
  border: 1px solid rgba(196,145,58,0.3);
  letter-spacing: 0.02em;
}

.shop-recruit__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto clamp(2rem, 1.5rem + 1.5vw, 3rem);
}
.shop-recruit__meta-item {
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid #C4913A;
}
.shop-recruit__meta-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #C4913A;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.shop-recruit__meta-value {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}
.shop-recruit__meta-sub,
.shop-recruit__meta-note {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.shop-recruit__cta {
  text-align: center;
  margin-top: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
}
.shop-recruit__cta .btn {
  background: #fff;
  color: #1A1A1A;
}
.shop-recruit__cta .btn:hover {
  background: #C4913A;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .shop-recruit__path {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .shop-recruit__path::before {
    display: none;
  }
  .shop-recruit__meta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-recruit__cta .btn:hover {
    transform: none;
  }
}


/* =============================================================
   phase4: shop-template-v2 — shop-staff (店舗スタッフ紹介)
   ============================================================= */

.shop-staff {
  background: var(--color-bg);
  padding-block: clamp(4rem, 3rem + 4vw, 6rem);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.shop-staff .container {
  max-width: 1200px;
  margin-inline: auto;
}
.shop-staff__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.shop-staff__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.shop-staff__h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}
.shop-staff__lead {
  color: var(--color-text-sub);
  font-size: 0.9375rem;
}
.shop-staff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.shop-staff__card {
  background: var(--color-bg-sub);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-staff__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(217, 48, 31, 0.08);
}
.shop-staff__photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-bg-sub);
}
.shop-staff__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-staff__body {
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.shop-staff__role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.shop-staff__name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}
.shop-staff__name-reading {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.shop-staff__license {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.shop-staff__license-chip {
  padding: 0.25rem 0.625rem;
  background: rgba(217, 48, 31, 0.08);
  color: var(--color-primary);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid rgba(217, 48, 31, 0.15);
}
.shop-staff__bio {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.75;
}
.shop-staff__message {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.75;
  font-style: italic;
  padding-left: 0.875rem;
  border-left: 2px solid var(--color-accent);
}


/* =============================================================
   phase4: shop-template-v2 — shop-access (MAP + ルート + ランドマーク)
   ============================================================= */

.shop-access {
  background: var(--color-bg-sub);
  padding-block: clamp(4rem, 3rem + 4vw, 6rem);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.shop-access .container {
  max-width: 1200px;
  margin-inline: auto;
}
.shop-access__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.shop-access__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.shop-access__h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}
.shop-access__lead {
  color: var(--color-text-sub);
  font-size: 0.9375rem;
}

.shop-access__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.shop-access__map {
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-line, #E8E5E0);
}
.shop-access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.shop-access__map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-text-sub);
  font-size: 0.875rem;
}
.shop-access__info {
  background: var(--color-bg);
  padding: 1.5rem 2rem;
}
.shop-access__table {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.shop-access__row {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-line, #E8E5E0);
}
.shop-access__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.shop-access__row dt {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-sub);
}
.shop-access__row dd {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}
.shop-access__row dd a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.shop-access__row dd a:hover {
  text-decoration: underline;
}

.shop-access__route {
  margin-bottom: 2.5rem;
}
.shop-access__route-title,
.shop-access__landmarks-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}
.shop-access__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.shop-access__step {
  display: grid;
  grid-template-columns: 56px 1fr 200px;
  gap: 1.25rem;
  align-items: center;
  background: var(--color-bg);
  padding: 1.25rem;
}
.shop-access__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}
.shop-access__step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}
.shop-access__step-desc {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.7;
}
.shop-access__step-img {
  width: 200px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-sub);
}
.shop-access__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-access__landmarks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}
.shop-access__landmark {
  background: var(--color-bg);
  padding: 0.875rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.shop-access__landmark-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}
.shop-access__landmark-dist {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .shop-access__layout {
    grid-template-columns: 1fr;
  }
  .shop-access__step {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .shop-access__step-img {
    grid-column: 1 / -1;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* ============ phase5: who-we-are セクションのゴーストロゴ非表示 (要望により削除) ============ */
.who-we-are__ghost {
  display: none !important;
}

/* ============ phase5: header 透明状態でも文字が見えやすいよう半透明グラス背景 ============ */
.header:not(.is-scrolled) {
  background: rgba(20, 20, 20, 0.32);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
/* スクロール後はガラス効果を解除して既存の白背景を維持 */
.header.is-scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
/* 透明状態のナビ文字色を白寄りに(コントラスト確保) */
.header:not(.is-scrolled) .header__nav-link {
  color: #fff;
}
.header:not(.is-scrolled) .header__nav-link::after {
  background-color: #fff;
}
/* TOP 以外のページでは初期状態でも白背景 (既存挙動を維持) */
body:not(.is-home) .header:not(.is-scrolled) {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
body:not(.is-home) .header:not(.is-scrolled) .header__nav-link {
  color: var(--color-text);
}


/* ============================================================
   phase4: viewport overflow guard
   モバイルで sp-menu などが横方向にはみ出して 8px のオーバーフロー
   が出るのを防ぐ
   ============================================================ */
html,
body {
  overflow-x: hidden;
}
/* 2026-06-17: overflow-x:hidden は CSS 仕様で overflow-y を auto に昇格させ、
   body をスクロールコンテナ化して子孫の position:sticky を無効化してしまう
   (AI セクションの人物図が固定されず流れる原因)。clip は横をクリップしつつ
   スクロールコンテナを作らないので sticky が生きる。未対応ブラウザは上の hidden にフォールバック。 */
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

/* ============ phase5: column post (WP移行ブログ記事ページ) ============ */
/* WordPress ブログ記事の静的インポートに対応するための個別ページスタイル。
   /column/{slug}/index.html で使用。既存 .blog-* には影響しない。
*/

/* 記事本体のコンテナ幅。本文は読みやすさ重視で 740px 程度に絞る */
.container--narrow {
  max-width: 740px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.column-page main {
  padding-top: clamp(6rem, 5rem + 4vw, 9rem);
  padding-bottom: clamp(4rem, 3rem + 4vw, 8rem);
  background: var(--color-bg);
}

/* ── 記事ヘッダー ── */
.column-post__header {
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

.column-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-sub);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.column-breadcrumb a {
  color: var(--color-text-sub);
  text-decoration: none;
  transition: color var(--duration-fast, 150ms) ease;
}
.column-breadcrumb a:hover { color: var(--color-primary); }
.column-breadcrumb span[aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

.column-post__eyebrow {
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.column-post__title {
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.875rem, 1.5rem + 1.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.column-post__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-sub);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.column-post__sep { opacity: 0.4; }
.column-post__author { font-weight: 500; }

/* ── 本文 ── */
.column-post__body {
  font-size: 1.0625rem;
  line-height: 1.95;
  color: var(--color-text);
  word-break: break-word;
}
.column-post__body > * + * { margin-top: 1.5em; }

.column-post__body h2 {
  font-size: clamp(1.375rem, 1.2rem + 0.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
  margin-top: 3.5em;
  padding: 0 0 0.65em;
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-text);
}
.column-post__body h3 {
  font-size: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  font-weight: 700;
  margin-top: 2.5em;
  padding-left: 0.875rem;
  border-left: 4px solid var(--color-accent);
  line-height: 1.55;
}
.column-post__body h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 2em;
  color: var(--color-primary);
}
.column-post__body h5,
.column-post__body h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2em;
}

.column-post__body p { font-size: inherit; }

.column-post__body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity var(--duration-fast, 150ms) ease;
}
.column-post__body a:hover { opacity: 0.7; }

.column-post__body strong { font-weight: 700; color: var(--color-text); }

.column-post__body ul,
.column-post__body ol {
  padding-left: 1.75em;
}
.column-post__body li + li { margin-top: 0.4em; }
.column-post__body li {
  font-size: inherit;
  line-height: 1.85;
}

.column-post__body blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 1em 1.5em;
  background: var(--color-bg-sub);
  color: var(--color-text-sub);
  font-style: normal;
  border-radius: 0 8px 8px 0;
  margin-block: 2em;
}

.column-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-inline: auto;
}

.column-post__body figure {
  margin-block: 2em;
}
.column-post__body figcaption {
  font-size: 0.8125rem;
  color: var(--color-text-sub);
  text-align: center;
  margin-top: 0.75em;
}

.column-post__body table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 2em;
  font-size: 0.9375rem;
}
.column-post__body th,
.column-post__body td {
  padding: 0.75em 1em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}
.column-post__body th {
  background: var(--color-bg-sub);
  font-weight: 600;
}

.column-post__body hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-block: 3em;
}

.column-post__body iframe {
  max-width: 100%;
  display: block;
  margin-inline: auto;
}

/* ── 記事末尾CTA ── */
.column-cta {
  margin-top: clamp(4rem, 3rem + 3vw, 6rem);
  background: var(--color-primary);
  color: #fff;
  padding-block: clamp(3rem, 2.5rem + 2vw, 5rem);
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.column-cta__inner {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}
.column-cta__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.column-cta__title {
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.column-cta__lead {
  font-size: 0.9375rem;
  line-height: 1.85;
  margin-bottom: 2rem;
  opacity: 0.92;
}
.column-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.column-cta__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.column-cta__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* responsive */
@media (max-width: 640px) {
  .column-post__body { font-size: 1rem; line-height: 1.9; }
  .column-post__title { line-height: 1.45; }
}

/* mark 要素: WP本文の蛍光ペンハイライト → アクセントカラーで上品な下線風に */
.column-post__body mark {
  background: linear-gradient(transparent 62%, rgba(196, 145, 58, 0.28) 62%);
  color: inherit;
  padding: 0 0.08em;
  font-weight: inherit;
}
.column-post__body strong mark,
.column-post__body mark strong {
  background: linear-gradient(transparent 60%, rgba(217, 48, 31, 0.16) 60%);
  font-weight: 700;
}

/* TOP(is-home)以外は常時白ヘッダーのため、非スクロール時にハンバーガーが
   白く消えるのを防ぐ (旧 column-page 限定パッチを全非homeページに一般化) */
body:not(.is-home) .header:not(.is-scrolled) .header__hamburger span {
  background: var(--color-text);
}

/* column page: header の backdrop-filter が position:fixed の #sp-menu を
   ヘッダー高(60px)の枠に閉じ込めモバイルメニューが開かない問題への対処。
   column ページでは backdrop-filter を解除し、背景はほぼ不透明の白で代替する。 */
body.column-page .header:not(.is-scrolled),
body.column-page .header.is-scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.column-page .header:not(.is-scrolled) {
  background: rgba(255, 255, 255, 0.97);
}

/* ============ phase5: column related + index (一覧) ============ */
/* ── 記事末尾の関連記事 ── */
.column-related {
  margin-top: clamp(3rem, 2rem + 3vw, 5rem);
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem);
  background: var(--color-bg-sub);
}
.column-related__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.column-related__heading {
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 1.75rem;
}
.column-related__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.5rem + 1.5vw, 1.75rem);
  list-style: none;
}
.column-related__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
  height: 100%;
}
.column-related__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-bg);
}
.column-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-base, 300ms) var(--ease-out, ease);
}
.column-related__link:hover .column-related__thumb img { transform: scale(1.04); }
.column-related__cat {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}
.column-related__ttl {
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── /column/ 一覧ページ ── */
.column-index main {
  padding-top: clamp(6rem, 5rem + 4vw, 9rem);
  padding-bottom: clamp(4rem, 3rem + 4vw, 8rem);
}
.column-index__hero {
  max-width: 1200px;
  margin: 0 auto clamp(2rem, 1.5rem + 2vw, 3.5rem);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.column-index__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.column-index__title {
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 1.6rem + 2vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.column-index__lead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-sub);
}
.column-filter {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.column-filter__btn {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-full, 999px);
  background: var(--color-bg);
  color: var(--color-text-sub);
  cursor: pointer;
  transition: all var(--duration-fast, 150ms) ease;
}
.column-filter__btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.column-filter__btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.column-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 0.5rem + 2vw, 2.25rem);
}
.column-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
}
.column-card__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: var(--color-bg-sub);
}
.column-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-base, 300ms) var(--ease-out, ease);
}
.column-card:hover .column-card__thumb img { transform: scale(1.04); }
.column-card__cat {
  margin-top: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}
.column-card__ttl {
  margin-top: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.column-card__date {
  margin-top: 0.6rem;
  font-size: 0.8125rem;
  color: var(--color-text-sub);
}
.column-card.is-hidden { display: none; }
.column-pager {
  max-width: 1200px;
  margin: clamp(2.5rem, 2rem + 2vw, 4rem) auto 0;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  justify-content: center;
}
.column-pager__more {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full, 999px);
  background: var(--color-bg);
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--duration-fast, 150ms) ease;
}
.column-pager__more:hover { background: var(--color-primary); color: #fff; }
.column-pager__more[hidden] { display: none; }
.column-index__empty {
  max-width: 1200px;
  margin: 3rem auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  color: var(--color-text-sub);
}

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

/* ============ phase5: service-v2 C改(Signatureカード写真化) ============ */
.services-v2__grid--signature {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
}
.service-v2--c2 {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 212px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: linear-gradient(150deg, #ffffff 0%, var(--color-bg-sub) 100%);
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
}
.service-v2--c2:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(217, 48, 31, 0.13);
}
.service-v2--c2 .service-v2__c2body {
  position: relative;
  z-index: 1;
  width: 56%;
  padding: 28px 26px;
}
.service-v2--c2 .service-v2__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-primary);
}
.service-v2--c2 .service-v2__name {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 6px 0 8px;
  line-height: 1.45;
}
.service-v2--c2 .service-v2__tagline {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.service-v2--c2 .service-v2__desc {
  font-size: 0.82rem;
  color: var(--color-text-sub);
  line-height: 1.85;
}
.service-v2--c2 .service-v2__arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
}
.service-v2--c2 .service-v2__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64%;
}
.service-v2--c2 .service-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 8%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,1) 80%);
          mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 8%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,1) 80%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-v2--c2:hover .service-v2__media img {
  transform: scale(1.05);
}
.service-v2__media img:not([src]),
.service-v2__media img[src=""] {
  display: none;
}
@media (max-width: 640px) {
  .services-v2__grid--signature { grid-template-columns: 1fr; }
  .service-v2--c2 .service-v2__c2body { width: 60%; }
  .service-v2--c2 .service-v2__media { width: 58%; }
}
/* 画像未設定のC改カードは本文を全幅に(空白の右側を出さない) */
.service-v2--c2:has(.service-v2__media img:not([src])) .service-v2__c2body,
.service-v2--c2:has(.service-v2__media img[src=""]) .service-v2__c2body {
  width: 100%;
}

/* ============ phase5: TOP セクション背景の交互化（グレー/白） ============ */
/* 白セクションが連続しないよう、コンテンツセクションを交互に着色。
   深紅の news-highlight・各バナー・FVヒーローは区切りとしてそのまま。 */
#campaign-section,
.service-features,
#services-13,
#features,
.merits,
.price-faq,
#shops,
.cta-split {
  background: var(--color-bg-sub) !important;
}
#who-we-are,
#symptoms,
#body-map,
#before-after,
#reviews,
#flow,
#short-movie {
  background: var(--color-bg) !important;
}

/* ============================================
   phase6: 施術メニュー詳細ページ (/menu/{slug}/)
   ============================================ */
.menu-detail .container { max-width: var(--container-max); }
.menu-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-lg);
}
.menu-detail-block { margin-bottom: var(--space-lg); }
.menu-detail-block:last-child { margin-bottom: 0; }
.menu-detail-block h3 {
  font-family: var(--font-jp);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
  padding-left: 0.8rem;
  border-left: 3px solid var(--color-primary);
  line-height: 1.4;
}
.menu-detail-lead {
  font-size: var(--text-base);
  line-height: 2;
  color: var(--color-text);
  margin: 0;
}
.menu-detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.menu-detail-chip {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--color-primary);
  background: var(--color-bg-sub);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.34rem 0.85rem;
  line-height: 1.3;
}
.menu-detail-chip::before { content: "#"; opacity: 0.7; margin-right: 0.05em; }
.menu-detail-block:has(> .menu-detail-related:empty) { display: none; }
.menu-detail-block:has(> .menu-detail-trust:empty) { display: none; }
.menu-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-detail-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.7rem;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
}
.menu-detail-list li:last-child { margin-bottom: 0; }
.menu-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 78% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 78% no-repeat;
}
.menu-detail-related {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.menu-detail-related a {
  font-size: var(--text-sm);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.menu-detail-related a:hover { text-decoration: underline; }
.menu-detail-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.menu-detail-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-en);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-sub);
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.menu-detail-duration svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }
.menu-detail-card h3 {
  font-family: var(--font-jp);
  font-size: var(--text-base);
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
.menu-detail-trust {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
}
.menu-detail-trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.menu-detail-trust li:last-child { margin-bottom: 0; }
.menu-detail-trust svg {
  width: 16px; height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.menu-detail-card .btn { display: flex; width: 100%; margin-top: 0.6rem; }
@media (max-width: 900px) {
  .menu-detail-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .menu-detail-card { position: static; }
}

/* =============================================================
   REDESIGN 2026-05: FV (Minimal Editorial)
   - Light background, massive Japanese typography, single CTA
   - Reference: Apple / Linear / Aesop
   ============================================================= */
.fv--minimal {
  min-height: clamp(560px, 92svh, 920px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--color-bg);
  color: var(--color-text);
  overflow: hidden;
  position: relative;
  padding-top: var(--header-h);
}

.fv--minimal .fv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.fv--minimal .fv__eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin: 0 0 var(--space-6);
}

.fv--minimal .fv__headline {
  font-family: var(--font-jp);
  font-size: clamp(2rem, 1.3rem + 4vw, 5.5rem);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
  color: var(--color-text);
  margin: 0 0 var(--space-6);
  max-width: 22ch;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.fv--minimal .fv__headline-accent {
  color: var(--color-primary);
  font-style: normal;
  white-space: nowrap;
}

.fv--minimal .fv__headline-line {
  display: inline-block;
}

@media (max-width: 560px) {
  .fv--minimal .fv__headline {
    font-size: clamp(1.625rem, 1.1rem + 3vw, 2.5rem);
    max-width: none;
  }
}

.fv--minimal .fv__sub {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  font-weight: var(--weight-regular);
  color: var(--color-text-sub);
  letter-spacing: 0.02em;
  line-height: var(--leading-base);
  margin: 0 0 var(--space-8);
}

.fv--minimal .fv__cta {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.fv--minimal .fv__cta-link {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding-block: var(--space-2);
  transition: color var(--duration-base) var(--ease-out);
}

.fv--minimal .fv__cta-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
  margin-top: 4px;
}

.fv--minimal .fv__cta-link:hover {
  color: var(--color-primary);
}

.fv--minimal .fv__cta-link:hover::after {
  transform: scaleX(1);
}

/* Subtle ambient gradient blobs for depth (Linear-style) */
.fv--minimal::before,
.fv--minimal::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.fv--minimal::before {
  top: -15%;
  right: -8%;
  width: 55vmax;
  height: 55vmax;
  background: radial-gradient(closest-side, rgba(217, 48, 31, 0.035), transparent 70%);
}

.fv--minimal::after {
  bottom: -30%;
  left: -10%;
  width: 45vmax;
  height: 45vmax;
  background: radial-gradient(closest-side, rgba(217, 48, 31, 0.02), transparent 70%);
}

/* Scroll indicator override for light background */
.fv--minimal .fv__scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.fv--minimal .fv__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,0), rgba(10,10,10,0.45));
  animation: scrollPulse 2s ease-in-out infinite;
}

.fv--minimal .fv__scroll-text {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--color-text-soft);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .fv--minimal {
    min-height: 80svh;
    padding-bottom: var(--space-9);
  }
  .fv--minimal .fv__headline { margin-bottom: var(--space-6); }
  .fv--minimal .fv__sub      { margin-bottom: var(--space-7); }
  .fv--minimal .fv__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
}

/* =============================================================
   REDESIGN 2026-05: Float banner — slim pill (less aggressive)
   - Single-line horizontal pill at bottom-right
   - No bulky hero image, no crimson gradient block
   ============================================================= */
.float-banner {
  bottom: 20px;
  right: 20px;
  width: auto;
  max-width: 320px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--color-bg);
  overflow: visible;
}

.float-banner__close {
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  font-size: 11px;
  background: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.float-banner__inner {
  flex-direction: row;
  align-items: center;
  padding: 6px 6px 6px 18px;
  gap: 14px;
}

.float-banner__img { display: none; }

.float-banner__body {
  background: transparent;
  padding: 0;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.float-banner__text {
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
}

.float-banner__label {
  color: var(--color-text-sub);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.float-banner__price { color: var(--color-text); }
.float-banner__price span { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.float-banner__price small { font-size: 10px; color: var(--color-text-sub); font-weight: 500; }

.float-banner__cta {
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.float-banner__inner:hover .float-banner__cta {
  background: var(--color-primary-dk);
  transform: none;
}

@media (max-width: 480px) {
  .float-banner {
    width: calc(100vw - 32px);
    max-width: none;
    right: 16px;
    bottom: 16px;
  }
}

/* =============================================================
   REDESIGN 2026-05: Header — light FV adaptation + glass effect
   ============================================================= */
/* Home/light FV: header always dark on white from the start */
body.is-home .header:not(.is-scrolled) .header__logo img {
  filter: none;
}

body.is-home .header:not(.is-scrolled) .btn--member {
  color: var(--color-text);
  border-color: var(--color-border);
}

body.is-home .header:not(.is-scrolled) .btn--member:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Glass effect when scrolled (Linear / Vercel style) */
.header.is-scrolled {
  background-color: var(--color-glass);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow:
    0 1px 0 0 rgba(10, 10, 10, 0.04),
    var(--shadow-sm);
}

/* =============================================================
   REDESIGN 2026-05: Card hover — gentler, longer ease (空気感)
   ============================================================= */
.cause-card,
.symptom-callout,
.shop-card,
.campaign-card {
  transition:
    transform var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
  .header.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .cause-card, .symptom-callout, .shop-card, .campaign-card {
    transition: none;
  }
}

/* =============================================================
   REDESIGN 2026-05: Page transitions
   - View Transitions API: smooth cross-page fade (Chrome/Safari)
   - Falls back gracefully in older browsers (browser default load)
   ============================================================= */
@view-transition { navigation: auto; }

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 280ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

::view-transition-old(root) {
  animation-name: fade-out-soft;
}

::view-transition-new(root) {
  animation-name: fade-in-soft;
}

@keyframes fade-out-soft {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes fade-in-soft {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation-duration: 0.01ms; }
}

/* =============================================================
   FIX 2026-05-28: service-list mobile (touch device cannot hover)
   Default-expanded card layout on mobile / touch devices
   ============================================================= */
@media (hover: none), (max-width: 768px) {
  .service-list__item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "img"
      "body";
    max-height: none !important;
    padding: clamp(2rem, 5vw, 3rem) 0 !important;
    gap: clamp(1rem, 3vw, 1.5rem);
    overflow: visible;
  }
  .service-list__num { grid-area: num; padding-top: 0; font-size: 2.25rem; }
  .service-list__body { grid-area: body; }
  .service-list__img {
    grid-area: img;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    clip-path: none !important;
  }
  .service-list__img img { width: 100%; height: 100%; object-fit: cover; transform: none !important; }
  .service-list__collapse { opacity: 1 !important; max-height: none; margin-top: 0; }
  .service-list__desc { font-size: 0.95rem; }
}

/* =============================================================
   FV REFINEMENT 2026-05-29 (一時納品仕上げ)
   - 右側装飾(円形リング + 縦線)
   - 信頼バッジ (AI姿勢分析 / 国家資格者監修 / 全国80院以上)
   - 信頼補足コピー
   - モバイル最適化(SCROLL非表示・余白圧縮)
   - body.is-home スコープでヘッダー軽量化(他ページに影響なし)
   ============================================================= */

/* ヘッダー軽量化: TOPページのみ高さ 72→68px、影をフラットに */
body.is-home { --header-h: 68px; }

body.is-home .header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 0 rgba(10, 10, 10, 0.05), 0 2px 14px rgba(10, 10, 10, 0.025);
}

body.is-home .header__inner {
  gap: clamp(1rem, 1.5vw, 2rem);
}

/* FV: 上部パディングをヘッダー高に合わせる + 下部 padding */
.fv--minimal {
  padding-top: var(--header-h);
  padding-bottom: clamp(2.5rem, 4vw, 4.5rem);
  min-height: clamp(580px, 88svh, 880px);
}

.fv--minimal .fv__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-px);
  width: 100%;
}

/* タイポ余白の再調整 */
.fv--minimal .fv__eyebrow { margin-bottom: var(--space-5); }
.fv--minimal .fv__headline {
  margin-bottom: var(--space-5);
  letter-spacing: -0.035em;
}
.fv--minimal .fv__sub {
  margin-bottom: var(--space-3);
  font-weight: var(--weight-regular);
}

/* 信頼補足コピー */
.fv--minimal .fv__support {
  font-family: var(--font-jp);
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  color: var(--color-text-soft);
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin: 0 0 var(--space-7);
  max-width: 38ch;
}

/* CTAグループ */
.fv--minimal .fv__cta { margin-bottom: var(--space-6); }

/* CTAボタンの影を上品に再調整 */
.fv--minimal .btn--primary {
  box-shadow:
    0 4px 14px rgba(217, 48, 31, 0.18),
    0 1px 2px rgba(217, 48, 31, 0.10);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    background-color var(--duration-base) var(--ease-out);
}
.fv--minimal .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 8px 22px rgba(217, 48, 31, 0.22),
    0 2px 4px rgba(217, 48, 31, 0.10);
}

/* 信頼バッジ */
.fv--minimal .fv__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 0.75rem;
  margin: 0;
  padding: 0;
}

.fv--minimal .fv__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: var(--weight-medium);
  color: var(--color-text-sub);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: border-color var(--duration-base) var(--ease-out);
}

.fv--minimal .fv__trust-item:hover {
  border-color: rgba(217, 48, 31, 0.30);
}

.fv--minimal .fv__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* 右側装飾: 円形リング + 縦線 (PC のみ目立つ) */
.fv--minimal .fv__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.fv--minimal .fv__decor-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.7), rgba(248, 247, 245, 0.35) 60%, transparent 80%);
}

.fv--minimal .fv__decor-ring--main {
  top: 15%;
  right: 4%;
  width: min(38vw, 460px);
  aspect-ratio: 1;
  box-shadow:
    inset 0 0 60px rgba(217, 48, 31, 0.04),
    0 30px 80px rgba(10, 10, 10, 0.04);
}

.fv--minimal .fv__decor-ring--sub {
  bottom: 12%;
  right: 26%;
  width: min(18vw, 220px);
  aspect-ratio: 1;
  border-color: rgba(217, 48, 31, 0.10);
  background: radial-gradient(circle at 60% 60%, rgba(217, 48, 31, 0.04), transparent 70%);
}

/* 装飾用の細い縦線 (右側、AIスキャンを連想させる) */
.fv--minimal .fv__decor-line {
  position: absolute;
  top: 20%;
  right: 18%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(10, 10, 10, 0.10) 20%,
    rgba(10, 10, 10, 0.10) 80%,
    transparent 100%);
}

/* SCROLLインジケータをよりミニマルに位置調整 */
.fv--minimal .fv__scroll-indicator {
  bottom: clamp(1.25rem, 2.5vw, 2.5rem);
}

/* =============================================================
   モバイル最適化 (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {
  .fv--minimal {
    min-height: auto;
    padding-bottom: var(--space-7);
  }

  /* SCROLLインジケータを非表示(下部余白の間延び解消) */
  .fv--minimal .fv__scroll-indicator { display: none; }

  /* 装飾はぼんやり背景化 */
  .fv--minimal .fv__decor-ring--main {
    top: -8%;
    right: -22%;
    width: 75vw;
    opacity: 0.7;
  }
  .fv--minimal .fv__decor-ring--sub {
    display: none;
  }
  .fv--minimal .fv__decor-line { display: none; }

  /* 補足コピーをコンパクトに */
  .fv--minimal .fv__support {
    font-size: 0.8125rem;
    max-width: none;
    margin-bottom: var(--space-6);
  }

  /* CTAブロック */
  .fv--minimal .fv__cta {
    margin-bottom: var(--space-5);
  }
  .fv--minimal .fv__cta .btn--primary {
    align-self: flex-start;
    text-align: center;
    width: auto;
    min-width: 220px;
    max-width: 320px;
    padding-inline: 2rem;
  }

  /* 信頼バッジを小型化 */
  .fv--minimal .fv__trust {
    gap: 0.5rem;
  }
  .fv--minimal .fv__trust-item {
    padding: 0.4rem 0.75rem;
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
  }
}

/* =============================================================
   超小型端末 (≤ 380px) - 横はみ出し防止
   ============================================================= */
@media (max-width: 380px) {
  .fv--minimal .fv__trust-item { font-size: 0.65rem; padding: 0.35rem 0.625rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fv--minimal .btn--primary { transition: none; }
  .fv--minimal .btn--primary:hover { transform: none; }
}

/* =============================================================
   FIX 2026-05-29: stats text variant (non-numeric safe labels)
   .features__stat--text — for "AI" "個室" "体験" 系の文字スタッツ
   ============================================================= */
.features__stat--text .features__stat-num {
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* =============================================================
   FIX 2026-05-29: FV サブCTAリンクに上品な矢印
   .fv__cta-link に CSS擬似要素で矢印を追加(HTML触らず)
   ============================================================= */
.fv--minimal .fv__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

.fv--minimal .fv__cta-link::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: width var(--duration-base) var(--ease-out);
  order: 2;
  margin-left: 0.25em;
}

.fv--minimal .fv__cta-link::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  order: 3;
  margin-left: -0.65em;
}

.fv--minimal .fv__cta-link:hover::before { width: 24px; }

/* リンク全体の下線(scaleX)は維持しつつ、矢印が破綻しないよう調整 */
.fv--minimal .fv__cta-link {
  padding-block: var(--space-2);
  border-bottom: 1px solid transparent;
  transition: color var(--duration-base) var(--ease-out), border-bottom-color var(--duration-base) var(--ease-out);
}
.fv--minimal .fv__cta-link:hover {
  border-bottom-color: currentColor;
}

/* 既存の ::after 下線は矢印と競合するため非表示にする */
.fv--minimal .fv__cta-link::after {
  /* override default underline pseudo-element from earlier rule */
  background: transparent !important;
  width: 5px !important;
  height: 5px !important;
  transform: rotate(45deg) !important;
  margin-top: 0 !important;
}

/* =============================================================
   FIX 2026-05-29: case-study nav arrows (SVG icon)
   ============================================================= */
.case-study__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.case-study__btn svg {
  display: block;
}

/* =============================================================
   FIX 2026-05-29: 「短い矢印リンク」(SCROLL含む) — 念のためロゴ・ENトグル縦中央
   ============================================================= */
.header__inner > * { align-self: center; }

/* =============================================================
   FIX 2026-05-29 FINAL: サブCTAリンクの矢印を1本に整理
   過去の擬似要素ルールを最終上書きする
   ============================================================= */
.fv--minimal .fv__cta-link::before { content: none !important; }
.fv--minimal .fv__cta-link::after {
  content: '→' !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  transform: translateX(0) !important;
  margin: 0 0 0 0.45em !important;
  padding: 0 !important;
  transition: transform var(--duration-base) var(--ease-out) !important;
  font-size: 1.15em !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}
.fv--minimal .fv__cta-link:hover::after {
  transform: translateX(4px) !important;
}
.fv--minimal .fv__cta-link {
  border-bottom: none !important;
}

/* =============================================================
   FIX 2026-05-29: lang-toggle のコントラスト問題 (全ページ対応)
   active状態が currentColor 依存だったため、白背景時に
   白文字 + 白bg = 見えない状態が発生。primary 単色に固定。
   ============================================================= */
.lang-toggle__opt {
  opacity: 0.7;
  color: inherit;
  transition: opacity 0.2s var(--ease-out), background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.lang-toggle__opt.is-active {
  opacity: 1;
  background: var(--color-primary) !important;
  color: #ffffff !important;
}
.lang-toggle__opt.is-active span {
  color: #ffffff !important;
  mix-blend-mode: normal !important;
}
.lang-toggle {
  border-color: currentColor;
}
/* スクロール状態でも primary 維持 */
.header.is-scrolled .lang-toggle__opt.is-active,
body:not(.is-home) .header .lang-toggle__opt.is-active {
  background: var(--color-primary) !important;
  color: #ffffff !important;
}

/* =============================================================
   FIX 2026-05-29: 店舗一覧CTAを「初回体験予約」と同等の存在感に
   既存 .header__nav-link--shops-cta のスタイルを再強化
   ============================================================= */
.header__nav-link.header__nav-link--shops-cta,
.header.is-scrolled .header__nav-link.header__nav-link--shops-cta,
body:not(.is-home) .header .header__nav-link.header__nav-link--shops-cta {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.6em 1.4em !important; /* r76: 初回体験予約 (.header__cta 0.6em) と高さ統一 */
  border-radius: 999px !important;
  background: var(--color-primary) !important;
  color: #ffffff !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: 0 2px 8px rgba(217, 48, 31, 0.18) !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
}
.header__nav-link--shops-cta::after { display: none !important; }
.header__nav-link--shops-cta:hover,
.header__nav-link--shops-cta:focus-visible {
  background: var(--color-primary-dk) !important;
  border-color: var(--color-primary-dk) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(217, 48, 31, 0.30) !important;
}

/* =============================================================
   LP 2026 RENEWAL — Phase 1 骨組み (2026-05-29)
   全クラス .lp2026-* プレフィックスでスコープ
   既存ページに影響なし、index.html 専用
   ============================================================= */

/* ---- 共通 ---- */
.lp2026-section {
  padding-block: clamp(4rem, 3rem + 4vw, 7rem);
}
.lp2026-section--bg-sub { background: var(--color-bg-sub); }

.lp2026-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
  max-width: 720px;
  margin-inline: auto;
}
.lp2026-section-header--left { text-align: left; max-width: none; margin-inline: 0; }

.lp2026-eyebrow {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 0.875rem;
}
.lp2026-section-title {
  font-size: clamp(1.625rem, 1.2rem + 1.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--color-text);
  margin: 0;
}
.lp2026-section-lead {
  font-size: clamp(0.9375rem, 0.85rem + 0.3vw, 1.0625rem);
  color: var(--color-text-sub);
  line-height: 1.8;
  margin: 0.875rem 0 0;
}
.lp2026-accent { color: var(--color-primary); }

/* ---- 1. FV ヒーロー ---- */
.lp2026-fv {
  padding-top: calc(var(--header-h) + 1rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  background: var(--color-bg);
  overflow: hidden;
}
.lp2026-fv__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
  min-height: calc(100svh - var(--header-h) - 4rem);
}
.lp2026-fv__copy { padding-block: 1rem; }
.lp2026-fv__headline {
  font-size: clamp(2.25rem, 1.5rem + 3.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--color-text);
  margin: 0 0 1.5rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.lp2026-fv__sub {
  font-size: clamp(0.9375rem, 0.85rem + 0.35vw, 1.125rem);
  color: var(--color-text-sub);
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.lp2026-fv__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.lp2026-fv__visual { position: relative; }
.lp2026-fv__visual img {
  width: 100%;
  height: 100%;
  max-height: 80svh;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(10,10,10,0.10);
}

@media (max-width: 900px) {
  .lp2026-fv__inner { grid-template-columns: 1fr; min-height: auto; }
  .lp2026-fv__visual img { max-height: 60svh; }
  .lp2026-fv__cta .btn { flex: 1 1 auto; min-width: 140px; }
}

/* ---- 2. キャンペーン帯 ---- */
.lp2026-campaign-strip {
  background: linear-gradient(135deg, #FAF5EE 0%, #F2E8D5 100%);
  padding-block: clamp(3rem, 2.5rem + 2vw, 5rem);
}
.lp2026-campaign-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
}
.lp2026-campaign-strip__heading {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--color-text);
}
.lp2026-campaign-strip__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
}
.lp2026-price-old {
  text-decoration: line-through;
  color: var(--color-text-sub);
  font-size: 1rem;
}
.lp2026-price-new {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.lp2026-price-tax { font-size: 0.875rem; color: var(--color-text-sub); }
.lp2026-campaign-strip__visual img { width: 100%; border-radius: 16px; box-shadow: 0 20px 50px rgba(10,10,10,0.08); }

@media (max-width: 768px) {
  .lp2026-campaign-strip__inner { grid-template-columns: 1fr; }
}

/* ---- 3. NAORUが選ばれる理由 ---- */
.lp2026-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.lp2026-why__card {
  background: var(--color-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.lp2026-why__card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(10,10,10,0.08); }
.lp2026-why__visual { aspect-ratio: 4/5; overflow: hidden; background: var(--color-bg-sub); }
.lp2026-why__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.lp2026-why__card:hover .lp2026-why__visual img { transform: scale(1.04); }
.lp2026-why__title { font-size: 1.25rem; font-weight: 700; margin: 1.25rem 1.5rem 0.5rem; color: var(--color-text); }
.lp2026-why__desc { font-size: 0.9375rem; line-height: 1.8; color: var(--color-text-sub); margin: 0 1.5rem 1.5rem; }

/* ---- 4. AI 姿勢分析 ---- */
.lp2026-ai { background: var(--color-bg-sub); }
.lp2026-ai__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
}
.lp2026-ai__visual img { width: 100%; transform: rotate(-2deg); transition: transform 0.6s ease; filter: drop-shadow(0 20px 40px rgba(10,10,10,0.10)); }
.lp2026-ai__visual:hover img { transform: rotate(0deg); }
.lp2026-ai__steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.lp2026-ai__steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(10,10,10,0.04);
}
.lp2026-ai__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.lp2026-ai__steps h3 { font-size: 1.125rem; font-weight: 700; margin: 0 0 0.375rem; }
.lp2026-ai__steps p { font-size: 0.875rem; color: var(--color-text-sub); margin: 0; line-height: 1.7; }

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

/* ---- 5. Before/After ---- */
.lp2026-ba__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.lp2026-ba__card { text-align: center; }
.lp2026-ba__placeholder {
  aspect-ratio: 1/1.2;
  background: linear-gradient(135deg, #f0eeeb 0%, #e4e1dc 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-sub);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.lp2026-ba__card h3 { font-size: 1.0625rem; font-weight: 600; }

/* ---- 6. NAORUの強み ---- */
.lp2026-strengths__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 1rem + 1vw, 1.5rem);
}
.lp2026-strengths__card {
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.lp2026-strengths__card:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.lp2026-strengths__icon { font-size: 2rem; color: var(--color-primary); margin-bottom: 0.75rem; }
.lp2026-strengths__card h3 { font-size: 1.0625rem; font-weight: 700; margin: 0 0 0.5rem; }
.lp2026-strengths__card p { font-size: 0.875rem; color: var(--color-text-sub); line-height: 1.7; margin: 0; }

/* ---- 7. 施術メリット ---- */
.lp2026-merit { background: var(--color-bg-sub); }
.lp2026-merit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
}
.lp2026-merit__card {
  background: var(--color-bg);
  border-radius: 16px;
  overflow: hidden;
}
.lp2026-merit__card picture { display: block; aspect-ratio: 4/3; overflow: hidden; }
.lp2026-merit__card img { width: 100%; height: 100%; object-fit: cover; }
.lp2026-merit__card h3 { font-size: 1.125rem; font-weight: 700; margin: 1.25rem 1.5rem 0.5rem; }
.lp2026-merit__card p { font-size: 0.9375rem; color: var(--color-text-sub); line-height: 1.8; margin: 0 1.5rem 1.5rem; }

/* ---- 8. 料金 + FAQ ---- */
.lp2026-price-faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 3vw, 4rem);
}
.lp2026-price-faq__plans { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.lp2026-price-faq__plans li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  gap: 1rem;
}
.lp2026-price-faq__plans h3 { font-size: 1.0625rem; font-weight: 700; margin: 0 0 0.25rem; }
.lp2026-price-faq__plans p { font-size: 0.875rem; color: var(--color-text-sub); margin: 0; }
.lp2026-price-faq__amount {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}
.lp2026-price-faq__amount span { font-size: 0.75rem; color: var(--color-text-sub); margin-left: 0.375rem; font-weight: 400; }
.lp2026-price-faq__qs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.lp2026-price-faq__qs li {
  padding: 1.25rem 1.5rem;
  background: var(--color-bg);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 12px 12px 0;
}
.lp2026-price-faq__qs h3 { font-size: 0.9375rem; font-weight: 600; margin: 0 0 0.5rem; }
.lp2026-price-faq__qs p { font-size: 0.8125rem; color: var(--color-text-sub); line-height: 1.7; margin: 0; }

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

/* ---- 9. ¥3,500 大バナー ---- */
.lp2026-cta-banner {
  background: var(--color-primary);
  color: #fff;
  padding-block: clamp(3rem, 2.5rem + 2vw, 5rem);
  text-align: center;
}
.lp2026-cta-banner__label { font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; margin: 0 0 0.5rem; color: rgba(255,255,255,0.8); }
.lp2026-cta-banner__price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2.5rem + 3vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 0.5rem;
}
.lp2026-cta-banner__price span { font-size: 1rem; margin-left: 0.5rem; font-weight: 400; opacity: 0.8; }
.lp2026-cta-banner__note { font-size: 0.9375rem; margin: 0 0 2rem; opacity: 0.9; }
.lp2026-cta-banner__btn { background: #fff !important; color: var(--color-primary) !important; padding-inline: 2.5rem; }
.lp2026-cta-banner__btn:hover { background: rgba(255,255,255,0.92) !important; }

/* ---- 10. 店舗 ---- */
.lp2026-shops__cta { text-align: center; }

/* ---- 11. YouTube ---- */
.lp2026-media__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.lp2026-media__card {
  display: block;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp2026-media__card:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(10,10,10,0.12); }
.lp2026-media__card img { width: 100%; height: 100%; object-fit: cover; }

/* ---- 12. Contact ---- */
.lp2026-contact { background: var(--color-bg-sub); }
.lp2026-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.lp2026-contact__phone,
.lp2026-contact__web {
  padding: 2rem;
  background: var(--color-bg);
  border-radius: 16px;
  text-align: center;
}
.lp2026-contact__tel {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 1.5rem + 1.5vw, 2.625rem);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  margin: 0.5rem 0;
  letter-spacing: -0.01em;
}
.lp2026-contact__hours,
.lp2026-contact__note { font-size: 0.8125rem; color: var(--color-text-sub); margin: 0.5rem 0 0; }

/* =============================================================
   LP 2026 — Phase 2 styles
   ============================================================= */

/* FV updates */
.lp2026-fv__link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s ease, transform 0.3s ease;
}
.lp2026-fv__link:hover { color: var(--color-primary); transform: translateX(2px); }

.lp2026-fv__features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.lp2026-fv__features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: var(--color-bg-sub);
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-text);
}
.lp2026-fv__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,48,31,0.08);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
}

/* FV floating campaign card (右下に重ねる) */
.lp2026-fv__visual { position: relative; }
.lp2026-fv__floating {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 12px 32px rgba(10,10,10,0.12);
  text-decoration: none;
  color: var(--color-text);
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp2026-fv__floating:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(10,10,10,0.18); }
.lp2026-fv__floating-label {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  line-height: 1.25;
  text-align: center;
  flex-shrink: 0;
}
.lp2026-fv__floating-prices { display: flex; flex-direction: column; gap: 0.25rem; }
.lp2026-fv__floating-tag { font-size: 0.75rem; color: var(--color-text-sub); margin: 0; }
.lp2026-fv__floating-price { margin: 0; line-height: 1; font-family: var(--font-display); color: var(--color-primary); font-weight: 700; }
.lp2026-fv__floating-price .num { font-size: 1.75rem; }
.lp2026-fv__floating-price .yen { font-size: 0.875rem; margin-left: 0.125rem; }
.lp2026-fv__floating-price .tax { font-size: 0.625rem; color: var(--color-text-sub); margin-left: 0.375rem; font-weight: 400; }
.lp2026-fv__floating-old { font-size: 0.6875rem; color: var(--color-text-sub); text-decoration: line-through; margin: 0; }
.lp2026-fv__floating-sub { font-size: 0.6875rem; color: var(--color-text-sub); margin: 0; }

@media (max-width: 768px) {
  .lp2026-fv__features { grid-template-columns: 1fr; }
  .lp2026-fv__floating {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
}

/* ---- Section header row variant ---- */
.lp2026-section-header--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: none;
  margin-inline: 0;
  text-align: left;
  flex-wrap: wrap;
  gap: 1rem;
}
.lp2026-section-header__more {
  font-size: 0.875rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease;
}
.lp2026-section-header__more:hover { transform: translateX(2px); }

/* ---- CNN (Campaign + News + Reason 3col) ---- */
.lp2026-cnn { background: var(--color-bg-sub); }
.lp2026-cnn__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  gap: 1.5rem;
}
.lp2026-cnn__campaign,
.lp2026-cnn__news,
.lp2026-cnn__reason {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
/* Campaign */
.lp2026-cnn__campaign-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.lp2026-cnn__campaign-head h3 { font-size: 1.125rem; font-weight: 700; margin: 0; }
.lp2026-cnn__badge {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.5rem 0.625rem;
  border-radius: 50%;
  text-align: center;
  line-height: 1.1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp2026-cnn__campaign-sub { font-size: 0.8125rem; color: var(--color-text-sub); margin: 0.75rem 0 0.5rem; }
.lp2026-cnn__campaign-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.5rem 0 0.25rem;
}
.lp2026-cnn__campaign-label { font-size: 0.8125rem; color: var(--color-text-sub); }
.lp2026-cnn__campaign-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.lp2026-cnn__campaign-num span { font-size: 0.625rem; color: var(--color-text-sub); margin-left: 0.375rem; font-weight: 400; }
.lp2026-cnn__campaign-old { font-size: 0.75rem; color: var(--color-text-sub); text-decoration: line-through; margin: 0 0 1rem; }

/* News */
.lp2026-cnn__news-head h3 { font-size: 1.125rem; font-weight: 700; margin: 0; }
.lp2026-cnn__news-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.875rem; }
.lp2026-cnn__news-list li { display: flex; align-items: center; gap: 0.75rem; padding-bottom: 0.875rem; border-bottom: 1px solid var(--color-border); font-size: 0.8125rem; }
.lp2026-cnn__news-list li:last-of-type { border-bottom: none; }
.lp2026-cnn__news-list time { color: var(--color-text-sub); font-size: 0.6875rem; flex-shrink: 0; }
.lp2026-cnn__news-cat { font-size: 0.625rem; padding: 0.25rem 0.5rem; background: var(--color-bg-sub); border-radius: 4px; flex-shrink: 0; color: var(--color-text-sub); }
.lp2026-cnn__news-list a { color: var(--color-text); text-decoration: none; }
.lp2026-cnn__news-list a:hover { color: var(--color-primary); }
.lp2026-cnn__news-more { margin-top: auto; padding-top: 1rem; text-align: center; }

/* Reason */
.lp2026-cnn__reason { position: relative; overflow: hidden; padding-bottom: 0; }
.lp2026-cnn__reason-head h3 { font-size: 1rem; font-weight: 700; line-height: 1.4; margin: 0; }
.lp2026-cnn__reason-link { display: inline-block; margin: 0.75rem 0 1rem; font-size: 0.8125rem; color: var(--color-primary); text-decoration: none; font-weight: 500; }
.lp2026-cnn__reason-img { margin: 0 -1.75rem -1px; aspect-ratio: 5/4; overflow: hidden; border-radius: 0 0 16px 16px; }
.lp2026-cnn__reason-img img { width: 100%; height: 100%; object-fit: cover; }

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

/* ---- AI ---- */
.lp2026-ai__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
}
.lp2026-ai__copy { padding-block: 1rem; }
.lp2026-ai__pills {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.lp2026-ai__pills li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}
.lp2026-ai__pill-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.lp2026-ai__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}
.lp2026-ai__gallery picture {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-sub);
}
.lp2026-ai__gallery picture:first-child { grid-row: 1 / span 2; aspect-ratio: 3/4; }
.lp2026-ai__gallery picture:nth-child(2) { aspect-ratio: 1; }
.lp2026-ai__gallery picture:nth-child(3) { aspect-ratio: 1; }
.lp2026-ai__gallery img { width: 100%; height: 100%; object-fit: cover; }

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

/* ---- Before/After (refined) ---- */
.lp2026-ba__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; position: relative; border-radius: 12px; overflow: hidden; }
.lp2026-ba__half { position: relative; background: var(--color-bg-sub); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; }
.lp2026-ba__ph { color: var(--color-text-sub); font-size: 0.875rem; }
.lp2026-ba__label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  background: rgba(10,10,10,0.7);
  color: #fff;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin: 0;
}
.lp2026-ba__label--after { background: var(--color-primary); }
.lp2026-ba__card h3 { font-size: 0.9375rem; font-weight: 600; margin: 0.75rem 0 0.25rem; }
.lp2026-ba__card p { font-size: 0.75rem; color: var(--color-text-sub); margin: 0; }

/* ---- Strengths bar (5 columns) ---- */
.lp2026-strengths { background: var(--color-bg-sub); padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.lp2026-strengths__bar {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.lp2026-strengths__bar li {
  text-align: center;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.lp2026-strengths__bar .lp2026-strengths__icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin: 0;
}
.lp2026-strengths__bar h3 { font-size: 0.8125rem; font-weight: 600; line-height: 1.5; margin: 0; color: var(--color-text); }

@media (max-width: 768px) {
  .lp2026-strengths__bar { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Menu + Symptom (2col) ---- */
.lp2026-ms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.lp2026-ms__menu,
.lp2026-ms__symptom {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--token-r-card, 24px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.lp2026-ms__menu-visual { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--token-r-card-sm, 18px); margin: 1rem 0; }
.lp2026-ms__menu-visual img { width: 100%; height: 100%; object-fit: cover; }
.lp2026-ms__menu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; flex: 1; }
.lp2026-ms__menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
  gap: 1rem;
}
.lp2026-ms__menu-list li:last-child { border-bottom: none; }
.lp2026-ms__menu-name { color: var(--color-text); }
.lp2026-ms__menu-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}
.lp2026-ms__menu-price small { font-size: 0.625rem; color: var(--color-text-sub); margin-left: 0.25rem; font-weight: 400; }
.lp2026-ms__menu-more { margin-top: 1.5rem; display: block; text-align: center; }

.lp2026-ms__symptom-grid {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lp2026-ms__symptom-grid li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.5rem;
  background: var(--color-bg-sub);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.8125rem;
  text-align: center;
  transition: background 0.3s ease;
}
.lp2026-ms__symptom-grid li a:hover { background: rgba(217,48,31,0.06); }
.lp2026-ms__symptom-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
}
.lp2026-ms__symptom-more { margin-top: 1.5rem; display: block; text-align: center; }

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

/* ---- Merit + Voice + Flow (3col) ---- */
.lp2026-mvf__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
/* r96: 2 col variation (メニュー+料金 などの 2 列レイアウト用) */
.lp2026-mvf--2col .lp2026-mvf__grid {
  grid-template-columns: 1fr 1fr;
}
/* r119: 上下の他 2 列セクション (BODY MAP など) と幅を揃える
   → 標準 container 幅 (1240px) のままで 2 列を取らせる */

/* r97: 行揃え — 各カードを内容に合わせて自然な高さに (空白排除) */
body.is-home .lp2026-ms__grid,
body.is-home .lp2026-mvf__grid,
body.is-home .lp2026-pfc__grid {
  align-items: start !important;
}

/* r100: CAMPAIGN/NEWS/REASON を 2 列レイアウトに再構成
   ┌──────────┬──────┐
   │ CAMPAIGN │      │
   ├──────────┤REASON│
   │ NEWS     │ (大) │
   └──────────┴──────┘ */
body.is-home .lp2026-cnn__grid {
  grid-template-columns: 1.25fr 1fr !important;
  grid-template-areas:
    "campaign reason"
    "news reason" !important;
  align-items: stretch !important;
  gap: clamp(16px, 1.8vw, 28px) !important;
}
body.is-home .lp2026-cnn__campaign { grid-area: campaign !important; }
body.is-home .lp2026-cnn__news { grid-area: news !important; }
body.is-home .lp2026-cnn__reason { grid-area: reason !important; }
/* REASON 内の画像を縦長に対応 (伸び防止) */
body.is-home .lp2026-cnn__reason {
  padding-bottom: 0 !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
}
body.is-home .lp2026-cnn__reason-img {
  margin: 0 -1.75rem -1px !important;
  aspect-ratio: auto !important;
  flex: 1 1 auto;
  min-height: 320px;
  overflow: hidden;
}
body.is-home .lp2026-cnn__reason-img img,
body.is-home .lp2026-cnn__reason-img picture {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}
@media (max-width: 768px) {
  /* SP では grid を完全解除して flex 縦並び (空白カード防止) */
  body.is-home .lp2026-cnn__grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-areas: none !important;
    grid-template-rows: none !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  body.is-home .lp2026-cnn__campaign,
  body.is-home .lp2026-cnn__news,
  body.is-home .lp2026-cnn__reason {
    grid-area: auto !important;
    width: 100% !important;
    margin: 0 !important;
  }
  body.is-home .lp2026-cnn__reason-img {
    min-height: 240px;
    aspect-ratio: 5/4 !important;
  }
}
/* CTA カード内の余白を詰める */
body.is-home .lp2026-pfc__cta {
  padding-block: clamp(28px, 3vw, 40px) !important;
}
body.is-home .lp2026-pfc__cta-hours {
  margin-bottom: 0 !important;
}

/* r98 SP: 2 カラムを強制 1 カラムに (デザイン崩れ防止) */
@media (max-width: 768px) {
  body.is-home .lp2026-ms__grid,
  body.is-home .lp2026-mvf__grid,
  body.is-home .lp2026-mvf--2col .lp2026-mvf__grid {
    grid-template-columns: 1fr !important;
  }
}

/* r100 → r104 → r131: 小スマホ (max-width 600px) は縦積み3枚、
   601px〜768px は 3-col grid を維持してタブレットでも 3 枚横並び */
@media (max-width: 600px) {
  /* r131: 横スワイプカルーセル → SP(≤600px)は縦に3枚積み (スライド不可で1枚に見える問題を解消) */
  body.is-home .lp2026-airpods__feedback-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow-x: visible !important;
    gap: 24px !important;
    padding: 0 24px !important;
    margin: 0 auto 32px !important;
    max-width: 480px !important;
  }
  body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item img {
    max-width: 100% !important;
    max-height: none !important;
    height: auto !important;
    width: 100% !important;
    object-fit: contain !important;
  }
}

/* r104: 601px〜768px (タブレット縦) は 3-col grid を強制 + サイズ調整 */
@media (min-width: 601px) and (max-width: 768px) {
  body.is-home .lp2026-airpods__feedback-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    overflow: visible !important;
    gap: clamp(8px, 1.5vw, 16px) !important;
    padding: 0 16px !important;
    margin: 0 auto 32px !important;
    max-width: 720px !important;
  }
  body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* r99 → r103: フッター SP 3 カラム (footer__nav-col を display:contents で展開) */
@media (max-width: 768px) {
  body .footer__nav.footer__nav--cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px 12px !important;
    align-items: start !important;
  }
  body .footer__nav--cards .footer__nav-col {
    display: contents !important;
  }
  body .footer__nav--cards .footer-block {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    border-top: none !important;
    break-inside: avoid;
  }
  body .footer-block__eyebrow {
    font-size: 10px !important;
    margin: 0 0 6px !important;
  }
  body .footer-block__title {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
  body .footer-block__sub {
    margin: 8px 0 0 !important;
    gap: 6px !important;
  }
  body .footer-block__sub a {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
  body .footer {
    padding-block: clamp(32px, 6vw, 48px) !important;
  }
}

/* r100/r102: 共通カルーセル (店舗/YouTube/AirPods Pro 風スライダー) */
.lp2026-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  min-width: 0;
}
/* SP不具合修正: グリッド項目(店舗/YouTube記事)が min-width:auto だと、カルーセル中身の
   min-content幅に 1fr 列が膨張し、container の overflow-x:hidden で矢印・「もっと見る」
   ボタンが画面外にクリップされていた。min-width:0 で列を viewport幅に収める。 */
.lp2026-sm__grid { min-width: 0; }
.lp2026-sm__grid > * { min-width: 0; }
.lp2026-carousel__track {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: clamp(10px, 1.2vw, 18px) !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  max-width: 100%;
}
.lp2026-carousel__track::-webkit-scrollbar { display: none; }
.lp2026-carousel__track > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin: 0 !important;
}
.lp2026-carousel__arrows {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 18px;
}
.lp2026-carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  border: none;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #2f2a26;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lp2026-carousel__arrow:hover {
  background: rgba(0,0,0,0.16);
  transform: translateY(-1px);
}
.lp2026-carousel__arrow:active { transform: translateY(0); }

/* 店舗カード — PC: 1 枚表示で大きく、SP も同様 */
body.is-home .lp2026-sm__shop-cards.lp2026-carousel__track > li {
  flex: 0 0 100% !important;
  list-style: none;
}
body.is-home .lp2026-sm__shop-cards.lp2026-carousel__track > li a {
  display: block;
  text-decoration: none;
}
body.is-home .lp2026-sm__shop-cards.lp2026-carousel__track > li img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}
body.is-home .lp2026-sm__shop-cards.lp2026-carousel__track > li p {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--token-text, #2f2a26);
}

/* YouTube カード — PC: 約 3 枚見え、SP: 1.2 枚 */
body.is-home .lp2026-sm__media-slider.lp2026-carousel__track > a {
  flex: 0 0 calc((100% - 24px) / 3) !important;
  max-width: 180px;
  text-decoration: none;
  display: block;
}
body.is-home .lp2026-sm__media-slider.lp2026-carousel__track > a img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 12px;
}
body.is-home .lp2026-sm__media-slider.lp2026-carousel__track > a p {
  font-size: 12px;
  line-height: 1.5;
  margin: 8px 0 0;
  color: var(--token-text, #2f2a26);
}
@media (max-width: 768px) {
  /* SP: 店舗/YouTube とも 1 枚見せ、左右 carousel arrow で送る */
  body.is-home .lp2026-sm__shop-cards.lp2026-carousel__track > li {
    flex: 0 0 calc(100vw - 80px) !important;
    max-width: 320px;
  }
  body.is-home .lp2026-sm__media-slider.lp2026-carousel__track > a {
    flex: 0 0 calc(100vw - 80px) !important;
    max-width: 280px;
  }
  /* shop-media セクションの container をはみ出し防止 */
  body.is-home #lp-shop-media,
  body.is-home #lp-shop-media .container {
    overflow-x: hidden !important;
  }
  /* carousel 内 padding を SP では minimize */
  body.is-home .lp2026-carousel__track {
    padding: 0 8px 8px !important;
  }
  .lp2026-carousel__arrow {
    width: 48px !important;
    height: 48px !important;
    font-size: 24px !important;
  }
}

/* r100/r101: 強み 5 枚カード ツールチップ (PC hover / SP tap で SEO 説明表示) */
body.is-home .lp2026-strengths__tooltip {
  position: absolute;
  inset: 0;
  /* display:flex+column だと <b>(太字キーワード)と地の文の断片が1行ずつに分断され、
     行数が膨れてカードから溢れる。block にして段落として自然に折り返す。 */
  display: block;
  padding: 14px 14px;
  background: rgba(20, 20, 20, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10.5px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  z-index: 10;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(.2,.8,.2,1);
  border-radius: inherit;
  text-align: left;
  overflow-y: auto;
}
body.is-home .lp2026-strengths__tooltip strong {
  display: block;
  font-size: 11px;
  margin-bottom: 4px;
  color: #ff8e6e;
  font-weight: 700;
  letter-spacing: 0.03em;
}
body.is-home .lp2026-strengths__tooltip b {
  color: #ffd6c6;
  font-weight: 600;
}
body.is-home .lp2026-strengths__bar > li {
  position: relative !important;
  cursor: help;
  outline: none;
}
body.is-home .lp2026-strengths__bar > li:hover .lp2026-strengths__tooltip,
body.is-home .lp2026-strengths__bar > li:focus-visible .lp2026-strengths__tooltip,
body.is-home .lp2026-strengths__bar > li.is-tooltip-active .lp2026-strengths__tooltip {
  opacity: 1;
  transform: scale(1);
}

/* r99: RECRUIT セクション — キャッチコピー強調 */
body.is-home .lp2026-recruit .lp2026-section-title {
  font-size: clamp(32px, 5.2vw, 64px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  margin-bottom: clamp(20px, 2vw, 32px) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f7d28a 55%, #e8a738 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none !important;
  filter: drop-shadow(0 4px 24px rgba(247,210,138,0.18));
}
body.is-home .lp2026-recruit .lp2026-eyebrow {
  color: #f7d28a !important;
  font-size: clamp(11px, 1vw, 13px) !important;
  letter-spacing: 0.3em !important;
  font-weight: 700 !important;
  margin-bottom: clamp(14px, 1.5vw, 22px) !important;
}
body.is-home .lp2026-recruit .lp2026-recruit__lead {
  color: rgba(255,255,255,0.86) !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  line-height: 1.85 !important;
  margin-bottom: clamp(24px, 3vw, 40px) !important;
}
body.is-home .lp2026-recruit .lp2026-recruit__btn {
  background: transparent !important;
  border: 2px solid #f7d28a !important;
  color: #f7d28a !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  transition: all 0.3s ease;
}
body.is-home .lp2026-recruit .lp2026-recruit__btn:hover {
  background: #f7d28a !important;
  color: #1a1716 !important;
  transform: translateY(-2px);
}

/* r97 SP: 各セクションのパディング・余白を詰める */
@media (max-width: 768px) {
  /* CAMPAIGN カード内の縦余白を抑える */
  body.is-home .lp2026-cnn__campaign,
  body.is-home .lp2026-cnn__news,
  body.is-home .lp2026-cnn__reason {
    padding: 20px !important;
    gap: 8px;
    height: auto !important;
    min-height: 0 !important;
  }
  body.is-home .lp2026-cnn__campaign-old {
    margin-bottom: 0 !important;
  }
  /* card 底に張り付いている btn / "もっと見る" の margin-top: auto を解除 */
  body.is-home .lp2026-cnn__campaign .btn,
  body.is-home .lp2026-cnn__news .btn,
  body.is-home .lp2026-cnn__reason .btn,
  body.is-home .lp2026-cnn__campaign > a:last-child,
  body.is-home .lp2026-cnn__news > a:last-child,
  body.is-home .lp2026-cnn__reason > a:last-child,
  body.is-home .lp2026-cnn__news-more,
  body.is-home .lp2026-cnn__campaign-more,
  body.is-home .lp2026-cnn__reason-more {
    margin-top: 14px !important;
    padding-top: 0 !important;
  }
  /* r102: SP 施術メニュー画像を横幅いっぱい + 横長アスペクトに */
  body.is-home .lp2026-ms__menu-visual {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 16px !important;
    aspect-ratio: 16 / 8 !important;
    overflow: hidden;
    border-radius: 12px;
  }
  body.is-home .lp2026-ms__menu-visual picture,
  body.is-home .lp2026-ms__menu-visual img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
  }

  /* SP: CAMPAIGN/NEWS/REASON 内の btn を inline 幅 + 中央寄せ */
  body.is-home .lp2026-cnn__campaign .btn,
  body.is-home .lp2026-cnn__news .btn,
  body.is-home .lp2026-cnn__reason .btn,
  body.is-home .lp2026-cnn__news-more .btn {
    width: auto !important;
    max-width: 280px !important;
    align-self: center !important;
    padding: 12px 28px !important;
    font-size: 13px !important;
    border-radius: 999px !important;
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body.is-home .lp2026-cnn__news-more {
    text-align: center !important;
  }
  /* SP: grid を縦並びで内容に合わせた高さに (空白カード防止) */
  body.is-home .lp2026-cnn__grid {
    align-items: start !important;
  }
  body.is-home .lp2026-cnn__campaign,
  body.is-home .lp2026-cnn__news,
  body.is-home .lp2026-cnn__reason {
    height: auto !important;
    align-self: start !important;
  }
  /* REASON 画像 SP は 5/4 のシンプル */
  body.is-home .lp2026-cnn__reason-img {
    min-height: 0 !important;
    aspect-ratio: 5/4 !important;
  }
  /* FV → AI 間: AI section の冒頭余白を圧縮 */
  body.is-home .lp2026-airpods__hero {
    padding-block: clamp(40px, 8vw, 80px) !important;
    min-height: auto !important;
  }
  /* セクション間 margin を縮める */
  body.is-home .lp2026-section {
    padding-block: clamp(40px, 8vw, 64px) !important;
  }
  /* キャンペーンセクションは margin で背景色付くので padding/margin 両方 */
  body.is-home .lp2026-cnn {
    padding-block: clamp(32px, 6vw, 48px) !important;
  }
}
.lp2026-mvf__merit,
.lp2026-mvf__voice,
.lp2026-mvf__flow {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.lp2026-mvf__merit-list { list-style: none; padding: 0; margin: 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.lp2026-mvf__merit-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.7;
}
.lp2026-mvf__merit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.lp2026-mvf__merit-visual { aspect-ratio: 4/3; overflow: hidden; border-radius: 10px; margin: 1rem 0; }
.lp2026-mvf__merit-visual img { width: 100%; height: 100%; object-fit: cover; }

.lp2026-mvf__voice-list { list-style: none; padding: 0; margin: 1rem 0; display: flex; flex-direction: column; gap: 1rem; }
.lp2026-mvf__voice-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-bg-sub);
  border-radius: 12px;
}
.lp2026-mvf__voice-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-sub);
}
.lp2026-mvf__voice-text { font-size: 0.8125rem; line-height: 1.7; margin: 0 0 0.375rem; }
.lp2026-mvf__voice-meta { font-size: 0.625rem; color: var(--color-text-sub); margin: 0; }
.lp2026-mvf__voice-stars { font-size: 0.75rem; color: #C4913A; margin: 0.25rem 0 0; }

.lp2026-mvf__flow-list { list-style: none; padding: 0; margin: 1rem 0; display: flex; flex-direction: column; gap: 0; }
.lp2026-mvf__flow-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}
.lp2026-mvf__flow-list li:last-child { border-bottom: none; }
.lp2026-mvf__flow-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}
.lp2026-mvf__flow-list h3 { font-size: 0.8125rem; font-weight: 600; margin: 0; }

@media (max-width: 1000px) {
  .lp2026-mvf__grid { grid-template-columns: 1fr; }
}

/* ---- Price + FAQ + CTA (3col) ---- */
.lp2026-pfc__grid {
  display: grid;
  /* r115: 3 列 (旧 1.2fr 1fr 0.8fr) → 2 列に統一して右の空白を解消 */
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.lp2026-pfc__plan,
.lp2026-pfc__faq {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: var(--token-r-card, 24px);
  display: flex;
  flex-direction: column;
}
.lp2026-pfc__plan-list { flex: 1; }
.lp2026-pfc__plan-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.lp2026-pfc__plan-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  position: relative;
}
.lp2026-pfc__plan-card--featured {
  border-color: var(--color-primary);
  border-width: 2px;
  background: var(--token-surface-soft, #fffdf9);
  box-shadow: var(--token-shadow-card, 0 10px 30px rgba(80,45,30,0.08));
}
.lp2026-pfc__plan-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.625rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin: 0;
  white-space: nowrap;
}
.lp2026-pfc__plan-card h3 { font-size: 0.8125rem; font-weight: 600; margin: 0.5rem 0; line-height: 1.4; }
.lp2026-pfc__plan-card h3 small { display: block; font-size: 0.625rem; color: var(--color-text-sub); font-weight: 400; }
.lp2026-pfc__plan-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1;
}
.lp2026-pfc__plan-price small { font-size: 0.625rem; color: var(--color-text-sub); margin-left: 0.25rem; font-weight: 400; }
.lp2026-pfc__plan-initial {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.6875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin: 0.5rem 0;
  display: inline-block;
}
.lp2026-pfc__plan-card .btn { font-size: 0.75rem; padding: 0.5rem 1rem; }
.lp2026-pfc__plan-more { margin-top: 1.5rem; display: block; text-align: center; }

.lp2026-pfc__faq-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.5rem; }
.lp2026-pfc__faq-list details {
  background: var(--color-bg-sub);
  padding: 0.875rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}
.lp2026-pfc__faq-list summary {
  font-size: 0.8125rem;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp2026-pfc__faq-list summary::after { content: '＋'; color: var(--color-primary); font-weight: 400; }
.lp2026-pfc__faq-list details[open] summary::after { content: '−'; }
.lp2026-pfc__faq-list details p { font-size: 0.8125rem; color: var(--color-text-sub); line-height: 1.7; margin: 0.75rem 0 0; }

.lp2026-pfc__cta {
  background: var(--color-primary);
  color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.lp2026-pfc__cta-head { font-size: 0.875rem; font-weight: 700; margin: 0 0 0.25rem; }
.lp2026-pfc__cta-course { font-size: 0.6875rem; opacity: 0.85; margin: 0 0 0.75rem; }
.lp2026-pfc__cta-label { font-size: 0.625rem; letter-spacing: 0.1em; margin: 0; opacity: 0.85; }
.lp2026-pfc__cta-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
}
.lp2026-pfc__cta-price small { font-size: 0.625rem; margin-left: 0.375rem; font-weight: 400; opacity: 0.8; }
.lp2026-pfc__cta-old { font-size: 0.625rem; margin: 0 0 1rem; opacity: 0.8; text-decoration: line-through; }
.lp2026-pfc__cta-old small { margin-left: 0.25rem; }
.lp2026-pfc__cta-btn {
  background: #fff !important;
  color: var(--color-primary) !important;
  margin-bottom: 1rem;
}
.lp2026-pfc__cta-sep { font-size: 0.625rem; opacity: 0.8; margin: 0.5rem 0; }
.lp2026-pfc__cta-tel {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.25rem 0;
}
.lp2026-pfc__cta-hours { font-size: 0.6875rem; opacity: 0.8; margin: 0; }

@media (max-width: 1100px) {
  .lp2026-pfc__grid { grid-template-columns: 1fr; }
  .lp2026-pfc__plan-list { grid-template-columns: 1fr; }
}

/* ---- Shop + Media (2col) ---- */
.lp2026-sm__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; }
.lp2026-sm__shop { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 16px; padding: 1.75rem; text-align: center; }
.lp2026-sm__map { margin: 1rem 0; }
.lp2026-sm__map svg { max-width: 320px; width: 100%; height: auto; }
.lp2026-sm__media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 1rem 0; }
.lp2026-sm__media-card {
  text-decoration: none;
  color: var(--color-text);
}
.lp2026-sm__media-card picture {
  display: block;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: var(--color-bg-sub);
}
.lp2026-sm__media-card img { width: 100%; height: 100%; object-fit: cover; }
.lp2026-sm__media-card p { font-size: 0.75rem; line-height: 1.5; margin: 0; }
.lp2026-sm__media-more { display: block; text-align: center; margin-top: 1rem; }

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

/* ---- Recruit ---- */
.lp2026-recruit {
  background: var(--color-text);
  color: #fff;
  padding-block: clamp(3rem, 2.5rem + 2vw, 5rem);
}
.lp2026-recruit__inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: center; }
.lp2026-recruit .lp2026-eyebrow { color: rgba(255,255,255,0.7); }
.lp2026-recruit .lp2026-section-title { color: #fff; }
.lp2026-recruit__copy .btn--outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  margin-top: 1.5rem;
}
.lp2026-recruit__copy .btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.lp2026-recruit__visual img { width: 100%; border-radius: 16px; }

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

/* LP2026 — Shop cards (3列) */
.lp2026-sm__shop-cards {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.lp2026-sm__shop-cards a {
  text-decoration: none;
  color: var(--color-text);
  display: block;
}
.lp2026-sm__shop-cards picture {
  display: block;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.lp2026-sm__shop-cards img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.lp2026-sm__shop-cards a:hover img { transform: scale(1.04); }
.lp2026-sm__shop-cards p { font-size: 0.75rem; text-align: center; margin: 0; }
.lp2026-sm__shop-more { display: block; text-align: center; margin-top: 1.5rem; }

/* =============================================================
   LP2026 — Sticky bottom CTA bar
   ============================================================= */
.lp2026-stickybar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(10,10,10,0.08);
  padding: 0.625rem clamp(0.75rem, 2vw, 1.5rem);
  /* デフォルトは非表示 — FV を完全に通過後に .is-shown が付与される */
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.lp2026-stickybar.is-shown {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.lp2026-stickybar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lp2026-stickybar__tel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-text);
}
.lp2026-stickybar__tel-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,48,31,0.08);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.lp2026-stickybar__tel-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.lp2026-stickybar__tel-label { font-size: 0.625rem; color: var(--color-text-sub); }
.lp2026-stickybar__tel-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.lp2026-stickybar__tel-hours { font-size: 0.6875rem; color: var(--color-text-sub); margin-left: 0.5rem; }
.lp2026-stickybar__btn { white-space: nowrap; }

/* body 下にスペース確保(stickybar 分) */
body.is-home { padding-bottom: 80px; }

@media (max-width: 600px) {
  .lp2026-stickybar__tel-hours { display: none; }
  .lp2026-stickybar__tel-label { font-size: 0.55rem; }
  .lp2026-stickybar__tel-num { font-size: 1.05rem; }
  .lp2026-stickybar__btn { font-size: 0.75rem; padding: 0.625rem 1rem; }
  body.is-home { padding-bottom: 90px; }
}

/* =============================================================
   LP2026 — Plan card subscription variant (NAORUプラン)
   ============================================================= */
.lp2026-pfc__plan-card--subscription {
  border-color: var(--color-text);
  background: var(--color-bg-sub);
}
.lp2026-pfc__plan-card--subscription .lp2026-pfc__plan-tag {
  background: var(--color-text);
}
.lp2026-pfc__plan-initial--neutral {
  background: var(--color-text);
  color: #fff;
}

/* =============================================================
   LP2026 — YouTube slider (5 video portrait, horizontal scroll)
   ============================================================= */
.lp2026-sm__media-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0.75rem;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent;
}
.lp2026-sm__media-slider::-webkit-scrollbar { height: 6px; }
.lp2026-sm__media-slider::-webkit-scrollbar-track { background: transparent; }
.lp2026-sm__media-slider::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 999px; }

.lp2026-sm__media-slider .lp2026-sm__media-card {
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--color-text);
  min-width: 180px;
}
.lp2026-sm__media-slider .lp2026-sm__media-card picture {
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.625rem;
  background: var(--color-bg-sub);
}
.lp2026-sm__media-slider .lp2026-sm__media-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.lp2026-sm__media-slider .lp2026-sm__media-card:hover img { transform: scale(1.04); }
.lp2026-sm__media-slider .lp2026-sm__media-card p {
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 5枚全表示 (PC 1100px+) */
@media (min-width: 1100px) {
  .lp2026-sm__media-slider {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    scroll-snap-type: none;
  }
  .lp2026-sm__media-slider .lp2026-sm__media-card { min-width: 0; }
}

/* =============================================================
   LP2026 — Bundle テイスト適合 (2026-05-29)
   - 背景クリーム
   - 主要見出しを Noto Serif JP
   - BA カードに赤丸矢印
   ============================================================= */

/* body 全体をクリームに(TOPページのみ) */
body.is-home {
  background: #fbf8f4;
}

/* セクション色を再調整: 偶数番セクションを白に切替 */
body.is-home .lp2026-fv { background: #fbf8f4; }
body.is-home .lp2026-cnn { background: transparent; }
body.is-home .lp2026-ai { background: #fff; }
body.is-home .lp2026-ba { background: transparent; }
body.is-home .lp2026-strengths { background: #fff; padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
body.is-home .lp2026-ms { background: transparent; }
body.is-home .lp2026-mvf { background: #fff; }
body.is-home .lp2026-pfc { background: transparent; }
body.is-home .lp2026-sm { background: #fff; }
body.is-home .lp2026-recruit { background: #2f2a26; }

/* 各カードを白背景で立体感 */
body.is-home .lp2026-cnn__campaign,
body.is-home .lp2026-cnn__news,
body.is-home .lp2026-cnn__reason,
body.is-home .lp2026-ms__menu,
body.is-home .lp2026-ms__symptom,
body.is-home .lp2026-mvf__merit,
body.is-home .lp2026-mvf__voice,
body.is-home .lp2026-mvf__flow,
body.is-home .lp2026-pfc__plan,
body.is-home .lp2026-pfc__faq,
body.is-home .lp2026-sm__shop {
  background: #fff;
}

/* 主要見出しを Noto Serif JP に */
body.is-home .lp2026-fv__headline,
body.is-home .lp2026-section-title,
body.is-home .lp2026-cnn__campaign-head h3,
body.is-home .lp2026-cnn__news-head h3,
body.is-home .lp2026-cnn__reason-head h3,
body.is-home .lp2026-pfc__cta-head {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---- BA arrow circle ---- */
.lp2026-ba__pair {
  position: relative;
}
.lp2026-ba__arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(217, 48, 31, 0.35));
}
.lp2026-ba__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .lp2026-ba__arrow { width: 44px; height: 44px; }
}

/* Sticky bar background: keep on cream */
body.is-home .lp2026-stickybar {
  background: #fff;
  border-top-color: rgba(10,10,10,0.08);
}

/* Plan card subscription on cream */
body.is-home .lp2026-pfc__plan-card--subscription {
  background: #fbf8f4;
  border-color: #2f2a26;
}

/* hover transitions remain */

/* =============================================================
   NAORU — DESIGN TOKENS (Fixed 2026-05-29)
   Source of truth: /design-tokens.ts
   全 LP2026 コンポーネントはこのトークン経由で値を取る
   ============================================================= */
body.is-home {
  /* Colors */
  --token-bg:           #fbf8f4;
  --token-surface:      #ffffff;
  --token-surface-soft: #fffdf9;
  --token-primary:      #d9301f;
  --token-primary-dk:   #b9281c;
  --token-text:         #2f2a26;
  --token-text-sub:     #7c746e;
  --token-border:       #eee5dc;
  --token-gold:         #d9ad65;

  /* Radius */
  --token-r-card:       24px;
  --token-r-card-sm:    18px;
  --token-r-pill:       9999px;

  /* Shadow */
  --token-shadow-card:  0 10px 30px rgba(80, 45, 30, 0.08);
  --token-shadow-soft:  0 4px 14px rgba(80, 45, 30, 0.05);

  /* Layout */
  --token-container:    1280px;
  --token-section-gap:  40px;
  --token-card-gap:     20px;

  /* Typography (display) */
  --token-h-size:       56px;
  --token-h-lh:         1.35;
  --token-h-ls:         0.02em;
  --token-body-size:    15px;
  --token-body-lh:      1.8;
  --token-label-size:   12px;
  --token-label-ls:     0.12em;

  /* home 専用上書き (:root と意図的に異なる値のみ) */
  --color-text-sub:   var(--token-text-sub);  /* :root #525252 → クリーム調のサブ */
  --color-border:     var(--token-border);    /* :root #E5E5E5 → クリーム調の罫線 */
  --color-bg:         var(--token-bg);        /* :root #FFFFFF → クリーム背景 */
  --color-bg-sub:     var(--token-surface-soft); /* :root #FAFAF9 → 温かみのある面 */
}

/* =============================================================
   BASE COMPONENTS (lock 2026-05-29)
   ============================================================= */

/* カードのベース — 全カードはこれを継承 or extend */
body.is-home .card {
  background: var(--token-surface);
  border: 1px solid var(--token-border);
  border-radius: var(--token-r-card);
  box-shadow: var(--token-shadow-card);
}

/* ピル型ボタン — 全 CTA はこれを継承 */
body.is-home .pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--token-r-pill);
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
body.is-home .pill-btn--primary {
  background: var(--token-primary);
  color: var(--token-surface);
}
body.is-home .pill-btn--primary:hover {
  background: var(--token-primary-dk);
  transform: translateY(-1px);
  box-shadow: var(--token-shadow-soft);
}
body.is-home .pill-btn--secondary {
  background: var(--token-surface);
  color: var(--token-text);
  border: 1px solid var(--token-border);
}
body.is-home .pill-btn--secondary:hover {
  border-color: var(--token-primary);
  color: var(--token-primary);
}

/* 既存 .btn の見た目もトークン値に同期(TOPページ内のみ) */
body.is-home .btn--primary {
  background: var(--token-primary);
  color: var(--token-surface);
  border-radius: var(--token-r-pill);
  font-weight: 700;
}
body.is-home .btn--primary:hover {
  background: var(--token-primary-dk);
}
body.is-home .btn--outline {
  background: var(--token-surface);
  color: var(--token-text);
  border: 1px solid var(--token-border);
  border-radius: var(--token-r-pill);
  font-weight: 700;
}
body.is-home .btn--outline:hover {
  border-color: var(--token-primary);
  color: var(--token-primary);
}

/* =============================================================
   LP2026 components — トークンに揃える (上書き)
   ============================================================= */

/* 各カード type は token shadow + radius に統一 */
body.is-home .lp2026-cnn__campaign,
body.is-home .lp2026-cnn__news,
body.is-home .lp2026-cnn__reason,
body.is-home .lp2026-ms__menu,
body.is-home .lp2026-ms__symptom,
body.is-home .lp2026-mvf__merit,
body.is-home .lp2026-mvf__voice,
body.is-home .lp2026-mvf__flow,
body.is-home .lp2026-pfc__plan,
body.is-home .lp2026-pfc__faq,
body.is-home .lp2026-sm__shop,
body.is-home .lp2026-strengths__card {
  border: 1px solid var(--token-border);
  border-radius: var(--token-r-card);
  box-shadow: var(--token-shadow-card);
}

/* 小カード(プラン・症状ボックス等)は cardSm 半径 */
body.is-home .lp2026-pfc__plan-card,
body.is-home .lp2026-why__card,
body.is-home .lp2026-merit__card,
body.is-home .lp2026-ms__symptom-grid li a,
body.is-home .lp2026-ai__steps li,
body.is-home .lp2026-mvf__voice-list li {
  border-radius: var(--token-r-card-sm);
}

/* Container 幅 */
body.is-home .container { max-width: var(--token-container); }

/* 主要見出しに token typography 適用 */
body.is-home .lp2026-fv__headline {
  font-size: clamp(2rem, 1.5rem + 2.5vw, var(--token-h-size));
  line-height: var(--token-h-lh);
  letter-spacing: var(--token-h-ls);
}
body.is-home .lp2026-section-title {
  line-height: var(--token-h-lh);
  letter-spacing: var(--token-h-ls);
}

/* body text */
body.is-home .lp2026-section-lead,
body.is-home .lp2026-why__desc,
body.is-home .lp2026-merit__card p,
body.is-home .lp2026-strengths__card p {
  font-size: var(--token-body-size);
  line-height: var(--token-body-lh);
}

/* eyebrow label */
body.is-home .lp2026-eyebrow {
  font-size: var(--token-label-size);
  letter-spacing: var(--token-label-ls);
}

/* card gap (LP2026 内のグリッド) */
body.is-home .lp2026-cnn__grid,
body.is-home .lp2026-mvf__grid,
body.is-home .lp2026-pfc__grid,
body.is-home .lp2026-ms__grid,
body.is-home .lp2026-sm__grid,
body.is-home .lp2026-why__grid,
body.is-home .lp2026-merit__grid {
  gap: var(--token-card-gap);
}

/* sticky bar bottom CTA は pill-btn を尊重 */
body.is-home .lp2026-stickybar__btn {
  min-height: 44px;
  border-radius: var(--token-r-pill);
}

/* =============================================================
   NAORU LP2026 — DISCIPLINE LOCK (2026-05-29)
   「日本の整体院が実際に運用している上質な商用サイト」のための
   厳格なデザイン規律。全 LP2026 コンポーネントに上書き適用。
   ============================================================= */

/* ---- 12 カラムグリッド基盤 ---- */
body.is-home {
  --grid-cols: 12;
  --grid-gap: 20px;
  --section-y: clamp(40px, 4vw, 56px);
  --card-padding: 24px;
}

/* ---- セクション間隔: 40〜56px ---- */
body.is-home .lp2026-section,
body.is-home .lp2026-fv,
body.is-home .lp2026-recruit {
  padding-block: var(--section-y);
}

/* ---- セクション内ギャップ: 20px 統一 ---- */
body.is-home .lp2026-cnn__grid,
body.is-home .lp2026-mvf__grid,
body.is-home .lp2026-pfc__grid,
body.is-home .lp2026-ms__grid,
body.is-home .lp2026-sm__grid,
body.is-home .lp2026-why__grid,
body.is-home .lp2026-merit__grid,
body.is-home .lp2026-strengths__bar,
body.is-home .lp2026-ba__grid {
  gap: var(--grid-gap);
}

/* ---- 12カラムグリッド: Hero 5/7 ---- */
@media (min-width: 901px) {
  body.is-home .lp2026-fv__inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 32px;
    align-items: center;
  }
}

/* ---- 3カラム 4/4/4 ---- */
@media (min-width: 901px) {
  body.is-home .lp2026-cnn__grid,
  body.is-home .lp2026-mvf__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  /* r118: --2col モディファイアは強制 2 列 (3 列ルールを打ち消す) */
  body.is-home .lp2026-mvf--2col .lp2026-mvf__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ---- 2カラム 6/6 ---- */
@media (min-width: 901px) {
  body.is-home .lp2026-ms__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---- カード高さ揃え ---- */
body.is-home .lp2026-cnn__grid,
body.is-home .lp2026-mvf__grid,
body.is-home .lp2026-ms__grid,
body.is-home .lp2026-why__grid,
body.is-home .lp2026-merit__grid {
  grid-auto-rows: 1fr;
}
/* r121: pfc__grid は CTA を横長 (1/-1 span) にしているため、1fr で行を均等化すると
   CTA 行が FLOW/FAQ 行と同じ高さに引き伸ばされて空白が出る。auto で実コンテンツ高に。 */
body.is-home .lp2026-pfc__grid {
  grid-auto-rows: auto !important;
}
body.is-home .lp2026-cnn__campaign,
body.is-home .lp2026-cnn__news,
body.is-home .lp2026-cnn__reason,
body.is-home .lp2026-ms__menu,
body.is-home .lp2026-ms__symptom,
body.is-home .lp2026-mvf__merit,
body.is-home .lp2026-mvf__voice,
body.is-home .lp2026-mvf__flow,
body.is-home .lp2026-pfc__plan,
body.is-home .lp2026-pfc__faq,
body.is-home .lp2026-why__card,
body.is-home .lp2026-merit__card {
  height: 100%;
}

/* ---- カード内 padding: 24px 統一 ---- */
body.is-home .lp2026-cnn__campaign,
body.is-home .lp2026-cnn__news,
body.is-home .lp2026-cnn__reason,
body.is-home .lp2026-ms__menu,
body.is-home .lp2026-ms__symptom,
body.is-home .lp2026-mvf__merit,
body.is-home .lp2026-mvf__voice,
body.is-home .lp2026-mvf__flow,
body.is-home .lp2026-pfc__plan,
body.is-home .lp2026-pfc__faq,
body.is-home .lp2026-pfc__cta,
body.is-home .lp2026-sm__shop,
body.is-home .lp2026-strengths__card,
body.is-home .lp2026-merit__card {
  padding: var(--card-padding);
}

/* ---- 影を弱く・上品に ---- */
body.is-home {
  --token-shadow-card: 0 2px 12px rgba(80, 45, 30, 0.04);
  --token-shadow-soft: 0 1px 4px rgba(80, 45, 30, 0.03);
}

/* ---- グラデーション禁止: フラットなクリーム背景に統一 ---- */
body.is-home .lp2026-fv,
body.is-home .lp2026-recruit__inner,
body.is-home .lp2026-cta-banner {
  background-image: none !important;
}
body.is-home .lp2026-recruit { background: var(--token-text); }
body.is-home .lp2026-cta-banner { background: var(--token-primary); }
body.is-home .lp2026-campaign-strip {
  background: var(--token-surface-soft) !important;
}
body.is-home .lp2026-pfc__cta {
  background: var(--token-primary);
  background-image: none !important;
}

/* ---- FV 装飾を控えめに (opacity 0.12〜0.2) ---- */
body.is-home .lp2026-fv { position: relative; overflow: hidden; }
body.is-home .lp2026-fv__inner { position: relative; z-index: 1; }

/* ---- 見出し: 和風落ち着き(serif + 文字詰め) ---- */
body.is-home .lp2026-fv__headline,
body.is-home .lp2026-section-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: var(--token-text);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
body.is-home .lp2026-fv__headline {
  font-size: clamp(28px, 2rem + 1.6vw, 48px);
  line-height: 1.45;
  letter-spacing: 0.03em;
}
body.is-home .lp2026-section-title {
  font-size: clamp(20px, 1.2rem + 0.8vw, 28px);
}

/* ---- 本文 ---- */
body.is-home .lp2026-section-lead,
body.is-home .lp2026-why__desc,
body.is-home .lp2026-merit__card p,
body.is-home .lp2026-strengths__card p,
body.is-home .lp2026-mvf__voice-text,
body.is-home .lp2026-pfc__faq-list p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--token-text-sub);
}

/* ---- 英字ラベル: 11〜12px, 広いletter-spacing, 薄赤〜オレンジ, medium ---- */
body.is-home .lp2026-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c46150;            /* 薄い赤橙 */
  margin: 0 0 12px;
}

/* ---- 赤色を CTA/価格/ラベルのみに限定 ---- */
/* アクセントだった赤を、ニュートラルに戻す */
body.is-home .lp2026-strengths__icon,
body.is-home .lp2026-ms__symptom-icon,
body.is-home .lp2026-fv__icon,
body.is-home .lp2026-ai__pill-icon,
body.is-home .lp2026-mvf__flow-num {
  color: var(--token-text);
  background: var(--token-surface-soft);
  border: 1px solid var(--token-border);
}

/* ピル icon は薄ベージュ系に */
body.is-home .lp2026-ai__pill-icon {
  background: var(--token-bg);
  color: var(--token-text);
}

/* タグ・バッジ等の赤は維持 */
body.is-home .lp2026-cnn__badge,
body.is-home .lp2026-pfc__plan-tag,
body.is-home .lp2026-pfc__plan-initial,
body.is-home .lp2026-ba__label--after,
body.is-home .lp2026-accent {
  color: var(--token-surface);
  background: var(--token-primary);
}
body.is-home .lp2026-accent { background: transparent; color: var(--token-primary); }

/* CTA hover はトーンダウン: transform を 1px のみ */
body.is-home .btn--primary:hover,
body.is-home .pill-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--token-shadow-soft);
}

/* ---- カード内のタイトル/本文/ボタン間隔を統一 ---- */
body.is-home .lp2026-cnn__campaign h3,
body.is-home .lp2026-cnn__news h3,
body.is-home .lp2026-cnn__reason h3,
body.is-home .lp2026-why__title,
body.is-home .lp2026-mvf__voice h3,
body.is-home .lp2026-pfc__plan-card h3,
body.is-home .lp2026-strengths__bar h3,
body.is-home .lp2026-merit__card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}
body.is-home .lp2026-cnn__campaign p,
body.is-home .lp2026-cnn__news p,
body.is-home .lp2026-cnn__reason p,
body.is-home .lp2026-why__desc,
body.is-home .lp2026-mvf__voice-text {
  margin-top: 0;
  margin-bottom: 16px;
}
body.is-home .lp2026-cnn__campaign .btn,
body.is-home .lp2026-cnn__news-more,
body.is-home .lp2026-mvf__merit .btn,
body.is-home .lp2026-mvf__voice .btn,
body.is-home .lp2026-mvf__flow .btn,
body.is-home .lp2026-pfc__plan-more,
body.is-home .lp2026-ms__menu-more,
body.is-home .lp2026-ms__symptom-more {
  margin-top: auto;
}

/* ---- 「写真が主役、装飾は脇役」: 装飾pseudo を全て薄く ---- */
body.is-home [class*="__decor"],
body.is-home [class*="__bg"] {
  opacity: 0.15;
  pointer-events: none;
}

/* ---- 角丸の二重ルール統一: カード=24, 小要素=18, pill=∞ ---- */
body.is-home .lp2026-fv__visual img {
  border-radius: var(--token-r-card);
  box-shadow: var(--token-shadow-card);
}

/* ---- アンカー欄(news の cat バッジ等) ---- */
body.is-home .lp2026-cnn__news-cat {
  background: var(--token-bg);
  color: var(--token-text-sub);
  font-size: 10px;
  font-weight: 500;
}

/* ---- 全 hover を控えめ ---- */
body.is-home .lp2026-why__card:hover,
body.is-home .lp2026-strengths__card:hover,
body.is-home .lp2026-merit__card:hover,
body.is-home .lp2026-sm__media-card:hover,
body.is-home .lp2026-sm__shop-cards a:hover {
  transform: none;
  box-shadow: var(--token-shadow-soft);
}

/* ---- 削除した floating の余韻 (念のため display none) ---- */
body.is-home .lp2026-fv__floating { display: none; }

/* ---- 不要グラデーションを除去: ¥3,500 CTA banner ---- */
body.is-home .lp2026-cta-banner {
  background: var(--token-primary);
}

/* ---- スティッキーバー もトークン適用 ---- */
body.is-home .lp2026-stickybar {
  background: var(--token-surface);
  border-top: 1px solid var(--token-border);
  box-shadow: 0 -1px 4px rgba(80,45,30,0.04);
}
body.is-home .lp2026-stickybar__tel-icon {
  background: var(--token-surface-soft);
  color: var(--token-primary);
  border: 1px solid var(--token-border);
}

/* ---- 補正: section title の serif バランス調整 ---- */
body.is-home .lp2026-section-header { margin-bottom: 24px; }

/* =============================================================
   FIX 2026-05-29: Before/After ラベルの視認性
   Before ラベルが薄くて読みにくかった問題を修正
   ============================================================= */
body.is-home .lp2026-ba__label {
  background: rgba(47, 42, 38, 0.92) !important;  /* token-text 92% — 強コントラスト */
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  padding: 4px 12px !important;
  border-radius: 999px !important;
}
body.is-home .lp2026-ba__label--after {
  background: var(--token-primary) !important;
  color: #ffffff !important;
}

/* =============================================================
   FIX 2026-05-29: AI gallery 2-image balanced layout
   suzuki_hari 画像を削除して 2枚構成に再配置
   - 左: ai-shisei (iPad+iPhone 解析画面)
   - 右下: ai-sportip (姿勢キーポイント)
   ============================================================= */
body.is-home .lp2026-ai__gallery--2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: center;
}
body.is-home .lp2026-ai__gallery--2 picture {
  display: block;
  border-radius: var(--token-r-card-sm);
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
body.is-home .lp2026-ai__gallery--2 picture:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
}
body.is-home .lp2026-ai__gallery--2 picture:nth-child(2) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 70%;
  aspect-ratio: 1 / 1;
}
body.is-home .lp2026-ai__gallery--2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 旧 3-img gallery 用 rule の効果を消す (--2 modifier で specificity 上書き) */
body.is-home .lp2026-ai__gallery--2 picture:nth-child(3) { display: none; }

@media (max-width: 900px) {
  body.is-home .lp2026-ai__gallery--2 { grid-template-columns: 1fr; }
}

/* =============================================================
   FIX 2026-05-29: Body Map を LP2026 カード内に最適表示
   2 フィギュア(前/後)を横並び、または狭い場合は縦並び
   ============================================================= */
body.is-home .lp2026-ms__symptom .body-map__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin: 1rem 0;
}
body.is-home .lp2026-ms__symptom .body-map__figure {
  position: relative;
  background: var(--token-bg);
  border-radius: var(--token-r-card-sm);
  /* SVGビューボックス(200/450)と一致させ、padding=0 で
     ホットスポット(%指定)を体の各部に正確にマップ（PC版と同じ整列）。
     旧: aspect-ratio 200/480 + padding 12/8 で首・肩・下腿がズレていた。 */
  padding: 0;
  aspect-ratio: 200 / 450;
}
body.is-home .lp2026-ms__symptom .body-map__label-pos {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border: 1px solid var(--token-border);
  border-radius: 999px;
  background: var(--token-surface);
  color: var(--token-text-sub);
}
body.is-home .lp2026-ms__symptom .body-map__svg {
  width: 100%;
  height: 100%;
}
body.is-home .lp2026-ms__symptom .body-map__svg [fill="var(--body-color)"] { fill: var(--token-border); }
body.is-home .lp2026-ms__symptom .body-map__svg [stroke="var(--body-color)"] { stroke: var(--token-border); }
body.is-home .lp2026-ms__symptom .body-map__hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--token-primary);
  background: var(--token-surface);
  color: var(--token-primary);
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
body.is-home .lp2026-ms__symptom .body-map__hotspot:hover,
body.is-home .lp2026-ms__symptom .body-map__hotspot:focus-visible {
  background: var(--token-primary);
  color: var(--token-surface);
  transform: translate(-50%, -50%) scale(1.15);
  outline: none;
}
body.is-home .lp2026-ms__symptom .body-map__hotspot span {
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
}
/* r115: PC は ○ を大きく (SP=28px は維持)。3文字ラベル(股関節/大腿部/下腿部)が収まるサイズに */
@media (min-width: 769px) {
  body.is-home .lp2026-ms__symptom .body-map__hotspot {
    width: 46px;
    height: 46px;
    font-size: 11px;
  }
}
/* r116: EN 版は語が長い(Upper back / Lower leg 等)ので折返し可+円を拡大して ○ 内に収める */
.lang-en body.is-home .lp2026-ms__symptom .body-map__hotspot span {
  white-space: normal;
}
.lang-en body.is-home .lp2026-ms__symptom .body-map__hotspot {
  width: 44px;
  height: 44px;
  font-size: 8px;
  line-height: 1.05;
  text-align: center;
  padding: 3px;
}
@media (min-width: 769px) {
  .lang-en body.is-home .lp2026-ms__symptom .body-map__hotspot {
    width: 60px;
    height: 60px;
    font-size: 9.5px;
    padding: 4px;
  }
}
body.is-home .lp2026-ms__symptom .body-map__note {
  font-size: 11px;
  color: var(--token-text-sub);
  margin: 0.5rem 0 1rem;
  text-align: center;
}

/* =============================================================
   FIX 2026-05-29: Recruit section text colors (dark bg + white text)
   ============================================================= */
body.is-home .lp2026-recruit {
  background: var(--token-text) !important;
  color: var(--token-surface);
}
body.is-home .lp2026-recruit .lp2026-eyebrow {
  color: #d9ad65;  /* gold accent on dark bg */
}
body.is-home .lp2026-recruit .lp2026-section-title {
  color: var(--token-surface) !important;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}
body.is-home .lp2026-recruit__lead {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  margin: 1rem 0 1.75rem;
}
body.is-home .lp2026-recruit__btn,
body.is-home .lp2026-recruit .btn--outline {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  color: var(--token-surface) !important;
}
body.is-home .lp2026-recruit__btn:hover,
body.is-home .lp2026-recruit .btn--outline:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--token-surface) !important;
  color: var(--token-surface) !important;
}
body.is-home .lp2026-recruit__visual img {
  border-radius: var(--token-r-card);
}

/* =============================================================
   FIX 2026-05-29: 「もっと見る」展開 UI (details)
   ============================================================= */
body.is-home .lp2026-more {
  margin-top: 12px;
}
body.is-home .lp2026-more summary {
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--token-primary);
  padding: 8px 0;
  border-top: 1px solid var(--token-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
}
body.is-home .lp2026-more summary::-webkit-details-marker { display: none; }
body.is-home .lp2026-more summary::after {
  content: '＋';
  font-weight: 400;
  color: var(--token-text-sub);
  transition: transform 0.2s ease;
}
body.is-home .lp2026-more[open] summary::after { content: '−'; }
body.is-home .lp2026-more summary:hover { color: var(--token-primary-dk); }
body.is-home .lp2026-more .lp2026-mvf__merit-list--more,
body.is-home .lp2026-more .lp2026-mvf__voice-list--more,
body.is-home .lp2026-more .lp2026-mvf__flow-list--more {
  margin-top: 12px;
  padding-top: 0;
}

/* =============================================================
   FIX 2026-05-29: AI っぽい装飾を完全に除去
   - グラデ・大きな影・派手なホバー変形を全削除
   - 白 + 薄ベージュ + 赤CTA の落ち着いた配色に統一
   ============================================================= */
body.is-home * {
  /* 全てのカード内グラデーションを白に置換 */
}
body.is-home .lp2026-fv,
body.is-home .lp2026-ai,
body.is-home .lp2026-strengths,
body.is-home .lp2026-mvf,
body.is-home .lp2026-sm {
  background: var(--token-bg) !important;
  background-image: none !important;
}
body.is-home .lp2026-cnn,
body.is-home .lp2026-ms,
body.is-home .lp2026-pfc,
body.is-home .lp2026-ba {
  background: var(--token-surface) !important;
}
body.is-home .lp2026-campaign-strip {
  background: var(--token-surface-soft) !important;
}
/* 強み 5枚カードを枠線のみのフラットに */
body.is-home .lp2026-strengths__card {
  box-shadow: none !important;
  background: var(--token-surface);
}
body.is-home .lp2026-strengths__bar .lp2026-strengths__icon {
  background: var(--token-bg) !important;
  border-color: var(--token-border);
  box-shadow: none;
}

/* 全てのカード hover の transform を control: 1px lift だけ、影は increase なし */
body.is-home .lp2026-cnn__campaign,
body.is-home .lp2026-cnn__news,
body.is-home .lp2026-cnn__reason,
body.is-home .lp2026-ms__menu,
body.is-home .lp2026-ms__symptom,
body.is-home .lp2026-mvf__merit,
body.is-home .lp2026-mvf__voice,
body.is-home .lp2026-mvf__flow,
body.is-home .lp2026-pfc__plan,
body.is-home .lp2026-pfc__faq,
body.is-home .lp2026-sm__shop,
body.is-home .lp2026-strengths__card,
body.is-home .lp2026-merit__card,
body.is-home .lp2026-why__card {
  box-shadow: var(--token-shadow-soft);
  transition: box-shadow var(--duration-base) var(--ease-out);
}
body.is-home .lp2026-cnn__campaign:hover,
body.is-home .lp2026-mvf__merit:hover,
body.is-home .lp2026-pfc__plan:hover,
body.is-home .lp2026-why__card:hover {
  box-shadow: var(--token-shadow-card);
  transform: none;
}

/* CTA ¥3,500 banner 内のグラデ → flat primary */
body.is-home .lp2026-cta-banner {
  background: var(--token-primary) !important;
  background-image: none !important;
}

/* セクション間 padding を 40〜56px に厳格適用 */
body.is-home .lp2026-section {
  padding-block: clamp(40px, 4vw, 56px);
}

/* Hero パディング適正化 */
body.is-home .lp2026-fv {
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 40px;
}

/* タイポを serif で和風(refined) */
body.is-home .lp2026-fv__headline {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 1.6rem + 1.8vw, 44px);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

/* eyebrow を更に控えめに */
body.is-home .lp2026-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--token-primary);
}

/* card 内テキスト周辺の line-height を上品に */
body.is-home .lp2026-section-lead,
body.is-home .lp2026-why__desc,
body.is-home .lp2026-merit__card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--token-text-sub);
}

/* ボタン: フラットで上品 */
body.is-home .btn--primary,
body.is-home .pill-btn--primary {
  background: var(--token-primary);
  box-shadow: none;
}
body.is-home .btn--primary:hover {
  background: var(--token-primary-dk);
  box-shadow: var(--token-shadow-soft);
  transform: none;
}

/* =============================================================
   LP2026 MOTION — Apple 級スクロール演出用 CSS (r31)
   ============================================================= */
body.is-home {
  --motion-fast:  200ms;
  --motion-base:  400ms;
  --motion-slow:  900ms;
  --motion-ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --motion-stagger: 80ms;
}

/* GSAP 起動前のチラつき防止: initial hidden 状態を CSS で持つ */
body.is-home #lp-fv .lp2026-fv__headline,
body.is-home #lp-fv .lp2026-fv__sub,
body.is-home #lp-fv .lp2026-fv__cta,
body.is-home #lp-fv .lp2026-fv__features li,
body.is-home #lp-fv .lp2026-fv__visual {
  will-change: transform, opacity;
}

/* Lenis 慣性スクロール: html/body の overflow を確保 */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* =============================================================
   強み 5 枚: pinned horizontal scroll (Apple iPhone 風)
   .lp2026-strengths--pinned が JS で付与される (>= 1024px)
   ============================================================= */
body.is-home .lp2026-strengths--pinned {
  overflow: hidden;
  min-height: 100vh;
  padding-block: 80px 40px;
}
body.is-home .lp2026-strengths--pinned .container {
  max-width: none;
  padding-inline: 0;
}
body.is-home .lp2026-strengths--pinned .lp2026-section-header {
  max-width: var(--token-container);
  margin: 0 auto 48px;
  padding-inline: clamp(24px, 4vw, 64px);
}
body.is-home .lp2026-strengths--pinned .lp2026-strengths__bar {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: clamp(24px, 3vw, 56px);
  padding-inline: clamp(48px, 8vw, 120px);
  padding-block: 32px;
  list-style: none;
  margin: 0;
  align-items: stretch;
}
body.is-home .lp2026-strengths--pinned .lp2026-strengths__bar > li {
  flex: 0 0 clamp(340px, 32vw, 460px);
  background: var(--token-surface);
  border: 1px solid var(--token-border);
  border-radius: var(--token-r-card);
  padding: clamp(32px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(420px, 56vh, 540px);
  box-shadow: var(--token-shadow-soft);
  position: relative;
  overflow: hidden;
}
body.is-home .lp2026-strengths--pinned .lp2026-strengths__bar > li::before {
  content: '';
  position: absolute;
  inset: auto auto auto 0;
  width: 4px;
  height: 56px;
  background: var(--token-primary);
  top: clamp(32px, 3.5vw, 56px);
  border-radius: 0 4px 4px 0;
}
body.is-home .lp2026-strengths--pinned .lp2026-strengths__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: var(--token-bg);
  border-radius: 50%;
  margin-bottom: 32px;
  color: var(--token-primary);
}
body.is-home .lp2026-strengths--pinned .lp2026-strengths__bar > li h3 {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--token-text);
  margin: 0;
}

/* =============================================================
   FV visual: clip-path 演出のため位置を確保
   ============================================================= */
body.is-home .lp2026-fv__visual {
  overflow: hidden;
  border-radius: var(--token-r-card);
  will-change: transform, clip-path;
}
body.is-home .lp2026-fv__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================================
   AI gallery: parallax 用に overflow を確保
   ============================================================= */
body.is-home #lp-ai {
  overflow: hidden;
}
body.is-home .lp2026-ai__gallery picture {
  will-change: transform;
}

/* =============================================================
   reduced motion: 全 transform/opacity 即時表示
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  body.is-home * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  body.is-home .lp2026-strengths--pinned {
    min-height: auto;
  }
  body.is-home .lp2026-strengths--pinned .lp2026-strengths__bar {
    flex-wrap: wrap;
    width: 100%;
  }
}

/* =============================================================
   scroll hint (FV 下部): バウンスする↓ 矢印
   ============================================================= */
body.is-home .lp2026-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--token-text-sub);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  animation: lp2026-scrollHint 2.2s var(--motion-ease-in-out) infinite;
}
body.is-home .lp2026-scroll-hint::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--token-text-sub), transparent);
}
@keyframes lp2026-scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* =============================================================
   r32: Before/After Cinematic Slider (Apple/Linear 風)
   各 case が sticky pin、scroll-scrub で clip-path reveal
   ============================================================= */
body.is-home .lp2026-ba--cinematic {
  background: var(--token-bg);
  padding-block: clamp(60px, 8vw, 120px) 0;
  overflow: hidden;
}
body.is-home .lp2026-ba--cinematic .lp2026-ba__intro {
  margin-bottom: clamp(40px, 5vw, 80px);
}
body.is-home .lp2026-ba--cinematic .lp2026-section-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

body.is-home .lp2026-ba__stage {
  position: relative;
}

body.is-home .lp2026-ba__case {
  position: relative;
  margin-bottom: clamp(40px, 6vw, 96px);
}
body.is-home .lp2026-ba__pin {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  max-width: var(--token-container);
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 64px);
  padding-block: 32px;
}

/* Visual stage: Before + After 重ね合わせ、clip-path で reveal
   r104: aspect-ratio を画像 (900/1044) に合わせて body 全体を切らずに表示
   r104m: BA 画像が透過 PNG なので背景は HP cream に統一 (人物が浮いて見える) */
body.is-home .lp2026-ba__visual {
  position: relative;
  width: 100%;
  max-width: clamp(360px, 32vw, 480px);
  aspect-ratio: 900 / 1044;
  justify-self: center;
  border-radius: var(--token-r-card);
  overflow: hidden;
  background: var(--token-bg, #fbf8f4);
  box-shadow: var(--token-shadow-card);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}
body.is-home .lp2026-ba__visual:focus-visible {
  box-shadow: var(--token-shadow-card), 0 0 0 3px var(--token-primary);
}
body.is-home .lp2026-ba__visual.is-dragging {
  cursor: grabbing;
}
body.is-home .lp2026-ba__visual picture,
body.is-home .lp2026-ba__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* r104: 頭頂部を上端基準で揃える → before/after の頭部位置一致 */
  display: block;
}
body.is-home .lp2026-ba__after {
  /* JS が --reveal を 0%→100% に動かす (デフォルト 50%) */
  clip-path: inset(0 0 0 var(--reveal, 50%));
  will-change: clip-path;
}

/* 中央バー (drag handle) */
body.is-home .lp2026-ba__bar {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--reveal, 50%);
  width: 36px; /* ヒット領域拡大 (透明部分込み) */
  pointer-events: auto;
  z-index: 4;
  transform: translateX(-50%);
  will-change: left;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
}
body.is-home .lp2026-ba__bar::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
body.is-home .lp2026-ba__bar > i {
  position: relative;
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease;
}
body.is-home .lp2026-ba__bar:hover > i,
body.is-home .lp2026-ba__visual.is-dragging .lp2026-ba__bar > i {
  transform: scale(1.08);
}
body.is-home .lp2026-ba__bar > i::before,
body.is-home .lp2026-ba__bar > i::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 12px;
  background: transparent;
  border: solid var(--token-text);
  border-width: 0 0 2px 0;
  transform-origin: center;
}
body.is-home .lp2026-ba__bar > i::before {
  left: 12px;
  border-left: 2px solid var(--token-text);
  border-bottom: 2px solid var(--token-text);
  width: 8px; height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 0; border-right: 0;
}
body.is-home .lp2026-ba__bar > i::after {
  right: 12px;
  border-right: 2px solid var(--token-text);
  border-top: 2px solid var(--token-text);
  width: 8px; height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 0; border-left: 0;
}

/* タグ (Before / After) — タップでフェード切替 */
body.is-home .lp2026-ba__tag {
  position: absolute;
  top: 24px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 10px 18px;
  border: none;
  border-radius: var(--token-r-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--token-text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
  cursor: pointer;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transition:
    transform 0.22s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.25s ease,
    opacity 0.25s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  animation: ba-tag-blink 1.6s ease-in-out infinite;
  will-change: transform, opacity;
}
body.is-home .lp2026-ba__tag:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}
body.is-home .lp2026-ba__tag:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 0.08s;
}
body.is-home .lp2026-ba__tag:focus-visible {
  outline: 3px solid var(--token-primary);
  outline-offset: 3px;
}

/* 点灯 (is-active): 表示中の側 */
body.is-home .lp2026-ba__tag.is-active {
  animation: none;
  opacity: 1;
  transform: scale(1.04);
}
body.is-home .lp2026-ba__tag--before.is-active {
  background: #ffffff;
  color: var(--token-text);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 255, 255, 1) inset,
    0 0 24px rgba(255, 255, 255, 0.6);
}
body.is-home .lp2026-ba__tag--after.is-active {
  background: var(--token-primary);
  color: #ffffff;
  box-shadow:
    0 10px 30px rgba(207, 47, 47, 0.45),
    0 0 0 2px rgba(255, 255, 255, 0.7) inset,
    0 0 28px rgba(207, 47, 47, 0.55);
}

/* 点滅 (デフォルト): 表示されていない側 */
@keyframes ba-tag-blink {
  0%, 100% {
    opacity: 1;
    box-shadow:
      0 6px 18px rgba(0, 0, 0, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  }
  50% {
    opacity: 0.55;
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.3) inset,
      0 0 0 8px rgba(207, 47, 47, 0.08);
  }
}

body.is-home .lp2026-ba__tag--before { left: 24px; }
body.is-home .lp2026-ba__tag--after {
  right: 24px;
  background: var(--token-primary);
  color: var(--token-surface);
}

/* ボワー: ボタン押下時の画像トランジション中の演出 */
body.is-home .lp2026-ba__visual picture img {
  transition: filter 0.45s ease;
}
body.is-home .lp2026-ba__visual.is-warping picture img {
  filter: blur(1.5px) saturate(1.08) brightness(1.03);
}

/* prefers-reduced-motion: 点滅・拡縮を抑制 */
@media (prefers-reduced-motion: reduce) {
  body.is-home .lp2026-ba__tag {
    animation: none;
    transition: none;
  }
  body.is-home .lp2026-ba__visual.is-warping picture img {
    filter: none;
  }
}

/* Meta (右側パネル) */
body.is-home .lp2026-ba__meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.is-home .lp2026-ba__case-num {
  color: var(--token-primary);
  font-weight: 600;
}
body.is-home .lp2026-ba__case-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: var(--token-text);
}
body.is-home .lp2026-ba__case-data {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid var(--token-border);
  border-bottom: 1px solid var(--token-border);
}
body.is-home .lp2026-ba__case-data > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.is-home .lp2026-ba__case-data dt {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--token-text-sub);
  font-weight: 500;
}
body.is-home .lp2026-ba__case-data dd {
  font-size: 18px;
  font-weight: 600;
  color: var(--token-text);
  margin: 0;
}
body.is-home .lp2026-ba__case-comment {
  font-size: 15px;
  line-height: 1.9;
  color: var(--token-text-sub);
  padding-left: 16px;
  border-left: 3px solid var(--token-primary);
}

/* Mobile: 1 カラム積み重ね、画像は viewport 幅に */
@media (max-width: 1023px) {
  body.is-home .lp2026-ba__case {
    margin-bottom: 56px;
  }
  body.is-home .lp2026-ba__pin {
    grid-template-columns: 1fr;
    padding-block: 24px;
    gap: 28px;
  }
  body.is-home .lp2026-ba__visual {
    aspect-ratio: 3/4;
    max-width: min(90vw, 420px);
  }
}

/* =============================================================
   r32: FV Cinematic (Apple iPhone hero 風 full-bleed)
   ============================================================= */
body.is-home .lp2026-fv--cinematic {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--header-h, 72px) + 8vh);
  padding-bottom: 32px;
}

/* 背景写真 (full-bleed) */
body.is-home .lp2026-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform, clip-path;
}
body.is-home .lp2026-fv__bg picture,
body.is-home .lp2026-fv__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* r104u: マスクを最小限に (画像を最優先で見せる) */
body.is-home .lp2026-fv__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0) 25%,
      rgba(0,0,0,0) 75%,
      rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
/* r104u: 写真自身を contrast + saturate で引き締めて被写体を際立たせる */
body.is-home .lp2026-fv__bg img {
  filter: contrast(1.12) saturate(1.15);
}

/* オーバーレイ コピー */
body.is-home .lp2026-fv__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: var(--token-container);
  padding-inline: clamp(24px, 4vw, 64px);
  color: var(--token-surface);
}
body.is-home .lp2026-fv__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
body.is-home .lp2026-fv--cinematic .lp2026-fv__headline {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 84px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #1a1410; /* r104t: 明るい新FV写真でも可読性確保 (白→濃茶) */
  margin: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7),
               0 2px 18px rgba(255, 255, 255, 0.5);
}
body.is-home .lp2026-fv--cinematic .lp2026-fv__headline-line {
  display: block;
}
body.is-home .lp2026-fv--cinematic .lp2026-accent {
  color: #ff6b54;
  font-style: normal;
}
body.is-home .lp2026-fv--cinematic .lp2026-fv__sub {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.9;
  color: #1a1a1a; /* r104v: 明るい新 FV 写真でも可読性確保 (白→濃) */
  margin: 0;
  max-width: 540px;
  letter-spacing: 0.05em;
  /* 白半透明バッジで囲んで可読性確保 (PC 含む全画面) */
  display: inline-block;
  width: fit-content;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 16px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-weight: 500;
}
body.is-home .lp2026-fv--cinematic .lp2026-fv__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}
body.is-home .lp2026-fv--cinematic .lp2026-fv__cta .btn--primary {
  font-size: 15px;
  padding: 18px 36px;
  background: var(--token-primary);
  box-shadow: 0 8px 24px rgba(217, 48, 31, 0.4);
}
body.is-home .lp2026-fv--cinematic .lp2026-fv__cta .btn--primary:hover {
  background: var(--token-primary-dk);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(217, 48, 31, 0.5);
}
body.is-home .lp2026-fv--cinematic .lp2026-fv__link {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
  transition: border-color var(--motion-fast) var(--motion-ease-out);
}
body.is-home .lp2026-fv--cinematic .lp2026-fv__link:hover {
  border-bottom-color: #fff;
}

/* 下部 3 columns features (frosted glass 風) */
body.is-home .lp2026-fv--cinematic .lp2026-fv__features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 40px);
  list-style: none;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 64px);
  max-width: var(--token-container);
}
body.is-home .lp2026-fv--cinematic .lp2026-fv__features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--token-r-card-sm);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  color: #fff;
  transition: background var(--motion-fast) var(--motion-ease-out);
}
body.is-home .lp2026-fv--cinematic .lp2026-fv__features li:hover {
  background: rgba(255, 255, 255, 0.14);
}
body.is-home .lp2026-fv__feature-num {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ff6b54;
  line-height: 1;
  letter-spacing: 0.05em;
  min-width: 36px;
}
body.is-home .lp2026-fv__feature-text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 500;
}
body.is-home .lp2026-fv__feature-text em {
  font-style: normal;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px dotted rgba(255, 107, 84, 0.6);
}

/* scroll hint 白色化 */
body.is-home .lp2026-fv--cinematic .lp2026-scroll-hint {
  color: rgba(255, 255, 255, 0.7);
  z-index: 3;
}
body.is-home .lp2026-fv--cinematic .lp2026-scroll-hint::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
}

/* Tablet */
@media (max-width: 1023px) {
  body.is-home .lp2026-fv--cinematic .lp2026-fv__features {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body.is-home .lp2026-fv--cinematic {
    min-height: 92vh;
    padding-top: calc(var(--header-h, 60px) + 24px);
  }
  body.is-home .lp2026-fv--cinematic .lp2026-fv__bg img {
    object-position: center 40%;
  }
  body.is-home .lp2026-fv--cinematic .lp2026-fv__overlay {
    gap: 16px;
  }
  body.is-home .lp2026-fv--cinematic .lp2026-fv__headline {
    font-size: clamp(28px, 8vw, 44px);
    line-height: 1.5;
  }
  body.is-home .lp2026-fv--cinematic .lp2026-fv__sub {
    font-size: 14px;
  }
  body.is-home .lp2026-fv--cinematic .lp2026-fv__cta {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  body.is-home .lp2026-fv--cinematic .lp2026-fv__cta .btn--primary {
    width: 100%;
    text-align: center;
  }
  body.is-home .lp2026-fv--cinematic .lp2026-fv__link {
    text-align: center;
  }
  body.is-home .lp2026-fv--cinematic .lp2026-fv__features li {
    padding: 16px 20px;
  }
}

/* =============================================================
   r32: AI Cinematic Pinned Story (5 viewport phases)
   ============================================================= */
body.is-home .lp2026-ai--cinematic {
  position: relative;
  min-height: 500vh; /* 5 phases × 100vh */
  background: var(--token-surface);
  padding: 0;
}
body.is-home .lp2026-ai--cinematic .lp2026-ai__pinwrap {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

/* Phase containers: 全て同じ場所に重ねて opacity 切替 */
body.is-home .lp2026-ai__intro,
body.is-home .lp2026-ai__wireframe-stage,
body.is-home .lp2026-ai__phone-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 96px);
  will-change: opacity, transform;
}
/* JS 起動前 / reduced-motion時: intro のみ表示、他は隠す (重なり防止) */
body.is-home .lp2026-ai--cinematic:not(.is-init) .lp2026-ai__wireframe-stage,
body.is-home .lp2026-ai--cinematic:not(.is-init) .lp2026-ai__phone-stage {
  opacity: 0;
  pointer-events: none;
}

/* ---------- Intro ---------- */
body.is-home .lp2026-ai__intro {
  flex-direction: column;
  gap: 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
body.is-home .lp2026-ai__title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--token-text);
  margin: 0;
}
body.is-home .lp2026-ai__title .lp2026-accent {
  color: var(--token-primary);
  font-style: normal;
}
body.is-home .lp2026-ai__lead {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--token-text-sub);
  margin: 0;
}

/* ---------- Wireframe stage ---------- */
body.is-home .lp2026-ai__wireframe-wrap {
  position: relative;
  width: min(80vw, 720px);
  height: min(85vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.is-home .lp2026-ai__wireframe {
  width: 40%;
  height: 100%;
  position: relative;
  z-index: 1;
}
body.is-home .lp2026-ai__wf-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
body.is-home .lp2026-ai__pt {
  transform-origin: center;
  transform-box: fill-box;
}

/* Floating data labels */
body.is-home .lp2026-ai__data {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 22px;
  background: var(--token-surface);
  border: 1px solid var(--token-border);
  border-radius: var(--token-r-card-sm);
  box-shadow: var(--token-shadow-card);
  z-index: 2;
  min-width: 160px;
  opacity: 0;
  transform: scale(0.9);
}
body.is-home .lp2026-ai__data-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--token-text-sub);
  font-weight: 500;
}
body.is-home .lp2026-ai__data-value {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--token-primary);
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  font-feature-settings: 'tnum';
}
body.is-home .lp2026-ai__data-value em {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: var(--token-text-sub);
  margin-left: 4px;
}

/* ---------- Phone stage ---------- */
body.is-home .lp2026-ai__phone-stage {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
  max-width: var(--token-container);
  margin: 0 auto;
  align-items: center;
  padding-inline: clamp(24px, 4vw, 80px);
}
body.is-home .lp2026-ai__phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/19.5;
  border-radius: 44px;
  background: #1a1a1a;
  padding: 14px;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(0, 0, 0, 0.05) inset;
  justify-self: center;
}
body.is-home .lp2026-ai__phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #000;
  border-radius: 0 0 18px 18px;
  z-index: 3;
}
body.is-home .lp2026-ai__phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--token-surface);
}
body.is-home .lp2026-ai__phone-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.is-home .lp2026-ai__phone-frame.is-active { opacity: 1; }
body.is-home .lp2026-ai__phone-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Conclusion */
body.is-home .lp2026-ai__conclusion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}
body.is-home .lp2026-ai__conclusion-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--token-text);
  margin: 0;
}
body.is-home .lp2026-ai__conclusion-lead {
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: var(--token-text-sub);
  margin: 0;
}
body.is-home .lp2026-ai__conclusion .btn--primary {
  align-self: flex-start;
  margin-top: 12px;
}

/* Tablet/Mobile + reduced-motion fallback: 通常スタッキング (cinematic OFF) */
/* AI cinematic fallback (motion OFF / mobile): wireframe-stage は完全に隠し
   intro と phone-stage を縦並びに整理 (1 viewport で全部見える設計) */
@media (max-width: 1023px), (prefers-reduced-motion: reduce) {
  body.is-home .lp2026-ai--cinematic {
    min-height: auto;
    padding: clamp(48px, 6vw, 80px) 0;
  }
  body.is-home .lp2026-ai--cinematic .lp2026-ai__pinwrap {
    position: static;
    height: auto;
    display: block;
    max-width: var(--token-container);
    margin: 0 auto;
    overflow: visible;
  }
  /* intro: コンパクトに */
  body.is-home .lp2026-ai__intro {
    position: relative;
    inset: auto;
    padding: clamp(24px, 3vw, 48px) clamp(16px, 4vw, 64px);
    text-align: center;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    max-width: 800px;
    margin: 0 auto;
  }
  body.is-home .lp2026-ai__title {
    font-size: clamp(28px, 4.5vw, 56px) !important;
  }
  body.is-home .lp2026-ai__lead {
    font-size: clamp(13px, 1.2vw, 16px) !important;
    margin-top: 16px;
  }
  /* wireframe-stage: モーション専用なので完全に非表示 */
  body.is-home .lp2026-ai__wireframe-stage {
    display: none !important;
  }
  /* phone-stage: 2 列 (phone + conclusion) - PC tablet。SP は 1 列 */
  body.is-home .lp2026-ai__phone-stage {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    padding: clamp(24px, 3vw, 48px) clamp(16px, 4vw, 64px);
    margin: 0 auto;
    max-width: var(--token-container);
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  body.is-home .lp2026-ai__phone-frame {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  body.is-home .lp2026-ai__phone-frame.is-active { opacity: 1; }
  /* phone-stage 内の data label は不要 */
  body.is-home .lp2026-ai__data { display: none; }
}
@media (max-width: 768px) {
  body.is-home .lp2026-ai__phone-stage {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  body.is-home .lp2026-ai__phone {
    margin: 0 auto;
  }
}

/* AI cinematic fallback (motion OFF for desktop): intro + phone も自動切替バナー */
body.is-home .lp2026-ai--cinematic .lp2026-ai__phone-screen .lp2026-ai__phone-frame:not(.is-active) {
  opacity: 0;
}

/* =============================================================
   r33: 微調整パック
   - AI 見出し改行ブレイク修正
   - iPhone 3 frame を object-position で差別化
   - 強み 5 枚カード画像追加
   - Marquee 帯 (無限横スクロール)
   ============================================================= */

/* AI 見出し: 2 行に分割して改行を制御 */
body.is-home .lp2026-ai__title-line {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
}

/* iPhone 3 frame の画像を object-position で別画面に見せる */
body.is-home .lp2026-ai__phone-frame--1 img {
  object-fit: cover;
  object-position: 22% 40%;       /* ai-shisei 左 = 人物 + キーポイント (全身) */
  transform: scale(1.5);
  transform-origin: 22% 40%;
}
body.is-home .lp2026-ai__phone-frame--2 img {
  object-fit: cover;
  object-position: 18% center;    /* ai-sportip 左 = iPhone UI (スコア 81点 等) */
  transform: scale(1.9);
  transform-origin: 18% center;
}
body.is-home .lp2026-ai__phone-frame--3 img {
  object-fit: cover;
  object-position: 80% center;    /* ai-shisei 右 = iPhone UI (詳細測定値) */
  transform: scale(2.0);
  transform-origin: 80% center;
}

/* =============================================================
   強み 5 枚カード: 画像追加 + 番号
   ============================================================= */
/* 強み 5 枚カードのベーススタイル: 画像背景 + 番号 + 白文字
   (motion ON/OFF どちらでも、PC/SP どちらでも同じ見た目) */
body.is-home .lp2026-strengths__bar > li {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 280px;
  border-radius: var(--token-r-card);
  background: var(--token-surface);
}
body.is-home .lp2026-strengths__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
body.is-home .lp2026-strengths__media picture,
body.is-home .lp2026-strengths__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.92);
  transition: transform var(--motion-slow) var(--motion-ease-out),
              filter var(--motion-slow) var(--motion-ease-out);
}
body.is-home .lp2026-strengths__bar > li:hover .lp2026-strengths__media img {
  transform: scale(1.04);
  filter: brightness(0.68) saturate(1.0);
}
/* 文字可読性のために下半分にだけ薄いグラデーション (overlay よりは控えめ) */
body.is-home .lp2026-strengths__bar > li::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}
body.is-home .lp2026-strengths__num {
  position: absolute;
  top: clamp(16px, 2vw, 32px);
  right: clamp(16px, 2vw, 32px);
  z-index: 2;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  letter-spacing: 0.04em;
}
body.is-home .lp2026-strengths__bar > li .lp2026-strengths__icon {
  position: relative;
  z-index: 2;
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin: clamp(20px, 2.5vw, 40px) 0 16px clamp(20px, 2.5vw, 40px);
  font-size: 20px;
}
body.is-home .lp2026-strengths__bar > li h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  margin: 0 clamp(20px, 2.5vw, 40px) clamp(20px, 2.5vw, 40px);
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}
body.is-home .lp2026-strengths__bar > li::before {
  z-index: 2;
  top: clamp(76px, 6vw, 108px);
}

/* 強み 5 枚の通常 PC レイアウト (motion OFF / pin 無効時): 5 カラム grid */
@media (min-width: 1024px) {
  body.is-home .lp2026-strengths__bar:not(.is-pin-active) {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(12px, 1.5vw, 20px);
    padding: 0;
    list-style: none;
    margin: 0;
  }
  body.is-home .lp2026-strengths__bar:not(.is-pin-active) > li {
    min-height: 340px;
    flex: initial;
  }
}

/* Pin scroll 時のサイズ拡張のみ追加 */
body.is-home .lp2026-strengths--pinned .lp2026-strengths__bar > li {
  flex: 0 0 clamp(340px, 32vw, 460px);
  min-height: clamp(420px, 56vh, 540px);
  padding: 0;
}
body.is-home .lp2026-strengths--pinned .lp2026-strengths__bar > li .lp2026-strengths__icon {
  width: 52px; height: 52px;
  margin: clamp(32px, 3.5vw, 56px) 0 24px clamp(32px, 3.5vw, 56px);
  font-size: 22px;
}
body.is-home .lp2026-strengths--pinned .lp2026-strengths__bar > li h3 {
  margin: 0 clamp(32px, 3.5vw, 56px) clamp(32px, 3.5vw, 56px);
  font-size: clamp(20px, 1.8vw, 26px);
}
body.is-home .lp2026-strengths--pinned .lp2026-strengths__num {
  top: clamp(24px, 3vw, 36px);
  right: clamp(24px, 3vw, 36px);
  font-size: clamp(40px, 4vw, 64px);
}

/* モバイル (通常 grid 表示) でも画像対応 */
@media (max-width: 1023px) {
  body.is-home .lp2026-strengths__bar > li {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: var(--token-r-card);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  body.is-home .lp2026-strengths__media {
    position: absolute;
    inset: 0;
  }
  body.is-home .lp2026-strengths__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
  }
  body.is-home .lp2026-strengths__num {
    top: 16px; right: 20px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.85);
  }
  body.is-home .lp2026-strengths__bar > li h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 16px 20px;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  }
  body.is-home .lp2026-strengths__icon {
    position: relative;
    z-index: 2;
    margin: 0 0 0 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
  }
}

/* =============================================================
   Marquee 帯 (無限横スライド)
   ============================================================= */
body.is-home .lp2026-marquee {
  width: 100%;
  background: var(--token-text);
  color: var(--token-surface);
  padding-block: 14px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
body.is-home .lp2026-marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: lp2026-marquee 90s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
body.is-home .lp2026-marquee__track > span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  white-space: nowrap;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}
body.is-home .lp2026-marquee__track .lp2026-marquee__dot {
  font-size: 6px;
  color: var(--token-primary);
  opacity: 0.7;
  letter-spacing: 0;
}
@keyframes lp2026-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
body.is-home .lp2026-marquee:hover .lp2026-marquee__track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  body.is-home .lp2026-marquee__track {
    animation: none;
  }
}

/* =============================================================
   r34: 店舗 SP 横スクロール カルーセル (flex + scroll-snap)
   旧 grid: repeat(3,1fr) を確実に上書きするため flex で書き直し
   ============================================================= */
@media (max-width: 768px) {
  body.is-home .lp2026-sm__shop-cards {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    grid-auto-flow: initial !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    padding: 8px 16px 24px !important;
    margin: 0 -16px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    list-style: none;
  }
  body.is-home .lp2026-sm__shop-cards::-webkit-scrollbar { display: none; }
  body.is-home .lp2026-sm__shop-cards > li {
    flex: 0 0 78% !important;
    max-width: 78%;
    min-width: 240px;
    scroll-snap-align: start;
    list-style: none;
    margin: 0 !important;
  }
  body.is-home .lp2026-sm__shop-cards > li > a {
    display: block !important;
    position: relative;
    overflow: hidden;
    border-radius: var(--token-r-card-sm);
    background: var(--token-surface);
    box-shadow: var(--token-shadow-soft);
    text-decoration: none;
  }
  body.is-home .lp2026-sm__shop-cards picture {
    display: block !important;
    aspect-ratio: 4/3 !important;
    width: 100% !important;
    overflow: hidden;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
  }
  body.is-home .lp2026-sm__shop-cards img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  body.is-home .lp2026-sm__shop-cards p {
    margin: 0 !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--token-text) !important;
    text-align: left !important;
    border-top: 1px solid var(--token-border) !important;
    writing-mode: horizontal-tb;
  }
  /* スワイプヒント: 右端にうっすら次カードが見える */
  body.is-home .lp2026-sm__shop-cards::after {
    content: '';
    flex: 0 0 8px;
  }
}

/* =============================================================
   r35: 4 セクション refinement
   [1] Marquee 帯: subtle gradient + 上品化
   [2] YouTube スライダー: scroll-snap で整える
   [3] メニュー section: parallax 背景 + hover refinement
   [4] 採用バナー: 集合写真大型化
   ============================================================= */

/* ----- [1] Marquee 帯 上品化 ----- */
body.is-home .lp2026-marquee {
  background:
    linear-gradient(180deg,
      #1c1815 0%,
      #2f2a26 50%,
      #1c1815 100%
    );
  border-top: 1px solid rgba(217, 173, 101, 0.18);
  border-bottom: 1px solid rgba(217, 173, 101, 0.18);
  padding-block: 18px;
  position: relative;
  overflow: hidden;
}
body.is-home .lp2026-marquee::before,
body.is-home .lp2026-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
body.is-home .lp2026-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #1c1815 0%, transparent 100%);
}
body.is-home .lp2026-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #1c1815 0%, transparent 100%);
}
body.is-home .lp2026-marquee__track > span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}
body.is-home .lp2026-marquee__track .lp2026-marquee__dot {
  color: var(--token-gold);
  opacity: 0.6;
  font-size: 5px;
}

/* ----- [2] YouTube スライダー ----- */
body.is-home .lp2026-sm__media-slider {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 16px;
  padding: 12px 16px 24px !important;
  margin: 0 -16px !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--token-border) transparent;
}
body.is-home .lp2026-sm__media-slider::-webkit-scrollbar { height: 4px; }
body.is-home .lp2026-sm__media-slider::-webkit-scrollbar-track { background: transparent; }
body.is-home .lp2026-sm__media-slider::-webkit-scrollbar-thumb {
  background: var(--token-border);
  border-radius: 999px;
}
body.is-home .lp2026-sm__media-slider .lp2026-sm__media-card {
  flex: 0 0 240px !important;
  scroll-snap-align: start;
  display: block;
  border-radius: var(--token-r-card-sm);
  overflow: hidden;
  background: var(--token-surface);
  box-shadow: var(--token-shadow-soft);
  text-decoration: none;
  color: var(--token-text);
  transition: transform var(--motion-base) var(--motion-ease-out),
              box-shadow var(--motion-base) var(--motion-ease-out);
}
body.is-home .lp2026-sm__media-slider .lp2026-sm__media-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--token-shadow-card);
}
body.is-home .lp2026-sm__media-slider .lp2026-sm__media-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  margin: 0;
  position: relative;
}
body.is-home .lp2026-sm__media-slider .lp2026-sm__media-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--motion-slow) var(--motion-ease-out);
}
body.is-home .lp2026-sm__media-slider .lp2026-sm__media-card:hover img {
  transform: scale(1.05);
}
body.is-home .lp2026-sm__media-slider .lp2026-sm__media-card picture::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  padding-left: 4px;
  opacity: 0;
  transition: opacity var(--motion-base) var(--motion-ease-out);
}
body.is-home .lp2026-sm__media-slider .lp2026-sm__media-card:hover picture::after {
  opacity: 1;
}
body.is-home .lp2026-sm__media-slider .lp2026-sm__media-card p {
  margin: 0;
  padding: 12px 16px 14px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--token-text);
}
@media (max-width: 768px) {
  body.is-home .lp2026-sm__media-slider .lp2026-sm__media-card {
    flex: 0 0 64% !important;
  }
}

/* ----- [3] メニュー section cinematic refinement ----- */
body.is-home .lp2026-ms__menu {
  position: relative;
  overflow: hidden;
}
body.is-home .lp2026-ms__menu-visual {
  position: relative;
  border-radius: var(--token-r-card);
  overflow: hidden;
  height: clamp(220px, 24vw, 320px);
  margin-bottom: 32px;
  will-change: transform;
}
body.is-home .lp2026-ms__menu-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,0.05) 50%,
    rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
body.is-home .lp2026-ms__menu-visual picture,
body.is-home .lp2026-ms__menu-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 1.2s var(--motion-ease-out);
}
body.is-home .lp2026-ms__menu:hover .lp2026-ms__menu-visual img {
  transform: scale(1.04);
}

body.is-home .lp2026-ms__menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
}
body.is-home .lp2026-ms__menu-list > li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 4px;
  border-bottom: 1px solid var(--token-border);
  transition: padding-left var(--motion-base) var(--motion-ease-out),
              background var(--motion-base) var(--motion-ease-out);
  cursor: default;
  position: relative;
}
body.is-home .lp2026-ms__menu-list > li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 2px;
  background: var(--token-primary);
  transform: translateY(-50%);
  transition: width var(--motion-base) var(--motion-ease-out);
}
body.is-home .lp2026-ms__menu-list > li:hover {
  padding-left: 16px;
}
body.is-home .lp2026-ms__menu-list > li:hover::before {
  width: 12px;
}
body.is-home .lp2026-ms__menu-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--token-text);
}
body.is-home .lp2026-ms__menu-price {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--token-primary);
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
body.is-home .lp2026-ms__menu-price small {
  font-size: 11px;
  font-weight: 500;
  color: var(--token-text-sub);
  margin-left: 4px;
}

/* ----- [4] 採用バナー refinement: 写真大型化 ----- */
body.is-home .lp2026-recruit {
  background:
    linear-gradient(180deg, #2f2a26 0%, #1c1815 100%);
  padding-block: clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
body.is-home .lp2026-recruit::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(217, 173, 101, 0.08), transparent 60%);
  pointer-events: none;
}
body.is-home .lp2026-recruit__inner {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr) !important;
  gap: clamp(40px, 6vw, 80px) !important;
  align-items: center;
  max-width: var(--token-container);
  padding-inline: clamp(24px, 4vw, 64px);
}
body.is-home .lp2026-recruit__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.is-home .lp2026-recruit .lp2026-eyebrow {
  color: var(--token-gold) !important;
  letter-spacing: 0.25em;
  font-weight: 500;
}
body.is-home .lp2026-recruit .lp2026-section-title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(26px, 2.6vw, 40px) !important;
  line-height: 1.65 !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
  margin: 0;
}
body.is-home .lp2026-recruit__lead {
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
body.is-home .lp2026-recruit__btn {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 32px !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  color: #fff !important;
  letter-spacing: 0.1em;
}
body.is-home .lp2026-recruit__btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
}
body.is-home .lp2026-recruit__visual {
  position: relative;
  border-radius: var(--token-r-card);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
  will-change: transform;
}
body.is-home .lp2026-recruit__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0%, transparent 60%, rgba(217, 48, 31, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
}
body.is-home .lp2026-recruit__visual::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(217, 173, 101, 0.92);
  color: #1c1815;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: var(--token-r-pill);
  z-index: 3;
  content: 'WE ARE HIRING';
}
body.is-home .lp2026-recruit__visual picture,
body.is-home .lp2026-recruit__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 1.5s var(--motion-ease-out);
}
body.is-home .lp2026-recruit:hover .lp2026-recruit__visual img {
  transform: scale(1.04);
}
@media (max-width: 1023px) {
  body.is-home .lp2026-recruit__inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  body.is-home .lp2026-recruit__visual {
    aspect-ratio: 4/3;
    order: -1;
  }
}

/* r118: 採用情報 — 画像の高さを左テキスト列に必ず一致させる
   (中央寄せだと font 描画差で画像が高く見え高さがズレるため、
    画像を絶対配置にして visual の高さをテキスト列に追従させる) */
@media (min-width: 1024px) {
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__inner {
    align-items: stretch !important;
  }
  /* デスクトップでは RECRUIT eyebrow が opacity:0 で不可視なのに高さを占有し、
     画像が見出し「採用情報」より上にはみ出して見える。スペースごと除去して
     画像の上端を見出しに揃える (モバイルは eyebrow 表示なので対象外) */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__eyebrow {
    display: none !important;
  }
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__visual {
    aspect-ratio: auto !important;
    min-height: 0;
  }
  /* 画像を絶対配置にして流れから外す → visual の高さが行(テキスト列)に追従 */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__visual > picture,
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__visual > picture > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* =============================================================
   r43: AI Posture Analysis — AirPods Pro style chapter
   ============================================================= */
body.is-home .lp2026-airpods {
  background: #000;
  color: #fff;
  position: relative;
  padding: 0;
  font-feature-settings: "palt";
}
body.is-home .lp2026-airpods,
body.is-home .lp2026-airpods * {
  box-sizing: border-box;
}

/* override 既存 .lp2026-ai 系の色トーン */
body.is-home #lp-ai {
  background: #000 !important;
  overflow: visible !important; /* override previous overflow:hidden so sticky works */
  padding: 0 !important;
}

/* ===== 共通: chapter ラベル =====*/
body.is-home .lp2026-airpods__chapter {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ff4a4a;
}

/* ===== Phase 0: Hero =====*/
body.is-home .lp2026-airpods__hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse at center, #1a0606 0%, #000 70%);
  position: relative;
}
body.is-home .lp2026-airpods__hero .lp2026-airpods__chapter {
  margin-bottom: 32px;
}
body.is-home .lp2026-airpods__headline {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.is-home .lp2026-airpods__sub {
  margin-top: 24px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.8;
}
body.is-home .lp2026-airpods__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.2em;
}
body.is-home .lp2026-airpods__scroll-hint-arrow {
  font-size: 20px;
  animation: airpods-scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes airpods-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ===== Phase 1-3: Pinned story (GSAP pin: Lenis 対応で sticky 不可) =====*/
body.is-home .lp2026-airpods__story {
  position: relative;
  height: 400vh; /* hero (100vh) + pin duration (300vh) を確保 */
}
body.is-home .lp2026-airpods__sticky {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
/* タッチ端末(Lenis 無効=ネイティブスクロール)では GSAP pin を使わず CSS sticky で固定。
   pin の px ドリフト(モバイルURLバー伸縮/遅延reflow)による
   "図が FV に出る / セクション内で消える / スクロールで点滅" を根本回避する。
   lp2026-motion.js が IS_TOUCH 時に is-airpods-native を付与。 */
body.is-home .lp2026-airpods.is-airpods-native .lp2026-airpods__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
body.is-home .lp2026-airpods__step-label {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff4a4a;
  transition: opacity 0.4s ease;
  z-index: 3;
}

/* ===== Figure (photo + skeleton + callouts) =====*/
body.is-home .lp2026-airpods__figure {
  position: relative;
  height: min(78vh, 760px);
  aspect-ratio: 887 / 1774;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 900px) {
  body.is-home .lp2026-airpods__figure {
    height: min(64vh, 540px);
  }
}
body.is-home .lp2026-airpods__photo {
  display: block;
  width: 100%;
  height: 100%;
}
body.is-home .lp2026-airpods__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* r104: 初期 opacity を 1 に (pin 起動前の空白を解消)。is-figure-in 時に微フィルタ強化のみ */
  opacity: 1;
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.6s ease, opacity 0.6s ease;
}
body.is-home .lp2026-airpods.is-figure-in .lp2026-airpods__photo img {
  opacity: 1;
  filter: brightness(1.0) contrast(1.08);
}

/* ===== Skeleton overlay =====*/
body.is-home .lp2026-airpods__skeleton {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
body.is-home .lp2026-airpods__bones .bone {
  fill: none;
  stroke: rgba(255,255,255,0.92);
  stroke-width: 3;
  stroke-linecap: round;
  /* prepare for draw animation */
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 0.85s cubic-bezier(.5,0,.2,1);
}
body.is-home .lp2026-airpods__dots .dot {
  fill: #ff4a4a;
  filter: drop-shadow(0 0 6px rgba(255,74,74,0.7));
  transform-origin: center;
  transform-box: fill-box;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.5,1.5,.5,1), opacity 0.4s ease;
}
body.is-home .lp2026-airpods__dots .dot--accent {
  fill: #ff4a4a;
  filter: drop-shadow(0 0 12px rgba(255,74,74,0.9));
}

/* skeleton draw 各 bone・dot に stagger delay */
body.is-home .lp2026-airpods.is-detect-in .lp2026-airpods__bones .bone {
  stroke-dashoffset: 0;
}
body.is-home .lp2026-airpods.is-detect-in .lp2026-airpods__dots .dot {
  transform: scale(1);
  opacity: 1;
}
body.is-home .lp2026-airpods__bones .bone:nth-child(1) { transition-delay: 0.00s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(2) { transition-delay: 0.08s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(3) { transition-delay: 0.16s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(4) { transition-delay: 0.24s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(5) { transition-delay: 0.16s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(6) { transition-delay: 0.24s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(7) { transition-delay: 0.04s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(8) { transition-delay: 0.32s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(9) { transition-delay: 0.40s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(10) { transition-delay: 0.48s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(11) { transition-delay: 0.40s; }
body.is-home .lp2026-airpods__bones .bone:nth-child(12) { transition-delay: 0.48s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(n) { transition-delay: 0.6s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(1) { transition-delay: 0.55s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(2) { transition-delay: 0.60s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(3) { transition-delay: 0.65s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(4) { transition-delay: 0.65s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(5) { transition-delay: 0.70s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(6) { transition-delay: 0.70s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(7) { transition-delay: 0.75s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(8) { transition-delay: 0.75s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(9) { transition-delay: 0.80s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(10) { transition-delay: 0.85s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(11) { transition-delay: 0.85s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(12) { transition-delay: 0.90s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(13) { transition-delay: 0.90s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(14) { transition-delay: 0.95s; }
body.is-home .lp2026-airpods__dots .dot:nth-child(15) { transition-delay: 0.95s; }

/* ===== Callouts =====*/
body.is-home .lp2026-airpods__callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
body.is-home .lp2026-airpods__callout {
  position: absolute;
  top: var(--y, 50%);
  background: rgba(255,255,255,0.96);
  color: #1a1a1a;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 130px;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.4,1.4,.4,1);
}
body.is-home .lp2026-airpods__callout--left {
  right: calc(100% + 60px);
}
body.is-home .lp2026-airpods__callout--right {
  left: calc(100% + 60px);
}
body.is-home .lp2026-airpods__callout--alert {
  background: #ff4a4a;
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,74,74,0.55);
}
/* connecting line */
body.is-home .lp2026-airpods__callout::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.55);
}
body.is-home .lp2026-airpods__callout--left::before { right: -56px; }
body.is-home .lp2026-airpods__callout--right::before { left: -56px; }
body.is-home .lp2026-airpods__callout--alert::before { background: rgba(255,74,74,0.6); }

body.is-home .lp2026-airpods__callout-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
}
body.is-home .lp2026-airpods__callout-num {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
body.is-home .lp2026-airpods__callout-num em {
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  opacity: 0.7;
  margin-left: 2px;
}

/* measure phase で callouts が cascade in */
body.is-home .lp2026-airpods.is-measure-in .lp2026-airpods__callout {
  opacity: 1;
  transform: translateY(0) scale(1);
}
body.is-home .lp2026-airpods.is-measure-in .lp2026-airpods__callout:nth-child(1) { transition-delay: 0.05s; }
body.is-home .lp2026-airpods.is-measure-in .lp2026-airpods__callout:nth-child(2) { transition-delay: 0.18s; }
body.is-home .lp2026-airpods.is-measure-in .lp2026-airpods__callout:nth-child(3) { transition-delay: 0.30s; }
body.is-home .lp2026-airpods.is-measure-in .lp2026-airpods__callout:nth-child(4) { transition-delay: 0.42s; }
body.is-home .lp2026-airpods.is-measure-in .lp2026-airpods__callout:nth-child(5) { transition-delay: 0.55s; }

/* SP: callouts を縦に重ねる (画像の左右にスペース取れないため) */
@media (max-width: 900px) {
  body.is-home .lp2026-airpods__callout--left,
  body.is-home .lp2026-airpods__callout--right {
    left: auto;
    right: auto;
  }
  body.is-home .lp2026-airpods__callout--left {
    right: calc(100% + 16px);
    transform: translateY(8px) scale(0.85);
  }
  body.is-home .lp2026-airpods__callout--right {
    left: calc(100% + 16px);
    transform: translateY(8px) scale(0.85);
  }
  body.is-home .lp2026-airpods__callout {
    font-size: 11px;
    padding: 7px 10px;
    min-width: 110px;
  }
  body.is-home .lp2026-airpods__callout-num { font-size: 15px; }
  body.is-home .lp2026-airpods__callout::before { width: 14px; }
  body.is-home .lp2026-airpods__callout--left::before { right: -14px; }
  body.is-home .lp2026-airpods__callout--right::before { left: -14px; }
  body.is-home .lp2026-airpods.is-measure-in .lp2026-airpods__callout {
    transform: translateY(0) scale(0.95);
  }
}

/* ===== Phase 4: Phones block =====*/
body.is-home .lp2026-airpods__phones-block {
  background: radial-gradient(ellipse at center, #0c0c10 0%, #000 80%);
  padding: clamp(80px, 12vw, 160px) 24px clamp(64px, 10vw, 120px);
  text-align: center;
}
body.is-home .lp2026-airpods__phones-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 16px 0 64px;
}
body.is-home .lp2026-airpods__phones {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
body.is-home .lp2026-airpods__phone {
  width: 220px;
  aspect-ratio: 9/19.5;
  background: #1a1a1a;
  border-radius: 32px;
  padding: 7px;
  box-shadow:
    0 24px 64px rgba(255,74,74,0.15),
    0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}
body.is-home .lp2026-airpods__phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  font-size: 10px;
  color: #2f2a26;
  padding: 28px 14px 14px;
}
body.is-home .lp2026-airpods__phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 60px;
  height: 16px;
  background: #000;
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 5;
}
body.is-home .lp2026-airpods__phone-num {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.15em;
}

/* Phone 1: capture */
body.is-home .lp2026-airpods__pscr-1 .status { text-align: right; font-weight: 700; color: #999; font-size: 11px; }
body.is-home .lp2026-airpods__pscr-1 .title { font-size: 11px; font-weight: 700; margin: 6px 0 8px; }
body.is-home .lp2026-airpods__pscr-1 .cam {
  height: 240px;
  background: linear-gradient(180deg,#f4f4f4,#e0e0e0);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
body.is-home .lp2026-airpods__pscr-1 .cam-fig {
  width: 30px; height: 110px; background: #888;
  clip-path: polygon(40% 0%, 60% 0%, 60% 18%, 80% 25%, 75% 50%, 60% 45%, 60% 100%, 40% 100%, 40% 45%, 25% 50%, 20% 25%, 40% 18%);
}
body.is-home .lp2026-airpods__pscr-1 .cam-frame {
  position: absolute; inset: 14px;
  border: 2px dashed #2e8b57; border-radius: 4px;
}
body.is-home .lp2026-airpods__pscr-1 .bar {
  margin-top: 14px; height: 8px;
  background: #f0f0f0; border-radius: 99px; overflow: hidden;
}
body.is-home .lp2026-airpods__pscr-1 .bar::before {
  content: ''; display: block;
  width: 82%; height: 100%; background: #ff4a4a;
}
body.is-home .lp2026-airpods__pscr-1 .bar-label {
  font-size: 9px; color: #888; margin-top: 6px; text-align: center;
}

/* Phone 2: result */
body.is-home .lp2026-airpods__pscr-2 .status { text-align: right; font-weight: 700; color: #999; font-size: 11px; }
body.is-home .lp2026-airpods__pscr-2 .score {
  text-align: center; padding: 12px 0;
  border-bottom: 1px solid #eee;
}
body.is-home .lp2026-airpods__pscr-2 .score .h {
  font-size: 9px; color: #999;
  letter-spacing: 0.1em; text-transform: uppercase;
}
body.is-home .lp2026-airpods__pscr-2 .score-num {
  font-size: 48px; font-weight: 800; color: #ff4a4a; line-height: 1;
}
body.is-home .lp2026-airpods__pscr-2 .score-lab {
  font-size: 10px; color: #888; margin-top: 4px;
}
body.is-home .lp2026-airpods__pscr-2 .br {
  display: flex; align-items: center; gap: 6px;
  margin: 8px 0; font-size: 9px;
}
body.is-home .lp2026-airpods__pscr-2 .br-lab { flex: 0 0 56px; }
body.is-home .lp2026-airpods__pscr-2 .br-tr {
  flex: 1; height: 6px;
  background: #f5f5f5; border-radius: 99px; overflow: hidden;
}
body.is-home .lp2026-airpods__pscr-2 .br-fl {
  height: 100%; background: #ff4a4a; border-radius: 99px;
}
body.is-home .lp2026-airpods__pscr-2 .warn {
  background: #fff5f5; color: #ff4a4a;
  padding: 8px 10px; border-radius: 4px;
  font-size: 9px; margin-top: 10px;
}

/* Phone 3: plan */
body.is-home .lp2026-airpods__pscr-3 .status { text-align: right; font-weight: 700; color: #999; font-size: 11px; }
body.is-home .lp2026-airpods__pscr-3 .h {
  font-size: 12px; font-weight: 700; margin: 4px 0 12px;
}
body.is-home .lp2026-airpods__pscr-3 .card {
  background: linear-gradient(135deg,#fff5f5,#ffe6e6);
  border: 1px solid #ffcaca;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
}
body.is-home .lp2026-airpods__pscr-3 .card-t { font-size: 10px; font-weight: 700; }
body.is-home .lp2026-airpods__pscr-3 .card-m { font-size: 9px; color: #999; margin-top: 4px; }
body.is-home .lp2026-airpods__pscr-3 .card-p {
  font-size: 16px; font-weight: 800; color: #ff4a4a; margin-top: 6px;
}
body.is-home .lp2026-airpods__pscr-3 .cta {
  background: #ff4a4a; color: #fff; text-align: center;
  padding: 12px; border-radius: 999px;
  font-size: 10px; font-weight: 700; margin-top: 8px;
}

@media (max-width: 768px) {
  body.is-home .lp2026-airpods__phones { gap: 16px; }
  body.is-home .lp2026-airpods__phone { width: 180px; }
}

/* ===== Phase 5: Close + CTA =====*/
body.is-home .lp2026-airpods__close {
  background: radial-gradient(ellipse at center, #0d0808 0%, #000 80%);
  padding: clamp(80px, 12vw, 160px) 24px clamp(96px, 14vw, 200px);
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
body.is-home .lp2026-airpods__close .lp2026-airpods__chapter {
  margin-bottom: 48px;
}
body.is-home .lp2026-airpods__conclusion {
  font-size: clamp(40px, 6.5vw, 92px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 900px;
  margin: 0;
}
body.is-home .lp2026-airpods__accent {
  color: #ff4a4a;
}
body.is-home .lp2026-airpods__conclusion-sub {
  margin-top: 28px;
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.9;
}
body.is-home .lp2026-airpods__cta {
  margin-top: 48px;
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 18px 36px;
  background: #ff4a4a;
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 32px rgba(255,74,74,0.45);
}
body.is-home .lp2026-airpods__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(255,74,74,0.55);
}

/* prefers-reduced-motion: skeleton 描画と callouts cascade を即時表示 */
@media (prefers-reduced-motion: reduce) {
  body.is-home .lp2026-airpods__photo img,
  body.is-home .lp2026-airpods__bones .bone,
  body.is-home .lp2026-airpods__dots .dot,
  body.is-home .lp2026-airpods__callout,
  body.is-home .lp2026-airpods__scroll-hint-arrow {
    transition: none !important;
    animation: none !important;
  }
  body.is-home .lp2026-airpods__photo img { opacity: 1; }
  body.is-home .lp2026-airpods__bones .bone { stroke-dashoffset: 0; }
  body.is-home .lp2026-airpods__dots .dot { transform: scale(1); opacity: 1; }
  body.is-home .lp2026-airpods__callout { opacity: 1; transform: none; }
}

/* =============================================================
   r50: BA toggle button (BEFORE/AFTER を 1 ボタンに統合)
   ============================================================= */
body.is-home .lp2026-ba__toggle {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 12px 22px;
  border: none;
  border-radius: var(--token-r-pill);
  background: rgba(255, 255, 255, 0.96);
  color: var(--token-text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition:
    transform 0.22s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.25s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  white-space: nowrap;
  min-width: 180px;
  justify-content: center;
}
body.is-home .lp2026-ba__toggle:hover {
  transform: translateX(-50%) translateY(-2px) scale(1.04);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
body.is-home .lp2026-ba__toggle:active {
  transform: translateX(-50%) translateY(0) scale(0.96);
  transition-duration: 0.08s;
}
body.is-home .lp2026-ba__toggle:focus-visible {
  outline: 3px solid var(--token-primary);
  outline-offset: 3px;
}
body.is-home .lp2026-ba__toggle-label {
  letter-spacing: 0.22em;
}
body.is-home .lp2026-ba__toggle-icon {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.55;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body.is-home .lp2026-ba__toggle:hover .lp2026-ba__toggle-icon {
  opacity: 1;
  transform: rotate(180deg);
}

/* 表示中の状態に応じた色付け */
body.is-home .lp2026-ba__toggle[data-ba-state="before"] {
  background: #ffffff;
  color: var(--token-text);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.32),
    0 0 0 2px rgba(255, 255, 255, 1) inset,
    0 0 24px rgba(255, 255, 255, 0.5);
}
body.is-home .lp2026-ba__toggle[data-ba-state="after"] {
  background: var(--token-primary);
  color: #ffffff;
  box-shadow:
    0 10px 30px rgba(207, 47, 47, 0.45),
    0 0 0 2px rgba(255, 255, 255, 0.6) inset,
    0 0 28px rgba(207, 47, 47, 0.5);
}
body.is-home .lp2026-ba__toggle[data-ba-state="both"] {
  background: rgba(255, 255, 255, 0.96);
  color: var(--token-text);
}

/* 旧 .lp2026-ba__tag ボタンを完全非表示 (HTML 残ってる場合の保険) */
body.is-home .lp2026-ba__tag { display: none !important; }

/* =============================================================
   r53: AI section refinements — photo soft edge + text panel
   ============================================================= */

/* セクション bg を少し暖色寄りに */
body.is-home .lp2026-airpods__hero {
  background: radial-gradient(ellipse at center, #1a0e0a 0%, #050402 70%);
}
body.is-home .lp2026-airpods__sticky {
  background: radial-gradient(ellipse 60% 80% at 70% center, rgba(255,180,140,0.05), transparent 70%);
}

/* 写真エッジを mask でフェード (黒背景に溶け込む) */
body.is-home .lp2026-airpods__photo img {
  -webkit-mask-image: radial-gradient(ellipse 70% 88% at center, #000 55%, transparent 96%);
          mask-image: radial-gradient(ellipse 70% 88% at center, #000 55%, transparent 96%);
}

/* step label は text-panel と重複するので非表示 (text panel が代替) */
body.is-home .lp2026-airpods__step-label { display: none; }

/* === Text Panel: スクロール連動でフェーズごとに切替 === */
body.is-home .lp2026-airpods__text-panel {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: min(34vw, 440px);
  height: 360px; /* 3 ブロック layer 用の高さ */
  z-index: 4;
  pointer-events: none;
}
body.is-home .lp2026-airpods__text-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
body.is-home .lp2026-airpods__text-step {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff4a4a;
  margin-bottom: 20px;
}
body.is-home .lp2026-airpods__text-heading {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 20px 0;
}
body.is-home .lp2026-airpods__text-body {
  font-size: clamp(13px, 1.05vw, 15px);
  color: rgba(255,255,255,0.62);
  line-height: 1.9;
  margin: 0;
}

/* フェーズ毎に対応する text-block を表示 */
body.is-home .lp2026-airpods .lp2026-airpods__text-block[data-phase="figure"] {
  opacity: 1;
  transform: translateY(0);
}
body.is-home .lp2026-airpods.is-detect-in .lp2026-airpods__text-block[data-phase="figure"] {
  opacity: 0;
  transform: translateY(-16px);
}
body.is-home .lp2026-airpods.is-detect-in .lp2026-airpods__text-block[data-phase="detect"] {
  opacity: 1;
  transform: translateY(0);
}
body.is-home .lp2026-airpods.is-measure-in .lp2026-airpods__text-block[data-phase="detect"] {
  opacity: 0;
  transform: translateY(-16px);
}
body.is-home .lp2026-airpods.is-measure-in .lp2026-airpods__text-block[data-phase="measure"] {
  opacity: 1;
  transform: translateY(0);
}

/* SP: text panel を figure 下に積む / 非表示 (パフォーマンス重視) */
@media (max-width: 900px) {
  body.is-home .lp2026-airpods__text-panel {
    display: none; /* SP は figure のみで簡潔に */
  }
}

/* Hero block の背景も少し warmth 寄せて統一 */
body.is-home .lp2026-airpods__phones-block,
body.is-home .lp2026-airpods__close {
  background: radial-gradient(ellipse at center, #0c0a08 0%, #020201 80%);
}

/* =============================================================
   r55: AI section view toggle (FRONT/SIDE) + BA→Strengths smooth transition
   ============================================================= */

/* === FRONT/SIDE view toggle === */
body.is-home .lp2026-airpods__view-toggle {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.is-home .lp2026-airpods__view-toggle button {
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  padding: 8px 16px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}
body.is-home .lp2026-airpods__view-toggle button:hover {
  color: rgba(255, 255, 255, 0.9);
}
body.is-home .lp2026-airpods__view-toggle button.is-active {
  background: #ff4a4a;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 74, 74, 0.45);
}

/* views: front 既定で表示、side 隠し */
body.is-home .lp2026-airpods__view {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
}
body.is-home .lp2026-airpods__figure {
  position: relative;
}
body.is-home .lp2026-airpods__figure[data-airpods-view="front"] .lp2026-airpods__view--front,
body.is-home .lp2026-airpods__figure[data-airpods-view="side"] .lp2026-airpods__view--side {
  opacity: 1;
  pointer-events: auto;
}

/* reference line (薄い破線、ideal の鉛直/水平基準) */
body.is-home .lp2026-airpods__skeleton .ref-line {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1.5;
  fill: none;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}
body.is-home .lp2026-airpods.is-detect-in .lp2026-airpods__skeleton .ref-line {
  opacity: 1;
}

/* === BA → Strengths transition: 章タイトル intro 追加 + 余白 === */
body.is-home .lp2026-strengths {
  padding-top: clamp(80px, 10vw, 140px) !important;
  position: relative;
}
body.is-home .lp2026-strengths::before {
  /* gradient で BA からの transition を smooth に */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(252,247,239,0.6) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* =============================================================
   r56: 強みカード — テキスト視認性向上 + アイコン白丸非表示
   ============================================================= */
/* 白丸アイコンを完全非表示 (デザイン上不要) */
body.is-home .lp2026-strengths__bar > li .lp2026-strengths__icon,
body.is-home .lp2026-strengths--pinned .lp2026-strengths__icon,
body.is-home .lp2026-strengths__icon {
  display: none !important;
}

/* カード上の overlay を濃く + テキストにシャドウで読みやすく */
body.is-home .lp2026-strengths__bar > li::before {
  background: linear-gradient(180deg, rgba(20,15,12,0.35) 0%, rgba(20,15,12,0.75) 100%) !important;
}
body.is-home .lp2026-strengths__bar > li h3 {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.8) !important;
  font-weight: 700 !important;
  font-size: clamp(15px, 1.1vw, 18px) !important;
  line-height: 1.6 !important;
  letter-spacing: 0.03em !important;
}
body.is-home .lp2026-strengths__bar > li .lp2026-strengths__num {
  color: rgba(255,255,255,0.95) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7) !important;
  font-weight: 600 !important;
}

/* =============================================================
   r57: AI section を 明色テーマに反転 (他セクションと統一)
   ============================================================= */

/* === セクション全体: HP の背景色 (token-bg cream) に統一 === */
body.is-home #lp-ai {
  background: var(--token-bg, #fbf8f4) !important;
}

/* === Hero block === */
body.is-home .lp2026-airpods__hero {
  background: radial-gradient(ellipse at center, #fcf7ef 0%, var(--token-bg, #fbf8f4) 70%) !important;
}
body.is-home .lp2026-airpods__headline {
  background: linear-gradient(180deg, var(--token-text, #2f2a26) 0%, rgba(47,42,38,0.7) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
body.is-home .lp2026-airpods__sub {
  color: rgba(47,42,38,0.6) !important;
}
body.is-home .lp2026-airpods__scroll-hint {
  color: rgba(47,42,38,0.4) !important;
}

/* === Sticky / Figure backdrop === */
body.is-home .lp2026-airpods__sticky {
  background: radial-gradient(ellipse 60% 80% at 70% center, rgba(217, 48, 31, 0.04), transparent 70%) !important;
}

/* r104o: 写真背景は元画像レベルで HP cream に塗替済み → CSS filter/blend 不要 */
body.is-home .lp2026-airpods__photo {
  background-color: var(--token-bg, #fbf8f4) !important;
}
body.is-home .lp2026-airpods__photo img {
  -webkit-mask-image: none !important;
          mask-image: none !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  transform: translateZ(0);
  will-change: transform;
}

/* === Skeleton: 白線 → 暗線 === */
body.is-home .lp2026-airpods__bones .bone {
  stroke: rgba(47,42,38,0.85) !important;
}
body.is-home .lp2026-airpods__skeleton .ref-line {
  stroke: rgba(47,42,38,0.22) !important;
}

/* === Step label === */
body.is-home .lp2026-airpods__step-label {
  color: var(--color-primary, #cf2f2f) !important;
}

/* === Text Panel: 白text → 暗text === */
body.is-home .lp2026-airpods__text-step {
  color: var(--color-primary, #cf2f2f) !important;
}
body.is-home .lp2026-airpods__text-heading {
  color: var(--token-text, #2f2a26) !important;
}
body.is-home .lp2026-airpods__text-body {
  color: rgba(47,42,38,0.65) !important;
}

/* === Callouts: dark on white === */
body.is-home .lp2026-airpods__callout {
  background: rgba(255,255,255,0.98) !important;
  color: #2f2a26 !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18) !important;
}
body.is-home .lp2026-airpods__callout::before {
  background: rgba(47,42,38,0.4) !important;
}
body.is-home .lp2026-airpods__callout--alert {
  background: var(--color-primary, #cf2f2f) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 24px rgba(207,47,47,0.35) !important;
}
body.is-home .lp2026-airpods__callout--alert::before {
  background: rgba(207,47,47,0.45) !important;
}

/* === FRONT/SIDE toggle: 白テーマ用 === */
body.is-home .lp2026-airpods__view-toggle {
  background: rgba(47,42,38,0.06) !important;
  border-color: rgba(47,42,38,0.12) !important;
}
body.is-home .lp2026-airpods__view-toggle button {
  color: rgba(47,42,38,0.5) !important;
}
body.is-home .lp2026-airpods__view-toggle button:hover {
  color: rgba(47,42,38,0.95) !important;
}
body.is-home .lp2026-airpods__view-toggle button.is-active {
  background: var(--color-primary, #cf2f2f) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(207,47,47,0.45) !important;
}

/* === Phones block: dark bg → cream === */
body.is-home .lp2026-airpods__phones-block {
  background: linear-gradient(180deg, #ffffff 0%, #fcf7ef 100%) !important;
}
body.is-home .lp2026-airpods__phones-headline {
  color: var(--token-text, #2f2a26) !important;
}
body.is-home .lp2026-airpods__phone {
  background: #2f2a26 !important;
  box-shadow:
    0 24px 64px rgba(207,47,47,0.18),
    0 0 0 1px rgba(47,42,38,0.08) !important;
}
body.is-home .lp2026-airpods__phone-num {
  color: rgba(47,42,38,0.4) !important;
}

/* === Close block: dark bg → cream === */
body.is-home .lp2026-airpods__close {
  background: radial-gradient(ellipse at center, #fcf7ef 0%, #ffffff 80%) !important;
}
body.is-home .lp2026-airpods__conclusion {
  color: var(--token-text, #2f2a26) !important;
}
body.is-home .lp2026-airpods__accent {
  color: var(--color-primary, #cf2f2f) !important;
}
body.is-home .lp2026-airpods__conclusion-sub {
  color: rgba(47,42,38,0.65) !important;
}

/* =============================================================
   r58: AI section — scroll で FRONT→SIDE 自動切替 + 線白 + flow text
   ============================================================= */

/* toggle ボタンを完全非表示 (scroll が代わりに切替える) */
body.is-home .lp2026-airpods__view-toggle { display: none !important; }

/* ストーリーを 500vh に拡張 (pin range 400vh) */
body.is-home .lp2026-airpods__story { height: 500vh !important; }

/* 骨格ラインを白に */
body.is-home .lp2026-airpods__bones .bone {
  stroke: rgba(255,255,255,0.95) !important;
  stroke-width: 2.5 !important;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.15));
}
body.is-home .lp2026-airpods__skeleton .ref-line {
  stroke: rgba(255,255,255,0.55) !important;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.12));
}

/* 既存 text-panel (固定左) を非表示 — flow text が代替 */
body.is-home .lp2026-airpods__text-panel { display: none !important; }

/* === Flow Text: スクロールで下から上に流れる左右交互 === */
body.is-home .lp2026-airpods__flow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
body.is-home .lp2026-airpods__flow-block {
  position: absolute;
  top: var(--top, 50vh);
  width: min(30vw, 380px);
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
body.is-home .lp2026-airpods__flow-block.is-flow-in {
  opacity: 1;
  transform: translateY(0);
}
body.is-home .lp2026-airpods__flow-block--left {
  left: clamp(20px, 5vw, 80px);
}
body.is-home .lp2026-airpods__flow-block--right {
  right: clamp(20px, 5vw, 80px);
  text-align: right;
}
body.is-home .lp2026-airpods__flow-block .lp2026-airpods__text-step {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary, #cf2f2f);
  margin-bottom: 16px;
}
body.is-home .lp2026-airpods__flow-block .lp2026-airpods__text-heading {
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--token-text, #2f2a26);
  margin: 0 0 16px 0;
}
body.is-home .lp2026-airpods__flow-block .lp2026-airpods__text-body {
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(47,42,38,0.65);
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 900px) {
  body.is-home .lp2026-airpods__flow-block {
    width: min(80vw, 320px);
  }
  body.is-home .lp2026-airpods__flow-block--left { left: 6vw; }
  body.is-home .lp2026-airpods__flow-block--right { right: 6vw; }
}

/* r59: flow-block 内の画像 (228 check 等) */
body.is-home .lp2026-airpods__flow-img {
  display: block;
  width: 100%;
  margin: 14px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
body.is-home .lp2026-airpods__flow-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* r60: Sportip feedback gallery (2x2 grid on desktop, stack on mobile) */
body.is-home .lp2026-airpods__feedback-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.is-home .lp2026-airpods__feedback-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
body.is-home .lp2026-airpods__feedback-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
}
body.is-home .lp2026-airpods__feedback-item img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  body.is-home .lp2026-airpods__feedback-gallery {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   r61: Flow phase → ランドマーク sequential reveal 改善
   - dots phase: dots だけ visible (lines はまだ)
   - bones phase: lines が draw される
   - 既存の is-detect-in は両方トリガーするので、別 class で分離
   ============================================================= */

/* dots だけ表示する phase */
body.is-home .lp2026-airpods.is-dots-in .lp2026-airpods__dots .dot {
  transform: scale(1);
  opacity: 1;
}
/* bones を draw する phase (既存 is-detect-in と同じだが残しておく) */
body.is-home .lp2026-airpods.is-bones-in .lp2026-airpods__bones .bone {
  stroke-dashoffset: 0;
}

/* dots の transition delay (cascade) を保持 */
body.is-home .lp2026-airpods.is-dots-in:not(.is-bones-in) .lp2026-airpods__bones .bone {
  stroke-dashoffset: 600; /* lines はまだ非表示 */
}

/* r62: Sportip feedback layout — 1/2/3 horizontal + 4 single column */
body.is-home .lp2026-airpods__feedback-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
  max-width: 1100px;
  margin: 0 auto 48px;
  padding: 0 24px;
  align-items: flex-end;
}
body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item {
  margin: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
}
body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.15));
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item:hover img {
  transform: translateY(-4px);
}
body.is-home .lp2026-airpods__feedback-ba {
  margin: 0 auto;
  max-width: 700px;
  padding: 0 24px;
  text-align: center;
}
body.is-home .lp2026-airpods__feedback-ba img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.15));
}
body.is-home .lp2026-airpods__feedback-ba figcaption {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--token-text, #2f2a26);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  body.is-home .lp2026-airpods__feedback-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* r63: 写真を最初から表示 (テキストより先に出るように) */
body.is-home .lp2026-airpods__photo img {
  opacity: 1 !important;
}

/* 2026-06-17: 図はセクション(pin)がアクティブな間だけ表示する。
   pin 起動前(手前の REASON / AI hero)や通過後(BA / strengths)で、通常フローの
   sticky 内に置かれた図が見えてしまう("AIセクションに到達する前に画像が現れる")のを防ぐ。
   progressive enhancement: lp2026-motion.js が初期化時に is-airpods-armed を付与した
   ときだけ opacity:0 を既定にする → JS 無効時は figure を常時表示のまま(消えない)。
   ScrollTrigger の onToggle/onUpdate が is-airpods-active を付与・除去する。 */
body.is-home .lp2026-airpods.is-airpods-armed .lp2026-airpods__figure {
  opacity: 0;
  transition: opacity .45s ease;
}
body.is-home .lp2026-airpods.is-airpods-armed.is-airpods-active .lp2026-airpods__figure {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  body.is-home .lp2026-airpods__figure { opacity: 1 !important; }
}

/* =============================================================
   r68: AI section SP レスポンシブ強化
   ============================================================= */
@media (max-width: 768px) {
  /* hero block */
  body.is-home .lp2026-airpods__headline {
    font-size: clamp(36px, 9vw, 56px) !important;
    line-height: 1.1 !important;
  }
  body.is-home .lp2026-airpods__sub {
    font-size: 14px !important;
    padding: 0 24px;
  }
  /* r99: figure を画面幅 80% に (aspect 維持で迫力 UP) */
  body.is-home .lp2026-airpods__figure {
    width: 80vw !important;
    max-width: 520px !important;
    height: auto !important;
    aspect-ratio: 887 / 1774 !important;
    margin-inline: auto !important;
  }
  /* flow text を画像と被らないよう viewport 全幅で */
  body.is-home .lp2026-airpods__flow-block {
    width: min(86vw, 360px) !important;
    text-align: center !important;
  }
  body.is-home .lp2026-airpods__flow-block--left,
  body.is-home .lp2026-airpods__flow-block--right {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(48px);
  }
  body.is-home .lp2026-airpods__flow-block.is-flow-in {
    transform: translateX(-50%) translateY(0) !important;
  }
  body.is-home .lp2026-airpods__flow-block .lp2026-airpods__text-heading {
    font-size: 28px !important;
  }
  /* callout SP: より小さく */
  body.is-home .lp2026-airpods__callout {
    font-size: 10px !important;
    padding: 6px 10px !important;
    min-width: 90px !important;
  }
  body.is-home .lp2026-airpods__callout-num { font-size: 13px !important; }
  body.is-home .lp2026-airpods__callout-label { font-size: 8px !important; }
  /* callout の連結線を短く */
  body.is-home .lp2026-airpods__callout::before { width: 12px !important; }
  body.is-home .lp2026-airpods__callout--left { right: calc(100% + 8px) !important; }
  body.is-home .lp2026-airpods__callout--right { left: calc(100% + 8px) !important; }
  body.is-home .lp2026-airpods__callout--left::before { right: -12px !important; }
  body.is-home .lp2026-airpods__callout--right::before { left: -12px !important; }
  /* SP: 頭(1番目)と肩(2番目)のカードが近接して重なるため縦間隔を広げる(--yはインライン指定なので!important) */
  body.is-home .lp2026-airpods__callout:nth-child(1) { --y: 9% !important; }
  body.is-home .lp2026-airpods__callout:nth-child(2) { --y: 25% !important; }
  /* conclusion / phones-headline SP */
  body.is-home .lp2026-airpods__conclusion {
    font-size: clamp(32px, 8vw, 50px) !important;
  }
  body.is-home .lp2026-airpods__phones-headline {
    font-size: clamp(22px, 6vw, 32px) !important;
  }
}

/* r69: feedback-row 画像の高さを物理的に揃える */
body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item img {
  max-width: 100%;
  max-height: clamp(280px, 38vw, 480px);
  height: clamp(280px, 38vw, 480px) !important;
  width: auto !important;
  object-fit: contain;
}

/* =============================================================
   r78: Sportip 4枚に hover ツールチップ (SEO キーワード散布)
   ============================================================= */
body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item,
body.is-home .lp2026-airpods__feedback-ba {
  position: relative;
  cursor: help;
  outline: none;
}
body.is-home .lp2026-airpods__feedback-tooltip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  width: min(86%, 280px);
  padding: 18px 20px;
  background: rgba(20, 20, 20, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12.5px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(.2,.8,.2,1);
  z-index: 10;
  text-align: left;
  font-weight: 400;
}
body.is-home .lp2026-airpods__feedback-tooltip strong {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #ff8e6e;
  letter-spacing: 0.04em;
  font-weight: 700;
}
body.is-home .lp2026-airpods__feedback-tooltip b {
  color: #ffd6c6;
  font-weight: 600;
}
body.is-home .lp2026-airpods__feedback-tooltip--ba {
  width: min(70%, 420px);
  font-size: 13px;
}
body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item:hover .lp2026-airpods__feedback-tooltip,
body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item:focus-visible .lp2026-airpods__feedback-tooltip,
body.is-home .lp2026-airpods__feedback-ba:hover .lp2026-airpods__feedback-tooltip,
body.is-home .lp2026-airpods__feedback-ba:focus-visible .lp2026-airpods__feedback-tooltip {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* r97: タッチ端末はタップで tooltip を toggle (JS が is-tooltip-active を付与) */
body.is-home .lp2026-airpods__feedback-row .lp2026-airpods__feedback-item.is-tooltip-active .lp2026-airpods__feedback-tooltip,
body.is-home .lp2026-airpods__feedback-ba.is-tooltip-active .lp2026-airpods__feedback-tooltip {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

/* =============================================================
   r91: SP レスポンシブ調整 — 全体可読性 / バランス改善
   ============================================================= */
.sp-only { display: none; }
.pc-only { display: inline; }
@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
  /* FV sub: 背景画像と被って薄かったので、白半透明バッジで囲って可読性 UP
     r104r: width fit-content でテキスト幅と完全一致 (右側の空白除去) */
  body.is-home .lp2026-fv__sub {
    display: inline-block !important;
    width: fit-content !important;
    max-width: 92vw !important;
    background: rgba(255,255,255,0.72) !important;
    color: #1a1a1a !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-weight: 500 !important;
  }

  /* r101: AI section flow text を画面左に配置、背景枠 off (人物に重ねず) */
  body.is-home .lp2026-airpods__flow-block {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    width: 36vw !important;
    text-align: left !important;
  }
  body.is-home .lp2026-airpods__flow-block--left,
  body.is-home .lp2026-airpods__flow-block--right {
    left: 4vw !important;
    right: auto !important;
    transform: translateY(48px) !important;
  }
  body.is-home .lp2026-airpods__flow-block.is-flow-in {
    transform: translateY(0) !important;
  }
  body.is-home .lp2026-airpods__flow-block .lp2026-airpods__text-heading {
    color: #2f2a26 !important;
    font-size: clamp(15px, 4vw, 22px) !important;
    line-height: 1.35 !important;
    text-shadow: 0 1px 6px rgba(255,255,255,0.9) !important;
  }
  /* r104: hero と figure (story) の余白を詰める + SCROLL ヒント位置調整 */
  body.is-home .lp2026-airpods__hero {
    padding-top: clamp(40px, 8vw, 64px) !important;
    padding-bottom: clamp(72px, 16vw, 120px) !important; /* SCROLL ヒント分の余白を確保 */
    min-height: auto !important;
    position: relative !important;
  }
  /* SCROLL ヒントを完全に hero の下端 fixed-bottom に + text の下に余裕 */
  body.is-home .lp2026-airpods__scroll-hint {
    bottom: 20px !important;
    top: auto !important;
    margin-top: 0 !important;
  }
  /* sub テキストの下に最低限の余白を保証 (SCROLL と重ならない) */
  body.is-home .lp2026-airpods__sub {
    margin-bottom: 16px !important;
  }
  body.is-home .lp2026-airpods__story {
    height: 380vh !important; /* flow-text の --top: 355vh 等を内包するため戻す */
  }
  /* r114: SP は pin 280vh と短いので side/sagittal の --top を story(380vh) 内に収める。
     PC は inline --top(330/380vh) で間隔を大きく取り、図アニメは geometry 駆動なので両者とも text と同期する。 */
  body.is-home .lp2026-airpods__flow-block[data-flow-phase="side"] { --top: 270vh !important; }
  body.is-home .lp2026-airpods__flow-block[data-flow-phase="sagittal"] { --top: 315vh !important; }
  /* r104n: SP sticky 100svh + figure 大型化 (svh = iOS URL バー伸縮しない small viewport height) */
  body.is-home .lp2026-airpods__sticky {
    padding-top: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100vh !important;
    height: 100svh !important; /* iOS で安定 (URL バーで再計算しない) */
    transform: translateZ(0);
    will-change: transform;
    contain: layout style paint;
  }
  /* figure: 高さ基準で viewport をしっかり埋める。svh で iOS jank 回避 */
  /* r-ai-shift: 上の固定ヘッダーで頭が切れるため、図全体(画像+骨格+数値)を少し下げ、
     高さもわずかに詰めて下の固定CTAバーとの間に収める。画像・骨格・コールアウトは
     figure の子要素なので一体で移動し、スクロールアニメーションのズレは生じない。 */
  body.is-home .lp2026-airpods__figure {
    height: 84vh !important;
    height: 84svh !important; /* iOS Safari URL バー伸縮の影響なし */
    width: auto !important;
    max-width: 92vw !important;
    aspect-ratio: 887 / 1774 !important;
    margin: 0 auto !important;
    transform: translate(0, 4vh) translateZ(0);
    transform: translate(0, 4svh) translateZ(0); /* 図を少し下へ */
    will-change: transform;
  }
  /* story と phones-block (解析結果) の間の隙間を詰める */
  body.is-home .lp2026-airpods__phones-block {
    padding-block: clamp(28px, 6vw, 56px) !important;
    margin-top: 0 !important;
  }
  body.is-home .lp2026-airpods__phones-headline {
    margin-top: 0 !important;
    margin-bottom: clamp(24px, 5vw, 40px) !important;
  }
  body.is-home .lp2026-airpods__close {
    padding-block: clamp(40px, 8vw, 72px) !important;
  }

  /* r99 → r104: SP callout を視認できる大きさに拡大 (font/min-width 引上げ) */
  body.is-home .lp2026-airpods__callout {
    font-size: 14px !important;
    padding: 10px 14px !important;
    min-width: 104px !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.30) !important;
  }
  body.is-home .lp2026-airpods__callout-num { font-size: 20px !important; font-weight: 700 !important; }
  body.is-home .lp2026-airpods__callout-label { font-size: 10px !important; letter-spacing: 0.04em !important; }
  body.is-home .lp2026-airpods__callout-num em { font-size: 13px !important; }
  body.is-home .lp2026-airpods__callout--left {
    right: auto !important;
    left: 2% !important;
  }
  body.is-home .lp2026-airpods__callout--right {
    left: auto !important;
    right: 2% !important;
  }
  /* 連結線は figure 内 overlay なので非表示 */
  body.is-home .lp2026-airpods__callout::before {
    display: none !important;
  }

  /* phones-headline: SP で読点位置で綺麗に改行されるよう抑える */
  body.is-home .lp2026-airpods__phones-headline {
    font-size: clamp(20px, 5.4vw, 28px) !important;
    padding: 0 16px;
    line-height: 1.45 !important;
    letter-spacing: -0.01em !important;
  }
}

/* =============================================================
   r89: callout の縦位置を中央基準 (= ランドマーク y) に合わせる
   - 既存は top: var(--y) で「上端」基準だったため line が下にズレていた
   ============================================================= */
body.is-home .lp2026-airpods__callout {
  transform: translateY(calc(-50% + 8px)) scale(0.92);
}
body.is-home .lp2026-airpods.is-measure-in .lp2026-airpods__callout {
  transform: translateY(-50%) scale(1);
}
/* side view も同じ — !important で前回の上書きを優先 */
body.is-home .lp2026-airpods__view--side .lp2026-airpods__callout {
  transform: translateY(calc(-50% + 8px)) scale(0.92) !important;
}
body.is-home .lp2026-airpods.is-side-measure-in .lp2026-airpods__view--side .lp2026-airpods__callout {
  transform: translateY(-50%) scale(1) !important;
}

/* =============================================================
   r88/r90: 強み 5 枚カード — 画像縦横比を保持 + 全カード高さ統一 + 縮小
   - aspect-ratio 3/4 で全カードの高さを揃える
   - object-fit: contain で元画像の縦横比を維持 (引き伸ばし無し)
   - 余白は dark gradient で埋めて統一感
   - r90: 全体を 2/3 サイズに縮小 (グリッド max-width を絞る)
   ============================================================= */
body.is-home .lp2026-strengths__bar {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  max-width: min(1200px, 92vw) !important;
  margin-inline: auto !important;
  gap: clamp(12px, 1.4vw, 20px) !important;
  padding: 0 clamp(16px, 3vw, 48px) !important;
}
body.is-home .lp2026-strengths__bar > li {
  aspect-ratio: 4 / 5 !important;
  min-height: 0 !important;
  width: 100% !important;
  padding: 0 !important;
  border: none !important;
  background: #1c1816 !important;
  opacity: 1 !important;
  scale: 1 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}
body.is-home .lp2026-strengths__media {
  background: #1c1816;
}
body.is-home .lp2026-strengths__media img {
  object-fit: cover !important;
  object-position: center 30% !important;
  filter: brightness(0.62) saturate(0.9) !important;
}
/* num はカード右上に大きめ + drop shadow で読みやすく */
body.is-home .lp2026-strengths__num {
  top: clamp(10px, 1.2vw, 18px) !important;
  right: clamp(10px, 1.2vw, 18px) !important;
  font-size: clamp(20px, 2.2vw, 32px) !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55) !important;
}
/* h3 はカード下部に明示配置 + 多行も読めるよう調整 (r104: SP/PC とも font-size 引き上げ) */
body.is-home .lp2026-strengths__bar > li h3 {
  margin: 0 clamp(6px, 0.8vw, 10px) clamp(14px, 1.6vw, 24px) !important;
  padding-left: clamp(6px, 0.9vw, 10px) !important;
  padding-right: clamp(6px, 0.9vw, 10px) !important;
  font-size: clamp(13px, 1.35vw, 16px) !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7) !important;
}

/* r95: pinned モードを完全廃止 — JS 側でも early-return 済み。
   万一 .lp2026-strengths--pinned が付与された場合も同じ grid を流用 */
body.is-home .lp2026-strengths--pinned {
  height: auto !important;
  min-height: 0 !important;
  position: relative !important;
}
body.is-home .lp2026-strengths--pinned .lp2026-strengths__bar {
  width: 100% !important;
  transform: none !important;
  justify-content: initial !important;
}

@media (max-width: 768px) {
  /* r-strength-sp: 2列・縦長(3:4)だと特に 01 の長文ツールチップが収まらないため、
     1列・横長カードに変更してテキストの収まりを確保する。 */
  body.is-home .lp2026-strengths__bar {
    grid-template-columns: 1fr !important;
    max-width: min(460px, 94vw) !important;
    gap: 14px !important;
  }
  body.is-home .lp2026-strengths__bar > li {
    aspect-ratio: 3 / 2 !important;   /* 横長 */
  }
  /* 横長で横幅に余裕ができたので、ツールチップ本文を読みやすいサイズに引き上げ。
     先頭(強調見出し)が切れないよう上揃え＋はみ出し時はスクロール。 */
  body.is-home .lp2026-strengths__tooltip {
    justify-content: center;
    padding: 16px 18px;
    font-size: 13px;
    line-height: 1.6;
  }
  body.is-home .lp2026-strengths__tooltip strong {
    font-size: 13.5px;
    margin-bottom: 6px;
  }
}

/* タブレット帯 (769–1023px): 5列だとカードが狭く h3 が3行に折り返すため3列に */
@media (min-width: 769px) and (max-width: 1023px) {
  body.is-home .lp2026-strengths__bar {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* =============================================================
   r80: AI section side phase 段階制御
   side view 内の dots / bones / callouts は既存 is-* に
   左右されず、is-side-dots-in / is-side-bones-in /
   is-side-measure-in で独立 reveal
   ============================================================= */
body.is-home .lp2026-airpods__view--side .lp2026-airpods__dots .dot {
  transform: scale(0) !important;
  opacity: 0 !important;
}
body.is-home .lp2026-airpods.is-side-dots-in .lp2026-airpods__view--side .lp2026-airpods__dots .dot {
  transform: scale(1) !important;
  opacity: 1 !important;
}
body.is-home .lp2026-airpods__view--side .lp2026-airpods__bones .bone {
  stroke-dashoffset: 600 !important;
}
body.is-home .lp2026-airpods.is-side-bones-in .lp2026-airpods__view--side .lp2026-airpods__bones .bone {
  stroke-dashoffset: 0 !important;
}
body.is-home .lp2026-airpods__view--side .lp2026-airpods__callout {
  opacity: 0 !important;
  /* r93: r89 の中央基準 (top:--y の上端基準を打ち消す) を維持 */
  transform: translateY(calc(-50% + 8px)) scale(0.92) !important;
}
body.is-home .lp2026-airpods.is-side-measure-in .lp2026-airpods__view--side .lp2026-airpods__callout {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
}
/* r87: side callout も上から順に cascade in (front と同じ) */
body.is-home .lp2026-airpods.is-side-measure-in .lp2026-airpods__view--side .lp2026-airpods__callout:nth-child(1) { transition-delay: 0.05s !important; }
body.is-home .lp2026-airpods.is-side-measure-in .lp2026-airpods__view--side .lp2026-airpods__callout:nth-child(2) { transition-delay: 0.18s !important; }
body.is-home .lp2026-airpods.is-side-measure-in .lp2026-airpods__view--side .lp2026-airpods__callout:nth-child(3) { transition-delay: 0.30s !important; }
body.is-home .lp2026-airpods.is-side-measure-in .lp2026-airpods__view--side .lp2026-airpods__callout:nth-child(4) { transition-delay: 0.42s !important; }
body.is-home .lp2026-airpods.is-side-measure-in .lp2026-airpods__view--side .lp2026-airpods__callout:nth-child(5) { transition-delay: 0.55s !important; }

/* r87: ゴールデンライン (足首基準の理想姿勢ライン) を side phase 中に表示 */
body.is-home .lp2026-airpods.is-side-in .lp2026-airpods__view--side .ref-line--golden,
body.is-home .lp2026-airpods.is-side-dots-in .lp2026-airpods__view--side .ref-line--golden,
body.is-home .lp2026-airpods.is-side-bones-in .lp2026-airpods__view--side .ref-line--golden,
body.is-home .lp2026-airpods.is-side-measure-in .lp2026-airpods__view--side .ref-line--golden {
  opacity: 1 !important;
  stroke: rgba(232, 168, 36, 0.85) !important;
  stroke-width: 2 !important;
  filter: drop-shadow(0 0 6px rgba(232,168,36,0.35)) !important;
}

/* ============================================================
   r103: 細部の見栄え調整 (CAMPAIGN btn / PLAN 余白 / CTA 幅)
============================================================ */

/* CAMPAIGN カード: 「詳しくはこちら」ボタンを横幅いっぱい + 中央テキストに */
body.is-home .lp2026-cnn__campaign .btn {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-top: auto !important;
}

/* PLAN セクション SP: grid-auto-rows: 1fr による余白を解除 */
@media (max-width: 768px) {
  body.is-home .lp2026-pfc__grid,
  body.is-home .lp2026-ms__grid,
  body.is-home .lp2026-why__grid,
  body.is-home .lp2026-merit__grid {
    grid-auto-rows: auto !important;
  }
  body.is-home .lp2026-cnn__campaign,
  body.is-home .lp2026-cnn__news,
  body.is-home .lp2026-cnn__reason,
  body.is-home .lp2026-ms__menu,
  body.is-home .lp2026-ms__symptom,
  body.is-home .lp2026-mvf__merit,
  body.is-home .lp2026-mvf__voice,
  body.is-home .lp2026-mvf__flow,
  body.is-home .lp2026-pfc__plan,
  body.is-home .lp2026-pfc__faq,
  body.is-home .lp2026-pfc__cta {
    height: auto !important;
  }
}

/* CAMPAIGN を画像 1 枚リンクとして表示 (アスペクト維持・余白なし) */
body.is-home a.lp2026-cnn__campaign--image {
  display: block !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--token-r-card, 24px);
  background: transparent !important;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
body.is-home a.lp2026-cnn__campaign--image:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 45, 30, 0.10);
}
body.is-home a.lp2026-cnn__campaign--image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================================
   r104: 採用情報セクション再構築 (大型タイトル + 目立つキャッチ + CTA)
============================================================ */
body.is-home .lp2026-recruit.lp2026-recruit--v2 {
  background: linear-gradient(135deg, #1a1410 0%, #2a1d15 100%);
  position: relative;
  overflow: hidden;
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 80px);
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__eyebrow {
  color: #d4a857 !important;
  font-size: 12px !important;
  letter-spacing: 0.22em !important;
  margin: 0 0 16px !important;
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__title {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 28px;
}
/* 店舗ページの採用見出しはSEO用の長文(○○院採用情報｜柔道整復師…の求人)のため、
   TOPの短い見出しと同じ巨大サイズだと崩れる。長文用に縮小してキャッチ・CTAと両立させる */
body.is-home .lp2026-recruit--v2 .lp2026-recruit__title[data-shop-replace="recruitHeading"] {
  font-size: clamp(19px, 2.1vw, 28px) !important;
  letter-spacing: 0.01em !important;
  line-height: 1.45 !important;
  margin: 0 0 20px !important;
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__catch {
  margin: 0 0 36px;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__catch-line1 {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  color: #d4a857;
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__catch-line2 {
  display: block;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__btn {
  display: inline-flex !important;
  align-items: center;
  background: #d4a857 !important;
  color: #1a1410 !important;
  border: none !important;
  font-weight: 700;
  padding: 16px 36px !important;
  font-size: 16px !important;
  letter-spacing: 0.08em;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(212, 168, 87, 0.25);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 168, 87, 0.35);
  background: #e0b865 !important;
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* r104: 旧 ::after の "WE ARE HIRING" badge を v2 で無効化 (HTML span と重複していた) */
body.is-home .lp2026-recruit--v2 .lp2026-recruit__visual::after {
  content: none !important;
  display: none !important;
}
body.is-home .lp2026-recruit--v2 .lp2026-recruit__visual-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d4a857;
  color: #1a1410;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  /* r104g: Apple 風 — 中央寄せ、余白リズム、抑えた配色、コンパクト pill ボタン */
  body.is-home .lp2026-recruit.lp2026-recruit--v2 {
    background: linear-gradient(180deg, #1a1410 0%, #221912 100%) !important;
    padding-block: 0 !important;
  }
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 64px 24px !important;
    text-align: center !important;
    max-width: 100%;
  }
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__copy {
    order: 0 !important;
    text-align: center !important;
    margin-bottom: 0 !important;
  }
  /* CTA 上下マージン均等 (catch との距離 = image との距離) */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__copy .lp2026-recruit__btn {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__visual {
    order: 1 !important;
    margin: 38px 0 0 !important;
    aspect-ratio: auto !important;
    max-width: 100% !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
  }
  /* eyebrow を控えめに */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__eyebrow {
    font-size: 11px !important;
    letter-spacing: 0.32em !important;
    margin: 0 0 14px !important;
    color: #d4a857 !important;
    opacity: 0.85;
  }
  /* タイトル — 太く大きく、文字詰めで洗練 */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__title {
    font-size: 40px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.04em !important;
    font-weight: 700 !important;
    margin: 0 0 24px !important;
    color: #fff !important;
  }
  /* 店舗ページの長いSEO見出しはSPでも縮小 */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__title[data-shop-replace="recruitHeading"] {
    font-size: clamp(17px, 4.5vw, 21px) !important;
    line-height: 1.5 !important;
    letter-spacing: 0.01em !important;
    margin: 0 0 16px !important;
  }
  /* キャッチ全体 — 中央 + 余白 (catch の下マージン削除、ボタン側で均等管理) */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__catch {
    margin: 0 !important;
  }
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__catch-line1 {
    display: block !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    color: #d4a857 !important;
    margin-bottom: 12px !important;
  }
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__catch-line2 {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    letter-spacing: 0.03em !important;
    color: rgba(255,255,255,0.78) !important;
    font-weight: 400 !important;
  }
  /* CTA — Apple 風 細身 pill (固定幅、フル幅にしない) */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__btn {
    display: inline-flex !important;
    width: auto !important;
    min-width: 200px !important;
    padding: 12px 28px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    border-radius: 999px !important;
    background: #d4a857 !important;
    color: #1a1410 !important;
    box-shadow: 0 6px 20px rgba(212, 168, 87, 0.25) !important;
    margin: 0 auto !important;
  }
  /* バッジを画像左上に控えめに */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__visual-badge {
    top: 12px !important;
    left: 12px !important;
    font-size: 10px !important;
    padding: 5px 12px !important;
    background: rgba(212, 168, 87, 0.92) !important;
    letter-spacing: 0.15em !important;
  }
  /* 画像と CTA の縦リズム — ボタンを少し上げ、画像との間隔を確保 */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__copy .lp2026-recruit__btn {
    margin-top: -8px !important;
    margin-bottom: 0 !important;
  }
  /* SP: グループ写真を 4:3 で切らず全体表示 */
  body.is-home .lp2026-recruit--v2 .lp2026-recruit__visual img {
    border-radius: inherit !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* ============================================================
   r104: BODY MAP ホバープレビューパネル (右側固定 aside)
============================================================ */
body.is-home .lp2026-ms__symptom-preview {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: clamp(20px, 2vw, 28px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: calc(var(--header-h, 64px) + 20px);
}
body.is-home .lp2026-ms__symptom-preview-placeholder {
  text-align: center;
  color: var(--color-text-sub);
}
body.is-home .lp2026-ms__symptom-preview-placeholder-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 12px 0 8px;
  color: var(--color-text);
}
body.is-home .lp2026-ms__symptom-preview-placeholder-desc {
  font-size: 0.875rem;
  line-height: 1.7;
}
body.is-home .lp2026-ms__symptom-preview-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 8px 0 12px;
  color: var(--color-text);
}
body.is-home .lp2026-ms__symptom-preview-intro {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-sub);
  margin: 0 0 20px;
}
body.is-home .lp2026-ms__symptom-preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
body.is-home .lp2026-ms__symptom-preview-list li a,
body.is-home .lp2026-ms__symptom-preview-list li span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(80, 45, 30, 0.04);
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.875rem;
  transition: background .2s ease, transform .2s ease;
}
body.is-home .lp2026-ms__symptom-preview-list li a:hover {
  background: rgba(195, 70, 50, 0.08);
  transform: translateX(2px);
}
body.is-home .lp2026-ms__symptom-preview-list .badge {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
}
body.is-home .lp2026-ms__symptom-preview-list .badge--soon {
  background: var(--color-border);
  color: var(--color-text-sub);
}
/* hover 中はホットスポットを強調 */
body.is-home .body-map__hotspot.is-active {
  background: var(--color-primary) !important;
  color: #fff !important;
  transform: translate(-50%, -50%) scale(1.15) !important;
  z-index: 5;
}
/* SP: 縦並びに切り替え + preview を body-map の下に */
@media (max-width: 768px) {
  body.is-home .lp2026-ms__symptom-preview {
    position: static;
    min-height: auto;
    margin-top: 16px;
  }
}

/* r104: PLAN article 自体のはみ出し制約 */
body.is-home .lp2026-pfc__plan {
  min-width: 0;
  overflow: hidden;
}
body.is-home .lp2026-mvf--2col .lp2026-mvf__grid,
body.is-home .lp2026-mvf__grid {
  min-width: 0;
}
body.is-home .lp2026-pfc__plan-list {
  min-width: 0;
}

/* ============================================================
   r104: MENU + PLAN 2col セクションの縦長アンバランス解消
   - MENU 画像を控えめな高さに固定
   - PLAN リストを 1col (full-width 横長カード) に変更
   - PLAN カード内を横並びレイアウト (badge/title 左 → price → btn 右)
============================================================ */
@media (min-width: 769px) {
  /* MENU 画像: 縦長になりすぎないよう抑える */
  body.is-home .lp2026-ms__menu-visual {
    height: clamp(180px, 18vw, 240px) !important;
    margin-bottom: 20px !important;
  }
  /* PLAN リスト: 1 カラム (full-width 横長カード) */
  body.is-home .lp2026-pfc__plan-list {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  /* PLAN カード内: 2x2 グリッドで全幅に均等配置
     (左上:タイトル / 右上:バッジ / 左下:価格 / 右下:CTA) — 左寄り・右余白を解消 */
  body.is-home .lp2026-pfc__plan-card {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "title badge"
      "price cta" !important;
    align-items: center !important;
    column-gap: 28px !important;
    row-gap: 14px !important;
    padding: 26px 32px !important;
    text-align: left !important;
    position: relative !important;
    min-width: 0;
    overflow: visible !important; /* 「人気No.1」タグが切れないよう */
  }
  /* タイトル: 左上 */
  body.is-home .lp2026-pfc__plan-card h3 {
    grid-area: title;
    margin: 0 !important;
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    min-width: 0;
  }
  body.is-home .lp2026-pfc__plan-card h3 small {
    display: block;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    color: var(--color-text-sub) !important;
    margin-top: 5px;
    white-space: nowrap !important;
  }
  /* 価格: 左下 (主役なので大きく) */
  body.is-home .lp2026-pfc__plan-card .lp2026-pfc__plan-price {
    grid-area: price;
    margin: 0 !important;
    font-size: 1.75rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
  }
  body.is-home .lp2026-pfc__plan-card .lp2026-pfc__plan-price small {
    font-size: 0.85rem !important;
    color: var(--color-text-sub) !important;
    font-weight: 400 !important;
    margin-left: 2px !important;
  }
  /* バッジ: 右上 */
  body.is-home .lp2026-pfc__plan-card .lp2026-pfc__plan-initial,
  body.is-home .lp2026-pfc__plan-card .lp2026-pfc__plan-initial--neutral {
    grid-area: badge;
    justify-self: end;
    margin: 0 !important;
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    display: inline-block;
    border-radius: 6px;
  }
  /* CTA: 右下 */
  body.is-home .lp2026-pfc__plan-card .btn {
    grid-area: cta;
    justify-self: end;
    margin: 0 !important;
    padding: 9px 22px !important;
    font-size: 0.875rem !important;
    white-space: nowrap !important;
  }
  /* 人気No.1 タグ: カード内側 (上端からはみ出さず、しっかり見える位置) */
  body.is-home .lp2026-pfc__plan-tag {
    position: absolute !important;
    top: -12px !important;
    left: 18px !important;
    margin: 0 !important;
    padding: 5px 14px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
  body.is-home .lp2026-pfc__plan-card--featured {
    padding: 30px 26px 24px !important;
    transform: translateY(-2px);
  }
}

/* CTA ボタン: テキスト幅に合わせる (横長すぎ問題) */
body.is-home .lp2026-pfc__cta-btn {
  display: inline-block !important;
  width: auto !important;
  max-width: 100% !important;
  align-self: center !important;
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.is-home .lp2026-pfc__cta {
  text-align: center;
}

/* ============================================================
   r104b: SP / タブレット — セクションの「もっと見る」系ボタンを
   block + width:fit-content + margin auto で確実に中央配置
============================================================ */
@media (max-width: 768px) {
  body.is-home .lp2026-sm__shop-more,
  body.is-home .lp2026-sm__media-more,
  body.is-home .lp2026-ms__menu-more,
  body.is-home .lp2026-ms__symptom-more,
  body.is-home .lp2026-pfc__plan-more {
    display: block !important;
    width: fit-content !important;
    min-width: min(220px, 80vw) !important;
    max-width: 90% !important;
    margin: 16px auto 0 !important;
    padding: 12px 24px !important;
    text-align: center !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    float: none !important;
    box-sizing: border-box !important;
  }
}

/* ============================================================
   Footer Shops Accordion — SEO 内部リンク + UX
   site-overlay.js が動的に注入する .footer-shops のスタイル
   ============================================================ */
.footer-shops {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-shops__details { width: 100%; }
.footer-shops__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  user-select: none;
}
.footer-shops__summary::-webkit-details-marker { display: none; }
.footer-shops__summary::marker { content: ''; }
.footer-shops__summary:hover { color: var(--color-primary); }
.footer-shops__summary:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 4px; border-radius: 4px; }
.footer-shops__arrow {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.2s var(--ease-out, ease);
}
.footer-shops__details[open] .footer-shops__arrow { transform: rotate(180deg); }
.footer-shops__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px 28px;
  margin-top: 20px;
}
.footer-shops__group { min-width: 0; }
.footer-shops__pref {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-shops__pref small {
  color: rgba(255, 255, 255, 0.40);
  font-weight: 400;
  margin-left: 4px;
  font-size: 10px;
}
.footer-shops__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-shops__links li { font-size: 11.5px; line-height: 1.55; }
.footer-shops__links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.15s ease;
  display: inline-block;
}
.footer-shops__links a:hover { color: var(--color-primary); text-decoration: underline; }
.footer-shops__links a:focus-visible { outline: 1px solid var(--color-primary); outline-offset: 2px; border-radius: 2px; }

@media (max-width: 600px) {
  .footer-shops__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .footer-shops__links li { font-size: 11px; }
}

/* ============================================================
   Nearby Shops Section — 店舗ページの footer 直前に挿入
   shop-render.js が動的に注入する .nearby-shops のスタイル
   ============================================================ */
.nearby-shops {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--color-bg-sub, #FAFAF9);
  border-top: 1px solid var(--color-border);
}
.nearby-shops__head {
  text-align: center;
  margin-bottom: clamp(20px, 2vw, 32px);
}
.nearby-shops__eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin: 0 0 8px;
  font-weight: 700;
}
.nearby-shops__title {
  font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.875rem);
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.nearby-shops__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.nearby-shops__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--token-r-card, 24px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nearby-shops__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--token-shadow-card, 0 10px 30px rgba(80,45,30,0.08));
}
.nearby-shops__link {
  display: block;
  padding: 24px;
  text-decoration: none;
  color: var(--color-text);
  height: 100%;
}
.nearby-shops__pref {
  font-size: 10px;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  font-weight: 700;
}
.nearby-shops__name {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--color-text);
}
.nearby-shops__meta {
  font-size: 12px;
  color: var(--color-text-sub);
  margin: 0;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .nearby-shops__card:hover { transform: none; box-shadow: none; }
  .footer-shops__arrow { transition: none; }
}

/* =============================================================
   FV v4 — 3 pattern auto-rotate + Design G trust + pill CTA
   (r106 — 本番カラー/フォント変数に統合)
   ============================================================= */

/* ===== 重要: 13420 行の `[class*="__bg"] { opacity: 0.15 }` を FV だけ無効化 ===== */
body.is-home .lp2026-fv__bg {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ===== Slides (crossfade) ===== */
body.is-home .lp2026-fv--rotator .lp2026-fv__bg { overflow: hidden; }
body.is-home .lp2026-fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: opacity;
}
body.is-home .lp2026-fv__slide.is-active { opacity: 1; }
body.is-home .lp2026-fv__slide picture,
body.is-home .lp2026-fv__slide img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: 70% 35%;
}
body.is-home .lp2026-fv__slide[data-slide="2"] img,
body.is-home .lp2026-fv__slide[data-slide="3"] img {
  object-position: center center;
}
/* preview に合わせて filter を控えめに (既存 1.12/1.15 → 1.05/1.02) */
body.is-home .lp2026-fv--rotator .lp2026-fv__bg img {
  filter: contrast(1.05) saturate(1.02) !important;
  object-position: 70% 35% !important;
}
body.is-home .lp2026-fv--rotator .lp2026-fv__slide[data-slide="2"] img,
body.is-home .lp2026-fv--rotator .lp2026-fv__slide[data-slide="3"] img {
  object-position: center center !important;
}

/* ===== Overlay 強化 (テキスト読みやすく) ===== */
body.is-home .lp2026-fv--rotator .lp2026-fv__overlay {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 1fr auto;
  column-gap: 48px;
  padding-top: calc(var(--header-h, 64px) + 80px);
  padding-bottom: 60px;
}

/* 左下→右上にかけて柔らかいクリームマスク (preview の #f7f3ed を継承) */
body.is-home .lp2026-fv--rotator .lp2026-fv__gradient {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  display: block !important;
  background:
    linear-gradient(180deg,
      rgba(247, 243, 237, 0) 0%,
      rgba(247, 243, 237, 0.04) 50%,
      rgba(247, 243, 237, 0.10) 100%),
    linear-gradient(110deg,
      rgba(247, 243, 237, 0.95) 0%,
      rgba(247, 243, 237, 0.88) 30%,
      rgba(247, 243, 237, 0.55) 55%,
      rgba(247, 243, 237, 0) 78%) !important;
}

/* ===== Title slides (overlap via grid) ===== */
body.is-home .lp2026-fv__title-area {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: end;
  max-width: 720px;
  display: grid;
  position: relative;
  z-index: 2;
}
body.is-home .lp2026-fv__title-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}
body.is-home .lp2026-fv__title-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* キッカー (赤い細字 + 横線) */
body.is-home .lp2026-fv__above-title {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-jp);
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--color-primary);
  margin-bottom: 36px;
  font-weight: 800;
}
body.is-home .lp2026-fv__above-title::before {
  content: ''; width: 36px; height: 1px; background: var(--color-primary);
}
/* 店舗FVキャッチの改行制御: 区切り単位(nowrap)で折り返し、最終行に店舗名を独立表示 */
body.is-home .lp2026-fv__above-inner { display: inline-block; }
body.is-home .lp2026-fv__above-seg { display: inline-block; white-space: nowrap; }
body.is-home .lp2026-fv__above-name { display: block; white-space: nowrap; }

/* タイトル */
body.is-home .lp2026-fv--rotator .lp2026-fv__headline {
  font-family: 'Noto Serif JP', serif;
  font-weight: 800;
  font-size: clamp(50px, 7vw, 104px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.8),
    0 0 60px rgba(255, 255, 255, 0.5);
  margin: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}
body.is-home .lp2026-fv__headline-line {
  display: block;
  white-space: nowrap;
}
/* 2 行目に dot 配置スペース確保 (本気の上に圏点が乗るための余白) */
body.is-home .lp2026-fv__headline-line + .lp2026-fv__headline-line {
  margin-top: 0.22em;
}

/* 強調文字 + 圏点 (本気 / 技術 / 世界 の上に ・・) */
body.is-home .lp2026-fv__headline-accent {
  position: relative;
  color: var(--color-primary);
  font-style: normal;
}
body.is-home .lp2026-fv__headline-accent::before {
  content: '';
  position: absolute;
  left: 25%;
  top: 0.15em;
  width: 0.14em;
  height: 0.14em;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 1em 0 0 0 var(--color-primary);
  transform: translate(-50%, -100%);
  pointer-events: none;
}

/* ===== Trust (Design G) — 90+ 主役 + 3 check ===== */
body.is-home .lp2026-fv__trust {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  color: var(--color-text);
  position: relative;
  z-index: 2;
}
body.is-home .lp2026-fv__trust-main {
  border-right: 1px solid rgba(47, 42, 38, 0.2);
  padding-right: 22px;
}
body.is-home .lp2026-fv__trust-label {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 5px;
}
body.is-home .lp2026-fv__trust-num {
  font-family: 'Noto Serif JP', serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
}
body.is-home .lp2026-fv__trust-num em {
  font-style: normal;
  color: var(--color-primary);
}
body.is-home .lp2026-fv__trust-suffix {
  font-size: 14px;
  font-weight: 700;
  margin-left: 6px;
  font-family: var(--font-jp);
  color: var(--color-text);
}
body.is-home .lp2026-fv__trust-sub {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}
body.is-home .lp2026-fv__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
body.is-home .lp2026-fv__trust-check {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== CTA Area (hint + pill CTA) ===== */
body.is-home .lp2026-fv__cta-area {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  position: relative;
  z-index: 2;
}

/* CTA hint (PC では非表示、SP のみ表示) */
body.is-home .lp2026-fv__cta-hint { display: none; }

/* CTA ピル */
body.is-home .lp2026-fv__cta-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--color-primary);
  color: #fff;
  padding: 22px 32px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  isolation: isolate;
  animation: lp2026-fv-cta-pulse 2.4s ease-out infinite;
  box-shadow: 0 4px 18px rgba(217, 48, 31, 0.28);
}
body.is-home .lp2026-fv__cta-label { text-align: center; line-height: 1.3; }
@keyframes lp2026-fv-cta-pulse {
  0%   { box-shadow: 0 4px 18px rgba(217, 48, 31, 0.32), 0 0 0 0 rgba(217, 48, 31, 0.55); }
  60%  { box-shadow: 0 4px 18px rgba(217, 48, 31, 0.2), 0 0 0 18px rgba(217, 48, 31, 0); }
  100% { box-shadow: 0 4px 18px rgba(217, 48, 31, 0.32), 0 0 0 0 rgba(217, 48, 31, 0); }
}
body.is-home .lp2026-fv__cta-pill::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -30%;
  width: 30%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%);
  animation: lp2026-fv-cta-shimmer 3.6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes lp2026-fv-cta-shimmer {
  0%   { left: -30%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}
body.is-home .lp2026-fv__cta-pill:hover {
  background: var(--color-primary-dk);
  transform: translateY(-2px);
  animation-play-state: paused;
}
body.is-home .lp2026-fv__cta-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
body.is-home .lp2026-fv__cta-arrow {
  display: inline-block;
  font-size: 18px;
  transition: transform 0.25s ease;
}
body.is-home .lp2026-fv__cta-pill:hover .lp2026-fv__cta-arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  body.is-home .lp2026-fv__cta-pill { animation: none; }
  body.is-home .lp2026-fv__cta-pill::before { animation: none; opacity: 0; }
  body.is-home .lp2026-fv__slide,
  body.is-home .lp2026-fv__title-slide { transition: opacity 0.3s ease; }
}

/* ===== Slide indicator (3 dots) ===== */
body.is-home .lp2026-fv__indicator {
  position: absolute;
  left: 6vw; bottom: 24px;
  display: flex; gap: 10px;
  z-index: 3;
}
body.is-home .lp2026-fv__indicator button {
  -webkit-appearance: none; appearance: none;
  border: none; background: transparent;
  width: 36px; height: 22px;
  padding: 9px 0;
  cursor: pointer;
}
body.is-home .lp2026-fv__indicator button::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: rgba(47, 42, 38, 0.2);
  transition: background 0.4s ease;
}
body.is-home .lp2026-fv__indicator button.is-active::before {
  background: var(--color-primary);
}

/* SP 専用改行マーカー */
.br-sp { display: none; }

/* ===== Mobile (SP) ===== */
@media (max-width: 900px) {
  body.is-home .lp2026-fv--rotator {
    min-height: 100vh;
    min-height: 100svh;
  }
  body.is-home .lp2026-fv--rotator .lp2026-fv__overlay {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    padding: 80px 24px 78px;
    column-gap: 0;
    min-height: 100vh;
    min-height: 100svh;
  }
  /* SP 専用ポートレートグラデ — 上下にクリーム、中央写真 */
  body.is-home .lp2026-fv--rotator .lp2026-fv__gradient {
    background:
      linear-gradient(180deg,
        rgba(247, 243, 237, 0.97) 0%,
        rgba(247, 243, 237, 0.85) 16%,
        rgba(247, 243, 237, 0.18) 30%,
        rgba(247, 243, 237, 0.18) 62%,
        rgba(247, 243, 237, 0.55) 85%,
        rgba(247, 243, 237, 0.78) 100%);
  }

  body.is-home .lp2026-fv__title-area {
    grid-row: 1;
    grid-column: 1;
    align-self: start;
    max-width: none;
  }
  body.is-home .lp2026-fv__above-title {
    font-size: 18px;
    margin-bottom: 24px;
    gap: 16px;
    letter-spacing: 0.2em;
  }
  body.is-home .lp2026-fv__above-title::before { width: 44px; height: 2px; }

  body.is-home .lp2026-fv--rotator .lp2026-fv__headline {
    font-size: clamp(46px, 13vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    text-shadow:
      0 0 16px rgba(255, 255, 255, 0.95),
      0 0 38px rgba(255, 255, 255, 0.75),
      0 2px 10px rgba(47, 42, 38, 0.08);
  }
  body.is-home .lp2026-fv__headline-line:last-child {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .br-sp { display: inline; }

  /* SP trust — Design G を縦詰め */
  body.is-home .lp2026-fv__trust {
    grid-row: 2;
    grid-column: 1;
    align-self: start;
    margin-top: 22px;
    grid-template-columns: auto 1fr;
    gap: 18px;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.95),
      0 0 20px rgba(255, 255, 255, 0.75);
  }
  body.is-home .lp2026-fv__trust-main { padding-right: 18px; }
  body.is-home .lp2026-fv__trust-label { font-size: 10px; letter-spacing: 0.26em; margin-bottom: 4px; }
  body.is-home .lp2026-fv__trust-num { font-size: 48px; }
  body.is-home .lp2026-fv__trust-suffix { font-size: 13px; margin-left: 4px; }
  body.is-home .lp2026-fv__trust-sub { gap: 5px; font-size: 13px; }
  body.is-home .lp2026-fv__trust-item { gap: 6px; }
  body.is-home .lp2026-fv__trust-check { font-size: 13px; }

  /* SP CTA Area — 中央寄せ、hint 表示 */
  body.is-home .lp2026-fv__cta-area {
    grid-row: 4;
    grid-column: 1;
    align-self: end;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  body.is-home .lp2026-fv__cta-hint {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(47, 42, 38, 0.08);
    margin: 0 0 -2px;
    width: auto;
  }
  body.is-home .lp2026-fv__cta-hint-badge {
    background: var(--color-text);
    color: #fff;
    padding: 4px 9px;
    font-size: 10px;
    letter-spacing: 0.18em;
    border-radius: 999px;
  }
  body.is-home .lp2026-fv__cta-hint-strike {
    color: var(--color-text-sub);
    text-decoration: line-through;
    text-decoration-color: var(--color-primary);
    text-decoration-thickness: 1.5px;
  }
  body.is-home .lp2026-fv__cta-hint-arrow { color: var(--color-text-sub); }
  body.is-home .lp2026-fv__cta-hint-save {
    color: var(--color-primary);
    font-weight: 900;
    font-size: 12px;
  }

  body.is-home .lp2026-fv__cta-pill {
    padding: 22px 32px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    justify-content: center;
    gap: 14px;
    width: auto;
    max-width: 100%;
    border-radius: 999px;
    box-shadow:
      0 16px 40px rgba(217, 48, 31, 0.55),
      0 6px 16px rgba(47, 42, 38, 0.18);
    animation: lp2026-fv-cta-pulse-sp 2.2s ease-out infinite;
  }
  @keyframes lp2026-fv-cta-pulse-sp {
    0%   { box-shadow: 0 16px 40px rgba(217, 48, 31, 0.6),  0 6px 16px rgba(47, 42, 38, 0.18), 0 0 0 0 rgba(217, 48, 31, 0.7); }
    60%  { box-shadow: 0 16px 40px rgba(217, 48, 31, 0.45), 0 6px 16px rgba(47, 42, 38, 0.12), 0 0 0 26px rgba(217, 48, 31, 0); }
    100% { box-shadow: 0 16px 40px rgba(217, 48, 31, 0.6),  0 6px 16px rgba(47, 42, 38, 0.18), 0 0 0 0 rgba(217, 48, 31, 0); }
  }
  body.is-home .lp2026-fv__cta-price {
    font-size: 26px;
    font-weight: 900;
    padding-left: 14px;
  }
  body.is-home .lp2026-fv__cta-arrow { font-size: 22px; }

  /* SP indicator */
  body.is-home .lp2026-fv__indicator {
    left: 50%;
    transform: translateX(-50%);
    bottom: 38px;
    gap: 8px;
  }
  body.is-home .lp2026-fv__indicator button { width: 22px; height: 18px; padding: 8px 0; }
  body.is-home .lp2026-fv__indicator button::before { width: 22px; }
}

/* r117: EN版 FV の調整。英文見出しは長く、headline-line の white-space:nowrap(日本語向け)だと
   狭幅で切れるため通常の英文折返しにし、フォント下限も下げる。CTAヒント行も項目毎に整える。
   .lang-en は i18n.js が <html> に付与 (EN時のみ)。 */
.lang-en body.is-home .lp2026-fv--rotator .lp2026-fv__headline {
  word-break: normal;
  overflow-wrap: break-word;
}
.lang-en body.is-home .lp2026-fv__headline-line {
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .lang-en body.is-home .lp2026-fv--rotator .lp2026-fv__headline {
    font-size: clamp(32px, 9vw, 52px);
  }
  /* CTAヒント: 英語は語が長いので行を折返し可にし、各バッジ/取り消し線は1行維持 */
  .lang-en body.is-home .lp2026-fv__cta-hint {
    flex-wrap: wrap;
    max-width: 92vw;
  }
  .lang-en body.is-home .lp2026-fv__cta-hint-badge,
  .lang-en body.is-home .lp2026-fv__cta-hint-strike,
  .lang-en body.is-home .lp2026-fv__cta-hint-save {
    white-space: nowrap;
  }
}

@media (max-width: 370px) {
  body.is-home .lp2026-fv--rotator .lp2026-fv__headline { font-size: 38px; }
  body.is-home .lp2026-fv__trust-num { font-size: 42px; }
  body.is-home .lp2026-fv__cta-pill { padding: 20px 24px; font-size: 14px; }
  body.is-home .lp2026-fv__cta-price { font-size: 22px; padding-left: 12px; }
}

/* =============================================================
   r120: CTA カード — 横長フルワイド + SVG 電話アイコン
   ============================================================= */
body.is-home .lp2026-pfc__cta.lp2026-pfc__cta--wide {
  grid-column: 1 / -1 !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;
  padding: 32px 40px !important;
  text-align: left !important;
  background: var(--color-primary) !important;
  color: #fff !important;
}

@media (max-width: 900px) {
  body.is-home .lp2026-pfc__cta.lp2026-pfc__cta--wide {
    flex-direction: column !important;
    gap: 20px !important;
    padding: 28px 24px !important;
    text-align: center !important;
  }
}

body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-intro {
  flex: 1 1 auto;
  min-width: 200px;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-head {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 4px;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-course {
  font-size: 0.8125rem;
  opacity: 0.92;
  margin: 0;
}

/* 中央: 価格ブロック */
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
@media (max-width: 900px) {
  body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-price-box {
    border: none;
    padding: 0;
  }
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  opacity: 0.9;
  margin: 0 0 4px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 999px;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 4px 0;
  display: block;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-price small {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 6px;
  opacity: 0.85;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-old {
  font-size: 0.6875rem;
  opacity: 0.7;
  text-decoration: line-through;
  margin: 0;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-old small {
  margin-left: 2px;
}

/* 右: アクション (ボタン + 電話) */
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 280px;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-btn {
  background: #fff !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18) !important;
  text-align: center;
  font-size: 0.9375rem;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-btn::after {
  display: none !important;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25) !important;
}

/* 電話ブロック (icon + body) */
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-tel {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  padding: 8px 4px;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-tel:hover {
  opacity: 0.85;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-tel-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-tel-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-tel-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-tel-label {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-tel-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-top: 2px;
}
body.is-home .lp2026-pfc__cta--wide .lp2026-pfc__cta-tel-hours {
  font-size: 0.625rem;
  opacity: 0.75;
  margin-top: 2px;
}

/* =============================================================
   r122: CTA カード — チケット/クーポン風 (B案 + A案ボタン pulse)
   ============================================================= */
body.is-home .lp2026-pfc__cta.lp2026-pfc__cta--ticket {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: 1fr 1.4fr !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 56px rgba(47, 42, 38, 0.18) !important;
  color: inherit !important;
  text-align: left !important;
  position: relative;
  flex-direction: row !important;
}

/* ===== 左パネル (クリーム / 通常価格 / 評価) ===== */
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left {
  background: linear-gradient(135deg, #fffaf2, #fbf5ec);
  padding: 40px 36px;
  text-align: center;
  border-right: 2px dashed var(--color-primary);
  position: relative;
  color: var(--color-text);
}
/* 中央の切り取り感 (点線の上下に丸抜き) */
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::before,
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::after {
  content: '';
  position: absolute;
  right: -16px;
  width: 32px;
  height: 32px;
  background: var(--color-bg-sub, #fafaf8);
  border-radius: 50%;
  z-index: 3;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::before { top: -16px; }
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::after { bottom: -16px; }

body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-head {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  font-weight: 800;
  margin: 0 0 18px;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-course {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0 0 22px;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-old-label {
  font-size: 11px;
  color: var(--color-text-sub);
  margin: 0 0 4px;
  letter-spacing: 0.08em;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-old-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-sub);
  text-decoration: line-through;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 2.5px;
  margin: 0;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 1px;
}

/* ===== 右パネル (赤 / 新価格 / ボタン) ===== */
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-right {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dk) 100%);
  padding: 40px 48px;
  color: #fff;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.1), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.06), transparent 50%);
  pointer-events: none;
}

body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--color-accent, #d9ad65);
  color: #4a3520;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 14px;
  letter-spacing: 0.18em;
  border-radius: 999px;
  z-index: 2;
}

body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-limit {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin: 28px 0 8px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  margin: 0;
  position: relative;
  z-index: 1;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price small {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 500;
  margin-left: 4px;
  vertical-align: super;
  opacity: 0.85;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-save {
  display: inline-block;
  margin: 12px 0 24px;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

/* CTA ボタン (A 案の pulse + 3D + shimmer) */
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 20px 48px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 -3px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: lp2026-pfc-cta-pulse 2.4s ease-out infinite;
  overflow: hidden;
  z-index: 2;
}
@keyframes lp2026-pfc-cta-pulse {
  0% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.22),
      inset 0 -3px 0 rgba(0,0,0,0.08),
      0 0 0 0 rgba(255,255,255,0.55);
  }
  60% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.18),
      inset 0 -3px 0 rgba(0,0,0,0.08),
      0 0 0 22px rgba(255,255,255,0);
  }
  100% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.22),
      inset 0 -3px 0 rgba(0,0,0,0.08),
      0 0 0 0 rgba(255,255,255,0);
  }
}
/* shimmer (光の帯) が左→右に流れる */
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -30%;
  width: 30%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(217, 48, 31, 0.15) 50%,
    transparent 100%);
  animation: lp2026-pfc-cta-shimmer 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lp2026-pfc-cta-shimmer {
  0% { left: -30%; }
  60% { left: 130%; }
  100% { left: 130%; }
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn-icon {
  font-size: 11px;
}

@media (prefers-reduced-motion: reduce) {
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn {
    animation: none;
  }
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn::before {
    animation: none;
    opacity: 0;
  }
}

/* 電話 */
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s ease;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone:hover { opacity: 1; }
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone-icon {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone-icon svg {
  width: 14px; height: 14px;
  color: #fff;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  letter-spacing: 0.02em;
}

/* ===== SP (max-width: 900px) ===== */
@media (max-width: 900px) {
  body.is-home .lp2026-pfc__cta.lp2026-pfc__cta--ticket {
    grid-template-columns: 1fr !important;
  }
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left {
    border-right: none;
    border-bottom: 2px dashed var(--color-primary);
    padding: 32px 24px;
  }
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::before {
    top: auto;
    bottom: -16px;
    left: -16px;
    right: auto;
  }
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::after {
    right: -16px;
    top: auto;
    bottom: -16px;
  }
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-right {
    padding: 36px 24px;
  }
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price {
    font-size: 58px;
  }
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn {
    padding: 18px 32px;
    font-size: 14px;
  }
}

/* =============================================================
   r123: チケット CTA — テキスト拡大 + 上下中央揃え
   ============================================================= */
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left,
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-right {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 380px !important;
  padding: 48px 40px !important;
}

/* 左パネル — テキスト拡大 */
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-head {
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  margin: 0 0 24px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-course {
  font-size: 18px !important;
  line-height: 1.6 !important;
  margin: 0 0 32px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-old-label {
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
  margin: 0 0 6px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-old-price {
  font-size: 38px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-rating {
  margin-top: 36px !important;
  font-size: 15px !important;
  gap: 10px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-stars {
  font-size: 18px !important;
  letter-spacing: 2px !important;
}

/* 右パネル — テキスト拡大 */
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-badge {
  font-size: 12px !important;
  padding: 7px 16px !important;
  top: 24px !important;
  right: 28px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-limit {
  font-size: 14px !important;
  letter-spacing: 0.24em !important;
  margin: 0 0 12px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price {
  font-size: 96px !important;
  letter-spacing: -0.02em !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price small {
  font-size: 18px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-save {
  font-size: 14px !important;
  padding: 5px 16px !important;
  margin: 14px 0 28px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn {
  padding: 22px 56px !important;
  font-size: 18px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn-icon {
  font-size: 13px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone {
  font-size: 15px !important;
  margin-top: 22px !important;
  gap: 12px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone-icon {
  width: 30px !important; height: 30px !important;
}
body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone-num {
  font-size: 20px !important;
}

/* SP */
@media (max-width: 900px) {
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left,
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-right {
    min-height: auto !important;
    padding: 36px 24px !important;
  }
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price {
    font-size: 68px !important;
  }
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-old-price {
    font-size: 32px !important;
  }
  body.is-home .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn {
    padding: 18px 36px !important;
    font-size: 15px !important;
  }
}

/* r124: チケット CTA の上下に余白を追加 */
body.is-home .lp2026-pfc__cta.lp2026-pfc__cta--ticket {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}
@media (max-width: 900px) {
  body.is-home .lp2026-pfc__cta.lp2026-pfc__cta--ticket {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}

/* =============================================================
   r127: クーポン型CTA(ticket)を TOP 以外でも使えるようにする portable 版
   TOPの body.is-home 版は無改変。各ページは <section class="cta-coupon"> で利用。
   ============================================================= */
.cta-coupon {
  padding-block: clamp(48px, 6vw, 96px);
  background: var(--color-bg, #fdfbf7);
}
.cta-coupon > .container {
  max-width: 1040px;
}
.cta-coupon .lp2026-pfc__cta.lp2026-pfc__cta--ticket {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: 1fr 1.4fr !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 56px rgba(47, 42, 38, 0.18) !important;
  color: inherit !important;
  text-align: left !important;
  position: relative;
  flex-direction: row !important;
}

/* ===== 左パネル (クリーム / 通常価格 / 評価) ===== */
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left {
  background: linear-gradient(135deg, #fffaf2, #fbf5ec);
  padding: 40px 36px;
  text-align: center;
  border-right: 2px dashed var(--color-primary);
  position: relative;
  color: var(--color-text);
}
/* 中央の切り取り感 (点線の上下に丸抜き) */
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::before,
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::after {
  content: '';
  position: absolute;
  right: -16px;
  width: 32px;
  height: 32px;
  background: var(--color-bg-sub, #fafaf8);
  border-radius: 50%;
  z-index: 3;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::before { top: -16px; }
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::after { bottom: -16px; }

.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-head {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  font-weight: 800;
  margin: 0 0 18px;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-course {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0 0 22px;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-old-label {
  font-size: 11px;
  color: var(--color-text-sub);
  margin: 0 0 4px;
  letter-spacing: 0.08em;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-old-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-sub);
  text-decoration: line-through;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 2.5px;
  margin: 0;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 1px;
}

/* ===== 右パネル (赤 / 新価格 / ボタン) ===== */
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-right {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dk) 100%);
  padding: 40px 48px;
  color: #fff;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.1), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.06), transparent 50%);
  pointer-events: none;
}

.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--color-accent, #d9ad65);
  color: #4a3520;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 14px;
  letter-spacing: 0.18em;
  border-radius: 999px;
  z-index: 2;
}

.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-limit {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin: 28px 0 8px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  margin: 0;
  position: relative;
  z-index: 1;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price small {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 500;
  margin-left: 4px;
  vertical-align: super;
  opacity: 0.85;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-save {
  display: inline-block;
  margin: 12px 0 24px;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

/* CTA ボタン (A 案の pulse + 3D + shimmer) */
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 20px 48px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 -3px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: lp2026-pfc-cta-pulse 2.4s ease-out infinite;
  overflow: hidden;
  z-index: 2;
}
@keyframes lp2026-pfc-cta-pulse {
  0% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.22),
      inset 0 -3px 0 rgba(0,0,0,0.08),
      0 0 0 0 rgba(255,255,255,0.55);
  }
  60% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.18),
      inset 0 -3px 0 rgba(0,0,0,0.08),
      0 0 0 22px rgba(255,255,255,0);
  }
  100% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.22),
      inset 0 -3px 0 rgba(0,0,0,0.08),
      0 0 0 0 rgba(255,255,255,0);
  }
}
/* shimmer (光の帯) が左→右に流れる */
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -30%;
  width: 30%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(217, 48, 31, 0.15) 50%,
    transparent 100%);
  animation: lp2026-pfc-cta-shimmer 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lp2026-pfc-cta-shimmer {
  0% { left: -30%; }
  60% { left: 130%; }
  100% { left: 130%; }
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn-icon {
  font-size: 11px;
}

@media (prefers-reduced-motion: reduce) {
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn {
    animation: none;
  }
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn::before {
    animation: none;
    opacity: 0;
  }
}

/* 電話 */
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone:hover { opacity: 1; }
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone-icon {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone-icon svg {
  width: 14px; height: 14px;
  color: #fff;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  letter-spacing: 0.02em;
}

/* ===== SP (max-width: 900px) ===== */
@media (max-width: 900px) {
  .cta-coupon .lp2026-pfc__cta.lp2026-pfc__cta--ticket {
    grid-template-columns: 1fr !important;
  }
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left {
    border-right: none;
    border-bottom: 2px dashed var(--color-primary);
    padding: 32px 24px;
  }
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::before {
    top: auto;
    bottom: -16px;
    left: -16px;
    right: auto;
  }
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left::after {
    right: -16px;
    top: auto;
    bottom: -16px;
  }
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-right {
    padding: 36px 24px;
  }
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price {
    font-size: 58px;
  }
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn {
    padding: 18px 32px;
    font-size: 14px;
  }
}

/* =============================================================
   r123: チケット CTA — テキスト拡大 + 上下中央揃え
   ============================================================= */
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left,
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-right {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 380px !important;
  padding: 48px 40px !important;
}

/* 左パネル — テキスト拡大 */
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-head {
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  margin: 0 0 24px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-course {
  font-size: 18px !important;
  line-height: 1.6 !important;
  margin: 0 0 32px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-old-label {
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
  margin: 0 0 6px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-old-price {
  font-size: 38px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-rating {
  margin-top: 36px !important;
  font-size: 15px !important;
  gap: 10px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-stars {
  font-size: 18px !important;
  letter-spacing: 2px !important;
}

/* 右パネル — テキスト拡大 */
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-badge {
  font-size: 12px !important;
  padding: 7px 16px !important;
  top: 24px !important;
  right: 28px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-limit {
  font-size: 14px !important;
  letter-spacing: 0.24em !important;
  margin: 0 0 12px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price {
  font-size: 96px !important;
  letter-spacing: -0.02em !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price small {
  font-size: 18px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-save {
  font-size: 14px !important;
  padding: 5px 16px !important;
  margin: 14px 0 28px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn {
  padding: 22px 56px !important;
  font-size: 18px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn-icon {
  font-size: 13px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone {
  font-size: 15px !important;
  margin-top: 22px !important;
  gap: 12px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone-icon {
  width: 30px !important; height: 30px !important;
}
.cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-phone-num {
  font-size: 20px !important;
}

/* SP */
@media (max-width: 900px) {
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-left,
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-right {
    min-height: auto !important;
    padding: 36px 24px !important;
  }
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-price {
    font-size: 68px !important;
  }
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-old-price {
    font-size: 32px !important;
  }
  .cta-coupon .lp2026-pfc__cta--ticket .lp2026-pfc__cta-tk-btn {
    padding: 18px 36px !important;
    font-size: 15px !important;
  }
}

/* r124: チケット CTA の上下に余白を追加 */
.cta-coupon .lp2026-pfc__cta.lp2026-pfc__cta--ticket {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}
@media (max-width: 900px) {
  .cta-coupon .lp2026-pfc__cta.lp2026-pfc__cta--ticket {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}

/* =============================================================
   r126: about ページ Vision Hero に右側スタッフ写真を追加
   ============================================================= */
.p4-hero--with-photo .about-hero__photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 38%;
  z-index: 0;
  overflow: hidden;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.p4-hero--with-photo .about-hero__photo picture,
.p4-hero--with-photo .about-hero__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 45%;
}
/* ::before の灰色帯を写真に置き換えるため非表示 */
.p4-hero.p4-hero--with-photo.p4-hero--editorial::before {
  display: none;
}

@media (max-width: 767px) {
  .p4-hero--with-photo .about-hero__photo {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    clip-path: none;
    margin-bottom: 32px;
  }
}

/* =============================================================
   r127: /price/ ヒーロー右側に NAORU ロゴマーク
   ============================================================= */
.p4-hero--with-photo .price-hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p4-hero--with-photo .price-hero__logo picture,
.p4-hero--with-photo .price-hero__logo img {
  width: auto;
  height: auto;
  max-width: 74%;
  max-height: 82%;
  object-fit: contain;
  opacity: 0.95;
}

@media (max-width: 767px) {
  .p4-hero--with-photo .price-hero__logo {
    aspect-ratio: 16 / 9;
  }
  .p4-hero--with-photo .price-hero__logo picture,
  .p4-hero--with-photo .price-hero__logo img {
    max-width: 200px;
    max-height: 200px;
  }
}

/* =============================================================
   shop1: 店舗ページ専用セクション (lp2026-shopinfo / lp2026-shopstaff)
   ============================================================= */
.lp2026-shopinfo__header {
  text-align: center;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.lp2026-shopinfo__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.75rem, 1.4rem + 1.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0.25rem 0 0.75rem;
}
.lp2026-shopinfo__tagline {
  font-size: 0.95rem;
  color: var(--color-text-sub);
}
.lp2026-shopinfo__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) {
  .lp2026-shopinfo__grid { grid-template-columns: 1fr; }
}
.lp2026-shopinfo__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lp2026-shopinfo__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(47, 42, 38, 0.08);
}
.lp2026-shopinfo__row dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-sub);
  padding-top: 2px;
}
.lp2026-shopinfo__row dd {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
}
.lp2026-shopinfo__tel {
  font-family: 'Noto Serif JP', serif;
  font-weight: 800;
  color: var(--color-primary);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.lp2026-shopinfo__tel:hover { text-decoration: underline; }

.lp2026-shopinfo__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.lp2026-shopinfo__btn {
  flex: 1 1 auto;
  min-width: 200px;
  padding: 16px 24px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp2026-shopinfo__btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(217, 48, 31, 0.25);
}
.lp2026-shopinfo__btn--primary:hover { transform: translateY(-1px); }
.lp2026-shopinfo__btn--line {
  background: #06C755;
  color: #fff;
}
.lp2026-shopinfo__btn--line:hover { transform: translateY(-1px); }

.lp2026-shopinfo__map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(47, 42, 38, 0.1);
}
@media (max-width: 600px) {
  .lp2026-shopinfo__map iframe { height: 280px; }
}

/* ============================================================
   スタッフカード
============================================================ */
.lp2026-shopstaff__desc {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  margin-top: 8px;
}
.lp2026-shopstaff__list {
  list-style: none;
  padding: 0;
  margin: clamp(2rem, 1.5rem + 2vw, 3rem) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
}
.lp2026-shopstaff__card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(47, 42, 38, 0.06);
  border: 1px solid rgba(47, 42, 38, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* スタッフが1人だけのとき: カードが全幅に伸びてアバターが巨大化するのを防ぐ
   (複数人いるときの1枚と同等サイズに制限して中央寄せ) */
.lp2026-shopstaff__list .lp2026-shopstaff__card:only-child {
  max-width: 420px;
  margin-inline: auto;
}
.lp2026-shopstaff__avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0ebe3 0%, #e8e0d3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp2026-shopstaff__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* 縦長写真でも顔・頭が切れないよう上基準でトリミング */
  display: block;
}
.lp2026-shopstaff__avatar-fallback {
  font-family: 'Noto Serif JP', serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.4;
}
.lp2026-shopstaff__role {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.lp2026-shopstaff__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 12px;
}
.lp2026-shopstaff__name small {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-sub);
  margin-left: 4px;
}
.lp2026-shopstaff__licenses {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lp2026-shopstaff__licenses li {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  background: rgba(217, 48, 31, 0.08);
  color: var(--color-primary);
  border-radius: 999px;
}
.lp2026-shopstaff__bio {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-sub);
  margin: 0 0 12px;
}
.lp2026-shopstaff__message {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text);
  border-left: 3px solid var(--color-primary);
  padding: 8px 0 8px 14px;
  margin: 12px 0 0;
  background: transparent;
  font-style: normal;
}
.lp2026-shopstaff__empty {
  list-style: none;
  text-align: center;
  padding: 40px;
  color: var(--color-text-sub);
  font-size: 14px;
}

/* ===========================================================
   shop-access: 駅からのアクセス手順 (店舗ページ専用)
   =========================================================== */
.lp2026-shopaccess { background: var(--color-bg-sub); }
.lp2026-shopaccess__desc {
  color: var(--color-text-sub);
  font-size: clamp(14px, 0.2vw + 13px, 16px);
  margin: 12px auto 0;
  max-width: 640px;
  text-align: center;
}
.lp2026-shopaccess__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw + 8px, 36px);
  list-style: none;
  padding: 0;
  margin: clamp(32px, 4vw, 56px) 0 0;
  counter-reset: access-step;
}
.lp2026-shopaccess__step {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp2026-shopaccess__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.08);
}
.lp2026-shopaccess__num {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  width: 36px; height: 36px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(214, 64, 64, 0.3);
}
.lp2026-shopaccess__media {
  aspect-ratio: 4 / 3;
  background: var(--color-hair);
  overflow: hidden;
}
.lp2026-shopaccess__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp2026-shopaccess__caption {
  padding: 16px 20px 20px;
  font-size: clamp(13px, 0.15vw + 12px, 15px);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 900px) {
  .lp2026-shopaccess__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .lp2026-shopaccess__num { width: 30px; height: 30px; font-size: 12px; top: 8px; left: 8px; }
  .lp2026-shopaccess__caption { padding: 12px 14px 16px; }
}
@media (max-width: 560px) {
  .lp2026-shopaccess__steps {
    grid-template-columns: 1fr;
  }
}

/* Multi-route access: route groups */
.lp2026-shopaccess__routes {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 5vw, 80px);
  margin: clamp(32px, 4vw, 56px) 0 0;
}
.lp2026-shopaccess__route { display: block; }
.lp2026-shopaccess__route-title {
  position: relative;
  font-size: clamp(18px, 0.6vw + 14px, 24px);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-text);
  margin: 0 0 clamp(20px, 2vw, 32px);
  padding-left: 16px;
  border-left: 4px solid var(--color-accent);
  line-height: 1.4;
}
.lp2026-shopaccess__route + .lp2026-shopaccess__route {
  padding-top: clamp(32px, 3vw, 56px);
  border-top: 1px solid var(--color-hair);
}
.lp2026-shopaccess__route .lp2026-shopaccess__steps {
  margin-top: 0; /* container provides the spacing */
}

/* ===========================================================
   shop-photos: 院内の様子 (店舗ページ専用)
   =========================================================== */
.lp2026-shopphotos__desc {
  color: var(--color-text-sub);
  font-size: clamp(14px, 0.2vw + 13px, 16px);
  margin: 12px auto 0;
  max-width: 640px;
  text-align: center;
}
.lp2026-shopphotos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw + 6px, 24px);
  list-style: none;
  padding: 0;
  margin: clamp(32px, 4vw, 56px) 0 0;
}
.lp2026-shopphotos__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.05);
}
.lp2026-shopphotos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.lp2026-shopphotos__item:hover img { transform: scale(1.04); }

@media (max-width: 760px) {
  .lp2026-shopphotos__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* SEO accessibility utility — visually hidden but readable by screen readers / crawlers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =============================================================
   shop-ba :: 店舗ページ ビフォーアフター (FV直下 / CVR向上) — 2026-06-08
   ============================================================= */
.shop-ba {
  padding-block: clamp(48px, 4rem + 3vw, 96px);
  background: linear-gradient(180deg, #fffdf9 0%, #fbf6ee 100%);
  border-bottom: 1px solid rgba(26,26,26,0.06);
}
.shop-ba .container { max-width: 1080px; }
.shop-ba__header { text-align: center; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.shop-ba__eyebrow {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  letter-spacing: 0.18em; font-size: 0.8125rem;
  color: var(--color-accent, #d9301f); margin: 0 0 12px;
}
.shop-ba__title {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem);
  line-height: 1.4; color: #1a1a1a; margin: 0 0 10px; letter-spacing: 0.02em;
}
.shop-ba__lead { font-size: 0.95rem; color: rgba(26,26,26,0.6); margin: 0; }
.shop-ba__grid {
  display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .shop-ba__grid { grid-template-columns: 1fr 1fr; } }
.shop-ba__case {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(26,16,8,0.07); border: 1px solid rgba(26,16,8,0.05);
  display: flex; flex-direction: column;
}
.shop-ba__case-head { padding: 18px 20px 14px; text-align: center; background: #fbf3e4; }
.shop-ba__prof {
  font-size: 0.95rem; font-weight: 700; color: #2a2118; margin: 0 0 4px; line-height: 1.5;
}
.shop-ba__g { font-weight: 800; }
.shop-ba__g--woman { color: #e8537e; }
.shop-ba__g--man { color: #2f7fd9; }
.shop-ba__symptom {
  font-size: 1.0625rem; font-weight: 800; color: #d9301f; margin: 0; letter-spacing: 0.02em;
}
.shop-ba__pair {
  display: flex; align-items: flex-start; gap: 8px; padding: 18px;
}
.shop-ba__shot {
  position: relative; margin: 0; flex: 1 1 0; min-width: 0;
  border-radius: 12px; overflow: hidden; background: #f0ece5;
}
/* 画像はトリミングせず全体を表示 (AI診断ラベル等が見切れないように) */
.shop-ba__shot img { width: 100%; height: auto; object-fit: contain; display: block; }
/* 画像自体に Before/After が焼き込まれている事例が多いため、オーバーレイのタグは非表示 */
.shop-ba__tag {
  display: none;
}
.shop-ba__shot--before .shop-ba__tag { background: rgba(120,98,84,0.92); }
.shop-ba__shot--after .shop-ba__tag { background: rgba(217,48,31,0.92); }
.shop-ba__arrow { flex: 0 0 auto; align-self: center; color: #d9301f; font-size: 1.5rem; font-weight: 700; }
.shop-ba__comment {
  margin: 0; padding: 0 20px 20px; font-size: 0.9rem; line-height: 1.75;
  color: rgba(26,26,26,0.78); position: relative;
}
.shop-ba__who {
  display: inline-block; font-weight: 700; color: #2a2118; font-size: 0.8125rem;
  background: #fbf3e4; padding: 2px 10px; border-radius: 999px; margin-right: 8px;
}
.shop-ba__note {
  text-align: center; font-size: 0.75rem; color: rgba(26,26,26,0.45);
  margin: clamp(1.5rem, 1rem + 1.5vw, 2.5rem) 0 0;
}
@media (max-width: 560px) {
  .shop-ba__pair { gap: 4px; padding: 12px; }
  .shop-ba__arrow { font-size: 1.1rem; }
}

/* ===========================================================
   Typography: SP 改行品質向上
   - text-wrap: balance で 2行以上の見出しの行バランスを取る
   - BudouX (budoux-init.js) と併用して日本語の文節改行を実現
   =========================================================== */
/* FV の見出し (.lp2026-fv__headline / __above-title) は <span class="lp2026-fv__headline-line">
   で改行を明示しているため、BudouX/balance を適用すると行間が間延びする → 除外 */
.lp2026-section-title,
.lp2026-shopinfo__title,
.lp2026-shopinfo__tagline,
.lp2026-shopaccess__route-title,
.lp2026-shopaccess__caption,
.lp2026-shopaccess__desc,
.lp2026-shopphotos__desc,
.lp2026-shopstaff__name,
.lp2026-recruit__title,
.lp2026-recruit__catch,
.lp2026-airpods__headline,
.lp2026-airpods__text-heading,
.lp2026-airpods__phones-headline,
.lp2026-airpods__conclusion,
.lp2026-ba__case-title,
.p4-hero__title,
.p4-hero__lead {
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: auto-phrase;
}

/* ===========================================================
   Header SP-only 「店舗を探す」 CTA
   - PC は非表示 (既存 header__nav に「店舗一覧」あり)
   - SP では赤系ピル型で目立たせる
   =========================================================== */
.header__shops-cta-mobile {
  display: none;
}
@media (max-width: 900px) {
  .header__shops-cta-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px 7px 11px;
    background: var(--color-accent, #ee4427);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(238, 68, 39, 0.30), 0 0 0 1px rgba(238, 68, 39, 0.10);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
  }
  .header__shops-cta-mobile:hover,
  .header__shops-cta-mobile:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(238, 68, 39, 0.42);
    color: #fff;
  }
  .header__shops-cta-mobile svg { flex: 0 0 auto; }
  .header__shops-cta-mobile span { font-family: inherit; }

  /* SP では 初回体験予約 CTA はハンバーガー内で完結させているので非表示 */
  .header__cta { display: none !important; }
}

/* 極小幅では「店舗を探す」→「店舗」に省略 */
@media (max-width: 380px) {
  .header__shops-cta-mobile span { font-size: 11px; }
}

/* SP メニュー内の「店舗一覧」リンクも目立たせる (既存 sp-menu__shops-cta を強化) */
@media (max-width: 900px) {
  .sp-menu__shops-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 14px 20px;
    background: var(--color-accent, #ee4427);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(238, 68, 39, 0.25);
  }
  .sp-menu__shops-cta::before {
    content: "📍";
    font-size: 16px;
  }
}

/* ===========================================================
   SP: 地図タブ — 地域・都道府県ボタンを大きく・押しやすく
   =========================================================== */
@media (max-width: 768px) {
  .shop-page .sp-panel--map .sp-panel__lead {
    margin-bottom: 16px;
  }
  .shop-page .sp-panel--map .sp-panel__lead p {
    font-size: 14px;
    line-height: 1.55;
  }
  .shop-page .sp-panel--map .sp-panel__lead strong {
    color: var(--color-accent);
  }

  /* 地域ボタン: 4列グリッド (北海道・東北・関東・中部 / 近畿・中国・四国・九州) */
  .shop-page .sp-regions {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
  .shop-page .sp-region {
    padding: 11px 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    background: #fff;
    border: 1.5px solid var(--color-hair-strong);
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.15s ease;
    min-height: 44px;
  }
  .shop-page .sp-region.is-active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    box-shadow: 0 4px 14px rgba(238, 68, 39, 0.25);
  }

  /* 都道府県ボタン: 縦に flex-wrap で並べる */
  .shop-page .sp-prefs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
    background: var(--color-bg-sub);
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .shop-page .sp-prefs[hidden] { display: none !important; }
  .shop-page .sp-pref {
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--color-hair-strong);
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.15s ease;
  }
  .shop-page .sp-pref.is-active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
  }
  .shop-page .sp-pref__count {
    margin-left: 4px;
    font-size: 11px;
    opacity: 0.75;
    font-weight: 500;
  }
  .shop-page .sp-pref.is-active .sp-pref__count {
    opacity: 0.9;
  }
}
@media (max-width: 380px) {
  .shop-page .sp-regions { grid-template-columns: repeat(3, 1fr); }
  .shop-page .sp-region { font-size: 12px; padding: 10px 4px; }
}

/* ============================================================
   legal (privacy) — 旧サイト内容を新デザインで表示
   ============================================================ */
.legal-body { padding-block: clamp(2.5rem, 2rem + 4vw, 5rem); }
.legal-prose { max-width: 760px; margin-inline: auto; }
.legal-intro {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
}
.legal-block { margin-top: clamp(2rem, 1.5rem + 2vw, 3rem); }
.legal-block__title {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--color-primary);
}
.legal-block__num {
  color: var(--color-accent);
  font-family: 'DM Sans', sans-serif;
  margin-right: 0.5em;
}
.legal-block p,
.legal-block li {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--color-text);
}
.legal-block > p + p { margin-top: 0.9rem; }
.legal-meta {
  margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid #e6e3df;
  color: var(--color-text-sub);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
/* ネスト番号リスト (サブ項目を (1)(2) 表記) */
.legal-block ol { list-style-position: outside; padding-left: 1.6em; }
.legal-block ol > li { margin-top: 0.5rem; }
.legal-block ol ol {
  counter-reset: legal-sub;
  list-style: none;
  margin-top: 0.6rem;
  padding-left: 0.2em;
}
.legal-block ol ol > li {
  counter-increment: legal-sub;
  position: relative;
  padding-left: 2.2em;
}
.legal-block ol ol > li::before {
  content: "(" counter(legal-sub) ")";
  position: absolute;
  left: 0;
  color: var(--color-text-sub);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   症状一覧（/symptoms/ の全39症状インデックス・内部リンク導線）
   ============================================================ */
.symptom-index-section { background: var(--color-bg); }
.symptom-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 1rem + 2.5vw, 2.75rem);
  margin-top: clamp(1.75rem, 1rem + 2vw, 3rem);
}
.symptom-index__cat {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  padding-bottom: 0.55rem;
  margin-bottom: 1.3rem; /* 赤線と症状ピルの間に余白(2026-06-17) */
  border-bottom: 2px solid var(--color-primary);
}
.symptom-index__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
}
.symptom-index__list a {
  display: inline-block;
  padding: 0.42rem 0.95rem;
  background: #F8F7F5;
  border: 1px solid #e6e3df;
  border-radius: 999px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.symptom-index__list a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.symptom-index__group--more { margin-top: clamp(1.5rem, 1rem + 2vw, 2.5rem); }

/* ============================================================
   A/B test framework — FV variant 出し分け (チラつき0 / CSSゲート)
   ------------------------------------------------------------
   スロット構造:
     <span class="fv-ab" data-ab-slot="xxx">     ← B完成時に data-ab-ready を付与
       <span class="fv-ab__a"> …A(現行)… </span>
       <span class="fv-ab__b"> …B案… </span>
     </span>
   - 既定(=Bが空 / data-ab-ready なし): 全員 A を表示 (安全)
   - data-ab-ready 付与 かつ <html data-ab="B"> のとき初めて B に切替
   - display:contents でラッパは配置に影響しない(テキスト/インライン用)
   ============================================================ */
.fv-ab,
.fv-ab__a { display: contents; }
.fv-ab__b { display: none; }
html[data-ab="B"] .fv-ab[data-ab-ready] > .fv-ab__a { display: none; }
html[data-ab="B"] .fv-ab[data-ab-ready] > .fv-ab__b { display: contents; }

/* ------------------------------------------------------------
   ヒーロー画像の B 差し替え方法 (<img> は CSS で src 不可)
   1) index.html の各 .lp2026-fv__slide を下記のように二重化:
        <div class="lp2026-fv__slide is-active" data-slide="1">
          <span class="fv-ab" data-ab-slot="hero-1" data-ab-ready>
            <span class="fv-ab__a"><picture>…A画像…</picture></span>
            <span class="fv-ab__b"><picture>…B画像…</picture></span>
          </span>
        </div>
   2) 画像 <img> には display:contents が効かないため、B側 picture を
      表示する時はラッパ span を block 扱いにする (下記が効く)。
   ------------------------------------------------------------ */
.fv-ab__b > picture,
.fv-ab__a > picture { display: block; width: 100%; height: 100%; }

/* =============================================================
   r132: モバイル パフォーマンス改善
   backdrop-filter(blur) は固定/スティッキー要素ではスクロール中ずっと
   再描画が走り、モバイルのカクつき(jank)の主因になる。
   タッチ幅(≤768px)では blur を無効化し、背景は各要素の rgba 背景で代替。
   ヘッダー等は不透明度を上げて視認性を確保する。
   ============================================================= */
@media (max-width: 768px) {
  *, *::before, *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* blur を失う分、固定ヘッダー(スクロール時)は背景を不透明寄りに */
  .header.is-scrolled,
  body.is-home .header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.96) !important;
  }
}

/* =============================================================
   r133: 英語版(Google翻訳=html.translated-ltr)の人体図ホットスポット
   長い英語ラベル(Shoulder / Upper back / Lower leg 等)が ○ から
   はみ出すため、EN時のみ折り返し可+小さめフォントで円内に収める。
   日本語表示には一切影響しない。
   ============================================================= */
/* EN時のみ円を少し大きく (SP 28→44 / PC 46→56) して長い単語も収める */
.translated-ltr body.is-home .lp2026-ms__symptom .body-map__hotspot,
.translated-ltr .body-map__hotspot {
  width: 44px !important;
  height: 44px !important;
}
.translated-ltr body.is-home .lp2026-ms__symptom .body-map__hotspot span,
.translated-ltr .body-map__hotspot span {
  white-space: normal !important;
  overflow-wrap: break-word;
  line-height: 1.05;
  font-size: 8px !important;
  text-align: center;
  padding: 0 1px;
}
@media (min-width: 769px) {
  .translated-ltr body.is-home .lp2026-ms__symptom .body-map__hotspot,
  .translated-ltr .body-map__hotspot {
    width: 56px !important;
    height: 56px !important;
  }
  .translated-ltr body.is-home .lp2026-ms__symptom .body-map__hotspot span,
  .translated-ltr .body-map__hotspot span {
    font-size: 10px !important;
  }
}

/* =============================================================
   r134: 英語版の人体図 — SPで○が大きく、パルス/リップル装飾リングが
   重なってごちゃつくため、SP(≤768px)のEN時のみ装飾アニメを停止して整理。
   (.lang-en=i18n辞書 / .translated-ltr=Google翻訳 の両EN方式に対応)
   ============================================================= */
@media (max-width: 768px) {
  .lang-en body.is-home .lp2026-ms__symptom .body-map__hotspot,
  .translated-ltr body.is-home .lp2026-ms__symptom .body-map__hotspot {
    animation: none !important;
    box-shadow: none !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 7.5px !important;
  }
  .lang-en body.is-home .lp2026-ms__symptom .body-map__hotspot::after,
  .translated-ltr body.is-home .lp2026-ms__symptom .body-map__hotspot::after {
    display: none !important;
  }
}

/* =============================================================
   r135: SPメニュー内「店舗一覧」を他のメニュー項目(トップ/料金表等)と同じ
   通常リンク表示に統一する。赤ピル背景と 📍 アイコンを解除。
   ============================================================= */
.sp-menu__shops-cta {
  display: block !important;
  align-items: initial !important;
  justify-content: initial !important;
  gap: 0 !important;
  margin-top: 0 !important;
  padding: var(--space-md) 0 !important;
  background: transparent !important;
  color: var(--color-text) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-weight: 500 !important;
  text-align: left !important;
}
.sp-menu__shops-cta::before {
  content: none !important;
  display: none !important;
}

/* =============================================================
   r134: ボディマップ ホットスポットを自動フィット・カプセル型に
   - 図(.body-map__figure)をコンテナ化し cqw(=図幅%) で可変
   - width:auto + min-width=高さ → 短いラベル(肩/首/足)=円, 長いラベル
     (股関節/大腿部/下腿部)=横長カプセル。テキストは絶対はみ出さない
   - PC/タブレット/SP すべて図幅に追従。clampで上下限をガード
   - EN(html.translated-ltr / html.lang-en)は既存の専用処理を維持(除外)
   - base(.body-map__hotspot)と is-home(body.is-home .lp2026-ms__symptom …)
     双方を同specificityで上書き(末尾配置で優先) + !important で確実化
   ============================================================= */
.body-map__figure { container-type: inline-size; }

html:not(.translated-ltr):not(.lang-en) .body-map__hotspot {
  width: auto !important;
  min-width: clamp(22px, 14cqw, 42px) !important;
  height: clamp(22px, 14cqw, 42px) !important;
  padding: 0 clamp(2px, 2.2cqw, 8px) !important;
  border-radius: 999px !important;
  font-size: clamp(8px, 3.6cqw, 12.5px) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: center;
}
html:not(.translated-ltr):not(.lang-en) .body-map__hotspot span {
  white-space: nowrap !important;
  display: inline !important;
}

/* =============================================================
   r136: フッターSP 1行目(About/Menu/Symptoms)のタイトル高さを2行ぶんに揃え、
   About「NAORU整体院について」を「NAORU整体院 / について」で改行させる。
   ============================================================= */
@media (max-width: 768px) {
  /* display:block にしないと inline-block のベースライン差で1行/2行タイトルの
     上端が数pxずれる。block + min-height で上端を揃える。 */
  body .footer__nav--cards .footer__nav-col:first-child .footer-block__title {
    display: block;
    min-height: 2.7em;
  }
  body .footer__nav--cards .footer__nav-col:first-child .footer-block:first-child .footer-block__title {
    max-width: 7em;
  }
}
