/* ミコミダケ LP v3 */

:root {
  --blue: #0b5cd6;
  --blue-dark: #0847a8;
  --blue-mid: #0b4ab0;
  --blue-deep: #0a2f6b;
  --blue-night: #0a1f45;
  --blue-tint: #e8f0fd;
  --blue-tint-2: #f3f8ff;
  --blue-line: #dbe4f0;
  --blue-line-2: #b9cdf0;
  --orange: #ff7a1a;
  --orange-dark: #f06a05;
  --red: #e8442e;
  --red-tint: #fdecea;
  --red-tint-2: #fdf6f4;
  --red-tint-3: #fff7f1;
  --red-line: #ffe0cc;
  --amber: #f5a623;
  --amber-dark: #b97c0a;
  --amber-tint: #fffaf0;
  --amber-line: #ffedcc;
  --green: #22b573;
  --green-deep: #1e8a5a;
  --green-tint: #e9f7f0;
  --pink: #c2366b;
  --pink-tint: #fceef4;
  --gold: #ffd27a;
  --gold-strong: #f9bb40;
  --ink: #1a2b45;
  --ink-sub: #4b5c74;
  --muted: #64748b;
  --slate: #94a3b8;
  --slate-soft: #cbd5e1;
  --line: #e6ebf2;
  --line-soft: #eef2f8;
  --bg-soft: #f6f8fb;
  --bg-tint: #f1f5fa;
  --bg-cool: #f8fafc;
  --bg-drop: #f8fbff;
  --white: #fff;
  --shadow-card: 0 4px 16px rgba(10, 47, 107, .06);
  --shadow-mock: 0 8px 24px rgba(10, 47, 107, .10);
  --shadow-lift: 0 6px 24px rgba(10, 47, 107, .08);
  --grad-hero: linear-gradient(160deg, #1e5cb8 0%, #2f74d6 45%, #4a90e8 100%);
  --grad-cta: linear-gradient(160deg, #0a2f6b 0%, #0b4ab0 60%, #0b5cd6 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}

img { max-width: 100%; height: auto; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

h1, h2, h3, p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

/* 折り返し位置の制御: セグメント内では優先的に改行しない */
.seg { display: inline-block; }

.text-red { color: var(--red); }
.text-blue { color: var(--blue); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

/* スクロールリビール: JS が有効なときだけ隠す */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .dash__pulse { animation: none; }
}

/* ==================== ボタン ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  font-weight: 900;
  text-align: center;
  border-radius: 999px;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255, 122, 26, .35);
}
.btn--primary:hover { background: var(--orange-dark); color: var(--white); }
.btn--outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn--outline:hover { background: var(--blue-tint); color: var(--blue-dark); }
.btn--white {
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--blue);
}
.btn--white:hover { background: var(--blue-tint); border-color: var(--blue-tint); color: var(--blue-dark); }
.btn--sm { font-size: 13px; padding: 8px 18px; white-space: nowrap; }
.btn--primary.btn--sm { padding: 10px 20px; }
.btn--lg { font-size: 17px; padding: 16px 40px; }
.btn--primary.btn--lg { padding: 18px 40px; box-shadow: 0 8px 24px rgba(255, 122, 26, .45); }
.btn--primary.btn--lg:hover { transform: translateY(-2px); }
.btn--hero {
  font-size: 17px;
  padding: 18px 36px;
  box-shadow: 0 8px 24px rgba(255, 122, 26, .45);
  line-height: 1.5;
}
.btn--hero:hover { transform: translateY(-2px); }

/* ==================== ヘッダー ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 40px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand__logo { width: auto; height: 52px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; min-width: 0; }
.brand__name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.4;
  white-space: nowrap;
}
.brand__tagline {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .04em;
  line-height: 1.4;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 12px;
}
.site-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--blue); }
.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

/* ==================== セクション共通 ==================== */
.section { padding: 80px 40px; }
.section__inner { max-width: 1000px; margin: 0 auto; }
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 48px;
}
.section-label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.4;
}
.section-title {
  font-size: clamp(21px, 4.2vw, 30px);
  font-weight: 900;
  line-height: 1.5;
  text-wrap: pretty;
}
.section-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  text-wrap: pretty;
}

.banner {
  margin-top: 44px;
  background: var(--blue-deep);
  color: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  line-height: 1.9;
  text-wrap: pretty;
}
.banner--center { text-align: center; margin-top: 36px; line-height: 2; }
.banner__em { color: var(--gold); font-weight: 900; }

.scroll-hint {
  display: none;
  margin: -28px 0 12px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: right;
}

/* ==================== ヒーロー ==================== */
.hero {
  background: var(--grad-hero);
  color: var(--white);
  padding: 72px 40px 88px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 48px;
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.hero__badge {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
.hero__title {
  font-size: clamp(26px, 5.6vw, 42px);
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.hero__lead {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .88);
  text-wrap: pretty;
}
.hero__em { color: var(--gold-strong); font-weight: 700; }
.hero__note {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  margin-top: 12px;
  line-height: 1.7;
}
.hero__visual { min-width: 0; }

/* ==================== UIモック 共通シェル ==================== */
.uiw {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-mock);
  overflow: hidden;
  color: var(--ink);
}
.uiw--hero {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(4, 20, 50, .45);
}
.uiw__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--line);
}
.uiw--hero .uiw__bar { padding: 10px 14px; }
.uiw__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.uiw--hero .uiw__dot { width: 10px; height: 10px; }
.uiw__dot--r { background: #ff5f57; }
.uiw__dot--y { background: #febc2e; }
.uiw__dot--g { background: #28c840; }
.uiw__bar-title {
  margin-left: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.6;
  min-width: 0;
}
.uiw--hero .uiw__bar-title { margin-left: 10px; font-size: 11px; }
.uiw__body { padding: 14px; }
.uiw--hero .uiw__body { padding: 16px 18px; }
.uiw__foot {
  margin-top: 8px;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}
.uiw__foot--ok { color: var(--green); font-weight: 900; }
.uiw__foot--info {
  margin-top: 10px;
  background: var(--blue-tint);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--blue);
  font-weight: 900;
}

/* 判定タグ */
.tag {
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  border-radius: 6px;
  padding: 3px 10px;
  line-height: 1.5;
  flex-shrink: 0;
  text-align: center;
}
.tag--hot { background: var(--red); }
.tag--med { background: var(--amber); }
.tag--cold { background: var(--slate); }
.tag--wide { width: 58px; padding: 3px 0; font-size: 10px; }
.tag--xs { font-size: 9px; border-radius: 5px; padding: 2px 8px; }
.tag--block { display: block; width: 100%; padding: 4px 0; }

/* ヒーロー: 営業優先度ダッシュボード */
.dash__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 12px;
}
.dash__title { font-size: 13px; font-weight: 900; }
.dash__live { font-size: 11px; color: var(--muted); }
.dash__pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.6s infinite;
}
.dash__list { display: flex; flex-direction: column; gap: 8px; }
.lead-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.lead-row--hot { border-color: var(--red-line); background: var(--red-tint-3); }
.lead-row--med { border-color: var(--amber-line); background: var(--amber-tint); }
.lead-row--cold { border-color: var(--line); background: var(--bg-cool); }
.lead-row__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.lead-row__name { font-size: 13px; font-weight: 700; line-height: 1.6; }
.lead-row__meta { font-size: 11px; color: var(--muted); line-height: 1.6; }
.lead-row__act { font-size: 11px; font-weight: 900; flex-shrink: 0; }
.lead-row__act--hot { color: var(--red); }
.lead-row__act--med { color: var(--amber); }
.lead-row__act--cold { color: var(--slate); }
.dash__stats { display: flex; gap: 8px; margin-top: 14px; }
.dash__stat {
  flex: 1;
  min-width: 0;
  background: var(--bg-tint);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.dash__stat-num {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.4;
}
.dash__stat-label { display: block; font-size: 10px; color: var(--muted); line-height: 1.6; }

/* ==================== 課題 ==================== */
.problems { background: var(--bg-soft); }
.problems__inner { max-width: 960px; text-align: center; }
.problems .section-title { margin-bottom: 40px; }
.problems__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}
.problem-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.problem-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.problem-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
}
.problem-card__title { font-size: 17px; font-weight: 900; line-height: 1.5; }
.problem-card__text { font-size: 14px; color: var(--ink-sub); line-height: 1.8; }

