/* ============================================
   推し活撮影セットアップガイド - style.css
   デザイン：推しトレカ × Y2Kステッカーzine
   太アウトライン＋ハードシャドウ／単色＋差し色／丸ゴシック表示
   推し色 --accent で着せ替え
   ============================================ */

:root {
  /* インク（文字・アウトライン） */
  --ink: #3a1c37;
  --ink-soft: #5c4258;

  /* 紙（背景） */
  --paper: #fdeef5;
  --surface: #ffffff;

  /* 推し色アクセント（JSで上書き） */
  --accent: #ff5fa8;
  --accent-soft: #ffd9e8;
  --on-accent: #3a1c37; /* アクセント上の文字色（JSが明度で上書き） */

  /* 差し色（Y2Kポップ） */
  --pop: #5cc8ec;     /* スカイ */
  --pop-2: #ffd23f;   /* レモン */

  /* レベル色 */
  --lv-bg: #fff;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --font-display: 'Mochiy Pop One', 'Hiragino Maru Gothic ProN', sans-serif;
  --font-body: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', system-ui, sans-serif;

  /* ハードシャドウ（ステッカー感） */
  --sh: 4px 4px 0 var(--ink);
  --sh-sm: 3px 3px 0 var(--ink);
  --sh-accent: 5px 5px 0 var(--accent-soft);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  /* ハーフトーンのドット質感（控えめ） */
  background-image: radial-gradient(var(--accent-soft) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  color: var(--ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

/* ============================================
   広告表記（PRバー）
   ============================================ */
.pr-bar {
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 2;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 40px 20px 66px;
  text-align: center;
  overflow: hidden;
}

/* 虹色グラデを廃し、単色紙＋装飾ドット */
.hero-bg { display: none; }

.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }

/* 静的なきらきら（アニメなし・差し色） */
.sparkles {
  font-size: 1rem;
  letter-spacing: 1.1rem;
  margin-bottom: 14px;
  color: var(--pop-2);
  -webkit-text-stroke: 0.8px var(--ink);
}

.hero-title-sub {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--on-accent);
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 5px 18px;
  box-shadow: var(--sh-sm);
  margin-bottom: 18px;
  transform: rotate(-2deg);
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.42;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.hero-lead {
  font-size: 0.98rem;
  line-height: 2;
  margin-bottom: 26px;
  color: var(--ink-soft);
}

.hero-lead strong {
  color: var(--ink);
  font-weight: 700;
  background: linear-gradient(transparent 62%, var(--pop-2) 62%);
}

/* ヒーロー画像：トレカ風フレーム＋ハードシャドウ＋わずかに傾き */
.hero-figure {
  margin: 0 auto 30px;
  max-width: 580px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
  line-height: 0;
  transform: rotate(-1.2deg);
}

.hero-figure img { width: 100%; height: auto; display: block; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pop-2);
  color: var(--ink);
  padding: 14px 38px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1rem;
  text-decoration: none;
  box-shadow: var(--sh);
  transition: transform 0.12s, box-shadow 0.12s;
}

.hero-cta:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.hero-cta:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

/* ============================================
   推し色 着せ替え
   ============================================ */
.theme-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface);
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
}

.theme-switch-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
}

.theme-swatches { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; }

.swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--sw);
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
  padding: 0;
}

.swatch:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.swatch:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.swatch.selected {
  transform: rotate(-6deg);
  box-shadow: 3px 3px 0 var(--ink), 0 0 0 3px var(--surface), 0 0 0 5.5px var(--ink);
}

/* ============================================
   シーンタブ
   ============================================ */
.scene-tabs {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 2.5px solid var(--ink);
  padding: 12px 0;
}

.scene-tabs-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1000px;
  margin: 0 auto;
}

.scene-tabs-inner::-webkit-scrollbar { display: none; }

.scene-tab {
  flex-shrink: 0;
  min-width: 92px;
  padding: 11px 12px;
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: var(--sh-sm);
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
}

.scene-tab:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }

.scene-tab.active {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-1px, -1px);
}

.tab-emoji { font-size: 1.5rem; line-height: 1; }

/* ============================================
   コンテナ / セクション見出し
   ============================================ */
.container { max-width: 980px; margin: 0 auto; padding: 40px 20px 60px; }

.section-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  text-align: center;
  margin: 56px auto 28px;
  color: var(--ink);
  width: fit-content;
  position: relative;
  padding-bottom: 8px;
}

/* 手描き風の下線（単色・ジグザグ） */
.section-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 4px;
  background:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%) 0 0 / 8px 7px repeat-x,
    linear-gradient(-45deg, var(--accent) 50%, transparent 50%) 0 0 / 8px 7px repeat-x;
}

/* ============================================
   シーンコンテンツ
   ============================================ */
.scene-panel[hidden] { display: none; }
.scene-panel.pop { animation: pop-in 0.35s ease both; }

