/* cheeroプリントサイト リニューアル・モック
 * 正本: ~/dev/cheero-print-site/design.md
 * 借用元: ~/dev/ourai-site/style.css（往来テンプレ）
 * 借りた範囲: 余白のスケール・本文タイポグラフィ・見出し階層・カードの抑制された装飾
 * 借りていない範囲: ヒーロー／実績写真パネル／CTA／価格導線／用途別導線（LP専用に新規設計）
 *
 * ▼▼ 仮決定（design.md §11 未確定TODO） ▼▼
 * ブランドカラー・ロゴデータは正式受領前。cheero.net/print/ の現行サイト・ロゴ画像から
 * 仮に拾った色（cheeroの一般的なブランドカラーであるオレンジを基調に仮設定）。
 * 正式なブランドガイド受領後に必ず差し替えること。
 * ▲▲ 仮決定ここまで ▲▲
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@500;700;900&display=swap');

:root {
  /* === Colour（仮・cheeroブランドカラー未受領のためオレンジ系で仮設定） === */
  --color-paper:       oklch(97%  0.004  70);
  --color-paper-2:     oklch(98%  0.006  70);
  --color-white:       oklch(100% 0      0  );
  --color-ink:         oklch(20%  0.010  50);
  --color-ink-2:       oklch(45%  0.012  50);
  --color-ink-3:       oklch(62%  0.010  50);
  --color-rule:        oklch(90%  0.008  60);
  --color-accent:      oklch(66%  0.19   45);   /* 仮：cheeroオレンジ */
  --color-accent-2:    oklch(58%  0.20   38);   /* 仮：やや濃いオレンジ（hover等） */
  --color-accent-ink:  oklch(99%  0.003  70);
  --color-focus:       oklch(70%  0.18   45);
  --color-safe:        oklch(55%  0.14   150);  /* 安全性セクション用のグリーン（仮） */

  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-body:    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --track-body:  0.05em;
  --track-label: 0.12em;
  --track-nav:   0.1em;

  --text-xs:    0.8125rem;
  --text-sm:    0.9375rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.625rem;
  --text-2xl:   2rem;
  --text-3xl:   2.5rem;
  --text-display: clamp(2.25rem, 3.6vw + 1rem, 3.25rem);

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  0.75rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 7.5rem;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur-short:   200ms;
  --dur-med:     360ms;

  --radius-card:  6px;
  --radius-btn:   6px;
  --radius-pill:  99px;
  --radius-input: 4px;

  --header-h:    76px;
  --header-h-sp: 64px;
  --max: 1180px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: var(--track-body);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--space-xl); }
section { padding: var(--space-2xl) 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
h1.page-title {
  font-size: var(--text-display);
  line-height: 1.4;
  font-weight: 900;
  text-wrap: balance;
}
h2.sec-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-wrap: balance;
}
.sec-lead {
  color: var(--color-ink-2);
  font-size: var(--text-md);
  line-height: 1.9;
  max-width: 640px;
  margin-bottom: var(--space-xl);
}
.sec-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.sec-head { max-width: 720px; margin: 0 auto var(--space-xl); text-align: center; }
.sec-head.left { margin: 0 0 var(--space-xl); text-align: left; }

/* ══════════ Header / Nav ══════════ */
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--color-white);
  height: var(--header-h);
  border-bottom: 1px solid var(--color-rule);
}
.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  padding: 0 var(--space-xl);
  gap: var(--space-lg);
}
.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  gap: 8px;
}
.logo img { height: 32px; width: auto; }
.logo .logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-ink-3);
  border-left: 1px solid var(--color-rule);
  padding-left: 8px;
}
nav.nav-main ul {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: var(--track-nav);
}
nav.nav-main a { transition: color var(--dur-short) var(--ease-out); }
nav.nav-main a:hover { color: var(--color-accent); }
nav.nav-main a:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 4px; }

