/* ================================================================
   SOLAIRO style-5.css  — v6
   overhaul: depth / light / animation / color / FV overlap layout
================================================================ */
:root {
  --bg0: #fbf7f1;
  --ink:  rgba(18,18,18,.90);
  --ink2: rgba(18,18,18,.66);
  --ink3: rgba(18,18,18,.46);
  --navy: #1b2a55;
  --gold: #c7a56a;
  --rose: #b85c6e;
  --pN: 27,42,85;
  --pG: 199,165,106;
  --pM: 184,56,92;
  --pR: 184,92,110;
  --pT: 24,138,150;
  --pO: 210,92,36;
  --line: rgba(18,18,18,.09);
  --radius:  22px;
  --radius2: 28px;
  --shadow:  0 4px 6px rgba(10,16,32,.04),
             0 12px 28px rgba(10,16,32,.08),
             0 32px 64px rgba(10,16,32,.10);
  --shadow2: 0 2px 4px rgba(10,16,32,.04),
             0 8px 20px rgba(10,16,32,.07),
             0 20px 40px rgba(10,16,32,.08);
  --shadow-card: 0 1px 2px rgba(10,16,32,.04),
                 0 4px 12px rgba(10,16,32,.06),
                 0 12px 24px rgba(10,16,32,.07);
  --mincho: "Zen Old Mincho", serif;
  --sans:   "Noto Sans JP", sans-serif;
  --container: 1200px;
  --measure: 70ch;
  --headerH: 100px;
  --headerLogoH: 76px;
  --padY: 86px;
  --padX: 64px;
  --gap: 60px;
  --tex2: url("images/texture2.png");
  --tex3: url("images/texture3.png");
  --tex4: url("images/texture4.png");
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  height: auto;
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0; font-family: var(--sans); color: var(--ink);
  background: var(--bg0);
  overflow-x: hidden; min-height: 100vh;
  display: flex; flex-direction: column;
}
main { flex: 1 0 auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }

/* ── page background ── */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(1400px 900px at 8%  8%,  rgba(199,165,106,.09), transparent 55%),
    radial-gradient(1200px 800px at 92% 12%, rgba(27,42,85,.07),    transparent 52%),
    radial-gradient(900px  600px at 50% 90%, rgba(184,92,110,.05),  transparent 58%),
    linear-gradient(160deg, #fdf9f4 0%, #f8f1e8 55%, #f2e8de 100%);
}

.canvas-weave {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .40;
  background:
    repeating-linear-gradient(0deg,  rgba(18,18,18,.016) 0 1px, transparent 1px 10px),
    repeating-linear-gradient(90deg, rgba(18,18,18,.012) 0 1px, transparent 1px 12px);
  mix-blend-mode: multiply;
}
.grain {
  position: fixed; inset: -80px; z-index: -1; pointer-events: none; opacity: .07;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(0,0,0,.16) 0 1px, transparent 8px),
    radial-gradient(circle at 58% 68%, rgba(0,0,0,.12) 0 1px, transparent 9px),
    radial-gradient(circle at 84% 34%, rgba(0,0,0,.14) 0 1px, transparent 10px),
    radial-gradient(circle at 26% 82%, rgba(0,0,0,.12) 0 1px, transparent 9px);
  background-size: 180px 180px, 220px 220px, 240px 240px, 210px 210px;
  mix-blend-mode: multiply; transform: rotate(-1.5deg);
}

/* ================================================================
   PRELOADER
================================================================ */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff; overflow: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}
body.ready .intro {
  opacity: 0; visibility: hidden; pointer-events: none;
  display: none !important;
}
.intro-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.intro-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; pointer-events: none;
  padding: 0 32px;
  box-sizing: border-box;
  overflow: hidden;
}
.intro-logo-img {
  height: 180px; width: auto;
  object-fit: contain;
  display: block;
  opacity: 0; transform: scale(.94);
  transition: opacity .8s ease, transform .8s var(--ease-out);
  filter: drop-shadow(0 4px 24px rgba(255,255,255,.9));
}
.intro-logo-img.show { opacity: 1; transform: scale(1); }
.intro-tagline {
  margin: 0; font-family: var(--mincho);
  font-size: 26px;
  letter-spacing: .22em;
  white-space: nowrap;
  color: rgba(255,255,255,.0); transition: color .8s ease .3s;
}
.intro-logo-img.show ~ .intro-tagline,
.intro-overlay:has(.intro-logo-img.show) .intro-tagline { color: rgba(255,255,255,.85); }
.intro-skip {
  position: absolute; bottom: 28px; right: 28px;
  font-family: var(--sans); font-size: 11px; letter-spacing: .18em;
  color: rgba(255,255,255,.70);
  background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: 7px 16px; cursor: pointer;
  transition: background .2s, color .2s; backdrop-filter: blur(4px);
}
.intro-skip:hover { background: rgba(0,0,0,.30); color: rgba(255,255,255,.95); }

/* ================================================================
   HEADER — 変更なし
================================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--headerH); display: flex; align-items: center;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(251,247,241,.94), rgba(251,247,241,.78));
  border-bottom: 1px solid rgba(18,18,18,.08);
  transform: translateY(0);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.header.is-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}
/* fixed header 分のオフセット */
main { padding-top: var(--headerH); }
.header-inner {
  height: 100%; display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center; gap: 18px;
}
.brand { display: flex; align-items: center; height: 100%; line-height: 0; }
.header-logo { height: var(--headerLogoH); width: auto; display: block; }
.nav {
  display: flex; align-items: center; justify-content: center; gap: 30px;
  font-size: 14px; letter-spacing: .10em;
  color: rgba(18,18,18,.82); white-space: nowrap; justify-self: center; font-weight: 500;
}
.nav a { position: relative; padding: 8px 4px; opacity: .90; transition: opacity .2s; }
.nav a:hover { opacity: 1; }
.nav a::before {
  content: ""; position: absolute; left: -10px; right: -10px; top: 3px; bottom: 3px;
  border-radius: 999px;
  background:
    radial-gradient(16px 12px at 18% 55%, rgba(var(--pT),.45), transparent 70%),
    radial-gradient(18px 14px at 42% 45%, rgba(var(--pM),.42), transparent 72%),
    radial-gradient(20px 16px at 66% 58%, rgba(var(--pG),.45), transparent 74%),
    radial-gradient(18px 14px at 86% 48%, rgba(var(--pO),.40), transparent 72%);
  filter: blur(9px) saturate(1.25);
  opacity: 0; transform: scale(.92);
  transition: opacity .22s, transform .22s; z-index: -1;
}
.nav a:hover::before { opacity: .95; transform: scale(1); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--pT),.65), rgba(var(--pM),.60), rgba(var(--pG),.65), transparent);
  border-radius: 999px; transform: scaleX(0); transform-origin: center; transition: transform .24s;
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 10px; justify-self: end; }

/* ── Buttons（グローバル） ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px; font-size: 13px; letter-spacing: .06em;
  border: 1px solid rgba(27,42,85,.22); background: rgba(255,255,255,.75);
  color: rgba(18,18,18,.82); box-shadow: var(--shadow-card);
  transition: transform .18s, background .18s, box-shadow .18s; cursor: pointer; user-select: none;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.96); box-shadow: var(--shadow2); }
.btn.primary {
  border-color: rgba(27,42,85,.65);
  background: linear-gradient(160deg, rgba(27,42,85,.92), rgba(15,22,50,.96));
  color: rgba(255,255,255,.94);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,.12);
}
.btn.primary:hover {
  background: linear-gradient(160deg, rgba(27,42,85,.98), rgba(15,22,50,1));
  box-shadow: var(--shadow2), inset 0 1px 0 rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.iconbtn {
  width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center;
  border: 1px solid rgba(27,42,85,.22); background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-card); transition: transform .18s, background .18s, box-shadow .18s;
  color: rgba(18,18,18,.82);
}
.iconbtn:hover { transform: translateY(-2px); background: rgba(255,255,255,.96); box-shadow: var(--shadow2); }

#navToggle { display: none; }
.burger {
  display: none; width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid rgba(27,42,85,.22); background: rgba(255,255,255,.72);
  align-items: center; justify-content: center; cursor: pointer;
}
.burger i { width: 18px; height: 2px; background: rgba(18,18,18,.82); position: relative; display: block; }
.burger i::before, .burger i::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: rgba(18,18,18,.82); }
.burger i::before { top: -6px; } .burger i::after { top: 6px; }
.drawer { display: none; }
.drawerBg {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,.36);
  opacity: 0; visibility: hidden;
  pointer-events: none !important;
  display: none;
  transition: opacity .38s var(--ease-out), visibility .38s var(--ease-out);
  backdrop-filter: blur(0);
}
.drawerBg.is-open {
  display: block;
  opacity: 1; visibility: visible;
  pointer-events: auto !important;
  backdrop-filter: blur(3px);
}

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative; z-index: 0;
  height: calc(100vh - var(--headerH));
  max-height: calc(100vh - var(--headerH));
  display: flex; flex-direction: column;
  overflow: hidden;
}

.hero-grid {
  flex: 1 1 auto; min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  align-items: center;
  padding-top: 40px; padding-bottom: 20px;
  position: relative; z-index: 2;
}

/* テキスト側：z-indexで画像の前面に */
.hero-copy {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
}

