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

html,
body {
  height: 100%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ",
    sans-serif;
  background: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4a4a4a;
}

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

/* ============================================================
   LP container — モバイル基準・PCでも縦長維持
   ============================================================ */
.lp {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ============================================================
   サイトヘッダー(サービスロゴのみ)
   ============================================================ */
.site-header {
  padding: 14px 20px;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}

.site-logo {
  display: inline-block;
  width: auto;
  max-width: 280px;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

/* ============================================================
   セクション基本レイアウト
   全セクション共通の position/width 指定を一括化
   ============================================================ */
.lp section {
  position: relative;
  width: 100%;
}

/* 各セクションの背景色(白以外を必要とする場合のみ画像と継ぎ目消し用に指定)
   .lp の白背景がデフォルトなので、白セクションは指定不要 */
.sec3 { background: #f0f6fb; }
.sec4 { background: #faf9f7; }

/* ============================================================
   セクション画像(<picture> 配下の <img> に共通スタイル)
   ============================================================ */
.section-image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

/* ============================================================
   CTAブロック(HTML製・FV直下/CTA#2/CTA#3 で再利用)
   フォームボタン(大型オレンジ)+ LINEボタン(緑)の2ボタン構成
   ============================================================ */
.cta-block {
  padding: 28px 20px 32px;
  background: #f0f6fb;
  text-align: center;
}

/* FV直下のCTAブロックは背景白で連続感(FV画像下端と同色) */
.cta-block--first {
  background: #ffffff;
  padding-top: 24px;
  padding-bottom: 32px;
}

.cta-block-eyebrow {
  margin: 0 0 6px;
  color: #1e5a8e;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-feature-settings: "palt" 1;
}

.cta-block-lead {
  margin: 0 0 18px;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-feature-settings: "palt" 1;
}

/* メインCTA:フォームボタン(大型・オレンジ・★ぷよぷよ動く★) */
.cta-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 72px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #ee8a52 0%, #e8763e 100%);
  border-radius: 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.01em;
  font-feature-settings: "palt" 1;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 18px rgba(232, 118, 62, 0.35);
  transition: box-shadow 0.15s ease, background 0.15s ease;
  transform-origin: center;
  will-change: transform;
  animation: cta-form-btn-puyo 1.4s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}

/* ぷよぷよアニメーション(squash-and-stretch でゼリー感) */
@keyframes cta-form-btn-puyo {
  0%, 100% {
    transform: scale(1, 1);
  }
  20% {
    transform: scale(1.05, 0.95);
  }
  40% {
    transform: scale(0.97, 1.04);
  }
  60% {
    transform: scale(1.02, 0.98);
  }
  80% {
    transform: scale(0.99, 1.01);
  }
}

.cta-form-btn:hover {
  background: linear-gradient(180deg, #e8763e 0%, #d6622b 100%);
  box-shadow: 0 10px 24px rgba(232, 118, 62, 0.5);
  animation-play-state: paused;
}

.cta-form-btn:active {
  box-shadow: 0 4px 10px rgba(232, 118, 62, 0.3);
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .cta-form-btn {
    animation: none;
  }
}

.cta-form-btn-text {
  display: inline-block;
}

.cta-arrow {
  display: inline-block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

/* サブCTA:LINEボタン(緑) */
.cta-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  margin-top: 12px;
  padding: 14px 20px;
  background: #06c755;
  border-radius: 14px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-feature-settings: "palt" 1;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.25);
  transition: background 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.cta-line-btn-text {
  display: inline-block;
}

.cta-line-btn:hover {
  background: #05a748;
  transform: translateY(-1px);
}

/* LINE公式アイコン(画像)— ボタン内に配置 */
.cta-line-icon-img {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: contain;
}

/* CTAブロック下部のトラストライン(全国対応・査定無料・秘密厳守・家族に内緒OK) */
.cta-trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.cta-trust-line li {
  position: relative;
  color: #4a4a4a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.cta-trust-line li::before {
  content: "✓";
  margin-right: 4px;
  color: #e8763e;
  font-weight: 900;
}

/* ============================================================
   SEC12 会社情報
   宅建業者票画像 + 情報テーブル + 事業所一覧
   信頼の最終補強 → フォームへ繋ぐ
   ============================================================ */
.sec12-company {
  position: relative;
  padding: 40px 20px 32px;
  background: #ffffff;
}

.company-header {
  text-align: center;
  margin-bottom: 24px;
}

.company-eyebrow {
  margin: 0 0 8px;
  color: #3b7fbf;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.company-title {
  margin: 0 0 8px;
  color: #1e5a8e;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
}

.company-lead {
  margin: 0;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.7;
}

.company-lead strong {
  color: #1e5a8e;
  font-weight: 800;
}

/* 宅建業者票画像(免許番号と事業所の間に配置) */
.company-license {
  margin: 0 0 28px;
  padding: 12px;
  background: #faf9f7;
  border: 1px solid #e0d8cc;
  border-radius: 8px;
  text-align: center;
}

.company-license img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid #d0c8b8;
}

/* 会社情報テーブル(dl) */
.company-info {
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid #e6e8eb;
}

.company-info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px solid #e6e8eb;
}

.company-info dt {
  margin: 0;
  color: #1e5a8e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.company-info dd {
  margin: 0;
  color: #2a2a2a;
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
}

.company-info dd a {
  color: #1e5a8e;
  font-weight: 700;
  text-decoration: underline;
}

/* 事業所(3拠点)— フラットテキストフロー(カード化しない) */
.company-offices-title {
  margin: 0 0 8px;
  padding-bottom: 8px;
  color: #1e5a8e;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  border-bottom: 2px solid #1e5a8e;
}

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

.company-office {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e6e8eb;
}

.company-office:last-child {
  border-bottom: 0;
}

.company-office-text {
  min-width: 0;
}

.company-office h4 {
  margin: 0 0 4px;
  color: #1e5a8e;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.company-office p {
  margin: 0;
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.7;
}

.company-office-img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e6e8eb;
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(30, 90, 142, 0.08);
}

.company-office-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.4s ease;
}

