/* =====================================================
   VARIABLES & RESET
===================================================== */
:root {
  /* v10: キーカラーを道と同じ EA5098 系にシフト（旧: #FF3366 / #E6175A / #FFE8EE / #FFF5F7 / #FF6B8A） */
  --pink: #F44387;
  --pink-dark: #C8316B;
  --pink-soft: #FCE5F0;
  --pink-tint: #FDF4F8;
  --coral: #F770A5;
  --yellow: #FFD600;
  --white: #FFFFFF;
  --cream: #FEFCFB;
  --text: #2D2D3A;
  --text-light: #6B6B80;
  --text-muted: #9B9BAF;
  --gray-bg: #F8F8FA;
  --gray-line: #ECECF0;
  --navy: #1A1A2E;

  --font-round: 'M PLUS Rounded 1c', sans-serif;
  --font-zen: 'Zen Maru Gothic', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-num: 'Inter', sans-serif;

  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  --sidebar-w: 180px;
  --frame-w: 430px;
  --frame-gap: 40px;
  --frame-border: 10px;
  --frame-radius: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================
   PC WORLD BACKGROUND (>= 960px) — clean, warm
===================================================== */
#world-bg { display: none; }

@media (min-width: 960px) {
  body {
    background: var(--cream);
    min-height: 100vh;
  }
  #world-bg {
    display: block;
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .wb-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #D5C8CE 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.6;
  }
  .wb-accent-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234,80,152,0.06) 0%, transparent 70%);
    top: 15%;
    left: 5%;
  }
  .wb-accent-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,138,0.05) 0%, transparent 70%);
    bottom: 10%;
    right: 3%;
  }
}

/* =====================================================
   PC MAIN CONTENT FRAME
===================================================== */
@media (min-width: 960px) {
  #lp-main {
    position: relative;
    z-index: 10;
    max-width: var(--frame-w);
    margin-left: calc(50vw - var(--frame-w) / 2);
    background: var(--white);
    min-height: 100vh;
    border-radius: var(--frame-radius);
    box-shadow: none;
  }
}

/* =====================================================
   PHONE FRAME OVERLAY (PC only)
===================================================== */
#phone-frame { display: none; }

@media (min-width: 960px) {
  #phone-frame {
    display: block;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(var(--frame-w) + var(--frame-border) * 2);
    height: 100vh;
    border: var(--frame-border) solid #E2DFE3;
    border-radius: var(--frame-radius);
    pointer-events: none;
    z-index: 900;
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.8),
      0 0 0 1px rgba(0,0,0,0.06),
      0 20px 60px rgba(0,0,0,0.1),
      0 4px 16px rgba(0,0,0,0.06);
  }
  #phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
  }
}

/* =====================================================
   CORNER COVERS — OUTSIDE the frame, hides leaked content
   Layer: above content (z:10), below frame (z:900)
===================================================== */
#corner-covers { display: none; }

@media (min-width: 960px) {
  #corner-covers {
    display: block;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(var(--frame-w) + var(--frame-border) * 2);
    height: 100vh;
    pointer-events: none;
    z-index: 800;
  }
  .cc {
    position: absolute;
    width: var(--frame-radius);
    height: var(--frame-radius);
    background:
      radial-gradient(circle, rgba(232,224,228,0.5) 1px, transparent 1px),
      var(--cream);
    background-size: 28px 28px, auto;
    background-attachment: fixed, fixed;
  }
  .cc-tl {
    top: 0; left: 0;
    -webkit-mask-image: radial-gradient(circle at 100% 100%, transparent calc(var(--frame-radius) - 0.5px), #000 var(--frame-radius));
    mask-image: radial-gradient(circle at 100% 100%, transparent calc(var(--frame-radius) - 0.5px), #000 var(--frame-radius));
  }
  .cc-tr {
    top: 0; right: 0;
    -webkit-mask-image: radial-gradient(circle at 0% 100%, transparent calc(var(--frame-radius) - 0.5px), #000 var(--frame-radius));
    mask-image: radial-gradient(circle at 0% 100%, transparent calc(var(--frame-radius) - 0.5px), #000 var(--frame-radius));
  }
  .cc-bl {
    bottom: 0; left: 0;
    -webkit-mask-image: radial-gradient(circle at 100% 0%, transparent calc(var(--frame-radius) - 0.5px), #000 var(--frame-radius));
    mask-image: radial-gradient(circle at 100% 0%, transparent calc(var(--frame-radius) - 0.5px), #000 var(--frame-radius));
  }
  .cc-br {
    bottom: 0; right: 0;
    -webkit-mask-image: radial-gradient(circle at 0% 0%, transparent calc(var(--frame-radius) - 0.5px), #000 var(--frame-radius));
    mask-image: radial-gradient(circle at 0% 0%, transparent calc(var(--frame-radius) - 0.5px), #000 var(--frame-radius));
  }
}

/* =====================================================
   LEFT SIDEBAR — Logo panel
===================================================== */
/* =====================================================
   LEFT SIDEBAR — Nav + hero-passed logo/badge
===================================================== */
#sidebar-left { display: none; }

@media (min-width: 960px) {
  #sidebar-left {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: calc(50% + var(--frame-w)/2 + var(--frame-border) + var(--frame-gap));
    width: var(--sidebar-w);
    height: 100vh;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 1000;
    padding: 48px 0;
  }

  /* ヒーロー通過後に表示するロゴ・バッジエリア */
  .sl-passed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin-bottom 0.4s ease;
    pointer-events: none;
  }
  #sidebar-left.hero-passed .sl-passed {
    opacity: 1;
    max-height: 120px;
    margin-bottom: 24px;
    pointer-events: auto;
  }
  .sl-passed__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1.5px solid rgba(220,60,120,0.35);
    border-radius: 50px;
    padding: 5px 12px;
  }
  .sl-passed__new {
    background: #222;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 1px 5px;
    letter-spacing: 0.08em;
    line-height: 1.6;
    font-family: var(--font-sans);
    border-radius: 2px;
  }
  .sl-passed__text {
    color: #C02060;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-family: var(--font-sans);
    white-space: nowrap;
  }
  .sl-passed__logo img {
    height: 60px;
    width: auto;
  }

  /* ナビ */
  .sr-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    align-items: center;
  }
  .sr-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
    opacity: 0.35;
  }
  .sr-nav-item:hover,
  .sr-nav-item.active { opacity: 1; }
  .sr-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gray-line);
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s var(--ease-bounce);
  }
  .sr-nav-item.active .sr-dot {
    background: var(--pink);
    transform: scale(1.6);
  }
  .sr-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text);
    white-space: nowrap;
    text-align: left;
  }
}

/* =====================================================
   RIGHT SIDEBAR — アパレルアイテム
===================================================== */
#sidebar-right { display: none; }

@media (min-width: 960px) {
  #sidebar-right {
    display: block;
    position: fixed;
    top: 0;
    left: calc(50% + var(--frame-w)/2 + var(--frame-border) + var(--frame-gap));
    width: var(--sidebar-w);
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
  }
  .sr-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    margin-left: 17px;
    padding: 13px 22px;
    background: var(--pink);
    color: var(--white);
    border-radius: 100px;
    font-family: var(--font-round);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(234,80,152,0.25);
    transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s ease;
    white-space: nowrap;
  }
  .sr-reserve-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(234,80,152,0.35);
  }
}

/* =====================================================
   FLOATING ITEMS — both panels
===================================================== */
.pf-item {
  display: none;
}
@media (min-width: 960px) {
  .pf-item {
    display: block;
    position: absolute;  /* sidebar-right内の絶対配置 */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-bounce);
    z-index: 999;
  }
  .pf-item.visible { opacity: 0.8; }
  .pf-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.1));
  }
}

