/* ============================================================
   MOFU もふ — 架空のペットグルーミング&ケアサロン (Web Design Lab showcase)
   bright pastel / flat / 丸ゴ・角丸 / バウンシーなSVGマスコット
   カード/インデックス主導レイアウト + スプリング物理
   ============================================================ */
:root {
  --cream:   #fff7ef;   /* 地・いちばん明るい */
  --cream-2: #ffefe0;   /* 一段深いクリーム */
  --board:   #fdf1e7;   /* セクション地 */
  --white:   #ffffff;

  --ink:   #5c4a54;     /* 温かいプラム茶（本文） */
  --ink-2: #927c88;     /* 薄インク */
  --ink-3: rgba(92,74,84,.5);
  --line:  rgba(92,74,84,.12);
  --line-2:rgba(92,74,84,.2);

  --mint:   #a8e6cf;  --mint-d:  #5fcea8;  --mint-dd:#3fbf8f;
  --peach:  #ffd3b6;  --peach-d: #ffb38a;
  --sky:    #a0d8f0;  --sky-d:   #63c1e8;
  --coral:  #ff9d92;  --coral-d: #ff7a6b;
  --lemon:  #ffe6a0;  --lemon-d: #ffd166;
  --lilac:  #d7c4f0;

  --disp: 'Baloo 2', 'M PLUS Rounded 1c', system-ui, sans-serif; /* 丸い英字ディスプレイ */
  --body: 'M PLUS Rounded 1c', system-ui, sans-serif;            /* 丸ゴ本文・和文 */

  --maxw: 1140px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --spring:  cubic-bezier(.34, 1.7, .5, 1);    /* オーバーシュートのバネ */
  --spring2: cubic-bezier(.18, 1.9, .32, 1);   /* 強めのバネ */
}
/* var()の綴りミス保険（--mint-dは使わずリテラルを主に使う） */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: .01em;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
::selection { background: rgba(255,157,146,.28); color: var(--ink); }

/* ===== 肉球カーソルの軌跡 ===== */
.paw-trail { position: fixed; inset: 0; z-index: 350; pointer-events: none; }
.paw-print {
  position: absolute; width: 22px; height: 22px; margin: -11px 0 0 -11px;
  opacity: .55; transform: scale(.4) rotate(var(--pr, 0deg));
  animation: pawpop .9s var(--ease) forwards;
}
.paw-print svg { width: 100%; height: 100%; }
@keyframes pawpop {
  0%   { opacity: 0; transform: scale(.2) rotate(var(--pr, 0deg)); }
  30%  { opacity: .6; transform: scale(1) rotate(var(--pr, 0deg)); }
  100% { opacity: 0; transform: scale(.9) rotate(var(--pr, 0deg)) translateY(8px); }
}

/* ===== scroll progress（ミント→ピーチ→コーラル） ===== */
.scroll-progress {
  position: fixed; left: 0; top: 0; height: 4px; width: 0; z-index: 400;
  background: linear-gradient(90deg, #7fddb8, var(--peach-d) 55%, var(--coral-d));
  border-radius: 0 4px 4px 0;
}

/* ============================================================
   共通ボタン（ぷにっと弾む）
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--disp); font-weight: 700; font-size: 15.5px; letter-spacing: .01em;
  padding: 13px 26px; border-radius: 44px; cursor: pointer; border: 0;
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
}
.btn span { display: inline-block; }
.btn-primary {
  color: #fff; background: linear-gradient(180deg, #ff9d92, #ff7a6b);
  box-shadow: 0 10px 0 -2px #ef6455, 0 16px 24px -12px rgba(255,122,107,.8);
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 13px 0 -2px #ef6455, 0 22px 30px -12px rgba(255,122,107,.85); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 5px 0 -2px #ef6455, 0 10px 18px -12px rgba(255,122,107,.8); }
.btn-ghost {
  color: var(--ink); background: var(--white);
  box-shadow: 0 8px 0 -2px #f0dcc8, 0 12px 20px -12px rgba(92,74,84,.4);
}
.btn-ghost:hover { transform: translateY(-4px); box-shadow: 0 11px 0 -2px #f0dcc8, 0 18px 26px -12px rgba(92,74,84,.45); color: var(--coral-d); }
.btn-ghost:active { transform: translateY(2px); box-shadow: 0 4px 0 -2px #f0dcc8; }
.btn-big { font-size: 17px; padding: 16px 34px; }

/* ===== reveal（下からバネでふわり） ===== */
[data-reveal] { opacity: 0; transform: translateY(28px) scale(.98); transition: opacity .7s var(--ease), transform .8s var(--spring); }
[data-reveal].in { opacity: 1; transform: none; }

/* ===== 浮遊 ===== */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-16px) rotate(calc(var(--rot, 0deg) + 4deg)); }
}
.float { animation: float var(--dur, 6s) var(--ease) var(--del, 0s) infinite; }