/* 縦書きタイトル */
.hero-title { margin: 0 0 32px; display: flex; align-items: flex-start; }
.hero-title-vt {
  display: block;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--mincho); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 50px);
  letter-spacing: .16em; line-height: 1.6;
  color: rgba(18,18,18,.88);
  border-left: 3px solid rgba(var(--pG),.55);
  padding-left: 18px;
  opacity: 0; transform: translateY(-18px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
body.ready .hero-title-vt { opacity: 1; transform: translateY(0); }

/* FV：data-reveal が未発火でもプリロード後にテキストを表示（motion.js 欠落時の安全弁） */
body.ready .hero [data-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* サブテキスト */
.hero-lead {
  margin: 0 0 28px;
  font-size: 12.5px; line-height: 2.3;
  color: rgba(18,18,18,.48); letter-spacing: .06em;
  padding-left: 21px;
  position: relative;
  opacity: 0; transform: translateY(10px);
  transition: opacity .7s var(--ease-out) .15s, transform .7s var(--ease-out) .15s;
}
body.ready .hero-lead { opacity: 1; transform: translateY(0); }
.hero-lead::before {
  content: "";
  position: absolute; inset: -12px -20px -12px -28px;
  background: radial-gradient(ellipse at 30% 50%,
    rgba(253,249,244,.88) 0%,
    rgba(253,249,244,.60) 50%,
    transparent 80%);
  pointer-events: none; z-index: -1;
}

/* ボタン群 */
.hero-actions {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-start; padding-left: 21px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .7s var(--ease-out) .28s, transform .7s var(--ease-out) .28s;
}
body.ready .hero-actions { opacity: 1; transform: translateY(0); }

/* プライマリ：くすみローズ、やさしく目立つ */
.hero-actions .btn.primary {
  border: 1.5px solid rgba(var(--pR),.36);
  background: linear-gradient(145deg, rgba(255,255,255,.82) 0%, rgba(var(--pR),.06) 100%);
  color: rgba(var(--pR),.88);
  box-shadow: 0 1px 3px rgba(var(--pR),.08), 0 4px 16px rgba(var(--pR),.10), inset 0 1px 0 rgba(255,255,255,.90);
  font-size: 13px; padding: 13px 26px;
  letter-spacing: .08em; font-weight: 600;
  line-height: 1.5; text-align: center;
  backdrop-filter: blur(6px);
  transition: all .22s var(--ease-out);
}
.hero-actions .btn.primary:hover {
  background: linear-gradient(145deg, rgba(255,255,255,.95) 0%, rgba(var(--pR),.10) 100%);
  box-shadow: 0 2px 6px rgba(var(--pR),.10), 0 8px 28px rgba(var(--pR),.16), inset 0 1px 0 rgba(255,255,255,.98);
  transform: translateY(-2px); color: rgba(var(--pR),1);
}
.hero-actions .btn.primary small {
  display: block; font-size: 10px; font-weight: 400;
  opacity: .62; letter-spacing: .10em; margin-top: 2px;
}

/* セカンダリ */
.hero-actions .btn:not(.primary) {
  font-size: 12px; padding: 9px 20px;
  border-color: rgba(18,18,18,.14);
  background: rgba(255,255,255,.45);
  color: rgba(18,18,18,.55); box-shadow: none;
  backdrop-filter: blur(4px);
}
.hero-actions .btn:not(.primary):hover {
  background: rgba(255,255,255,.75); color: rgba(18,18,18,.78);
  transform: translateY(-1px); box-shadow: var(--shadow-card);
}

/* 画像側：左に食い込む */
.visual-wrap {
  position: relative; display: flex; flex-direction: column;
  align-items: center; gap: 12px; z-index: 2;
  min-height: 0; height: 100%; justify-content: center;
  margin-left: -12%;
  opacity: 0; transform: translateX(20px);
  transition: opacity .8s var(--ease-out) .1s, transform .8s var(--ease-out) .1s;
}
body.ready .visual-wrap { opacity: 1; transform: translateX(0); }
/* プリローダー不具合時の安全弁（約5.5秒後にFVを表示） */
@keyframes fvRevealFallback {
  to { opacity: 1; transform: translateX(0); }
}
.visual-wrap {
  animation: fvRevealFallback 0s 5.5s forwards;
}
.hero-title-vt {
  animation: fvRevealFallback 0s 4.2s forwards;
}

.hero-paint { position: absolute; inset: -28px -34px; z-index: 1; pointer-events: none; }
.hero-paint .blob { position: absolute; width: min(560px, 76%); max-width: 560px; }
.hero-paint .blob.tr { right: -160px; top: -130px; --tex-img: var(--tex4); --tex-op: .12; --tex-bl: 18px; --tex-rt: 8deg; --tex-sc: 1.06; }
.hero-paint .blob.bl { left: -180px; bottom: -170px; --tex-img: var(--tex3); --tex-op: .10; --tex-bl: 18px; --tex-rt: -10deg; --tex-sc: 1.05; }

.slideshow {
  position: relative; width: 100%;
  max-height: calc(100vh - var(--headerH) - 130px);
  aspect-ratio: 4/5; z-index: 2;
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.55);
  background: #fff; overflow: hidden;
}

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.0s ease;
  display: flex; align-items: center; justify-content: center;
}
.slide.is-active { opacity: 1; }
.slide .slide-frame {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
  border-radius: var(--radius2); background: #fff;
}
picture.opt-img { display: contents; }
.slide-bg {
  position: absolute; inset: -12px;
  width: calc(100% + 24px); height: calc(100% + 24px);
  object-fit: cover;
  filter: blur(22px) saturate(1.08); opacity: .20; transform: scale(1.04);
}
.slide-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.slide[data-ratio="landscape"] .slide-img { object-fit: contain; }
.slide[data-ratio="landscape"] .slide-bg {
  opacity: .50; filter: blur(30px) saturate(1.35) brightness(.92);
}
.slide.is-active .slide-img { animation: heroZoom 8s linear both; }
@keyframes heroZoom { from { transform: scale(1.01); } to { transform: scale(1.05); } }

.slide-dots { display: flex; gap: 8px; justify-content: center; position: relative; z-index: 3; }
.dot-btn {
  width: 7px; height: 7px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: rgba(18,18,18,.16); transition: background .25s, transform .25s;
}
.dot-btn.active { background: rgba(var(--pR),.65); transform: scale(1.35); }

.scroll-cue {
  flex-shrink: 0; height: 38px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: rgba(18,18,18,.34); letter-spacing: .18em; font-size: 10px; user-select: none;
}
.scroll-cue span { width: 26px; height: 1px; background: rgba(27,42,85,.16); }
.scroll-cue i {
  width: 7px; height: 7px;
  border-right: 1px solid rgba(27,42,85,.32); border-bottom: 1px solid rgba(27,42,85,.32);
  transform: rotate(45deg); animation: scrollDown 1.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0%,100% { transform: translateY(0) rotate(45deg); opacity: .34; }
  50%      { transform: translateY(5px) rotate(45deg); opacity: .80; }
}

/* ================================================================
   SCROLL REVEAL — フェードアップ（PC/SP共通・クリップ対策は panel overflow）
================================================================ */
[data-reveal],
[data-reveal="left"],
[data-reveal="right"],
[data-reveal="scale"] {
  opacity: 0;
  transition:
    opacity .85s var(--ease-out),
    transform .85s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal]         { transform: translate3d(0, 14px, 0); }
[data-reveal="left"]  { transform: translate3d(-18px, 0, 0); }
[data-reveal="right"] { transform: translate3d(18px, 0, 0); }
[data-reveal="scale"] { transform: translate3d(0, 8px, 0) scale(.98); }
[data-reveal].in,
[data-reveal="left"].in,
[data-reveal="right"].in,
[data-reveal="scale"].in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 768px) {
  [data-reveal],
  [data-reveal="left"],
  [data-reveal="right"],
  [data-reveal="scale"] {
    transition-duration: .7s;
  }
  [data-reveal]         { transform: translate3d(0, 10px, 0); }
  [data-reveal="left"]  { transform: translate3d(-12px, 0, 0); }
  [data-reveal="right"] { transform: translate3d(12px, 0, 0); }
}

body.reduce-motion [data-reveal],
body.reduce-motion [data-reveal="left"],
body.reduce-motion [data-reveal="right"],
body.reduce-motion [data-reveal="scale"] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ================================================================
   SECTIONS
================================================================ */
.section {
  position: relative; isolation: isolate;
  padding-top: 52px; padding-bottom: 52px;
  margin-top: var(--gap); margin-bottom: var(--gap);
}
.section:first-of-type { margin-top: 0; }
.section:last-of-type  { margin-bottom: 0; }
.section + .section::before {
  content: ""; position: absolute;
  top: calc(-1 * var(--gap) / 2); left: 50%; transform: translateX(-50%);
  width: min(var(--container), calc(100% - 48px)); height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--pG),.28) 20%,
    rgba(var(--pR),.18) 50%,
    rgba(var(--pN),.22) 80%,
    transparent 100%);
  pointer-events: none; z-index: 0;
}
.section > .container { position: relative; z-index: 1; }

.panel {
  position: relative; isolation: isolate;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.68);
  background: linear-gradient(160deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.80) 100%);
  box-shadow: var(--shadow2), inset 0 1px 0 rgba(255,255,255,.90), inset 0 -1px 0 rgba(18,18,18,.04);
  overflow: hidden;
}
.panel::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(980px 620px at 100%   0%, rgba(var(--washA,27,42,85), var(--wAop,.10)), transparent 62%),
    radial-gradient(980px 620px at   0% 100%, rgba(var(--washB,199,165,106), var(--wBop,.09)), transparent 62%);
}
.panel::after {
  content: ""; position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.80), transparent);
  pointer-events: none; z-index: 3;
}
.panel[data-theme="navy"] { --washA: var(--pN); --wAop:.10; --washB: var(--pG); --wBop:.07; --texA: var(--tex2); --texB: var(--tex4); }
.panel[data-theme="gold"] { --washA: var(--pG); --wAop:.09; --washB: var(--pN); --wBop:.06; --texA: var(--tex4); --texB: var(--tex3); }
.panel[data-theme="mag"]  { --washA: var(--pM); --wAop:.08; --washB: var(--pG); --wBop:.07; --texA: var(--tex3); --texB: var(--tex2); }
.panel[data-theme="teal"] { --washA: var(--pT); --wAop:.08; --washB: var(--pN); --wBop:.06; --texA: var(--tex2); --texB: var(--tex3); }
.panel[data-theme="mix"]  { --washA: var(--pN); --wAop:.09; --washB: var(--pG); --wBop:.09; --texA: var(--tex4); --texB: var(--tex2); }
.panel-inner { position: relative; z-index: 2; padding: var(--padY) var(--padX); }

.paint-orb { width: 100%; height: auto; aspect-ratio: 1; display: block; opacity: 0; pointer-events: none; }
.hero-paint .blob,
.panel .paint .blob { isolation: isolate; aspect-ratio: 1; position: relative; }
.hero-paint .blob::before,
.panel .paint .blob::before {
  content: ""; position: absolute; inset: -18%;
  background-image:
    radial-gradient(circle at 38% 34%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(circle at 62% 66%, rgba(0,0,0,.08), transparent 62%),
    var(--tex-img, var(--tex3));
  background-size: cover; background-repeat: no-repeat; background-position: center;
  background-blend-mode: multiply;
  opacity: var(--tex-op, .20);
  filter: blur(var(--tex-bl, 12px)) saturate(1.05) contrast(1.02);
  transform: rotate(var(--tex-rt, 0deg)) scale(var(--tex-sc, 1.04));
  mix-blend-mode: multiply; pointer-events: none; z-index: 0;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 0 62%, #000 78% 100%);
  mask-image:         radial-gradient(circle at 50% 50%, transparent 0 62%, #000 78% 100%);
}
.panel .paint { position: absolute; pointer-events: none; z-index: 1; }
.panel .paint.tr { right: -170px; top: -170px; }
.panel .paint.bl { left: -190px; bottom: -190px; }
.panel .paint .blob { width: 560px; max-width: 560px; }
.panel[data-theme] .paint.tr .blob { --tex-img: var(--texA, var(--tex3)); --tex-op: .20; --tex-bl: 12px; --tex-rt: 7deg;  --tex-sc: 1.04; }
.panel[data-theme] .paint.bl .blob { --tex-img: var(--texB, var(--tex4)); --tex-op: .18; --tex-bl: 13px; --tex-rt: -9deg; --tex-sc: 1.05; }

/* ================================================================
   DECO
================================================================ */
.deco-scatter { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.deco { position: absolute; }
.deco-brush  { top: 8%;  right: 5%;  opacity: .7; transform: rotate(12deg); }
.deco-circle1{ top: 3%;  left: 3%;   opacity: .6; }
.deco-paw    { bottom: 6%; right: 8%; opacity: .7; }
.deco-circle2{ bottom: 12%; left: 6%; opacity: .6; }
.deco-dot1   { top: 18%; right: 18%; opacity: .8; }
.deco-dot2   { bottom: 22%; left: 14%; opacity: .7; }
.deco-line1  { top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-6deg); opacity: .5; }

/* ================================================================
   SEC HEAD
================================================================ */
.sec-head { position: relative; z-index: 2; }
.sec-head.centered { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.sec-head.centered .kicker { justify-content: center; }
.kicker { font-size: 11px; letter-spacing: .20em; color: rgba(18,18,18,.50); display: flex; align-items: center; gap: 10px; }
.kicker .dot {
  width: 10px; height: 10px; border-radius: 999px; flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(var(--pG),.90), rgba(var(--pR),.70));
  box-shadow: 0 0 0 3px rgba(var(--pG),.12);
}
.kicker .dot.alt {
  background: linear-gradient(135deg, rgba(var(--pR),.88), rgba(var(--pN),.60));
  box-shadow: 0 0 0 3px rgba(var(--pR),.10);
}
.sec-head h2 {
  margin: 14px 0 0; font-family: var(--mincho); font-weight: 700;
  letter-spacing: .06em; line-height: 1.28;
  font-size: clamp(24px, 2.6vw, 36px); color: rgba(18,18,18,.90);
  position: relative; padding-bottom: 20px;
}
.sec-head h2::after {
  content: ""; position: absolute;
  left: 0; bottom: 0;
  width: 200px; height: 4px; border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(var(--pG),.50) 0%,
    rgba(var(--pR),.30) 55%,
    transparent 100%);
}
.sec-head.centered h2::after {
  left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--pG),.45) 25%,
    rgba(var(--pR),.28) 60%,
    transparent 100%);
}
.sec-head:not(.centered) h2::after {
  left: 0; transform: none;
}
.sec-head p.lead {
  margin: 20px 0 0;
  max-width: var(--measure);
  color: var(--ink2);
  line-height: 2.1;
  font-size: 15px;        /* 14px → 15px で少し読みやすく */
  z-index: 2; position: relative;
}
/* centered内のleadは中央揃え＋auto margin */
.sec-head.centered p.lead {
  margin-inline: auto;
  text-align: center;
}

