/* ==========================================================
   RIPLINK Ads v2 — 「ビビッドブルー×データ」
   参照: ads/DESIGN.md（Coinbaseベース・承認済み）
   ========================================================== */

:root {
  --canvas: #ffffff;
  --soft: #f7f7f7;
  --tint-blue: #eef4ff;
  --ink: #0a0b0d;
  --body: #5b616e;
  --mute: #7c828a;
  --hairline: #dee1e6;
  --primary: #0052ff;
  --primary-active: #003ecc;
  --primary-soft: #e5edff;
  --dark: #0a0b0d;
  --dark-elevated: #16181c;
  --on-dark: #ffffff;
  --on-dark-soft: rgba(255, 255, 255, 0.62);
  --up: #00a662;
  --down: #0052ff;

  --font-jp: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Schibsted Grotesk", sans-serif;

  --r: 18px;
  --r-sm: 12px;
  --pill: 999px;
  --shadow: 0 14px 40px rgba(10, 11, 13, 0.1);
  --shadow-soft: 0 6px 20px rgba(10, 11, 13, 0.06);
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
/* 装飾要素（回転ティッカー・ブロブ等）の横はみ出しでモバイルの
   レイアウト幅が拡張されるのを防ぐ（実機のフォーム見切れの根本原因） */
html, body { overflow-x: hidden; overflow-x: clip; }

body {
  font-family: var(--font-jp);
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
em { font-style: normal; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
}

.pc { display: inline; }
.sp { display: none; }

::selection { background: var(--primary); color: #fff; }

/* ==========================================================
   カスタムカーソル
   ========================================================== */
.cursor { display: none; }

@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }

  .cursor__dot,
  .cursor__ring {
    position: fixed;
    top: 0; left: 0;
    z-index: 999;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-100px, -100px);
    mix-blend-mode: difference;
  }

  .cursor__dot { width: 8px; height: 8px; background: #fff; }

  .cursor__ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                background-color 0.3s;
  }

  .cursor--hover .cursor__ring {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.16);
  }
}

/* ==========================================================
   共通パーツ
   ========================================================== */
.eyebrow {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section { padding: clamp(84px, 10.5vw, 144px) 0; }
.section--soft { background: var(--soft); }

.section-head { margin-bottom: clamp(44px, 5.6vw, 68px); }

.section-title {
  text-wrap: balance; /* 1〜2文字だけの孤立折り返しを防ぐ */
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  max-width: 26em;
}

.section-lead {
  margin-top: 20px;
  color: var(--body);
  max-width: 42em;
  font-size: 15px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: var(--pill);
  padding: 17px 36px;
  will-change: transform;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.btn__arrow {
  font-family: var(--font-en);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 82, 255, 0.3);
}

.btn--primary:hover { background: var(--primary-active); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hairline);
}

.btn--ghost:hover { border-color: var(--ink); }

.btn--white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 26px rgba(0, 30, 90, 0.3);
}

.btn--sm { padding: 13px 26px; font-size: 14px; }

/* ==========================================================
   ヘッダー
   ========================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.header.is-scrolled { border-bottom-color: var(--hairline); }

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
  height: 74px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__brand { display: flex; align-items: center; gap: 10px; }

.header__logo { height: 19px; width: auto; }

.header__suffix {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.header__nav { display: flex; gap: 28px; margin-left: auto; }

.header__nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body);
  transition: color 0.25s;
}

.header__nav a:hover { color: var(--primary); }

.header__cta {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--pill);
  transition: background-color 0.3s;
  will-change: transform;
}

.header__cta:hover { background: var(--primary-active); }

/* ==========================================================
   ヒーロー
   ========================================================== */
.hero {
  position: relative;
  padding: clamp(130px, 15vw, 180px) 0 clamp(60px, 7vw, 100px);
  overflow: hidden;
}

/* 方眼紙グリッド + ブルーの淡いラジアル */
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 11, 13, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 11, 13, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 70% at 72% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 72% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero__grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 78% 32%, rgba(0, 82, 255, 0.08), transparent 68%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--body);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.hero__eyebrow-badge {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  border-radius: var(--pill);
  padding: 6px 14px;
  white-space: nowrap;
}