/* =====================================================
   SHARED BUTTONS
===================================================== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-pill:hover { transform: translateY(-2px) scale(1.03); }
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(234,80,152,0.3);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(234,80,152,0.4); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--gray-line);
}
.btn-outline:hover { background: var(--gray-bg); border-color: var(--text-muted); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-white {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-lg { padding: 16px 40px; font-size: 17px; }
.btn-xl { padding: 18px 44px; font-size: 18px; }

/* きらっと光るグリント（reservation / final CTA） */
.btn-pill.btn-lg.btn-primary,
.btn-pill.btn-xl.btn-white {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-pill.btn-lg.btn-primary::before,
.btn-pill.btn-xl.btn-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.45) 40%,
    rgba(255,255,255,0.65) 50%,
    rgba(255,255,255,0.45) 60%,
    transparent 100%
  );
  animation: ctaGlint 4s ease-in-out 2s infinite;
  pointer-events: none;
  z-index: 1;
}
.btn-pill.btn-xl.btn-white::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(244,67,135,0.18) 40%,
    rgba(244,67,135,0.28) 50%,
    rgba(244,67,135,0.18) 60%,
    transparent 100%
  );
}
@keyframes ctaGlint {
  0%   { left: -120%; }
  35%  { left: 200%; }
  100% { left: 200%; }
}

/* =====================================================
   HEADER (mobile, scrolled)
===================================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 600;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
header.hero-passed {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-left {
  display: flex;
  align-items: center;
}
.header-logo img { height: 36px; width: auto; }
/* 右側：バッジ or CTAを同じ高さで切り替え */
.header-right {
  display: flex;
  align-items: center;
}
.header-badge,
.header-cta-btn {
  height: 32px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.header-badge {
  border: 1.5px solid rgba(220,60,120,0.35);
  border-radius: 50px;
  padding: 0 12px;
  gap: 0;
  background: transparent;
}
.header-badge__place {
  color: #C02060;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: var(--font-sans);
  white-space: nowrap;
}
/* ヒーロー通過後にCTAボタンへ切り替え */
.header-cta-btn {
  display: none;
  padding: 0 16px;
  background: var(--pink);
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  font-family: var(--font-sans);
  white-space: nowrap;
}
@media (min-width: 960px) { header { display: none; } }

/* =====================================================
   SCROLL REVEAL
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =====================================================
   1. HERO — clean white, typographic
===================================================== */
#hero {
  min-height: 100svh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 28px 80px;
  text-align: center;
}
/* ── KV画像ヒーロー (v2) ── */
#hero {
  min-height: unset;
  padding: 0;
  background: #EBEBEB;
  display: block;
  overflow: visible;
}
.hero-kv-wrap {
  position: relative;
  width: 100%;
}
/* ロゴ用グレー帯: padding で上下均等の余白を保証 */
.hero-kv-top {
  background: #EBEBEB;
  padding: 44px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-venue {
  margin-top: 10px;
  font-family: var(--font-zen);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.hero-kv-logo {
  height: 80px;
  width: auto;
}
/* 画像の自然なグレー帯 (上部18% = 180/1002px) を margin-top で重ねて消す。
   margin-top の % は親の width 基準。180/678 ≈ 26.5% で任意の幅で正確に除去される */
.hero-kv-img {
  width: 100%;
  display: block;
  margin-top: -26.5%;
  position: relative;
  z-index: 1;
}
.hero-kv-cta {
  position: absolute;
  bottom: 9%;
  right: 6%;
  z-index: 3;
}
.hero-kv-cta .btn-pill {
  padding: 14px 26px;
  font-size: 15px;
  box-shadow: 0 6px 24px rgba(234,80,152,0.45);
}
#hero .hero-scroll-hint {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  padding: 20px 0 16px;
  background: #EBEBEB;
  animation: none;
}

.hero-kv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-kv-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-kv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.95) 100%);
  z-index: 1;
}
.hero-bg-accent {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,80,152,0.06) 0%, transparent 70%);
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-tint);
  border: 1px solid var(--pink-soft);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 12px;
  color: var(--pink);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  animation: fadeInDown 0.8s var(--ease-out) both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.8); }
}

.hero-catch {
  position: relative;
  z-index: 2;
  font-family: var(--font-round);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 28px;
  animation: fadeInUp 1s 0.15s var(--ease-out) both;
}
.hc-line1 {
  display: block;
  font-size: clamp(24px, 6vw, 36px);
  color: var(--text-light);
  margin-bottom: 6px;
}
.hc-line2 {
  display: block;
  font-size: clamp(32px, 8vw, 48px);
  color: var(--text);
  position: relative;
}
.hc-line2 .hc-accent {
  color: var(--pink);
}
.hc-line2::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  opacity: 0.4;
  animation: lineGrow 0.6s 1.2s var(--ease-bounce) both;
  transform-origin: center;
}
@keyframes lineGrow {
  from { transform: translateX(-50%) scaleX(0); }
  to { transform: translateX(-50%) scaleX(1); }
}

.hero-desc {
  position: relative;
  z-index: 2;
  font-size: clamp(13px, 3.2vw, 16px);
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 40px;
  animation: fadeInUp 1s 0.3s var(--ease-out) both;
}
.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  animation: fadeInUp 1s 0.45s var(--ease-out) both;
}
@media (min-width: 480px) {
  .hero-actions { flex-direction: row; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s 0.8s var(--ease-out) both;
}
.hero-scroll-hint span {
  font-family: var(--font-num);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hs-arrow {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gray-line), transparent);
  position: relative; overflow: hidden;
}
.hs-arrow::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--pink);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -50%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: none; }
}

/* =====================================================
   2. SERVICE INTRO
===================================================== */
#service-intro {
  background: linear-gradient(to bottom, var(--white) 30%, var(--pink-tint) 100%);
  padding: 56px 0 4px;
}
.si-inner {
  padding: 0 28px 28px;
  text-align: center;
}
.si-eyebrow {
  display: inline-block;
  font-family: var(--font-round);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--pink);
  margin-bottom: 12px;
}
.si-headline {
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: clamp(24px, 6vw, 32px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 8px;
}
.si-headline em { color: var(--pink); font-style: normal; }
.si-sub { font-size: 14px; color: var(--text-light); line-height: 1.8; }
.si-stats {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px 10px 20px;
  margin-top: 16px;
  background: rgba(244,67,135,0.06);
  border: 1.5px solid rgba(244,67,135,0.22);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(244,67,135,0.08);
}
.si-stats-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: var(--pink);
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
}
.si-stats-plus {
  font-size: 0.55em;
  font-weight: 800;
  margin-left: 0.04em;
  transform: translateY(-0.1em);
  display: inline-block;
}
.si-stats-label {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: left;
}
.si-lead {
  font-size: 15.5px; line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--text-light); margin-top: 12px;
}
.si-lead a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.si-lead a:hover { color: var(--pink); }
.si-features {
  list-style: none; padding: 0;
  margin: 20px auto 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
}
.si-features li {
  font-family: var(--font-zen); font-weight: 700;
  font-size: 16px; line-height: 1.4; letter-spacing: 0.04em;
  color: var(--text); padding: 9px 0;
  position: relative;
  display: flex; align-items: center; gap: 10px;
}
.si-features li::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}
.si-features li + li {
  border-top: 1px solid rgba(234,80,152,0.1);
}
.si-illust-band {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 32px; padding: 4px 16px 0;
}
.si-illust-band .si-deco {
  height: 110px; width: auto;
}
.si-illust-band .si-deco:first-child { transform: rotate(-2deg); }
.si-illust-band .si-deco:nth-child(2) { transform: translateY(-14px); }
.si-illust-band .si-deco:last-child { transform: rotate(2deg); }