@keyframes pop-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.scene-header {
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--sh);
  padding: 18px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.scene-figure {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2.5px solid var(--ink);
  line-height: 0;
  aspect-ratio: 16 / 11;
}

.scene-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

.scene-header-text { text-align: center; }

.scene-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.9rem;
  background: var(--accent-soft);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  box-shadow: var(--sh-sm);
  margin-bottom: 10px;
}

.scene-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 8px; color: var(--ink); }
.scene-desc { font-size: 0.93rem; color: var(--ink-soft); }

.scene-lead {
  background: var(--accent-soft);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--sh-sm);
  padding: 16px 18px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.9;
  position: relative;
}

.scene-lead::before {
  content: 'POINT';
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--pop);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  padding: 2px 12px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
}

/* ============================================
   商品グリッド（トレカ風カード）
   ============================================ */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.product-card {
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--sh-accent);
  display: flex;
  flex-direction: column;
  transition: transform 0.14s, box-shadow 0.14s;
}

.product-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--accent);
}

.product-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }

.product-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
}

/* ステッカー感：アイコンの色と傾きに変化をつけ、単調さを崩す */
.product-card:nth-child(3n+2) .product-icon { background: #d6efff; }
.product-card:nth-child(3n+3) .product-icon { background: #fff0bf; }
.product-card:nth-child(odd) .product-icon { transform: rotate(-3deg); }
.product-card:nth-child(even) .product-icon { transform: rotate(3deg); }

.product-title-wrap { flex: 1; min-width: 0; }

.product-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.5; color: var(--ink); }

.product-badges { display: flex; gap: 6px; flex-wrap: wrap; }

.badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink);
  letter-spacing: 0.03em;
}

.badge-beginner { background: #ffe27a; color: var(--ink); }
.badge-intermediate { background: #9be7c4; color: var(--ink); }
.badge-advanced { background: #9fd0ff; color: var(--ink); }

.product-desc { font-size: 0.91rem; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.85; }

.product-usage {
  background: var(--paper);
  border: 2px dashed var(--accent);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--ink);
}

.product-usage strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 0.84rem; font-weight: 700; }

.cta-row { display: flex; align-items: center; gap: 10px; margin-top: auto; }

.pr-tag {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--surface);
  border: 2px solid var(--ink-soft);
  border-radius: 6px;
  padding: 3px 7px;
  line-height: 1;
}

.amazon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  background: #ff9900;
  color: var(--ink);
  padding: 12px 24px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--sh-sm);
  transition: transform 0.12s, box-shadow 0.12s;
}

.amazon-btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.amazon-btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }

.amazon-btn--store {
  flex: 0 0 auto;
  margin-top: auto;
  width: 100%;
  justify-content: flex-start;
  background: transparent;
  color: var(--ink-soft);
  border: 0;
  border-top: 2px dashed var(--accent-soft);
  border-radius: 0;
  padding: 12px 2px 0;
  box-shadow: none;
  cursor: default;
  font-weight: 500;
  font-size: 0.82rem;
}
.amazon-btn--store:hover { transform: none; box-shadow: none; }

/* ============================================
   ゴールデンアワー ツール
   ============================================ */
.golden-tool { margin-top: 32px; }

.tool-card {
  background: var(--pop);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--sh);
  padding: 26px 24px;
}

.tool-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 8px; color: var(--ink); }
.tool-desc { font-size: 0.88rem; color: var(--ink); margin-bottom: 18px; }

.tool-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 8px; }
.tool-form label { font-weight: 700; font-size: 0.88rem; width: 100%; margin-bottom: 4px; color: var(--ink); }

.tool-form input[type="time"] {
  flex: 1;
  min-width: 120px;
  padding: 11px 14px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--ink);
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  border: 2.5px solid var(--ink);
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: transform 0.12s, box-shadow 0.12s;
}

.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }

.tool-result {
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-top: 14px;
  font-size: 0.94rem;
}

.tool-result .result-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 2px dashed var(--accent-soft);
}

.tool-result .result-item:last-of-type { border-bottom: none; }
.tool-result .result-label { font-weight: 700; color: var(--ink); }
.tool-result .result-value { color: var(--accent); font-weight: 700; white-space: nowrap; }

.result-hint { margin-top: 12px; font-size: 0.84rem; color: var(--ink-soft); line-height: 1.8; }
.result-hint strong { color: var(--accent); }

.tool-note { font-size: 0.76rem; color: var(--ink); opacity: 0.75; margin-top: 12px; }

/* ============================================
   TIPS
   ============================================ */
.tips-section { margin-top: 10px; }
.tips-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

.tip-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-left-width: 8px;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.tip-card:nth-child(3n+1) { border-left-color: var(--accent); }
.tip-card:nth-child(3n+2) { border-left-color: var(--pop); }
.tip-card:nth-child(3n+3) { border-left-color: var(--pop-2); }