/* ==================== 導入の流れ ==================== */
.flow { background: var(--white); scroll-margin-top: 84px; }
.flow__steps { display: flex; flex-direction: column; }
.flow-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.flow-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}
.flow-step__body { min-width: 0; }
.actor {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.actor--you { color: var(--pink); background: var(--pink-tint); }
.actor--tool { color: var(--blue); background: var(--blue-tint); }
.actor--target { color: var(--green-deep); background: var(--green-tint); }
.flow-step__title { font-size: 19px; font-weight: 900; margin-bottom: 6px; line-height: 1.5; }
.flow-step__text { font-size: 14px; color: var(--ink-sub); line-height: 1.9; text-wrap: pretty; }
.flow-step__mock { justify-self: end; width: 100%; min-width: 0; }

/* mock1: リストアップロード */
.drop {
  border: 2px dashed var(--blue-line-2);
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  background: var(--bg-drop);
}
.drop__icon { display: block; font-size: 22px; line-height: 1.2; }
.drop__name { display: block; font-size: 12px; font-weight: 900; margin-top: 4px; line-height: 1.5; }
.drop__sub { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; line-height: 1.5; }

/* mock2: フォーム自動送信 */
.sendlist { display: flex; flex-direction: column; gap: 6px; }
.sendlist__row { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.sendlist__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--line);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}
.sendlist__check--done { background: var(--green); }
.sendlist__name { flex: 1; min-width: 0; font-weight: 700; }
.sendlist__url { color: var(--blue); font-size: 10px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; flex-shrink: 0; }

