/* =========================
 Rainy Campaign LP - Refined
========================= */

:root {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.rainy-lp {
  --blue: #1d4ed8;
  --blue-dark: #1e40af;
  --blue-light: #eff6ff;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --text: #111827;
  --muted: #64748b;
  --line: #dbeafe;
  --bg-soft: #f4f9ff;
  --bg-soft-orange: #ffeee4;
  --white: #fff;

  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow: hidden;
}

.rainy-lp *,
.rainy-lp *::before,
.rainy-lp *::after {
  box-sizing: border-box;
}

.rainy-lp img {
  max-width: 100%;
  height: auto;
}

.lp-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-btn,
.campaign-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 240px;
  min-height: 58px;
  padding: 15px 30px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #fb923c 0%, var(--orange) 52%, var(--orange-dark) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(249, 115, 22, .28);
  transition: .2s ease;
}

.lp-btn:hover,
.campaign-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(249, 115, 22, .36);
}

.lp-btn--ghost {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(29, 78, 216, .12);
}

/* Hero */

.lp-hero {
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at 82% 28%, rgba(14, 165, 233, .16), transparent 34%),
    linear-gradient(90deg, #fff 0%, #f4faff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr .95fr;
  gap: 52px;
  align-items: center;
}

.lp-badge {
  display: inline-flex;
  padding: 8px 18px;
  margin: 0 0 20px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.05em;
}

.hero-copy h1 span,
.campaign-main h2 span {
  color: var(--orange);
}

.hero-lead {
  margin: 0 0 30px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.9;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-note::before {
  content: "●";
  color: var(--blue);
  margin-right: 6px;
}

.hero-image,
.solution-image {
  position: relative;
  margin: 0;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 10% 0 0 12%;
  background: linear-gradient(135deg, rgba(29, 78, 216, .16), rgba(14, 165, 233, .12));
  border-radius: 40px;
}

.hero-image img,
.solution-image img {
  position: relative;
  display: block;
  filter: drop-shadow(0 24px 30px rgba(15, 23, 42, .18));
}

/* Common */

.lp-section {
  padding: 84px 0;
}

.lp-section h2 {
  margin: 0 0 44px;
  text-align: center;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -.03em;
}

.lp-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: var(--orange);
}

.section-kicker {
  margin: 0 0 12px;
  text-align: center;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

/* Campaign Benefits */

.campaign-benefits {
  padding: 40px 0 20px;
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
}

.benefits-wrap {
  padding: 50px 40px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid #dbeafe;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}

.benefits-wrap h2 {
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.25;
  font-weight: 900;
}

.benefits-wrap h2 span {
  color: var(--orange);
}

.benefits-lead {
  margin: 0 auto 36px;
  text-align: center;
  color: #475569;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 700;
}

.benefits-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
  align-items: start;
}

.benefits-group {
  display: flex;
  flex-direction: column;
}

.benefits-group-head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin: 0 0 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.benefits-group-head.is-orange {
  background: var(--orange);
}

.benefits-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  height: 100%;
}

.benefit-box {
  padding: 30px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #dbeafe;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.benefit-box.is-main {
  border: 3px solid var(--orange);
  background: #fff7ed;
}

.benefit-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 900;
}

.benefit-price {
  margin: 0;
  color: var(--orange);
  font-size: clamp(52px, 6vw, 72px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.benefit-price span {
  font-size: .5em;
}

.benefit-price.is-blue {
  color: var(--blue);
}

.benefit-gift {
  margin: 0;
  color: var(--orange);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.45;
  font-weight: 900;
}

.benefit-note {
  margin: 14px 0 0;
  color: #64748b;
  font-size: clamp(12px, 1vw, 20px);
  line-height: 1.7;
  font-weight: 700;
}

.benefits-caption {
  margin: 24px 0 0;
  text-align: center;
  color: #64748b;
  font-size: 13px;
}

/* Worries */

.card-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.worry-card,
.step-card {
  padding: 32px 22px;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.worry-card {
  text-align: center;
}

.worry-card .icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 34px;
}

.worry-card h3,
.benefit-card h3,
.step-card h3,
.referral-item h3 {
  margin: 0 0 10px;
  font-weight: 900;
}

.worry-card h3 {
  font-size: 18px;
}

.worry-card p,
.benefit-card p,
.step-card p,
.referral-item p {
  margin: 0;
  color: #475569;
  font-size: 14px;
}

/* Solution */

.solution {
  padding: 92px 0 72px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.solution-head {
  margin-bottom: 48px;
  text-align: center;
}

.solution-head h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.12;
}

.solution-head h2::after {
  display: none;
}

.solution-head h2 span {
  color: var(--blue);
}

.solution-head p {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.9;
  font-weight: 800;
}

.solution-visual {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 40px;
  align-items: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.benefit-card {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.benefit-card:last-child {
  border-right: none;
}

.benefit-icon {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 40px;
}

.benefit-card h3 {
  color: var(--blue);
  font-size: 17px;
  line-height: 1.5;
}

/* Campaign Box */

.campaign-box {
  padding: 28px 0 82px;
  background: var(--bg-soft);
}

.campaign-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .13);
}

.campaign-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #0ea5e9 100%);
}

.campaign-label span {
  font-size: 18px;
  font-weight: 900;
}

.campaign-label strong {
  font-size: 32px;
  line-height: 1;
}

.campaign-main {
  padding: 42px 40px 38px;
}

.campaign-main h2 {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -.03em;
}

.campaign-period {
  margin: 0 0 34px;
  text-align: center;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.campaign-timeline,
.three-month-table {
  margin-top: 36px;
  padding: 26px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.campaign-timeline {
  margin: 0 0 36px;
}

.campaign-timeline h3,
.three-month-table h3 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
}

.timeline-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.timeline-item {
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.timeline-item.is-campaign {
  border: 3px solid var(--orange);
  background: #fff7ed;
}

.timeline-item span,
.payment-option-label,
.vehicle-label {
  display: inline-block;
  border-radius: 999px;
  font-weight: 900;
}

.timeline-item span {
  margin-bottom: 8px;
  padding: 5px 12px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
}

.timeline-item.is-campaign span {
  background: var(--orange);
  color: #fff;
}

.timeline-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
}

.timeline-item p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  font-weight: 700;
}

.timeline-item p+p {
  margin-top: 6px;
}

.timeline-arrow {
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
}

/* Plan */

.plan-compare {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin: 34px 0;
}

.plan-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.plan-card.is-best {
  border: 3px solid var(--orange);
  background: #fff7ed;
}

.plan-ribbon,
.recommend-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.plan-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 900;
}

