:root {
  --navy: #0e1a38;
  --yellow: #ffc629;
  --cream: #f6f3ea;
  /* クリームと白の間の中間トーン（ウォームグレー） */
  --warm: #e9e4d8;
  --white: #ffffff;
  --ink-muted: rgba(14, 26, 56, 0.66);
  --line: rgba(14, 26, 56, 0.2);
  --line-light: rgba(255, 255, 255, 0.24);
  --shell: 1440px;
  --page-pad: 40px;

  /*
    モーショントークン。イージングを生の cubic-bezier で各所に書くと
    「入場に ease-in を当ててしまう」類の事故が目視で気づけないので、
    必ずここ経由で参照する。script.js も --ease-out を読んで共有する。
  */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* 入場・退場。既定はこれ */
  /* 収束専用の意図的な ease-in。中心に吸い寄せられる表現以外では使わない */
  --ease-converge: cubic-bezier(0.62, 0, 0.9, 0.28);

  --dur-press: 160ms; /* 押下フィードバック */
  --dur-hover: 240ms; /* ホバーの色・浮き */
  --dur-enter: 340ms; /* 要素の出入り */

  /*
    カードの影。平面のカードにホバーで初めて影が生えると「触った瞬間に
    materialize した」ように見えるので、既定から薄く敷いて
    「もともと浮いている面」にしておき、ホバーでは浮き量を増やす。
    近距離の芯（接地）と遠距離のぼかし（浮き）の二枚重ねなのは、
    単一の影を濃くすると汚れのように見えるため。
    既定の影は横方向の到達を8px程度に抑えてある（グリッドの gap が
    12〜18px なので、隣のカードの下に潜って切れて見えるのを避ける）。
  */
  --shadow-card:
    0 1px 2px rgba(14, 26, 56, 0.05),
    0 5px 14px rgba(14, 26, 56, 0.06);
  --shadow-card-hover:
    0 2px 4px rgba(14, 26, 56, 0.06),
    0 18px 38px rgba(14, 26, 56, 0.14);
  /* 料金カードは面が大きいので一段強い。特に .is-featured は行から張り出す */
  --shadow-card-lg:
    0 2px 4px rgba(14, 26, 56, 0.06),
    0 8px 20px rgba(14, 26, 56, 0.08);
  --shadow-card-lg-hover:
    0 3px 6px rgba(14, 26, 56, 0.07),
    0 22px 46px rgba(14, 26, 56, 0.17);
  /*
    ボタン用。カードの影をそのまま当てるとぼかしが面の高さに対して
    大きすぎて、輪郭が溶けて「にじみ」に見える。ぼかしを詰めるぶん
    濃度を上げて、小さい面でも影として知覚できるようにしている。
    ホバーで動かない要素に使うので、増加分（-hover）は持たない。
  */
  --shadow-button:
    0 1px 2px rgba(14, 26, 56, 0.06),
    0 3px 8px rgba(14, 26, 56, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

/*
  企業向け（/）とクリエイター向け（/creator/）は別ドキュメントなので、
  切り替えのたびに白画面を挟んでいた。View Transitions を有効にすると
  ヘッダーとロゴが繋がったまま入れ替わり、「同じプロダクトの2つの顔」
  という関係が動きで伝わる。非対応ブラウザは従来どおり即時遷移。
*/
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: vt-fade-out 90ms var(--ease-out) both;
}

::view-transition-new(root) {
  animation: vt-fade-in 220ms var(--ease-out) both;
}

@keyframes vt-fade-out {
  to {
    opacity: 0;
  }
}

@keyframes vt-fade-in {
  from {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
  background: var(--cream);
  color: var(--navy);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

button,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

[hidden] {
  display: none !important;
}

/*
  スクロールリビール。初期状態は .js-anim（headのインラインscript）が付いたときだけ
  適用するので、JSが落ちてもコンテンツは必ず表示される。
*/
.js-anim [data-reveal] {
  opacity: 0;
  translate: 0 14px;
}

/*
  リビール本体は opacity / translate。ホバー用の transform などを同じ宣言に
  含めているのは、この規則の詳細度が個々のカードの規則より高く、
  transition プロパティを上書きしてしまうため。
*/
.js-anim [data-reveal].is-revealed {
  opacity: 1;
  translate: 0;
  transition:
    opacity 720ms var(--ease-out) var(--reveal-delay, 0ms),
    translate 720ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  translate: 0 -160%;
  background: var(--white);
  border: 2px solid var(--navy);
}

.skip-link:focus {
  translate: 0;
}

.shell {
  width: min(var(--shell), calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 234, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  width: 150px;
  display: block;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  position: relative;
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.header-nav a::after {
  position: absolute;
  bottom: 8px;
  left: 18px;
  width: calc(100% - 36px);
  height: 2px;
  background: var(--yellow);
  content: "";
  scale: 0 1;
  transform-origin: left center;
  transition: scale 260ms var(--ease-out);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  scale: 1 1;
}

.header-nav a:focus-visible,
.header-audience:focus-visible,
.hero-switch a:focus-visible,
.header-contact:focus-visible,
.round-cta:focus-visible,
.plan-action-cta:focus-visible,
.contact-action a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 対象切り替え。黄色い問い合わせボタンに対する副ボタンなので線だけ */
.header-audience {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  white-space: nowrap;
  border: 1.5px solid var(--navy);
  box-shadow: var(--shadow-button);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background-color 200ms ease,
    color 200ms ease,
    scale var(--dur-press) var(--ease-out);
}

/*
  ホバーで矢印を送り出す。gap を animate するとレイアウト再計算が
  毎フレーム走るので、矢印自身を translate する（合成のみで済む）。
*/
.header-audience .arrow-icon {
  font-size: 14px;
  transition: translate 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .header-audience:hover {
    background: var(--navy);
    color: var(--white);
  }

  .header-audience:hover .arrow-icon {
    translate: 4px 0;
  }
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 11px 15px;
  white-space: nowrap;
  background: var(--yellow);
  box-shadow: var(--shadow-button);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.arrow-icon {
  position: relative;
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  flex: 0 0 auto;
}

.arrow-icon::before {
  position: absolute;
  top: 0.56em;
  left: 0.08em;
  width: 0.92em;
  height: 0.08em;
  background: currentColor;
  content: "";
  rotate: -45deg;
  transform-origin: center;
}

.arrow-icon::after {
  position: absolute;
  top: 0.08em;
  right: 0.08em;
  width: 0.46em;
  height: 0.46em;
  border-top: 0.08em solid currentColor;
  border-right: 0.08em solid currentColor;
  content: "";
}

.header-contact .arrow-icon {
  font-size: 16px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.eyebrow-light {
  color: var(--yellow);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}

.hero-copy {
  position: relative;
  min-width: 0;
  min-height: clamp(480px, calc(100svh - 340px), 600px);
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(400px, 0.72fr);
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 20px 56px;
  padding: 44px 56px 40px;
  background: var(--cream);
}

.hero-intro {
  display: contents;
}

/*
  コピー・CTAは列1に収めず全幅を使い、軌道ビジュアルの上に重ねる。
  重なりを許容する代わりに、CTAを中央よりやや右に置いて
  左のテキスト塊と右のビジュアルの間の空白を埋める。
*/
.hero-intro .eyebrow,
.hero-intro .hero-title {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
}

.hero-intro .eyebrow {
  grid-row: 1;
  align-self: end;
}

.hero-intro .hero-title {
  grid-row: 2;
  align-self: start;
}

.hero-title {
  max-width: 850px;
  margin: 26px 0 0;
  font-size: clamp(52px, 4.7vw, 80px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.12;
}

/* 行ごとにマスクして下からスライドさせるための入れ物 */
.title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

/*
  CSSアニメーションだけで完結させる（JSに依存させると読み込み失敗時に
  見出しが出てこないリスクがあるため）。stagger も nth-child で指定する。
*/
.js-anim .title-line-inner {
  display: block;
  animation: title-line-rise 900ms var(--ease-out) both;
}

.js-anim .title-line:nth-child(2) .title-line-inner {
  animation-delay: 110ms;
}

.js-anim .title-line:nth-child(3) .title-line-inner {
  animation-delay: 220ms;
}

@keyframes title-line-rise {
  from {
    translate: 0 108%;
  }

  to {
    translate: 0;
  }
}

.js-anim .hero-title .hero-accent::after {
  transform-origin: left center;
  animation: accent-draw 640ms var(--ease-out) 620ms both;
}

@keyframes accent-draw {
  from {
    scale: 0 1;
  }

  to {
    scale: 1 1;
  }
}

.hero-title .hero-accent,
.section-heading h2 span,
.contact-grid h2 span {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.hero-title .hero-accent::after,
.accent-segment::after {
  position: absolute;
  right: -0.03em;
  bottom: 0.04em;
  left: -0.03em;
  z-index: -1;
  height: 0.18em;
  background: var(--yellow);
  content: "";
}

.orbit-visual {
  position: relative;
  z-index: 0;
  width: min(112%, 520px);
  aspect-ratio: 1;
  overflow: hidden;
  grid-row: 1 / 4;
  grid-column: 2;
  align-self: center;
  justify-self: center;
  margin: 0;
  isolation: isolate;
  translate: 48px 0;
}

@supports (overflow: clip) {
  .orbit-visual {
    overflow: clip;
  }
}

.orbit-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%) scale(var(--orbit-scale, 1));
  transform-origin: center;
}

.orbit-ring,
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  translate: -50% -50%;
}

.orbit-ring {
  z-index: 0;
  border: 1px solid rgb(13 30 62 / 20%);
}

.orbit-ring-outer,
.orbit-item-outer {
  width: 80%;
}

.orbit-ring-middle,
.orbit-item-middle {
  width: 52%;
}

.orbit-ring-inner,
.orbit-item-inner {
  width: 30%;
}

.orbit-chart {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 116px;
  height: 92px;
  background: rgb(255 255 255 / 88%);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgb(13 30 62 / 10%);
  translate: -50% -50%;
}

.chart-axis {
  position: absolute;
  bottom: 18px;
  left: 20px;
  width: 78px;
  height: 56px;
  border-bottom: 1.5px solid var(--navy);
  border-left: 1.5px solid var(--navy);
}

.chart-line,
.chart-point {
  position: absolute;
  z-index: 1;
  display: block;
  background: var(--yellow);
}

.chart-line {
  height: 3px;
  border-radius: 999px;
  transform-origin: left center;
}

.chart-line-1 {
  top: 59px;
  left: 24px;
  width: 29px;
  rotate: -13deg;
}

.chart-line-2 {
  top: 53px;
  left: 51px;
  width: 32px;
  rotate: -43deg;
}

.chart-line-3 {
  top: 31px;
  left: 73px;
  width: 29px;
  rotate: -18deg;
}

.chart-point {
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
}

.chart-point-1 {
  top: 56px;
  left: 21px;
}

.chart-point-2 {
  top: 50px;
  left: 48px;
}

.chart-point-3 {
  top: 27px;
  left: 70px;
}

.chart-point-4 {
  top: 18px;
  left: 97px;
}

.orbit-item {
  z-index: 2;
  animation: orbit-spin var(--orbit-duration) linear infinite;
  animation-delay: var(--orbit-delay);
  will-change: rotate;
}

.orbit-item .media-card {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  animation: orbit-counter var(--orbit-duration) linear infinite;
  animation-delay: var(--orbit-delay);
  will-change: rotate;
}

.orbit-item.is-reverse,
.orbit-item.is-reverse .media-card {
  animation-direction: reverse;
}

.orbit-item-1 {
  --orbit-duration: 48s;
  --orbit-delay: -5s;
}

.orbit-item-2 {
  --orbit-duration: 42s;
  --orbit-delay: -8s;
}

.orbit-item-3 {
  --orbit-duration: 36s;
  --orbit-delay: -15s;
}

.orbit-item-4 {
  --orbit-duration: 48s;
  --orbit-delay: -29s;
}

.orbit-item-5 {
  --orbit-duration: 42s;
  --orbit-delay: -29s;
}

.orbit-item-3 .media-card {
  scale: 0.78;
}

.media-card {
  width: 50px;
  height: 70px;
  overflow: visible;
  background: var(--cream);
  border: 1.5px solid var(--navy);
  border-radius: 7px;
  box-shadow: 4px 5px 0 rgb(13 30 62 / 8%);
  color: var(--navy);
}

.media-card b {
  position: absolute;
  top: 6px;
  left: 7px;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.media-card i {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  height: 2px;
  background: var(--yellow);
}

.media-card-video {
  width: 78px;
  height: 48px;
}

.media-card-carousel {
  width: 60px;
  height: 60px;
}

.media-card-carousel::before,
.media-card-carousel::after {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(13 30 62 / 48%);
  border-radius: inherit;
  content: "";
}

.media-card-carousel::before {
  top: 3px;
  left: 3px;
}

.media-card-carousel::after {
  top: 6px;
  left: 6px;
}

.media-card-carousel span {
  position: absolute;
  top: 22px;
  right: 8px;
  left: 8px;
  height: 14px;
  border: 1px solid var(--navy);
  border-radius: 50% 50% 2px 2px;
}

.media-card-small {
  scale: 0.84;
}

.media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--navy);
  translate: -40% -50%;
}

@keyframes orbit-spin {
  to {
    rotate: 1turn;
  }
}

@keyframes orbit-counter {
  to {
    rotate: -1turn;
  }
}

.hero-bottom {
  /*
    CTAの右側に空ける余白。これだけでCTAの左右位置が決まる。
    32% = 軌道ビジュアルに重ねない / 26% = 外周リングに少し重なる（現行）
    19% = 軌道の内側まで踏み込む
  */
  --cta-gutter: 26%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-row: 3;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 188px var(--cta-gutter);
  grid-template-rows: auto auto;
  align-items: start;
  gap: 32px;
  margin-top: 24px;
}

.hero-lead {
  position: relative;
  z-index: 1;
  grid-row: 1;
  grid-column: 1;
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.75;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.hero-switch {
  position: relative;
  z-index: 1;
  grid-row: 2;
  grid-column: 1;
  margin: -8px 0 0;
}

/*
  主CTA（紺の丸ボタン）に対する副CTA。
  黄色の塗りで始めて存在感を出し、ホバーで白抜きにする。
  紺で塗ると主CTAと同格に見えてしまうので、色はアクセントの黄色。
*/
.hero-switch a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 13px 22px;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-button);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    scale var(--dur-press) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .hero-switch a:hover {
    background: var(--white);
    border-color: var(--navy);
  }

  .hero-switch a:hover .arrow-icon {
    translate: 6px 0;
  }
}

.hero-switch .arrow-icon {
  font-size: 16px;
  transition: translate 220ms ease;
}

.round-cta {
  position: relative;
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: start;
  width: 188px;
  height: 188px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.45;
  text-decoration: none;
  transition:
    translate 180ms ease,
    rotate 180ms ease,
    scale var(--dur-press) var(--ease-out);
}

.round-cta > :first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 44px);
  text-align: center;
  translate: -50% -50%;
}

.round-cta > :last-child {
  position: absolute;
  right: 26px;
  bottom: 22px;
  font-size: 28px;
}

/* タップ端末でホバー状態が残るのを避ける */
@media (hover: hover) and (pointer: fine) {
  .round-cta:hover {
    translate: 0 -5px;
    rotate: -2deg;
  }
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--yellow);
  box-shadow: 0 0 0 100vmax var(--yellow);
  clip-path: inset(0 -100vmax);
}

/*
  グリッドの列を max-content にして justify-content: center。
  こうすると index / 数字 / ラベルの左揃えの関係は保ったまま、
  ブロックごと列の中央に寄る（1fr だと中身が左端に張り付いて見える）。
*/
.metric {
  min-width: 0;
  display: grid;
  min-height: 208px;
  grid-template-columns: max-content;
  align-content: space-between;
  justify-content: center;
  gap: 24px;
  padding: 32px 36px;
}

.metric:last-child {
  border-bottom: 0;
}

.metric-index {
  align-self: start;
  padding-top: 4px;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.metric strong {
  font-family: "Archivo", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(38px, 3.2vw, 58px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;
}

.metric strong small {
  margin-left: 3px;
  font-size: 0.48em;
  letter-spacing: -0.02em;
}

.metric-label {
  align-self: end;
  max-width: none;
  padding-bottom: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.65;
  text-align: left;
}

.service-summary {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(36px, 6vw, 100px);
  padding: clamp(58px, 6vw, 92px) 56px;
  background: var(--warm);
  box-shadow: 0 0 0 100vmax var(--warm);
  clip-path: inset(0 -100vmax);
}

.service-summary-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.service-summary-label > span {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-summary-copy h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.3;
}

.service-summary-copy p {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--ink-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.dark-section {
  position: relative;
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
  color: var(--white);
}

.model-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
}

.section-heading {
  min-width: 0;
}

.section-heading h2,
.contact-grid h2 {
  margin: 30px 0 26px;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.2;
}

.heading-segment {
  display: inline-block;
  white-space: nowrap;
}

.proof-title {
  font-size: clamp(25px, 3.2vw, 52px) !important;
  letter-spacing: -0.075em !important;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.dark-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.model-section > .section-heading {
  padding: 72px 64px 64px 56px;
}

.bead-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 30px;
  padding: 60px 28px 54px;
}

/*
  「20人の発信を、ひとつの成果へ」を数珠状のリングで表す。
  1) 6つのビーズが順に点灯（それぞれの発信）
  2) 全点灯を保つ（同時に届いている）
  3) 中央へ収束し、中央のコアだけが大きく光る（ひとつの成果へ）
  4) 見えないまま元の半径へ戻り、フェードインして次の周へ

  半径は --ring-radius だけで決まるので、JSでの実測は不要。
*/
.bead-ring {
  --ring-radius: clamp(88px, 15vw, 132px);
  --bead-size: clamp(38px, 6vw, 58px);
  position: relative;
  width: calc((var(--ring-radius) + var(--bead-size)) * 2);
  aspect-ratio: 1;
}

/* リングのガイド線 */
.bead-ring::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--ring-radius) * 2);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  translate: -50% -50%;
  content: "";
}

