/* =====================================================
   lp-zero1000.css — DIALOGゼロ1000 LP共通スタイル
   Primary:  #1a4fa8（ぱとす）/ #2a9d8f（wellness）/ #2e7d32（kaigo）
   Accent:   #e85d04
   ===================================================== */

/* ---- CSS変数（ページ側で上書き可） ---- */
:root {
  --z-primary: #1a4fa8;
  --z-primary-dark: #143d82;
  --z-primary-light: #e8f0fb;
  --z-accent: #e85d04;
  --z-accent-dark: #c04d02;
  --z-bg: #f8f9fa;
  --z-text: #1a1a2e;
  --z-muted: #555;
  --z-border: #dde3ec;
  --z-white: #ffffff;
  --z-radius: 12px;
  --z-shadow: 0 4px 20px rgba(0,0,0,.10);
}

/* =====================================================
   タッチデバイス最適化・水平スクロール防止
   ===================================================== */
a, button { -webkit-tap-highlight-color: transparent; }
button { touch-action: manipulation; }
input, select, textarea { -webkit-appearance: none; appearance: none; }
html, body { overflow-x: hidden; }

/* =====================================================
   ユーティリティ
   ===================================================== */
.z-section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--z-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.z-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--z-text);
  line-height: 1.45;
  margin-bottom: 24px;
}

.z-section-title em {
  font-style: normal;
  color: var(--z-accent);
}

/* CTAボタン */
.z-cta-btn {
  display: inline-block;
  background: var(--z-accent);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(232,93,4,.35);
  text-align: center;
}
.z-cta-btn:hover {
  background: var(--z-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,.4);
}
.z-cta-btn--outline {
  background: transparent;
  color: var(--z-accent);
  border: 2px solid var(--z-accent);
  box-shadow: none;
}
.z-cta-btn--outline:hover {
  background: var(--z-accent);
  color: #fff;
}
.z-cta-btn--full {
  display: block;
  width: 100%;
}
.z-cta-btn--primary {
  background: var(--z-primary);
  box-shadow: 0 4px 16px rgba(26,79,168,.3);
}
.z-cta-btn--primary:hover {
  background: var(--z-primary-dark);
}

.z-cta-note {
  font-size: .8rem;
  color: var(--z-muted);
  margin-top: 12px;
  line-height: 1.7;
}

/* =====================================================
   SECTION 1 — Hero
   ===================================================== */
.z-hero {
  background: linear-gradient(135deg, var(--z-primary) 0%, var(--z-primary-dark) 100%);
  color: #fff;
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ヒーロー背景写真（グラデーションの下に重ねる） */
.z-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: luminosity;
}

.z-hero__tag,
.z-hero > .container {
  position: relative;
  z-index: 1;
}

.z-hero__tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: .04em;
}

.z-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #fff;
}
.z-hero__title em {
  font-style: normal;
  color: #ffd166;
  display: block;
}

.z-hero__sub {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 16px;
  opacity: .9;
}

/* 痛みリスト */
.z-pain-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: left;
}
.z-pain-list li {
  background: rgba(255,255,255,.1);
  border-left: 4px solid #ffd166;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 0 6px 6px 0;
  font-size: .95rem;
  line-height: 1.6;
}
.z-pain-list li::before {
  content: '✗ ';
  color: #ffd166;
  font-weight: 700;
}

/* Offer box */
.z-hero__offer {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--z-radius);
  padding: 28px 32px;
  max-width: 640px;
  margin: 0 auto 32px;
}
.z-hero__offer-label {
  font-size: .9rem;
  margin-bottom: 10px;
  opacity: .9;
}
.z-hero__offer-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #fff;
}
.z-hero__offer-badge {
  display: inline-block;
  background: var(--z-accent);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
}
.z-hero__offer-badge strong {
  font-size: 1.1em;
}

/* LINE特有のhero変形 */
.z-hero__line-box {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--z-radius);
  padding: 28px 32px;
  max-width: 640px;
  margin: 0 auto 32px;
}
.z-hero__line-box h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #fff;
  margin-bottom: 12px;
}
.z-hero__line-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0;
}
.z-hero__line-list li {
  font-size: .9rem;
  padding: 6px 0;
  opacity: .9;
}
.z-hero__line-list li::before {
  content: '✓ ';
  color: #06c755;
  font-weight: 700;
}

/* =====================================================
   SECTION 2 — Story
   ===================================================== */
.z-story {
  background: var(--z-bg);
  padding: 80px 0;
}

.z-story__content {
  max-width: 720px;
  margin: 0 auto 36px;
}