.media {
  margin-top: 20px; border-radius: calc(var(--radius) + 10px); overflow: hidden;
  border: 1px solid rgba(255,255,255,.60);
  background: rgba(255,255,255,.60); position: relative; z-index: 2;
  box-shadow: var(--shadow-card);
}
.media img { width: 100%; object-fit: cover; display: block; }
.media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.10), transparent 40%, rgba(10,16,32,.14)); pointer-events: none; }

/* ================================================================
   CONTENT
================================================================ */
.concept-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; position: relative; z-index: 2; }
.concept-card {
  background: rgba(255,255,255,.70); border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-card);
  transition: transform .24s var(--ease-out), box-shadow .24s;
}
.concept-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.concept-icon { font-size: 22px; margin-bottom: 12px; }
.concept-card h3 { margin: 0 0 10px; font-size: 14px; font-weight: 700; letter-spacing: .06em; color: rgba(18,18,18,.88); font-family: var(--mincho); }
.concept-card p  { margin: 0; font-size: 13px; line-height: 2.0; color: var(--ink2); }

.promise-list { margin-top: 22px; position: relative; z-index: 2; }
.promise-item { display: grid; grid-template-columns: 60px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid rgba(18,18,18,.07); }
.promise-item:last-child { border-bottom: none; }
.promise-num { font-family: var(--mincho); font-weight: 700; font-size: 26px; letter-spacing: .08em; color: rgba(18,18,18,.22); line-height: 1; padding-top: 4px; }
.promise-body .h { margin: 0; font-size: 14px; letter-spacing: .06em; font-weight: 600; color: rgba(18,18,18,.90); }
.promise-body .c { margin: 8px 0 0; font-size: 13px; line-height: 1.95; color: var(--ink2); }
.sec-cta { margin-top: 28px; position: relative; z-index: 2; }

/* flow-grid / timeline は FLOW SECTION v2 で定義 */


.price-grid { margin-top: 22px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: start; position: relative; z-index: 2; }
.price-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: rgba(18,18,18,.52); text-transform: uppercase; }
.yen { font-family: var(--mincho); font-weight: 700; font-size: clamp(32px, 4vw, 50px); letter-spacing: .04em; color: rgba(18,18,18,.92); margin: 6px 0 0; }
.yen small { font-family: var(--sans); font-size: 12px; letter-spacing: .10em; color: rgba(18,18,18,.50); margin-left: 8px; }
.bullets { margin-top: 12px; display: grid; gap: 9px; border-top: 1px solid var(--line); padding-top: 12px; }
.bullets .b { display: flex; gap: 10px; align-items: flex-start; color: var(--ink2); font-size: 13px; line-height: 1.95; }
.bullets .b::before {
  content: ""; margin-top: 9px; width: 7px; height: 7px; border-radius: 99px;
  background: linear-gradient(135deg, rgba(var(--pR),.85), rgba(var(--pN),.60));
  box-shadow: 0 0 0 3px rgba(var(--pR),.10); flex: 0 0 auto;
}
.price-aside { border-top: 1px solid var(--line); padding-top: 14px; }
.price-aside h3 { margin: 0; font-size: 13px; letter-spacing: .10em; color: rgba(18,18,18,.78); font-weight: 600; }
.price-aside p { margin: 10px 0 0; color: var(--ink2); font-size: 12.5px; line-height: 2.0; }
.divider { height: 1px; background: rgba(18,18,18,.08); margin: 14px 0; }
.note { padding-left: 14px; border-left: 2px solid rgba(var(--pR),.22); color: rgba(18,18,18,.58); font-size: 12px; line-height: 1.95; }
.note b { color: rgba(18,18,18,.80); }

.faq { margin-top: 18px; border-top: 1px solid var(--line); position: relative; z-index: 2; }
details { border-bottom: 1px solid var(--line); padding: 14px 0; }
summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; font-weight: 600; letter-spacing: .06em;
  color: rgba(18,18,18,.88); font-size: 13px; transition: color .18s;
}
summary:hover { color: rgba(var(--pN),1); }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid var(--line); background: rgba(255,255,255,.65);
  color: rgba(18,18,18,.68); flex: 0 0 auto;
  transition: background .18s, transform .22s;
}
details[open] summary::after { content: "–"; transform: rotate(180deg); }
details .ans { margin-top: 10px; color: var(--ink2); font-size: 13px; line-height: 2.0; max-width: var(--measure); }

.contact-channels { margin-top: 28px; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; position: relative; z-index: 2; }
.channel-card {
  display: flex; align-items: center; gap: 14px; padding: 18px 16px;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.72); box-shadow: var(--shadow-card);
  transition: transform .22s var(--ease-out), box-shadow .22s;
}
.channel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow2); }
.channel-line { border-color: rgba(44,183,66,.22); background: rgba(44,183,66,.04); }
.channel-ig   { border-color: rgba(var(--pR),.20);  background: rgba(var(--pR),.04); }
.ch-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.80); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-card); }
.ch-body { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.ch-body b     { font-size: 13px; font-weight: 700; color: rgba(18,18,18,.88); }
.ch-body span  { font-size: 12px; color: var(--ink2); }
.ch-body small { font-size: 10px; color: var(--ink3); margin-top: 2px; }
.ch-arrow { font-size: 16px; opacity: .38; flex-shrink: 0; }

.form-lead { display: flex; align-items: center; gap: 14px; margin: 28px 0 0; position: relative; z-index: 2; }
.form-lead-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(18,18,18,.15), transparent); }
.form-lead-text { font-size: 12px; letter-spacing: .12em; color: rgba(18,18,18,.50); white-space: nowrap; }

.contact-form-wrap {
  margin-top: 16px; background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.65); border-radius: var(--radius);
  padding: 28px; position: relative; z-index: 2; box-shadow: var(--shadow-card);
}
.form-heading { margin: 0 0 16px; font-size: 12px; font-weight: 700; letter-spacing: .14em; color: rgba(18,18,18,.54); text-transform: uppercase; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-size: 12px; letter-spacing: .08em; color: rgba(18,18,18,.64); }
input, textarea {
  width: 100%; padding: 12px 14px; border-radius: 14px;
  border: 1px solid rgba(18,18,18,.10); background: rgba(255,255,255,.85);
  color: rgba(18,18,18,.90); outline: none; font-family: var(--sans); font-size: 14px;
  transition: border-color .18s, box-shadow .18s;
  box-shadow: inset 0 1px 3px rgba(18,18,18,.04);
}
input:focus, textarea:focus {
  border-color: rgba(var(--pR),.30);
  box-shadow: 0 0 0 3px rgba(var(--pR),.07), inset 0 1px 3px rgba(18,18,18,.04);
}
textarea { min-height: 120px; resize: vertical; }
.small { margin-top: 8px; color: rgba(18,18,18,.44); font-size: 12px; line-height: 1.85; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  margin-top: 34px; padding: 26px 0 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(251,247,241,.98));
  border-top: 1px solid rgba(255,255,255,.70);
  box-shadow: 0 -1px 0 rgba(18,18,18,.06);
}
.footer-inner { display: grid; grid-template-columns: max-content 1fr max-content; gap: 22px; align-items: start; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 12px; letter-spacing: .10em; color: rgba(18,18,18,.64); }
.footer-nav a { padding: 6px 0; transition: color .18s; }
.footer-nav a:hover { color: rgba(var(--pR),.90); }
.footer-legal-link {
  flex-basis: 100%;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: .06em;
  color: rgba(18,18,18,.56);
}
.footer-sns { display: flex; align-items: center; justify-content: flex-end; }
.icon-btn { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 999px; border: 1px solid rgba(18,18,18,.12); background: rgba(255,255,255,.82); box-shadow: var(--shadow-card); transition: transform .18s, box-shadow .18s; }
.icon-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow2); }
.footer-bottom { margin-top: 14px; text-align: center; font-size: 12px; letter-spacing: .08em; color: rgba(18,18,18,.46); }


/* ================================================================
   PERSONA CARDS（コンセプトセクション PC用）
================================================================ */
.persona-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.persona-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none; color: inherit;
  transition: transform .28s var(--ease-out), box-shadow .28s;
}
.persona-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.persona-card:hover .persona-cta { gap: 7px; color: rgba(var(--pR),1); }
.persona-card:hover .persona-card-img img { transform: scale(1.04); }
.persona-card-img {
  width: 100%; aspect-ratio: 1/1; overflow: hidden;
  background: rgba(253,249,244,.90);
}
.persona-card-img img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 16px;
  transition: transform .5s var(--ease-out);
}
.persona-card-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.persona-tag {
  font-family: var(--mincho); font-size: 14px; font-weight: 700;
  letter-spacing: .06em; color: rgba(18,18,18,.85);
}
.persona-lead {
  margin: 0; font-size: 12.5px; line-height: 1.9;
  color: rgba(18,18,18,.55); letter-spacing: .04em;
}
.persona-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; letter-spacing: .12em;
  color: rgba(var(--pR),.75);
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(18,18,18,.07);
  transition: gap .22s, color .22s;
}

/* ── Persona detail sections PC用 ── */
.persona-section { scroll-margin-top: calc(var(--headerH) + 16px); }
.persona-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: center;
}
.persona-detail--reverse { grid-template-columns: 1.1fr 1fr; }
.persona-detail--reverse .persona-detail-img { order: 2; }
.persona-detail--reverse .persona-detail-body { order: 1; }
.persona-detail-img {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  max-width: 360px; margin: 0 auto;
}
.persona-detail-img img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 12px 32px rgba(10,16,32,.10));
  transition: transform .6s var(--ease-out);
}
.persona-detail-img:hover img { transform: scale(1.02) translateY(-4px); }
.persona-detail-body { display: flex; flex-direction: column; gap: 20px; }
.persona-detail-h {
  margin: 8px 0 0; font-family: var(--mincho); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: .06em; line-height: 1.5;
  color: rgba(18,18,18,.88);
  position: relative; padding-bottom: 16px;
}
.persona-detail-h::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 60px; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--pG),.70), rgba(var(--pR),.50));
}
.persona-detail-lead {
  margin: 0; font-size: 14px; line-height: 2.2;
  color: rgba(18,18,18,.62); letter-spacing: .04em;
  display: flex; flex-direction: column; gap: 0;
}
.persona-detail-lead b { color: rgba(18,18,18,.88); font-weight: 600; }