.hero__title {
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.01em;
}

.hero__title span { display: block; }

.hero__title em { color: var(--primary); }

.hero__lead {
  margin-top: clamp(22px, 3vw, 32px);
  color: var(--body);
  font-size: clamp(15px, 1.6vw, 16.5px);
  max-width: 34em;
}

.hero__lead strong { color: var(--ink); font-weight: 700; }

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: clamp(28px, 3.6vw, 40px);
  flex-wrap: wrap;
}

.hero__media-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 3.6vw, 40px);
}

.hero__media-list li {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--body);
  border: 1px solid var(--hairline);
  background: #fff;
  border-radius: var(--pill);
  padding: 7px 16px;
}

/* ==========================================================
   広告レポートダッシュボードモック
   ========================================================== */
.hero__dash { position: relative; will-change: transform; }

.dash {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 0 0 18px;
  overflow: hidden;
}

.dash__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  background: var(--soft);
}

.dash__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d3d7dd;
}

.dash__url {
  flex: 1;
  height: 10px;
  margin-left: 8px;
  border-radius: 5px;
  background: #e8ebef;
  max-width: 46%;
}

.dash__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px 4px;
}

.dash__title { width: 34%; height: 11px; border-radius: 6px; background: var(--ink); }

.dash__period {
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--body);
  border: 1px solid var(--hairline);
  border-radius: var(--pill);
  padding: 3px 10px;
}

.dash__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 18px 4px;
}

.kpi {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 10px 12px 8px;
  will-change: transform;
}

.kpi__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mute);
}

.kpi__trend {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
}

.kpi__trend--up { color: var(--up); }
.kpi__trend--down { color: var(--primary); }

.kpi__spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  margin-top: 4px;
}

.kpi__spark i {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 2px 2px 0 0;
  background: var(--primary-soft);
  transform-origin: bottom;
}

.kpi__spark i:last-child { background: var(--primary); }

.dash__chart {
  margin: 12px 18px 4px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
}

.dash__chart svg { width: 100%; height: 96px; }

.dash__line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dash__line--soft {
  stroke: var(--primary-soft);
  stroke-width: 3;
}

.dash__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 18px 0;
}

.dash__row { display: flex; align-items: center; gap: 10px; }

.dash__glyph {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--tint-blue);
  color: var(--primary);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dash__row-bar {
  height: 8px;
  width: var(--w, 50%);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), #4d86ff);
  transform-origin: left;
}

/* フロートチップ */
.float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: var(--pill);
  box-shadow: var(--shadow-soft);
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  will-change: transform;
}

.float--a { top: -22px; right: 8%; }
.float--b { bottom: 18%; left: -34px; }
.float--c { bottom: -18px; right: 14%; }

.float__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}

.float__dot--up { background: var(--up); }

.float__arrow {
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--up);
  font-size: 15px;
}

/* ==========================================================
   媒体マーキー
   ========================================================== */
.ticker {
  background: var(--primary);
  overflow: hidden;
  padding: 15px 0;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  will-change: transform;
}

.ticker__track span {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
}

.ticker__track i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

/* ==========================================================
   課題
   ========================================================== */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.problem {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  padding: 28px 26px 24px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
}

.problem:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0, 82, 255, 0.35);
}

.problem__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 12px;
}

.problem__title {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 8px;
}

.problem__desc { font-size: 14px; color: var(--body); }

/* ==========================================================
   対応媒体
   ========================================================== */
.media__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-card {
  background: #fff;
  border-radius: var(--r);
  padding: clamp(26px, 3vw, 34px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.media-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
}

.media-card__glyph {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 22px;
  display: grid;
  place-items: center;
}

.media-card__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
}

.media-card__bars i {
  width: 9px;
  height: var(--h, 50%);
  border-radius: 3px 3px 0 0;
  background: var(--primary-soft);
  transform-origin: bottom;
}

.media-card__bars i:last-child { background: var(--primary); }

.media-card__name {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
}

.media-card__desc { font-size: 14px; color: var(--body); }

.media-card--cta {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.media-card--cta .media-card__name { font-size: 19px; line-height: 1.7; }

/* ==========================================================
   隔週レポート（pin + scrub / ダーク帯）
   ========================================================== */
.report {
  background: var(--dark);
  color: var(--on-dark);
}

.report__pin {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}

.report__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  width: 100%;
}

