/* CTA セクション（参考デザイン） */
:root {
  --ink: #1b242e;
  --ink-weak: #5e6a73;
  --teal: #1d9fa3;
  /* 背景ティール */
  --teal-deep: #1a8a8e;
  /* グラデ濃色 */
  --pill: #fde9e2;
  /* 参考：未使用（差し色用） */
  --note: #d6eceb;
  /* 品質担保バーの背景 */
  --cta: #f44a14;
  /* ボタン（赤橙） */
  --cta-ink: #fff;
  --card: #ffffff;
  --shadow: 0 50px 140px rgba(3, 91, 99, .35);
  --radius: 22px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box
}

.sp {
  display: none
}

@media (max-width: 680px) {
  .sp {
    display: inline
  }
}

/* 背景：ティールの帯＋中央カード */
.cta-block {
  background: radial-gradient(700px 220px at 50% 0%, rgba(255, 255, 255, .15), transparent 60%),
    linear-gradient(0deg, var(--teal), var(--teal));
  padding: clamp(36px, 6vw, 72px) 16px;
}

.cta-wrap {
  max-width: 1200px;
  margin: 0 auto
}

.cta-card {
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3.5vw, 44px);
  margin: 0 auto;
}

/* 見出し（下線ハイライト） */
.cta-title {
  font-size: clamp(26px, 4.2vw, 48px);
  line-height: 1.3;
  margin: 0 0 10px;
  text-align: center
}

.cta-title .hl {
  position: relative;
  display: inline-block
}

.cta-title .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: .55em;
  background: linear-gradient(transparent 55%, #ffe86a 0);
  z-index: -1;
  border-radius: 8px
}

.cta-lead {
  margin: 0 auto 16px;
  text-align: center;
  color: var(--ink-weak);
  max-width: 980px
}

/* 注記バー */
.cta-note {
  text-align: center;
  margin: 8px auto 18px;
  padding: 12px 14px;
  background: var(--note);
  border-radius: 14px;
  font-weight: 900;
  color: #228489;
  max-width: 980px;
}

/* CTAボタン（楕円ピル） */
.cta-cta {
  display: flex;
  justify-content: center
}

.cta-button {
  text-decoration: none;
  display: block;
  color: var(--cta-ink);
  background: var(--cta);
  border-radius: 999px;
  padding: 12px;
  width: min(980px, 96%);
  box-shadow: 0 18px 50px rgba(244, 74, 20, .35);
}

.cta-caption {
  display: block;
  text-align: center;
  font-weight: 800;
  color: #ffe5d9;
  letter-spacing: .05em;
  font-size: clamp(12px, 1.6vw, 14px);
}

.cta-btnline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 900;
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.2;
}

.mail {
  width: 1.15em;
  height: 1.15em;
  fill: #fff
}

.label {
  white-space: nowrap
}

.cta-button:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
  transition: .2s transform, .2s filter
}

/* ==== CTA compact overrides ==== */

/* 余白をやや圧縮 */
.cta-card {
  padding: clamp(16px, 2.4vw, 32px);
}

/* 見出しを一段小さく */
.cta-title {
  font-size: clamp(22px, 3.0vw, 36px);
  line-height: 1.28;
  margin-bottom: 8px;
}

/* リード文・注記の文字サイズを縮小 */
.cta-lead {
  font-size: clamp(13px, 1.4vw, 16px);
}

.cta-note {
  font-size: clamp(12px, 1.2vw, 14px);
  padding: 10px 12px;
}

/* ボタンの高さ・文字を控えめに */
.cta-button {
  padding: 10px 12px;
  /* 高さを少し低く */
}

.cta-caption {
  font-size: clamp(11px, 1.2vw, 12px);
}

.cta-btnline {
  gap: 10px;
  font-size: clamp(18px, 2.2vw, 24px);
  /* 本文見出しを一段小さく */
  line-height: 1.15;
}

.mail {
  width: 1em;
  height: 1em;
}

/* スマホはさらに微調整（任意） */
@media (max-width: 680px) {
  .cta-title {
    font-size: 17px;
    line-height: 22px;
    font-weight: 800;
  }

  .cta-btnline {
    font-size: 17px;
  }
}