.tip-title { font-weight: 700; margin-bottom: 6px; font-size: 0.98rem; color: var(--ink); }
.tip-text { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.75; }

/* ============================================
   選定基準（編集ポリシー）
   ============================================ */
.editor-section { margin-top: 10px; }

.editor-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--sh-sm);
  padding: 22px 22px 18px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--ink);
}

.editor-card > p { color: var(--ink-soft); }
.editor-card strong { color: var(--ink); }

.editor-points {
  list-style: none;
  margin: 14px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.editor-points li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.editor-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 700;
}

.editor-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 12px; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { margin-top: 10px; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 15px 48px 15px 18px;
  font-weight: 700;
  font-size: 0.93rem;
  list-style: none;
  position: relative;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '＋';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--on-accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}

.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 18px 16px; font-size: 0.87rem; color: var(--ink-soft); line-height: 1.85; }

/* ============================================
   シェア
   ============================================ */
.share-section {
  margin-top: 60px;
  text-align: center;
  background: var(--accent-soft);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--sh);
  padding: 34px 24px;
}

.share-section .section-title { margin-top: 0; }
.share-lead { color: var(--ink); margin-bottom: 22px; font-size: 0.93rem; }

.share-buttons { display: flex; flex-direction: column; gap: 12px; max-width: 340px; margin: 0 auto; }

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--sh-sm);
  transition: transform 0.12s, box-shadow 0.12s;
}

.share-btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.share-btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.share-btn.twitter { background: #fff; color: var(--ink); }
.share-btn.line { background: #06C755; color: #fff; }
.share-btn.copy { background: var(--pop-2); color: var(--ink); }

/* ============================================
   モバイル追従CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 160%);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-display);
  font-size: 0.9rem;
  box-shadow: var(--sh);
  cursor: pointer;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-cta.visible { transform: translate(-50%, 0); opacity: 1; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ============================================
   フッター
   ============================================ */
.footer { background: var(--ink); color: #fff; padding: 34px 20px; margin-top: 60px; }
.footer-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.footer-disclaimer { font-size: 0.76rem; opacity: 0.82; line-height: 1.9; margin-bottom: 14px; }
.footer-copy { font-size: 0.84rem; opacity: 0.92; font-family: var(--font-display); }

.footer-nav { font-size: 0.8rem; margin-bottom: 12px; }
.footer-nav a { color: #fff; opacity: 0.9; text-decoration: underline; text-underline-offset: 2px; }
.footer-nav a:hover { opacity: 1; }

/* 法務・運営者ページ */
.legal-back { margin-bottom: 8px; font-size: 0.85rem; }
.legal-back a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.legal-h2 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin: 18px 0 6px;
  padding-left: 12px;
  border-left: 5px solid var(--accent);
}
.legal-h2:first-of-type { margin-top: 4px; }
.legal-note { font-size: 0.78rem; color: var(--ink-soft); }

/* お問い合わせフォーム */
.contact-form { margin-top: 16px; }
.form-consent { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; }
.form-consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--ink); }
.form-optional { font-size: 0.74rem; color: var(--ink-soft); font-weight: 400; }
.form-required { font-size: 0.74rem; color: var(--accent); font-weight: 700; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--ink);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group textarea:focus { outline: 3px solid var(--accent); outline-offset: 1px; }
.form-submit { width: 100%; margin-top: 6px; cursor: pointer; }
.form-status {
  background: var(--accent-soft);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.86rem;
  margin-bottom: 16px;
  color: var(--ink);
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (min-width: 640px) {
  .hero { padding: 56px 20px 70px; }
  .hero-title-main { font-size: 2.8rem; }
  .hero-lead { font-size: 1.04rem; }

  .scene-tab { min-width: 112px; font-size: 0.83rem; padding: 11px 16px; }
  .tab-emoji { font-size: 1.75rem; }

  .container { padding: 50px 24px 70px; }

  .scene-header { grid-template-columns: 1.05fr 1fr; padding: 24px; gap: 24px; }
  .scene-header-text { text-align: left; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }

  .share-buttons { flex-direction: row; max-width: none; justify-content: center; }
  .share-btn { padding: 13px 26px; }
}

@media (min-width: 960px) {
  .hero-title-main { font-size: 3.5rem; }
  .scene-title { font-size: 1.7rem; }
}

/* ============================================
   アクセシビリティ
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

.scene-tab:focus-visible,
.amazon-btn:focus-visible,
.share-btn:focus-visible,
.btn-primary:focus-visible,
.swatch:focus-visible,
.hero-cta:focus-visible,
.sticky-cta:focus-visible,
.faq-item summary:focus-visible {
  outline: 3px solid var(--pop);
  outline-offset: 2px;
}
