/* ============================================================
   WorkBridge LP — Design Tokens
   Color:  White base / Black text & accents / LINE Green CTA
   Type:   Zen Kaku Gothic New (display) + Noto Sans JP (body)
   ============================================================ */

:root {
  /* Color */
  --color-bg: #FFFFFF;
  --color-surface: #F7F7F5;      /* card / section background */
  --color-ink: #121212;          /* primary text, black accent */
  --color-ink-soft: #63625E;     /* secondary text */
  --color-line: #E7E5E1;         /* hairline dividers */
  --color-line-green: #049640;   /* LINE系グリーン。白文字コントラスト比3.86:1(WCAG AA/大文字)を確保するため公式カラーよりわずかに濃色化 */
  --color-line-green-dark: #037A34;
  --color-focus: #1A73E8;

  /* Type scale (mobile-first, fluid) */
  --fs-hero: clamp(25px, 6.4vw, 44px);
  --fs-h2: clamp(22px, 5.5vw, 32px);
  --fs-h3: 17px;
  --fs-body: 15px;
  --fs-body-lg: 16px;
  --fs-small: 13px;

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

  /* Layout */
  --content-width: 640px;
  --radius-card: 20px;
  --radius-btn: 999px;
  --space-section: clamp(56px, 10vw, 96px);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* space for sticky CTA */
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

.only-mobile { display: inline; }
@media (min-width: 640px) {
  .only-mobile { display: none; }
}

img { max-width: 100%; display: block; }

/* ============================================================
   Buttons
   ============================================================ */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  padding: 17px 28px;
  background: var(--color-line-green);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--radius-btn);
  border: none;
  box-shadow: 0 8px 20px -6px rgba(4, 150, 64, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.cta-btn:hover {
  background: var(--color-line-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(4, 150, 64, 0.55);
}

.cta-btn:active { transform: translateY(0); }

.cta-btn--hero { max-width: 460px; padding: 19px 28px; font-size: 17px; }

.icon-line { width: 22px; height: 22px; flex-shrink: 0; fill: currentColor; }

/* Sticky bottom CTA (mobile) */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-line);
  transform: translateY(0);
  transition: transform 0.25s ease;
}
.sticky-cta.is-hidden { transform: translateY(110%); }

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  /* 小さいフォントサイズのためWCAG AA(4.5:1)を満たす濃色を使用 */
  background: var(--color-line-green-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-btn);
}
.sticky-cta .icon-line { width: 18px; height: 18px; }

@media (min-width: 900px) {
  .sticky-cta { display: none; } /* デスクトップは常時表示のヒーローCTAで十分 */
}

/* ============================================================
   Hero(フルブリード写真 + テキストオーバーレイ)
   見た目は一枚絵、中身は本物のHTMLテキスト。
   ============================================================ */

.hero {
  background: var(--color-bg);
}

/* ---- ロゴバー(写真の上・シンプルな白帯) ---- */

.hero__logobar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 20px 18px;
}

.hero__logo-icon { width: 48px; height: 30px; }

.hero__logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  color: var(--color-ink);
  letter-spacing: 0.01em;
}

.hero__logo-text span { color: var(--color-line-green-dark); }

/* ---- フルブリード写真ステージ ---- */

.hero__stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 1080 / 1120;
  overflow: hidden;
  background: #1a1a1a;
}

.hero__stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* 上部スクリム: 写真の明るい部分と文字が被っても読めるように */
.hero__stage::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 34%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.32) 55%, transparent 100%);
  pointer-events: none;
}

.hero__eyebrow {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 100px;
  z-index: 2;
  line-height: 1.28;
}

.hero__eyebrow-line {
  display: block;
  font-size: clamp(20px, 6.4vw, 27px);
  font-weight: 900;
  color: #fff;
  -webkit-text-stroke: 4px #121212;
  paint-order: stroke fill;
  letter-spacing: 0.01em;
}

.hero__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #E0592A;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 26px -4px rgba(224,89,42,0.65);
  border: 4px solid #fff;
  transform: rotate(6deg);
}

