/* ミコミダケサーチ LP */

:root {
  /* ink */
  --ink: #0e1a2f;
  --ink-strong: #26364f;
  --ink-body: #3a4a63;
  --ink-sub: #41506a;
  --ink-muted: #5a6a84;
  --ink-faint: #7a869c;

  /* brand */
  --blue: #1a5df0;
  --blue-hover: #1146c0;
  --blue-bright: #3b78ff;
  --blue-deep: #1a4bb0;
  --cyan: #13b6c9;
  --cyan-light: #3ee6d0;
  --sky: #5fa2ff;

  /* status */
  --green: #3ee6a0;
  --green-dot: #12c47e;
  --green-text: #0a9d63;
  --green-bg: #e4f8ee;
  --orange: #d9711a;
  --orange-bg: #fff2e8;
  --red: #e0524d;
  --red-bg: #fdecec;

  /* navy */
  --navy-900: #0a1730;
  --navy-800: #0c1a33;
  --navy-700: #0e1d38;
  --navy-600: #122a52;
  --navy-cta: #12294d;
  --navy-hero-end: #0e2038;
  --navy-footer: #0a1424;

  /* dark-on-navy text */
  --on-navy: #dbe6f7;
  --on-navy-sub: #c6d3ea;
  --on-navy-muted: #a9bad6;
  --on-navy-faint: #9db4d8;
  --on-navy-dim: #7f92b3;

  /* surfaces */
  --white: #ffffff;
  --surface-1: #f7f9fd;
  --surface-2: #f5f8fd;
  --surface-3: #f4f8fd;
  --surface-4: #eef4fc;
  --surface-5: #f4f8ff;
  --surface-tint: #eef3fd;
  --surface-shot: #eef3fa;
  --surface-check: #e7f0ff;
  --surface-old: #f8f9fb;
  --surface-skeleton: #f1f5fb;

  /* lines */
  --line-header: #e9edf5;
  --line: #e7edf6;
  --line-soft: #eaeff7;
  --line-shot: #e0e8f4;
  --line-thumb: #dbe6f5;
  --line-pill: #d3e0f5;
  --line-dashed: #b9cdf0;
  --line-step: #c9d8f0;
  --line-old: #e8ebf0;
  --line-faq: #eef2f8;

  /* gradients */
  --grad-brand: linear-gradient(135deg, #1a5df0, #13b6c9);
  --grad-text: linear-gradient(120deg, #5fa2ff, #3ee6d0);
  --grad-dark: linear-gradient(160deg, #122a52, #0e1d38);
  --grad-soft: linear-gradient(180deg, #f4f8fd, #eef4fc);

  --font-body: 'Noto Sans JP', sans-serif;
  --font-display: 'Zen Kaku Gothic New', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.85;
  overflow-x: hidden;
}

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

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

h1, h2 { margin: 0; }
p { margin: 0; }

/* ============ ボタン ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  font-weight: 800;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn__arrow { font-size: 18px; line-height: 1; }

.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-hover); color: var(--white); }

.btn--outline {
  color: var(--blue);
  border: 1px solid var(--blue);
  background: transparent;
}
.btn--outline:hover { background: var(--surface-tint); color: var(--blue); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--white {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.btn--white:hover { background: #eaf1fb; color: var(--ink); }

.btn--header { padding: 10px 20px; border-radius: 10px; font-size: 14px; }
.btn--outline.btn--header { padding: 9px 18px; }
.btn--hero { padding: 16px 30px; font-size: 16px; }
.btn--primary.btn--hero { box-shadow: 0 12px 30px rgba(26, 93, 240, 0.4); }
.btn--primary.btn--hero:hover { background: var(--blue-bright); }
.btn--ghost.btn--hero { padding: 16px 28px; }
.btn--block { display: flex; width: 100%; padding: 16px; font-size: 16px; }
.btn--cta { padding: 18px 40px; border-radius: 14px; font-size: 17px; font-weight: 900; }
.btn--cta .btn__arrow { font-size: 19px; }

/* ============ ヘッダー ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-header);
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand__logo { display: block; width: 160px; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-left: auto;
}
.site-nav__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-body);
}
.site-nav__link:hover { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ============ SECTION 01 — HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(19, 182, 201, 0.18), transparent),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-600) 60%, var(--navy-hero-end) 100%);
}
.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) 24px clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(62, 230, 160, 0.2);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero__title-em {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--on-navy-muted);
  margin-bottom: 34px;
  max-width: 520px;
}
.hero__lead strong { color: var(--white); font-weight: 700; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero__visual { position: relative; min-width: 0; }
.hero__glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 40%, rgba(62, 230, 208, 0.18), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__wave { display: block; width: 100%; height: 44px; }

/* 製品モック */
.mockup {
  position: relative;
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(3, 12, 30, 0.5);
  overflow: hidden;
  animation: floaty 6s ease-in-out infinite;
}
.mockup__head {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mockup__title { font-weight: 800; font-size: 14px; }
.mockup__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--green-text);
  background: var(--green-bg);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.mockup__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-dot);
  animation: pulseNew 1.8s infinite;
}
.mockup__body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

.lead-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.lead-card__flag {
  position: absolute;
  top: -9px;
  left: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
}
.lead-card__main { min-width: 0; }
.lead-card__name { font-weight: 800; font-size: 15px; margin-bottom: 6px; }
.lead-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 9px; }
.tag { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.tag--blue { background: var(--surface-tint); color: var(--blue); }
.tag--orange { background: var(--orange-bg); color: var(--orange); }
.lead-card__note { font-size: 12px; color: var(--ink-muted); line-height: 1.6; }
.lead-card__score { flex-shrink: 0; text-align: center; }
.score {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score--primary { background: var(--grad-brand); color: var(--white); }
.score--soft { background: var(--surface-tint); color: var(--blue); }
.score__num { font-family: var(--font-display); font-size: 22px; font-weight: 900; line-height: 1; }
.score__unit { font-size: 9px; }
.score--primary .score__unit { opacity: .85; }
.score--soft .score__unit { opacity: .75; }

.lead-card--skeleton { align-items: center; gap: 12px; padding: 13px 15px; opacity: .7; }
.skeleton__thumb { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-skeleton); flex-shrink: 0; }
.skeleton__lines { flex: 1; }
.skeleton__line { border-radius: 5px; }
.skeleton__line--a { height: 9px; width: 60%; background: var(--line); margin-bottom: 8px; }
.skeleton__line--b { height: 8px; width: 85%; background: var(--line-faq); }

/* ============ セクション共通 ============ */
.section {
  padding: clamp(56px, 7vw, 104px) 24px;
  scroll-margin-top: 80px;
  background: var(--white);
}
.section--soft { background: var(--grad-soft); }
.section--dark { background: var(--navy-800); color: var(--white); }

.section__inner { margin: 0 auto; }
.section__inner--800 { max-width: 800px; }
.section__inner--820 { max-width: 820px; }
.section__inner--900 { max-width: 900px; }
.section__inner--1000 { max-width: 1000px; }
.section__inner--1080 { max-width: 1080px; }
.section__inner--center { text-align: center; }

.section-head { text-align: center; margin-bottom: 52px; }
.section-head--tight { margin-bottom: 44px; }
.section-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-eyebrow--light { color: var(--sky); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.4;
}
.section-title--sm { font-size: clamp(23px, 3vw, 36px); }
.section-title--xs { font-size: clamp(22px, 2.9vw, 34px); line-height: 1.5; }
.section-title--light { color: var(--white); }
.section-title__em { color: var(--blue); }
.section-lead {
  color: var(--ink-muted);
  font-size: 15px;
  max-width: 660px;
  margin: 16px auto 0;
}
.section-lead--light { color: var(--on-navy-muted); }
.section-note {
  text-align: center;
  margin-top: 30px;
  font-size: 12.5px;
  color: var(--ink-faint);
}
.section-note--dark { color: var(--on-navy-dim); }
.section-note--narrow { max-width: 680px; margin-left: auto; margin-right: auto; }

.ico-check { flex-shrink: 0; }

/* ============ SECTION 02 — 課題 ============ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.problem-card {
  background: var(--surface-1);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 26px 24px;
}
.problem-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--red-bg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 16px;
}
.problem-card__title { font-weight: 800; font-size: 16px; margin-bottom: 10px; line-height: 1.5; }
.problem-card__body { font-size: 13.5px; color: var(--ink-muted); line-height: 1.75; }
.problem-closing {
  text-align: center;
  margin-top: 44px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.3vw, 26px);
  font-weight: 900;
  line-height: 1.6;
}
.problem-closing__em { color: var(--blue); }

/* ============ SECTION 03 — とは ============ */
.point-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
}
.point-card {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 4px 20px rgba(18, 40, 80, 0.06);
}
.point-card__key { color: var(--blue); font-weight: 900; font-size: 15px; margin-bottom: 8px; }
.point-card__value { font-size: 14px; color: var(--ink-sub); line-height: 1.7; }

.about__shot {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(18, 40, 80, 0.16);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-shot);
  background: var(--surface-shot);
}
.about__shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__note { margin-top: 34px; font-size: 14px; color: var(--ink-muted); }
.about__note strong { color: var(--ink); }