/* ============================================================
   マスコット共通（SVG・まばたき・しっぽ・耳）
   ============================================================ */
.mascot { position: relative; }
.mascot svg { width: 100%; height: auto; overflow: visible; display: block; }
/* まばたき */
@keyframes blink { 0%, 92%, 100% { transform: scaleY(1); } 96% { transform: scaleY(.08); } }
.m-eyes { transform-box: fill-box; transform-origin: center; animation: blink 4.2s ease-in-out infinite; }
.mascot--cat .m-eyes { animation-duration: 5.1s; }
/* しっぽ振り */
@keyframes wag { 0%, 100% { transform: rotate(-11deg); } 50% { transform: rotate(11deg); } }
.m-tail { transform-box: fill-box; transform-origin: 20% 90%; animation: wag 1.15s var(--ease) infinite; }
.mascot--cat .m-tail { transform-origin: 30% 100%; animation-duration: 1.9s; }
/* 耳のぴくぴく */
@keyframes earwag { 0%, 88%, 100% { transform: rotate(0deg); } 94% { transform: rotate(-7deg); } }
.m-ear-l { transform-box: fill-box; transform-origin: 80% 100%; animation: earwag 3.4s ease-in-out infinite; }
.m-ear-r { transform-box: fill-box; transform-origin: 20% 100%; animation: earwag 3.4s ease-in-out .4s infinite; }

