/* =====================================================================
   HARE PAGE 店舗 – style.css
   モバイルファースト。「晴れ」= 太陽（アンバー）× 空（淡いブルー）× 信頼（ネイビー）。
   ロゴの「太陽と地平線」をページ全体のモチーフにしています（見出しの点、流れのタイムライン、境界線）。
   色を変えるときは :root の変数を編集してください。
   ===================================================================== */
:root {
  --ink: #1B2233;          /* 本文・見出し（ネイビー黒） */
  --ink-deep: #10162A;     /* 濃い帯の背景 */
  --ink-2: #3D465C;
  --muted: #6E768A;
  --paper: #FFFDF9;        /* ページ背景（暖かい白） */
  --paper-2: #FFF7E8;      /* 日だまり */
  --sky: #EAF3FF;
  --sky-2: #D9E8FF;
  --surface: #FFFFFF;
  --line: #E7E3DA;
  --line-2: #CFCBC2;
  --sun: #F5B62E;          /* アクセント */
  --sun-deep: #E39A0D;
  --sun-soft: #FFF1CC;
  --sun-glow: #FFE1A3;
  --blue: #2F6FE4;
  --blue-deep: #1F4FB8;
  --ok: #1F9D5A;
  --ng: #D23C2F;
  --line-green: #06C755;   /* LINE ブランドカラー */
  --font: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Noto Sans CJK JP', sans-serif;
  --font-head: 'Zen Kaku Gothic New', 'Noto Sans JP', 'Hiragino Sans', 'Noto Sans CJK JP', sans-serif;
  --font-display: 'Outfit', 'Noto Sans JP', sans-serif;
  --radius: 16px;
  --header-h: 60px;
  --bottom-h: 68px;
  /* 紙の質感（薄いノイズ） */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--paper);
  line-height: 1.8; font-size: 15px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
  padding-bottom: calc(var(--bottom-h) + env(safe-area-inset-bottom));
  overflow-wrap: anywhere;
}
@media (min-width: 900px) { body { font-size: 16px; padding-bottom: 0; } }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--blue); text-underline-offset: 3px; }
h1, h2, h3, h4 { margin: 0; line-height: 1.35; font-weight: 700; font-family: var(--font-head); letter-spacing: 0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd { margin: 0; }
strong { font-weight: 700; }
small { font-size: 0.8em; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 900px) { .container { padding: 0 32px; } }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.num { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.ico { width: 20px; height: 20px; flex: none; }
.sp { display: inline; }
@media (min-width: 900px) { .sp { display: none; } }
a, button, summary, label { touch-action: manipulation; }

/* 見出しまわり：太陽の点 ＋ 地平線 */
.eyebrow { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 11.5px; color: var(--sun-deep); margin-bottom: 12px; }
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(245, 182, 46, 0.18); flex: none; }
.eyebrow-link { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(227, 154, 13, 0.5); }
.eyebrow-link:hover { border-bottom-color: currentColor; }
section { padding: 60px 0; }
.section-title { font-size: clamp(24px, 6.6vw, 28px); line-height: 1.32; font-weight: 900; letter-spacing: 0.005em; margin-bottom: 20px; text-wrap: balance; }
.note { font-size: 12px; color: var(--muted); margin-top: 14px; }
@media (min-width: 900px) {
  section { padding: 110px 0; }
  .section-title { font-size: 40px; margin-bottom: 30px; }
  .eyebrow { font-size: 12px; margin-bottom: 16px; }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 10px 20px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: 14px; text-decoration: none; line-height: 1.2; color: var(--ink);
  transition: background .18s, color .18s, transform .18s, border-color .18s, box-shadow .18s;
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(180deg, #FFC64D 0%, var(--sun) 100%); color: var(--ink); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 8px 20px rgba(245, 182, 46, 0.32); }
.btn-primary:hover { background: linear-gradient(180deg, #F7B93A 0%, var(--sun-deep) 100%); }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-tel { background: var(--surface); border-color: var(--line-2); color: var(--ink); }
.btn-tel:hover { border-color: var(--ink); }
.btn-tel .ico { color: var(--sun-deep); width: 22px; height: 22px; }
.btn-line { background: var(--line-green); color: #fff; box-shadow: 0 8px 20px rgba(6, 199, 85, 0.25); }
.btn-line:hover { background: #05B04C; }
.btn-sm { min-height: 40px; padding: 6px 16px; font-size: 13px; }
.btn-lg { min-height: 56px; padding: 14px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn .ico { width: 18px; height: 18px; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  background: rgba(255, 253, 249, 0.86); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(27, 34, 51, 0.05); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.logo-mark { width: 30px; height: 30px; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 7px; color: inherit; }
.logo-tag { font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; background: var(--ink); color: #fff; border-radius: 6px; padding: 3px 7px; line-height: 1; }
.site-nav { display: none; }
.nav-toggle { width: 44px; height: 44px; border: 0; background: transparent; border-radius: 10px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; margin-right: -8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav.is-open { display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: var(--header-h); background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: 0 18px 48px rgba(27, 34, 51, 0.12); padding: 10px 20px 18px; }
.site-nav > a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 15px; padding: 12px 4px; border-bottom: 1px solid var(--line); }
.nav-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.nav-ctas .nav-tel { grid-column: 1 / -1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border: 1.5px solid var(--line-2); border-radius: 12px; color: var(--ink); text-decoration: none; font-weight: 700; background: var(--surface); }
.nav-tel .ico { color: var(--sun-deep); }
.nav-ctas .btn { min-height: 46px; }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; align-items: center; gap: 24px; }
  .site-nav > a { padding: 6px 0; font-size: 14px; border: 0; position: relative; }
  .site-nav > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--sun); transform: scaleX(0); transition: transform .2s; transform-origin: left; }
  .site-nav > a:hover::after { transform: scaleX(1); }
  .nav-ctas { display: flex; align-items: center; gap: 10px; margin: 0 0 0 6px; }
  .nav-ctas .nav-tel { grid-column: auto; min-height: 0; border: 0; background: transparent; padding: 0 4px; font-size: 14px; }
  .nav-ctas .btn { min-height: 40px; }
  .nav-line { display: none; }
}
@media (min-width: 1120px) { .nav-line { display: inline-flex; } }

/* ---------- ヒーロー ---------- */
.hero { position: relative; overflow: hidden; padding: 32px 0 52px; background: linear-gradient(180deg, #FFF8E9 0%, var(--paper) 100%); }
.hero::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); background-size: 180px; opacity: .06; pointer-events: none; mix-blend-mode: multiply; }
.hero-sun { position: absolute; width: 560px; height: 560px; right: -230px; top: -250px; pointer-events: none; }
.hero-sun svg { width: 100%; height: 100%; }
.hero-inner { display: grid; gap: 26px; position: relative; z-index: 1; }
.hero-title { font-size: clamp(27px, 8.6vw, 34px); line-height: 1.26; font-weight: 900; letter-spacing: 0.005em; margin: 0 0 14px; text-wrap: balance; }
.hero-kicker { display: flex; align-items: center; gap: 10px; font-family: var(--font); font-size: 12.5px; font-weight: 700; color: var(--sun-deep); letter-spacing: 0.06em; margin-bottom: 14px; line-height: 1.5; }
.hero-kicker::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(245, 182, 46, 0.18); flex: none; }
.hero-lead { color: var(--ink-2); font-size: 15px; font-weight: 500; }
.hero-note { margin-top: 14px; font-size: 12px; color: var(--muted); }
.hero-note-by { display: inline-block; margin-left: 8px; white-space: nowrap; }
.hero-note-by a { color: var(--ink-2); font-weight: 700; }

/* 料金の要点（制作費 / 月額 / 修正）を3分割の帯で */
.offer-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin: 18px 0 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(27, 34, 51, 0.06); }
.offer-strip > div { min-width: 0; padding: 10px 4px 11px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-left: 1px solid var(--line); text-align: center; }
.offer-strip > div:first-child { border-left: 0; }
.offer-strip dt { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.04em; line-height: 1.2; }
.offer-strip dd { margin: 0; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 1px; line-height: 1.1; color: var(--ink); font-weight: 700; }
.offer-strip .num { font-size: 22px; }
.offer-strip .unit { font-size: 12px; }
.offer-strip .txt { font-size: 15px; font-family: var(--font-head); }
.offer-strip small { flex-basis: 100%; font-size: 10px; color: var(--muted); font-weight: 500; margin-top: 3px; }

.hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
.hero-actions .btn { width: 100%; }
.hero-actions .btn-tel, .hero-actions .btn-line { padding-left: 8px; padding-right: 8px; gap: 6px; font-size: 14px; min-height: 52px; }
.hero-actions .btn-tel .ico { width: 20px; height: 20px; }
@media (min-width: 360px) { .hero-actions { grid-template-columns: 1fr 1fr; } .hero-actions .btn-primary { grid-column: 1 / -1; } }

.hero-visual { position: relative; width: min(270px, 72%); margin: 8px auto 0; }
.phone-frame { position: relative; height: 300px; overflow: hidden; -webkit-mask-image: linear-gradient(180deg, #000 62%, rgba(0, 0, 0, 0) 100%); mask-image: linear-gradient(180deg, #000 62%, rgba(0, 0, 0, 0) 100%); }
.phone { width: 100%; height: auto; filter: drop-shadow(0 14px 22px rgba(27, 34, 51, 0.16)); }
.phone text { font-family: var(--font); }
.hero-float { position: absolute; right: -30px; top: 71%; background: var(--surface); border-radius: 14px; box-shadow: 0 18px 48px rgba(27, 34, 51, 0.12); padding: 8px 12px; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; white-space: nowrap; border: 1px solid var(--line); }
.hero-float .ico { color: var(--sun-deep); }
.hero-caption { margin: 4px -10% 0; text-align: center; font-size: 10.5px; color: var(--muted); line-height: 1.5; }

/* ヒーローの登場アニメーション（一度だけ） */
.js .hero-copy > * { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.js .hero-copy > *:nth-child(2) { animation-delay: .06s; }
.js .hero-copy > *:nth-child(3) { animation-delay: .12s; }
.js .hero-copy > *:nth-child(4) { animation-delay: .18s; }
.js .hero-copy > *:nth-child(5) { animation-delay: .24s; }
.js .hero-copy > *:nth-child(6) { animation-delay: .3s; }
.js .hero-visual { animation: rise .9s cubic-bezier(.2,.7,.2,1) .2s both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (min-width: 640px) { .hero-actions { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .hero { padding: 92px 0 100px; }
  .hero-sun { width: 820px; height: 820px; right: -260px; top: -330px; }
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 40px; }
  .hero-title { font-size: 52px; margin: 0 0 20px; }
  .hero-kicker { font-size: 14px; margin-bottom: 18px; }
  .hero-lead { font-size: 18px; }
  .offer-strip { max-width: 520px; margin: 26px 0 28px; }
  .offer-strip > div { padding: 14px 10px; }
  .offer-strip dt { font-size: 12px; }
  .offer-strip .num { font-size: 28px; }
  .offer-strip .txt { font-size: 18px; }
  .offer-strip small { font-size: 11px; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
  .hero-actions .btn { width: auto; }
  .hero-actions .btn-tel, .hero-actions .btn-line { padding-left: 24px; padding-right: 24px; font-size: 15px; min-height: 56px; }
  .hero-note { font-size: 13px; }
  .hero-visual { width: 360px; margin: 0 0 0 auto; }
  .phone-frame { height: auto; overflow: visible; -webkit-mask-image: none; mask-image: none; transform: rotate(-3deg); }
  .phone { filter: drop-shadow(0 34px 44px rgba(27, 34, 51, 0.22)); }
  .hero-float { right: -56px; top: auto; bottom: 26%; font-size: 13px; padding: 10px 14px; }
  .hero-caption { margin: 22px 0 0; font-size: 11.5px; text-align: right; }
}

/* ---------- 掲載中ポータル（対象） ---------- */
.portals { background: var(--ink-deep); color: #fff; padding: 18px 0 20px; position: relative; overflow: hidden; }
.portals-inner { display: grid; gap: 10px; }
.portals-label { font-size: 12px; letter-spacing: 0.1em; color: var(--sun); font-weight: 700; text-align: center; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track li { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: rgba(255, 255, 255, 0.86); padding: 0 22px; position: relative; white-space: nowrap; }
.marquee-track li::after { content: ""; position: absolute; right: -4px; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--sun); transform: translateY(-50%); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (min-width: 900px) {
  .portals { padding: 22px 0 24px; }
  .portals-inner { grid-template-columns: auto 1fr; align-items: center; gap: 28px; }
  .portals-label { text-align: left; white-space: nowrap; }
  .marquee-track li { font-size: 16px; padding: 0 26px; }
}

/* ---------- なぜ自社サイトか ---------- */
.why { background: var(--paper); }
.why-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.why-list li { display: grid; grid-template-columns: 52px 1fr; column-gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: start; }
.why-mark { width: 52px; height: 52px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #FFD36B, var(--sun) 70%); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(245, 182, 46, 0.32); grid-row: 1 / span 2; }
.why-mark svg { width: 24px; height: 24px; }
.why-list h3 { font-size: 16.5px; line-height: 1.45; }
.why-list p { color: var(--ink-2); font-size: 13.5px; margin-top: 4px; }
@media (min-width: 900px) {
  .why-list { grid-template-columns: repeat(3, 1fr); gap: 40px; border-top: 0; }
  .why-list li { grid-template-columns: 1fr; padding: 30px 0 0; border-bottom: 0; border-top: 2px solid var(--ink); }
  .why-mark { grid-row: auto; width: 60px; height: 60px; margin-bottom: 18px; }
  .why-mark svg { width: 28px; height: 28px; }
  .why-list h3 { font-size: 20px; }
  .why-list p { font-size: 15px; margin-top: 8px; }
}

/* ---------- 比較（ポータル vs HARE PAGE） ---------- */
.compare { background: var(--sky); position: relative; }
.vs { background: var(--surface); border-radius: 20px; overflow: hidden; border: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; }
.vs-head { padding: 12px 10px; font-weight: 700; font-size: 13px; text-align: center; letter-spacing: 0.04em; }
.vs-head-portal { background: #F1EEE8; color: var(--ink-2); }
.vs-head-ours { background: var(--sun); color: var(--ink); }
.vs-head-ours .logo-text { font-size: 14px; gap: 5px; }
.vs-head-ours .logo-tag { font-size: 10px; padding: 3px 6px; }
.vs-rows { grid-column: 1 / -1; }
.vs-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.vs-row dt { grid-column: 1 / -1; font-size: 11.5px; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; padding: 10px 14px 0; }
.vs-row dd { padding: 6px 14px 14px; font-size: 14px; line-height: 1.55; }
.vs-portal { color: var(--ink-2); }
.vs-ours { color: var(--ink); font-weight: 700; background: linear-gradient(90deg, rgba(255, 241, 204, 0.6), rgba(255, 241, 204, 0.9)); font-family: var(--font-head); }
@media (min-width: 900px) {
  .vs { grid-template-columns: 200px 1fr 1fr; border-radius: 24px; }
  .vs-head { padding: 18px 20px; font-size: 15px; }
  .vs-head-portal { grid-column: 2; }
  .vs-head-ours { grid-column: 3; }
  .vs-head-ours .logo-text { font-size: 17px; }
  .vs-rows { display: contents; }
  .vs-row { display: contents; }
  .vs-row dt, .vs-row dd { border-top: 1px solid var(--line); padding: 20px 24px; font-size: 16px; display: flex; align-items: center; }
  .vs-row dt { grid-column: 1; font-size: 14px; letter-spacing: 0; color: var(--ink); background: var(--paper); font-weight: 700; }
  .vs-row .vs-portal { grid-column: 2; }
  .vs-row .vs-ours { grid-column: 3; font-size: 17px; }
  .vs::before { content: ""; grid-column: 1; grid-row: 1; background: var(--paper); border-bottom: 0; }
}

/* ---------- シミュレーター ---------- */
.sim { background: var(--sky); padding-top: 0; }
.sim-box { background: var(--ink); color: #fff; border-radius: 24px; padding: 28px 18px 22px; position: relative; overflow: hidden; }
.sim-box::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); background-size: 180px; opacity: .08; pointer-events: none; }
.sim-box::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; right: -160px; top: -160px; background: radial-gradient(circle, rgba(245, 182, 46, 0.28), rgba(245, 182, 46, 0) 65%); pointer-events: none; }
.sim-head, .sim-body, .sim-note { position: relative; }
.sim-head .eyebrow { color: var(--sun); }
.sim-head .section-title { color: #fff; font-size: 22px; margin-bottom: 8px; }
.sim-lead { color: rgba(255, 255, 255, 0.75); font-size: 13.5px; margin-bottom: 22px; }
.sim-inputs .field { margin-bottom: 12px; }
.sim-inputs label { display: block; font-size: 13px; font-weight: 700; color: rgba(255, 255, 255, 0.86); margin-bottom: 2px; }
.sim-value { font-size: 15px; color: #fff; }
.sim-value .num { font-size: 26px; color: var(--sun); margin-right: 2px; }
.range-scale { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255, 255, 255, 0.5); margin-top: -2px; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 44px; background: transparent; margin: 0; cursor: pointer; touch-action: pan-y; }
input[type="range"]::-webkit-slider-runnable-track { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.18); }
input[type="range"]::-moz-range-track { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.18); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--sun); border: 4px solid var(--ink); box-shadow: 0 0 0 2px var(--sun); margin-top: -10px; }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--sun); border: 4px solid var(--ink); box-shadow: 0 0 0 2px var(--sun); }
input[type="range"]:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; border-radius: 6px; }
.sim-result { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 18px; padding: 18px 16px; }
.sim-bar-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 10px; align-items: center; margin-bottom: 14px; }
.sim-bar-label { font-size: 12.5px; color: rgba(255, 255, 255, 0.8); font-weight: 700; grid-column: 1 / -1; }
.sim-bar { height: 14px; border-radius: 7px; background: rgba(255, 255, 255, 0.12); overflow: hidden; }
.sim-bar-fill { height: 100%; border-radius: 7px; width: 0; transition: width .35s cubic-bezier(.2,.7,.2,1); }
.sim-bar-fill.is-portal { background: #8C96AE; }
.sim-bar-fill.is-ours { background: linear-gradient(90deg, #FFD36B, var(--sun)); }
.sim-bar-num { font-size: 14px; white-space: nowrap; }
.sim-bar-num .num { font-size: 17px; }
.sim-diff { margin-top: 16px; padding-top: 16px; border-top: 1px dashed rgba(255, 255, 255, 0.2); }
.sim-diff-label { font-size: 12.5px; color: rgba(255, 255, 255, 0.75); font-weight: 700; }
.sim-diff-num { display: flex; align-items: baseline; gap: 4px; color: var(--sun); }
.sim-diff-num .num { font-size: 42px; line-height: 1.1; }
.sim-diff-num .unit { font-size: 18px; font-weight: 700; }
.sim-diff-sub { font-size: 13.5px; color: rgba(255, 255, 255, 0.85); }
.sim-diff-sub .num { font-size: 16px; color: #fff; }
.sim-diff.is-negative .sim-diff-num { color: #fff; }
.sim-msg { margin-top: 14px; font-size: 13px; color: rgba(255, 255, 255, 0.85); background: rgba(245, 182, 46, 0.12); border-left: 3px solid var(--sun); padding: 10px 12px; border-radius: 0 8px 8px 0; }
.sim-note { margin-top: 16px; font-size: 11.5px; color: rgba(255, 255, 255, 0.5); }
@media (min-width: 900px) {
  .sim-box { padding: 52px 52px 40px; border-radius: 28px; }
  .sim-head .section-title { font-size: 34px; }
  .sim-lead { font-size: 15px; margin-bottom: 34px; }
  .sim-body { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
  .sim-inputs .field { margin-bottom: 26px; }
  .sim-result { padding: 26px 26px; }
  .sim-bar-row { grid-template-columns: 150px 1fr auto; gap: 12px; }
  .sim-bar-label { grid-column: auto; }
  .sim-diff-num .num { font-size: 54px; }
}

/* ---------- 料金 ---------- */
.price { background: var(--paper); position: relative; }
.price-grid { display: grid; gap: 26px; }
.price-hero { position: relative; background: linear-gradient(160deg, #FFF3D1 0%, #FFE6A6 100%); border-radius: 24px; padding: 26px 22px 26px; text-align: center; overflow: hidden; }
.price-hero::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -100px; bottom: -130px; background: rgba(255, 255, 255, 0.45); pointer-events: none; }
.price-hero::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); background-size: 180px; opacity: .07; pointer-events: none; mix-blend-mode: multiply; }
.price-hero > * { position: relative; z-index: 1; }
.price-stamp { position: relative; margin: 0 auto; width: 88px; height: 88px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(-8deg); box-shadow: 0 10px 24px rgba(27, 34, 51, 0.22); }
.price-stamp::before { content: ""; position: absolute; inset: 5px; border: 1.5px dashed rgba(255, 255, 255, 0.55); border-radius: 50%; }
.price-stamp small { font-size: 8.5px; font-weight: 700; letter-spacing: 0.02em; line-height: 1.2; color: rgba(255, 255, 255, 0.85); }
.price-stamp .num { font-size: 26px; color: var(--sun); line-height: 1.1; }
.price-monthly { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-top: 18px; }
.price-monthly .label { font-size: 15px; font-weight: 700; margin-right: 8px; font-family: var(--font-head); }
.price-monthly .yen { font-family: var(--font-display); font-weight: 700; font-size: 28px; }
.price-monthly .num { font-size: clamp(50px, 15vw, 64px); line-height: 1; letter-spacing: -0.02em; font-weight: 800; }
.price-monthly .per { font-size: 16px; font-weight: 700; color: var(--ink-2); }
.price-tax { font-size: 12.5px; color: var(--ink-2); margin: 8px 0 20px; }
.price-cta .btn { width: 100%; max-width: 360px; }
.price-alt { display: flex; justify-content: center; gap: 22px; margin-top: 12px; font-size: 13px; }
.price-alt a { display: inline-flex; align-items: center; gap: 5px; color: var(--ink); font-weight: 700; text-decoration: none; }
.price-alt .ico { width: 17px; height: 17px; color: var(--ink-2); }
.price-lists { display: grid; gap: 24px; }
.price-list h3 { font-size: 15px; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; padding-bottom: 8px; border-bottom: 2px solid var(--ink); }
.price-list h3 .ico { color: var(--ok); }
.price-list.is-option h3 .ico { color: var(--sun-deep); }
.price-list ul li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.price-list ul li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); flex: none; }
.price-list.is-option ul li::before { background: var(--sun); }
.price-materials { margin-top: 14px; padding: 12px 14px; background: var(--paper-2); border-radius: 12px; font-size: 13px; color: var(--ink-2); line-height: 1.7; }
.price-materials strong { display: block; color: var(--ink); font-family: var(--font-head); margin-bottom: 2px; }
@media (min-width: 900px) {
  .price-grid { grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: start; }
  .price-hero { padding: 54px 40px 40px; border-radius: 28px; position: sticky; top: calc(var(--header-h) + 24px); }
  .price-stamp { width: 108px; height: 108px; }
  .price-monthly { margin-top: 24px; }
  .price-stamp small { font-size: 10px; }
  .price-stamp .num { font-size: 32px; }
  .price-monthly .num { font-size: 80px; }
  .price-lists { gap: 30px; padding-top: 8px; }
  .price-list ul li { font-size: 16px; padding: 12px 0; }
}

/* ---------- CTAバンド（電話・LINE・フォーム） ---------- */
.cta-band { background: var(--ink-deep); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; left: -220px; bottom: -300px; background: radial-gradient(circle, rgba(245, 182, 46, 0.22), rgba(245, 182, 46, 0) 65%); pointer-events: none; }
.cta-band::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); background-size: 180px; opacity: .08; pointer-events: none; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band .eyebrow { color: var(--sun); }
.cta-band .section-title { color: #fff; }
.cta-methods { display: grid; gap: 10px; }
.cta-method { display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; align-items: center; text-decoration: none; color: #fff; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 18px; padding: 16px; transition: background .2s, transform .2s, border-color .2s; }
.cta-method:hover { background: rgba(255, 255, 255, 0.11); border-color: rgba(255, 255, 255, 0.3); }
.cta-method-icon { grid-row: 1 / span 2; width: 44px; height: 44px; border-radius: 12px; background: var(--sun); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; }
.cta-method-icon svg { width: 22px; height: 22px; }
.cta-method.is-line .cta-method-icon { background: var(--line-green); color: #fff; }
.cta-method.is-form .cta-method-icon { background: #fff; color: var(--ink); }
.cta-method strong { font-size: 16px; font-family: var(--font-head); }
.cta-method small { font-size: 12px; color: rgba(255, 255, 255, 0.66); margin-top: 2px; }
@media (min-width: 900px) {
  .cta-methods { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .cta-method { grid-template-columns: 1fr; padding: 28px 26px 26px; }
  .cta-method-icon { grid-row: auto; width: 52px; height: 52px; margin-bottom: 16px; }
  .cta-method-icon svg { width: 26px; height: 26px; }
  .cta-method strong { font-size: 18px; }
  .cta-method small { margin-top: 6px; font-size: 13px; }
}

/* ---------- 流れ（地平線のタイムライン） ---------- */
.flow { background: var(--paper); }
.flow-list { position: relative; display: grid; gap: 0; }
.flow-list li { position: relative; display: grid; grid-template-columns: 44px 1fr; column-gap: 16px; align-items: center; padding: 0 0 24px; }
.flow-list li::before { content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: var(--line-2); }
.flow-list li:last-child::before { display: none; }
.flow-num { width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #FFD36B, var(--sun) 70%); color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 18px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(245, 182, 46, 0.4); grid-row: 1 / span 2; }
.flow-list h3 { font-size: 16.5px; }
.flow-list p { font-size: 13px; color: var(--ink-2); }
@media (min-width: 900px) {
  .flow-list { grid-template-columns: repeat(5, 1fr); gap: 24px; }
  .flow-list li { grid-template-columns: 1fr; padding: 0; align-items: start; }
  .flow-list li::before { left: 48px; right: -24px; top: 23px; bottom: auto; height: 2px; width: auto; background: var(--ink); }
  .flow-num { grid-row: auto; width: 48px; height: 48px; margin-bottom: 18px; font-size: 20px; }
  .flow-list h3 { font-size: 19px; margin-bottom: 4px; }
  .flow-list p { font-size: 14px; }
}

/* ---------- サービス概要（AI・検索向けの要約） ---------- */
.about { background: var(--paper-2); }
.about-lead { font-size: 15px; font-weight: 500; margin-bottom: 18px; }
.about-table { border-top: 2px solid var(--ink); }
.about-table > div { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.about-table dt { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; }
.about-table dd { font-size: 14.5px; line-height: 1.7; }
@media (min-width: 900px) {
  .about-lead { font-size: 18px; margin-bottom: 26px; max-width: 760px; }
  .about-table > div { grid-template-columns: 200px 1fr; gap: 20px; padding: 16px 0; }
  .about-table dt { font-size: 14px; color: var(--ink); letter-spacing: 0; }
  .about-table dd { font-size: 16px; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-list { max-width: 820px; border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line-2); }
.faq-list summary { list-style: none; cursor: pointer; padding: 16px 44px 16px 0; font-weight: 700; font-size: 15px; position: relative; line-height: 1.6; font-family: var(--font-head); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "Q"; font-family: var(--font-display); font-weight: 800; color: var(--sun-deep); margin-right: 10px; }
.faq-list summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; transform: translateY(-50%); background: linear-gradient(var(--ink), var(--ink)) center/12px 2px no-repeat, linear-gradient(var(--ink), var(--ink)) center/2px 12px no-repeat; transition: transform .2s; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body { padding: 0 0 18px; color: var(--ink-2); font-size: 14.5px; }
.faq-body p { padding-left: 24px; position: relative; }
.faq-body p::before { content: "A"; position: absolute; left: 0; top: 0; font-family: var(--font-display); font-weight: 800; color: var(--blue); }
@media (min-width: 900px) {
  .faq-list summary { padding: 22px 56px 22px 0; font-size: 17px; }
  .faq-body { padding: 0 0 24px; font-size: 15.5px; }
}

/* ---------- 店舗集客ノート（メディア導線） ---------- */
.media-strip { background: var(--paper-2); }
.media-lead { font-size: 15px; line-height: 1.85; color: var(--ink-2); margin-bottom: 20px; max-width: 62ch; }
.media-lead strong { font-family: var(--font-display); font-weight: 800; color: var(--ink); }
.media-cards { display: grid; gap: 12px; margin-bottom: 20px; }
.media-card { display: flex; flex-direction: column; gap: 6px; padding: 18px; border: 1px solid var(--line-2); border-radius: 14px; background: #fff; text-decoration: none; color: inherit; transition: border-color .2s, transform .2s; }
.media-card:hover { border-color: var(--sun-deep); transform: translateY(-2px); }
.media-card-tag { font-family: var(--font-display); font-size: 11.5px; font-weight: 700; letter-spacing: .08em; color: var(--sun-deep); }
.media-card-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; line-height: 1.5; }
.media-card-desc { font-size: 13.5px; line-height: 1.75; color: var(--ink-2); }
.media-picks { list-style: none; display: grid; gap: 2px; margin: 0 0 20px; border-top: 1px solid var(--line-2); }
.media-picks li { border-bottom: 1px solid var(--line-2); }
.media-picks a { display: block; padding: 12px 20px 12px 16px; font-size: 14px; line-height: 1.6; color: var(--ink); text-decoration: none; position: relative; }
.media-picks a::before { content: ""; position: absolute; left: 2px; top: 50%; width: 5px; height: 5px; margin-top: -2.5px; border-radius: 50%; background: var(--sun); }
.media-picks a::after { content: "›"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 17px; }
.media-picks a:hover { color: var(--blue); }
.media-more { width: 100%; }
@media (min-width: 700px) {
  .media-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
  .media-card { padding: 22px; }
  .media-more { width: auto; }
}
@media (min-width: 900px) {
  .media-lead { font-size: 16px; }
  .media-picks { grid-template-columns: 1fr 1fr; column-gap: 24px; }
}

/* ---------- お問い合わせ ---------- */
.contact { background: linear-gradient(180deg, var(--paper) 0%, var(--sky) 100%); }
.contact-grid { display: grid; gap: 26px; }
.contact-lead { color: var(--ink-2); }
.contact-alt { display: grid; gap: 12px; margin-top: 18px; }
.contact-tel { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1.5px solid var(--line-2); border-radius: 16px; padding: 14px 16px; text-decoration: none; color: var(--ink); transition: border-color .15s; }
.contact-tel:hover { border-color: var(--ink); }
.contact-tel-icon { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--sun-soft); color: var(--sun-deep); display: inline-flex; align-items: center; justify-content: center; }
.contact-tel-icon svg { width: 24px; height: 24px; }
.contact-tel-body { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.contact-tel-body strong { font-size: 17px; font-family: var(--font-head); }
.contact-tel-body small { font-weight: 500; font-size: 12px; color: var(--muted); margin-top: 3px; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 20px 16px; }
.field { margin-bottom: 14px; }
.field label, .field legend { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
fieldset.field { border: 0; padding: 0; margin: 0 0 14px; min-width: 0; }
.req { display: inline-block; font-size: 10.5px; font-weight: 700; color: #fff; background: var(--ng); border-radius: 4px; padding: 1px 6px; margin-left: 6px; vertical-align: middle; line-height: 1.5; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea { width: 100%; border: 1.5px solid var(--line-2); border-radius: 10px; padding: 12px 14px; background: #FFF; font-size: 16px; line-height: 1.4; transition: border-color .15s, box-shadow .15s; }
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47, 111, 228, 0.18); }
.field input::placeholder, .field textarea::placeholder { color: #A9AEBB; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--ng); }
.field-row { display: grid; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; gap: 14px; } }
.check-group { display: grid; grid-template-columns: 1fr; gap: 0 10px; }
@media (min-width: 480px) { .check-group { grid-template-columns: 1fr 1fr; } }
.check-group label, .field-agree label { display: flex; align-items: flex-start; gap: 8px; font-weight: 500; font-size: 14px; margin: 0; cursor: pointer; line-height: 1.5; padding: 6px 0; }
.check-group input, .field-agree input { width: 20px; height: 20px; flex: none; margin: 1px 0 0; accent-color: var(--blue); }
.field-agree { padding: 8px 14px; background: var(--paper-2); border-radius: 10px; }
.field-agree label { font-weight: 700; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form-error { color: var(--ng); font-size: 13.5px; font-weight: 700; margin-bottom: 12px; padding: 10px 12px; background: #FDECEA; border-radius: 8px; }
.form-note { margin-top: 12px; font-size: 12px; color: var(--muted); text-align: center; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
  .contact-copy { position: sticky; top: calc(var(--header-h) + 32px); }
  .contact-form { padding: 36px; }
}

/* ---------- フッター ---------- */
.site-footer { background: var(--ink-deep); color: rgba(255, 255, 255, 0.82); padding: 44px 0 34px; position: relative; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--sun), rgba(245, 182, 46, 0)); }
.footer-inner { display: grid; gap: 22px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-tag { background: var(--sun); color: var(--ink); }
.footer-brand p { margin-top: 12px; font-size: 13px; line-height: 1.8; }
.footer-brand a { color: #fff; }
.footer-nav, .footer-links { display: flex; flex-wrap: wrap; gap: 2px 18px; }
.footer-nav a, .footer-links a { color: rgba(255, 255, 255, 0.82); text-decoration: none; font-size: 13.5px; padding: 6px 0; }
.footer-nav a:hover, .footer-links a:hover { color: var(--sun); }
.footer-contact { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 6px; color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; padding: 6px 0; }
.footer-contact a:hover { color: var(--sun); }
.footer-contact .ico { color: var(--sun); width: 18px; height: 18px; }
.copyright { font-size: 12px; color: rgba(255, 255, 255, 0.5); font-family: var(--font-display); }
.copyright a { color: inherit; text-decoration: none; }
@media (min-width: 900px) {
  .site-footer { padding: 56px 0 40px; }
  .footer-inner { grid-template-columns: 1.2fr 1fr; grid-template-areas: "brand nav" "contact contact" "links links" "copy copy"; gap: 20px 40px; }
  .footer-brand { grid-area: brand; }
  .footer-nav { grid-area: nav; justify-content: flex-end; align-content: start; }
  .footer-contact { grid-area: contact; }
  .footer-links { grid-area: links; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; }
  .copyright { grid-area: copy; }
}

/* ---------- ボトムバー（スマホ） ---------- */
.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; height: calc(var(--bottom-h) + env(safe-area-inset-bottom)); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr 1.9fr; gap: 8px; transition: transform .25s; }
.js .bottom-bar { transform: translateY(110%); }
.js .bottom-bar.is-shown { transform: none; }
.bottom-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 48px; border-radius: 12px; font-weight: 700; font-size: 13.5px; text-decoration: none; -webkit-tap-highlight-color: transparent; white-space: nowrap; }
.bottom-btn .ico { width: 18px; height: 18px; }
.bottom-tel { background: var(--surface); border: 1.5px solid var(--line-2); color: var(--ink); }
.bottom-tel .ico { color: var(--sun-deep); }
.bottom-line { background: var(--line-green); color: #fff; }
.bottom-form { background: linear-gradient(180deg, #FFC64D 0%, var(--sun) 100%); color: var(--ink); box-shadow: 0 6px 18px rgba(245, 182, 46, 0.35); }
@media (max-width: 359px) { .bottom-bar { grid-template-columns: 1fr 1fr 1.6fr; gap: 6px; padding-left: 10px; padding-right: 10px; } .bottom-btn { font-size: 12.5px; } .hero-actions { grid-template-columns: 1fr; } .offer-strip .num { font-size: 19px; } .offer-strip .txt { font-size: 14px; } }
@media (min-width: 900px) { .bottom-bar { display: none; } }

/* ---------- 途中のCTA（LINE／フォーム／電話） ---------- */
.cta-strip { margin-top: 28px; background: var(--ink); color: #fff; border-radius: 18px; padding: 18px; display: grid; gap: 12px; position: relative; overflow: hidden; }
.cta-strip::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -120px; top: -160px; background: radial-gradient(circle, rgba(245, 182, 46, 0.3), rgba(245, 182, 46, 0) 65%); pointer-events: none; }
.cta-strip > * { position: relative; }
.cta-strip-text { font-family: var(--font-head); font-weight: 700; font-size: 16px; line-height: 1.5; }
.cta-strip-btns { display: grid; grid-template-columns: 1fr; gap: 10px; }
.cta-strip .btn { width: 100%; }
.cta-strip .btn-tel { border-color: transparent; }
@media (min-width: 480px) { .cta-strip-btns { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .cta-strip { grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 24px 30px; margin-top: 48px; border-radius: 22px; }
  .cta-strip-text { font-size: 20px; }
  .cta-strip-btns { display: flex; gap: 12px; }
  .cta-strip .btn { width: auto; }
}

/* CTAバンドのLINEタイルに、PCではQRコードを添える */
.cta-method { position: relative; }
.cta-qr { display: none; }
@media (min-width: 900px) {
  .cta-qr { display: flex; flex-direction: column; align-items: center; gap: 4px; position: absolute; right: 22px; top: 22px; }
  .cta-qr img { width: 84px; height: 84px; border-radius: 8px; background: #fff; padding: 4px; }
  .cta-qr small { font-size: 10.5px; color: rgba(255, 255, 255, 0.66); margin: 0; letter-spacing: 0.02em; }
}

/* PC用の固定LINEボタン（右下） */
.line-fab { display: none; }
@media (min-width: 900px) {
  .line-fab { position: fixed; right: 24px; bottom: 24px; z-index: 40; display: inline-flex; align-items: center; gap: 8px; background: var(--line-green); color: #fff; font-weight: 700; font-size: 15px; padding: 14px 22px; border-radius: 999px; text-decoration: none; box-shadow: 0 12px 30px rgba(6, 199, 85, 0.35); transition: transform .3s, opacity .3s, background .18s; }
  .line-fab:hover { background: #05B04C; }
  .line-fab .ico { width: 20px; height: 20px; }
  .js .line-fab { transform: translateY(140%); opacity: 0; }
  .js .line-fab.is-shown { transform: none; opacity: 1; }
}

/* ---------- タップ・動き ---------- */
.cta-method:active, .contact-tel:active, .bottom-btn:active { transform: scale(0.985); }
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .hero-copy > *, .js .hero-visual { animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .sim-bar-fill { transition: none; }
}