/* ── Promise rows PC用 ── */
.promise-rows {
  max-width: 860px; margin: 48px auto 0;
  display: flex; flex-direction: column;
}
.promise-row {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 0 40px; align-items: start;
  padding: 32px 0; border-bottom: 1px solid rgba(18,18,18,.08);
}
.promise-row--last { border-bottom: none; }
.pr-left { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pr-num {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(var(--pG),.70);
  background: rgba(255,255,255,.90);
  box-shadow: 0 2px 8px rgba(var(--pG),.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mincho); font-size: 12px;
  letter-spacing: .14em; color: rgba(var(--pG),.90); font-weight: 600;
}
.pr-img-wrap { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.pr-img { width: 60px; height: 60px; object-fit: contain; opacity: .90; mix-blend-mode: multiply; }
.pr-body { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.pr-title {
  margin: 0; font-family: var(--mincho);
  font-size: clamp(15px, 1.5vw, 18px); font-weight: 700;
  letter-spacing: .05em; line-height: 1.55; color: rgba(18,18,18,.88);
}
.pr-text { margin: 0; font-size: 13.5px; line-height: 2.1; color: rgba(18,18,18,.65); letter-spacing: .03em; }
.sec-cta.centered { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 40px; }
.promise-cta-btn {
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 14px 34px; border-radius: 999px;
  border: 1.5px solid rgba(var(--pR),.40);
  background: linear-gradient(145deg, rgba(255,255,255,.88) 0%, rgba(var(--pR),.07) 100%);
  color: rgba(var(--pR),.90); font-size: 13px; font-weight: 600; letter-spacing: .08em;
  box-shadow: 0 2px 12px rgba(var(--pR),.10), inset 0 1px 0 rgba(255,255,255,.90);
  backdrop-filter: blur(6px); transition: all .22s var(--ease-out); text-decoration: none;
}
.promise-cta-btn small { font-size: 10px; font-weight: 400; opacity: .65; letter-spacing: .10em; }
.promise-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(var(--pR),.16); color: rgba(var(--pR),1); }

/* ── Flow section PC用 ── */
.flow-grid {
  margin-top: 40px; display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px; align-items: start; position: relative; z-index: 2;
}
.timeline { position: relative; display: flex; flex-direction: column; }
.t { position: relative; padding: 0 0 28px 44px; }
.t:last-child { padding-bottom: 0; }
.t:not(:last-child)::before {
  content: ""; position: absolute; left: 11px; top: 20px; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, rgba(var(--pT),.40) 0%, rgba(var(--pT),.08) 100%);
}
.t::after {
  content: ""; position: absolute; left: 4px; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,.96); border: 2px solid rgba(var(--pT),.55);
  box-shadow: 0 0 0 3px rgba(var(--pT),.08);
}
.t-meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.t-step { font-size: 10px; letter-spacing: .16em; color: rgba(var(--pT),.75); font-weight: 600; }
.t-title { font-family: var(--mincho); font-size: 16px; font-weight: 700; letter-spacing: .05em; color: rgba(18,18,18,.88); }
.t-desc { margin: 0; font-size: 13px; line-height: 2.0; color: rgba(18,18,18,.58); letter-spacing: .03em; }
.flow-note { display: flex; flex-direction: column; gap: 14px; position: sticky; top: calc(var(--headerH) + 20px); }
.flow-note-card {
  background: rgba(255,255,255,.80) !important; border: 1px solid rgba(var(--pT),.16) !important;
  border-radius: var(--radius) !important; padding: 22px 20px !important;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,.88) !important;
  display: flex !important; flex-direction: column !important; gap: 12px !important;
}
.flow-note-head { display: flex; align-items: center; gap: 7px; font-family: var(--mincho); font-size: 13px; font-weight: 700; color: rgba(18,18,18,.82); }
.flow-note-icon { color: rgba(var(--pG),.80); font-size: 13px; }
.flow-note-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; border-top: 1px solid rgba(18,18,18,.07); padding-top: 12px; }
.flow-note-list li { font-size: 12.5px; color: rgba(18,18,18,.64); line-height: 1.65; padding-left: 15px; position: relative; }
.flow-note-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg, rgba(var(--pT),.65), rgba(var(--pG),.55)); }
.flow-note-sub { margin: 0; font-size: 11.5px; color: rgba(18,18,18,.38); font-style: italic; text-align: right; }
.flow-cta-btn {
  display: flex !important; flex-direction: column; align-items: center; gap: 3px;
  width: 100%; padding: 13px 18px; border-radius: 999px;
  border: 1.5px solid rgba(var(--pT),.36) !important;
  background: linear-gradient(145deg, rgba(255,255,255,.88) 0%, rgba(var(--pT),.07) 100%) !important;
  color: rgba(var(--pT),.90) !important; font-size: 13px; font-weight: 600; letter-spacing: .07em;
  box-shadow: 0 2px 10px rgba(var(--pT),.07), inset 0 1px 0 rgba(255,255,255,.90) !important;
  backdrop-filter: blur(6px); transition: all .22s var(--ease-out) !important;
  text-decoration: none; text-align: center; cursor: pointer;
}
.flow-cta-btn small { font-size: 10px; font-weight: 400; opacity: .58; letter-spacing: .10em; }
.flow-cta-btn:hover { transform: translateY(-2px) !important; color: rgba(var(--pT),1) !important; }

/* ── FAQ PC用 ── */
.faq { margin-top: 18px; border-top: 1px solid var(--line); position: relative; z-index: 2; }
details { border-bottom: 1px solid var(--line); padding: 14px 0; }
summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; font-weight: 600; letter-spacing: .06em;
  color: rgba(18,18,18,.88); font-size: 13px; transition: color .18s;
}
summary:hover { color: rgba(var(--pN),1); }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid var(--line); background: rgba(255,255,255,.65);
  color: rgba(18,18,18,.68); flex: 0 0 auto;
  transition: background .18s, transform .22s;
}
details[open] summary::after { content: "–"; transform: rotate(180deg); }
details .ans { margin-top: 10px; color: var(--ink2); font-size: 13px; line-height: 2.0; max-width: var(--measure); }

/* ── Contact PC用 ── */
.contact-channels { margin-top: 28px; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; position: relative; z-index: 2; }
.channel-card {
  display: flex; align-items: center; gap: 14px; padding: 18px 16px;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.72); box-shadow: var(--shadow-card);
  transition: transform .22s var(--ease-out), box-shadow .22s;
  text-decoration: none; color: inherit;
}
.channel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow2); }
.ch-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.80); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-card); }
.ch-body { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.ch-body b { font-size: 13px; font-weight: 700; color: rgba(18,18,18,.88); }
.ch-body span { font-size: 12px; color: var(--ink2); }
.ch-body small { font-size: 10px; color: var(--ink3); margin-top: 2px; }
.ch-arrow { font-size: 16px; opacity: .38; flex-shrink: 0; }
.form-lead { display: flex; align-items: center; gap: 14px; margin: 28px 0 0; }
.form-lead-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(18,18,18,.15), transparent); }
.form-lead-text { font-size: 12px; letter-spacing: .12em; color: rgba(18,18,18,.50); white-space: nowrap; }
.contact-form-wrap {
  margin-top: 16px; background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.65); border-radius: var(--radius);
  padding: 28px; position: relative; z-index: 2; box-shadow: var(--shadow-card);
}
.form-heading { margin: 0 0 16px; font-size: 12px; font-weight: 700; letter-spacing: .14em; color: rgba(18,18,18,.54); text-transform: uppercase; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-size: 12px; letter-spacing: .08em; color: rgba(18,18,18,.64); }
input, textarea {
  width: 100%; padding: 12px 14px; border-radius: 14px;
  border: 1px solid rgba(18,18,18,.10); background: rgba(255,255,255,.85);
  color: rgba(18,18,18,.90); outline: none; font-family: var(--sans); font-size: 14px;
  transition: border-color .18s, box-shadow .18s; box-shadow: inset 0 1px 3px rgba(18,18,18,.04);
}
input:focus, textarea:focus { border-color: rgba(var(--pR),.30); box-shadow: 0 0 0 3px rgba(var(--pR),.07), inset 0 1px 3px rgba(18,18,18,.04); }
textarea { min-height: 120px; resize: vertical; }
.small { margin-top: 8px; color: rgba(18,18,18,.44); font-size: 12px; line-height: 1.85; }

/* ── Smooth scroll（JSアンカー遷移。ネイティブは auto） ── */
html { scroll-behavior: auto; }