.si-media-unit { width: 100%; }
.si-video-wrap {
  position: relative; width: 100%;
  background: var(--gray-bg);
}
.si-video-sp, .si-video-pc { width: 100%; display: block; object-fit: cover; }
.si-video-pc { display: none; }
@media (min-width: 600px) {
  .si-video-sp { display: none; }
  .si-video-pc { display: block; }
}

.si-brand-strip {
  background: var(--white);
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.si-brand-track {
  display: flex; gap: 14px;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.si-brand-item {
  flex-shrink: 0;
  width: 72px; height: 44px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 6px;
}
.si-brand-item img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* =====================================================
   3. EMPATHY — sticky scroll (mobile), stacked (PC)
===================================================== */
#empathy {
  background: var(--white);
  padding: 48px 0 48px;
}
.empathy-scroll { height: 520vh; position: relative; }
.empathy-canvas {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ec-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(150deg, var(--pink-tint) 0%, var(--pink-soft) 50%, #FFD9E3 100%);
}
.ec-header-persist {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 80px 24px 20px;
  z-index: 40;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
  pointer-events: none;
}
.empathy-canvas:not([data-step="0"]) .ec-header-persist { opacity: 1; transform: none; }
.ec-persist-label {
  font-family: var(--font-zen); font-weight: 900; font-size: 13px;
  color: var(--text); letter-spacing: 0.03em;
}
.ec-nav { display: flex; align-items: center; gap: 8px; }
.ec-nav-dot {
  width: 10px; height: 10px; border-radius: 100px;
  background: rgba(0,0,0,0.12);
  transition: width 0.45s var(--ease-bounce), background 0.45s ease;
}
.ec-nav-dot.active { width: 36px; background: var(--pink); }

/* Intro step */
.ec-intro {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 32px;
  z-index: 20;
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}
.ec-intro-eyebrow {
  font-family: var(--font-round); font-size: 13px; font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--pink); margin-bottom: 20px;
}
.ec-intro-title {
  font-family: var(--font-zen); font-weight: 900;
  font-size: clamp(24px, 6.5vw, 44px); line-height: 1.3;
  color: var(--text); margin-bottom: 28px;
  word-break: keep-all;
}
.ec-intro-hint {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-muted);
  animation: introHintBounce 2.2s ease-in-out infinite;
}
.ec-intro-hint span { font-family: var(--font-num); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }
.ec-intro-hint-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
@keyframes introHintBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
.empathy-canvas:not([data-step="0"]) .ec-intro {
  opacity: 0; transform: translateY(-40px); pointer-events: none;
}

/* Scene cards */
.ec-scene {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 24px;
  opacity: 0; transform: translateY(28px) scale(0.98);
  transition: opacity 0.65s var(--ease-smooth), transform 0.65s var(--ease-smooth);
  pointer-events: none; z-index: 10;
}
.empathy-canvas[data-scene="1"] .ec-scene[data-scene="1"],
.empathy-canvas[data-scene="2"] .ec-scene[data-scene="2"],
.empathy-canvas[data-scene="3"] .ec-scene[data-scene="3"],
.empathy-canvas[data-scene="4"] .ec-scene[data-scene="4"] {
  opacity: 1; transform: none; pointer-events: auto;
}
.ec-card {
  width: 100%; max-width: 360px;
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 2px 12px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
}
.ec-img-area {
  width: 100%; aspect-ratio: 4/3;
  position: relative; background: var(--gray-bg);
  overflow: hidden; flex-shrink: 0;
}
.ec-img { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ec-img img { width: 100%; height: 100%; object-fit: contain; }
.ec-content { padding: 20px 22px 24px; }
.ec-txt h3 {
  font-family: var(--font-zen); font-weight: 900;
  font-size: clamp(18px, 4.6vw, 22px); line-height: 1.5;
  letter-spacing: 0.02em;
  word-break: keep-all;
  color: var(--text); margin-bottom: 10px;
}
.ec-txt p { font-size: 13px; line-height: 1.85; color: var(--text-light); }
.ec-txt p em { color: var(--pink); font-style: normal; font-weight: 700; }

.ec-scroll-hint {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 30; pointer-events: none;
  transition: opacity 0.4s ease;
}
/* hide canvas SCROLL at step 0 — intro-hint shows instead */
.empathy-canvas[data-step="0"] .ec-scroll-hint { opacity: 0; pointer-events: none; }
.ec-scroll-hint span {
  font-family: var(--font-num); font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted);
}
.ec-scroll-hint-arrow {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  animation: scrollDotBounce 2.2s ease-in-out infinite;
}
@keyframes scrollDotBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* PC: empathy uses same sticky scroll as mobile */

/* =====================================================
   WAVE DIVIDER
===================================================== */
.wave-divider {
  display: block; width: 100%;
  overflow: hidden; line-height: 0;
  margin-bottom: -1px;
}
.wave-divider svg { display: block; width: 100%; }

/* =====================================================
   4. RESERVATION
===================================================== */
#reservation {
  background: var(--navy);
  padding: 80px 28px 72px;
  text-align: center;
  position: relative;
}
.rsv-inner { max-width: 400px; margin: 0 auto; position: relative; z-index: 1; }
.rsv-eyebrow {
  display: inline-block;
  font-family: var(--font-round);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 18px;
}
.rsv-headline {
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: clamp(26px, 6.4vw, 36px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
}
.rsv-sub {
  font-size: 15.5px; line-height: 1.95;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.65); margin-bottom: 36px;
}
.rsv-sub strong { color: var(--white); font-weight: 700; }
.rsv-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rsv-walkin {
  font-size: 11px; color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* =====================================================
   5. STEPS (now sticky scroll — uses empathy canvas CSS)
===================================================== */
#steps { background: var(--pink-tint); margin-top: -4px; padding-top: 4px; }
.steps-header {
  padding: 0 28px 48px;
  text-align: center;
}
.steps-header .section-label {
  font-family: var(--font-round);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--pink);
  margin-bottom: 14px;
  display: block;
}
.steps-header .section-title {
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: clamp(22px, 5.2vw, 30px);
  line-height: 1.4;
  color: var(--text);
}

.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: grid; grid-template-columns: 1fr;
  position: relative; overflow: hidden;
}
.step-photo {
  position: relative; width: 100%;
  aspect-ratio: 16/9; overflow: hidden;
}
.step-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-smooth);
}
.step-item:hover .step-photo img { transform: scale(1.04); }
.step-num-badge {
  position: absolute; top: 16px; left: 16px;
  z-index: 2;
  background: var(--pink); color: var(--white);
  border-radius: 100px;
  padding: 4px 12px;
  display: flex; align-items: baseline; gap: 4px;
  box-shadow: 0 2px 12px rgba(234,80,152,0.3);
}
.step-num-label {
  font-family: var(--font-num); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; opacity: 0.8;
}
.step-num-digit {
  font-family: var(--font-num); font-size: 18px; font-weight: 900; line-height: 1;
}