/* ============ SECTION 04 — 検索条件 ============ */
.target-list { display: flex; flex-direction: column; gap: 22px; }
.target-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(18, 40, 80, 0.05);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.target-card__head {
  padding: 30px 28px;
  background: var(--grad-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.target-card__no {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #7fb0ff;
  margin-bottom: 12px;
}
.target-card__title {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 900;
  line-height: 1.5;
}
.target-card__body { padding: 26px 28px; background: var(--white); }
.target-card__label { font-size: 12px; font-weight: 800; color: var(--blue); margin-bottom: 14px; }
.logic-list { display: flex; flex-direction: column; gap: 11px; }
.logic-item { display: flex; gap: 10px; align-items: flex-start; }
.logic-item .ico-check { margin-top: 3px; }
.logic-item span { font-size: 13.5px; color: var(--ink-body); line-height: 1.6; }

.custom-box {
  margin-top: 44px;
  background: var(--surface-3);
  border: 1px dashed var(--line-dashed);
  border-radius: 18px;
  padding: 34px 30px;
  text-align: center;
}
.custom-box__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  margin-bottom: 12px;
}
.custom-box__lead { font-size: 14px; color: var(--ink-muted); margin-bottom: 20px; }
.pill-list { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.pill {
  background: var(--white);
  border: 1px solid var(--line-pill);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
}

/* ============ SECTION 05 — 解析する情報 ============ */
.section-head + .diagram { margin-top: -4px; }
.diagram {
  margin: 0 auto 34px;
  max-width: 880px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 21 / 9;
  background: var(--navy-800);
}
.diagram__svg { display: block; }
.diagram__src,
.diagram__core-title,
.diagram__core-sub,
.diagram__res-name,
.diagram__res-label,
.diagram__res-score { font-family: var(--font-body); }
.diagram__src { font-size: 11px; font-weight: 600; fill: var(--on-navy); text-anchor: start; }
.diagram__core-title { font-size: 20px; font-weight: 900; fill: #fff; text-anchor: middle; }
.diagram__core-sub { font-size: 11px; font-weight: 700; fill: #e6fbff; text-anchor: middle; }
.diagram__res-name { font-size: 12px; font-weight: 800; fill: #fff; text-anchor: start; }
.diagram__res-label { font-size: 10px; font-weight: 600; fill: var(--on-navy-faint); text-anchor: start; }
.diagram__res-score { font-size: 11px; font-weight: 800; fill: #fff; text-anchor: middle; }

.diagram__flow {
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 5 13;
  animation: mkFlow 1.4s linear infinite;
}
.diagram__flow--in { stroke: var(--sky); }
.diagram__flow--out { stroke: var(--cyan-light); }
.diagram__flow--d1 { animation-delay: 0s; }
.diagram__flow--d2 { animation-delay: .12s; }
.diagram__flow--d3 { animation-delay: .24s; }
.diagram__flow--d4 { animation-delay: .36s; }
.diagram__flow--d5 { animation-delay: .3s; }
.diagram__flow--d6 { animation-delay: .42s; }
.diagram__flow--d7 { animation-delay: .54s; }

.diagram__ping {
  transform-box: fill-box;
  transform-origin: center;
  animation: mkPing 2s ease-out infinite;
}
.diagram__core {
  transform-box: fill-box;
  transform-origin: center;
  animation: mkBeat 2s ease-in-out infinite;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.source-chip {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--on-navy);
}
.source-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-text);
  flex-shrink: 0;
}

/* ============ SECTION 06 — 価値 ============ */
.value-grid { display: flex; flex-direction: column; gap: 18px; }
.value-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.value-card {
  flex: 1 1 300px;
  width: 320px;
  max-width: 340px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(18, 40, 80, 0.04);
  display: flex;
  flex-direction: column;
}
.value-card__thumb {
  aspect-ratio: 16 / 9;
  background: var(--surface-shot);
  border-bottom: 1px solid var(--line);
}
.value-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.value-card__body { padding: 24px 24px 26px; flex: 1; }
.value-card__no {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 16px;
}
.value-card__title { font-weight: 800; font-size: 17px; margin-bottom: 12px; line-height: 1.5; }
.value-card__text { font-size: 13.5px; color: var(--ink-muted); line-height: 1.8; }

/* ============ SECTION 07 — 流れ ============ */
.step-list { display: flex; flex-direction: column; }
.step { display: flex; gap: 22px; align-items: flex-start; flex-wrap: wrap; }
.step__rail { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; align-self: stretch; }
.step__no {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(26, 93, 240, 0.16);
  flex-shrink: 0;
}
.step__line { width: 2px; flex: 1; min-height: 26px; background: var(--line-step); }
.step--last .step__line { display: none; }
.step__body { padding-bottom: 30px; flex: 1 1 280px; min-width: 220px; }
.step__title { font-weight: 800; font-size: 17px; margin-bottom: 8px; padding-top: 11px; }
.step__text { font-size: 14px; color: var(--ink-muted); line-height: 1.8; }
.step__thumb {
  flex: 0 0 220px;
  max-width: 260px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-thumb);
  margin-bottom: 30px;
}
.step__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ SECTION 09 — 違い ============ */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.compare-card { border-radius: 18px; padding: 30px 28px; }
.compare-card--old { border: 1px solid var(--line); background: var(--surface-old); }
.compare-card--new {
  border: 2px solid var(--blue);
  background: linear-gradient(180deg, var(--surface-5), var(--white));
  box-shadow: 0 14px 40px rgba(26, 93, 240, 0.14);
}
.compare-card__head {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-card--old .compare-card__head { color: #8a94a6; }
.compare-card--new .compare-card__head { color: var(--blue); }
.compare-card__icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--line-old);
  color: #8a94a6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.compare-list { display: flex; flex-direction: column; gap: 13px; }
.compare-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.6; }
.compare-card--old .compare-item { color: #6a7488; }
.compare-card--new .compare-item { color: var(--ink-strong); font-weight: 500; }
.compare-item__x { color: #b6bccb; font-weight: 900; flex-shrink: 0; }
.compare-item .ico-check { margin-top: 2px; }

/* ============ SECTION 10 — おすすめ ============ */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}
.recommend-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 3px 14px rgba(18, 40, 80, 0.05);
  font-size: 14px;
  color: var(--ink-strong);
  line-height: 1.6;
}
.recommend-item .ico-check { margin-top: 1px; }

/* ============ SECTION 11 — 料金 ============ */
.pricing-box {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(18, 40, 80, 0.1);
}
.pricing-box__head {
  background: var(--grad-dark);
  color: var(--white);
  padding: clamp(34px, 5vw, 50px) clamp(28px, 4vw, 44px);
  text-align: center;
}
.pricing__label { font-size: 13px; color: var(--on-navy-faint); font-weight: 700; margin-bottom: 8px; }
.pricing__amount { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 6px; }
.pricing__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 68px);
  font-weight: 900;
  line-height: 1;
}
.pricing__yen { font-size: 20px; font-weight: 700; }
.pricing__quota { font-size: 14px; color: var(--on-navy-sub); }
.pricing__quota strong { color: var(--white); }
.pricing__extra {
  display: inline-block;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
}
.pricing__extra strong { color: var(--cyan-light); }
.pricing-box__body { padding: clamp(28px, 4vw, 40px); }
.pricing__features-title { font-size: 13px; font-weight: 800; color: var(--blue); margin-bottom: 18px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}
.feature-item { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--ink-strong); }