/* ── Icon hover colors ── */
.iconbtn--line:hover, .icon-btn.iconbtn--line:hover { background: rgba(44,183,66,.12); border-color: rgba(44,183,66,.40); color: #1a9e36; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(44,183,66,.16); }
.iconbtn--ig:hover, .icon-btn.iconbtn--ig:hover { background: rgba(184,56,92,.10); border-color: rgba(184,56,92,.35); color: rgba(184,56,92,.90); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(184,56,92,.14); }
.footer-sns { display: flex; align-items: center; gap: 8px; }

/* ── Price section PC用 ── */
.price-panel-inner { padding: var(--padY) var(--padX); }
.price-layout { display: grid; grid-template-columns: 1fr 1px 0.68fr; gap: 0; align-items: start; position: relative; z-index: 2; }
.price-sp-layout { display: none; }
.price-left { padding-right: 56px; display: flex; flex-direction: column; gap: 0; }
.price-left-head { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.price-kicker { font-size: 18px !important; letter-spacing: .12em !important; color: rgba(18,18,18,.75) !important; font-weight: 700 !important; }
.price-free-note { font-size: 16px; letter-spacing: .08em; color: rgba(var(--pT),1); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.price-free-note::before { content: ""; width: 20px; height: 1.5px; background: rgba(var(--pT),.60); flex-shrink: 0; }
.price-figure { display: flex; align-items: baseline; gap: 4px; margin-bottom: 32px; line-height: 1; border-bottom: 1px solid rgba(18,18,18,.10); padding-bottom: 28px; }
.price-figure-currency { font-family: var(--sans); font-size: 20px; font-weight: 600; color: rgba(18,18,18,.55); }
.price-figure-amount { font-family: var(--sans); font-weight: 600; font-size: clamp(36px, 4.2vw, 50px); letter-spacing: -.01em; font-variant-numeric: tabular-nums; color: rgba(18,18,18,.90); }
.price-figure-tax { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .14em; color: rgba(18,18,18,.62); margin-left: 8px; align-self: flex-end; padding-bottom: 8px; }
.price-includes-list { margin: 0 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; }
.price-includes-list li { display: grid; grid-template-columns: 80px 1fr; gap: 0 16px; padding: 13px 0; border-bottom: 1px solid rgba(18,18,18,.07); align-items: baseline; }
.pil-label { font-size: 11px; letter-spacing: .14em; color: rgba(var(--pG),1); font-weight: 700; font-family: var(--mincho); }
.pil-value { font-size: 14px; color: rgba(18,18,18,.82); line-height: 1.7; font-weight: 500; }
.price-conditions { display: flex; flex-direction: column; margin-bottom: 32px; border-top: 1px solid rgba(18,18,18,.07); }
.price-cond-item { display: grid; grid-template-columns: 90px 1fr; gap: 0 16px; padding: 12px 0; border-bottom: 1px solid rgba(18,18,18,.06); align-items: baseline; }
.price-cond-label { font-size: 11px; letter-spacing: .12em; color: rgba(var(--pN),.75); font-weight: 700; font-family: var(--mincho); }
.price-cond-text { margin: 0; font-size: 13px; line-height: 1.9; color: rgba(18,18,18,.70); }
.price-cta-wrap { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.price-cta-primary {
  display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 16px 36px; border-radius: 999px;
  border: 1.5px solid rgba(var(--pN),.50);
  background: linear-gradient(160deg, rgba(27,42,85,.90), rgba(15,22,50,.96));
  color: rgba(255,255,255,.94); font-size: 14px; font-weight: 600; letter-spacing: .08em;
  box-shadow: 0 4px 18px rgba(var(--pN),.18), inset 0 1px 0 rgba(255,255,255,.12);
  transition: all .22s var(--ease-out); text-decoration: none; cursor: pointer;
}
.price-cta-primary small { font-size: 11px; font-weight: 400; opacity: .68; letter-spacing: .10em; }
.price-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(var(--pN),.24); }
.price-cta-sub { font-size: 12px; padding: 8px 20px; border: 1px solid rgba(18,18,18,.18); background: transparent; color: rgba(18,18,18,.55); box-shadow: none; letter-spacing: .08em; border-radius: 999px; text-decoration: none; transition: color .18s, border-color .18s; cursor: pointer; }
.price-cta-sub:hover { color: rgba(18,18,18,.80); border-color: rgba(18,18,18,.32); transform: none; box-shadow: none; }
.price-divider-v { width: 1px; background: linear-gradient(to bottom, transparent 0%, rgba(var(--pG),.35) 12%, rgba(var(--pG),.22) 75%, transparent 100%); align-self: stretch; }
.price-right { padding-left: 56px; display: flex; align-items: center; min-height: 100%; }
.price-quote-wrap { position: relative; padding-top: 48px; }
.price-quote-mark { position: absolute; top: -8px; left: -4px; font-family: Georgia,serif; font-size: 110px; line-height: 1; color: rgba(var(--pG),.14); pointer-events: none; user-select: none; }
.price-quote { margin: 0; padding: 0; border: none; display: flex; flex-direction: column; gap: 22px; }
.price-quote p { margin: 0; font-family: var(--mincho); font-size: clamp(15px,1.4vw,18px); line-height: 2.4; letter-spacing: .09em; color: rgba(18,18,18,.80); }
.price-quote-footer { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(var(--pG),.24); display: flex; align-items: center; gap: 12px; }
.price-quote-footer::before { content: ""; width: 28px; height: 1px; background: rgba(var(--pG),.55); }
.price-quote-author { font-size: 11px; letter-spacing: .20em; color: rgba(18,18,18,.45); font-family: var(--mincho); }


/* ================================================================
   MOBILE — 768px以下
================================================================ */
@media (max-width: 768px) {

  /* ── 変数 ── */
  :root {
    --headerH: 58px;
    --headerLogoH: 36px;
    --padY: 32px;
    --padX: 18px;
    --gap: 20px;
    --radius: 16px;
    --radius2: 20px;
  }

  /* ── Body / Base（height:100% だと実機・検証ツールで下半分が切れることがある） ── */
  html, body {
    height: auto !important;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  body { overflow-x: hidden; }
  main { padding-top: var(--headerH); flex: 1 0 auto; min-height: 0; }
  .container { width: calc(100% - 32px); }

  /* ── Preloader（モバイルのみロゴ縮小） ── */
  .intro-logo-img {
    height: auto !important;
    width: min(200px, 55vw) !important;
    max-width: 200px !important;
  }
  .intro-tagline {
    font-size: clamp(12px, 3.5vw, 18px) !important;
    letter-spacing: .12em !important;
    white-space: normal !important;
    text-align: center;
  }

  /* ── Header ── */
  .header {
    height: var(--headerH);
    overflow: hidden;
  }
  .header-inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .header-logo { height: var(--headerLogoH); }
  .nav { display: none !important; }
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
  }
  .header-cta-btn { display: none !important; }
  .header-sns-btn { display: none !important; }
  .burger {
    display: flex !important;
    width: 40px; height: 40px;
    flex-shrink: 0;
  }
  .iconbtn { width: 36px; height: 36px; }

  /* ── Drawer ── */
  .drawer {
    display: block;
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(300px, 82vw);
    transform: translateX(102%);
    transition: transform .42s cubic-bezier(.22, 1, .36, 1);
    background: rgba(251,247,241,.98);
    border-left: 1px solid var(--line);
    backdrop-filter: blur(12px);
    z-index: 1200;
    padding: 14px;
    overflow-y: auto;
  }
  .drawer-top {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 10px;
  }
  .drawer-links { display: flex; flex-direction: column; gap: 6px; }
  .drawer-links a {
    display: block; padding: 13px 14px;
    border-radius: 10px;
    border: 1px solid rgba(18,18,18,.08);
    background: rgba(255,255,255,.80);
    font-size: 14px; letter-spacing: .05em;
    color: rgba(18,18,18,.85); font-weight: 500;
  }
  .drawer.is-open {
    transform: translateX(0);
    pointer-events: auto !important;
    visibility: visible;
  }
  body.nav-open .drawerBg.is-open {
    opacity: 1; visibility: visible;
    pointer-events: auto !important;
  }

  /* ── Hero ── */
  /* ── Hero（FV）B案：画像上・テキスト下 ── */
  .hero {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
    min-height: calc(100dvh - var(--headerH));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 auto;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 0 !important;
    width: 100%;
  }

  /* 画像：上（order:1） */
  .visual-wrap {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: auto !important;
    opacity: 1 !important;
    transform: none !important;
    flex-shrink: 0;
    position: relative;
  }
  /* SP：画面外にはみ出す装飾のみ非表示（画像・レイアウトは維持） */
  .hero-paint { display: none !important; }
  .slideshow {
    max-height: none !important;
    width: 100% !important;
    aspect-ratio: 4/5 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
  .slide .slide-frame { border-radius: 0 !important; }
  .slide-dots {
    position: absolute !important;
    bottom: 10px;
    right: 12px !important;
    left: auto !important;
    justify-content: flex-end;
    z-index: 10;
  }

  /* テキスト：下（order:2） */
  .hero-copy {
    order: 2 !important;
    padding: 20px var(--padX) 16px !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-title { margin-bottom: 0 !important; }
  .hero-title-vt {
    writing-mode: horizontal-tb !important;
    font-size: clamp(22px, 6.5vw, 28px) !important;
    letter-spacing: .04em !important;
    line-height: 1.4 !important;
    border-left: none !important;
    padding-left: 0 !important;
    border-bottom: 2px solid rgba(var(--pG),.45) !important;
    padding-bottom: 10px !important;
    display: block !important;
    width: 100% !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-lead {
    padding-left: 10px !important;
    border-left: 2px solid rgba(var(--pG),.55) !important;
    font-size: 12.5px !important;
    line-height: 1.85 !important;
    margin-bottom: 0 !important;
    color: rgba(18,18,18,.62) !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-actions { display: none !important; }
  .scroll-cue {
    order: 3 !important;
    height: 34px !important;
    font-size: 9px !important;
    flex-shrink: 0;
    margin-top: 4px !important;
  }


  /* ── Section共通 ── */
  .section {
    margin-top: var(--gap);
    margin-bottom: var(--gap);
    padding-top: 0;
    padding-bottom: 0;
  }
  .panel-inner { padding: var(--padY) var(--padX); }
  .paint.tr, .paint.bl { display: none; }
  .deco-scatter { display: none; }

  .sec-head { margin-bottom: 20px; }
  .sec-head h2 {
    font-size: clamp(19px, 5.5vw, 24px) !important;
    letter-spacing: .03em;
    line-height: 1.4;
    padding-bottom: 14px;
  }
  .sec-head h2::after { width: 160px; height: 3px; }
  .sec-head p.lead { font-size: 13px; line-height: 1.9; margin-top: 12px; }
  .sec-head.centered p.lead { text-align: left; }
  .kicker { font-size: 10px; letter-spacing: .14em; }

  /* ── Concept：ペルソナカード ── */
  .persona-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    margin-top: 24px;
  }
  .persona-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    border-radius: 14px;
    overflow: hidden;
  }
  .persona-card-img {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px;
    aspect-ratio: 1 !important;
    flex-shrink: 0;
    border-radius: 0;
  }
  .persona-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    padding: 8px;
  }
  .persona-card-body {
    padding: 10px 12px;
    gap: 4px;
  }
  .persona-tag { font-size: 12.5px; letter-spacing: .03em; }
  .persona-lead { font-size: 11.5px; line-height: 1.65; }
  .persona-cta { font-size: 10px; padding-top: 6px; margin-top: 2px; }

  /* ── Persona detail sections ── */
  .persona-section { scroll-margin-top: calc(var(--headerH) + 8px); }

  .persona-detail,
  .persona-detail--reverse {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }
  .persona-detail > *,
  .persona-detail--reverse > * { order: 0 !important; }

  .persona-detail-img {
    max-width: 180px !important;
    margin: 0 auto !important;
    display: block;
  }
  .persona-detail-img img { filter: none; }

  .persona-detail-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .persona-detail-h {
    font-size: clamp(17px, 5vw, 21px) !important;
    line-height: 1.45;
    padding-bottom: 10px;
  }
  .persona-detail-h::after { width: 40px; height: 1.5px; }
  .persona-detail-lead {
    font-size: 13px !important;
    line-height: 1.95 !important;
    gap: 8px;
  }
  .persona-detail-body .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
    font-size: 13px;
  }

  /* ── Promise ── */
  .promise-h2 { letter-spacing: .02em !important; }
  .promise-rows { max-width: 100%; margin-top: 24px; }
  .promise-row {
    grid-template-columns: 64px 1fr;
    gap: 0 12px;
    padding: 16px 0;
  }
  .pr-left { gap: 6px; }
  .pr-num { width: 28px; height: 28px; font-size: 9px; border-width: 1px; }
  .pr-img-wrap { width: 44px; height: 44px; }
  .pr-img { width: 32px; height: 32px; }
  .pr-body { gap: 5px; padding-top: 2px; }
  .pr-title { font-size: 13.5px; line-height: 1.5; }
  .pr-text { font-size: 12px; line-height: 1.85; }
  .sec-cta.centered { margin-top: 24px; }
  .promise-cta-btn { width: 100%; justify-content: center; padding: 13px 20px; font-size: 13px; }

  /* ── Flow ── */
  .flow-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    margin-top: 24px;
  }
  .flow-note { position: static !important; max-width: 100%; gap: 10px; }
  .flow-note-card { padding: 16px 14px !important; gap: 10px !important; }
  .flow-note-head { font-size: 13px; }
  .flow-note-list { gap: 6px; padding-top: 10px; }
  .flow-note-list li { font-size: 12px; }
  .flow-cta-btn { font-size: 13px; padding: 12px 14px; }
  .t { padding: 0 0 20px 36px; }
  .t:not(:last-child)::before { left: 7px; top: 20px; }
  .t::after { left: 0; top: 4px; width: 14px; height: 14px; }
  .t-meta { gap: 8px; margin-bottom: 6px; }
  .t-step { font-size: 9px; letter-spacing: .14em; }
  .t-title { font-size: 14.5px; }
  .t-desc { font-size: 12.5px; line-height: 1.9; margin-top: 6px; }

  /* ── Price ── */
  .price-layout { display: none !important; }
  .price-sp-layout {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  .price-sp-head { margin-bottom: 14px; }
  .price-kicker { font-size: 14px !important; }
  .price-sp-hero {
    padding: 26px 20px 22px;
    margin-bottom: 18px;
    border-radius: 20px;
  }
  .price-sp-free { font-size: 11.5px; margin-bottom: 14px; }
  .price-sp-includes {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
  }
  .price-sp-includes li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 10px;
    align-items: baseline;
    font-size: 12.5px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(18,18,18,.07);
  }
  .price-sp-includes li > span:first-child {
    font-size: 11px;
    letter-spacing: .10em;
    color: rgba(var(--pG), 1);
    font-weight: 700;
    font-family: var(--mincho);
  }
  .price-sp-quote { padding: 16px 14px 14px 18px; margin-bottom: 16px; }
  .price-sp-quote-mark { font-size: 44px; }
  .price-sp-quote-text { font-size: 13px; line-height: 1.95; }
  .price-sp-conditions { margin-bottom: 20px; }
  .price-sp-detail summary { font-size: 12.5px; padding: 12px 0; }
  .price-sp-detail p { font-size: 12px; padding-bottom: 12px; }
  .price-sp-cta { gap: 8px; }
  .price-sp-cta .price-cta-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    font-size: 13.5px;
  }
  .price-sp-cta .price-cta-sub { font-size: 11.5px; }

  /* ── FAQ ── */
  .faq { margin-top: 14px; }
  details { padding: 0; }
  details summary {
    font-size: 13px;
    padding: 14px 4px;
    line-height: 1.5;
  }
  summary::after { width: 24px; height: 24px; font-size: 15px; }
  details .ans {
    font-size: 12.5px;
    line-height: 1.9;
    padding: 0 4px 14px;
    margin-top: 0;
  }

  /* ── Contact ── */
  .contact-channels {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
    margin-top: 18px;
  }
  .channel-card { padding: 14px 12px; gap: 10px; border-radius: 14px; }
  .ch-icon { width: 40px; height: 40px; border-radius: 10px; }
  .ch-body b { font-size: 13px; }
  .ch-body span { font-size: 11.5px; }
  .ch-body small { font-size: 10px; }
  .form-lead { margin-top: 18px; }
  .form-lead-text {
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }
  .contact-form-wrap { padding: 18px 14px; margin-top: 10px; border-radius: var(--radius); }
  .form-heading { font-size: 11px; }
  .form { gap: 10px; }
  label { font-size: 11.5px; gap: 5px; }
  input, textarea {
    font-size: 16px; /* iOSズーム防止 */
    padding: 11px 12px;
    border-radius: 10px;
  }
  textarea { min-height: 100px; }
  .btn.primary[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    justify-content: center;
  }
  .small { font-size: 11px; }

  /* ── Footer ── */
  .site-footer { padding: 22px 0 14px; margin-top: 20px; }
  .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px;
  }
  .footer-nav {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 8px;
    font-size: 11px;
  }
  .footer-nav a { padding: 3px 0; }
  .footer-sns { justify-content: flex-start; gap: 8px; }
  .footer-bottom { font-size: 10px; margin-top: 10px; letter-spacing: .04em; }

} /* end @media 768px */