/* ── Steps sticky section: card visual overhaul ── */
#steps .ec-img-area { overflow: visible; }
#steps .ec-img { overflow: hidden; border-radius: 20px 20px 0 0; }
#steps .ec-img img { object-fit: cover; }
#steps .step-num-badge {
  top: auto;
  bottom: -22px;
  left: 18px;
  transform: rotate(-4deg);
  padding: 6px 20px 6px 12px;
  gap: 5px;
  box-shadow: 0 8px 24px rgba(234,80,152,0.45), 0 2px 6px rgba(0,0,0,0.12);
}
#steps .step-num-label { font-size: 8px; }
#steps .step-num-digit { font-size: 26px; }
#steps .ec-content { padding-top: 38px; }
#steps .ec-scene[data-scene="4"] .step-num-badge {
  box-shadow: 0 8px 24px rgba(255,200,0,0.45), 0 2px 6px rgba(0,0,0,0.12);
}
@media (max-width: 959px) {
  #steps .ec-txt p { font-size: 14px; }
}
.step-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
}
.step-content {
  padding: 24px 28px 32px;
  background: var(--white);
  position: relative;
}
.step-title {
  font-family: var(--font-zen); font-weight: 900;
  font-size: clamp(18px, 4.2vw, 22px);
  line-height: 1.4; color: var(--text); margin-bottom: 10px;
}
.step-body {
  font-size: 13px; line-height: 1.9; color: var(--text-light);
}

/* =====================================================
   4. EMPATHY SLIDER (LaLa Pickがある世界)
===================================================== */
.emps-header {
  padding: 0 28px 16px;
  text-align: center;
}
.emps-eyebrow {
  display: inline-block;
  font-family: var(--font-round);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--pink);
  margin-bottom: 14px;
}
.emps-title {
  font-family: var(--font-zen); font-weight: 900;
  font-size: clamp(24px, 5.8vw, 32px);
  line-height: 1.45; color: var(--text);
  letter-spacing: 0.04em;
  word-break: keep-all;
}
.emps-slider-wrap { overflow: visible; }
.emps-slider {
  display: flex;
  align-items: stretch;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 16px;
  padding: 8px 28px 16px;
}
.emps-slider::-webkit-scrollbar { display: none; }
.emps-slide {
  flex: 0 0 calc(100% - 56px);
  scroll-snap-align: center;
  display: flex;
}
.emps-slide .ec-card {
  flex: 1;
  max-width: none;
}
.emps-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}
.emps-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.emps-arrow {
  display: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.14);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
}
.emps-arrow:hover:not(:disabled) {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 2px 12px rgba(234,80,152,0.14);
}
.emps-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}
@media (min-width: 960px) {
  .emps-arrow {
    display: flex;
  }
}
.emps-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: var(--gray-line);
  transition: width 0.35s var(--ease-bounce), background 0.3s ease;
  cursor: pointer;
}
.emps-dot.active {
  width: 28px;
  background: var(--pink);
}

/* =====================================================
   6. BRANDS
===================================================== */
#brands {
  background: var(--white);
  padding: 80px 0 80px;
}
.brands-header {
  padding: 0 28px 48px;
  text-align: center;
}
.brands-header .section-label {
  font-family: var(--font-round); font-size: 13px; font-weight: 800;
  letter-spacing: 0.15em; color: var(--pink);
  margin-bottom: 14px; display: block;
}
.brands-header .section-title {
  font-family: var(--font-zen); font-weight: 900;
  font-size: clamp(22px, 5.2vw, 32px);
  line-height: 1.35; color: var(--text);
}
.brands-count {
  font-family: var(--font-round);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--pink);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.brands-header .section-sub {
  font-size: 14px; color: var(--text-light);
  line-height: 1.8; margin-top: 10px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-line);
  border-left: 1px solid var(--gray-line);
}
.brand-logo-item {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  border-right: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  min-width: 0;
  overflow: hidden;
}
.brand-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brands-note {
  margin-top: 16px;
  padding: 0 28px;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* =====================================================
   7. FINAL CTA
===================================================== */
#finalcta {
  background: linear-gradient(155deg, var(--coral) 0%, var(--pink) 55%, #D6306E 100%);
  padding: 88px 28px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finalcta-inner {
  position: relative; z-index: 2;
  max-width: 380px; margin: 0 auto;
}
.finalcta-label {
  display: block;
  margin-bottom: 28px;
}
.finalcta-label img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin: 0 auto;
}
.finalcta-catch {
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: clamp(26px, 6vw, 36px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
}
.finalcta-sub {
  font-size: 15.5px; line-height: 1.95;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 44px;
}
.finalcta-sub a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.8);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.finalcta-sub a:hover { color: #fff; }
.finalcta-btn-group {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
@media (min-width: 480px) {
  .finalcta-btn-group { flex-direction: row; justify-content: center; }
}

/* =====================================================
   FOOTER
===================================================== */
footer {
  background: var(--navy);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px; text-align: center;
}
.footer-logo img {
  height: 24px; filter: brightness(0) invert(1);
  opacity: 0.5;
  display: block;
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease;
}
.footer-nav a:hover {
  color: rgba(255,255,255,0.95);
}
.footer-nav-icon {
  font-size: 0.92em;
  opacity: 0.75;
  transform: translateY(-0.5px);
}
footer p {
  font-family: var(--font-num);
  font-size: 11px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  margin: 0;
}

/* =====================================================
   CUSTOM CURSOR (PC only)
===================================================== */
#cursor {
  position: fixed;
  width: 14px; height: 14px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  opacity: 0;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}
@media (min-width: 960px) {
  body { cursor: none; }
  #cursor, #cursor-ring { opacity: 1; }
}
@media (hover: none) {
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}


/* ════════════════════════════════════════
   STEPS v3 – スティッキー全画面 + 背景に道アニメーション
   ════════════════════════════════════════ */

/* スクロールエリア */
.steps-scroll { height: 650vh; position: relative; }

/* スティッキーキャンバス */
.steps-canvas {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(170deg, var(--pink-tint) 0%, var(--pink-tint) 8%, var(--pink-soft) 50%, #FFD9E3 100%);
}

/* 白フェードオーバーレイ（道が下から広がって白くなる演出） */
.steps-white-fade {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, #fff 0%, #fff 40%, transparent 100%);
  opacity: 0;
  transition: opacity 1.0s ease;
  pointer-events: none;
}

/* SVG道 背景レイヤー */
.steps-road-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 400%;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}
.steps-road-path {
  fill: none;
  stroke-width: 50;
  stroke-linecap: butt;
  stroke-linejoin: round;
}
.steps-road-path--wide {
  stroke-width: 110;
}

/* ── ヘッダー（ナビドット） ── */
.steps-header-persist {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 80px 24px 20px;
  z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
  pointer-events: none;
}
.steps-canvas[data-scene="1"] .steps-header-persist,
.steps-canvas[data-scene="2"] .steps-header-persist,
.steps-canvas[data-scene="3"] .steps-header-persist,
.steps-canvas[data-scene="4"] .steps-header-persist {
  opacity: 1; transform: none;
}
.steps-persist-label {
  font-family: var(--font-zen); font-weight: 900; font-size: 13px;
  color: var(--text); letter-spacing: 0.03em;
}
.steps-nav { display: flex; align-items: center; gap: 8px; }
.steps-nav-dot {
  width: 10px; height: 10px; border-radius: 100px;
  background: rgba(0,0,0,0.12);
  transition: width 0.45s var(--ease-bounce), background 0.45s ease;
}
.steps-nav-dot.active { width: 36px; background: var(--pink); }

/* ── イントロ ── */
.steps-intro {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 32px;
  z-index: 10;
  opacity: 0; transform: scale(0.97);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}
.steps-canvas[data-step="0"] .steps-intro {
  opacity: 1; transform: scale(1);
}
.steps-intro-eyebrow {
  font-family: var(--font-round); font-size: 13px; font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--pink); margin-bottom: 20px;
}
.steps-intro-title {
  font-family: var(--font-zen); font-weight: 900;
  font-size: clamp(26px, 7vw, 46px); line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--text); margin-bottom: 28px;
  word-break: keep-all;
}