.z-story__block {
  background: var(--z-white);
  border-radius: var(--z-radius);
  padding: 28px 32px;
  margin-bottom: 8px;
  box-shadow: var(--z-shadow);
  line-height: 1.85;
  font-size: .95rem;
  color: var(--z-text);
}
.z-story__block p { margin-bottom: 10px; }
.z-story__block p:last-child { margin-bottom: 0; }

.z-story__block-label {
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 10px !important;
  letter-spacing: .03em;
}

.z-story__block--failure { border-left: 5px solid #dc3545; }
.z-story__block--turning { border-left: 5px solid #ffc107; }
.z-story__block--success { border-left: 5px solid #28a745; }

.z-story__arrow {
  text-align: center;
  font-size: 1.8rem;
  color: var(--z-primary);
  padding: 4px 0;
  line-height: 1;
}

/* =====================================================
   SECTION 3 — Why Free / Reason
   ===================================================== */
.z-reason {
  background: var(--z-white);
  padding: 80px 0;
}

.z-reason__intro {
  font-size: .95rem;
  color: var(--z-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

.z-reason__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
}

.z-reason__card {
  background: var(--z-primary-light);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 28px 28px;
  line-height: 1.75;
}

.z-reason__num {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--z-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.z-reason__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--z-text);
  margin-bottom: 12px;
  line-height: 1.55;
}

.z-reason__card p {
  font-size: .9rem;
  color: var(--z-muted);
}

/* =====================================================
   SECTION 4 — Contents
   ===================================================== */
.z-contents {
  background: var(--z-bg);
  padding: 80px 0;
}

.z-contents__sub {
  font-size: .95rem;
  color: var(--z-muted);
  margin-bottom: 36px;
}

.z-content-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.z-content-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--z-white);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.z-content-list__num {
  flex-shrink: 0;
  background: var(--z-primary);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .03em;
}

.z-content-list li > div {
  line-height: 1.7;
}

.z-content-list li strong {
  display: block;
  font-size: .97rem;
  color: var(--z-text);
  margin-bottom: 4px;
}

.z-content-list li p {
  font-size: .87rem;
  color: var(--z-muted);
  margin: 0;
}

/* =====================================================
   SECTION 5 — Bonus
   ===================================================== */
.z-bonus {
  background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
  padding: 80px 0;
  border-top: 1px solid #fde8da;
}

.z-bonus__card {
  max-width: 720px;
  background: var(--z-white);
  border: 2px solid var(--z-accent);
  border-radius: var(--z-radius);
  padding: 36px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(232,93,4,.12);
  position: relative;
}

.z-bonus__badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--z-accent);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: .06em;
}

.z-bonus__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--z-text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.z-bonus__content p {
  font-size: .9rem;
  color: var(--z-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.z-bonus__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.z-bonus__list li {
  font-size: .88rem;
  color: var(--z-text);
  padding: 4px 0;
  line-height: 1.6;
}

.z-bonus__note {
  font-size: .78rem !important;
  color: #999 !important;
  margin-bottom: 0 !important;
}

/* =====================================================
   SECTION 6 — Detail / CTA Form
   ===================================================== */
.z-detail {
  background: var(--z-white);
  padding: 80px 0;
}

.z-detail__card {
  max-width: 800px;
  background: var(--z-bg);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 40px;
}

.z-detail__scarcity {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: #7a4f00;
  margin-bottom: 28px;
  text-align: center;
}
.z-detail__scarcity strong { color: #c04d02; font-size: 1.1em; }

.z-detail__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.z-detail__table th,
.z-detail__table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--z-border);
  font-size: .92rem;
  text-align: left;
  vertical-align: top;
}
.z-detail__table th {
  width: 30%;
  color: var(--z-primary);
  font-weight: 700;
  background: var(--z-primary-light);
  white-space: nowrap;
}
.z-detail__table tr:last-child th,
.z-detail__table tr:last-child td {
  border-bottom: none;
}

/* Price styling */
.z-price-cross {
  text-decoration: line-through;
  color: #999;
  font-size: .9em;
  margin-right: 6px;
}
.z-price-free {
  color: var(--z-accent);
  font-size: 1.2em;
}

/* フォーム 2列グリッド */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* CTA Form */
.z-cta-form {
  background: var(--z-white);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 32px;
}

.z-cta-form__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--z-text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--z-primary-light);
}

/* LINE登録ボックス */
.z-line-register {
  background: linear-gradient(135deg, #06c755 0%, #04a845 100%);
  border-radius: var(--z-radius);
  padding: 40px;
  text-align: center;
  color: #fff;
  max-width: 640px;
}
.z-line-register h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.z-line-register p {
  font-size: .9rem;
  opacity: .9;
  margin-bottom: 24px;
}
.z-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #06c755;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.z-line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.z-line-icon {
  font-size: 1.4rem;
}