/* mock3: 資料ビューア */
.viewer {
  background: var(--bg-tint);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  gap: 8px;
}
.viewer__thumb {
  width: 74px;
  height: 52px;
  background: linear-gradient(135deg, #0b5cd6, #0a2f6b);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  flex-shrink: 0;
}
.viewer__meta { min-width: 0; }
.viewer__name { display: block; font-size: 11px; font-weight: 900; line-height: 1.5; }
.viewer__sub { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; line-height: 1.5; }
.viewer__track {
  display: block;
  margin-top: 6px;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  width: 100%;
  max-width: 140px;
  overflow: hidden;
}
.viewer__fill { display: block; width: 33%; height: 100%; background: var(--blue); border-radius: 999px; }

/* Slack通知カード (FEATURE 02 / mock4) */
.notify {
  display: flex;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(10, 47, 107, .06);
}
.notify--plain { border-radius: 12px; box-shadow: var(--shadow-mock); }
.notify__avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.notify--plain .notify__avatar { width: 32px; height: 32px; }
.notify__body { flex: 1; min-width: 0; }
.notify__head { display: block; font-size: 12px; line-height: 1.6; }
.notify__time { color: var(--slate); font-size: 11px; }
.notify__msg { display: block; font-size: 12px; margin-top: 4px; line-height: 1.7; }
.notify__sub { display: block; font-size: 12px; color: var(--muted); line-height: 1.7; }
.notify--plain .notify__head { font-size: 11px; }
.notify--plain .notify__time { font-size: 10px; }
.notify--plain .notify__msg { font-size: 11px; }
.notify--plain .notify__sub { font-size: 10px; margin-top: 2px; }

/* mock5: 優先度リスト */
.scorelist { display: flex; flex-direction: column; gap: 6px; }
.scorelist__row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
}
.scorelist__row--hot { background: var(--red-tint-2); }
.scorelist__row--med { background: var(--amber-tint); }
.scorelist__row--cold { background: var(--bg-cool); }
.scorelist__desc { font-size: 11px; color: var(--ink-sub); line-height: 1.6; min-width: 0; }

/* mock6: 本日のアクションリスト */
.actionlist { display: flex; flex-direction: column; gap: 6px; }
.actionlist__row {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11px;
}
.actionlist__row--hot { background: var(--red-tint-2); }
.actionlist__row--med { background: var(--amber-tint); }
.actionlist__name { flex: 1; min-width: 0; font-weight: 700; }
.actionlist__act { font-weight: 900; flex-shrink: 0; }
.actionlist__act--hot { color: var(--red); }
.actionlist__act--med { color: var(--amber); }

