/* =========================================================
   アルパカPC SmartNews LP — リニューアル版
   方針: チラシの力強さ × 上から下へ流れる読みやすさ
   ========================================================= */

:root {
  --yellow: #ffc600;          /* ブランドカラー */
  --yellow-bright: #ffe14d;   /* 数字ハイライト用 */
  --yellow-soft: #fff6cc;
  --red: #e60012;
  --deep-red: #b8000d;
  --black: #161616;
  --ink: #232323;
  --muted: #6a6a6a;
  --paper: #ffffff;
  --line: #06c755;            /* LINE公式グリーン */
  --line-dark: #05a648;
  --green: #0b7c36;
  --blue: #1559a8;
  --purple: #6f2b8a;
  --border: #e3e3e3;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.22);
  --radius: 16px;
  --radius-lg: 22px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
    Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #f6f6f4;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  padding-bottom: 78px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.container { width: min(100% - 36px, 1080px); margin: 0 auto; }
.section-pad { padding: 60px 0; }
.flow > * + * { margin-top: 18px; }

/* ---- 日本語の自然な折り返し（最重要の見やすさ改善）---- */
h1, h2, h3 {
  margin: 0;
  line-height: 1.34;
  letter-spacing: 0.005em;
  /* 文節単位で折り返し。break-all は使わない */
  word-break: auto-phrase;
  overflow-wrap: anywhere;
  line-break: strict;
}
@supports not (word-break: auto-phrase) {
  h1, h2, h3 { word-break: normal; }
}
p, li, blockquote, dd, dt { word-break: normal; overflow-wrap: anywhere; line-break: strict; }
p { margin: 0; }
b { font-weight: 900; }
.nowrap { white-space: nowrap; }

/* ---- セクション見出しのリボン ---- */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 6px 16px 6px 13px;
  color: var(--paper);
  background: var(--black);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.section-kicker::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}
.section-kicker--yellow { color: var(--black); background: var(--yellow); }
.section-kicker--yellow::before { background: var(--red); }
.section-kicker--paper { color: var(--red); background: var(--paper); }
.section-kicker--paper::before { background: var(--red); }

h2 {
  font-size: 1.74rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
h2 .hl, h2 span {
  background: linear-gradient(transparent 58%, var(--yellow) 58%, var(--yellow) 92%, transparent 92%);
  padding: 0 .08em;
}
.worry h2 span { background: none; color: var(--yellow); }
h3 { font-size: 1.16rem; font-weight: 900; line-height: 1.4; }

/* =========================================================
   1. ヒーロー
   ========================================================= */
.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.55) 46%, rgba(0,0,0,.94) 100%),
    url("assets/store-main-lp.jpg") center / cover no-repeat;
}
/* 上部の黄色チラシ帯（ノイズを抑えたクリーンな帯）*/
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--yellow);
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 34px, 1040px);
  margin: 0 auto;
  padding: 30px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 15px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
  font-size: .92rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
}

h1 {
  font-size: clamp(2.15rem, 8.6vw, 3.1rem);
  font-weight: 900;
  line-height: 1.28;
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0,0,0,.7), 0 1px 0 rgba(0,0,0,.5);
}
h1 em {
  font-style: normal;
  color: var(--yellow);
  text-shadow: 0 2px 18px rgba(0,0,0,.7);
}