/* ============================================================
   nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; gap: 22px;
  padding: 16px clamp(16px, 4vw, 46px);
  transition: padding .4s var(--ease), background .4s, box-shadow .4s;
}
.nav.solid {
  padding: 9px clamp(16px, 4vw, 46px);
  background: rgba(255,247,239,.86);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 6px 20px -14px rgba(92,74,84,.5);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(180deg, #b6ecd8, #8fe0c2);
  box-shadow: 0 5px 0 -1px #5fcea8, 0 8px 14px -8px rgba(63,191,143,.7);
  transform: rotate(-4deg);
}
.brand-mark svg { width: 24px; height: 24px; fill: #fff; }
.brand-name { display: grid; line-height: 1.05; }
.brand-name b { font-family: var(--disp); font-weight: 800; font-size: 22px; letter-spacing: .02em; color: var(--ink); }
.brand-name i { font-family: var(--disp); font-style: normal; font-weight: 600; font-size: 10.5px; letter-spacing: .1em; color: var(--ink-3); }
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a {
  font-family: var(--disp); font-weight: 600; font-size: 15px; color: var(--ink-2);
  position: relative; padding: 6px 4px; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 1px; height: 6px; z-index: -1;
  background: var(--lemon); border-radius: 6px;
  transform: scaleX(0); transform-origin: center; transition: transform .35s var(--spring);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--disp); font-weight: 700; font-size: 14.5px; color: #fff;
  padding: 10px 22px; border-radius: 40px; background: linear-gradient(180deg, #ff9d92, #ff7a6b);
  box-shadow: 0 6px 0 -1px #ef6455; transition: transform .3s var(--spring);
}
.nav-cta:hover { transform: translateY(-3px); }
.nav-cta:active { transform: translateY(2px); box-shadow: 0 3px 0 -1px #ef6455; }
.nav-burger { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; }
.nav-burger i { display: block; width: 24px; height: 3px; margin: 5px auto; background: var(--ink); border-radius: 3px; transition: .35s var(--spring); }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate; padding: clamp(112px, 15vh, 150px) 0 90px;
  background:
    radial-gradient(120% 80% at 85% 12%, rgba(160,216,240,.4), transparent 55%),
    radial-gradient(110% 80% at 8% 90%, rgba(168,230,207,.45), transparent 55%),
    linear-gradient(180deg, var(--cream), var(--board));
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(2px); z-index: 0; opacity: .6; }
.hero-blob--a { width: 46vw; height: 46vw; max-width: 560px; max-height: 560px; right: -8%; top: -12%; background: radial-gradient(circle at 40% 40%, rgba(255,211,182,.85), rgba(255,211,182,0) 70%); }
.hero-blob--b { width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; left: -10%; bottom: -14%; background: radial-gradient(circle at 60% 50%, rgba(215,196,240,.7), rgba(215,196,240,0) 70%); }
.hero-bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bubble { position: absolute; bottom: -40px; border-radius: 50%; background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.9), rgba(160,216,240,.35) 60%, rgba(160,216,240,.12)); box-shadow: inset 0 0 8px rgba(255,255,255,.6); animation: rise linear infinite; }
@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
  15%  { opacity: .8; }
  100% { transform: translateY(-112vh) translateX(var(--dx, 20px)) scale(1); opacity: 0; }
}

.hero-inner {
  position: relative; z-index: 3; max-width: var(--maxw); width: 100%;
  margin: 0 auto; padding: 0 clamp(20px, 5vw, 52px);
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(24px, 4vw, 56px);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--disp); font-weight: 700; font-size: 12.5px; letter-spacing: .06em;
  color: #3fa07a; background: rgba(168,230,207,.5); border: 2px solid rgba(143,224,194,.8);
  padding: 7px 16px; border-radius: 40px; margin-bottom: 20px;
}
.hero-kicker .dot { width: 9px; height: 9px; border-radius: 50%; background: #ff7a6b; box-shadow: 0 0 0 4px rgba(255,157,146,.35); }
.hero-title {
  font-family: var(--disp); font-weight: 800; font-size: clamp(46px, 8vw, 96px);
  line-height: 1.02; letter-spacing: .005em; color: var(--ink); margin-bottom: 14px;
  text-shadow: 3px 4px 0 rgba(255,211,182,.55);
}
.hero-roman {
  font-family: var(--disp); font-weight: 600; font-size: clamp(15px, 2vw, 20px);
  color: var(--coral-d); letter-spacing: .01em; margin-bottom: 20px;
}
.hero-lead { max-width: 440px; font-size: 16px; color: var(--ink-2); margin-bottom: 26px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badges { list-style: none; display: flex; gap: clamp(14px, 3vw, 32px); flex-wrap: wrap; }
.hero-badges li { display: grid; }
.hero-badges b { font-family: var(--disp); font-weight: 800; font-size: 30px; color: #3fbf8f; line-height: 1; }
.hero-badges li:nth-child(2) b { color: var(--sky-d); }
.hero-badges li:nth-child(3) b { color: var(--coral-d); }
.hero-badges span { font-size: 12px; color: var(--ink-2); margin-top: 3px; }

/* hero マスコットの舞台 */
.hero-stage { position: relative; height: clamp(300px, 42vw, 460px); }
.hero-podium {
  position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%);
  width: 74%; height: 40px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(92,74,84,.18), rgba(92,74,84,0) 70%);
}
.mascot--dog { position: absolute; left: 4%; bottom: 12%; width: clamp(180px, 30vw, 290px); z-index: 3; }
.mascot--cat { position: absolute; right: 2%; bottom: 16%; width: clamp(130px, 22vw, 210px); z-index: 2; }

/* ============================================================
   マーキー（ふわふわ帯）
   ============================================================ */