/* ビーズを載せる回転レイヤー。収束はこのレイヤーのscaleで行う */
.bead-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--bead-size);
  aspect-ratio: 1;
  translate: -50% -50%;
  transform: rotate(calc(var(--i) * 60deg)) translateY(calc(var(--ring-radius) * -1));
  animation: bead-converge 7.2s var(--ease-out) infinite;
  will-change: scale, opacity;
}

/*
  点灯は「消灯した面」の上に「点灯した面＋グロー」を重ね、
  上の層の opacity だけを動かして表現する。
  background と box-shadow を直接アニメーションさせると
  7要素×無限ループで毎フレーム再描画が走る（どちらもGPU合成できない）。
*/
.bead {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  /* 点灯だけ順番にずらす。収束とコアは全員同時 */
  animation: bead-light 7.2s var(--ease-out) calc(var(--i) * 0.18s) infinite;
  will-change: scale;
}

.bead::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--yellow);
  box-shadow:
    0 0 22px rgba(255, 198, 41, 0.5),
    0 0 60px rgba(255, 198, 41, 0.2);
  content: "";
  opacity: 0;
  animation: bead-glow 7.2s var(--ease-out) calc(var(--i) * 0.18s) infinite;
  will-change: opacity;
}

/* 中央のコア：全員の発信を受け取ってひとつの成果になる */
.bead-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--bead-size);
  aspect-ratio: 1;
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  translate: -50% -50%;
  animation: bead-core-bloom 7.2s var(--ease-out) infinite;
  will-change: scale;
}