/* 価格ブリッジ */
.price-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  gap: 6px;
  align-items: stretch;
  margin: 26px 0 20px;
}
.price-bridge__item {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  padding: 16px 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.price-bridge__item span {
  font-weight: 900;
  font-size: .92rem;
  line-height: 1.2;
}
.price-bridge__item strong {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-size: clamp(1.95rem, 10.5vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.price-bridge__item strong small { font-size: .42em; font-weight: 900; }
.price-bridge__item strong .u { font-size: .62em; font-weight: 900; }
.price-bridge__tail { font-weight: 900; font-size: .82rem; opacity: .92; }
.price-bridge__item--dark { color: var(--paper); background: linear-gradient(160deg, #2b2b2b, var(--black)); }
.price-bridge__item--dark span { color: #cfcfcf; }
.price-bridge__item--red {
  color: var(--yellow-bright);
  background: linear-gradient(160deg, var(--red), var(--deep-red));
}
.price-bridge__item--red span { color: var(--paper); }
.price-bridge__arrow {
  align-self: center;
  display: grid;
  place-items: center;
  color: var(--yellow);
  animation: nudge 1.4s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.hero__lead {
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
.hero__lead b {
  color: var(--paper);
  white-space: nowrap;
}

.hero__actions, .access__actions, .coupon__actions {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}
/* FV：地図(来店)を全幅で主役に、LINE・クーポンはPCで横並び */
.hero__actions .button--map { grid-column: 1 / -1; }
.microcopy { margin: 14px 0 0; color: #f3f3f3; font-weight: 700; font-size: .94rem; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 14px;
  z-index: 1;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 7px;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrolldot 1.6s ease-in-out infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* =========================================================
   ボタン
   ========================================================= */
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: none;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.02rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.35;
  box-shadow: var(--shadow-md);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.button:active { transform: translateY(0); }
.button__icon { display: inline-grid; place-items: center; }

.button--line {
  color: var(--paper);
  background: linear-gradient(180deg, var(--line), var(--line-dark));
  box-shadow: 0 12px 26px rgba(6, 199, 85, .42);
}
.button--ghost {
  color: var(--paper);
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.85);
  backdrop-filter: blur(2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.button--dark { color: var(--paper); background: var(--black); }
.button--outline-dark {
  color: var(--black);
  background: var(--paper);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-sm);
}
.button--map {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 26px rgba(255, 198, 0, .45);
}
.button--map .button__icon { color: var(--red); }

/* =========================================================
   最上部リード（30秒フック：フット・イン・ザ・ドア）
   ========================================================= */
.toplead {
  background: var(--black);
  color: var(--paper);
  text-align: center;
  padding: 11px 16px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.55;
}
.toplead b { color: var(--yellow); font-weight: 900; }
.toplead .sec {
  display: inline-block;
  margin: 0 2px;
  padding: 1px 10px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}
@media (min-width: 720px) { .toplead { font-size: 1rem; padding: 13px; } }

/* =========================================================
   ヒーロー直後：価格をその場で裏づけるクチコミ
   ========================================================= */
.early-proof { background: var(--paper); padding: 32px 0; text-align: center; }
.early-proof__stars { margin: 0 0 10px; color: #ff9d00; letter-spacing: 4px; font-size: 1.05rem; }
.early-proof__quote {
  margin: 0 auto;
  max-width: 700px;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  color: var(--ink);
  font-size: clamp(1.2rem, 5.4vw, 1.6rem);
  font-weight: 900;
  line-height: 1.5;
}
.early-proof__quote::before, .early-proof__quote::after { content: none; }
.early-proof__quote b { color: var(--red); }
.early-proof__cite { margin-top: 12px; color: var(--muted); font-size: .86rem; font-weight: 700; }

/* =========================================================
   2. 共感ブロック
   ========================================================= */
.empathy { color: var(--black); background: var(--yellow); }
.empathy h2 { max-width: 880px; font-size: clamp(1.55rem, 6.4vw, 2.3rem); }
.empathy h2 mark {
  background: var(--black);
  color: var(--yellow);
  padding: 2px 10px;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.empathy h2 .hl, .empathy h2 span { background: none; padding: 0; }
.lead-line {
  display: inline;
  background: linear-gradient(transparent 56%, rgba(255,255,255,.85) 56%);
  font-weight: 900;
  font-size: 1.08rem;
}
.empathy__bridge {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--black);
  color: var(--paper);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: var(--shadow-md);
}
.empathy__bridge b { color: var(--yellow); }

/* 共感→実店舗の橋渡し（外観写真で「実店舗」と一目で伝える）*/
.storefront { background: var(--yellow); padding: 6px 0 60px; }
.storefront .section-kicker { margin-bottom: 16px; }
.storefront__figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.storefront__figure img { width: 100%; display: block; }
.storefront__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 36px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .82));
  color: var(--paper);
  font-weight: 800;
  font-size: .94rem;
  line-height: 1.5;
}
.storefront__badge {
  flex: 0 0 auto;
  padding: 4px 13px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
}
@media (min-width: 720px) {
  .storefront { padding: 10px 0 84px; }
  .storefront__cap { padding: 48px 24px 20px; font-size: 1.05rem; }
}

/* =========================================================
   3. 不安の代弁
   ========================================================= */
.worry { color: var(--paper); background: radial-gradient(120% 80% at 50% 0%, #2a2a2a 0%, var(--black) 70%); }
.worry h2 { font-size: clamp(1.55rem, 6.4vw, 2.3rem); }
.worry__quotes { display: grid; gap: 11px; }
.worry__quotes p {
  position: relative;
  padding: 16px 18px 16px 50px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.worry__quotes p::before {
  content: "?";
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: grid; place-items: center;
  color: var(--paper);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
  font-size: .95rem;
}

/* =========================================================
   4. 安心の3本柱
   ========================================================= */
.assurance { background: var(--paper); }
.pillar-grid { display: grid; gap: 14px; }
.pillar {
  position: relative;
  padding: 26px 20px 22px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 5px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.pillar__mark {
  position: absolute;
  top: -14px; left: 20px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  color: var(--paper);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
  font-size: .95rem;
  box-shadow: 0 4px 10px rgba(230,0,18,.35);
}
.pillar__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 12px;
  color: var(--red);
  background: var(--yellow-soft);
  border-radius: 14px;
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar h3 { margin-bottom: 8px; }
.pillar p { color: var(--ink); font-size: .98rem; }

.setup-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 20px;
  color: var(--paper);
  background: linear-gradient(135deg, #2a2a2a, var(--black));
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.setup-strip__icon {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 12px;
}
.setup-strip__text { font-weight: 800; line-height: 1.5; }
.setup-strip__text strong {
  display: block;
  color: var(--yellow);
  font-size: 1.3rem;
}

/* =========================================================
   5. 実店舗
   ========================================================= */
.store { background: #f0efeb; }
.store-photo {
  position: relative;
  width: min(100% - 24px, 1120px);
  margin: 28px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.store-photo img { width: 100%; }
.store-photo__tag {
  position: absolute;
  left: 14px; bottom: 14px;
  padding: 6px 14px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
  font-size: .84rem;
  box-shadow: var(--shadow-sm);
}
.proof-bar {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.proof-bar li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 18px;
  background: var(--paper);
  border-radius: 12px;
  border-left: 6px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}
.proof-bar strong { color: var(--red); font-size: 1.18rem; }
.proof-bar span { color: var(--muted); font-size: .92rem; }

.photo-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 80%;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.photo-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

/* 130台展示セクション末尾の来店ボタン */
.store__cta { margin-top: 28px; text-align: center; }
.store__cta .button { max-width: 560px; }

/* =========================================================
   6. 価格帯
   ========================================================= */
.prices { background: var(--paper); }
.price-grid { display: grid; gap: 14px; }
.price-card {
  position: relative;
  padding: 22px 20px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: currentColor;
}
.price-card__label {
  font-weight: 900;
  font-size: 1.04rem;
  color: var(--ink);
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 6px 0 10px;
  font-size: clamp(1.9rem, 8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
}
.price-card__price small { font-size: .46em; font-weight: 900; }
.price-card__price span { font-size: .8em; }
.price-card__desc { color: var(--ink); font-size: .96rem; font-weight: 600; }
.price-card--green { color: var(--green); }
.price-card--red { color: var(--red); }
.price-card--blue { color: var(--blue); }
.price-card--purple { color: var(--purple); }

.price-card.is-featured {
  border: 2px solid var(--red);
  box-shadow: 0 14px 30px rgba(230,0,18,.18);
}
.badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  color: var(--paper);
  background: var(--red);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
}

.note { color: var(--muted); font-size: .92rem; }
.inline-cta { width: 100%; margin-top: 8px; }

/* =========================================================
   7. 口コミ
   ========================================================= */
.reviews { color: var(--paper); background: radial-gradient(120% 80% at 50% 0%, #2a2a2a 0%, var(--black) 70%); }
.review-list { display: grid; gap: 14px; }
blockquote {
  position: relative;
  margin: 0;
  padding: 20px 20px 18px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
blockquote::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 8px;
  color: #ff9d00;
  font-size: .96rem;
  letter-spacing: 2px;
}
blockquote::after {
  content: "“";
  position: absolute;
  right: 14px; bottom: -6px;
  color: var(--yellow);
  font-size: 3rem;
  font-weight: 900;
  opacity: .5;
  line-height: 1;
}

/* =========================================================
   8. スタッフCTA
   ========================================================= */
.staff-cta {
  background: linear-gradient(180deg, var(--yellow) 0%, #ffd84d 100%);
  overflow: hidden;
}
/* 黄色背景の上では地図ボタンを黒地＋黄文字に（黄on黄で埋もれるのを回避・来店を主役に） */
.staff-cta .button--map {
  background: var(--black);
  color: var(--yellow);
  box-shadow: var(--shadow-md);
}
.staff-cta .button--map .button__icon { color: var(--yellow); }
.staff-cta__layout { display: grid; gap: 22px; }
.staff-cta__image {
  align-self: end;
  max-width: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.22));
}
.staff-cta__copy { align-self: center; }
.staff-cta h2 { font-size: clamp(1.5rem, 6.2vw, 2.2rem); }
.speech {
  position: relative;
  padding: 18px 20px;
  background: var(--paper);
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.speech::before {
  content: "";
  position: absolute;
  left: 30px; bottom: -14px;
  border: 9px solid transparent;
  border-top-color: var(--paper);
  border-bottom: 0;
  filter: drop-shadow(0 6px 4px rgba(0,0,0,.08));
}

/* =========================================================
   9. サポート
   ========================================================= */
.support { background: var(--paper); }
.support-lead {
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.6;
}
.support-lead b {
  color: var(--green);
  background: linear-gradient(transparent 60%, #cdeccd 60%);
  padding: 0 .1em;
}

.support-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.support-list li {
  position: relative;
  padding: 13px 16px 13px 44px;
  background: #f4faf4;
  border: 1px solid #cfe9cf;
  border-radius: 12px;
  font-weight: 800;
}
.support-list li::before {
  content: "";
  position: absolute;
  left: 16px; top: 50%;
  width: 16px; height: 9px;
  margin-top: -6px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}
.support-note {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #f6f6f4;
  border-left: 6px solid var(--green);
  border-radius: 0 12px 12px 0;
}
.support-note p { font-size: .96rem; }
.support-note b { color: var(--green); }

/* =========================================================
   10. クーポン（チケット）
   ========================================================= */
.coupon {
  color: var(--paper);
  background: linear-gradient(135deg, var(--red) 0%, var(--deep-red) 55%, #2a0205 100%);
}
.ticket {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(0,0,0,.28);
  border: 2px dashed rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ticket__main { padding: 26px 22px; }
.ticket h2 { margin-top: 14px; font-size: 1.7rem; line-height: 1.3; }
.ticket h2 span {
  display: inline-block;
  margin: 4px 0;
  color: var(--yellow-bright);
  background: none;
  padding: 0;
  font-size: clamp(2.6rem, 13vw, 3.6rem);
  line-height: 1;
  text-shadow: 0 3px 0 rgba(0,0,0,.25);
}
.ticket h2 span small { font-size: .42em; }
.ticket__cond { margin-top: 10px; font-weight: 700; }
.coupon__limit {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 14px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
  font-size: .92rem;
}
.coupon__show { margin-top: 12px; font-weight: 700; }
.ticket__stub {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-left: 3px dashed rgba(255,255,255,.7);
  background: rgba(0,0,0,.18);
  text-align: center;
}
.ticket__stub span { font-size: 2.4rem; font-weight: 900; color: var(--yellow-bright); line-height: 1; }
.ticket__stub span i { font-style: normal; font-size: .5em; }
.ticket__stub small { font-weight: 900; letter-spacing: .2em; }
.coupon__actions { margin-top: 22px; }

/* =========================================================
   11. アクセス
   ========================================================= */
.access { background: radial-gradient(120% 80% at 50% 0%, #262626 0%, var(--black) 70%); color: var(--paper); }
.access__layout { display: grid; gap: 24px; }
.access__logo {
  width: min(100%, 320px);
  padding: 14px 18px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.access h2 { font-size: 1.5rem; }
.access h2 span { background: none; padding: 0; }
.info-list { display: grid; gap: 0; margin: 0; }
.info-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.info-list dt { color: var(--yellow); font-weight: 900; font-size: .94rem; }
.info-list dd { margin: 0; font-weight: 700; }
.info-list dd a { font-weight: 900; color: var(--yellow); text-decoration: none; }
.access__mascot { width: min(56%, 220px); margin: 0 auto; }
.access__mascot img { filter: drop-shadow(0 14px 20px rgba(0,0,0,.4)); }

/* =========================================================
   12. EC（補助導線）
   ========================================================= */
.ec { background: #f0efeb; }
.ec__layout { display: grid; gap: 18px; }
.ec h2 { font-size: 1.4rem; }
.ec h2 span { background: none; padding: 0; }
.qr-empty { display: none; }

/* =========================================================
   固定フッターCTA（スマホ）
   ========================================================= */
.fixed-cta {
  position: fixed;
  z-index: 30;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 7px;
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  background: rgba(18,18,18,.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 -8px 24px rgba(0,0,0,.28);
}
.fixed-cta a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--paper);
  background: #333;
  border-radius: 12px;
  font-weight: 900;
  font-size: .96rem;
  text-decoration: none;
}
.fixed-cta__line {
  background: linear-gradient(180deg, var(--line), var(--line-dark)) !important;
  box-shadow: 0 6px 16px rgba(6,199,85,.4);
}
.fixed-cta__map {
  background: var(--yellow) !important;
  color: var(--black) !important;
}

/* =========================================================
   ページ上部へ戻るボタン
   ========================================================= */
.to-top {
  position: fixed;
  z-index: 25;
  right: 14px;
  bottom: calc(88px + env(safe-area-inset-bottom)); /* スマホ固定CTAバーの上 */
  display: grid;
  justify-items: center;
  gap: 1px;
  width: 52px;
  height: 52px;
  align-content: center;
  color: var(--paper);
  background: rgba(22, 22, 22, .82);
  border: 2px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .16s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover, .to-top:focus-visible { background: var(--black); }
.to-top svg { margin-bottom: -2px; }
.to-top span { font-size: .62rem; font-weight: 900; line-height: 1; }

@media (min-width: 720px) {
  .to-top { right: 24px; bottom: 24px; width: 58px; height: 58px; }
  .to-top span { font-size: .68rem; }
}

/* =========================================================
   スクロール出現アニメ
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .price-bridge__arrow, .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   タブレット / PC
   ========================================================= */
@media (min-width: 720px) {
  body { padding-bottom: 0; font-size: 17px; }
  .section-pad { padding: 84px 0; }

  h2 { font-size: 2.5rem; }
  .hero { min-height: 86svh; align-items: center; }
  .hero__inner { padding: 90px 0; }

  .price-bridge { max-width: 740px; grid-template-columns: 1fr 70px 1fr; gap: 12px; }
  .price-bridge__arrow svg { width: 44px; height: 44px; }
  .hero__lead { font-size: 1.32rem; }

  .hero__actions, .access__actions, .coupon__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }
  .inline-cta { max-width: 460px; margin-inline: auto; }

  .pillar-grid, .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-bar { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .photo-row {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }

  .review-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .staff-cta__layout, .access__layout, .ec__layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 40px;
  }
  .staff-cta__copy { order: -1; }
  .staff-cta__image { max-width: 420px; }

  .support-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .ticket { grid-template-columns: 1.7fr 1fr; }
  .ticket__main { padding: 38px 36px; }
  .ticket h2 { font-size: 2rem; }
  .ticket__stub { display: flex; }
  .coupon__actions { max-width: 640px; }

  .access__layout { grid-template-columns: 1.2fr 0.8fr; }
  .ec__layout { grid-template-columns: 1.3fr 0.7fr; }

  .fixed-cta { display: none; }
}

@media (min-width: 1040px) {
  h2 { font-size: 2.7rem; }
  .pillar-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* =========================================================
   lp2 専用の追加スタイル（LINE全廃＋ネット通販導線）
   ※すべて追記のみ。lp1 が使う既存セレクタは変更しない
   ========================================================= */
/* ネット通販ボタン（白ベース＝地図の黄色に次ぐ「従」の序列） */
.button--shop {
  color: var(--black);
  background: var(--paper);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .32);
}

/* 価格帯セクションの人気カテゴリ2ボタン */
.shop-price-links { margin-top: 16px; text-align: center; }
.shop-price-links__label { font-size: .85rem; opacity: .8; margin-bottom: 8px; }
.shop-price-links__row { display: flex; gap: 12px; justify-content: center; }
.shop-price-links__row .button { flex: 1; max-width: 260px; }
@media (max-width: 419px) {
  .shop-price-links__row { flex-direction: column; align-items: center; }
  .shop-price-links__row .button { width: 100%; max-width: 320px; }
}

/* lp2 の固定CTAだけ「地図・ネット通販」の2枠に（lp1の3枠 .fixed-cta には影響させない） */
.fixed-cta--duo { grid-template-columns: 1.5fr 1fr; }

/* lp2 ヒーロー直下の実体験3声（✓リスト・チラシ準拠） */
.early-proof__lead {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 4.6vw, 1.5rem);
  font-weight: 900;
  line-height: 1.5;
}
.early-proof__lead b {
  background: linear-gradient(transparent 58%, var(--yellow) 58%);
  padding: 0 .08em;
}
.early-proof .voice-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: grid;
  gap: 12px;
  text-align: left;
}
.early-proof .voice-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: #f6f6f4;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.6;
}
.early-proof .voice-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 10px;
  margin-top: -7px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}