/* 用途から探す ドロップダウン */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: "▾";
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
}
.nav-dropdown__panel {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 32px rgba(30, 20, 10, 0.1);
  padding: var(--space-sm);
  min-width: 260px;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel { display: block; }
.nav-dropdown__panel a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-input);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-ink);
}
.nav-dropdown__panel a:hover { background: var(--color-paper); color: var(--color-accent); }
.nav-dropdown__panel .sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-xs);
  color: var(--color-ink-3);
  margin-top: 2px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-accent-ink);
  background: var(--color-accent);
  border-radius: var(--radius-btn);
  padding: 12px 22px;
  white-space: nowrap;
  transition: opacity var(--dur-short) var(--ease-out), transform var(--dur-short) var(--ease-out);
}
.btn-cta:hover { opacity: 0.86; }
.btn-cta:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-ink);
  background: transparent;
  border: 1.5px solid var(--color-ink);
  border-radius: var(--radius-btn);
  padding: 13px 24px;
  white-space: nowrap;
  transition: background var(--dur-short) var(--ease-out), color var(--dur-short) var(--ease-out);
}
.btn-outline:hover { background: var(--color-ink); color: var(--color-white); }

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-accent-ink);
  border-radius: var(--radius-btn);
  padding: 15px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: opacity var(--dur-short) var(--ease-out);
}
.btn-solid:hover { opacity: 0.86; }
.btn-solid.lg { padding: 18px 40px; font-size: var(--text-md); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  color: var(--color-ink-2);
  border-bottom: 1px solid var(--color-rule);
  padding-bottom: 2px;
}
.btn-ghost:hover { color: var(--color-accent); border-color: var(--color-accent); }
.btn-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  color: var(--color-ink-3);
  background: var(--color-paper-2);
  border: 1px dashed var(--color-rule);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  cursor: not-allowed;
}

/* ══════════ Hamburger / Mobile nav ══════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: all .25s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h-sp);
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  background: var(--color-white);
  padding: 8px 0 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  z-index: 99;
}
.mobile-nav a {
  display: block;
  padding: 15px var(--space-lg);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: .04em;
  border-bottom: 1px solid var(--color-rule);
}
.mobile-nav .sub-label {
  padding: 14px var(--space-lg) 4px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--track-label);
  color: var(--color-ink-3);
  text-transform: uppercase;
}
.mobile-nav .cta-row { padding: 18px var(--space-lg) 4px; }
.mobile-nav.open { display: block; }

main { padding-top: var(--header-h); }

/* ══════════ HERO ══════════ */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--color-paper-2), var(--color-paper));
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  color: var(--color-accent);
  background: color-mix(in oklch, var(--color-accent) 12%, white);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}
.hero h1 { margin-bottom: var(--space-md); }
.hero__lead {
  color: var(--color-ink-2);
  font-size: var(--text-md);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-md); }
.hero__soon-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }

/* 実績写真パネル（雰囲気ギャラリーにしない・キャプション必須） */
.works-panel {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-rule);
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  background: var(--color-rule);
}
.works-grid a.work-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.work-item {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--color-paper);
}
.works-grid a.work-item:first-child { aspect-ratio: auto; }
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-med) var(--ease-out);
}
.work-item:hover img { transform: scale(1.05); }
.work-item .work-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px 8px;
  background: linear-gradient(180deg, transparent, rgba(20,12,4,0.82));
  color: #fff;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.work-item .work-cap b { display: block; font-size: 12px; font-weight: 700; margin-bottom: 1px; }
@media (max-width: 640px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  .works-grid a.work-item:first-child { grid-column: span 2; aspect-ratio: 16/10; }
}

/* ══════════ ヒーロー直下 参考画像マーキー（帯・自動で流れる） ══════════ */
.hero-marquee {
  display: block;
  overflow: hidden;
  background: var(--color-white);
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
}
.hero-marquee__label {
  display: block;
  padding: 10px var(--space-xl) 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  color: var(--color-ink-3);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.marquee-item {
  position: relative;
  flex: 0 0 auto;
  width: 220px;
  aspect-ratio: 4/3;
  margin-right: 2px;
  overflow: hidden;
  background: var(--color-paper);
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }
.marquee-item .marquee-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 6px 10px 5px;
  background: linear-gradient(180deg, transparent, rgba(20,12,4,0.82));
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .marquee-item { width: 150px; }
}