.bead-core::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--yellow);
  box-shadow:
    0 0 46px rgba(255, 198, 41, 0.62),
    0 0 124px rgba(255, 198, 41, 0.28);
  content: "";
  opacity: 0;
  animation: bead-core-glow 7.2s var(--ease-out) infinite;
  will-change: opacity;
}

.bead-visual > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

/* 外側のビーズ：点灯 → 全点灯を保つ → 中央へ寄って消える */
@keyframes bead-light {
  0% {
    scale: 1;
  }

  8%,
  60% {
    scale: 1.05;
  }

  74%,
  100% {
    scale: 1;
  }
}

/* 点灯層のフェード。bead-light と同じタイムラインで動く */
@keyframes bead-glow {
  0% {
    opacity: 0;
  }

  8%,
  60% {
    opacity: 1;
  }

  74%,
  100% {
    opacity: 0;
  }
}

/*
  中央へ吸い込まれ、見えないまま元の半径に戻ってフェードインする。
  収束区間だけ ease-in（動き出しが遅く、中心に近づくほど速い）にして、
  引き寄せられている感じを出す。全体のイージングでは一瞬で終わってしまう。
*/
@keyframes bead-converge {
  0%,
  54% {
    scale: 1;
    opacity: 1;
    animation-timing-function: var(--ease-converge);
  }

  72% {
    scale: 0.1;
    opacity: 0;
  }

  72.01%,
  84% {
    scale: 1;
    opacity: 0;
  }

  94%,
  100% {
    scale: 1;
    opacity: 1;
  }
}