/* 句読点を含む見出しのオプティカルセンタリング（句読点の余白を詰めて視覚的な重心を中央に） */
.is-punc-centered {
  font-feature-settings: "palt";
}
/* 句読点数が多く、読点が右端に来る見出し用の追加調整 */
.is-punc-centered--strong {
  font-feature-settings: "palt";
  transform: translateX(0.22em);
}
.steps-canvas:not([data-step="0"]) .steps-intro {
  opacity: 0; transform: scale(1.03); pointer-events: none;
}

/* ── シーンカード（画面中央にふわっと） ── */
.steps-scene {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 28px 60px;
  opacity: 0; transform: translateY(28px) scale(0.96);
  transition: opacity 0.65s var(--ease-smooth), transform 0.65s var(--ease-smooth);
  pointer-events: none; z-index: 5;
}
.steps-canvas[data-scene="1"] .steps-scene[data-scene="1"],
.steps-canvas[data-scene="2"] .steps-scene[data-scene="2"],
.steps-canvas[data-scene="3"] .steps-scene[data-scene="3"],
.steps-canvas[data-scene="4"] .steps-scene[data-scene="4"] {
  opacity: 1; transform: none; pointer-events: auto;
}

.steps-scene-inner {
  display: flex; flex-direction: column;
  width: 340px; max-width: 100%;
}
.steps-scene-inner {
  align-items: flex-start; text-align: left;
}
/* STEP 1/3: width を絞って右寄せ（transform は overflow に影響しないので使わない） */
.steps-scene[data-scene="1"] .steps-scene-inner,
.steps-scene[data-scene="3"] .steps-scene-inner {
  width: 260px;
  margin-left: auto;
  margin-right: 0;
}
/* STEP 2/4: 長文があるので幅維持のまま translateX でわずかに左へ（以前の状態を維持） */
.steps-scene[data-scene="2"] .steps-scene-inner,
.steps-scene[data-scene="4"] .steps-scene-inner {
  transform: translateX(-5%);
}
.steps-illust {
  width: 190px; height: 190px;
  object-fit: contain;
  margin-bottom: 16px;
}
.steps-num {
  font-family: var(--font-num); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--pink); margin: 0 0 8px;
}
.steps-num strong { font-size: 18px; }
.steps-scene-text h3 {
  font-family: var(--font-zen); font-weight: 900;
  font-size: clamp(22px, 5.6vw, 28px); line-height: 1.5;
  letter-spacing: 0.04em;
  word-break: keep-all;
  color: var(--text); margin: 0 0 14px;
}
.steps-scene-text p:not(.steps-num) {
  font-size: 14.5px; line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--text-light); margin: 0;
}
.steps-scene-text p:not(.steps-num) strong {
  color: var(--pink);
  font-weight: 700;
}

/* Steps: lead + bullet list */
.steps-scene-text p.steps-lead {
  font-size: 14.5px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0 0 14px;
  font-weight: 500;
}
.steps-scene-text .steps-lead strong {
  color: var(--pink);
  font-weight: 700;
}
.steps-scene-text .steps-lead-sub {
  font-size: 0.85em;
  letter-spacing: 0;
}
.steps-scene-text .steps-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.steps-scene-text .steps-bullets li {
  position: relative;
  padding-left: 14px;
  font-size: 13.5px;
  line-height: 1.65;
  letter-spacing: 0;
  color: var(--text-light);
}
.steps-scene-text .steps-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.9;
}
.steps-scene-text .steps-bullets li strong {
  color: var(--pink);
  font-weight: 700;
}

/* Booth location button */
.steps-booth-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 8px 18px;
  border: 1.5px solid var(--pink);
  border-radius: 100px;
  background: transparent;
  color: var(--pink);
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.steps-booth-btn:hover {
  background: var(--pink);
  color: #fff;
}

/* Booth modal */
.booth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.booth-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.booth-modal {
  position: relative;
  width: 90%;
  max-width: 420px;
  max-height: 85vh;
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px 24px;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  transform: translateY(12px);
  transition: transform 0.3s ease;
}
.booth-modal-overlay.is-open .booth-modal {
  transform: translateY(0);
}
.booth-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.2s;
}
.booth-modal-close:hover {
  background: #f0f0f0;
}
.booth-modal-title {
  font-family: var(--font-zen);
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 4px;
  text-align: center;
}
.booth-modal-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 16px;
}
.booth-modal-img {
  width: 100%;
  border-radius: 10px;
}
.booth-modal-close-bottom {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  border: 1.5px solid var(--gray-line);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-round);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.booth-modal-close-bottom:hover {
  background: var(--gray-bg);
  color: var(--text);
}

.steps-cta-link {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-zen); font-weight: 700;
  font-size: 13px; color: var(--pink);
  text-decoration: none;
  padding: 8px 20px;
  border: 1.5px solid var(--pink);
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease;
}
.steps-cta-link:hover {
  background: var(--pink); color: #fff;
}

/* ── モバイル調整（959px以下） ── */
@media (max-width: 959px) {
  /* モバイルでは左右シフトなし — 画面中央に配置 */
  .steps-scene[data-scene="1"] .steps-scene-inner,
  .steps-scene[data-scene="2"] .steps-scene-inner,
  .steps-scene[data-scene="3"] .steps-scene-inner,
  .steps-scene[data-scene="4"] .steps-scene-inner {
    transform: none;
  }
  .steps-scene { padding: 90px 24px 60px; }
  .steps-scene-inner { width: min(340px, 100%); max-width: 340px; }
  /* ステップセクション文字サイズ拡大 */
  .steps-scene-text h3 {
    font-size: clamp(24px, 6.5vw, 30px);
  }
  .steps-scene-text p:not(.steps-num) {
    font-size: 15px;
  }
  .steps-scene-text .steps-lead {
    font-size: 15.5px;
  }
  .steps-scene-text .steps-bullets li {
    font-size: 13.5px;
  }
  /* 「LaLa Pickとは？」セクション文字サイズ拡大 */
  .si-headline {
    font-size: clamp(26px, 7vw, 34px);
  }
  .si-lead {
    font-size: 16px;
  }
  .si-features li {
    font-size: 16px;
  }
}

/* =====================================================
   HERO v5 — Redesign: Layered, Textured, Alive
===================================================== */

/* 画面外ではヒーロー内アニメを止める（モバイルのカクつき対策） */
#hero.is-offscreen .hero-v5-blob,
#hero.is-offscreen .hero-v5-bokeh,
#hero.is-offscreen .hero-v5-particle,
#hero.is-offscreen .hero-v5-road__shimmer,
#hero.is-offscreen .hero-v5-ppl,
#hero.is-offscreen .hero-v5-word {
  animation-play-state: paused !important;
}

/* Reset original hero properties */
#hero {
  min-height: unset !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden !important;
  background: none !important;
  position: relative;
}
/* モバイル：ヘッダーはhero通過後に表示されるため余白不要 */
.hero-new,
.hero-kv-wrap,
.hero-kv-top { display: none !important; }

/* Background: atmospheric depth gradient */
.hero-v5-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #FFFFFF;
}
.hero-v5-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Animated blobs */
.hero-v5-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.hero-v5-blob--1 {
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,200,228,0.16) 0%, transparent 60%);
  top: -10%; left: -18%;
  animation: v5BlobDrift 20s ease-in-out infinite alternate;
}
.hero-v5-blob--2 {
  width: 45%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245,180,225,0.12) 0%, transparent 60%);
  top: 35%; right: -14%;
  animation: v5BlobDrift 26s ease-in-out infinite alternate-reverse;
  animation-delay: -8s;
}
.hero-v5-blob--3 {
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,210,195,0.1) 0%, transparent 60%);
  bottom: -5%; left: 12%;
  animation: v5BlobDrift 22s ease-in-out infinite alternate;
  animation-delay: -9s;
}
@keyframes v5BlobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(18px, -12px) scale(1.08); }
  66%  { transform: translate(-10px, 14px) scale(0.94); }
  100% { transform: translate(12px, -6px) scale(1.02); }
}