.report .eyebrow { color: #6d9bff; }
.report .section-title { color: #fff; }
.report .section-lead { color: var(--on-dark-soft); }

.report__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.5em;
  color: #6d9bff;
  letter-spacing: -0.02em;
}

.report__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rep-card {
  position: relative;
  background: var(--dark-elevated);
  border: 1px solid #262a31;
  border-radius: var(--r);
  padding: clamp(24px, 3vw, 34px);
  padding-right: 130px;
  will-change: transform;
}

.rep-card__step {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #6d9bff;
  margin-bottom: 10px;
}

.rep-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rep-card__desc { font-size: 14px; color: var(--on-dark-soft); }

/* レポートカードのミニ図版 */
.rep-card__viz {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 84px;
  height: 52px;
}

.rep-card__viz--spark {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.rep-card__viz--spark i {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 2px 2px 0 0;
  background: rgba(109, 155, 255, 0.35);
  transform-origin: bottom;
}

.rep-card__viz--spark i:last-child { background: #6d9bff; }

.rep-card__viz--donut { display: grid; place-items: center; }

.rep-card__viz--donut span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: conic-gradient(#6d9bff 0 62%, rgba(109, 155, 255, 0.22) 62% 100%);
  mask: radial-gradient(circle 17px, transparent 96%, #000 100%);
  -webkit-mask: radial-gradient(circle 17px, transparent 96%, #000 100%);
}

.rep-card__viz--arrow svg { width: 100%; height: 100%; overflow: visible; }

.rep-card__viz--arrow polyline {
  fill: none;
  stroke: #6d9bff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================
   強み
   ========================================================== */
.strengths { display: flex; flex-direction: column; }

.strength {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(30px, 4vw, 44px) 8px;
  border-top: 1px solid var(--hairline);
}

.strength:last-child { border-bottom: 1px solid var(--hairline); }

.strength__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  line-height: 1;
}

.strength__title {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 900;
  margin-bottom: 10px;
}

.strength__desc {
  font-size: 14.5px;
  color: var(--body);
  max-width: 44em;
}

/* ==========================================================
   流れ
   ========================================================== */
.flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.flow__step {
  background: #fff;
  border-radius: var(--r);
  padding: 24px 20px;
}

.flow__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
}

.flow__title { font-size: 16.5px; font-weight: 900; margin-bottom: 8px; }
.flow__desc { font-size: 13px; color: var(--body); line-height: 1.9; }

/* ==========================================================
   料金
   ========================================================== */
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(36px, 5vw, 72px);
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: clamp(30px, 5vw, 64px);
  align-items: start;
}

.pricing__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.55;
  margin-bottom: 18px;
}

.pricing__lead { font-size: 14.5px; color: var(--body); margin-bottom: 28px; }

.pricing__right {
  background: var(--tint-blue);
  border-radius: var(--r);
  padding: clamp(24px, 3vw, 36px);
}

.pricing__inc-title { font-size: 15px; font-weight: 900; margin-bottom: 14px; }

.pricing__list { list-style: none; margin-bottom: 18px; }

.pricing__list li {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0 6px 26px;
}

.pricing__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 13px;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--primary);
  border-bottom: 2.5px solid var(--primary);
  transform: rotate(-45deg);
}

.pricing__note { font-size: 12px; color: var(--body); line-height: 1.9; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq__list { max-width: 840px; }

.faq {
  background: #fff;
  border-radius: var(--r-sm);
  margin-bottom: 12px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 60px 20px 22px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
}

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

.faq summary::before {
  content: "Q";
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--primary);
  font-size: 17px;
  flex-shrink: 0;
}

.faq__icon {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__icon::before { left: 0; right: 0; top: 6px; height: 2px; }
.faq__icon::after { top: 0; bottom: 0; left: 6px; width: 2px; }

.faq[open] .faq__icon::after { transform: scaleY(0); }

.faq p {
  padding: 0 22px 22px 55px;
  font-size: 14px;
  color: var(--body);
}

/* ==========================================================
   CTA帯（ブルー + 上昇バー装飾）
   ========================================================== */
.ctaband {
  position: relative;
  background: var(--primary);
  color: #fff;
  padding: clamp(80px, 11vw, 150px) 0;
  text-align: center;
  overflow: hidden;
}

.ctaband__bars {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: min(1100px, 96vw);
  height: 40%;
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 2vw, 26px);
  opacity: 0.16;
  pointer-events: none;
}