@keyframes bead-core-bloom {
  0%,
  50% {
    scale: 0.52;
  }

  72% {
    scale: 1.35;
  }

  90%,
  100% {
    scale: 0.52;
  }
}

/* コアの点灯層。ビーズと同じく opacity だけで開花させる */
@keyframes bead-core-glow {
  0%,
  50% {
    opacity: 0;
  }

  72% {
    opacity: 1;
  }

  90%,
  100% {
    opacity: 0;
  }
}

.feature-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 56px 72px;
}

.feature-card {
  min-height: 240px;
  padding: 34px 36px 38px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-card > span,
.service-list > li > span,
.flow-grid > li > span,
.join-grid > li > span {
  color: var(--yellow);
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 34px 0 14px;
  font-size: 20px;
  line-height: 1.5;
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.8;
}

/* -------------------------------------------------------------------------- */
/* カードのホバー                                                               */
/* -------------------------------------------------------------------------- */

/*
  transform（ホバーの浮き）と translate（リビール）は別プロパティなので、
  互いに打ち消し合わずに合成される。
  hover: hover でタップ端末に状態が residual で残るのを避ける。
*/
.feature-card,
.compare-card,
.promise-grid article,
.join-grid li,
.plan-card,
.flow-grid li,
.service-list li {
  transition:
    transform var(--dur-hover) ease,
    background-color var(--dur-hover) ease,
    box-shadow var(--dur-hover) ease;
}

/*
  既定の影。ホバーが無いタップ端末でも「カードは持ち上げられた面」だと
  伝わるので、@media (hover) の外に置く。
  .feature-card だけ除外しているのは濃紺地の上にあり、影が黒く濁って
  沈んで見えるだけで立体感にならないため（面の明度で浮かせている）。
*/
.compare-card,
.promise-grid article,
.join-grid li,
.flow-grid li {
  box-shadow: var(--shadow-card);
}

.plan-card {
  box-shadow: var(--shadow-card-lg);
}

@media (hover: hover) and (pointer: fine) {
  /* 濃紺セクションのカードは面を明るくして浮かせる */
  .feature-card:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-4px);
  }

  .service-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 3px 0 0 var(--yellow);
  }

  /*
    白カードは既定の影から「さらに濃く・広く」へ動かす。移動量は据え置きで、
    浮いた分だけ影が伸びる関係になるようにしている。
    z-index は、広がった影が隣のカード（DOM順で後ろの兄弟）に上から
    塗り潰されて途中で切れるのを防ぐため。
  */
  .compare-card:hover,
  .promise-grid article:hover,
  .join-grid li:hover,
  .flow-grid li:hover {
    position: relative;
    z-index: 1;
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
  }

  .plan-card:hover {
    z-index: 1;
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-lg-hover);
  }

  .faq-list summary:hover::after {
    scale: 1.14;
  }
}

/* -------------------------------------------------------------------------- */
/* 押下フィードバック                                                           */
/* -------------------------------------------------------------------------- */

/*
  ホバーはPCにしか無いので、押した瞬間の反応が無いとモバイルでは
  「反応したのか」が一切わからない。特に .sticky-cta は主CTA。
  transform ではなく個別プロパティの scale を使うことで、
  .round-cta の translate / rotate やカードの transform と合成される。
*/
/*
  .round-cta / .header-audience / .hero-switch a / .plan-action-cta は自前の
  transition を持っているので、ここで上書きせず各宣言に scale を足してある。
*/
.header-contact,
.sticky-cta a,
.business-contact-link,
.contact-action a {
  transition: scale var(--dur-press) var(--ease-out);
}

.round-cta:active,
.header-contact:active,
.header-audience:active,
.hero-switch a:active,
.plan-action-cta:active,
.sticky-cta a:active,
.business-contact-link:active,
.contact-action a:active {
  scale: 0.97;
}

/* 円形の主CTAは面積が大きいぶん、同じ0.97でも沈み込みが強く見える */
.round-cta:active {
  scale: 0.98;
}

/* -------------------------------------------------------------------------- */
/* 追従CTA（モバイル専用）                                                       */
/* -------------------------------------------------------------------------- */

/*
  PCはヘッダーの問い合わせボタンが常時見えているので出さない。
  モバイルだけ、heroを抜けてから CONTACT に到達するまでの区間で出す。
*/
.sticky-cta {
  display: none;
}

@media (max-width: 760px) {
  .sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: block;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(246, 243, 234, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 -1px 0 rgba(14, 26, 56, 0.1);
    visibility: hidden;
    translate: 0 130%;
    transition:
      translate var(--dur-enter) var(--ease-out),
      visibility var(--dur-enter);
  }

  .sticky-cta.is-visible {
    visibility: visible;
    translate: 0;
  }

  .sticky-cta a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 19px;
    background: var(--navy);
    box-shadow: var(--shadow-button);
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
  }

  .sticky-cta a:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
  }

  .sticky-cta .arrow-icon {
    font-size: 18px;
  }
}

.section-pad {
  padding: 110px 56px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: 88px;
}

.marker {
  position: relative;
  z-index: 0;
  display: inline;
  background: linear-gradient(transparent 68%, var(--yellow) 0);
}

.proof-chart {
  align-self: center;
  padding: 44px;
  background: var(--yellow);
  box-shadow: var(--shadow-card);
}