/* Dot pattern */
.hero-v5-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(210,150,180,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Bokeh */
.hero-v5-bokeh {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-v5-bokeh--1 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,140,190,0.45) 0%, rgba(255,170,210,0.12) 50%, transparent 72%);
  top: 0%; left: 45%;
  animation: v5Bokeh 8s ease-in-out infinite alternate;
}
.hero-v5-bokeh--2 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,130,185,0.4) 0%, rgba(255,160,205,0.1) 50%, transparent 72%);
  top: 28%; left: -8%;
  animation: v5Bokeh 10s ease-in-out infinite alternate-reverse;
  animation-delay: -3s;
}
.hero-v5-bokeh--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,160,205,0.3) 0%, transparent 70%);
  top: 58%; left: 55%;
  animation: v5Bokeh 7s ease-in-out infinite alternate;
  animation-delay: -5s;
}
.hero-v5-bokeh--4 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,120,175,0.45) 0%, rgba(255,150,195,0.1) 50%, transparent 72%);
  top: 3%; left: 0%;
  animation: v5Bokeh 9s ease-in-out infinite alternate;
  animation-delay: -2s;
}
.hero-v5-bokeh--5 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,135,185,0.4) 0%, rgba(255,160,205,0.08) 50%, transparent 72%);
  top: 15%; left: 60%;
  animation: v5Bokeh 11s ease-in-out infinite alternate-reverse;
  animation-delay: -6s;
}
.hero-v5-bokeh--6 {
  width: 230px; height: 230px;
  background: radial-gradient(circle, rgba(255,150,200,0.32) 0%, transparent 70%);
  top: 45%; left: 5%;
  animation: v5Bokeh 9s ease-in-out infinite alternate;
  animation-delay: -4s;
}
.hero-v5-bokeh--7 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,145,195,0.28) 0%, transparent 70%);
  top: 75%; left: 40%;
  animation: v5Bokeh 8s ease-in-out infinite alternate-reverse;
  animation-delay: -7s;
}
@keyframes v5Bokeh {
  0%   { transform: scale(1); opacity: 0.35; }
  50%  { transform: scale(1.4); opacity: 0.75; }
  100% { transform: scale(0.85); opacity: 0.4; }
}

/* Particles */
.hero-v5-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-v5-particle {
  position: absolute;
  opacity: 0;
  will-change: transform;
}
.hero-v5-particle--dress {
  background: rgba(255,80,130,0.22);
  clip-path: polygon(30% 0%, 70% 0%, 90% 100%, 10% 100%);
  box-shadow: 0 0 6px rgba(255,80,130,0.08);
}
.hero-v5-particle--bag {
  background: rgba(220,60,110,0.2);
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(220,60,110,0.08);
}
.hero-v5-particle--bag::before {
  content: '';
  position: absolute;
  top: -35%;
  left: 25%;
  width: 50%;
  height: 35%;
  border: 1.5px solid rgba(220,60,110,0.3);
  border-bottom: none;
  border-radius: 50% 50% 0 0;
}
.hero-v5-particle--hanger {
  background: transparent;
  position: relative;
}
.hero-v5-particle--hanger::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 60%;
  background: rgba(200,50,100,0.22);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.hero-v5-particle--hanger::after {
  content: '';
  position: absolute;
  top: 5%; left: 42%;
  width: 16%; height: 45%;
  background: rgba(200,50,100,0.22);
  border-radius: 1px;
}
.hero-v5-particle--tee {
  background: rgba(255,70,120,0.2);
  clip-path: polygon(25% 0%, 0% 28%, 20% 28%, 20% 100%, 80% 100%, 80% 28%, 100% 28%, 75% 0%);
  box-shadow: 0 0 5px rgba(255,70,120,0.08);
}
.hero-v5-particle--tag {
  background: rgba(240,80,130,0.18);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 20%);
  box-shadow: 0 0 5px rgba(240,80,130,0.08);
}
.hero-v5-particle--tag::after {
  content: '';
  position: absolute;
  top: 15%; left: 12%;
  width: 18%; height: 18%;
  border-radius: 50%;
  background: rgba(255,80,130,0.25);
}

@keyframes v5ParticleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) rotate(0deg) scale(0.5);
  }
  10% { opacity: var(--p-op, 0.5); }
  85% { opacity: calc(var(--p-op, 0.5) * 0.7); }
  100% {
    opacity: 0;
    transform:
      translateY(var(--p-travel, -350px))
      translateX(var(--p-drift, 15px))
      rotate(var(--p-rot, 60deg))
      scale(1);
  }
}

/* Hero canvas */
.hero-v5-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 430 / 835;
  overflow: hidden;
  z-index: 3;
  container-type: inline-size;
}

/* Road SVG — clip-path reveal */
.hero-v5-road {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-v5-road.is-shown {
  clip-path: inset(0 0 0% 0);
}

/* Shimmer */
.hero-v5-road__shimmer {
  stroke-dasharray: 80 2400;
  stroke-dashoffset: 0;
  animation: v5Shimmer 6s ease-in-out infinite;
  animation-play-state: paused;
  opacity: 0;
}
.hero-v5-road.is-shown .hero-v5-road__shimmer {
  animation-play-state: running;
  opacity: 1;
  transition: opacity 1.5s 0.8s ease;
}
@keyframes v5Shimmer {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -2500; }
}

/* Phases */
.hero-v5-phase {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-v5-phase.is-shown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-v5-phase--1 { z-index: 3; }
.hero-v5-phase--2 { z-index: 4; }
.hero-v5-phase--3 { z-index: 5; }
.hero-v5-phase--4a { z-index: 6; }
.hero-v5-phase--4b {
  z-index: 7;
  pointer-events: none !important;
}

/* People positions */
.hero-v5-ppl--1 {
  position: absolute;
  left: 5%; top: 5.5%;
  width: 28%;
}
.hero-v5-word--1 {
  position: absolute;
  left: 30%; top: 6%;
  width: 24%;
  transform-origin: bottom left;
}
.hero-v5-ppl--2 {
  position: absolute;
  right: -4%; top: 17.7%;
  width: 42%;
}
.hero-v5-word--2 {
  position: absolute;
  left: 47%; top: 21.8%;
  width: 24%;
  transform-origin: bottom right;
}
.hero-v5-ppl--3 {
  position: absolute;
  right: -10%; top: 50%;
  width: 80%;
}
/* タイトル — キャンバス下部、道の上に乗る */
.hero-v5-title {
  position: absolute;
  left: 5%; bottom: 18%;
  width: 52%;
  filter: brightness(0) invert(1);
}
/* CTA — タイトル直下 */
.hero-v5-phase--4a .hero-v5-cta {
  position: absolute;
  left: 5%; bottom: 10%;
}

/* ヒーローキャンバス内：バッジ・ロゴのグループ — left:5%で全要素と整列 */
.hero-v5-info {
  position: absolute;
  top: 38%;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2cqi;
}
.hero-v5-service-badge {
  display: inline-flex;
  align-items: center;
}
.hero-v5-service-badge__text {
  color: var(--text);
  font-size: 3.1cqi;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.hero-v5-logo {
  width: 75%;
  height: auto;
  margin-top: -8px;
  margin-left: -4.6%;
}
.hero-v5-period {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: 1fr 1fr;
  column-gap: 1.2cqi;
  width: fit-content;
  margin-top: 2cqi;
  padding-left: 3cqi;
  white-space: nowrap;
  line-height: 1;
}
.hero-v5-period::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9cqi;
  bottom: 0.9cqi;
  width: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.hero-v5-period__label {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  margin-top: 0.9cqi;
  font-family: var(--font-zen);
  font-size: 2.8cqi;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}
.hero-v5-period__year {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  margin-bottom: 0.8cqi;
  font-family: var(--font-zen);
  font-size: 3.4cqi;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--text);
}
.hero-v5-period__day {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  font-family: var(--font-zen);
  font-size: 8.6cqi;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--pink);
}
.hero-v5-period__wday {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  align-self: end;
  margin-bottom: 0.8cqi;
  font-family: var(--font-zen);
  font-size: 3.2cqi;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  color: var(--pink);
}