.company-office:hover .company-office-img img {
  transform: scale(1.04);
}

/* ============================================================
   SEC14 無料査定フォーム(最終CTA本体)
   FAQ画像下端(▼)から自然に繋ぐため、上部余白は最小化。
   見出しテキストは画像内テキストと同じトーン(ネイビー極太+
   オレンジ強調・余計な装飾なし)で連続感を出す。
   ============================================================ */
.sec14-form {
  position: relative;
  padding: 12px 20px 48px;
  background: #f0f6fb; /* FAQ画像下部の薄青と同色で継ぎ目消し */
  scroll-margin-top: 16px;
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
}

.form-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.form-badges li {
  padding: 4px 12px;
  background: #1e5a8e;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.form-title {
  margin: 0;
  color: #1e5a8e;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.form-title-accent {
  color: #e8763e;
  font-size: 30px;
  font-weight: 900;
}

/* --- フォーム本体 --- */
.quote-form {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.08);
}

.form-row {
  margin-bottom: 20px;
  border: 0;
  padding: 0;
}

.form-row:last-of-type {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #1e5a8e;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.form-sublabel {
  display: block;
  margin: 12px 0 6px;
  color: #4a4a4a;
  font-size: 13px;
  font-weight: 600;
}

.form-sublabel:first-of-type {
  margin-top: 0;
}

.required-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: #d32f2f;
  border-radius: 4px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}

.optional-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: #b0b0b0;
  border-radius: 4px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}