.proof-chart > p:first-child {
  margin-bottom: 38px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.proof-chart-row + .proof-chart-row {
  margin-top: 28px;
}

.proof-chart-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.proof-chart-label > span {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.proof-chart-label strong {
  font-family: "Archivo", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(30px, 3.6vw, 58px);
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 1;
}

.proof-chart-label b {
  font-weight: 900;
}

.proof-chart-label small {
  margin-left: 3px;
  font-size: 0.45em;
}

.proof-track {
  height: 18px;
  overflow: hidden;
  background: rgba(14, 26, 56, 0.12);
}

.proof-bar {
  width: 100%;
  height: 100%;
  display: block;
  scale: 0 1;
  transform-origin: left center;
  background: var(--navy);
  transition: scale 900ms var(--ease-out);
}

.proof-bar-start {
  --bar-scale: 0.08;
}

.proof-bar-now {
  --bar-scale: 1;
  transition-delay: 140ms;
}

.proof-chart.is-visible .proof-bar {
  scale: var(--bar-scale) 1;
}

.proof-growth {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 34px 0 0;
  padding-top: 24px;
}

.proof-growth strong {
  font-family: "Archivo", "Zen Kaku Gothic New", sans-serif;
  font-size: 38px;
  font-style: italic;
  letter-spacing: -0.05em;
}

.proof-growth span {
  font-size: 12px;
  font-weight: 700;
}

.owned-media-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(64px, 7vw, 104px);
  background: var(--warm);
  box-shadow: 0 0 0 100vmax var(--warm);
  clip-path: inset(0 -100vmax);
}

.owned-media-copy {
  max-width: 570px;
}

.owned-media-copy h2 {
  font-size: clamp(33px, 3.5vw, 56px);
}

.channel-profile {
  display: grid;
  grid-template-columns: minmax(112px, 0.56fr) minmax(0, 1.44fr);
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
  min-height: 330px;
  padding: clamp(28px, 3vw, 44px);
  background: var(--white);
  box-shadow: var(--shadow-card);
  color: var(--navy);
}

.channel-avatar-wrap {
  position: relative;
  width: min(100%, 150px);
  justify-self: end;
}

.channel-avatar-wrap::after {
  position: absolute;
  right: -8px;
  bottom: -8px;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.channel-avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  display: block;
  border: 2px solid var(--navy);
  border-radius: 50%;
  object-fit: cover;
}

.channel-profile-copy {
  min-width: 0;
}

.channel-kicker {
  display: block;
  margin-bottom: 18px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.channel-profile-copy h3 {
  margin: 0;
  font-size: clamp(28px, 2.45vw, 39px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.15;
  white-space: nowrap;
}

.channel-profile-copy h3 small {
  display: block;
  margin-top: 9px;
  font-size: 0.31em;
  letter-spacing: 0.02em;
}

.channel-profile-copy p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 0;
}

.channel-profile-copy p span {
  font-size: 12px;
  font-weight: 700;
}

.channel-profile-copy p strong {
  font-family: "Archivo", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.channel-profile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--yellow);
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-button);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    gap 220ms ease;
}

@media (hover: hover) {
  .channel-profile-link:hover {
    gap: 30px;
    background: var(--white);
    border-color: var(--navy);
  }
}

.channel-profile:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 5px;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.service-section > .section-heading {
  padding: 80px 56px;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  min-height: 150px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: 28px 46px;
  border-bottom: 1px solid var(--line-light);
}

.service-list li:last-child {
  border-bottom: 0;
}

.service-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.service-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.8;
}

/* FLOWは見出しを上に置き、4ステップを横並びのカードにする */
.flow-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-grid li {
  min-height: 196px;
  display: grid;
  align-content: start;
  padding: 30px 28px 34px;
  background: var(--white);
}

.flow-grid h3 {
  margin: 34px 0 12px;
  font-size: 19px;
  line-height: 1.5;
}

.flow-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.75;
}

/*
  料金はFLOWの下に独立したセクション。地は中間トーン。
  見出しを上に置き、3プランを横並びで比較させる。
*/
.price-section {
  /* 残枠の数字とプラン価格は同じ大きさで組む。ブレークポイントもここ1箇所で動かす */
  --price-figure: 64px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  background: var(--warm);
  box-shadow: 0 0 0 100vmax var(--warm);
  clip-path: inset(0 -100vmax);
}

/* 見出しの右に残枠を置く。空いていた右カラムを希少性の表示に使う */
.price-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.4fr);
  align-items: end;
  gap: clamp(40px, 5vw, 80px);
}

.price-section .section-heading h2 {
  margin-top: 20px;
}

.offer-slots {
  padding: 28px 30px 30px;
  background: var(--navy);
  box-shadow: var(--shadow-card);
  color: var(--white);
}