/* ══════════ 用途別3入口（ヒーロー直下・大セクション化しない） ══════════ */
.use-entries {
  background: var(--color-white);
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
}
.use-entries__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: var(--space-md);
  align-items: stretch;
}
.use-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-lg);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  transition: border-color var(--dur-short) var(--ease-out), transform var(--dur-short) var(--ease-out);
}
.use-card:hover { border-color: var(--color-accent); transform: translateY(-2px); }
.use-card--primary {
  border: 2px solid var(--color-accent);
  padding: var(--space-xl) var(--space-lg);
  background: color-mix(in oklch, var(--color-accent) 5%, white);
}
.use-card--primary .use-tag { color: var(--color-accent-2); }
.use-card--primary h3 { font-size: var(--text-lg); }
.use-card .use-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  color: var(--color-accent);
}
.use-card h3 { font-size: var(--text-md); }
.use-card p { color: var(--color-ink-2); font-size: var(--text-sm); }
.use-card .use-more { margin-top: auto; padding-top: 6px; font-size: var(--text-xs); font-weight: 700; color: var(--color-ink-2); }
@media (max-width: 860px) {
  .use-entries__grid { grid-template-columns: 1fr; }
}

/* ══════════ デザインシミュレーター告知バナー（用途3カード直後） ══════════ */
.sim-banner {
  background: linear-gradient(120deg, var(--color-ink) 0%, color-mix(in oklch, var(--color-ink) 80%, var(--color-accent-2)) 100%);
  color: var(--color-accent-ink);
}
.sim-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.sim-banner__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  color: var(--color-accent);
  background: rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}
.sim-banner__text h2 { color: var(--color-accent-ink); font-size: var(--text-xl); margin-bottom: 6px; }
.sim-banner__text p { color: rgba(255,255,255,0.78); font-size: var(--text-sm); margin: 0; }
.sim-banner .btn-solid.lg { background: var(--color-accent); flex-shrink: 0; }
@media (max-width: 640px) {
  .sim-banner__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .sim-banner .btn-solid.lg { width: 100%; text-align: center; justify-content: center; }
}

/* ══════════ CTA帯（共通コンポーネント・製品セクション後／流れセクション後に挿入） ══════════ */
.cta-band {
  background: var(--color-paper-2);
  border-top: 1px solid var(--color-rule);
  border-bottom: 1px solid var(--color-rule);
  padding: var(--space-xl) 0;
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
  text-align: center;
}
.cta-band__text h3 { font-size: var(--text-md); margin-bottom: 2px; }
.cta-band__text p { font-size: var(--text-sm); color: var(--color-ink-2); }
.cta-band__buttons { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
.btn-disabled {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  color: var(--color-ink-3);
  background: var(--color-white);
  border: 1px dashed var(--color-rule);
  border-radius: var(--radius-btn);
  padding: 14px 26px;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 640px) {
  .cta-band__inner { flex-direction: column; text-align: center; }
}

/* ══════════ 商品グリッド ══════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--dur-short) var(--ease-out);
}
.product-card:hover { border-color: var(--color-accent); }
.product-card .thumb {
  aspect-ratio: 4/3;
  background: var(--color-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-card .thumb.placeholder {
  color: var(--color-ink-3);
  font-size: var(--text-xs);
  letter-spacing: var(--track-label);
  text-align: center;
  padding: var(--space-sm);
}
.product-card .body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; gap: 6px; }
.product-card .badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: var(--track-label);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: color-mix(in oklch, var(--color-accent) 14%, white);
  color: var(--color-accent-2);
}
.product-card .badge.solid-state { background: color-mix(in oklch, var(--color-safe) 16%, white); color: var(--color-safe); }
.product-card h3 { font-size: var(--text-base); line-height: 1.5; }
.product-card .spec { font-size: var(--text-xs); color: var(--color-ink-3); }
.product-card .more-link { margin-top: auto; padding-top: 8px; font-size: var(--text-xs); font-weight: 700; color: var(--color-accent); }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

/* ══════════ 安全性セクション ══════════ */
.safety-section { background: color-mix(in oklch, var(--color-safe) 6%, white); }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.safety-item {
  background: var(--color-white);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
}
.safety-item .ico {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: color-mix(in oklch, var(--color-safe) 16%, white);
  color: var(--color-safe);
  margin-bottom: var(--space-sm);
}
.safety-item h3 { font-size: var(--text-md); margin-bottom: 6px; }
.safety-item p { font-size: var(--text-sm); color: var(--color-ink-2); }
.safety-video {
  margin-top: var(--space-lg);
  aspect-ratio: 16/7;
  border-radius: var(--radius-card);
  border: 1px dashed var(--color-rule);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-ink-3);
  text-align: center;
  padding: var(--space-md);
}
@media (max-width: 900px) { .safety-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .safety-grid { grid-template-columns: 1fr; } }