/* 下部オーバーレイ: 暗いグラデーション(scrim)の上に白文字見出し */
.hero__overlay-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 110px 20px 26px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.4) 32%, rgba(6,6,6,0.72) 100%);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 7.8vw, 36px);
  line-height: 1.32;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.hero__headline-hl {
  background: linear-gradient(180deg, transparent 58%, #049640 58%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 2px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hero__badges li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 900;
  color: #fff;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  padding: 7px 14px 7px 9px;
  border-radius: var(--radius-btn);
}

.hero__badges li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20200%20200'><path%20d='M171,106%20L163,120%20L150,128%20L135,132%20L120,127%20L112,113%20L112,98%20L116,83%20L128,72%20L144,72%20L157,79%20L168,90%20L171,106Z'%20fill='none'%20stroke='%23FF6B45'%20stroke-width='11'%20stroke-linejoin='round'%20stroke-linecap='round'/><path%20d='M126,159%20L111,164%20L96,158%20L88,144%20L87,129%20L91,114%20L103,104%20L119,104%20L132,111%20L144,122%20L146,137%20L138,151%20L126,159Z'%20fill='none'%20stroke='%23FF6B45'%20stroke-width='11'%20stroke-linejoin='round'%20stroke-linecap='round'/><path%20d='M56,152%20L49,138%20L47,124%20L51,108%20L64,99%20L79,99%20L93,105%20L104,116%20L106,132%20L98,145%20L86,154%20L71,158%20L56,152Z'%20fill='none'%20stroke='%23FF6B45'%20stroke-width='11'%20stroke-linejoin='round'%20stroke-linecap='round'/><path%20d='M32,86%20L36,71%20L49,62%20L64,62%20L78,67%20L90,79%20L91,95%20L83,108%20L71,117%20L56,122%20L41,115%20L34,101%20L32,86Z'%20fill='none'%20stroke='%23FF6B45'%20stroke-width='11'%20stroke-linejoin='round'%20stroke-linecap='round'/><path%20d='M74,31%20L89,31%20L103,36%20L114,47%20L115,63%20L107,76%20L96,86%20L81,90%20L66,83%20L59,69%20L56,55%20L60,39%20L74,31Z'%20fill='none'%20stroke='%23FF6B45'%20stroke-width='11'%20stroke-linejoin='round'%20stroke-linecap='round'/><path%20d='M143,41%20L154,53%20L154,69%20L147,82%20L136,93%20L120,96%20L106,88%20L98,75%20L95,60%20L100,45%20L113,37%20L129,37%20L143,41Z'%20fill='none'%20stroke='%23FF6B45'%20stroke-width='11'%20stroke-linejoin='round'%20stroke-linecap='round'/><path%20d='M104,101%20L104,102%20L103,103%20L103,105%20L102,105%20L101,106%20L99,107%20L98,107%20L96,106%20L94,105%20L93,104%20L92,103%20L91,101%20L90,99%20L91,96%20L91,94%20L92,92%20L94,90%20L96,89%20L99,88%20L102,87%20L105,88%20L108,89%20L110,90%20L112,93%20L114,96%20L115,99%20L116,102%20L115,106%20L114,109%20L112,112%20L109,115%20L105,117%20L101,118%20L97,119%20L93,118%20L89,116%20L85,114%20L82,110%20L80,106%20L79,101%20L78,97%20L79,92%20L81,87%20L84,83%20L88,80%20L93,77%20L98,76%20L104,76%20L109,77%20L115,79%20L119,83%20L123,87%20L126,92%20L127,98%20L127,105%20L126,111%20L123,117%20L119,122%20L114,126%20L108,129'%20fill='none'%20stroke='%23FF6B45'%20stroke-width='10'%20stroke-linecap='round'%20stroke-linejoin='round'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ---- パターンA(信頼): 実績数値ライン ---- */

.hero__trust-line {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

/* ---- パターンB(緊急性): ライブ対応中表示 ---- */

.hero__eyebrow--live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3DDC6F;
  box-shadow: 0 0 0 0 rgba(61,220,111,0.6);
  animation: live-pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61,220,111,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(61,220,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,220,111,0); }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}

.hero__badge--urgent {
  background: #E0592A;
  box-shadow: 0 8px 20px -4px rgba(224,89,42,0.6);
}

.hero__urgency-sub {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin: -6px 0 14px;
}

.hero__badges--urgent li {
  background: rgba(224,89,42,0.22);
  border-color: rgba(224,89,42,0.55);
}

.cta-btn--urgent {
  background: #E0592A;
  box-shadow: 0 8px 20px -6px rgba(224,89,42,0.55);
}

.cta-btn--urgent:hover {
  background: #C44A20;
  box-shadow: 0 10px 24px -6px rgba(224,89,42,0.65);
}