/* =====================================================
   SECTION 7 — Voice / 声
   ===================================================== */
.z-voice {
  background: var(--z-bg);
  padding: 80px 0;
}

.z-voice__sub {
  font-size: .95rem;
  color: var(--z-muted);
  margin-bottom: 36px;
}

.z-voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 32px;
}

.z-voice__card {
  background: var(--z-white);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 24px;
  box-shadow: var(--z-shadow);
}

.z-voice__result {
  font-size: .85rem;
  color: var(--z-primary);
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--z-border);
  line-height: 1.5;
}
.z-voice__result strong {
  font-size: 1em;
  color: var(--z-accent);
}

.z-voice__text {
  font-size: .87rem;
  color: var(--z-text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.z-voice__name {
  font-size: .78rem;
  color: #999;
  margin-top: auto;
}

.z-voice__note {
  font-size: .75rem;
  color: #aaa;
  margin-bottom: 32px;
}

/* =====================================================
   SECTION 8 — Profile
   ===================================================== */
.z-profile {
  background: var(--z-white);
  padding: 80px 0;
}

.z-profile__content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  max-width: 860px;
  align-items: flex-start;
}

/* プロフィール写真（実画像） */
.z-profile__photo {
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: center 8%;
  border-radius: var(--z-radius);
  box-shadow: var(--z-shadow);
}

/* プロフィール写真プレースホルダー（写真未設定時） */
.z-profile__img-placeholder {
  width: 200px;
  height: 260px;
  background: var(--z-primary-light);
  border-radius: var(--z-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-primary);
  font-size: .85rem;
  font-weight: 500;
  border: 2px dashed var(--z-border);
}

.z-profile__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--z-text);
  margin-bottom: 4px;
}

.z-profile__title {
  font-size: .85rem;
  color: var(--z-primary);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.6;
}

.z-profile__text p {
  font-size: .9rem;
  color: var(--z-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}

.z-profile__certs {
  background: var(--z-bg);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
}

.z-profile__certs-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--z-primary);
  margin-bottom: 8px;
}

.z-profile__certs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

.z-profile__certs li {
  font-size: .82rem;
  color: var(--z-muted);
  line-height: 1.6;
}
.z-profile__certs li::before {
  content: '・';
  color: var(--z-primary);
}

.z-profile__media {
  font-size: .85rem;
  color: var(--z-muted);
}

/* =====================================================
   SECTION — Postscript (P.S.)
   ===================================================== */
.z-postscript {
  background: var(--z-primary-light);
  padding: 64px 0;
  border-top: 1px solid var(--z-border);
}

.z-postscript__inner {
  max-width: 680px;
  line-height: 1.9;
}

.z-postscript__label {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--z-primary);
  margin-bottom: 16px;
}

.z-postscript__inner p {
  font-size: .93rem;
  color: var(--z-text);
  margin-bottom: 14px;
}

/* =====================================================
   レスポンシブ — タブレット (≤1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .z-voice__grid { grid-template-columns: repeat(2, 1fr); }
  .z-reason__grid { gap: 20px; }
  .z-bonus__card { gap: 20px; }
  .z-profile__content { gap: 32px; }
  .z-compare__table { min-width: 480px; }
}

/* =====================================================
   レスポンシブ — モバイル (≤768px)
   ===================================================== */