/* ── 375px以下 ── */
@media (max-width: 375px) {
  :root { --padX: 14px; }
  .hero-title-vt { font-size: clamp(21px, 7vw, 26px); }
  .persona-card-img { width: 76px !important; min-width: 76px !important; height: 76px !important; }
  #price .price-sp-amount { font-size: 30px !important; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-legal-link {
    grid-column: 1 / -1;
    font-size: 11px !important;
    line-height: 1.55 !important;
    letter-spacing: .06em !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], [data-reveal="left"], [data-reveal="right"], [data-reveal="scale"] { opacity: 1 !important; transform: none !important; }
  .hero-title-vt, .hero-lead, .hero-actions, .visual-wrap { opacity: 1 !important; transform: none !important; }
  .scroll-cue { display: none; }
}

/* ================================================================
   HERO SP追加スタイル
================================================================ */

/* ドット右下配置 */
.slide-dots--br {
  position: absolute !important;
  bottom: 10px !important;
  right: 12px !important;
  left: auto !important;
  z-index: 10;
}

/* 見出し文字アニメーション */
/* PC：ゆっくり */
.hero-char-anim .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  animation: charFadeIn .8s var(--ease-out) forwards;
}
@keyframes charFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* SP：もう少し速く */
@media (max-width: 768px) {
  .hero-char-anim .char {
    animation-duration: .5s;
  }
}

/* サブテキストアニメーション（モバイルのみ適用） */
.hero-lead-anim { /* PC側はopacity正常 */ }

/* スマホ：サブテキストをゴールドのアクセントラインで装飾 */
@media (max-width: 768px) {
  .hero-lead {
    border-left: 2px solid rgba(var(--pG),.50) !important;
    padding-left: 10px !important;
  }

  /* ボタンはスマホでコンパクトに */
  .hero-actions {
    gap: 6px !important;
  }
  .hero-actions .btn.primary {
    padding: 13px 16px !important;
    font-size: 13px !important;
    flex-direction: row !important;
    gap: 6px;
  }
  .hero-actions .btn.primary small {
    display: inline !important;
    font-size: 11px;
    opacity: .75;
  }
  .hero-btn-sub {
    font-size: 12px !important;
    padding: 9px 16px !important;
    opacity: .75;
  }

  /* scroll-cueとコンテンツの間隔 */
  .scroll-cue {
    margin-top: 8px !important;
  }
}

/* ================================================================
   SCROLL MARGIN — ハンバーガーメニューのセクション頭遷移
================================================================ */
#hero, #top {
  scroll-margin-top: 0;
}
#concept, #for-journey, #for-celebration, #for-gift,
#promise, #flow, #price, #faq, #contact {
  scroll-margin-top: calc(var(--headerH) + 4px);
}

/* ── Hero：控えめCTA + スクロールキュー強化 ── */
.hero-cta-single {
  display: none; /* PC非表示 */
}

@media (max-width: 768px) {
  /* 控えめCTA */
  .hero-cta-single {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    letter-spacing: .10em;
    color: rgba(var(--pR), .80);
    border-bottom: 1px solid rgba(var(--pR), .30);
    padding-bottom: 2px;
    text-decoration: none;
    opacity: 1;
    transform: none;
    align-self: flex-start;
  }
  body:not(.ready) .hero-cta-single {
    opacity: 0;
    transform: translateY(6px);
  }
  .hero-cta-single:hover { color: rgba(var(--pR), 1); }

  /* hero-lead（SPでは常時表示。アニメは初回のみJSで is-visible を付与） */
  .hero-lead {
    padding-left: 10px !important;
    border-left: 2px solid rgba(var(--pG),.55) !important;
    font-size: 12.5px !important;
    line-height: 1.85 !important;
    color: rgba(18,18,18,.62) !important;
    opacity: 1 !important;
    transform: none !important;
  }
  body:not(.ready) .hero-lead {
    opacity: 0 !important;
    transform: translateY(8px) !important;
  }

  /* スクロールキューを少し大きく・存在感アップ */
  .scroll-cue {
    height: 44px !important;
    font-size: 10px !important;
    letter-spacing: .20em !important;
    color: rgba(18,18,18,.50) !important;
    gap: 12px !important;
  }
  .scroll-cue span { width: 32px !important; }
  .scroll-cue i {
    width: 8px !important;
    height: 8px !important;
  }
}

/* ================================================================
   D案：スクロール誘導ライン（モバイルのみ）
================================================================ */
@media (max-width: 768px) {
  .hero-scroll-line {
    display: block;
    width: 1px;
    height: 0;
    background: linear-gradient(
      to bottom,
      rgba(var(--pG), .70) 0%,
      rgba(var(--pG), .20) 100%
    );
    margin: 12px auto 0;
    animation: scrollLineGrow 1.2s var(--ease-out) forwards;
    animation-delay: 2s; /* アニメーション完了後に出現 */
  }

  @keyframes scrollLineGrow {
    from { height: 0; opacity: 0; }
    to   { height: 48px; opacity: 1; }
  }
}

/* PC では非表示 */
.hero-scroll-line { display: none; }

/* ================================================================
   SP：パネル廃止・交互背景・余白削減
================================================================ */
@media (max-width: 768px) {

  /* パネルを透明フラットに（overflow:hiddenはdata-revealと相性が悪いので解除） */
  .panel {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }
  .panel::before,
  .panel::after { display: none !important; }
  .panel-inner {
    padding: 28px var(--padX) !important;
  }
  .paint { display: none !important; }

  /* セクション間余白を詰める（クリップ防止で overflow も解除） */
  .section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
  }
  #flow, #price, #faq, #contact {
    overflow: visible !important;
  }

  /* セクション区切りライン */
  .section + .section::before {
    display: none !important;
  }

  /* 交互背景：偶数セクション */
  .section:nth-child(even) > .container > .panel,
  .section:nth-child(even) {
    background: rgba(199,165,106,.06) !important;
  }

  /* persona detail sectionsも同様 */
  .persona-section:nth-of-type(odd) {
    background: transparent;
  }
  .persona-section:nth-of-type(even) {
    background: rgba(199,165,106,.06);
  }

  /* kickerとh2で始まりを明示 */
  .sec-head {
    margin-bottom: 16px !important;
    padding-top: 4px !important;
  }
  .kicker {
    font-size: 10px !important;
    letter-spacing: .18em !important;
    margin-bottom: 6px !important;
  }
  .sec-head h2 {
    font-size: clamp(18px, 5.2vw, 24px) !important;
    padding-bottom: 12px !important;
    margin-top: 6px !important;
  }
  .sec-head h2::after {
    height: 2px !important;
    width: 140px !important;
  }

  /* セクション内の余白も詰める */
  .promise-rows { margin-top: 20px !important; }
  .promise-row { padding: 16px 0 !important; }
  .flow-grid { margin-top: 20px !important; }
  .t { padding: 0 0 18px 36px !important; }
  .faq { margin-top: 10px !important; }
  .contact-channels { margin-top: 14px !important; }
  .contact-form-wrap { margin-top: 8px !important; }
  .persona-cards { margin-top: 20px !important; }

  /* price SP */
  .price-sp-hero { margin-bottom: 14px !important; }
  .price-sp-quote { margin-bottom: 14px !important; }

}

/* セクションIDで交互背景を明示指定（nth-childより確実） */
@media (max-width: 768px) {
  /* 奇数：透明（デフォルト） */
  #concept, #for-journey, #for-celebration, #promise, #price, #faq {
    background: transparent;
  }
  /* 偶数：薄ベージュ */
  #for-gift, #flow, #contact {
    background: rgba(199,165,106,.07);
  }
}

/* ================================================================
   SP：ペルソナ詳細イラスト馴染み処理
================================================================ */
@media (max-width: 768px) {
  .persona-detail-img img {
    mix-blend-mode: multiply;
    border-radius: 4px;
    outline: 1px solid rgba(var(--pG), .35);
    outline-offset: 6px;
  }

  /* セクション交互背景を少し濃く */
  #for-gift, #flow, #contact {
    background: rgba(199,165,106,.13) !important;
  }
}

/* ================================================================
   SP：アイコン・イラスト視認性改善
================================================================ */
@media (max-width: 768px) {

  /* promiseアイコン：白背景をmultiplyで消す */
  .pr-img {
    mix-blend-mode: multiply;
  }

  /* pr-img-wrap：ベージュ背景に合わせてgold系に */
  .pr-img-wrap {
    background: rgba(var(--pG), .10) !important;
    border-color: rgba(var(--pG), .25) !important;
  }

  /* promiseアイコンの円背景：交互背景に合わせて調整 */
  .pr-num {
    background: rgba(255,255,255,.85) !important;
  }

  /* セクション区切りの視認性：細いgoldライン */
  .section + .section {
    border-top: 1px solid rgba(var(--pG), .20);
  }

  /* persona-detail-img：白背景を透過 */
  .persona-detail-img img {
    mix-blend-mode: multiply;
  }
}

/* ================================================================
   SP：promise セクション完全修正
================================================================ */
@media (max-width: 768px) {

  /* グリッドを確実に適用 */
  .promise-row {
    display: grid !important;
    grid-template-columns: 60px 1fr !important;
    gap: 0 14px !important;
    padding: 16px 0 !important;
    align-items: start !important;
  }

  .pr-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .pr-num {
    width: 28px !important;
    height: 28px !important;
    font-size: 10px !important;
    flex-shrink: 0;
  }

  .pr-img-wrap {
    width: 44px !important;
    height: 44px !important;
    background: rgba(255,255,255,.70) !important;
    border: 1px solid rgba(var(--pG),.30) !important;
    border-radius: 8px !important;
  }

  .pr-img {
    width: 32px !important;
    height: 32px !important;
    mix-blend-mode: normal !important; /* multiplyをリセット */
    opacity: .85 !important;
  }

  .pr-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding-top: 4px !important;
  }

  .pr-title {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  .pr-text {
    font-size: 12px !important;
    line-height: 1.85 !important;
  }

  /* CTAボタン */
  .promise-cta-btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 13px !important;
    padding: 13px 20px !important;
  }
}

/* ================================================================
   SP：promiseセクション背景白・余白調整
================================================================ */
@media (max-width: 768px) {
  #promise {
    background: #ffffff !important;
  }

  /* 左カラム（番号・アイコン）を少し左に */
  .promise-row {
    padding-left: 4px !important;
  }

  /* 右カラム（テキスト）を少し左に */
  .pr-body {
    padding-left: 0 !important;
    margin-left: -4px !important;
  }
}
@media (max-width: 768px) {
  /* promiseのパネル背景を白に確実に上書き */
  #promise .panel,
  #promise .panel-inner {
    background: #ffffff !important;
    background-color: #ffffff !important;
  }
  #promise {
    background: #ffffff !important;
  }

  /* 左カラムをpadding-leftで左に */
  #promise .promise-rows {
    padding-left: 0 !important;
  }
  #promise .promise-row {
    padding-left: 0 !important;
    grid-template-columns: 56px 1fr !important;
    gap: 0 10px !important;
  }
  #promise .pr-body {
    padding-left: 2px !important;
    margin-left: 0 !important;
  }
}