.form-control {
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  background: #f7f9fc;
  border: 1.5px solid #d0d4dc;
  border-radius: 8px;
  color: #2a2a2a;
  font-family: inherit;
  font-size: 16px; /* iOS zoom 防止のため 16px 以上 */
  line-height: 1.5;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

/* 郵便番号フィールドは短め(数字7桁前提) */
.form-control-zip {
  max-width: 220px;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

select.form-control {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231E5A8E'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  padding-right: 44px;
}

textarea.form-control {
  min-height: auto;
  resize: vertical;
}

.form-control:focus {
  outline: none;
  background: #ffffff;
  border-color: #1e5a8e;
  box-shadow: 0 0 0 3px rgba(30, 90, 142, 0.15);
}

.form-control:invalid:not(:placeholder-shown) {
  border-color: #d32f2f;
}

.contact-fields {
  padding: 16px;
  background: #f7f9fc;
  border: 1.5px dashed #d0d4dc;
  border-radius: 8px;
}

.contact-fields .form-control {
  background: #ffffff;
}

.form-hint {
  margin: 0 0 12px;
  color: #6b6b6b;
  font-size: 13px;
  line-height: 1.5;
}

.form-error {
  margin: 8px 0 0;
  color: #d32f2f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.form-note {
  margin: 8px 0 0;
  color: #6b6b6b;
  font-size: 12px;
  line-height: 1.5;
}

/* --- 同意チェックボックス --- */
.form-consent {
  padding: 16px;
  background: #fffbf6;
  border: 1.5px solid #f0e0c8;
  border-radius: 8px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
}

.consent-checkbox {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #1e5a8e;
}

.consent-label a {
  color: #1e5a8e;
  font-weight: 700;
  text-decoration: underline;
}

/* --- 送信ボタン --- */
.form-submit {
  display: block;
  width: 100%;
  margin-top: 24px;
  min-height: 64px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #ee8a52 0%, #e8763e 100%);
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(232, 118, 62, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.form-submit:hover {
  background: linear-gradient(180deg, #e8763e 0%, #d6622b 100%);
  box-shadow: 0 8px 20px rgba(232, 118, 62, 0.45);
  transform: translateY(-1px);
}

.form-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(232, 118, 62, 0.3);
}

.form-submit:disabled {
  background: #b0b0b0;
  cursor: wait;
  box-shadow: none;
  transform: none;
  opacity: 0.85;
}

.form-submit-hint {
  margin: 8px 0 0;
  color: #8b8b8b;
  font-size: 12px;
  text-align: center;
}

/* --- 代替CTA(電話/LINE) --- */
.form-alt-cta {
  margin-top: 28px;
  text-align: center;
}

.form-alt-cta-title {
  position: relative;
  margin: 0 0 16px;
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 600;
}

.form-alt-cta-title::before,
.form-alt-cta-title::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 8px;
  background: #c0c4cc;
  vertical-align: middle;
}

.btn-tel,
.btn-line {
  display: block;
  margin-bottom: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  transition: transform 0.15s ease, opacity 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-tel {
  background: #ffffff;
  border: 2px solid #1e5a8e;
  color: #1e5a8e;
}

.btn-tel:hover {
  background: #1e5a8e;
  color: #ffffff;
}

.btn-tel-num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.btn-tel-sub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
}

.btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #06c755;
  color: #ffffff;
  font-size: 16px;
}

.btn-line:hover {
  background: #05a748;
}

.btn-line-icon-img {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 5px;
  object-fit: contain;
}

/* --- ハニーポット(ボット対策・人間の目には見えない) --- */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* --- 送信完了表示(同一ページ内・GAS 未設定時のフォールバック) --- */
.form-thanks {
  padding: 48px 20px;
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.08);
}

.form-thanks h2 {
  margin: 0 0 16px;
  color: #1e5a8e;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
}

.form-thanks p {
  margin: 0;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================================
   SEC15 フッター
   法人名・免許番号・ナビゲーション・著作権表記
   ============================================================ */
.footer {
  padding: 28px 20px 24px;
  background: #1e5a8e;
  color: #ffffff;
  text-align: center;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-company {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.footer-license {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  line-height: 1.5;
}

.footer-nav {
  margin-bottom: 18px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
}

.footer-nav a:hover {
  text-decoration-color: #ffffff;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.5;
}

/* ============================================================
   プライバシーポリシーページ(legal-page)
   ============================================================ */
.legal-page {
  background: #ffffff;
}

.legal-header {
  padding: 40px 24px 24px;
  text-align: center;
  background: linear-gradient(180deg, #f0f6fb 0%, #ffffff 100%);
  border-bottom: 1px solid #e6e8eb;
}

.legal-eyebrow {
  margin: 0 0 8px;
  color: #3b7fbf;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.legal-title {
  margin: 0 0 8px;
  color: #1e5a8e;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.3;
}

.legal-lead {
  margin: 0;
  color: #6b6b6b;
  font-size: 13px;
  font-weight: 600;
}

.legal-content {
  padding: 28px 24px 8px;
}

.legal-intro {
  margin: 0 0 24px;
  color: #2a2a2a;
  font-size: 14px;
  line-height: 1.85;
}

.legal-section {
  margin-bottom: 28px;
}

.legal-section h2 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  color: #1e5a8e;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  border-bottom: 2px solid #1e5a8e;
}

.legal-section p {
  margin: 0 0 12px;
  color: #2a2a2a;
  font-size: 14px;
  line-height: 1.85;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 8px;
  color: #2a2a2a;
  font-size: 14px;
  line-height: 1.8;
}

.legal-section li:last-child {
  margin-bottom: 0;
}

/* お問合せ窓口の dl */
.legal-contact {
  margin: 12px 0 0;
  padding: 16px;
  background: #faf9f7;
  border: 1px solid #e6e8eb;
  border-radius: 8px;
}

.legal-contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed #e6e8eb;
}

.legal-contact-row:last-child {
  border-bottom: 0;
}

.legal-contact dt {
  color: #1e5a8e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.legal-contact dd {
  margin: 0;
  color: #2a2a2a;
  font-size: 13px;
  line-height: 1.6;
}

.legal-contact dd a {
  color: #1e5a8e;
  font-weight: 700;
  text-decoration: underline;
}

.legal-date {
  margin: 32px 0 0;
  color: #6b6b6b;
  font-size: 12px;
  text-align: right;
  line-height: 1.6;
}

.legal-back {
  margin: 24px 0;
  padding: 0 24px;
  text-align: center;
}

.legal-back a {
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff;
  border: 1.5px solid #1e5a8e;
  border-radius: 8px;
  color: #1e5a8e;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}

.legal-back a:hover {
  background: #1e5a8e;
  color: #ffffff;
}

/* ============================================================
   Thanks ページ(thanks.html)
   フォーム送信完了後の独立ページ・広告CV計測用
   ============================================================ */
.thanks-page {
  padding: 60px 24px 56px;
  text-align: center;
  background: #ffffff;
}

.thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  background: linear-gradient(180deg, #ee8a52 0%, #e8763e 100%);
  border-radius: 50%;
  color: #ffffff;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(232, 118, 62, 0.35);
}

.thanks-title {
  margin: 0 0 20px;
  color: #1e5a8e;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.thanks-lead {
  margin: 0 0 28px;
  color: #2a2a2a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

.thanks-lead strong {
  color: #e8763e;
  font-weight: 900;
}

.thanks-hours {
  display: inline-block;
  margin-top: 6px;
  color: #6b6b6b;
  font-size: 13px;
}

.thanks-receipt {
  display: inline-block;
  margin: 0 auto 28px;
  padding: 14px 28px;
  background: #faf9f7;
  border: 1px solid #e0d8cc;
  border-radius: 10px;
}

.thanks-receipt-label {
  margin: 0 0 4px;
  color: #6b6b6b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.thanks-receipt-id {
  margin: 0;
  color: #1e5a8e;
  font-size: 18px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.thanks-note {
  margin: 0 auto 32px;
  max-width: 360px;
  color: #6b6b6b;
  font-size: 13px;
  line-height: 1.75;
}

.thanks-cta-block {
  margin: 32px 0 24px;
  padding: 20px 16px;
  background: #f0f6fb;
  border-radius: 12px;
}

.thanks-cta-label {
  margin: 0 0 12px;
  color: #1e5a8e;
  font-size: 14px;
  font-weight: 700;
}

.thanks-back {
  margin: 24px 0 0;
  font-size: 14px;
}

.thanks-back a {
  color: #1e5a8e;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thanks-back a:hover {
  text-decoration-color: #e8763e;
}