.marquee {
  background: linear-gradient(180deg, var(--board), #fbe6d4);
  padding: 16px 0; overflow: hidden; border-top: 3px dashed rgba(255,179,138,.7); border-bottom: 3px dashed rgba(255,179,138,.7);
}
.marquee-track { display: flex; gap: 34px; width: max-content; animation: marq 26s linear infinite; }
.marquee .mq {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--disp); font-weight: 800; font-size: clamp(20px, 3vw, 30px); color: var(--ink);
  white-space: nowrap;
}
.marquee .mq .dot { width: 12px; height: 12px; border-radius: 50%; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============================================================
   セクション共通
   ============================================================ */
.section { position: relative; z-index: 2; padding: clamp(66px, 10vh, 120px) clamp(20px, 5vw, 52px); }
.sec-head { max-width: var(--maxw); margin: 0 auto 46px; text-align: center; }
.sec-en {
  font-family: var(--disp); font-weight: 700; font-size: 14px;
  letter-spacing: .14em; color: var(--coral-d); margin-bottom: 6px; text-transform: uppercase;
}
.sec-jp {
  font-family: var(--disp); font-weight: 800; font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.18; color: var(--ink); letter-spacing: .01em; position: relative; display: inline-block;
}
.sec-jp::after { content: ""; position: absolute; left: 8%; right: 8%; bottom: 4px; height: 12px; z-index: -1; background: var(--lemon); border-radius: 8px; opacity: .8; }
.sec-note { font-size: 15px; color: var(--ink-2); margin-top: 14px; max-width: 540px; margin-inline: auto; }

/* ===== 2. SERVICES ===== */
.serv-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.2vw, 24px);
}
.serv-card {
  position: relative; background: var(--white); border-radius: 26px; padding: 30px 22px 26px;
  text-align: center; overflow: hidden;
  box-shadow: 0 14px 0 -6px var(--sh, #ffe0cc), 0 22px 34px -20px rgba(92,74,84,.5);
  transition: transform .4s var(--spring2), box-shadow .4s var(--ease);
}
.serv-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 90px; background: var(--tint, var(--peach)); opacity: .35; }
.serv-card:hover { transform: translateY(-12px) rotate(var(--tw, -1.5deg)); box-shadow: 0 20px 0 -6px var(--sh, #ffe0cc), 0 34px 44px -22px rgba(92,74,84,.55); }
.serv-ico {
  position: relative; width: 92px; height: 92px; margin: 0 auto 16px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--tint, var(--peach)); box-shadow: inset 0 -6px 0 rgba(0,0,0,.05);
}
.serv-ico svg { width: 54px; height: 54px; }
.serv-name { font-family: var(--disp); font-weight: 800; font-size: 22px; color: var(--ink); }
.serv-name small { display: block; font-family: var(--disp); font-weight: 600; font-size: 11px; letter-spacing: .08em; color: var(--ink-3); margin-top: 2px; text-transform: uppercase; }
.serv-desc { font-size: 13.5px; color: var(--ink-2); margin: 10px 0 14px; line-height: 1.75; }
.serv-price { font-family: var(--disp); font-weight: 800; font-size: 24px; color: var(--price, var(--coral-d)); }
.serv-price small { font-size: 12.5px; font-weight: 600; color: var(--ink-3); }
.serv-tag { display: inline-block; margin-top: 8px; font-family: var(--disp); font-weight: 700; font-size: 11px; color: #fff; background: var(--price, var(--coral-d)); padding: 3px 12px; border-radius: 30px; }

/* ===== 3. PRICING ===== */
.pricing { background: var(--board); }
.price-grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); align-items: stretch; }
.plan {
  position: relative; background: var(--white); border-radius: 28px; padding: 34px 26px 30px;
  text-align: center; display: flex; flex-direction: column;
  box-shadow: 0 16px 0 -8px #f0dcc8, 0 24px 38px -22px rgba(92,74,84,.5);
  transition: transform .4s var(--spring2), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-10px); box-shadow: 0 20px 0 -8px #f0dcc8, 0 34px 46px -24px rgba(92,74,84,.55); }