/* ============ SECTION 12 — FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item__q {
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__mark {
  font-family: var(--font-display);
  color: var(--blue);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.5;
}
.faq-item__text { font-weight: 700; font-size: 15.5px; color: var(--ink); line-height: 1.6; flex: 1; }
.faq-item__toggle {
  flex-shrink: 0;
  color: var(--blue);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  margin-top: 4px;
  transition: transform .25s;
}
.faq-item[open] .faq-item__toggle { transform: rotate(45deg); }
.faq-item__a {
  margin: 0 24px 24px 60px;
  padding-top: 18px;
  border-top: 1px solid var(--line-faq);
  font-size: 14px;
  color: #4a5a74;
  line-height: 1.85;
}

/* ============ SECTION 13 — CTA ============ */
.cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: clamp(64px, 8vw, 120px) 24px;
  scroll-margin-top: 80px;
  background:
    radial-gradient(900px 500px at 20% 120%, rgba(19, 182, 201, 0.22), transparent),
    linear-gradient(160deg, var(--navy-900), var(--navy-cta));
}
.cta__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
}
.cta__em {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta__text { font-size: 16px; color: var(--on-navy-sub); margin-bottom: 12px; }
.cta__text--last { margin-bottom: 34px; }

/* ============ フッター ============ */
.site-footer {
  background: var(--navy-footer);
  color: var(--on-navy-dim);
  padding: 34px 24px;
  text-align: center;
  font-size: 12.5px;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--white);
}
.site-footer__logo { width: 28px; height: auto; display: block; }
.site-footer__name { font-family: var(--font-display); font-weight: 800; font-size: 15px; }