/* Speech bubble pop */
.hero-v5-word {
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.5s ease, transform 0.65s cubic-bezier(0.22, 1.12, 0.36, 1);
  transition-delay: 0.25s;
}
.hero-v5-phase.is-shown .hero-v5-word {
  opacity: 1;
  transform: scale(1);
}

/* CTA — white button with pink border */
.hero-v5-cta {
  padding: 3.2cqi 11cqi;
  font-size: 3.3cqi;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: #FFFFFF !important;
  color: #F44387 !important;
  border: 2px solid #F44387 !important;
  outline: none;
  border-radius: 50px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.45),
    0 6px 20px rgba(0,0,0,0.15),
    0 2px 6px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.hero-v5-cta:hover {
  background: #F44387 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.5),
    0 10px 28px rgba(234,80,152,0.35),
    0 4px 10px rgba(0,0,0,0.1);
}
.hero-v5-cta:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.4),
    0 4px 12px rgba(234,80,152,0.25);
}
.hero-v5-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.5) 40%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0.5) 60%,
    transparent 100%
  );
  animation: v5CtaGlint 4s ease-in-out 4s infinite;
  pointer-events: none;
}
.hero-v5-cta::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 52px;
  background: linear-gradient(
    135deg,
    rgba(255,120,180,0.15) 0%,
    rgba(255,200,230,0.08) 50%,
    rgba(255,120,180,0.12) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-v5-cta:hover::after {
  opacity: 1;
}
@keyframes v5CtaGlint {
  0%   { left: -120%; }
  35%  { left: 200%; }
  100% { left: 200%; }
}

/* Post-load floating */
.hero-v5-ppl--1.is-floating {
  animation: v5Float1 5.5s ease-in-out infinite !important;
}
.hero-v5-ppl--2.is-floating {
  animation: v5Float2 6.5s ease-in-out infinite !important;
}
.hero-v5-ppl--3.is-floating {
  animation: v5Float3 7s ease-in-out infinite !important;
}
.hero-v5-word--1.is-floating {
  animation: v5WordBreathe1 6s ease-in-out infinite !important;
}
.hero-v5-word--2.is-floating {
  animation: v5WordBreathe2 7s ease-in-out infinite !important;
}
@keyframes v5Float1 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes v5Float2 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes v5Float3 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
@keyframes v5WordBreathe1 {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.03) translateY(-3px); }
}
@keyframes v5WordBreathe2 {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.03) translateY(-4px); }
}

/* Hero bottom fade */

/* Original scroll hint override */
#hero .hero-scroll-hint { display: none !important; }

/* =====================================================
   CAMPAIGN BANNER — #reservation内 ポイントキャンペーン
===================================================== */
.rsv-campaign {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0;
  padding: 0 4px;
}

/* =====================================================
   CAMPAIGN BANNER (v09 リデザイン)
   - 情報階層: 条件 → ブランドロゴ → 主役数字 → 補足 → プレゼント → 注釈
   - ミニマル基調 + 主役だけ大胆に（イエロー差し色）
===================================================== */
.cpn-banner {
  position: relative;
  width: 100%;
  container-type: inline-size;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(165deg, #F76CA5 0%, #F44387 55%, #D6306E 100%);
  box-shadow: 0 12px 32px rgba(170, 40, 110, 0.32);
}

/* 背景アクセント：柔らかい光のスポット */
.cpn-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255,255,255,0.22) 0%, transparent 60%);
  pointer-events: none;
}

/* 内側の破線フレーム（クーポン/ギフト感） */
.cpn-banner::after {
  content: '';
  position: absolute;
  inset: 3cqi;
  z-index: 0;
  border: 0.35cqi dashed rgba(255,255,255,0.5);
  border-radius: 12px;
  pointer-events: none;
}

/* 星デコレーション（控えめなきらめき） */
.cpn-star {
  position: absolute;
  z-index: 1;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%,
    79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
  );
  animation: cpnTwinkle var(--d,2.8s) ease-in-out infinite var(--dl,0s);
  pointer-events: none;
}
@keyframes cpnTwinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
  50%      { transform: scale(1.25) rotate(15deg); opacity: 0.4; }
}
.cpn-star--1 { --d:2.4s; --dl:0.0s; width:3cqi;   height:3cqi;   background:rgba(255,214,0,0.8); top:10%; left:10%; }
.cpn-star--2 { --d:3.0s; --dl:0.6s; width:2.2cqi; height:2.2cqi; background:rgba(255,255,255,0.7); top:8%;  right:12%; }
.cpn-star--3 { --d:2.8s; --dl:1.1s; width:2cqi;   height:2cqi;   background:rgba(255,214,0,0.7); bottom:14%; right:10%; }
.cpn-star--4 { --d:2.6s; --dl:0.4s; width:2.5cqi; height:2.5cqi; background:rgba(255,255,255,0.6); bottom:18%; left:8%; }

/* コンテンツ */
.cpn-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8cqi 7cqi 7cqi;
}

/* 条件ピル（LaLa Pickロゴ + テキスト） */
.cpn-cond-pill {
  display: inline-flex;
  align-items: center;
  gap: 1.6cqi;
  background: #FFFFFF;
  border-radius: 100cqi;
  padding: 1.6cqi 5cqi;
  box-shadow: 0 0.6cqi 2cqi rgba(0,0,0,0.18);
}
.cpn-cond-pill .cpn-logo-inline {
  display: block;
  height: 5.8cqi;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.cpn-cond-pill span {
  font-family: var(--font-zen);
  font-weight: 900;
  font-size: 3.4cqi;
  color: var(--pink);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ブランド行（ロゴカード + テキスト）：三井ポイントロゴを白カードに */
.cpn-brand-line {
  display: flex;
  align-items: center;
  gap: 2cqi;
  margin-top: 5cqi;
}
.cpn-brand-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 0.8cqi 1.4cqi;
  border-radius: 1.4cqi;
  flex-shrink: 0;
  box-shadow: 0 0.3cqi 0.8cqi rgba(0,0,0,0.15);
}
.cpn-brand-logo-card img {
  display: block;
  height: 5.6cqi;
  width: auto;
  object-fit: contain;
}
.cpn-brand-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.8cqi;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  opacity: 0.95;
}

/* メイン：[最大] | 10,000 | [ポイント]
   - 親に 1cqi = 1em の基準を持たせ、数字とラベルの比率を em で固定
   - writing-mode を使わず、各文字を <span> で縦積みして挙動を安定化 */
.cpn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
  margin-top: 3cqi;
  color: #FFFFFF;
  font-size: 1cqi;
  line-height: 1;
}
/* 「最大」：縦積み・数字の高さに近い存在感 */
.cpn-saidai {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 4.4em;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-feature-settings: "palt";
}
.cpn-saidai > span {
  display: block;
  line-height: 1;
}
/* 数字：主役 */
.cpn-num {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20em;
  color: #FFD600;
  letter-spacing: 0.05em;
  line-height: 0.9;
  text-shadow: 0 0.6cqi 0 rgba(140, 0, 40, 0.35);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}