/* ================================================================
   SP レイアウト調整（追補・768px以下のみ）
================================================================ */
@media (max-width: 768px) {

  /* 横はみ出し防止 */
  .hero-grid,
  .hero-copy,
  .visual-wrap,
  .slideshow,
  .panel-inner,
  .price-sp-layout,
  .contact-form-wrap {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .visual-wrap {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .slideshow,
  .slide,
  .slide .slide-frame {
    overflow: hidden;
  }

  /* 固定ヘッダー + ノッチ */
  .header {
    padding-top: env(safe-area-inset-top, 0);
  }
  main {
    padding-top: calc(var(--headerH) + env(safe-area-inset-top, 0));
  }
  #hero, #top {
    scroll-margin-top: 0;
  }
  #concept, #for-journey, #for-celebration, #for-gift,
  #promise, #flow, #price, #faq, #contact {
    scroll-margin-top: calc(var(--headerH) + env(safe-area-inset-top, 0) + 4px);
  }

  .intro-skip {
    right: max(16px, env(safe-area-inset-right, 0));
    bottom: max(20px, env(safe-area-inset-bottom, 0));
  }

  /* ドロワー（メニュー開時のみ前面） */
  .drawerBg { z-index: 1240; }
  .drawer { z-index: 1250; }
  .drawerBg:not(.is-open) {
    display: none !important;
  }

  /* 見出しの改行をSPでは抑制（不自然な折り返し防止） */
  .sec-head h2 br,
  .persona-detail-h br {
    display: none;
  }

  /* 料金SP */
  .price-sp-layout {
    width: 100%;
  }
  .price-sp-hero {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(18,18,18,.08);
    box-shadow: var(--shadow-card);
  }

  /* お約束：アイコン視認性（最終） */
  #promise .pr-img {
    mix-blend-mode: normal !important;
    opacity: 1 !important;
  }

  .footer-bottom {
    text-align: center;
    line-height: 1.65;
    padding: 0 8px;
  }
}

@media (max-width: 375px) {
  #flow .sec-head h2,
  #faq .sec-head h2,
  #contact .sec-head h2 {
    font-size: clamp(17px, 5vw, 22px) !important;
  }
  .price-sp-includes li {
    grid-template-columns: 52px 1fr;
    font-size: 12px;
  }
  .t-title { font-size: 13px !important; }
  .flow-note-head { font-size: 12px !important; }
}

/* ================================================================
   SP：制作の流れ〜フッター（#flow 以降）
================================================================ */
@media (max-width: 768px) {

  /* カーニング・改行制御（SPのみ） */
  #flow .sp-keep,
  #price .sp-keep,
  #faq .sp-keep,
  #contact .sp-keep,
  .site-footer .sp-keep {
    white-space: nowrap;
  }
  #flow .sp-br,
  #price .sp-br,
  #faq .sp-br,
  #contact .sp-br {
    display: none;
  }

  #flow, #price, #faq, #contact {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  /* 閉じたドロワーはタップを透過 */
  .drawer:not(.is-open) {
    pointer-events: none !important;
    visibility: hidden;
  }
  .drawer.is-open {
    pointer-events: auto !important;
    visibility: visible;
  }

  /* ── 制作の流れ ── */
  #flow .panel-inner {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  #flow .sec-head {
    margin-bottom: 18px !important;
    text-align: left;
  }
  #flow .sec-head h2 {
    font-size: clamp(19px, 5.4vw, 24px) !important;
    letter-spacing: .02em !important;
    line-height: 1.45 !important;
    text-wrap: balance;
    padding-bottom: 12px !important;
  }
  #flow .sec-head p.lead {
    font-size: 13px !important;
    line-height: 1.9 !important;
    color: rgba(18,18,18,.62) !important;
    letter-spacing: .02em !important;
    text-wrap: pretty;
  }
  #flow .kicker {
    letter-spacing: .12em !important;
  }

  #flow .flow-grid {
    gap: 22px !important;
    margin-top: 4px !important;
  }

  #flow .t {
    padding: 14px 12px 22px 40px !important;
    background: rgba(255,255,255,.55);
    border-radius: 12px;
    margin-bottom: 10px;
  }
  #flow .t:last-child {
    margin-bottom: 0;
  }
  #flow .t:not(:last-child)::before {
    left: 6px !important;
    top: 28px !important;
  }
  #flow .t::after {
    left: 0 !important;
    top: 18px !important;
    width: 13px !important;
    height: 13px !important;
    border-width: 2px !important;
  }

  #flow .t-meta {
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px !important;
    margin-bottom: 8px !important;
  }
  #flow .t-step {
    font-size: 9px !important;
    letter-spacing: .1em !important;
    flex-shrink: 0;
  }
  #flow .t-title {
    font-size: clamp(13.5px, 3.9vw, 15px) !important;
    letter-spacing: .03em !important;
    line-height: 1.35 !important;
  }
  #flow .t-desc {
    font-size: 12.5px !important;
    line-height: 1.85 !important;
    color: rgba(18,18,18,.68) !important;
    letter-spacing: .02em !important;
  }

  #flow .flow-note {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin-top: 8px !important;
    align-items: center !important;
  }
  #flow .flow-note-inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  #flow .flow-note-card {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255,255,255,.94) !important;
    border: 1px solid rgba(var(--pT),.24) !important;
    box-shadow: var(--shadow-card) !important;
    padding: 20px 18px 18px !important;
    text-align: center;
  }
  #flow .flow-note-head {
    justify-content: center !important;
    font-size: 13px !important;
    letter-spacing: .03em !important;
    line-height: 1.5 !important;
    flex-wrap: wrap;
    margin-bottom: 2px;
  }
  #flow .flow-note-list {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: left;
    padding-top: 12px !important;
  }
  #flow .flow-note-list li {
    font-size: 12.5px !important;
    line-height: 1.7 !important;
    color: rgba(18,18,18,.74) !important;
    letter-spacing: .02em !important;
  }
  #flow .flow-note-sub {
    font-size: 11px !important;
    color: rgba(18,18,18,.48) !important;
    text-align: center !important;
    margin-top: 4px;
  }
  #flow .flow-cta-btn {
    width: min(100%, 320px) !important;
    margin: 0 auto;
    padding: 14px 18px !important;
    font-size: 13px !important;
    letter-spacing: .05em !important;
    line-height: 1.45 !important;
    justify-content: center;
  }
  #flow .flow-cta-btn small {
    letter-spacing: .06em !important;
  }

  /* ── 料金 ── */
  #price .panel-inner {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  #price .price-kicker {
    font-size: 13px !important;
    letter-spacing: .1em !important;
  }
  #price .price-sp-free {
    letter-spacing: .06em !important;
    text-align: center;
    margin-bottom: 16px !important;
  }
  #price .price-sp-includes li {
    font-size: 12.5px !important;
    line-height: 1.65 !important;
    letter-spacing: .02em !important;
    color: rgba(18,18,18,.78) !important;
  }
  #price .price-sp-includes li > span:first-child {
    letter-spacing: .08em !important;
  }
  #price .price-sp-layout {
    gap: 0;
  }
  #price .price-sp-head {
    margin-bottom: 16px !important;
  }
  #price .price-sp-hero {
    margin-bottom: 20px !important;
    padding: 26px 20px 22px !important;
    text-align: center;
    background:
      radial-gradient(120% 80% at 50% 0%, rgba(var(--pG), .14), transparent 55%),
      linear-gradient(168deg, rgba(255,255,255,.98) 0%, rgba(251,247,241,.92) 100%) !important;
    border: 1px solid rgba(var(--pG), .28) !important;
    border-radius: 20px !important;
    box-shadow:
      0 1px 0 rgba(255,255,255,.9) inset,
      0 8px 28px rgba(var(--pN), .06),
      0 2px 8px rgba(10,16,32,.04) !important;
    position: relative;
    overflow: hidden;
  }
  #price .price-sp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
    opacity: .55;
  }
  #price .price-sp-hero-label {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .28em;
    color: rgba(var(--pG), 1);
    font-family: var(--sans);
  }
  #price .price-sp-amount-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  #price .price-sp-figure {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    line-height: 1;
    margin: 0;
  }
  #price .price-sp-currency {
    margin-top: 0.5em;
    font-family: var(--sans);
    font-size: clamp(15px, 4.5vw, 18px);
    font-weight: 600;
    color: rgba(18,18,18,.55);
    letter-spacing: 0;
  }
  #price .price-sp-amount {
    font-family: var(--sans);
    font-size: clamp(32px, 10vw, 42px) !important;
    font-weight: 600;
    letter-spacing: -0.02em !important;
    line-height: 1 !important;
    font-variant-numeric: tabular-nums;
    color: rgba(18,18,18,.90);
    text-shadow: 0 1px 0 rgba(255,255,255,.8);
  }
  #price .price-sp-tax {
    align-self: flex-end;
    margin: 0 0 0.35em 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    color: rgba(var(--pN), .78);
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(var(--pG), .32);
    box-shadow: 0 1px 4px rgba(var(--pN), .05);
  }
  #price .price-sp-includes {
    margin-bottom: 18px !important;
    padding: 4px 0;
    border-top: 1px solid rgba(18,18,18,.06);
    border-bottom: 1px solid rgba(18,18,18,.06);
  }
  #price .price-sp-includes li:last-child {
    border-bottom: none;
  }
  #price .price-sp-quote {
    margin: 0 0 16px !important;
    padding: 12px 14px 10px 16px !important;
    background: rgba(255,255,255,.72);
    border: none;
    border-left: 3px solid rgba(var(--pG),.55);
    border-radius: 0 10px 10px 0;
    box-shadow: none;
    position: relative;
  }
  #price .price-sp-quote::before {
    content: "\201C";
    position: absolute;
    top: 6px;
    left: 10px;
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1;
    color: rgba(var(--pG),.28);
    pointer-events: none;
  }
  #price .price-sp-quote-text {
    margin: 0 !important;
    padding: 0 0 0 14px !important;
    font-family: var(--mincho);
    font-size: 12.5px !important;
    line-height: 1.82 !important;
    letter-spacing: .03em !important;
    color: rgba(18,18,18,.76) !important;
    text-wrap: pretty;
  }
  #price .price-sp-quote-footer {
    margin: 8px 0 0;
    padding: 8px 0 0 14px;
    border-top: 1px solid rgba(var(--pG),.18);
  }
  #price .price-sp-quote-author {
    display: block;
    font-style: normal;
    font-size: 10px;
    letter-spacing: .12em;
    color: rgba(18,18,18,.42);
    text-align: right;
  }
  #price .price-sp-quote-mark {
    display: none !important;
  }
  #price .price-sp-conditions {
    margin-bottom: 16px !important;
    padding: 2px 0;
  }
  #price .price-sp-cta {
    margin-top: 4px;
    padding-top: 4px;
  }
  #price .price-sp-cta .price-cta-sub {
    display: none !important;
  }
  #price .price-sp-detail {
    border-bottom: 1px solid rgba(18,18,18,.07);
  }
  #price .price-sp-detail summary {
    letter-spacing: .04em !important;
    color: rgba(18,18,18,.88) !important;
    line-height: 1.45 !important;
  }
  #price .price-sp-detail p {
    color: rgba(18,18,18,.68) !important;
    line-height: 1.85 !important;
    letter-spacing: .02em !important;
  }
  #price .price-sp-cta {
    margin-top: 4px;
  }
  #price .price-sp-cta .price-cta-primary,
  #price .price-sp-cta .price-cta-sub {
    letter-spacing: .06em !important;
  }

  /* ── FAQ ── */
  #faq .panel-inner {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  #faq .sec-head h2 {
    font-size: clamp(18px, 5.2vw, 23px) !important;
    letter-spacing: .02em !important;
    line-height: 1.45 !important;
    text-wrap: balance;
  }
  #faq .faq {
    margin-top: 8px !important;
    border-top: 1px solid rgba(18,18,18,.10);
  }
  #faq details {
    background: rgba(255,255,255,.50);
    border-radius: 10px;
    margin-bottom: 8px;
    padding: 0 10px;
    border-bottom: none;
  }
  #faq details[open] {
    background: rgba(255,255,255,.88);
    box-shadow: var(--shadow-card);
  }
  #faq summary {
    font-size: 13px !important;
    letter-spacing: .03em !important;
    line-height: 1.5 !important;
    padding: 14px 2px !important;
    gap: 12px !important;
  }
  #faq summary::after {
    width: 28px !important;
    height: 28px !important;
    font-size: 16px !important;
    flex-shrink: 0;
  }
  #faq details .ans {
    font-size: 12.5px !important;
    line-height: 1.9 !important;
    letter-spacing: .02em !important;
    color: rgba(18,18,18,.72) !important;
    padding: 0 2px 14px !important;
  }

  /* ── お問い合わせ ── */
  #contact .panel-inner {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  #contact .sec-head h2 {
    font-size: clamp(18px, 5.2vw, 23px) !important;
    letter-spacing: .02em !important;
    line-height: 1.45 !important;
    text-wrap: balance;
  }
  #contact .sec-head p.lead {
    font-size: 12.5px !important;
    line-height: 1.85 !important;
    letter-spacing: .02em !important;
    color: rgba(18,18,18,.62) !important;
    text-wrap: pretty;
  }
  #contact .contact-channels {
    gap: 10px !important;
  }
  #contact .channel-card {
    padding: 16px 14px !important;
    background: rgba(255,255,255,.88) !important;
    border: 1px solid rgba(18,18,18,.08) !important;
    box-shadow: var(--shadow-card) !important;
  }
  #contact .ch-body b {
    font-size: 13.5px !important;
    letter-spacing: .03em !important;
    line-height: 1.4 !important;
  }
  #contact .ch-body span,
  #contact .ch-body small {
    letter-spacing: .02em !important;
    line-height: 1.65 !important;
  }
  #contact .ch-arrow {
    font-size: 18px;
    opacity: .45;
    flex-shrink: 0;
  }
  #contact .form-lead {
    margin-top: 20px !important;
    margin-bottom: 4px !important;
  }
  #contact .form-lead-text {
    font-size: 11.5px !important;
    letter-spacing: .12em !important;
  }
  #contact .contact-form-wrap {
    background: rgba(255,255,255,.90) !important;
    border: 1px solid rgba(18,18,18,.08) !important;
    box-shadow: var(--shadow-card) !important;
  }
  #contact .form-heading {
    letter-spacing: .14em !important;
    text-align: center;
  }
  #contact label {
    letter-spacing: .03em !important;
  }
  #contact .small {
    line-height: 1.75 !important;
    letter-spacing: .02em !important;
  }

  /* ── フッター（ドロワー背景より前面・タップ可能） ── */
  .site-footer {
    position: relative;
    z-index: 1300;
    padding: 24px 0 18px !important;
    margin-top: 16px !important;
    border-top: 1px solid rgba(var(--pG), .22);
    isolation: isolate;
  }
  body.nav-open .site-footer {
    z-index: 10;
  }
  .site-footer a,
  .site-footer button {
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(var(--pG), .25);
  }
  .site-footer .footer-inner {
    gap: 16px !important;
    align-items: center !important;
  }
  .site-footer .footer-brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .site-footer .footer-nav {
    width: 100%;
    gap: 8px 10px !important;
    font-size: 11px !important;
    letter-spacing: .06em !important;
    justify-content: center;
  }
  .site-footer .footer-nav a {
    padding: 6px 4px !important;
    text-align: center;
  }
  .site-footer .footer-sns {
    width: 100%;
    justify-content: center !important;
  }
  .site-footer .footer-bottom {
    letter-spacing: .05em !important;
    font-size: 10px !important;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal="left"],
  [data-reveal="right"],
  [data-reveal="scale"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
  }
}