.offer-slots-label {
  margin: 0;
  color: var(--yellow);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.offer-slots-count {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 10px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/*
  残枠の数字だけInterで組む。Archivoの「4」は頂点が鋭く尖ってふところが
  潰れるため、字形が素直なInterに差し替える。イタリック・ウエイト・
  大きさは価格と揃えているので、並べても同じ調子に見える。
*/
.offer-slots-count b {
  color: var(--yellow);
  font-family: "Inter", "Archivo", "Zen Kaku Gothic New", sans-serif;
  font-size: var(--price-figure);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.offer-slots-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8;
}

/* 先行モニターの札。見出しの上に置いて限定性を先に伝える */
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0;
  padding: 8px 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.offer-badge span {
  color: var(--yellow);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/*
  カード内は flex 縦積み。.plan-specs を伸ばして、
  価格や項目数が違ってもCTAの位置が3枚で揃うようにする。
*/
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 34px 34px;
  background: var(--white);
}

/* おすすめだけ上下に張り出させて、行の中で一段持ち上げる */
.plan-card.is-featured {
  margin-block: -22px;
  padding: 60px 34px 56px;
  background: var(--navy);
  color: var(--white);
}

.plan-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 8px 14px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* 価格のすぐ横（狭いときは真下）に置いて、この数字がモニター価格だと明示する */
.plan-tag {
  margin: 0;
  padding: 5px 10px;
  background: var(--yellow);
  color: var(--navy);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.plan-card.is-featured .plan-tag {
  background: var(--white);
}

.plan-code {
  margin: 0;
  color: var(--ink-muted);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.plan-card.is-featured .plan-code {
  color: rgba(255, 255, 255, 0.56);
}

.plan-name {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}

/* 値引き前の価格。取り消し線＋下げ幅で「モニター価格は安い」を数字で見せる */
.plan-was {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
}

.plan-card.is-featured .plan-was {
  color: rgba(255, 255, 255, 0.6);
}

.plan-was s {
  text-decoration-thickness: 1.5px;
  text-decoration-color: var(--navy);
}

.plan-card.is-featured .plan-was s {
  text-decoration-color: var(--yellow);
}

.plan-was em {
  padding: 3px 7px;
  background: var(--yellow);
  color: var(--navy);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.plan-was em span {
  font-size: 0.86em;
}

/* 価格とモニター価格ラベルを1行に。入らない幅では折り返してラベルが真下に来る */
.plan-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 12px 0 0;
}

.plan-price {
  margin: 0;
  font-family: "Archivo", "Zen Kaku Gothic New", sans-serif;
  font-size: var(--price-figure);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

/* bタグ既定の bolder は親比なので、明示しないと800を超えて900になる */
.plan-price b {
  font-weight: inherit;
}

/*
  「万円〜」は和文なのでArchivoにグリフが無く、指定なしだと本文書体の
  ウエイト400へ落ちて周りより細く見える。書体と太さを明示して揃える。
*/
.plan-price small {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.3em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
}

.plan-card.is-featured .plan-price {
  font-size: 72px;
  color: var(--yellow);
}

.plan-note {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.plan-card.is-featured .plan-note {
  color: rgba(255, 255, 255, 0.62);
}

.plan-specs {
  display: grid;
  align-content: start;
  gap: 12px;
  flex: 1;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-card.is-featured .plan-specs {
  border-top-color: var(--line-light);
}

.plan-specs li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.plan-specs li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

/*
  相談ボタンはカードごとに置かず、3枚の下に1つだけ。
  どのプランから来たかを計測できないので、導線を1本に絞る。
*/
.plan-action {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.plan-action-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(100%, 440px);
  padding: 22px 30px;
  background: var(--navy);
  box-shadow: var(--shadow-button);
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  /* 主CTAなので押下の scale も自前で持つ（共通指定はこの宣言に上書きされる） */
  transition:
    background-color var(--dur-hover) ease,
    color var(--dur-hover) ease,
    gap var(--dur-hover) ease,
    scale var(--dur-press) var(--ease-out);
}

.plan-action-cta .arrow-icon {
  font-size: 18px;
}

.plan-action-note {
  margin: 0;
  /* 1文が1行で収まる幅。狭い画面では通常どおり折り返す */
  max-width: 680px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

@media (hover: hover) {
  .plan-action-cta:hover {
    gap: 26px;
    background: var(--yellow);
    color: var(--navy);
  }
}

/* 全プラン共通の提供範囲。プランごとに繰り返さず1本の帯にまとめる */
.plan-common {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  padding: 26px 34px;
  background: var(--navy);
  box-shadow: var(--shadow-card);
  color: var(--white);
}

.plan-common .eyebrow {
  color: var(--yellow);
}

.plan-common ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
  区切りは項目ごとの黄色いドットで持たせる。
  li + li の "/" だと折り返した行の先頭に区切りが残ってしまう。
*/
.plan-common li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 700;
}

.plan-common li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.plan-disclaimer {
  /* 1文が1行で収まる幅。狭い画面では通常どおり折り返す */
  max-width: 840px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 22px 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  content: "+";
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/*
  開閉は340ms/260msかけて滑らかに動くのに、記号だけ差し替えると
  そこだけ瞬間移動して見える。+ を135°回して × にすることで
  高さのアニメーションと継ぎ目なく繋がる（content は据え置き）。
*/
.faq-list summary::after {
  transition:
    scale var(--dur-hover) var(--ease-out),
    rotate 260ms var(--ease-out);
}

.faq-list details[open] summary::after {
  rotate: 135deg;
}

/*
  details 直では高さのアニメーションが効かないので、答えを .faq-body で包み、
  script.js が open のタイミングを制御して height をアニメーションさせる。
  JSが動かない場合はネイティブの開閉にフォールバックする。
*/
.faq-body {
  overflow: hidden;
}

.faq-list details > .faq-body > p {
  max-width: 680px;
  margin: -2px 56px 0 0;
  padding: 0 0 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.before-after .section-heading {
  max-width: 980px;
  margin-bottom: 64px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
}

.compare-card {
  padding: 40px;
  background: var(--white);
}

.compare-card > p {
  margin-bottom: 28px;
  font-family: "Archivo", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.compare-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.compare-card-after {
  background: var(--navy);
  color: var(--white);
}

.compare-card-after li {
  color: rgba(255, 255, 255, 0.76);
}

.compare-card-after li span,
.compare-card-after > p {
  color: var(--yellow);
}

.compare-arrow {
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.merit-section > .section-heading {
  padding: 84px 56px 64px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 64px;
}

.promise-grid article {
  min-height: 230px;
  padding: 28px 24px;
  background: var(--white);
}

.promise-grid article > span {
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
}

.promise-grid h3 {
  margin: 46px 0 12px;
  font-size: 16px;
  line-height: 1.5;
}

.promise-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.75;
}

.money-section {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 90px;
  align-items: center;
  padding: 100px 56px;
}

.money-flow {
  display: grid;
  gap: 12px;
  text-align: center;
}

.money-flow > div {
  min-height: 90px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.money-flow strong {
  font-size: 18px;
}

.money-flow span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.money-note {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.8;
}

.money-flow i {
  color: var(--yellow);
  font-style: normal;
  font-size: 20px;
}

.money-flow .money-boooon {
  background: var(--yellow);
  color: var(--navy);
  font-family: "Archivo", sans-serif;
  font-style: italic;
}

.join-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.join-grid li {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
}

.join-grid h3 {
  margin: 54px 0 12px;
  font-size: 17px;
}

.join-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-section {
  background: var(--yellow);
}

.contact-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 90px;
  padding: 80px 56px;
}

.contact-grid h2 {
  margin-bottom: 0;
}

.contact-grid h2 span::after {
  background: var(--white);
}

.contact-action > p {
  margin-bottom: 32px;
  font-weight: 500;
}

.contact-action a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  background: var(--navy);
  box-shadow: var(--shadow-button);
  color: var(--white);
  font-family: "Archivo", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(18px, 2.3vw, 30px);
  font-weight: 800;
  text-decoration: none;
}

.contact-action .arrow-icon {
  font-size: 22px;
}

.contact-action small {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
}

.business-contact-grid {
  min-height: 0;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(48px, 6vw, 100px);
  padding-block: clamp(80px, 9vw, 140px);
}

.business-contact-copy {
  position: sticky;
  top: 136px;
}

.business-contact-lead {
  max-width: 31em;
  margin: 40px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.business-contact-notes {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(12, 31, 68, 0.22);
}

.business-contact-notes li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(12, 31, 68, 0.22);
  font-size: 13px;
  font-weight: 700;
}

.business-contact-notes span {
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.business-contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 20px 22px;
  background: var(--navy);
  box-shadow: var(--shadow-button);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.business-contact-form {
  min-width: 0;
  padding: 14px;
  background: var(--cream);
  box-shadow: 14px 14px 0 var(--navy);
}

.business-contact-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 22px;
  background: var(--navy);
  color: var(--white);
}

.business-contact-form-head p,
.business-contact-form-head span {
  margin: 0;
}

.business-contact-form-head p {
  font-size: 14px;
  font-weight: 800;
}

.business-contact-form-head span {
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.business-contact-form iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  background: var(--cream);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.site-footer .shell {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.brand-light {
  width: 150px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 500;
}

/*
  1100〜1280pxでは軌道ビジュアルがコピーに対して相対的に大きくなるので、
  余白を広げてCTAの重なりを浅くする。
*/
@media (max-width: 1280px) and (min-width: 1101px) {
  .hero-bottom {
    --cta-gutter: 30%;
  }
}

/*
  900px以下はロゴ＋セクションナビ＋問い合わせで幅が埋まるため、
  ヘッダーの対象切り替えは出さない（hero内のボタンで担保している）。
*/
@media (max-width: 900px) {
  .header-audience {
    display: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --page-pad: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 44px 56px 44px;
  }

  .hero-intro {
    display: contents;
  }

  /*
    縦フレックスに切り替わると、ベース側の align-self: end が
    交差軸（横）に効いて右寄せになってしまうため打ち消す。
  */
  .hero-intro .eyebrow,
  .hero-intro .hero-title {
    grid-column: auto;
  }

  .hero-intro .eyebrow {
    order: 1;
    align-self: start;
  }

  .hero-intro .hero-title {
    order: 2;
    align-self: start;
  }

  .orbit-visual {
    order: 4;
    width: min(100%, 520px);
    grid-row: auto;
    grid-column: 1;
    margin: 36px auto 0;
    translate: 0;
  }

  .hero-bottom {
    order: 3;
    display: grid;
    grid-column: auto;
    grid-template-columns: minmax(260px, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: end;
    gap: 16px 48px;
    margin-top: 32px;
  }

  .hero-lead,
  .round-cta,
  .hero-switch {
    grid-row: auto;
    grid-column: auto;
  }

  .hero-lead {
    position: static;
  }

  .hero-switch {
    grid-column: 1;
    margin-top: 0;
  }

  .round-cta {
    position: relative;
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
    justify-self: auto;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    box-shadow: 0 0 0 100vmax var(--yellow);
    clip-path: inset(0 -100vmax);
  }

  .service-summary {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-summary-label {
    display: block;
  }

  .service-summary-label > span {
    display: none;
  }

  .metric {
    min-height: 190px;
    grid-template-columns: max-content;
    align-content: space-between;
    justify-content: center;
    gap: 22px;
  }

  .metric-label {
    text-align: left;
  }

  /* .price-section は1カラム前提に組み替えたのでここには含めない */
  .proof-section,
  .owned-media-section,
  .faq-section,
  .join-section {
    grid-template-columns: 1fr;
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-chart,
  .channel-profile {
    width: min(100%, 700px);
  }

  /* 3列は維持したまま、カード内の余白と価格の文字を締める */
  .plan-card {
    padding: 30px 24px 28px;
  }

  .plan-card.is-featured {
    padding: 48px 24px 44px;
  }

  .price-section {
    --price-figure: 52px;
  }

  .plan-card.is-featured .plan-price {
    font-size: 58px;
  }

  .plan-name {
    font-size: 18px;
  }

  .plan-specs li,
  .plan-common li {
    font-size: 14px;
  }

  .plan-common {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 24px 26px;
  }

  .proof-title {
    font-size: clamp(32px, 5.2vw, 52px) !important;
  }

  .service-section,
  .money-section {
    grid-template-columns: 1fr;
  }

  .money-flow {
    max-width: 620px;
  }

  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .business-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .business-contact-copy {
    position: static;
  }
}

/*
  940px以下は3列だとプラン名と本文が折り返しだらけになるので縦積みに切り替える。
  順番は安い順のままなので、上から読めば比較として成立する。
*/
@media (max-width: 940px) {
  .plan-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: min(100%, 700px);
  }

  .plan-card,
  .plan-card.is-featured {
    margin-block: 0;
    padding: 30px 26px 28px;
  }

  .price-section {
    --price-figure: 54px;
  }

  .plan-card.is-featured .plan-price {
    font-size: var(--price-figure);
  }

  .plan-ribbon {
    padding: 7px 12px;
  }

  /* 残枠は見出しの下に回し、横長の帯として置く */
  .price-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .offer-slots {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    align-items: center;
    gap: 8px 32px;
    width: min(100%, 700px);
  }

  .offer-slots-label {
    grid-column: 1;
  }

  .offer-slots-count {
    grid-column: 1;
    margin: 0;
  }

  .offer-slots-note {
    grid-row: 1 / 3;
    grid-column: 2;
    margin: 0;
    padding: 0 0 0 28px;
    border-top: 0;
    border-left: 1px solid var(--line-light);
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 16px;
  }

  body {
    background: var(--cream);
  }

  html {
    scroll-padding-top: 84px;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding-block: 10px;
  }

  /* セクションナビはPCのみ。モバイルはロゴ＋問い合わせの1段に収める */
  .header-nav {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .header-contact {
    gap: 12px;
    font-size: 11px;
  }

  .brand {
    width: 120px;
  }

  .hero-copy {
    min-height: 0;
    padding: 32px 22px 30px;
  }

  .hero-title {
    margin-top: 20px;
    font-size: clamp(30px, 10.2vw, 48px);
    line-height: 1.16;
  }

  .orbit-visual {
    width: min(100%, 320px);
    margin: 26px auto 0;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 22px;
    margin-top: 28px;
  }

  .hero-switch {
    grid-column: 1;
    justify-self: stretch;
  }

  /* モバイルは主CTAと同じ幅で縦に並べ、塗り／線で主副を出す */
  .hero-switch a {
    width: 100%;
    justify-content: space-between;
    padding: 15px 19px;
  }

  .round-cta {
    grid-row: auto;
    grid-column: 1;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.78;
  }

  .hero-lead br {
    display: none;
  }

  .round-cta {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 19px 21px;
    border-radius: 0;
  }

  .round-cta > :first-child,
  .round-cta > :last-child {
    position: static;
    width: auto;
    translate: none;
  }

  .round-cta br {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .service-summary {
    gap: 28px;
    padding: 58px 22px 64px;
  }

  .service-summary-copy h2 {
    font-size: clamp(29px, 8.4vw, 40px);
    line-height: 1.35;
  }

  .service-summary-copy p {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.8;
  }

  /*
    ラベルを固定幅の右カラムに置くことで、数字がカウントアップして
    桁数が増えてもラベルの折り返しと位置が動かないようにする。
  */
  .metric {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 144px;
    grid-template-rows: auto auto;
    align-content: start;
    justify-content: stretch;
    gap: 14px 16px;
    padding: 24px 22px 26px;
  }

  .metric-index {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-top: 0;
  }

  .metric strong {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    /* 「2,500億円」がラベル列に食い込まない上限 */
    font-size: 36px;
  }

  .metric-label {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    padding-bottom: 4px;
    font-size: 11px;
    line-height: 1.6;
    text-align: left;
  }

  .model-section {
    grid-template-columns: 1fr;
  }

  .model-section > .section-heading {
    padding: 64px 22px 48px;
  }

  .bead-visual {
    min-height: 300px;
    padding: 30px 10px 54px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 22px 64px;
  }

  .feature-card {
    min-height: auto;
    padding: 32px 24px 36px;
  }

  .feature-card h3 {
    margin-top: 26px;
  }

  .section-pad,
  .money-section {
    padding: 72px 22px;
  }

  .section-heading h2,
  .contact-grid h2 {
    margin-top: 26px;
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -0.05em;
  }

  .proof-title {
    font-size: clamp(20px, 6.8vw, 38px) !important;
  }

  /* heading-segment は nowrap なので、長い行は文字サイズ側で収める */
  #before-after-title,
  #money-title,
  #price-title {
    font-size: clamp(24px, 7.8vw, 36px);
  }

  .proof-section,
  .owned-media-section,
  .price-section,
  .faq-section,
  .join-section,
  .money-section {
    gap: 54px;
  }

  .price-section {
    gap: 40px;
  }

  .offer-badge {
    gap: 10px;
    font-size: 11px;
  }

  .plan-card,
  .plan-card.is-featured {
    padding: 26px 22px 24px;
  }

  .price-section {
    --price-figure: 48px;
  }

  .plan-action-cta {
    padding: 18px 22px;
    font-size: 15px;
  }

  .plan-common {
    padding: 22px;
  }

  .plan-common ul {
    gap: 10px 26px;
  }

  /* 帯だと注記が潰れるので、縦積みに戻す */
  .offer-slots {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 24px 22px 26px;
  }

  .offer-slots-note {
    grid-row: auto;
    grid-column: 1;
    margin-top: 18px;
    padding: 18px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  /* 読みやすさを優先して1列。2列だと本文が窮屈になる */
  .flow-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  /* 縦に4枚積むので、余白は詰めて全体の高さを抑える */
  .flow-grid li {
    min-height: auto;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 22px 22px 24px;
  }

  .flow-grid li > span {
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 4px;
  }

  .flow-grid h3 {
    grid-column: 2;
    margin: 0 0 6px;
    font-size: 18px;
  }

  .flow-grid p {
    grid-column: 2;
  }

  .faq-list summary {
    min-height: 78px;
    gap: 18px;
    font-size: 15px;
  }

  .faq-list details > .faq-body > p {
    margin-right: 0;
    padding-bottom: 24px;
    font-size: 15px;
  }

  .proof-chart {
    padding: 28px 22px;
  }

  .channel-profile {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    padding: 30px 24px 24px;
  }

  .channel-avatar-wrap {
    width: 132px;
    justify-self: start;
  }

  .channel-profile-copy h3 {
    font-size: clamp(31px, 9.5vw, 43px);
  }

  .channel-profile-copy p {
    margin-top: 22px;
  }

  .channel-profile-link {
    margin-top: 20px;
  }

  .proof-chart-label strong {
    font-size: 38px;
  }

  .proof-growth {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .service-section > .section-heading,
  .merit-section > .section-heading {
    padding: 64px 22px 48px;
  }

  .service-list li {
    min-height: auto;
    grid-template-columns: 46px 1fr;
    padding: 28px 22px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-card {
    padding: 30px 24px;
  }

  .compare-arrow {
    min-height: 58px;
    rotate: 90deg;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .promise-grid article {
    min-height: auto;
  }

  .promise-grid h3 {
    margin-top: 30px;
  }

  .money-flow {
    width: 100%;
  }

  .join-grid {
    grid-template-columns: 1fr;
  }

  .join-grid li {
    min-height: 200px;
  }

  .contact-grid {
    min-height: auto;
    padding: 72px 22px;
  }

  .business-contact-grid {
    gap: 42px;
    padding: 72px 22px 88px;
  }

  .business-contact-lead {
    margin-top: 30px;
    font-size: 15px;
  }

  .business-contact-notes {
    margin-top: 28px;
  }

  .business-contact-form {
    width: 100%;
    padding: 8px;
    box-shadow: 8px 8px 0 var(--navy);
  }

  .business-contact-form-head {
    min-height: 58px;
    padding: 0 14px;
  }

  .business-contact-form-head span {
    display: none;
  }

  .business-contact-form iframe {
    height: 640px;
  }

  .contact-action a {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .site-footer .shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-anim [data-reveal] {
    opacity: 1;
    translate: 0;
  }

  .js-anim .title-line-inner,
  .js-anim .hero-title .hero-accent::after {
    animation: none;
  }

  /*
    reduced motion は「動きを減らす」であって「全部消す」ではない。
    色・不透明度の遷移は状態変化の理解を助けるので残し、
    位置・回転・拡大といった移動系だけを無効化する。
  */
  *,
  *::before,
  *::after {
    transition-property: opacity, background-color, color, border-color, box-shadow,
      outline-color, fill, stroke !important;
  }

  .round-cta:hover,
  .feature-card:hover,
  .compare-card:hover,
  .promise-grid article:hover,
  .join-grid li:hover,
  .plan-card:hover,
  .flow-grid li:hover {
    translate: none;
    rotate: none;
    transform: none;
  }

  .header-audience:hover .arrow-icon,
  .hero-switch a:hover .arrow-icon {
    translate: none;
  }

  /*
    押下の scale は上の transition-property から外れるため即時適用になる。
    アニメーションはしないが「押した」ことは伝わるので、これでよい。
  */

  .bead,
  .bead::after,
  .bead-core,
  .bead-core::after,
  .bead-orbit {
    animation: none;
  }

  /* 点灯層は動かない代わりに、光った状態で静止させる */
  .bead::after,
  .bead-core::after {
    opacity: 1;
  }

  .proof-bar {
    scale: var(--bar-scale) 1;
  }

  .orbit-item,
  .orbit-item .media-card {
    animation-play-state: paused;
  }
}
