:root {
  --white: #ffffff;
  --bg-muted: #f7f8fa;
  --line: #e5e7eb;
  --line-field: #d1d5db;
  --text: #222222;
  --text-muted: #666666;
  --accent: #d7000f;
  --safe-bg: #eaf3ff;
  --balance-bg: #eef8ee;
  --first-bg: #fff8e8;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  --shadow-accent: 0 6px 16px rgba(215, 0, 15, 0.18);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-form: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.site-header-link {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--accent);
  border-radius: 9999px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-header-link:hover {
  background: var(--accent);
  color: var(--white);
}

body.is-car-modal-open,
body.is-store-modal-open {
  overflow: hidden;
}

.car-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
}

.car-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.56);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.car-modal-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(calc(100dvh - 40px), 760px);
  padding: 24px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: start;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}

.car-modal[aria-hidden="false"] {
  pointer-events: auto;
}

.car-modal[aria-hidden="false"] .car-modal-backdrop {
  opacity: 1;
}

.car-modal[aria-hidden="false"] .car-modal-panel {
  opacity: 1;
  transform: scale(1);
}

.car-modal-close {
  position: sticky;
  top: 0;
  right: 0;
  z-index: 2;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: var(--white);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.car-modal-layout {
  display: grid;
  gap: 20px;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.car-modal-media {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fcfcfd;
}

.car-modal-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.car-modal-content {
  display: grid;
  gap: 14px;
}

.car-modal-specs {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.car-modal-spec-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.car-modal-spec-row:last-child {
  border-bottom: 0;
}

.car-modal-spec-label {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.car-modal-spec-value {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  white-space: pre-line;
}

.car-modal-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
}

.car-modal-link {
  width: 100%;
}

.store-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}

.store-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.48);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.store-modal-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: min(82vh, 760px);
  background: var(--white);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  overflow: hidden;
}

.store-modal[aria-hidden="false"] {
  pointer-events: auto;
}

.store-modal[aria-hidden="false"] .store-modal-backdrop {
  opacity: 1;
}

.store-modal[aria-hidden="false"] .store-modal-panel {
  transform: translateY(0);
}

.store-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
}

.store-modal-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 16px 20px 0;
}

.store-modal-tab {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.store-modal-tab.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.store-modal-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: var(--white);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.store-modal-body {
  display: grid;
  gap: 14px;
  max-height: calc(min(82vh, 760px) - 94px);
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.store-modal-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fcfcfd;
  box-shadow: var(--shadow);
}

.store-modal-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.store-modal-table {
  display: grid;
}

.store-modal-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.store-modal-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.store-modal-row dt {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.store-modal-row dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-line;
}

.store-modal-row a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.store-modal-route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--accent);
  border-radius: 9999px;
  background: var(--white);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.store-modal-route-link:hover {
  background: var(--accent);
  color: var(--white);
}

body.has-sticky-cta {
  padding-bottom: 96px;
}

img {
  width: 100%;
  height: auto;
}

.page {
  overflow: hidden;
}

.section,
.hero,
.footer {
  padding: 56px 0;
}

.section-muted {
  background: var(--bg-muted);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 20px;
}

.narrow {
  max-width: 800px;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-label-center {
  display: block;
  text-align: center;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 700;
}

h1 {
  font-size: 30px;
  line-height: 1.4;
  text-align: center;
}

h2 {
  font-size: 24px;
  line-height: 1.5;
}

h3 {
  font-size: 20px;
  line-height: 1.5;
}

h1 + .lead,
h2 + .lead,
h2 + .body-text,
h2 + .support-text {
  margin-top: 16px;
}

.lead {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  color: var(--text);
  white-space: pre-line;
}

.body-text {
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
  color: var(--text);
  white-space: pre-line;
}

.support-text,
.field-note,
.form-note-list p,
.form-status,
.card-caption,
.footer-list li,
.footer a {
  font-size: 13px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-muted);
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--accent);
}