/* ==================== 機能 ==================== */
.features { background: var(--bg-soft); scroll-margin-top: 84px; }
.features__inner { max-width: 1060px; }
.features__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.feature-card__no {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.5;
}
.feature-card__title { font-size: 20px; font-weight: 900; margin-bottom: 10px; line-height: 1.5; }
.feature-card__text {
  font-size: 14px;
  color: var(--ink-sub);
  line-height: 1.9;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.features__punch {
  text-align: center;
  margin-top: 40px;
  font-size: clamp(16px, 2.8vw, 20px);
  font-weight: 900;
  line-height: 1.7;
  text-wrap: pretty;
}

/* FEATURE 01: Bot判定 */
.botlist {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.botlist__row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.botlist__mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.botlist__mark--ok { background: var(--green); }
.botlist__mark--ng { background: var(--slate-soft); }
.botlist__name { flex: 1; min-width: 0; font-weight: 700; }
.botlist__row--muted .botlist__name { color: var(--slate); }
.botlist__verdict { font-weight: 900; flex-shrink: 0; }
.botlist__verdict--ok { color: var(--green); }
.botlist__verdict--ng { color: var(--slate); }

/* FEATURE 03: ページ別閲覧 */
.pagestats {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pagestats__row { display: flex; align-items: center; gap: 10px; font-size: 11px; }
.pagestats__label { width: 84px; color: var(--ink-sub); font-weight: 700; flex-shrink: 0; white-space: nowrap; }
.pagestats__track {
  flex: 1;
  min-width: 0;
  height: 12px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.pagestats__fill { display: block; height: 100%; border-radius: 999px; }
.pagestats__fill--w45 { width: 45%; }
.pagestats__fill--w70 { width: 70%; }
.pagestats__fill--w95 { width: 95%; }
.pagestats__fill--w100 { width: 100%; }
.pagestats__fill--blue { background: var(--blue); }
.pagestats__fill--red { background: var(--red); }
.pagestats__fill--amber { background: var(--amber); }
.pagestats__time {
  width: 56px;
  text-align: right;
  font-weight: 900;
  color: var(--ink);
  flex-shrink: 0;
}
.pagestats__foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.pagestats__total { font-weight: 900; color: var(--ink); }

/* FEATURE 04: Hot / Medium / Cold */
.verdicts { display: flex; flex-direction: column; gap: 8px; }
.verdict {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-radius: 10px;
  padding: 10px 12px;
}
.verdict--hot { background: var(--red-tint-2); }
.verdict--med { background: var(--amber-tint); }
.verdict--cold { background: var(--bg-cool); }
.verdict__body { font-size: 11px; line-height: 1.6; min-width: 0; }
.verdict__act { font-weight: 900; }
.verdict__act--hot { color: var(--red); }
.verdict__act--med { color: var(--amber-dark); }
.verdict__act--cold { color: var(--muted); }

/* ==================== 比較 ==================== */
.comparison { background: var(--white); scroll-margin-top: 84px; }
.comparison__inner { max-width: 960px; }
.cmp-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
.cmp {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  table-layout: fixed;
}
.cmp thead th {
  background: var(--blue-deep);
  color: var(--white);
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}
.cmp__th-item { width: 31%; text-align: left; }
.cmp__th-old { width: 34.5%; text-align: center; background: rgba(255, 255, 255, .06); }
.cmp__th-new { width: 34.5%; text-align: center; }
.cmp thead .cmp__th-old { background-color: #12386f; }
.cmp thead .cmp__th-new { background-color: var(--blue); }
.cmp tbody th {
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  line-height: 1.6;
  border-top: 1px solid var(--line);
}
.cmp tbody td {
  padding: 13px 20px;
  font-size: 12px;
  text-align: center;
  line-height: 1.7;
  border-top: 1px solid var(--line);
}
.cmp__old { color: var(--muted); }
.cmp__new { background: var(--blue-tint-2); font-weight: 700; color: var(--ink); }
.cmp__mark { font-weight: 900; font-size: 14px; }
.cmp__mark--ink { color: var(--ink); }
.cmp__mark--amber { color: var(--amber); }
.cmp__mark--slate { color: var(--slate); }
.cmp__mark--blue { color: var(--blue); }

/* ==================== 料金プラン ==================== */
.pricing { background: var(--bg-soft); scroll-margin-top: 84px; }
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 13px 0 28px;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
}
.price-card--trial { border: 2px solid var(--blue); }
.price-card__badge {
  position: absolute;
  top: -13px;
  left: 24px;
  right: 24px;
  width: fit-content;
  max-width: calc(100% - 48px);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  padding: 4px 16px;
  line-height: 1.7;
}
.price-card__badge--ink { background: var(--ink); }
.price-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 6px;
  margin: 12px 0 4px;
}
.price-card__num { font-size: clamp(30px, 6vw, 38px); font-weight: 900; line-height: 1.3; }
.price-card__num--blue { color: var(--blue); }
.price-card__unit { font-size: 15px; font-weight: 700; }
.price-card__plus { font-size: 13px; color: var(--muted); }
.price-card__detail { font-size: 13px; color: var(--ink-sub); line-height: 2; }
.price-card__note {
  margin-top: 14px;
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink-sub);
}
.incl { background: var(--white); border-radius: 14px; padding: 30px; }
.incl__title { text-align: center; font-size: 18px; font-weight: 900; line-height: 1.5; }
.incl__sub { text-align: center; font-size: 13px; color: var(--muted); margin: 4px 0 18px; }
.incl__chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  background: var(--white);
  border: 1px solid var(--blue-line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  max-width: 100%;
}

/* ==================== ご利用イメージ ==================== */
.usage { background: var(--bg-soft); padding-top: 0; }
.usage__inner { max-width: 1060px; }
.usage__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.usage-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.usage-card__head {
  padding: 24px 26px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.usage-card__badge {
  display: inline-block;
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  padding: 5px 18px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.usage-card__tagline {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-sub);
  line-height: 1.7;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usage-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 4px;
  margin-top: 8px;
}
.usage-card__pre { font-size: 15px; font-weight: 700; color: var(--muted); }
.usage-card__num { font-size: clamp(28px, 5.6vw, 36px); font-weight: 900; color: var(--blue); line-height: 1.3; }
.usage-card__yen { font-size: 14px; font-weight: 700; }
.usage-card__breakdown { font-size: 11px; color: var(--slate); margin-top: 4px; line-height: 1.7; }
.usage-card__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-soft);
}
.usage-card__spec { padding: 14px; text-align: center; }
.usage-card__spec:first-child { border-right: 1px solid var(--line-soft); }
.usage-card__spec-label { display: block; font-size: 11px; color: var(--muted); margin-bottom: 2px; line-height: 1.6; }
.usage-card__spec-value { display: block; font-size: 15px; font-weight: 900; line-height: 1.6; }
.usage-card__foot { padding: 20px 26px 26px; flex: 1; }
.usage-card__reco-title {
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.6;
}
.usage-card__recos { display: flex; flex-direction: column; gap: 8px; }
.usage-card__recos li {
  display: flex;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-sub);
  line-height: 1.7;
}
.usage-card__check { color: var(--green); font-weight: 900; flex-shrink: 0; }