@media (max-width: 768px) {
  .z-hero { padding: 80px 0 48px; }
  .z-hero__title { font-size: 1.5rem; }

  .z-reason__grid { grid-template-columns: 1fr; }
  .z-voice__grid { grid-template-columns: 1fr; }

  .z-profile__content { grid-template-columns: 1fr; }
  .z-profile__img { text-align: center; }
  .z-profile__img-placeholder { margin: 0 auto; }
  .z-profile__certs ul { grid-template-columns: 1fr; }

  .z-bonus__card { flex-direction: column; gap: 16px; }
  .z-detail__card { padding: 24px 20px; }
  .z-cta-form { padding: 24px 20px; }
  .z-detail__table th { width: 35%; font-size: .82rem; }
  .z-detail__table td { font-size: .82rem; }
  .z-line-register { padding: 28px 20px; }
  .z-cta-btn { padding: 15px 28px; }

  /* form-row: 2カラム→1カラム */
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* =====================================================
   レスポンシブ — 小型 (≤539px)
   ===================================================== */
@media (max-width: 539px) {
  .z-pain-list li { font-size: .88rem; }
  .z-hero__offer { padding: 20px 16px; }
  .z-cta-btn { padding: 16px 20px; font-size: .92rem; }
  .z-content-list li { gap: 12px; padding: 16px; }
  .z-content-list__num { width: 32px; height: 32px; font-size: .72rem; }
  .z-voice__grid { grid-template-columns: 1fr; }
  .z-detail__table th, .z-detail__table td { padding: 10px 8px; }
  .z-compare__table thead th { font-size: .75rem; line-height: 1.35; padding: 10px 10px; }
  .z-compare__table tbody td { font-size: .78rem; padding: 10px 8px; }
  .z-compare__table tbody td:first-child { font-size: .74rem; padding: 10px 8px; }
}

/* =====================================================
   レスポンシブ — 超小型 (≤420px)
   ===================================================== */
@media (max-width: 420px) {
  .z-hero__title { font-size: 1.35rem; }
  .z-hero__offer { padding: 16px 14px; }
  .z-cta-btn { padding: 14px 16px; font-size: .88rem; }
  .z-detail__card { padding: 20px 16px; }
  .z-cta-form { padding: 20px 16px; }
  .z-compare__table { min-width: 100%; font-size: .72rem; }
  .z-compare__table thead th { font-size: .7rem; padding: 8px 6px; }
  .z-compare__table tbody td { font-size: .72rem; padding: 8px 6px; }
  .z-compare__table tbody td:first-child { font-size: .7rem; }
  .z-urgency__card { min-width: 100%; }
  .z-urgency { padding: 40px 0; }
  .z-onlyone { padding: 20px 18px; }
}

/* =====================================================
   COMPARE — 競合との違い（なぜあなたから・他と何が違うのか）
===================================================== */
.z-compare {
  padding: var(--z-section-padding);
  background: #fff;
}

.z-compare__intro {
  font-size: .95rem;
  color: var(--z-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 680px;
}

.z-compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--z-radius);
  box-shadow: var(--z-shadow);
  margin-bottom: 32px;
  /* スクロール可能ヒント */
  scroll-snap-type: x mandatory;
}

.z-compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: #fff;
}

.z-compare__table thead th {
  padding: 14px 18px;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  background: #f0f4f8;
  color: var(--z-text);
  border-bottom: 2px solid var(--z-border);
  line-height: 1.5;
}

.z-compare__table thead th:first-child { text-align: left; }

.z-compare__table thead th.z-th--us {
  background: var(--z-primary);
  color: #fff;
}

.z-compare__table tbody td {
  padding: 16px 14px;
  text-align: center;
  font-size: .875rem;
  border-bottom: 1px solid var(--z-border);
  color: var(--z-muted);
  line-height: 1.5;
  vertical-align: middle;
}

.z-compare__table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--z-text);
  background: #fafbfc;
  font-size: .84rem;
  line-height: 1.6;
}

.z-compare__table tbody tr:last-child td { border-bottom: none; }

.z-compare__table tbody td.z-td--us {
  background: #f0f8f4;
  font-weight: 700;
  color: var(--z-primary);
}

.z-compare__ok   { color: #1b8a4a; font-weight: 700; }
.z-compare__ng   { color: #bbb; }
.z-compare__half { color: #d97706; }

.z-compare__table tbody td strong {
  display: block;
  font-size: .875rem;
  color: var(--z-text);
  margin-bottom: 2px;
}

.z-compare__table tbody td small {
  display: block;
  font-size: .75rem;
  line-height: 1.5;
  margin-top: 4px;
  opacity: .85;
}

/* ONLY ONE バナー */
.z-onlyone {
  background: var(--z-primary);
  color: #fff;
  border-radius: var(--z-radius);
  padding: 28px 36px;
  text-align: center;
}

.z-onlyone__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  opacity: .75;
  margin-bottom: 10px;
}

.z-onlyone__text {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(.95rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.75;
}

.z-onlyone__text em {
  font-style: normal;
  color: #ffd166;
}

/* =====================================================
   URGENCY — なぜ今なのか
===================================================== */
.z-urgency {
  padding: 52px 0;
  background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%);
  border-top: 3px solid #e85d04;
  border-bottom: 3px solid #e85d04;
}

.z-urgency__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.z-urgency__eyebrow {
  display: inline-block;
  background: #e85d04;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 4px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.z-urgency__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #9a2f02;
  margin-bottom: 28px;
  line-height: 1.55;
}

.z-urgency__cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.z-urgency__card {
  background: #fff;
  border: 2px solid #e85d04;
  border-radius: 10px;
  padding: 20px 22px;
  flex: 1;
  min-width: 190px;
  max-width: 260px;
  text-align: left;
}

.z-urgency__card-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.z-urgency__card strong {
  display: block;
  color: #c0390a;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.z-urgency__card p {
  font-size: .82rem;
  color: var(--z-text);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .z-urgency__cards { flex-direction: column; align-items: stretch; }
  .z-urgency__card  { max-width: 100%; min-width: 0; }
  .z-compare__table tbody td:first-child { font-size: .78rem; }
}