.hero {
  position: relative;
  padding-block: 56px;
  background: var(--white);
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.hero-logo-image {
  display: block;
  width: auto;
  max-width: 160px;
  height: auto;
}

.hero-logo-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.hero-layout {
  display: grid;
  gap: 24px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

.check-list li + li {
  margin-top: 10px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.safety-card,
.feature-card,
.store-card,
.form-card,
.branch-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.safety-card,
.feature-card,
.form-card {
  border-radius: 0;
}

.safety-card {
  padding: 24px;
}

.branch-grid,
.feature-grid,
.store-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.branch-card {
  position: relative;
  display: block;
  padding: 20px;
}

.branch-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.branch-card-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 9999px;
  background: var(--bg-muted);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

.branch-card h3 {
  padding-right: 28px;
}

.branch-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.target-section {
  padding-block: 56px;
}

.target-section-safe {
  background: var(--safe-bg);
}

.target-section-balance {
  background: var(--balance-bg);
}

.target-section-first {
  background: var(--first-bg);
}

.target-layout {
  display: grid;
  gap: 24px;
}

.target-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.target-media img {
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.car-silhouette-figure {
  position: relative;
  margin: 24px auto 0;
  padding-inline: 20px;
  padding-bottom: 88px;
  text-align: center;
  overflow: hidden;
  background-color: #edf3f8;
  background-image: linear-gradient(180deg, #f9fbfd 0%, #edf3f7 52%, #e3ebf2 100%);
  background-size: 100% 100%;
  background-position: 0 0;
  transition: background-color 1.8s ease, filter 1.8s ease;
}

.car-silhouette-figure.is-snow {
  background-color: #edf3f8;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 2px, transparent 2.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 1.6px, transparent 2.1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.62) 0 1.2px, transparent 1.8px),
    linear-gradient(180deg, #f7fbff 0%, #e6eef6 52%, #dde7ef 100%);
  background-size: 140px 120px, 220px 160px, 300px 200px, 100% 100%;
  background-position: 0 0, 30px 10px, 80px 20px, 0 0;
  animation: snowfall-drift 16s linear infinite;
}

.car-silhouette-figure.is-rain {
  background-color: #dce5ee;
  background-image:
    repeating-linear-gradient(
      -14deg,
      rgba(255, 255, 255, 0.32) 0 2px,
      transparent 2px 18px
    ),
    repeating-linear-gradient(
      -14deg,
      rgba(255, 255, 255, 0.16) 0 1px,
      transparent 1px 14px
    ),
    linear-gradient(180deg, #eef3f8 0%, #dce5ee 58%, #d1dbe6 100%);
  background-size: 180px 180px, 120px 120px, 100% 100%;
  background-position: 0 0, 30px 10px, 0 0;
  animation: rainfall-drift 1.6s linear infinite;
}

.car-silhouette-figure.is-night {
  background-color: #243244;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1.6px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 1.1px, transparent 1.7px),
    linear-gradient(180deg, #324359 0%, #243244 56%, #1c2633 100%);
  background-size: 180px 140px, 260px 200px, 100% 100%;
  background-position: 0 0, 40px 20px, 0 0;
}

.car-silhouette-figure-sunny {
  background-color: #eef7ef;
  background-image: linear-gradient(180deg, #fbfdfb 0%, #eef7ef 52%, #e3efdf 100%);
}

.car-silhouette-figure-seaside {
  background-color: #e8f5fb;
  background-image:
    linear-gradient(180deg, #f8fcff 0%, #dff1fb 46%, #a9d8ea 46%, #8dc6db 60%, #dbe8d6 60%, #dfe8d9 100%);
}

.car-silhouette-figure::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 88px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='88' viewBox='0 0 240 88'%3E%3Cg fill='%23666666'%3E%3Crect x='0' y='72' width='240' height='16'/%3E%3Crect x='16' y='34' width='7' height='38'/%3E%3Ccircle cx='19.5' cy='28' r='14'/%3E%3Ccircle cx='31' cy='34' r='10'/%3E%3Ccircle cx='10' cy='37' r='11'/%3E%3Crect x='70' y='26' width='8' height='46'/%3E%3Ccircle cx='74' cy='17' r='17'/%3E%3Ccircle cx='87' cy='25' r='12'/%3E%3Ccircle cx='61' cy='28' r='12'/%3E%3Crect x='132' y='40' width='6' height='32'/%3E%3Cpolygon points='135,12 154,44 116,44'/%3E%3Crect x='182' y='30' width='7' height='42'/%3E%3Ccircle cx='185.5' cy='24' r='15'/%3E%3Ccircle cx='198' cy='31' r='10'/%3E%3Ccircle cx='174' cy='34' r='11'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 240px 88px;
  opacity: 0.2;
  animation: silhouette-trees-flow 12s linear infinite;
  pointer-events: none;
  transition: opacity 1.8s ease, filter 1.8s ease;
}

.car-silhouette-figure-sunny::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='88' viewBox='0 0 360 88'%3E%3Cg fill='%23666666'%3E%3Crect x='0' y='72' width='360' height='16'/%3E%3Crect x='12' y='34' width='6' height='38'/%3E%3Ccircle cx='15' cy='28' r='14'/%3E%3Ccircle cx='26' cy='34' r='9'/%3E%3Ccircle cx='5' cy='37' r='10'/%3E%3Crect x='46' y='38' width='56' height='34' rx='2'/%3E%3Crect x='54' y='46' width='14' height='10' fill='%23ffffff' fill-opacity='.22'/%3E%3Crect x='74' y='46' width='18' height='10' fill='%23ffffff' fill-opacity='.22'/%3E%3Crect x='62' y='28' width='24' height='10'/%3E%3Crect x='120' y='24' width='6' height='48'/%3E%3Crect x='126' y='26' width='20' height='8' rx='1'/%3E%3Crect x='132' y='34' width='8' height='24'/%3E%3Ccircle cx='178' cy='24' r='8'/%3E%3Crect x='175' y='31' width='6' height='41'/%3E%3Crect x='198' y='36' width='52' height='36' rx='2'/%3E%3Cpolygon points='224,18 254,36 194,36'/%3E%3Crect x='214' y='46' width='12' height='16' fill='%23ffffff' fill-opacity='.22'/%3E%3Crect x='280' y='32' width='7' height='40'/%3E%3Ccircle cx='283.5' cy='26' r='15'/%3E%3Ccircle cx='295' cy='33' r='10'/%3E%3Ccircle cx='272' cy='36' r='10'/%3E%3Crect x='326' y='40' width='6' height='32'/%3E%3Cpolygon points='329,18 345,44 313,44'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 360px 88px;
  opacity: 0.24;
}

.car-silhouette-figure-seaside::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='88' viewBox='0 0 360 88'%3E%3Cg fill='%23666666'%3E%3Crect x='0' y='72' width='360' height='16'/%3E%3Crect x='24' y='44' width='6' height='28'/%3E%3Ccircle cx='27' cy='38' r='10'/%3E%3Ccircle cx='36' cy='43' r='7'/%3E%3Ccircle cx='18' cy='45' r='7'/%3E%3Cpath d='M72 58 C96 46, 118 46, 144 58 L144 62 C118 54, 96 54, 72 62 Z'/%3E%3Cpath d='M160 56 C184 44, 212 44, 236 56 L236 60 C212 53, 184 53, 160 60 Z'/%3E%3Crect x='270' y='42' width='6' height='30'/%3E%3Ccircle cx='273' cy='36' r='9'/%3E%3Ccircle cx='281' cy='41' r='6'/%3E%3Ccircle cx='265' cy='43' r='6'/%3E%3Crect x='318' y='46' width='5' height='26'/%3E%3Cpolygon points='320.5,26 332,46 309,46'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 360px 88px;
  opacity: 0.18;
}

.car-silhouette-figure.is-rain::before {
  opacity: 0.24;
}

.car-silhouette-figure.is-night::before {
  opacity: 0.34;
  filter: brightness(0.72);
}

.car-silhouette-figure::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  background: rgba(34, 34, 34, 0.28);
  pointer-events: none;
  transition: background-color 1.8s ease;
}

.car-silhouette-figure.is-snow::after {
  background: rgba(255, 255, 255, 0.72);
}

.car-silhouette-figure.is-rain::after {
  background: rgba(34, 34, 34, 0.34);
}

.car-silhouette-figure.is-night::after {
  background: rgba(255, 255, 255, 0.22);
}

.car-silhouette-figure-sunny::after {
  background: rgba(68, 78, 58, 0.3);
}

.car-silhouette-figure-seaside::after {
  background: rgba(64, 89, 103, 0.26);
}

.car-silhouette-wrap {
  position: relative;
  display: inline-block;
}

.car-silhouette-light {
  position: absolute;
  top: calc(50% + 88px);
  left: -6%;
  z-index: 0;
  width: 180px;
  height: 72px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-45%, -50%);
  transform-origin: right center;
  transition: opacity 1.8s ease, filter 1.8s ease;
  background:
    radial-gradient(circle at 100% 50%, rgba(255, 236, 146, 0.95) 0 10px, rgba(255, 236, 146, 0.5) 10px 20px, transparent 22px),
    linear-gradient(90deg, rgba(255, 233, 140, 0.72) 0%, rgba(255, 233, 140, 0.32) 32%, rgba(255, 233, 140, 0.08) 62%, transparent 100%);
  clip-path: polygon(100% 48%, 0 0, 0 100%);
  filter: blur(1px);
}

.car-silhouette-figure.is-night .car-silhouette-light {
  opacity: 0.9;
  filter: blur(0.4px);
}

.car-silhouette-figure-sunny .car-silhouette-light {
  opacity: 0;
}

.car-silhouette-figure-seaside .car-silhouette-light {
  opacity: 0;
}

.car-silhouette {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  top: 88px;
  margin-inline: auto;
}

@keyframes silhouette-trees-flow {
  from {
    background-position: 0 100%;
  }

  to {
    background-position: 240px 100%;
  }
}

@keyframes snowfall-drift {
  from {
    background-position: 0 0, 30px 10px, 80px 20px, 0 0;
  }

  to {
    background-position: 80px 180px, -60px 220px, 120px 260px, 0 0;
  }
}

@keyframes rainfall-drift {
  from {
    background-position: 0 0, 30px 10px, 0 0;
  }

  to {
    background-position: -40px 180px, -20px 140px, 0 0;
  }
}

.recommend-box {
  margin-top: 20px;
}

.recommend-label {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.recommend-item {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.recommend-thumb {
  aspect-ratio: 4 / 3;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.recommend-name {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.feature-card {
  padding: 20px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 9999px;
  background: #f4f4f4;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
}

.feature-card .body-text {
  margin-top: 8px;
}

.support-layout {
  display: grid;
  gap: 24px;
}

.store-card {
  padding: 20px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.store-card:hover {
  transform: translateY(-1px);
}

.store-name {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.closing-box {
  text-align: center;
}

.cta-panel {
  margin-top: 28px;
  margin-inline: auto;
  padding: 24px;
  background: var(--bg-muted);
  border: 1px solid var(--line);
  border-radius: 0;
  text-align: center;
}

.cta-panel .cta-group {
  align-items: center;
  justify-content: center;
}

.section-form {
  background: var(--bg-muted);
}

.form-card {
  padding: 20px;
  border-radius: 0;
}

.form-field + .form-field,
.form-grid + .form-field,
.form-field + .form-grid {
  margin-top: 20px;
}

.field-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  color: var(--text);
}

.required-badge {
  display: inline-block;
  margin-left: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  height: 52px;
  padding-inline: 16px;
  border: 1px solid var(--line-field);
  border-radius: 12px;
  background: var(--white);
  font-size: 16px;
  color: var(--text);
  appearance: none;
}

textarea {
  min-height: 140px;
  padding-block: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(215, 0, 15, 0.08);
}

.radio-group {
  display: grid;
  gap: 12px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px;
  border: 1px solid var(--line-field);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.radio-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.radio-card:has(input:checked) {
  background: rgba(215, 0, 15, 0.05);
  border-color: var(--accent);
}

.agreement-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.8;
}

.agreement-label input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.form-grid {
  display: grid;
  gap: 20px;
}

.error-message {
  min-height: 20px;
  margin-top: 8px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1.7;
}

.is-invalid input,
.is-invalid select,
.is-invalid textarea,
.is-invalid .radio-card {
  border-color: var(--accent);
}

.btn-submit {
  margin-top: 24px;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
}

.form-status.is-success {
  color: var(--text);
}

.form-note-list {
  margin-top: 20px;
}

.form-note-list p + p {
  margin-top: 4px;
}

.footer {
  padding-block: 32px;
  background: #222222;
}

.footer h2 {
  color: var(--white);
}

.footer-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.footer-list li,
.footer a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-copy {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.7;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
}

.sticky-cta-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 1120px;
  margin: 0 auto;
}

.sticky-cta .btn {
  min-height: 48px;
  padding: 0 12px;
  font-size: 14px;
  min-width: 0;
}

@media (min-width: 768px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }

  .section,
  .hero {
    padding-block: 88px;
  }

  .container {
    padding-inline: 24px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .lead {
    font-size: 18px;
  }

  .body-text {
    font-size: 16px;
  }

  .support-text,
  .field-note,
  .form-note-list p,
  .form-status,
  .card-caption,
  .footer-list li,
  .footer a {
    font-size: 14px;
  }

  .hero-layout {
    align-items: center;
    gap: 48px;
  }

  .hero-logo-image {
    max-width: 200px;
  }

  .hero-logo-text {
    font-size: 15px;
  }

  .site-header-link {
    display: inline-flex;
  }

  .car-modal-panel {
    padding: 32px;
  }

  .car-modal-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 28px;
  }

  .store-modal-panel {
    left: 50%;
    width: min(960px, calc(100% - 40px));
    transform: translateX(-50%) translateY(100%);
    border-radius: 28px 28px 0 0;
  }

  .store-modal[aria-hidden="false"] .store-modal-panel {
    transform: translateX(-50%) translateY(0);
  }

  .store-modal-body {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-group-hero {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: none;
  }

  .btn {
    width: auto;
    min-width: 240px;
  }

  .branch-grid,
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .target-layout,
  .support-layout {
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: 40px;
  }

  .target-layout .target-copy {
    order: 2;
  }

  .target-layout .target-media {
    order: 1;
  }

  .support-layout .support-copy {
    order: 1;
  }

  .support-layout .store-list {
    order: 2;
  }

  .store-list {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-cta {
    display: none;
  }
}
