/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Noto Sans JP', sans-serif; color: #333; font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header { background: #fff; border-bottom: 2px solid #e8e8e8; padding: 8px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo-img { width: 45px; height: 45px; object-fit: contain; flex-shrink: 0; }
.header-logo-text { display: flex; flex-direction: column; justify-content: center; gap: 2px; height: 45px; align-items: flex-start; }
.header-tagline { font-size: 12px; color: #666; line-height: 1.2; margin-left: 12px; }
.logo-name { font-size: 24px; font-weight: 900; color: #1a1a1a; letter-spacing: 1px; line-height: 1.2; margin-left: -0.3em; }
.header-service-name { display: none; }
.header-service-sub  { display: none; }

.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.header-contact-label { font-size: 12px; color: #666; }
.header-actions { display: flex; align-items: center; gap: 10px; }

.header-tel { display: flex; flex-direction: column; align-items: center; }
.tel-top-row { display: flex; align-items: center; gap: 6px; }
.tel-icon { font-size: 14px; }
.tel-number { font-size: 22px; font-weight: 900; color: #1a1a1a; letter-spacing: 1px; line-height: 1; }
.tel-hours { font-size: 10px; color: #666; }

.btn-line,
.btn-estimate { border-radius: 6px; padding: 8px 14px; display: flex; align-items: center; gap: 10px; font-weight: 700; min-width: 150px; color: #fff; }
.btn-line { background: #4CC764; }
.btn-estimate { background: #F14A0C; }
.btn-estimate-icon { display: block; width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; vertical-align: middle; }
.btn-estimate-main { font-size: 13px; font-weight: 700; }
.btn-estimate-sub { font-size: 10px; opacity: .9; }

/* ===== HERO ===== */
.hero { position: relative; max-width: 1080px; margin: 0 auto; padding: 0; }
.hero-img { width: 100%; height: auto; display: block; }

/* 価格吹き出し（オーバーレイ） */
.hero-bubble {
  position: absolute;
  left: calc(30% - 20px);
  top: 55%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  color: #042c53;
  background: #fff;
  border: 3px solid #1e6fb8;
  border-radius: 16px;
  padding: clamp(6px, 1.2vw, 14px) clamp(12px, 2vw, 26px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
/* 1行目：月々＋税込を同じ行に小さめで */
.bubble-label {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}
.bubble-monthly { font-size: clamp(11px, 1.4vw, 17px); font-weight: 700; }
.bubble-tax     { font-size: clamp(10px, 1.2vw, 15px); font-weight: 700; font-feature-settings: "palt" 1; letter-spacing: -0.05em; }
/* 2行目：数字（主役）＋円〜（少し小さめ）を baseline 揃えで1行に */
.bubble-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(1px, 0.4vw, 4px);
  white-space: nowrap;
}
.bubble-num  { font-size: clamp(20px, 3.4vw, 36px); font-weight: 900; }
.bubble-yen  { font-size: clamp(12px, 1.8vw, 22px); font-weight: 900; }
.bubble-note { font-size: clamp(12px, 1.7vw, 21px); font-weight: 900; color: #f5821f; margin-top: 4px; }

/* しっぽ（左向き）: 枠線付き三角を擬似要素2枚で作る */
.hero-bubble::before,
.hero-bubble::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}
/* 外側（青枠の三角） */
.hero-bubble::before {
  border-width: 16px 18px 16px 0;
  border-color: transparent #1e6fb8 transparent transparent;
}
/* 内側（白の三角・枠線ぶん内側へ重ねる） */
.hero-bubble::after {
  margin-right: -3px;
  border-width: 12px 14px 12px 0;
  border-color: transparent #fff transparent transparent;
}

/* SP: 構図が変わるため位置だけ調整（display:none は使わない） */
@media (max-width: 767px) {
  .hero-bubble { left: 22%; top: 60%; }
}

/* ===== HERO POINTS（コミコミ6項目）===== */
.hero-points { background: #FFF9E6; padding: 24px 0; border-bottom: 1px solid #f0e0a0; }
.komikomi-title { text-align: center; font-size: clamp(18px, 2.6vw, 24px); font-weight: 900; color: #042c53; margin-bottom: 16px; }
.komikomi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 720px; margin: 0 auto; list-style: none; }
.komikomi-item { display: flex; align-items: center; justify-content: center; gap: 6px; background: #fff; border: 1px solid #f0d080; border-radius: 8px; padding: 9px 10px; }
.komikomi-check { color: #2a9d3c; font-weight: 900; font-size: 15px; flex-shrink: 0; }
.komikomi-text { font-size: clamp(13px, 1.6vw, 15px); font-weight: 700; color: #333; }
.komikomi-note { text-align: center; font-size: 13px; font-weight: 700; color: #f5821f; margin-top: 14px; }
.komikomi-notes { max-width: 720px; margin: 14px auto 0; }
.komikomi-notes p { font-size: 12px; color: #333; line-height: 1.6; padding-left: 1em; text-indent: -1em; }

@media (max-width: 600px) {
  .komikomi-grid { grid-template-columns: repeat(2, 1fr); }
  .komikomi-text { font-size: 13px; }
}

/* ===== INTRO ===== */
.intro { background: #fff; height: 180px; padding-top: 20px; padding-bottom: 0; overflow: hidden; }
.intro-inner { display: flex; align-items: center; gap: 50px; height: 100%; }
.intro-text { flex: 1; }
.intro-title { font-size: 21px; font-weight: 700; color: #204F97; margin-bottom: 10px; line-height: 1.5; }
.intro-desc { font-size: 12px; color: #282828; line-height: 1.9; }
.intro-highlight { color: #204F97; }
.intro-img { flex: 0 0 300px; }
.intro-photo { width: 100%; height: auto; max-height: 200px; object-fit: contain; border-radius: 8px; display: block; }

@media (max-width: 767px) {
  .intro { height: auto; padding: 40px 0; overflow: visible; }
  .intro-inner { height: auto; flex-direction: column; gap: 24px; }
  .intro-img { flex: none; width: 100%; height: auto; }
  .intro-photo { height: auto; object-fit: initial; }
}

/* ===== SECTION TITLE ===== */
.section-title { text-align: center; font-size: 26px; font-weight: 600; color: #325293; margin-bottom: 40px; position: relative; }

.title-deco { color: #f5c800; font-size: 18px; }

.reasons-title { display: flex; align-items: center; justify-content: center; gap: 12px; }
.star-deco { flex-shrink: 0; vertical-align: middle; }
.star-deco--right { transform: scaleX(-1); }

.flow-title { display: flex; align-items: center; gap: 8px; }
.flow-title::before { content: ''; order: 0; flex: 1; height: 2px; border: none; border-radius: 0; width: auto; margin: 0; margin-bottom: 4px; align-self: flex-end; background: transparent; background-image: radial-gradient(circle, #282828 2px, transparent 2px); background-size: 10px 2px; background-repeat: repeat-x; background-position: center; background-color: transparent; }
.flow-title::after { content: ''; order: 4; flex: 1; height: 2px; border: none; border-radius: 0; width: auto; margin: 0; margin-bottom: 4px; align-self: flex-end; background: transparent; background-image: radial-gradient(circle, #282828 2px, transparent 2px); background-size: 10px 2px; background-repeat: repeat-x; background-position: center; background-color: transparent; }
.flow-title .star-deco--left { order: 1; }
.flow-title span { order: 2; white-space: nowrap; }
.flow-title .star-deco--right { order: 3; }

/* ===== REASONS ===== */
.reasons { background: #ffffff; padding: 0 0 40px; }
.reasons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.reason-card { background: #fff; border-radius: 12px; padding: 16px; border: 2px solid #FDD551; display: flex; align-items: center; gap: 12px; }
.reason-card.highlight { border-color: #FDD551; background: #fff; }
.reason-icon { font-size: 28px; width: 60px; height: 60px; flex-shrink: 0; background: #FFF3E0; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.reason-text { display: flex; flex-direction: column; gap: 4px; }
.reason-name { font-size: 14px; font-weight: 700; color: #1a1a1a; line-height: 1.4; }
.reason-card.highlight .reason-name { color: #1a1a1a; }
.reason-desc { font-size: 12px; color: #282828; line-height: 1.5; }

/* ===== PRICE ===== */
.price { padding: 60px 0; background: #FFF9E6; }
.price-lead { font-size: clamp(14px, 2vw, 17px); font-weight: 500; color: #282828; text-align: center; margin-bottom: 28px; }
.price-lead-accent { color: #235AA5; font-weight: 700; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 16px; }
.price-card { border: 2px solid #9BE5F6; border-radius: 12px; padding: 12px 12px 16px; text-align: center; position: relative; background: #ffffff; }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #e8380d; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; white-space: nowrap; }
.car-name { font-size: 20px; font-weight: 900; color: #0D469B; margin-bottom: 2px; }
.car-maker { font-size: 12px; color: #282828; margin-bottom: 8px; }
.car-image { width: 100%; height: auto; object-fit: contain; display: block; margin-bottom: 10px; border-radius: 6px; }
.monthly-price { font-size: 15px; font-weight: 700; color: #333; margin-bottom: 6px; }
.price-num { font-size: 26px; font-weight: 900; color: #e8380d; }
.bonus-price { font-size: 11px; color: #282828; }
/* タント：2コース併記（全幅ブロック・コース間は細線で区切る） */
.course-block { padding: 10px 0; }
.course-block + .course-block { border-top: 1px solid #cfe9f1; }
.course-label { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 12px; border-radius: 12px; margin-bottom: 6px; white-space: nowrap; }
.course-label--bonus { background: #e7f1fb; color: #235AA5; }
.course-label--flat { background: #E4F2DC; color: #2E7D38; }
.course-footer-pill { margin-top: 8px; padding: 4px 10px; background: #eef0f2; border-radius: 12px; font-size: 11px; color: #555; text-align: center; }
.price-note { font-size: 12px; color: #282828; text-align: center; }

/* ===== RECOMMEND ===== */
.recommend { background: #ffffff; padding: 20px 0 10px; }
.recommend-cols { display: flex; align-items: stretch; gap: 40px; }
.recommend-col-left { flex: 6.5; min-width: 0; }
.recommend-col-right { flex: 3.5; min-width: 0; display: flex; }
.recommend-section-title { margin-bottom: 24px; }

.recommend-box { background: #FFF9E6; border: 2px solid #FFE8C0; border-radius: 8px; padding: 24px 28px; }
.recommend-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.recommend-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; font-weight: 500; color: #333; }
.recommend-list li::before { content: '✔'; color: #e8380d; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.recommend-svg-link { display: block; width: 100%; }
.recommend-svg-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.family-illust { font-size: 100px; }

/* ===== FLOW ===== */
.flow { padding: 10px 0 60px; background: #fff; }
.flow-steps { display: flex; align-items: stretch; gap: 6px; }
.flow-step { flex: 1; min-width: 0; text-align: center; padding: 16px 10px; background: #ffffff; border: none; border-radius: 10px; box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15); }
.step-header { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; }
.step-num { background: #FDD551; color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.step-icon { font-size: 36px; margin-bottom: 8px; }
.step-name { font-size: 12px; font-weight: 700; color: #235AA5; }
.step-desc { font-size: 11px; color: #282828; line-height: 1.5; }
.flow-arrow { display: flex; align-items: center; color: #ccc; font-size: 10px; padding: 0 2px; flex-shrink: 0; padding-top: 40px; }

/* ===== CORPORATE ===== */
.corporate { background: #1a3a8f; color: #fff; padding: 50px 0; }
.corporate-inner { display: flex; align-items: center; gap: 50px; }
.corporate-text { flex: 1; }
.corporate-text { padding-left: 40px; padding-right: 40px; }
.corporate-title { font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.corporate-desc { font-size: 14px; opacity: .9; margin-bottom: 16px; }
.corporate-list { display: flex; flex-direction: column; gap: 8px; }
.corporate-list li { font-size: 14px; font-weight: 500; opacity: .95; }
.corporate-img { flex: 0 0 280px; text-align: center; }
.truck-icons { font-size: 64px; letter-spacing: 8px; }

/* ===== SUPPORT ===== */
.support { padding: 60px 0 10px; background: #fff; }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.support-card { background: #fff; border-radius: 0; overflow: hidden; text-align: center; border: 2px solid #325293; }
.support-img { width: 100%; height: 150px; object-fit: cover; display: block; }
.support-name { font-size: 15px; font-weight: 700; color: #1a1a1a; padding: 12px 12px 6px; }
.support-desc { font-size: 12px; color: #282828; padding: 0 12px 16px; line-height: 1.5; }

/* 特集ブロック（転勤・引っ越し） */
.support-feature { display: flex; align-items: center; gap: 32px; margin-top: 32px; padding: 28px 32px; background: linear-gradient(135deg, #e7f1fb 0%, #f0f8ff 100%); border-radius: 12px; border: 2px solid #9BE5F6; }
.support-feature-img-wrap { flex: 0 0 45%; }
.support-feature-img { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; display: block; background: #c9e4f5; }
.support-feature-body { flex: 1; text-align: center; }
.support-feature-title { font-size: 20px; font-weight: 700; color: #235AA5; margin-bottom: 12px; }
.support-feature-num { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 14px; }
.support-feature-num-large { font-size: 52px; font-weight: 900; color: #e8380d; line-height: 1; }
.support-feature-num-small { font-size: 16px; font-weight: 700; color: #e8380d; }
.support-feature-desc { font-size: 14px; color: #282828; line-height: 1.7; }

/* ===== FAQ ===== */
.faq { padding: 10px 0 60px; background: #f8f9fa; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item { border: 1px solid #e8e8e8; border-radius: 10px; overflow: hidden; }
.faq-q, .faq-a { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; font-size: 14px; }
.faq-q { background: #f0f4ff; font-weight: 700; color: #1a1a1a; }
.faq-a { background: #fff; color: #282828; }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; flex-shrink: 0; }
.q-icon { background: #1a3a8f; color: #fff; }
.a-icon { background: #e8380d; color: #fff; }

/* ===== FOOTER CTA ===== */
.footer-cta { background: #325293; color: #fff; padding: 20px 0; }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: nowrap; }
.footer-cta-text { flex: 1; min-width: 0; }
.footer-cta-main { font-size: 15px; font-weight: 700; line-height: 1.7; margin-bottom: 10px; white-space: nowrap; }
.footer-cta-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.footer-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-cta-btn { padding: 16px 24px; min-width: 180px; }
.footer-cta-btn .btn-estimate-main { font-size: 16px; }
.footer-cta-btn .btn-estimate-sub { font-size: 12px; }
.cta-btn-line { background: #06c755; color: #fff; border-radius: 8px; padding: 12px 20px; display: flex; align-items: center; gap: 10px; font-weight: 700; min-width: 160px; }
.line-logo-sm { background: #fff; color: #06c755; font-weight: 900; font-size: 11px; padding: 2px 6px; border-radius: 4px; }
.cta-btn-estimate { background: #e8380d; color: #fff; border-radius: 8px; padding: 12px 20px; display: flex; flex-direction: column; align-items: center; font-weight: 700; min-width: 150px; text-align: center; }
.cta-btn-main { font-size: 14px; font-weight: 700; }
.cta-btn-sub { font-size: 11px; opacity: .85; }
.footer-cta-tel { text-align: center; }
.footer-cta-tel p { font-size: 12px; opacity: .8; margin-bottom: 4px; }
.footer-tel-num { font-size: 24px; font-weight: 900; color: #fff; display: block; margin-bottom: 4px; }
.footer-tel-hours { font-size: 11px; opacity: .7; }

/* ===== FOOTER ===== */
.footer { background: #ffffff; color: #333333; padding: 20px 0; border-top: 1px solid #e8e8e8; }
.footer-inner { display: flex; align-items: center; gap: 20px; }

/* 左カラム */
.footer-col { flex: 1; }
.footer-col-left { display: flex; align-items: center; gap: 8px; }
.footer-logo-icon { font-size: 22px; }
.footer-company { font-size: 15px; font-weight: 700; color: #333333; }

/* 中央カラム */
.footer-col-center { display: flex; flex-direction: column; gap: 4px; }
.footer-col-center p { font-size: 12px; color: #333333; line-height: 1.6; }

/* 右カラム */
.footer-col-right { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.footer-privacy { font-size: 12px; color: #235AA5; text-decoration: underline; }
.footer-privacy:hover { opacity: .75; }
.footer-copy { font-size: 11px; color: #666; }

/* ===== SP固定CTAバー ===== */
.sp-cta-bar { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .reasons-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-text { flex: none; }
  .hero-cars { width: 100%; }

  .recommend-cols { flex-direction: column; }
  .recommend-col-left, .recommend-col-right { flex: 1; }
  .corporate-inner { flex-direction: column; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 32px; }
  .hero-price-num { font-size: 38px; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .support-feature-num-large { font-size: clamp(36px, 10vw, 52px); }
  .recommend-list { grid-template-columns: 1fr; }
  .section-title { font-size: 22px; }
}

/* ===== FOOTER SP (〜767px) ===== */
@media (max-width: 767px) {
  .footer-inner { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .footer-col-left { justify-content: center; }
  .footer-col-center { align-items: center; }
  .footer-col-right { align-items: center; }
}

/* ===== SUPPORT FEATURE SP (〜767px) ===== */
@media (max-width: 767px) {
  .support-feature { flex-direction: column; gap: 20px; padding: 20px 16px; }
  .support-feature-img-wrap { flex: none; width: 100%; }
  .support-feature-img { height: 200px; }
  .support-feature-title { font-size: 17px; }
  .support-feature-num-small { font-size: 14px; }
}

/* ===== FLOW SP (〜767px) ===== */
@media (max-width: 767px) {
  .flow-steps { flex-wrap: wrap; gap: 16px; }
  .flow-arrow { display: none; }
  .flow-step { flex: 0 0 calc(50% - 8px); }
}

/* ===== HEADER SP (〜767px) ===== */
@media (max-width: 767px) {
  .header { padding: 0; }
  .header-inner { height: 64px; padding: 0 14px; gap: 0; flex-wrap: nowrap; }
  .header-logo { gap: 8px; }
  .header-logo-text { display: flex; flex-direction: column; justify-content: center; gap: 0; height: auto; }
  .header-logo-img { height: 36px; width: auto; }
  .tel-top-row { display: none; }
  .tel-hours { display: none; }
  .header-tel { flex-direction: row; align-items: center; }
  .tel-number { font-size: 18px; }
  .header-actions { gap: 0; }
  .header .btn-line,
  .header .btn-estimate { display: none; }

  body { padding-bottom: 60px; }
  .sp-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    z-index: 200;
  }
  .sp-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    gap: 3px;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .sp-cta-btn:last-child { border-right: none; }
  .sp-cta-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
}

@media (max-width: 767px) {

  .header-inner {
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    height: 64px;
    min-height: 64px;
  }

  .header-logo-img {
    height: 36px;
    width: auto;
  }

  .header-right,
  .header-contact-label,
  .tel-hours,
  .header-tagline,
  .logo-name {
    display: none !important;
  }

  .header-logo-text {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    height: auto;
  }

  .header-service-name {
    display: block;
    font-size: 30px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }
  .sn-green { color: #4CC764; }
  .sn-navy  { color: #1B3565; }

  .header-service-sub {
    display: block;
    font-size: 11px;
    font-weight: normal;
    color: #666666;
    white-space: nowrap;
    line-height: 1.2;
    margin-top: 2px;
  }

  .tel-number {
    font-size: 16px;
  }

  .sp-cta-bar {
    display: flex !important;
  }

  body {
    padding-bottom: 60px;
  }

  .sp-cta-btn:first-child  { background: #06C755; }
  .sp-cta-btn:nth-child(2) { background: #325293; }
  .sp-cta-btn:last-child   { background: #e8380d; }
}

@media (max-width: 429px) {
  .reason-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .reason-text {
    align-items: center;
  }
}