.plan-discount {
  color: var(--orange);
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.plan-discount.is-sub {
  color: var(--blue);
}

.plan-card p {
  margin: 10px 0 16px;
  font-size: 18px;
  font-weight: 900;
}

.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

/* Vehicle Price */

.price-subtitle {
  margin: 8px 0 22px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
}

.vehicle-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.vehicle-price-card {
  position: relative;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.vehicle-price-card.is-recommend {
  border: 2px solid var(--orange);
  box-shadow: 0 20px 40px rgba(249, 115, 22, .18);
}

.recommend-badge {
  top: -12px;
  right: 18px;
  padding: 6px 14px;
  font-size: 13px;
}

.recommend-badge--outline {
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
}

.vehicle-label {
  margin-bottom: 12px;
  padding: 6px 12px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
}

.vehicle-price-card h3 {
  min-height: 70px;
  margin: 0;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 900;
}

.vehicle-price-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin: 8px 0 20px;
}

.vehicle-payment-compare {
  display: grid;
  gap: 14px;
}

.payment-option {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.payment-option.is-best {
  border: 2px solid var(--orange);
  background: #fff7ed;
}

.payment-option-label {
  margin-bottom: 10px;
  padding: 5px 10px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
}

.payment-option.is-best .payment-option-label {
  background: var(--orange);
  color: #fff;
}

.discount-badge {
  display: inline-flex;
  margin: 12px 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb923c 0%, var(--orange) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.discount-badge.is-blue {
  background: linear-gradient(135deg, var(--blue) 0%, #0ea5e9 100%);
}

.normal-price {
  margin: 12px 0 4px;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.normal-price del {
  font-size: 15px;
}

.campaign-price {
  margin: 0;
  color: var(--orange);
  line-height: 1;
  white-space: nowrap;
}

.campaign-price.is-blue {
  color: var(--blue);
}

.campaign-price strong {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -.05em;
}

.campaign-price small {
  display: inline;
  margin-left: 3px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.save-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 10px 0 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--orange-dark);
  border: 1px solid #fed7aa;
  font-size: 14px;
  font-weight: 900;
}

.save-price.is-blue {
  color: var(--blue);
  border-color: var(--line);
  background: #eff6ff;
}

.save-price strong {
  font-size: 17px;
  color: inherit;
}

.payment-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.payment-note.is-gray {
  background: #f8fafc;
  color: #475569;
  line-height: 1.7;
}

.price-note {
  margin: 22px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

/* Table */

.three-month-table {
  overflow-x: auto;
}

.three-month-table table {
  width: 80%;
  margin: 0 auto;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.three-month-table td:first-child,
.three-month-table th:first-child {
  border-right: 2px dashed #dbeafe;
}

.three-month-table th,
.three-month-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}

.three-month-table th {
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.three-month-table td strong {
  color: var(--orange);
  font-weight: 900;
}

/* CTA */

.campaign-cta {
  max-width: 560px;
  margin: 34px auto 0;
}

.campaign-cta a {
  width: 100%;
  min-height: 72px;
  font-size: 26px;
}

.campaign-cta a::after {
  content: "›";
  margin-left: 18px;
  font-size: 42px;
  line-height: 1;
}

/* Referral */

.referral {
  padding-top: 0;
  background: var(--bg-soft);
}

.referral-box {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #dbeafe;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.referral-head {
  padding: 46px 40px 26px;
  text-align: center;
}

.referral-head h2 {
  margin: 10px 0 14px;
}

.referral-lead {
  margin: 0 auto;
  max-width: 760px;
  color: #475569;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 700;
}

.referral-lead strong {
  color: var(--orange);
}

.referral-main {
  display: grid;
  grid-template-columns: 1.5fr 1.3fr;
  gap: 28px;
  padding: 0 40px 40px;
}

.referral-present {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(249, 115, 22, .25);
}

.referral-present span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  font-size: 13px;
  font-weight: 900;
}

.referral-present strong {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.45;
  font-weight: 900;
}

.referral-detail {
  display: grid;
  gap: 16px;
}

.referral-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #dbeafe;
}

.referral-icon {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.referral-item h3 {
  font-size: 20px;
}

.referral-item p {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

/* Steps */

.steps {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.step-card span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.step-card h3 {
  font-size: 20px;
}

/* FAQ */

.faq {
  background: #fff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.faq-list details+details {
  margin-top: 14px;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px 68px;
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
}

/* Final CTA */

.final-cta {
  padding: 86px 0;
  text-align: center;
  background:
    radial-gradient(circle at 85% 0%, rgba(14, 165, 233, .16), transparent 34%),
    linear-gradient(90deg, #eaf7ff 0%, #fff 100%);
}

.final-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -.03em;
}

.final-cta p {
  margin: 0 0 30px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-btn.line {
  background: #06c755;
  box-shadow: 0 10px 24px rgba(6, 199, 85, .24);
}

.lp-btn.tel {
  background: #fff;
  color: #111;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}

/* Responsive */

@media (max-width: 960px) {

  .hero-grid,
  .solution-visual {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .solution-image {
    max-width: 460px;
    margin: 0 auto;
  }

  .card-grid,
  .benefit-grid,
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-row,
  .vehicle-price-grid,
  .plan-compare,
  .referral-main {
    grid-template-columns: 1fr;
  }

  .vehicle-price-card h3 {
    min-height: auto;
  }

  .benefit-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .campaign-main {
    padding: 32px 24px;
  }
}

@media (max-width: 700px) {
  .vehicle-payment-compare {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .payment-option {
    padding: 14px 12px;
  }

  .payment-option-label {
    font-size: 11px;
    padding: 4px 8px;
  }

  .discount-badge {
    padding: 6px 10px;
    font-size: 14px;
  }

  .campaign-price strong {
    font-size: 30px;
  }

  .campaign-price small {
    display: inline;
    margin-left: 2px;
    font-size: 11px;
  }

  .normal-price,
  .payment-note,
  .payment-option .save-price {
    font-size: 11px;
  }

  .payment-option .save-price strong {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .lp-container {
    width: min(100% - 28px, 1120px);
  }

  .lp-hero {
    padding: 48px 0;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions,
  .cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lp-section {
    padding: 48px 0;
  }

  .benefits-wrap h2,
  .lp-section h2,
  .campaign-main h2,
  .final-cta h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .section-kicker {
    font-size: 15px;
  }

  .benefits-lead,
  .solution-head p {
    font-size: 14px;
    line-height: 1.7;
  }

  .card-grid,
  .benefit-grid,
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .worry-card,
  .step-card,
  .benefit-card,
  .plan-card,
  .benefit-box {
    padding: 18px 12px;
  }

  .worry-card h3,
  .step-card h3,
  .benefit-card h3,
  .benefit-title {
    font-size: 14px;
    line-height: 1.45;
  }

  .worry-card p,
  .step-card p,
  .benefit-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  .benefit-card {
    border-right: none;
  }

  .benefit-icon {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .campaign-benefits {
    padding: 24px 0 10px;
  }

  .benefits-wrap {
    padding: 28px 14px;
    border-radius: 24px;
  }

  .benefits-row {
    gap: 18px;
  }

  .benefits-grid-two {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .benefits-group-head {
    height: 40px;
    font-size: 13px;
  }

  .benefit-price {
    font-size: 38px;
  }

  .benefit-gift {
    font-size: 22px;
    line-height: 1.35;
  }

  .campaign-label {
    display: block;
    text-align: center;
  }

  .campaign-label span,
  .campaign-label strong {
    display: block;
  }

  .campaign-main {
    padding: 32px 20px;
  }

  .campaign-main h2,
  .campaign-period {
    text-align: left;
  }

  .campaign-period {
    font-size: 15px;
  }

  .campaign-timeline,
  .three-month-table {
    padding: 18px 12px;
  }

  .timeline-row {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }

  .timeline-arrow {
    transform: none;
    font-size: 20px;
  }

  .timeline-item {
    padding: 12px 8px;
  }

  .timeline-item strong {
    font-size: 16px;
  }

  .timeline-item p {
    font-size: 11px;
    line-height: 1.5;
  }

  .plan-discount {
    font-size: 40px;
  }

  .campaign-price strong {
    font-size: 28px;
  }

  .campaign-cta a {
    min-height: 64px;
    font-size: 20px;
  }

  .lp-btn,
  .cta-buttons .lp-btn {
    width: 100%;
  }

  .referral-head {
    padding: 34px 20px 20px;
    text-align: left;
  }

  .referral-head .section-kicker {
    text-align: left;
  }

  .referral-main {
    padding: 0 20px 24px;
  }

  .referral-lead {
    font-size: 15px;
    line-height: 1.8;
  }

  .referral-present {
    padding: 28px 22px;
  }

  .referral-present strong {
    font-size: 26px;
  }

  .referral-item {
    padding: 18px;
  }

  .faq-list summary {
    padding: 18px 48px 18px 18px;
    font-size: 16px;
  }

  .faq-list details p {
    padding: 0 18px 20px;
  }
}

@media (max-width: 420px) {
  .vehicle-payment-compare {
    grid-template-columns: 1fr;
  }
}

/* =========================
SP横並び維持
========================= */

@media (max-width: 600px) {

  .card-grid,
  .benefit-grid,
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .benefits-grid-two {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .vehicle-payment-compare {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .timeline-row {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }

  .timeline-arrow {
    transform: none;
    font-size: 20px;
  }

}

@media (max-width: 600px) {

  .vehicle-payment-compare {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .payment-option {
    min-width: 0;
    padding: 12px 10px;
  }

  .campaign-price {
    white-space: normal;
    line-height: 1.2;
  }

  .campaign-price strong {
    display: block;
    font-size: 24px;
    line-height: 1;
  }

  .campaign-price small {
    display: block;
    margin: 4px 0 0;
    font-size: 10px;
    line-height: 1.4;
  }

  .discount-badge {
    font-size: 13px;
    padding: 5px 8px;
  }

  .save-price {
    font-size: 10px;
    padding: 6px 8px;
  }

  .save-price strong {
    font-size: 12px;
  }

}

/* =========================
SP：支払い比較 横並び維持＋はみ出し防止
========================= */

@media (max-width: 600px) {

  .vehicle-payment-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .payment-option {
    min-width: 0;
    padding: 12px 8px;
  }

  .payment-option-label {
    font-size: 10px;
    padding: 4px 7px;
    white-space: normal;
  }

  .discount-badge {
    margin: 8px 0;
    padding: 5px 8px;
    font-size: 12px;
  }

  .normal-price {
    font-size: 10px;
    line-height: 1.4;
  }

  .normal-price del {
    font-size: 10px;
  }

  .campaign-price {
    white-space: normal;
    line-height: 1.15;
  }

  .campaign-price strong {
    display: block;
    font-size: 23px;
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .campaign-price small {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
  }

  .save-price {
    display: inline-flex;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    padding: 5px 7px;
    font-size: 10px;
    line-height: 1.3;
  }

  .save-price strong {
    font-size: 11px;
  }

  .payment-note {
    padding: 7px 6px;
    font-size: 10px;
    line-height: 1.45;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

}

@media (max-width: 600px) {
  .payment-option-label {
    margin-bottom: 6px;
    padding: 4px 8px;
    font-size: 10px;
    line-height: 1.2;
  }

  .discount-badge {
    margin: 6px 0 8px;
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1;
  }
}

/* =========================
Campaign Hero Renewal
========================= */

.campaign-hero {
  position: relative;
  padding: 76px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(14, 165, 233, .22), transparent 34%),
    radial-gradient(circle at 12% 90%, rgba(249, 115, 22, .15), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #eff6ff 58%, #fff7ed 100%);
}

.campaign-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 78, 216, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, .06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.campaign-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  align-items: center;
}

.campaign-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(29, 78, 216, .18);
}

.campaign-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6.4vw, 74px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.06em;
}

.campaign-hero-copy h1 span {
  color: var(--orange);
}

.campaign-hero-lead {
  margin: 0 0 24px;
  color: #334155;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.85;
  font-weight: 800;
}

.campaign-main-offer {
  position: relative;
  width: min(100%, 520px);
  margin: 0 0 24px;
  padding: 18px 24px 20px;
  border: 3px solid var(--orange);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(249, 115, 22, .18);
}

.offer-label {
  display: inline-flex;
  margin: 0 0 4px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 14px;
  font-weight: 900;
}

.offer-main {
  margin: 0;
  color: var(--orange-dark);
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
}

.offer-main span {
  font-size: 1.35em;
}

.offer-sub {
  margin: 8px 0 0;
  color: var(--blue);
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.2;
  font-weight: 900;
}

.campaign-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.campaign-hero-note {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.campaign-hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.campaign-hero-visual::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29, 78, 216, .15), rgba(14, 165, 233, .12));
}

.campaign-hero-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  filter: drop-shadow(0 28px 36px rgba(15, 23, 42, .2));
}

.hero-period {
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 6px;

  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 85% 0%, rgba(14, 165, 233, .18), transparent 34%), linear-gradient(160deg, #1f2570 0%, #1d4ed8 45%, #4789ec 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 34px rgba(29, 78, 216, .28);
}

.hero-period span {
  font-size: 13px;
  font-weight: 900;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: var(--blue);
}

.hero-period strong {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
}

.hero-mini-card {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 132px;
  padding: 12px 16px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .14);
}

.hero-mini-card span {
  font-size: 12px;
  font-weight: 900;
}

.hero-mini-card strong {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.hero-mini-card--orange {
  left: 0;
  bottom: 16%;
  color: var(--orange-dark);
  border: 2px solid #fed7aa;
}

.hero-mini-card--blue {
  right: 0;
  bottom: 4%;
  color: var(--blue);
  border: 2px solid var(--line);
}

/* =========================
Benefits V2
========================= */

.campaign-benefits-v2 {
  padding: 58px 0 72px;
  background: var(--bg-soft-orange);
}

.benefits-v2-head {
  margin-bottom: 30px;
  text-align: center;
}

.benefits-v2-head h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.04em;
}

.benefits-v2-head h2 span {
  color: var(--orange);
}

.benefits-v2-head p:not(.section-kicker) {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 800;
}

.benefits-v2-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.benefits-v2-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 26px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #dbeafe;
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.benefits-v2-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(29, 78, 216, .07);
}

.benefits-v2-card.is-primary {
  border: 3px solid var(--orange);
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
  box-shadow: 0 22px 48px rgba(249, 115, 22, .18);
}

.benefits-v2-card.is-gift {
  background: linear-gradient(180deg, #fff 0%, #eff6ff 100%);
}

.benefits-v2-num {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.is-primary .benefits-v2-num {
  background: var(--orange);
}

.benefits-v2-target {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.benefits-v2-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.benefits-v2-off {
  margin: 0;
  color: var(--orange-dark);
  font-size: clamp(48px, 6vw, 68px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
}

.benefits-v2-off span {
  font-size: 1.25em;
}

.benefits-v2-off.is-blue {
  color: var(--blue);
}

.benefits-v2-gift {
  margin: 0;
  color: var(--orange-dark);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 900;
}

.benefits-v2-gift span {
  font-size: 1.35em;
}

.benefits-v2-note {
  margin: 12px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 800;
}

.benefits-v2-caption {
  margin: 20px 0 0;
  color: #64748b;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}

/* =========================
SP
========================= */

@media (max-width: 960px) {
  .campaign-hero-inner {
    grid-template-columns: 1fr;
  }

  .campaign-hero-visual {
    min-height: 340px;
  }

  .benefits-v2-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .campaign-hero {
    padding: 44px 0 40px;
  }

  .campaign-hero-inner {
    gap: 26px;
  }

  .campaign-eyebrow {
    font-size: 13px;
    padding: 7px 14px;
  }

  .campaign-hero-copy h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .campaign-hero-lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .campaign-main-offer {
    padding: 14px 16px 16px;
    border-radius: 20px;
  }

  .offer-label {
    font-size: 12px;
  }

  .offer-main {
    font-size: 54px;
  }

  .offer-sub {
    font-size: 19px;
  }

  .campaign-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .campaign-hero-visual {
    min-height: 270px;
  }

  .hero-period {
    width: 112px;
    height: 112px;
  }

  .hero-period strong {
    font-size: 14px;
  }

  .hero-mini-card {
    min-width: 104px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .hero-mini-card strong {
    font-size: 18px;
  }

  .hero-mini-card--orange {
    bottom: 12%;
  }

  .hero-mini-card--blue {
    bottom: 0;
  }

  .campaign-benefits-v2 {
    padding: 42px 0 52px;
  }

  .benefits-v2-head {
    margin-bottom: 22px;
  }

  .benefits-v2-head h2 {
    font-size: 34px;
  }

  .benefits-v2-head p:not(.section-kicker) {
    font-size: 14px;
    line-height: 1.7;
  }

  .benefits-v2-grid {
    gap: 14px;
  }

  .benefits-v2-card {
    padding: 22px 16px 20px;
    border-radius: 22px;
  }

  .benefits-v2-card h3 {
    font-size: 18px;
  }

  .benefits-v2-off {
    font-size: 58px;
  }

  .benefits-v2-gift {
    font-size: 25px;
  }
}

/* =========================
Price Showcase
========================= */

.price-showcase {
  padding: 76px 0 86px;
  background:
    radial-gradient(circle at 10% 0%, rgba(249, 115, 22, .12), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.price-showcase-head {
  margin-bottom: 34px;
  text-align: center;
}

.price-showcase-head h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -.04em;
}

.price-showcase-head h2 span {
  color: var(--orange);
}

.price-showcase-head p:not(.section-kicker) {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 800;
}

.price-pickup {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 28px;
  align-items: center;

  margin: 0 auto 34px;
  padding: 26px 32px;

  max-width: 980px;

  border: 3px solid var(--orange);
  border-radius: 28px;

  background: #fff7ed;

}

.price-pickup-label {
  display: grid;
  place-items: center;

  width: 92px;
  height: 92px;

  border-radius: 50%;

  background: var(--orange);
  color: #fff;

  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

.price-pickup-copy {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.price-pickup-copy span {
  color: #9a3412;
  font-size: 22px;
  font-weight: 900;
}

.price-pickup-copy strong {
  color: var(--orange-dark);
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
}

.price-pickup-copy em {
  color: var(--blue);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  font-style: normal;
  font-weight: 900;
}

.price-pickup p {
  grid-column: 2;
  margin: -14px 0 0;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
}

.price-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  position: relative;
  overflow: hidden;

  padding: 28px 22px 24px;

  border-radius: 28px;

  background: #fff;

  border: 1px solid var(--line);

  box-shadow:
    0 18px 42px rgba(15, 23, 42, .08);
}

.price-card.is-recommend {
  border: 3px solid var(--orange);
  box-shadow:
    0 24px 54px rgba(249, 115, 22, .18);
}

.price-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;

  padding: 6px 14px;

  border-radius: 999px;

  background: var(--orange);
  color: #fff;

  font-size: 13px;
  font-weight: 900;
}

.price-ribbon--outline {
  background: #fff;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.price-card-head {
  min-height: 86px;
}

.price-card-head span {
  display: inline-flex;

  margin-bottom: 10px;
  padding: 5px 11px;

  border-radius: 999px;

  background: var(--blue-light);
  color: var(--blue);

  font-size: 12px;
  font-weight: 900;
}

.price-card-head h3 {
  margin: 0;

  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
}

.price-card img {
  display: block;

  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;

  margin: 0 0 18px;
}

.price-main {
  padding: 20px 16px;

  border-radius: 22px;

  background: #fff7ed;

  text-align: center;

  border: 1px solid #fed7aa;
}

.price-plan {
  display: inline-flex;

  margin: 0 0 8px;
  padding: 5px 12px;

  border-radius: 999px;

  background: var(--orange);
  color: #fff;

  font-size: 13px;
  font-weight: 900;
}

.price-off {
  margin: 0;

  color: var(--orange-dark);

  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.price-before {
  margin: 10px 0 2px;

  color: #64748b;

  font-size: 13px;
  font-weight: 800;
}

.price-now {
  margin: 0;

  color: var(--orange-dark);

  line-height: 1;
}

.price-now strong {
  font-size: clamp(38px, 4.2vw, 52px);
  font-weight: 900;
  letter-spacing: -.05em;
}

.price-now span {
  margin-left: 2px;

  font-size: 13px;
  font-weight: 900;
}

.price-save {
  display: inline-flex;

  margin: 12px 0 0;
  padding: 7px 12px;

  border-radius: 999px;

  background: #fff;
  color: var(--orange-dark);

  font-size: 13px;
  font-weight: 900;
}

.price-sub-plan {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 8px;
  align-items: center;

  margin-top: 14px;
  padding: 14px;

  border-radius: 18px;

  background: #eff6ff;

  border: 1px solid var(--line);
}

.price-sub-plan span {
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.price-sub-plan strong {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.price-sub-plan em {
  grid-column: 1 / -1;

  width: fit-content;

  padding: 4px 9px;

  border-radius: 999px;

  background: var(--blue);
  color: #fff;

  font-size: 11px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.price-showcase-note {
  margin: 24px 0 0;

  color: #64748b;

  text-align: center;

  font-size: 13px;
  line-height: 1.7;
}

.price-showcase-cta {
  margin-top: 28px;

  text-align: center;
}

/* =========================
Price Showcase SP
========================= */

@media (max-width: 960px) {
  .price-card-grid {
    grid-template-columns: 1fr;
  }

  .price-card-head {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .price-showcase {
    padding: 52px 0 60px;
  }

  .price-showcase-head {
    margin-bottom: 24px;
  }

  .price-showcase-head h2 {
    font-size: 30px;
    line-height: 1.35;
  }

  .price-showcase-head p:not(.section-kicker) {
    font-size: 14px;
    line-height: 1.7;
  }

  .price-pickup {
    grid-template-columns: 1fr;
    gap: 12px;

    padding: 22px 16px;

    border-radius: 24px;

    text-align: center;
  }

  .price-pickup-label {
    width: auto;
    height: auto;

    justify-self: center;

    padding: 6px 16px;

    border-radius: 999px;

    font-size: 14px;
  }

  .price-pickup-copy {
    justify-content: center;
    gap: 6px;
  }

  .price-pickup-copy span {
    flex-basis: 100%;
    font-size: 15px;
  }

  .price-pickup-copy strong {
    font-size: 52px;
  }

  .price-pickup-copy em {
    flex-basis: 100%;
    font-size: 20px;
  }

  .price-pickup p {
    grid-column: auto;
    margin: 0;

    font-size: 12px;
    line-height: 1.6;
  }

  .price-card-grid {
    gap: 16px;
  }

  .price-card {
    padding: 24px 16px 18px;
    border-radius: 24px;
  }

  .price-card-head h3 {
    font-size: 22px;
  }

  .price-main {
    padding: 16px 12px;
  }

  .price-off {
    font-size: 34px;
  }

  .price-now strong {
    font-size: 38px;
  }

  .price-sub-plan {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .price-sub-plan em {
    justify-self: center;
  }

  .price-showcase-cta .lp-btn {
    width: 100%;
  }
}

/* =========================
Rain Problem Section
========================= */

.rain-problem-section {
  padding: 76px 0;
  background: #fff;
}

.rain-problem-head {
  margin-bottom: 34px;
  text-align: center;
}

.rain-problem-head h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -.04em;
}

.rain-problem-head h2 span {
  color: var(--blue);
}

.rain-problem-head p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 800;
}

.rain-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.rain-problem-card {
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #eff6ff 100%);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .07);
}

.rain-problem-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(29, 78, 216, .08);
}

.rain-problem-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 32px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.rain-problem-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.rain-problem-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.rain-problem-message {
  margin: 32px auto 0;
  max-width: 760px;
  padding: 20px 24px;
  border-radius: 999px;
  background: var(--blue-dark);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 34px rgba(29, 78, 216, .2);
}

.rain-problem-message p {
  margin: 0;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 900;
}

.rain-problem-message strong {
  color: #fed7aa;
}

/* =========================
Roof Solution Section
========================= */

.roof-solution-section {
  padding: 84px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(249, 115, 22, .14), transparent 32%),
    linear-gradient(180deg, #eff6ff 0%, #fff 100%);
}

.roof-solution-inner {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
}

.roof-solution-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -.04em;
}

.roof-solution-copy h2 span {
  color: var(--orange);
}

.roof-solution-copy>p {
  margin: 0 0 26px;
  color: #475569;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 800;
}

.roof-solution-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.roof-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.roof-point span {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.roof-point strong {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.roof-solution-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.roof-solution-visual::before {
  content: "";
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29, 78, 216, .15), rgba(14, 165, 233, .1));
}

.roof-solution-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  filter: drop-shadow(0 28px 36px rgba(15, 23, 42, .2));
}

.roof-solution-badge {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 36px rgba(249, 115, 22, .28);
}

.roof-solution-badge span {
  font-size: 14px;
  font-weight: 900;
}

.roof-solution-badge strong {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.roof-solution-mini {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 8%;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 2px solid #fed7aa;
  color: var(--orange-dark);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .14);
}

.roof-solution-mini strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.roof-solution-mini span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

/* =========================
Final Campaign CTA
========================= */

.final-campaign-cta {
  padding: 86px 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(14, 165, 233, .18), transparent 34%),
    linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
}

.final-campaign-cta-box {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 42px;
  border-radius: 34px;
  background: #fff;
  text-align: center;
  box-shadow: 0 28px 64px rgba(15, 23, 42, .22);
}

.final-campaign-cta-box::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .12);
}

.final-campaign-cta-box::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(29, 78, 216, .1);
}

.final-cta-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.final-campaign-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -.04em;
}

.final-campaign-cta h2 span {
  color: var(--blue);
}

.final-campaign-cta-box>p:not(.final-cta-badge):not(.final-campaign-note) {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 800;
}

.final-campaign-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.final-campaign-note {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

/* =========================
SP
========================= */

@media (max-width: 960px) {
  .rain-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roof-solution-inner {
    grid-template-columns: 1fr;
  }

  .roof-solution-visual {
    min-height: 340px;
  }
}

@media (max-width: 600px) {

  .rain-problem-section,
  .roof-solution-section,
  .final-campaign-cta {
    padding: 52px 0;
  }

  .rain-problem-head h2,
  .roof-solution-copy h2,
  .final-campaign-cta h2 {
    font-size: 30px;
    line-height: 1.35;
  }

  .rain-problem-head p,
  .roof-solution-copy>p,
  .final-campaign-cta-box>p:not(.final-cta-badge):not(.final-campaign-note) {
    font-size: 14px;
    line-height: 1.4;
  }

  .rain-problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .rain-problem-card {
    padding: 20px 12px;
    border-radius: 20px;
  }

  .rain-problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .rain-problem-card h3 {
    font-size: 14px;
  }

  .rain-problem-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  .rain-problem-message {
    border-radius: 22px;
    padding: 16px 14px;
  }

  .rain-problem-message p {
    font-size: 16px;
  }

  .roof-solution-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .roof-point {
    display: block;
    padding: 14px 10px;
    text-align: center;
  }

  .roof-point span {
    margin: 0 auto 8px;
  }

  .roof-point strong {
    font-size: 13px;
  }

  .roof-solution-visual {
    min-height: 280px;
  }

  .roof-solution-badge {
    width: 96px;
    height: 96px;
  }

  .roof-solution-badge strong {
    font-size: 14px;
  }

  .roof-solution-mini {
    left: 0;
    bottom: 0;
    padding: 10px 12px;
  }

  .roof-solution-mini strong {
    font-size: 16px;
  }

  .final-campaign-cta-box {
    padding: 38px 18px;
    border-radius: 26px;
  }

  .final-campaign-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-campaign-buttons .lp-btn {
    width: 100%;
  }
}

/* =========================
Trust Section
========================= */

.trust-section {
  padding: 78px 0;
  background:
    linear-gradient(180deg, #fff 0%, #eff6ff 100%);
}

.trust-head {
  margin-bottom: 32px;
  text-align: center;
}

.trust-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.04em;
}

.trust-head h2 span {
  color: var(--orange);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.trust-card {
  position: relative;
  overflow: hidden;
  padding: 28px 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.trust-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(29, 78, 216, .07);
}

.trust-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 34px;
}

.trust-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.trust-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

/* =========================
SP
========================= */

@media (max-width: 960px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .trust-section {
    padding: 52px 0;
  }

  .trust-head h2 {
    font-size: 30px;
    line-height: 1.35;
  }

  .trust-grid {
    gap: 14px;
  }

  .trust-card {
    padding: 18px;
    border-radius: 22px;
  }

  .trust-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    font-size: 26px;
  }

  .trust-card h3 {
    font-size: 17px;
  }

  .trust-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}

.campaign-vehicle-features {
  display: grid;
  gap: 8px;

  margin: 0 0 16px;
  padding: 0;

  list-style: none;
}

.campaign-vehicle-features li {
  padding: 10px 12px;

  border-radius: 14px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;
}

.campaign-vehicle-features strong {
  display: inline-block;

  margin-bottom: 3px;

  color: #111827;

  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
}

.campaign-vehicle-features span {
  display: inline-block;

  color: #64748b;

  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.campaign-vehicle-features em {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-right: 4px;
  padding: 2px 7px;

  border-radius: 999px;

  background: #fff;
  border: 1px solid #cbd5e1;

  color: #111827;

  font-size: 12px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.campaign-vehicle-detail {
  margin: 0 0 16px;
  text-align: center;
}

.campaign-vehicle-detail .mod-btn01 {
  width: 100%;
  min-height: 42px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 900;
}

.price-sub-plan small {
  grid-column: 1 / -1;

  margin-top: 4px;

  color: #64748b;

  font-size: 11px;
  line-height: 1.6;
  font-weight: 700;
}

/* =========================
Rainy Campaign Popup
========================= */

.rainy-lp .popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;

  padding: 24px;

  background: rgba(15, 23, 42, .62);
  backdrop-filter: blur(4px);
}

.rainy-lp .popup-box,
.rainy-popup {
  position: relative;

  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  margin: 0 auto;

  overflow-y: auto;

  border-radius: 30px;

  background: #fff;

  box-shadow:
    0 30px 80px rgba(15, 23, 42, .35);
}

.rainy-lp .popup-close {
  position: sticky;
  top: 14px;
  left: 100%;
  z-index: 10;

  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  margin: 14px 14px 0 auto;

  border: 0;
  border-radius: 50%;

  background: var(--blue);
  color: #fff;

  font-size: 24px;
  line-height: 1;
  font-weight: 900;

  cursor: pointer;
}

/* =========================
Popup Head
========================= */

.rainy-popup-head {
  padding: 34px 34px 24px;

  text-align: center;

  background:
    linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
}

.rainy-popup-head p {
  display: inline-flex;

  margin: 0 0 12px;
  padding: 6px 16px;

  border-radius: 999px;

  background: var(--blue);
  color: #fff;

  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.rainy-popup-head h2 {
  margin: 0;

  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -.04em;
}

/* =========================
Popup Body
========================= */

.rainy-popup-body {
  padding: 30px 34px 38px;
}

.rainy-popup-section+.rainy-popup-section {
  margin-top: 30px;
}

.rainy-popup-section h3 {
  margin: 0 0 16px;
  padding-left: 14px;

  border-left: 5px solid var(--orange);

  font-size: 22px;
  line-height: 1.4;
  font-weight: 900;
}

/* =========================
Mini Highlight
========================= */

.rainy-mini-highlight {
  margin-bottom: 28px;
  padding: 20px 22px;

  border-radius: 22px;

  background:
    linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);

  border: 1px solid #bfdbfe;
}

.rainy-mini-highlight strong {
  display: block;

  margin-bottom: 8px;

  color: var(--blue);

  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
}

.rainy-mini-highlight p {
  margin: 0;

  color: #475569;

  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

/* =========================
Spec Table
========================= */

.rainy-spec-table {
  width: 100%;

  border-collapse: collapse;

  overflow: hidden;

  border-radius: 18px;

  background: #fff;

  border: 1px solid #e2e8f0;
}

.rainy-spec-table th,
.rainy-spec-table td {
  padding: 14px 16px;

  border-bottom: 1px solid #e5e7eb;

  text-align: left;

  font-size: 14px;
  line-height: 1.6;
}

.rainy-spec-table tr:last-child th,
.rainy-spec-table tr:last-child td {
  border-bottom: 0;
}

.rainy-spec-table th {
  width: 110px;

  background: #f8fafc;

  color: var(--blue);

  font-weight: 900;
}

.rainy-spec-table td {
  color: #334155;

  font-weight: 700;
}

.rainy-spec-table small {
  color: #64748b;

  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
}

/* =========================
BOX
========================= */

.rainy-popup-note {
  margin: 0 0 16px;

  color: #d70000;

  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.rainy-box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rainy-box-card {
  padding: 18px;

  border-radius: 22px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;
}

.rainy-box-card h4 {
  display: inline-flex;

  margin: 0 0 10px;
  padding: 5px 12px;

  border-radius: 999px;

  background: var(--blue);
  color: #fff;

  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.rainy-box-card p {
  margin: 0 0 12px;

  color: #475569;

  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.rainy-box-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.rainy-box-images img {
  width: 100%;
  height: auto;

  border-radius: 14px;

  background: #fff;

  box-shadow:
    0 8px 20px rgba(15, 23, 42, .08);
}

/* =========================
Feature
========================= */

.rainy-feature-grid {
  display: grid;
  gap: 16px;
}

.rainy-feature-card {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 18px;
  align-items: center;

  padding: 20px;

  border-radius: 22px;

  background: #fff;

  border: 1px solid var(--line);

  box-shadow:
    0 12px 28px rgba(15, 23, 42, .06);
}

.rainy-feature-card h4 {
  margin: 0 0 8px;

  color: var(--blue);

  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.rainy-feature-card p {
  margin: 0;

  color: #475569;

  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.rainy-feature-card img {
  width: 100%;
  height: 100px;

  border-radius: 16px;

  background: #fff;
}

.rainy-popup-alert {
  margin-top: 10px !important;

  color: #d70000 !important;

  font-size: 12px !important;
  line-height: 1.7 !important;
  font-weight: 700 !important;
}

.rainy-popup-footnote {
  margin: 26px 0 0;

  color: #64748b;

  font-size: 12px;
  line-height: 1.8;
  font-weight: 700;
}

/* =========================
SP
========================= */

@media (max-width: 600px) {

  .rainy-lp .popup-overlay {
    padding: 14px;
  }

  .rainy-lp .popup-box,
  .rainy-popup {
    max-height: calc(100vh - 28px);

    border-radius: 22px;
  }

  .rainy-lp .popup-close {
    width: 38px;
    height: 38px;

    margin: 10px 10px 0 auto;

    font-size: 22px;
  }

  .rainy-popup-head {
    padding: 28px 18px 20px;
  }

  .rainy-popup-head h2 {
    font-size: 24px;
    line-height: 1.35;
  }

  .rainy-popup-body {
    padding: 22px 16px 28px;
  }

  .rainy-popup-section h3 {
    font-size: 18px;
  }

  .rainy-mini-highlight {
    padding: 16px;
    border-radius: 18px;
  }

  .rainy-mini-highlight strong {
    font-size: 16px;
  }

  .rainy-mini-highlight p {
    font-size: 13px;
  }

  .rainy-box-grid,
  .rainy-feature-card {
    grid-template-columns: 1fr;
  }

  .rainy-feature-card {
    padding: 16px;
  }

  .rainy-feature-card h4 {
    font-size: 16px;
  }

  .rainy-feature-card p {
    font-size: 13px;
  }

  .rainy-spec-table th,
  .rainy-spec-table td {
    padding: 12px;

    font-size: 12px;
  }

  .rainy-spec-table th {
    width: 84px;
  }

}

/* =========================
Final Cleanup Override
========================= */

/* section-kicker：読みやすい吹き出し */
.section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0 0 22px;
  padding: 8px 16px;

  border-radius: 999px;

  background: #eff6ff;
  color: var(--blue);

  border: 1px solid rgba(29, 78, 216, .14);

  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;

  box-shadow: none;
}

.section-kicker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;

  width: 14px;
  height: 14px;

  transform: translateX(-50%) rotate(45deg);

  background: #eff6ff;

  border-right: 1px solid rgba(29, 78, 216, .14);
  border-bottom: 1px solid rgba(29, 78, 216, .14);
}

/* 価格カード見出し：&emsp;で高さ調整しない */
.price-card-head {
  min-height: 92px;
}

.price-card-head h3 {
  min-height: 64px;
  display: flex;
  align-items: flex-start;
}

/* 価格まわり */
.price-save-fee {
  color: #334155;
  background: #fff;
  border: 1px solid #cbd5e1;
}

.price-unit {
  margin-left: 2px;
  color: var(--blue);
  font-size: .45em;
  font-weight: 900;
}

/* 1ヶ月払い：青ベースのまま整える */
.price-sub-plan {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  gap: 5px;

  background: #eff6ff;
  border: 1px solid var(--line);
}

.price-sub-plan>span {
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.price-sub-plan>strong {
  color: var(--blue);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.price-sub-plan>em {
  justify-self: center;
  width: fit-content;

  padding: 4px 10px;
  border-radius: 999px;

  background: var(--blue);
  color: #fff;

  font-size: 11px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.price-sub-plan small {
  margin-top: 4px;
  color: #64748b;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

/* 車両画像＋特徴 */
.vehicle-media-block {
  display: block;
}

@media (max-width: 600px) {
  .vehicle-media-block {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    align-items: start;
    margin-bottom: 12px;
  }

  .vehicle-media-block>img {
    width: auto !important;
    height: 140px !important;
    object-fit: cover;
    position: relative;
    top: 40px;
    left: 4px;
  }

  .campaign-vehicle-features {
    gap: 6px;
    margin: 0;
  }

  .campaign-vehicle-features li {
    padding: 7px 8px;
    border-radius: 12px;
  }

  .campaign-vehicle-features strong {
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1.35;
    display:inline-block;
  }

  .campaign-vehicle-features span {
    font-size: 10px;
    line-height: 1.4;
    display:inline-block;
  }

  .campaign-vehicle-features em {
    padding: 2px 5px;
    font-size: 12px;
  }
}

/* popup画像の歪み防止 */
.rainy-feature-card img {
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

/* SP */
@media (max-width: 600px) {
  .price-card-head {
    min-height: auto;
  }

  .price-card-head h3 {
    min-height: auto;
  }

  .section-kicker {
    padding: 7px 13px;
    font-size: 11px;
  }

  .section-kicker::after {
    bottom: -6px;
    width: 12px;
    height: 12px;
  }
}

.campaign-main-offer {
  position: relative;
  margin: 22px 0;
  padding: 24px 18px 22px;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7d6 0%, #fff 45%, #ffe6e6 100%);
  border: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.campaign-main-offer::before {
  content: "";
  position: absolute;
  top: -45px;
  right: -45px;
  width: 120px;
  height: 120px;
  background: rgba(255, 179, 0, 0.22);
  border-radius: 50%;
}

.offer-kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #e60012;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.offer-label {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #333;
}

.offer-main {
  margin: 2px 0 0;
  line-height: 1;
  font-weight: 900;
  color: #e60012;
  letter-spacing: -1px;
}

.offer-main span {
  font-size: 76px;
}

.offer-main {
  font-size: 34px;
}

.offer-sub {
  display: inline-block;
  margin: 3px 0 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.offer-benefit {
  margin: 14px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: #d35400;
}

.offer-benefit span {
  font-size: 28px;
  color: #e60012;
}

.referral-double {
  margin-top: 14px;
  display: block;
  padding: 10px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7cc 0%, #fff1f1 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}

@media (max-width: 600px) {
  .referral-double {
    width: 100%;
  }
}

.referral-double strong {
  font-size: 20px;
  color: #e60012;
}

.steps .section-kicker,
.faq .section-kicker {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 22px;
}

.step-grid {
  position: relative;
}

.step-card {
  position: relative;
}

/* 矢印 */
.step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);

  color: var(--blue);
  font-size: 28px;
  font-weight: 900;

  z-index: 5;
}

@media (max-width: 600px) {
  .step-card:not(:last-child)::after {
    display: none;
  }
}

.box-zoom-img {
  cursor: zoom-in;
}

.box-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(15, 23, 42, .78);
}

.box-zoom-overlay.is-active {
  display: flex;
}

.box-zoom-overlay img {
  max-width: min(92vw, 900px);
  max-height: 86vh;

  border-radius: 18px;

  background: #fff;

  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);

  cursor: zoom-out;
}

.box-zoom-close {
  position: fixed;
  top: 480px;
  right: 600px;

  width: 42px;
  height: 42px;

  border: 0;
  border-radius: 50%;

  background: #fff;
  color: var(--blue);

  font-size: 28px;
  line-height: 1;
  font-weight: 900;

  cursor: pointer;
}

@media (max-width: 600px) {
  .box-zoom-overlay {
    padding: 12px;
  }

  .box-zoom-close {
    top: 200px;
    right: 35px;
  }

  .box-zoom-overlay img {
    max-width: 94vw;
    max-height: 82vh;
    border-radius: 14px;
  }
}

/* =========================
footerデザイン
========================= */

@media (max-width: 767px) {

  body {
    padding-bottom: 92px;
  }

  .footer-fix {
    position: fixed !important;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 9998;

    display: grid !important;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 8px;

    width: auto !important;
    max-width: none !important;
    height: auto !important;

    padding: 8px;

    border-radius: 24px;

    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);

    box-shadow: 0 12px 34px rgba(15, 23, 42, .24);
  }

  .footer-fix__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px;

    padding: 0 8px !important;

    border-radius: 999px;

    background: #eff6ff !important;
  }

  .footer-fix__tel {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;

    min-width: 0 !important;
    width: 100%;
  }

  .footer-fix__tel img {
    flex: 0 0 auto;
    width: 16px !important;
    height: 16px !important;
  }

  .footer-fix__tel a {
    min-width: 0;

    color: var(--blue);
    text-decoration: none;

    font-size: 13px;
    line-height: 1;
    font-weight: 900;

    white-space: nowrap;
  }

  .footer-fix__time {
    display: none !important;
  }

  .footer-fix__btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px;
    padding: 0 10px !important;
    border-radius: 999px;
    background: #F97317;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(249, 115, 22, .32);
  }


  @media (max-width: 767px) {

    .footer-fix__inner {
      flex-direction: column;
      gap: 2px;
    }

    .footer-fix__time {
      display: block !important;

      color: #64748b;

      font-size: 9px;
      line-height: 1.3;
      font-weight: 700;

      text-align: center;
    }

  }
}
/* ==============================
  約款・補償リンク
============================== */

.rainy-lp .campaign-policy-link {
  padding: 42px 0;
  background: #f8fafc;
}

.rainy-lp .campaign-policy-link p {
  margin: 0 0 22px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
  font-weight: 700;
}

.rainy-lp .campaign-policy-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rainy-lp .campaign-policy-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

/* ==============================
  SP横スクロール
============================== */

@media (max-width: 768px) {

  .benefits-v2-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .benefits-v2-grid::-webkit-scrollbar {
    display: none;
  }

  .benefits-v2-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

}

@media (max-width: 768px) {

  .trust-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-right: calc(50% - 50vw);
    padding-right: 20px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .trust-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    min-height: auto;
  }

}

@media (max-width: 768px) {

  .price-plan-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 12px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
  }

  .price-plan-scroll .price-main,
  .price-plan-scroll .price-sub-plan {
    flex: 0 0 86%;
    scroll-snap-align: center;
    margin: 0;
  }

  /* Chrome Safari */
  .price-plan-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .price-plan-scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  .price-plan-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
  }

}

.price-pickup small {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.8;
  color: inherit;
  opacity: 0.9;
}

.price-pickup.is-light {
  background: #eff6ff;
  border: 1px solid var(--line);
  color: #0f172a;
}

.price-pickup.is-light .price-pickup-label {
  background: #1d4ed8;
  color: #ffffff;
}

.price-pickup.is-light .price-pickup-copy span,
.price-pickup.is-light .price-pickup-copy strong {
  color: #1d4ed8;
}

.price-pickup.is-light .price-pickup-copy em {
  color: #2563eb;
}

.price-pickup.is-light p {
  color: #334155;
}

.price-pickup.is-light small {
  border-top-color: #bfdbfe;
  color: #475569;
}
/* ==============================
  上部比較カード
  PC：縦並び
  SP：横スクロール
============================== */

.price-pickup-scroll {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 auto 34px;
}

.price-pickup-scroll .price-pickup {
  margin: 0;
  max-width: none;
}

@media (max-width: 768px) {
  .price-pickup-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .price-pickup-scroll .price-pickup {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }

  .price-pickup-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .price-pickup-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
  }
}

/* PC：price-pickup内の文章位置を揃える */
@media (min-width: 769px) {
  .price-pickup-scroll .price-pickup {
    grid-template-columns: 140px 1fr;
    align-items: center;
  }

  .price-pickup-scroll .price-pickup-label {
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .price-pickup-scroll .price-pickup-copy,
  .price-pickup-scroll .price-pickup p,
  .price-pickup-scroll .price-pickup small {
    grid-column: 2;
  }

  .price-pickup-scroll .price-pickup small {
    margin-top: 14px;
    padding-top: 14px;
  }
}