/* ==================== よくある質問 ==================== */
.faq { background: var(--white); scroll-margin-top: 84px; }
.faq__inner { max-width: 800px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.faq-item[open] { border-color: var(--blue-line-2); background: #fbfdff; }
.faq-item__q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  list-style: none;
  transition: background .2s;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { content: ""; }
.faq-item__q:hover { background: rgba(11, 92, 214, .03); }
.faq-item__q:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.faq-item__mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.faq-item__mark--a { background: var(--red-tint); color: var(--red); }
.faq-item__q .faq-item__text { flex: 1; min-width: 0; font-size: 15px; font-weight: 900; line-height: 1.7; }
.faq-item__chevron {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--blue-line);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a { display: flex; gap: 14px; padding: 0 24px 20px; }
.faq-item__a .faq-item__text {
  font-size: 14px;
  color: var(--ink-sub);
  line-height: 1.9;
  padding-top: 4px;
  min-width: 0;
  text-wrap: pretty;
}

/* ==================== 最終CTA ==================== */
.closing {
  background: var(--grad-cta);
  color: var(--white);
  padding: 88px 40px;
  text-align: center;
  scroll-margin-top: 84px;
}
.closing__inner { max-width: 760px; margin: 0 auto; }
.closing__title {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.closing__lead {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 36px;
  text-wrap: pretty;
}
.closing__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.closing__note { font-size: 12px; color: rgba(255, 255, 255, .7); margin-top: 18px; line-height: 1.7; }

/* ==================== フッター ==================== */
.site-footer {
  background: var(--blue-night);
  color: rgba(255, 255, 255, .6);
  padding: 24px 40px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__brand { display: flex; align-items: center; gap: 8px; }
.site-footer__logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--white);
  flex-shrink: 0;
}
.site-footer__name { font-weight: 700; color: var(--white); }
.site-footer__copy { font-size: 12px; }

/* ==================== レスポンシブ ==================== */
@media (max-width: 1060px) {
  .flow-step { grid-template-columns: 64px minmax(0, 1fr) 300px; }
}

@media (max-width: 960px) {
  .hero { padding: 60px 32px 72px; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .uiw--hero { max-width: 460px; margin: 0 auto; }
  .section { padding: 72px 32px; }
  .problems__cards { grid-template-columns: minmax(0, 1fr); }
  .features__cards { grid-template-columns: minmax(0, 1fr); }
  .pricing__cards { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .usage__cards { grid-template-columns: minmax(0, 1fr); }
  .usage-card { max-width: 460px; width: 100%; margin: 0 auto; }
  .usage-card__tagline { min-height: 0; }
  .flow-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px 16px;
    align-items: start;
    padding: 24px 0;
  }
  .flow-step__num { width: 48px; height: 48px; font-size: 20px; }
  .flow-step__mock { grid-column: 1 / -1; justify-self: stretch; max-width: 460px; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .site-header { grid-template-columns: minmax(0, 1fr) auto; }
}

@media (max-width: 720px) {
  .scroll-hint { display: block; }
}

@media (max-width: 640px) {
  .site-header { padding: 10px 16px; gap: 10px; }
  .brand { gap: 8px; }
  .brand__logo { height: 40px; }
  .brand__name { font-size: 16px; }
  .brand__tagline { display: none; }
  .site-header__actions .btn--outline { display: none; }
  .btn--sm { font-size: 12.5px; padding: 8px 14px; }
  .btn--primary.btn--sm { padding: 9px 16px; }

  .section { padding: 60px 18px; }
  .section-head { margin-bottom: 36px; }
  .hero { padding: 44px 18px 60px; }
  .hero__lead { font-size: 15px; }
  .btn--hero { font-size: 15px; padding: 16px 22px; width: 100%; }
  .uiw--hero { max-width: none; }

  .banner { padding: 22px 20px; margin-top: 32px; }
  .problem-card { padding: 22px 20px; }
  .feature-card { padding: 24px 20px; }
  .price-card { padding: 26px 20px; }
  .incl { padding: 24px 18px; }
  .usage-card__head { padding: 22px 20px 18px; }
  .usage-card__foot { padding: 18px 20px 24px; }
  .faq-item__q { padding: 16px 18px; gap: 10px; }
  .faq-item__a { padding: 0 18px 18px; gap: 10px; }
  .faq-item__q .faq-item__text { font-size: 14px; }

  .closing { padding: 64px 18px 72px; }
  .closing__lead { font-size: 15px; margin-bottom: 28px; }
  .closing__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn--lg { font-size: 16px; padding: 15px 20px; }
  .btn--primary.btn--lg { padding: 16px 20px; }

  .site-footer { padding: 20px 18px; justify-content: center; text-align: center; }

  .pc-only { display: none; }
}

/* 狭い画面: リスト行は「アクション」を右揃えで下段に落とす */
@media (max-width: 480px) {
  .lead-row { flex-wrap: wrap; row-gap: 2px; }
  .lead-row__body { flex: 1 1 100%; }
  .lead-row__act { width: 100%; text-align: right; }
  .botlist__row { flex-wrap: wrap; row-gap: 2px; }
  .botlist__name { flex: 1 1 auto; }
  .botlist__verdict { width: 100%; text-align: right; }
  .actionlist__row { flex-wrap: wrap; row-gap: 2px; }
  .actionlist__act { width: 100%; text-align: right; }
}

@media (max-width: 400px) {
  .flow-step { grid-template-columns: 44px minmax(0, 1fr); gap: 12px; }
  .flow-step__num { width: 40px; height: 40px; font-size: 17px; }
  .flow-step__title { font-size: 17px; }
  .pagestats__row { font-size: 10px; gap: 8px; }
  .pagestats__label { width: 74px; }
  .pagestats__time { width: 40px; }
  .lead-row { gap: 8px; padding: 9px 10px; }
  .uiw--hero .uiw__body { padding: 14px; }
  .verdict { grid-template-columns: 62px minmax(0, 1fr); gap: 8px; padding: 10px; }
  .tag--wide { width: 52px; }
  .sendlist__row { font-size: 10px; }
  .scorelist__row { padding: 8px 10px; gap: 8px; }
}