.plan.featured { background: linear-gradient(180deg, #fff, #fff4ec); box-shadow: 0 16px 0 -8px #ffc9b6, 0 26px 42px -20px rgba(255,122,107,.5); transform: translateY(-14px) scale(1.02); border: 3px solid #ffb38a; }
.plan.featured:hover { transform: translateY(-22px) scale(1.02); }
.plan-ribbon {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  font-family: var(--disp); font-weight: 800; font-size: 12.5px; color: #fff;
  background: linear-gradient(180deg, #ff9d92, #ff7a6b); padding: 6px 18px; border-radius: 30px;
  box-shadow: 0 5px 0 -1px #ef6455; white-space: nowrap;
}
.plan-mascot { width: 82px; margin: 0 auto 10px; }
.plan-name { font-family: var(--disp); font-weight: 800; font-size: 23px; color: var(--ink); }
.plan-sub { font-size: 13px; color: var(--ink-2); margin: 3px 0 14px; }
.plan-price { font-family: var(--disp); font-weight: 800; font-size: 40px; color: var(--coral-d); line-height: 1; }
.plan-price small { font-size: 15px; font-weight: 700; color: var(--ink-3); }
.plan-price .yen { font-size: 22px; }
.plan-feat { list-style: none; margin: 18px 0 22px; display: grid; gap: 10px; font-size: 14px; color: var(--ink); text-align: left; }
.plan-feat li { display: flex; align-items: flex-start; gap: 8px; }
.plan-feat li::before { content: ""; flex: 0 0 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l4 4 10-10' fill='none' stroke='%233fbf8f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat; }
.plan .btn { margin-top: auto; }
.price-foot { text-align: center; max-width: var(--maxw); margin: 30px auto 0; font-size: 13px; color: var(--ink-2); }

/* ===== 4. STAFF ===== */
.staff-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 32px); }
.staff-card {
  position: relative; background: var(--white); border-radius: 30px; padding: 30px 24px 26px; text-align: center; overflow: hidden;
  box-shadow: 0 16px 0 -8px var(--sh, #e5f5ee), 0 24px 38px -22px rgba(92,74,84,.5);
  transition: transform .4s var(--spring2), box-shadow .35s var(--ease);
}
.staff-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 130px; background: var(--tint, var(--mint)); opacity: .4; border-radius: 0 0 40% 40%; }
.staff-card:hover { transform: translateY(-10px); }
.staff-portrait { position: relative; z-index: 2; width: clamp(140px, 20vw, 180px); margin: 4px auto 12px; }
.staff-name { font-family: var(--disp); font-weight: 800; font-size: 24px; color: var(--ink); }
.staff-role { font-family: var(--disp); font-weight: 700; font-size: 12.5px; color: var(--price, var(--coral-d)); letter-spacing: .04em; margin: 2px 0 10px; }
.staff-word { font-size: 13.5px; color: var(--ink-2); line-height: 1.8; margin-bottom: 12px; }
.staff-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.staff-chips span { font-size: 11.5px; font-weight: 700; color: var(--ink); background: var(--cream-2); padding: 4px 12px; border-radius: 30px; }

/* ===== 5. BOOKING ===== */
.booking { background: linear-gradient(180deg, var(--board), #eaf7fb); }
.booking-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 4vw, 56px); align-items: center;
  background: var(--white); border-radius: 34px; padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 20px 0 -10px #dcecf2, 0 30px 50px -26px rgba(92,74,84,.5);
}
.booking-art { position: relative; align-self: stretch; min-height: 260px; display: grid; place-items: center; border-radius: 24px; overflow: hidden; background: radial-gradient(circle at 50% 40%, rgba(160,216,240,.4), rgba(168,230,207,.25)); }
.booking-art .mascot--dog2 { width: clamp(150px, 22vw, 210px); position: relative; z-index: 2; }
.booking-bubbles { position: absolute; inset: 0; z-index: 1; }
.booking-body .sec-en { text-align: left; }
.booking-body .sec-jp { text-align: left; font-size: clamp(26px, 3.6vw, 40px); }
.booking-body .sec-jp::after { left: 0; right: 20%; }
.booking-lead { font-size: 15px; color: var(--ink-2); margin: 12px 0 22px; }

.book-form { display: grid; gap: 16px; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book-form label { display: grid; gap: 6px; font-family: var(--disp); font-weight: 700; font-size: 13px; color: var(--ink); }
.book-form input {
  font-family: var(--body); font-weight: 500; font-size: 15px; color: var(--ink);
  background: var(--cream); border: 2px solid var(--line-2); border-radius: 16px; padding: 12px 16px;
  transition: border-color .3s, box-shadow .3s;
}
.book-form input:focus { outline: none; border-color: var(--sky-d); box-shadow: 0 0 0 4px rgba(160,216,240,.4); }
.bf-full { grid-column: 1 / -1; }
.bf-toggle { display: flex; gap: 8px; }
.bf-toggle button {
  flex: 1; font-family: var(--disp); font-weight: 700; font-size: 14px; color: var(--ink-2); cursor: pointer;
  background: var(--cream); border: 2px solid var(--line-2); border-radius: 16px; padding: 11px 8px;
  transition: transform .3s var(--spring), border-color .3s, background .3s, color .3s;
}
.bf-toggle button.on { color: #fff; background: linear-gradient(180deg, #8fe0c2, #5fcea8); border-color: #5fcea8; transform: translateY(-2px); box-shadow: 0 5px 0 -1px #3fbf8f; }
.bf-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bf-chips button {
  font-family: var(--disp); font-weight: 700; font-size: 13.5px; color: var(--ink-2); cursor: pointer;
  background: var(--cream); border: 2px solid var(--line-2); border-radius: 30px; padding: 8px 16px;
  transition: transform .3s var(--spring), background .3s, color .3s, border-color .3s;
}
.bf-chips button:hover { transform: translateY(-2px); }
.bf-chips button.on { color: #fff; background: linear-gradient(180deg, #ffb38a, #ff9d92); border-color: #ff9d92; }
.bf-note { min-height: 22px; font-family: var(--disp); font-weight: 700; font-size: 14.5px; color: #3fa07a; }

/* ============================================================
   footer
   ============================================================ */
.footer { position: relative; background: linear-gradient(180deg, #eaf7fb, #dff2ea); color: var(--ink); padding: 60px clamp(20px, 5vw, 52px) 40px; z-index: 2; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-mark { width: 56px; height: 56px; }
.footer-mark svg { width: 32px; height: 32px; }
.footer-tag { font-family: var(--disp); font-weight: 800; font-size: clamp(22px, 3vw, 30px); color: var(--ink); }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-bottom: 22px; }
.footer-nav a { font-family: var(--disp); font-weight: 700; font-size: 14px; color: var(--ink-2); transition: color .25s; }
.footer-nav a:hover { color: var(--coral-d); }
.footer-note { font-size: 12.5px; color: var(--ink-3); max-width: 600px; margin: 0 auto 8px; line-height: 1.7; }
.footer-copy { font-family: var(--disp); font-weight: 600; font-size: 12.5px; color: var(--ink-3); }

/* ============================================================
   スクロールキュー
   ============================================================ */
.scroll-cue {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 5;
  display: grid; justify-items: center; gap: 6px;
  font-family: var(--disp); font-weight: 700; font-size: 10px; letter-spacing: .25em; color: var(--ink-3);
}
.scroll-cue span { width: 8px; height: 8px; border-radius: 50%; background: var(--coral-d); animation: cue 1.4s var(--spring) infinite; }
@keyframes cue { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav.open { flex-wrap: wrap; background: rgba(255,247,239,.97); backdrop-filter: blur(12px); }
  .nav.open .nav-links { display: flex; flex-direction: column; gap: 2px; width: 100%; margin: 10px 0 4px; }
  .nav.open .nav-cta { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stage { height: clamp(260px, 60vw, 380px); order: -1; }
  .serv-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .booking-inner { grid-template-columns: 1fr; }
  .booking-art { min-height: 220px; }
}
@media (max-width: 640px) {
  .price-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-10px); }
  .bf-row { grid-template-columns: 1fr; }
  .sticker--fish, .sticker--bone { display: none; }
}
@media (max-width: 460px) {
  .serv-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .hero-badges { gap: 16px; }
}

/* ステッカー配置 */
.sticker { position: absolute; z-index: 2; pointer-events: none; }
.sticker svg { width: 100%; height: auto; display: block; }
.sticker--bone { top: 20%; left: 6%; width: clamp(40px, 6vw, 66px); --rot: -12deg; color: var(--peach-d); }
.sticker--heart { top: 66%; left: 42%; width: clamp(30px, 4vw, 46px); --rot: 8deg; color: var(--coral); }
.sticker--paw { top: 24%; right: 8%; width: clamp(36px, 5vw, 56px); --rot: 10deg; color: var(--sky-d); }
.sticker--fish { bottom: 20%; right: 40%; width: clamp(38px, 5vw, 58px); --rot: -6deg; color: var(--lilac); }

/* ============================================================
   reduced-motion（重い演出を止める）
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .bubble, .paw-print, .marquee-track { display: none; }
  .m-eyes, .m-tail, .m-ear-l, .m-ear-r, .float { animation: none !important; }
  .scroll-cue span { display: none; }
}