/* SP：表示崩れ防止（最終上書き） */
@media (max-width: 768px) {
  body.ready #intro,
  body.ready .intro {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }
  main,
  .section,
  .container,
  .panel,
  .panel-inner {
    overflow: visible !important;
    max-height: none !important;
  }
  .drawerBg:not(.is-open) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* ================================================================
   MOTION — アンカー遷移・ドロワー・セクション演出
================================================================ */
body.is-anchor-scrolling {
  scroll-behavior: auto;
}

.section.is-scroll-target .sec-head h2 {
  animation: motionHeadGlow 1s var(--ease-out);
}
@keyframes motionHeadGlow {
  0%   { opacity: .72; transform: translateY(4px); }
  45%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

.sec-head .kicker {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.sec-head .kicker.kicker-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .drawer.is-open .drawer-links a {
    opacity: 0;
    transform: translate3d(14px, 0, 0);
    animation: drawerLinkIn .55s var(--ease-out) forwards;
  }
  .drawer.is-open .drawer-links a:nth-child(1) { animation-delay: .06s; }
  .drawer.is-open .drawer-links a:nth-child(2) { animation-delay: .11s; }
  .drawer.is-open .drawer-links a:nth-child(3) { animation-delay: .16s; }
  .drawer.is-open .drawer-links a:nth-child(4) { animation-delay: .21s; }
  .drawer.is-open .drawer-links a:nth-child(5) { animation-delay: .26s; }
  .drawer.is-open .drawer-links a:nth-child(6) { animation-delay: .31s; }
  .drawer.is-open .drawer-links a:nth-child(7) { animation-delay: .36s; }
}
@keyframes drawerLinkIn {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

[data-reveal-stagger] > [data-reveal]:not(.in) {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.persona-cards.in .persona-card {
  animation: personaCardIn .7s var(--ease-out) backwards;
}
.persona-cards.in .persona-card:nth-child(1) { animation-delay: .08s; }
.persona-cards.in .persona-card:nth-child(2) { animation-delay: .16s; }
.persona-cards.in .persona-card:nth-child(3) { animation-delay: .24s; }
@keyframes personaCardIn {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.persona-card,
.channel-card {
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
@media (hover: hover) {
  .persona-card:hover,
  .channel-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow2);
  }
}

body.reduce-motion .section.is-scroll-target .sec-head h2,
body.reduce-motion .drawer.is-open .drawer-links a,
body.reduce-motion .persona-cards.in .persona-card {
  animation: none !important;
}
body.reduce-motion .sec-head .kicker {
  opacity: 1;
  transform: none;
}

#faq details[open] .ans {
  animation: faqAnsIn .55s var(--ease-out);
}
@keyframes faqAnsIn {
  from { opacity: 0; transform: translate3d(0, -6px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ================================================================
   LEGAL PAGE（legal.html のみ・LP本体には影響なし）
================================================================ */
body.legal-page {
  display: block;
  min-height: 100vh;
  height: auto !important;
}
body.legal-page main.legal-main {
  flex: none !important;
  min-height: auto !important;
  padding-top: 28px !important;
  overflow: visible !important;
  position: relative;
  z-index: 1;
}
.legal-page .header.header--sub {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  min-height: var(--headerH);
  background: rgba(251, 247, 241, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 18, 18, .06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}
.legal-page .header.header--sub .header-inner {
  display: flex !important;
  grid-template-columns: unset !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--headerH);
  height: auto;
  width: 100%;
}
.legal-page .legal-back-btn {
  font-size: 12px;
  padding: 10px 18px;
  letter-spacing: .08em;
  white-space: nowrap;
  border: 1px solid rgba(var(--pN), .22);
  background: rgba(255, 255, 255, .82);
  color: rgba(var(--pN), .88);
  box-shadow: var(--shadow-card);
}
.legal-page .legal-back-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.legal-main {
  padding: 48px 0 64px;
}
.legal-container {
  max-width: min(860px, 100%);
  margin-inline: auto;
}
/* LP用 main > header 等の影響を受けないよう明示 */
.legal-page .legal-hero {
  position: relative;
  z-index: 1;
}

.legal-hero {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.legal-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(18, 18, 18, .52);
  text-transform: uppercase;
}
.legal-hero-kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(var(--pG), 1);
}
.legal-hero-title {
  margin: 0 0 14px;
  font-family: var(--mincho);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
  color: rgba(18, 18, 18, .90);
}
.legal-hero-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
  color: rgba(18, 18, 18, .62);
  max-width: var(--measure);
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.legal-toc a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(var(--pN), .82);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(18, 18, 18, .08);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  transition: color .2s, border-color .2s, transform .2s;
}
.legal-toc a:hover {
  color: rgba(var(--pR), .95);
  border-color: rgba(var(--pG), .35);
  transform: translateY(-1px);
}

.legal-section {
  margin-bottom: 48px;
  scroll-margin-top: calc(var(--headerH) + 16px);
}
.legal-section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}
.legal-section-num {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(var(--pG), 1);
}
.legal-section-head h2 {
  margin: 0;
  font-family: var(--mincho);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.45;
  color: rgba(18, 18, 18, .88);
}

.legal-panel {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.85;
}
.legal-table th,
.legal-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 18, 18, .08);
  vertical-align: top;
  text-align: left;
}
.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: none;
}
.legal-table th {
  width: 28%;
  min-width: 140px;
  padding-right: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(18, 18, 18, .58);
  white-space: nowrap;
}
.legal-table td {
  color: rgba(18, 18, 18, .82);
}
.legal-table a {
  color: rgba(var(--pN), .92);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-table a:hover {
  color: rgba(var(--pR), 1);
}

.legal-prose {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(18, 18, 18, .78);
}
.legal-prose > p:first-child {
  margin-top: 0;
}
.legal-prose h3 {
  margin: 28px 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(18, 18, 18, .82);
}
.legal-prose h3:first-of-type {
  margin-top: 0;
}
.legal-prose p {
  margin: 0 0 14px;
}
.legal-prose ul {
  margin: 0 0 16px;
  padding-left: 1.25em;
}
.legal-prose li {
  margin-bottom: 6px;
}
.legal-prose a {
  color: rgba(var(--pN), .92);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-prose a:hover {
  color: rgba(var(--pR), 1);
}

.legal-note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 18, 18, .08);
  font-size: 12px;
  line-height: 1.8;
  color: rgba(18, 18, 18, .52);
}
.legal-contact-lead {
  margin-top: 24px !important;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 18, 18, .08);
}
.legal-contact-list {
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
.legal-contact-list li {
  padding: 4px 0;
}

.legal-updated {
  margin: 8px 0 0;
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(18, 18, 18, .44);
  text-align: right;
}

.legal-page .site-footer--legal {
  margin-top: 0;
}

@media (max-width: 768px) {
  body.legal-page {
    --headerH: 58px;
    --headerLogoH: 36px;
  }
  body.legal-page main.legal-main {
    padding-top: 20px !important;
    padding-bottom: 40px;
  }
  .legal-hero {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .legal-hero-title {
    font-size: clamp(20px, 5.5vw, 26px);
    line-height: 1.5;
  }
  .legal-hero-lead {
    font-size: 13px;
    line-height: 1.85;
  }
  .legal-toc {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
  }
  .legal-toc a {
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }
  .legal-panel {
    padding: 18px 16px;
    border-radius: var(--radius2);
  }
  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }
  .legal-table tr {
    padding: 12px 0;
    border-bottom: 1px solid rgba(18, 18, 18, .08);
  }
  .legal-table tr:last-child {
    border-bottom: none;
  }
  .legal-table th {
    padding: 0 0 6px;
    min-width: 0;
    white-space: normal;
    font-size: 11px;
  }
  .legal-table td {
    padding: 0 0 4px;
    font-size: 13px;
    line-height: 1.8;
  }
  .legal-section {
    margin-bottom: 36px;
    scroll-margin-top: calc(var(--headerH) + 12px);
  }
  .legal-page .legal-back-btn {
    font-size: 11px;
    padding: 8px 12px;
  }
  .legal-page .footer-nav a[aria-current="page"] {
    color: rgba(var(--pR), .90);
  }
}