.ctaband__bars i {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 6px 6px 0 0;
  background: #fff;
  transform-origin: bottom;
}

.ctaband__inner { position: relative; }

.ctaband__title {
  font-size: clamp(34px, 5.6vw, 64px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
}

.ctaband__lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: clamp(30px, 4vw, 44px);
}

/* ==========================================================
   フォーム
   ========================================================== */
.form {
  max-width: 740px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 4.4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.form-field { display: flex; flex-direction: column; gap: 9px; border: 0; }

.form-field label, .form-field legend { font-size: 13px; font-weight: 700; }

.req, .opt {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: 1px;
}

.req { background: var(--primary); color: #fff; }
.opt { background: var(--hairline); color: var(--body); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--ink);
  background: var(--soft);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237c828a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.14);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-radios { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

.radio { cursor: pointer; }
/* 完全に描画不能な隠し方（width:100%共通ルールの巻き添えで740px幅の
   バーになり、クリック時に一瞬チラつくバグの修正 2026-07-10） */
.radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip-path: inset(50%);
  overflow: hidden;
  opacity: 0;
  appearance: none;
}

.radio span {
  display: inline-block;
  border: 1.5px solid var(--hairline);
  border-radius: var(--pill);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--body);
  transition: all 0.25s;
}

.radio input:checked + span {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

.radio input:focus-visible + span { border-color: var(--primary); }

.form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.form-consent input { width: 18px; height: 18px; accent-color: var(--primary); }
.form-consent a { color: var(--primary); text-decoration: underline; }

.btn--submit { align-self: flex-start; border: 0; cursor: pointer; font-family: var(--font-jp); }

.form-note { font-size: 13px; color: var(--primary-active); min-height: 1.4em; }

/* ==========================================================
   フッター
   ========================================================== */
.footer {
  background: var(--dark);
  color: #fff;
  padding: clamp(44px, 6vw, 72px) 0 30px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand img { height: 18px; width: auto; }

.footer__brand span {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  color: #6d9bff;
}

.footer__by { margin-top: 10px; font-size: 13px; color: var(--on-dark-soft); }
.footer__by a { text-decoration: underline; }

.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }

.footer__links a {
  font-size: 13px;
  color: var(--on-dark-soft);
  transition: color 0.25s;
}

.footer__links a:hover { color: #6d9bff; }

.footer__copy {
  text-align: center;
  font-family: var(--font-en);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 44px;
}

/* ==========================================================
   モバイル固定CTA
   ========================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 90;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 17px;
  border-radius: var(--pill);
  box-shadow: 0 10px 28px rgba(0, 82, 255, 0.4);
}

/* ==========================================================
   レスポンシブ
   ========================================================== */
@media (max-width: 1023px) {
  .flow { grid-template-columns: repeat(2, 1fr); }
  .problems__grid, .media__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__dash { max-width: 520px; margin: 0 auto; }
  .float--b { left: -8px; }
}

@media (max-width: 860px) {
  .report__grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .rep-card { padding-right: clamp(24px, 3vw, 34px); }
  .rep-card__viz { position: static; margin-bottom: 14px; }
}

@media (max-width: 768px) {
  .pc { display: none; }
  .sp { display: inline; }
  .header__nav { display: none; }
  .header__cta { margin-left: auto; }
  .problems__grid, .media__grid, .form-row, .flow { grid-template-columns: minmax(0, 1fr); }
  .strength { grid-template-columns: 1fr; gap: 10px; }
  .strength__title { text-wrap: balance; }
  .btn { width: 100%; justify-content: center; }
  .btn--submit { width: 100%; }
  .mobile-cta { display: block; }
  body { padding-bottom: 78px; }
  .report__pin { min-height: auto; }
  .float { display: none; }
}

/* ==========================================================
   reduced motion
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .cursor { display: none !important; }
}