/* ---- 写真のすぐ下: 実CTAボタン ---- */

.hero__cta-area {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 20px 20px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__note {
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
  margin-top: 12px;
}

/* ============================================================
   スマホ専用調整: ファーストビューを1画面に収める
   375×667 / 390×844 / 430×932 を基準に検証済み。
   PC(768px以上)は影響を受けない。
   ============================================================ */
@media (max-width: 767px) {
  .hero__logobar {
    padding: 12px 20px 8px;
    gap: 8px;
  }
  .hero__logo-icon { width: 34px; height: 21px; }
  .hero__logo-text { font-size: 21px; }

  /* aspect-ratioによる固定縦長を廃止し、画面の高さ基準で可変に。
     100vhをベースに、対応ブラウザではsvh/dvhで上書き(ツールバー分の誤差を防止)。 */
  .hero__stage {
    aspect-ratio: unset;
    height: 58vh;
    height: clamp(280px, calc(100vh - 230px), 440px);
  }
  @supports (height: 100svh) {
    .hero__stage {
      height: clamp(280px, calc(100svh - 230px), 440px);
    }
  }

  /* 顔が文字(アイボロー/バッジ)に隠れないよう表示位置を下げる */
  .hero__stage-img {
    object-position: center 18%;
  }

  .hero__eyebrow {
    top: 12px;
    left: 14px;
    right: 76px;
    line-height: 1.22;
  }
  .hero__eyebrow-line {
    font-size: clamp(15px, 5vw, 19px);
    -webkit-text-stroke: 3px #121212;
  }

  .hero__badge {
    top: 10px;
    right: 10px;
    width: 58px;
    height: 58px;
    font-size: 11px;
  }

  .hero__overlay-bottom {
    padding: 46px 16px 16px;
  }

  .hero__headline {
    font-size: clamp(19px, 6.4vw, 25px);
    line-height: 1.28;
    margin-bottom: 10px;
  }

  .hero__badges { gap: 6px; margin-top: 2px; }
  .hero__badges li {
    font-size: 11.5px;
    padding: 6px 12px 6px 8px;
  }
  .hero__badges li::before { width: 15px; height: 15px; }

  .hero__cta-area {
    padding: 12px 20px calc(6px + env(safe-area-inset-bottom));
  }
  .cta-btn--hero {
    padding: 15px 24px;
    font-size: 15.5px;
  }
  .hero__note { margin-top: 8px; font-size: 12px; }
}

.hero__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px clamp(48px, 9vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__sub {
  font-size: var(--fs-body-lg);
  color: var(--color-ink-soft);
  margin: 20px 0 30px;
  max-width: 440px;
}

/* ---- Before/After: 不安(✕) → 相談でOK ---- */

.pain-solve {
  width: 100%;
  max-width: 420px;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pain-solve__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pain-solve__item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 10px 8px 10px 16px;
  text-align: left;
}

.pain-solve__label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-ink);
  white-space: nowrap;
}

.pain-solve__x {
  flex-shrink: 0;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: #FBEAEA;
  color: #D64545;
  font-size: 12px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.pain-solve__arrow {
  width: 20px; height: 20px;
  color: var(--color-ink-soft);
}

.pain-solve__ok {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 2px solid var(--color-line-green);
  color: var(--color-line-green-dark);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  border-radius: var(--radius-btn);
  letter-spacing: 0.02em;
}

/* ---- Signature element: LINE chat preview phone mock ---- */

.phone-mock {
  margin-top: 44px;
  width: 100%;
  max-width: 320px;
  perspective: 1200px;
}

.phone-mock--compact {
  margin-top: 18px;
  max-width: 260px;
}

.phone-mock__frame {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  box-shadow: 0 30px 60px -24px rgba(18,18,18,0.22);
  overflow: hidden;
  transform: rotate(-1.2deg);
}

.phone-mock__notch {
  width: 84px;
  height: 18px;
  background: var(--color-ink);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}

.phone-mock__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 14px;
  border-bottom: 1px solid var(--color-line);
}

.phone-mock__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-line-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}