/* ══════════ 流れ（ステップ） ══════════ */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.flow-step {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}
.flow-step .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-2xl);
  color: color-mix(in oklch, var(--color-accent) 30%, white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.flow-step h3 { font-size: var(--text-base); margin-bottom: 4px; }
.flow-step p { font-size: var(--text-sm); color: var(--color-ink-2); }
@media (max-width: 900px) { .flow-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .flow-grid { grid-template-columns: 1fr; } }

/* ══════════ 予算感 ══════════ */
.budget-section { background: var(--color-ink); color: var(--color-accent-ink); }
.budget-section .sec-label { color: color-mix(in oklch, var(--color-accent) 60%, white); }
.budget-section h2 { color: var(--color-accent-ink); }
.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.budget-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
}
.budget-item .lot { font-size: var(--text-xs); letter-spacing: var(--track-label); color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.budget-item .price { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 900; margin-bottom: 6px; }
.budget-item .note { font-size: var(--text-xs); color: rgba(255,255,255,0.65); }
.budget-cta { text-align: center; }
.budget-cta .btn-solid { background: var(--color-accent); }
@media (max-width: 860px) { .budget-grid { grid-template-columns: 1fr; } }

/* ══════════ ミニFAQ ══════════ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-card);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--color-accent); flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-a {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  line-height: 1.9;
}
.faq-more { text-align: center; margin-top: var(--space-lg); }

/* ══════════ 推し製品セクション ══════════ */
.newline-section { background: var(--color-paper-2); }
.newline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
}
.newline-note {
  margin-top: var(--space-xl);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-ink-3);
}
.newline-note a { color: var(--color-ink-2); border-bottom: 1px solid var(--color-rule); }

/* ══════════ Footer ══════════ */
footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.72);
  padding: var(--space-2xl) 0 var(--space-lg);
}
footer .wrap { display: flex; justify-content: space-between; gap: var(--space-xl); flex-wrap: wrap; }
footer .foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-sm); }
footer .foot-brand img { height: 26px; filter: brightness(0) invert(1); }
footer nav ul { display: flex; flex-wrap: wrap; gap: var(--space-md) var(--space-lg); font-size: var(--text-sm); }
footer nav a:hover { color: #fff; }
footer .copyright { width: 100%; margin-top: var(--space-xl); font-size: var(--text-xs); color: rgba(255,255,255,0.4); }

/* ══════════ Responsive ══════════ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .newline-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --header-h: var(--header-h-sp); }
  nav.nav-main { display: none; }
  .btn-cta.desktop-only { display: none; }
  .hamburger { display: flex; }
  section { padding: var(--space-xl) 0; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 var(--space-md); }
  .nav { padding: 0 var(--space-md); gap: var(--space-md); }
  h1.page-title { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .safety-video { aspect-ratio: 16/10; }
}
@media (max-width: 560px) {
  .budget-grid { grid-template-columns: 1fr; }
  .newline-grid { grid-template-columns: 1fr; }
  footer .wrap { flex-direction: column; }
}