/* ============ アニメーション ============ */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulseNew { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
@keyframes mkFlow { to { stroke-dashoffset: -36; } }
@keyframes mkBeat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.08); } 40% { transform: scale(1); } 55% { transform: scale(1.04); } }
@keyframes mkPing { 0% { transform: scale(0.8); opacity: .55; } 100% { transform: scale(1.5); opacity: 0; } }

/* スクロール表示（main.js が .reveal を付与。JS 無効時は素の表示のまま） */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s cubic-bezier(.16, .8, .3, 1), transform .75s cubic-bezier(.16, .8, .3, 1);
}
.reveal:nth-child(2) { transition-delay: 110ms; }
.reveal:nth-child(3) { transition-delay: 220ms; }
.reveal:nth-child(4) { transition-delay: 330ms; }
.reveal:nth-child(5) { transition-delay: 440ms; }
.reveal:nth-child(6) { transition-delay: 550ms; }
.reveal:nth-child(7) { transition-delay: 660ms; }
.reveal:nth-child(8) { transition-delay: 770ms; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mk-diagram *,
  .mockup,
  .mockup__live-dot { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ レスポンシブ ============ */
@media (max-width: 960px) {
  .value-card { max-width: none; }
  .step__thumb { flex-basis: 180px; }
  .site-nav { gap: 20px; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 720px) {
  .step { gap: 16px; }
  .step__thumb { order: 3; flex: 1 1 100%; max-width: 100%; margin-left: 74px; }
  .step__body { padding-bottom: 16px; }
  .target-card__head { padding: 24px 22px; }
  .target-card__body { padding: 22px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .hero__inner { padding: 48px 20px 60px; }
  .cta { padding: 64px 20px; }
  .site-header__inner { padding: 10px 16px; gap: 10px; }
  .brand__logo { width: 132px; }
  .btn--header { padding: 9px 14px; font-size: 13px; }
  .btn--outline.btn--header { display: none; }
  .btn--hero { width: 100%; }
  .hero__actions { width: 100%; }
  .problem-card, .compare-card { padding: 22px 20px; }
  .custom-box { padding: 26px 20px; }
  .pricing-box__body { padding: 24px 20px; }
  .faq-item__q { padding: 18px 18px; gap: 10px; }
  .faq-item__a { margin: 0 18px 20px 44px; }
  .step__thumb { margin-left: 0; }
}