.phone-mock__name {
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.phone-mock__status {
  font-size: 11px;
  color: var(--color-line-green-dark);
  text-align: left;
}

.phone-mock__body {
  padding: 16px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FAFAF8;
  min-height: 220px;
}

.chat-bubble {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 12.5px;
  line-height: 1.55;
  text-align: left;
}

.chat-bubble--user {
  align-self: flex-end;
  background: var(--color-line-green);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-bubble--staff {
  align-self: flex-start;
  background: #ffffff;
  border: 1px solid var(--color-line);
  color: var(--color-ink);
  border-bottom-left-radius: 4px;
}

.chat-bubble--typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 13px 15px;
}

.typing-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-ink-soft);
  opacity: 0.5;
  animation: typing-blink 1.2s infinite ease-in-out;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-blink {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}

/* ============================================================
   Sections (shared)
   ============================================================ */

.section { padding: var(--space-section) 20px; }
.section__inner { max-width: var(--content-width); margin: 0 auto; }

.section--for-you { background: var(--color-surface); }
.section--reasons { background: var(--color-bg); }
.section--flow { background: var(--color-surface); }
.section--faq { background: var(--color-bg); }

.section__eyebrow {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-line-green-dark);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-align: center;
}

.section__heading {
  font-size: var(--fs-h2);
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}

/* ============================================================
   ② こんな方へ — check cards
   ============================================================ */

.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .check-grid { grid-template-columns: 1fr 1fr; }
}

.check-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  padding: 18px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
}

.check-card__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-line-green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.for-you__note {
  margin-top: 24px;
  text-align: center;
  font-size: 13.5px;
  color: var(--color-ink-soft);
  line-height: 1.8;
}

/* ============================================================
   ③ 選ばれる理由 — reason cards
   ============================================================ */

.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .reason-grid { grid-template-columns: 1fr 1fr; }
}

.reason-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 24px 22px;
}

.reason-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--color-line-green-dark);
  margin-bottom: 10px;
}

.reason-card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 8px;
}

.reason-card__text {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  line-height: 1.7;
}

.reason-diff {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--color-surface);
  border-left: 3px solid var(--color-line-green);
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.7;
}

.diff-block {
  margin-top: 32px;
  background: var(--color-ink);
  border-radius: var(--radius-card);
  padding: 28px 22px;
}

.diff-block__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  text-align: center;
  margin-bottom: 22px;
}

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

.diff-block__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.diff-block__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(4,150,64,0.18);
  color: var(--color-line-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-block__icon svg {
  width: 20px; height: 20px;
}

.diff-block__label {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.diff-block__text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

/* ============================================================
   信頼・社会的証明
   ============================================================ */

.section--trust { background: var(--color-bg); }

.sr-only-heading {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.trust-substat {
  text-align: center;
  font-size: 12px;
  color: var(--color-ink-soft);
  margin-bottom: 40px;
  line-height: 1.6;
}

.trust-stat {
  text-align: center;
  padding: 20px 10px;
  background: var(--color-surface);
  border-radius: var(--radius-card);
}

.trust-stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--color-line-green-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.trust-stat__num span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-ink-soft);
  margin-top: 2px;
}

.trust-stat__label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-ink-soft);
}

.next-steps {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.next-steps__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--color-ink);
  margin-bottom: 18px;
  text-align: center;
}

.next-steps__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.next-steps__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.7;
}

.next-steps__num {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-line-green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}

.next-steps__note {
  font-size: 12.5px;
  color: var(--color-ink-soft);
  text-align: center;
  border-top: 1px solid var(--color-line);
  padding-top: 16px;
}

/* ============================================================
   ④ 利用の流れ
   ============================================================ */

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
}
.flow-step:last-child { border-bottom: none; }

.flow-step__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}

.flow-step__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 6px;
}

.flow-step__text {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  line-height: 1.7;
}

.flow-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ============================================================
   ⑤ よくある質問
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-surface);
  border-radius: 16px;
  padding: 4px 20px;
}

.faq-item__q {
  padding: 16px 28px 16px 0;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  position: relative;
  list-style: none;
}

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

.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-ink-soft);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(45deg);
}

.faq-item__a {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  line-height: 1.75;
  padding-bottom: 18px;
}

/* ============================================================
   ⑥ 最後のCTA
   ============================================================ */

.section--final-cta {
  background: var(--color-ink);
  text-align: center;
}

.final-cta__heading {
  font-size: var(--fs-h2);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
}

.final-cta__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.section--final-cta .cta-btn {
  margin: 0 auto;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  padding: 24px 20px 40px;
  text-align: center;
  background: var(--color-ink);
}

.footer__company {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer__company-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer__company-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.footer__company-line {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 6px;
}

.footer__company-line:last-child { margin-bottom: 0; }

.footer__license {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer__text {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
}