/* カンマ：Anton のカンマはボックス内で左寄りに収まるため、左右で非対称にマージンを与え、
   左 0 とは近接、右 0 とは自然な隙間となるよう光学調整する。ベースラインは少しだけ持ち上げ */
.cpn-comma {
  display: inline-block;
  font-size: 0.72em;
  margin-left: -0.1em;
  margin-right: -0.02em;
  transform: translateY(-0.1em);
  letter-spacing: 0;
  vertical-align: baseline;
}
/* 「ポイント」：縦積み・4文字合計高さが数字に揃うサイズ感 */
.cpn-unit {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 4.4em;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-feature-settings: "palt";
}
.cpn-unit > span {
  display: block;
  line-height: 1;
}

/* 金額相当（副情報：安心感を伝える「実際に使える金額」） */
.cpn-worth {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 3cqi;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  margin-top: 1.5cqi;
}

/* プレゼント（英字 + 両サイドに細い装飾ライン）
   - ピル型バッジの反復を避け、主役数字の余韻として機能させる */
.cpn-present-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4cqi;
  width: 72%;
  margin-top: 4cqi;
}
.cpn-present-line::before,
.cpn-present-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,214,0,0), rgba(255,214,0,0.85), rgba(255,214,0,0));
}
.cpn-present-line span {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 4.6cqi;
  color: #FFD600;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  line-height: 1;
  text-shadow: 0 0.15cqi 0.6cqi rgba(255, 214, 0, 0.4);
}

/* 注釈 */
.cpn-note {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 2.4cqi;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  margin-top: 3.5cqi;
  line-height: 1.5;
}

.cpn-notes {
  list-style: none;
  margin: 3.5cqi 0 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 2.5cqi;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  line-height: 1.7;
  text-align: center;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: normal;
}
.cpn-notes li {
  display: inline;
  margin: 0;
  white-space: nowrap;
}
.cpn-notes li + li { margin-top: 0; }
.cpn-notes li + li::before {
  content: " / ";
  margin: 0 0.2em;
  color: rgba(255, 214, 0, 0.65);
  font-weight: 700;
}

/* コインデコレーション（インラインSVG前提） */
.cpn-coin {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 0 1px rgba(120, 70, 0, 0.45))
    drop-shadow(0 10px 18px rgba(120, 40, 0, 0.35));
}
.cpn-coin svg { display: block; width: 100%; height: 100%; }

/* 外周コイン（角から飛び出す／サイズ・透明度・ブラーで手前⇔奥の距離感を作る）
   - tl / br: 手前（大きく・くっきり・濃い影）
   - bl / tr: 奥（小さく・やや薄く・軽くブラー） */
.cpn-coin--tl {
  width: 34cqi; height: 34cqi; top: -10cqi; left: -12cqi;
  opacity: 0.95; transform: rotate(-18deg);
  filter:
    drop-shadow(0 0 1px rgba(120, 70, 0, 0.5))
    drop-shadow(0 14px 22px rgba(120, 40, 0, 0.45));
}
.cpn-coin--br {
  width: 26cqi; height: 26cqi; bottom: -8cqi; right: -9cqi;
  opacity: 0.9; transform: rotate(22deg);
  filter:
    drop-shadow(0 0 1px rgba(120, 70, 0, 0.5))
    drop-shadow(0 10px 16px rgba(120, 40, 0, 0.4));
}
.cpn-coin--bl {
  width: 12cqi; height: 12cqi; bottom: -3cqi; left: -3cqi;
  opacity: 0.62; transform: rotate(14deg);
  filter:
    drop-shadow(0 0 1px rgba(120, 70, 0, 0.25))
    drop-shadow(0 3px 6px rgba(120, 40, 0, 0.2))
    blur(0.4px);
}
.cpn-coin--tr {
  width: 10cqi; height: 10cqi; top: -2cqi; right: -2cqi;
  opacity: 0.55; transform: rotate(-10deg);
  filter:
    drop-shadow(0 0 1px rgba(120, 70, 0, 0.2))
    drop-shadow(0 2px 5px rgba(120, 40, 0, 0.15))
    blur(0.5px);
}

/* 背景コイン（小さめ・透過で背景に沈む装飾） */
.cpn-coin--inner {
  z-index: 0;
  filter:
    drop-shadow(0 0 1px rgba(120, 70, 0, 0.25))
    drop-shadow(0 3px 6px rgba(120, 40, 0, 0.15));
}
.cpn-coin--i1 { width: 9cqi;  height: 9cqi;  top: 10%;    left: 30%;  opacity: 0.18; transform: rotate(-32deg); }
.cpn-coin--i2 { width: 8cqi;  height: 8cqi;  top: 32%;    right: 24%; opacity: 0.18; transform: rotate(28deg); }
.cpn-coin--i3 { width: 10cqi; height: 10cqi; bottom: 30%; left: 18%;  opacity: 0.18; transform: rotate(15deg); }
.cpn-coin--i4 { width: 7cqi;  height: 7cqi;  bottom: 18%; right: 30%; opacity: 0.18; transform: rotate(-22deg); }

/* =====================================================
   STICKY CTA — 画面下部追従予約ボタン
===================================================== */
#sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 15px 28px;
  background: var(--pink);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-round);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(234,80,152,0.38),
    0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.25s ease;
  will-change: transform, opacity;
}
#sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
#sticky-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 28px rgba(234,80,152,0.48),
    0 4px 12px rgba(0,0,0,0.14);
}

/* きらっと光るグリント */
.sticky-cta__glint {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.45) 40%,
    rgba(255,255,255,0.65) 50%,
    rgba(255,255,255,0.45) 60%,
    transparent 100%
  );
  animation: stickyCtaGlint 4s ease-in-out 2s infinite;
  pointer-events: none;
}
@keyframes stickyCtaGlint {
  0%   { left: -120%; }
  35%  { left: 200%; }
  100% { left: 200%; }
}

/* PC: スマホ枠の下部に合わせて配置 */
@media (min-width: 960px) {
  #sticky-cta {
    left: calc(50% - var(--frame-w)/2 + 16px);
    right: calc(50% - var(--frame-w)/2 + 16px);
    bottom: 24px;
    font-size: 16px;
    padding: 16px 24px;
    text-align: center;
    justify-content: center;
  }
}

/* スマホ: 画面幅いっぱい・下部固定 */
@media (max-width: 959px) {
  #sticky-cta {
    left: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    font-size: 16px;
    padding: 16px 24px;
    text-align: center;
    justify-content: center;
  }
}

/* =====================================================
   GLOBAL SCROLL INDICATOR
===================================================== */
#global-scroll-hint {
  position: fixed;
  bottom: 28px;
  right: 40px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, bottom 0.3s ease;
}
#global-scroll-hint.is-visible {
  opacity: 1;
}
#global-scroll-hint span {
  font-family: var(--font-num, 'Inter', sans-serif);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
#global-scroll-hint span { color: #aaa; }
.gsh-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(180,160,170,0.35), transparent);
  position: relative;
  overflow: hidden;
}
.gsh-drop {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--pink, #F44387));
  border-radius: 0 0 1px 1px;
  animation: gshDrop 1.8s ease-in-out infinite;
}
@keyframes gshDrop {
  0%   { top: -50%; opacity: 0.8; }
  100% { top: 110%; opacity: 0; }
}

#global-scroll-hint.above-cta {
  bottom: 80px;
}
@media (min-width: 960px) {
  #global-scroll-hint {
    right: calc(50% - var(--frame-w)/2 + 20px);
    bottom: 40px;
  }
  #global-scroll-hint.above-cta {
    bottom: 90px;
  }
}
@media (max-width: 959px) {
  #global-scroll-hint {
    right: 20px;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
  #global-scroll-hint.above-cta {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
}

