:root {
  --blue: #005bab;
  --blue-dark: #003f7f;
  --orange: #E71410;
  --orange-dark: #b80f0d;
  --yellow: #ffd640;
  --brand-red: #E71410;
  --brand-red-dark: #b80f0d;
  --ink: #13243a;
  --muted: #5f6f82;
  --line: #dde7ef;
  --soft: #f4f8fb;
  --white: #fff;
  --shadow: 0 18px 44px rgba(0, 65, 120, .13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 190px;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.global-nav a {
  white-space: nowrap;
}

.nav-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  display: none;
}

.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 8px;
  color: #9aa8b7;
}

.breadcrumb a {
  color: var(--blue-dark);
}

.breadcrumb a:hover {
  color: var(--brand-red);
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%);
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding: 84px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 4px 12px;
  color: var(--brand-red-dark);
  font-size: 20px;
  background: var(--yellow);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.18;
  font-weight: 900;
  word-break: keep-all;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 900;
}

.lead {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 19px;
  font-weight: 700;
}

.nowrap {
  white-space: nowrap;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .14);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.btn-white {
  color: var(--blue);
  background: var(--white);
}

.btn-white-outline {
  color: var(--white);
  border-color: var(--white);
}

.section {
  padding: 86px 0;
}

.available-section {
  background: var(--white);
}

.intro-band,
.map-section,
.faq-section {
  background: #F8F8F8;
}

.available-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: 46px;
  align-items: center;
}

.available-point {
  margin: 18px 0 28px;
  color: var(--blue-dark);
  font-weight: 900;
}

.available-visual {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.available-card {
  padding: 30px;
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.available-card h3 {
  margin-bottom: 20px;
  text-align: center;
  color: var(--blue-dark);
}

.monthly-map {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.available-layout h2 {
  font-size: clamp(28px, 3.2vw, 36px);
}

.ward-light {
  fill: #e3eef6;
  stroke: #fff;
  stroke-width: 5;
}

.ward-light.active {
  fill: var(--orange);
}

.mini-map-label {
  fill: var(--blue-dark);
  font-size: 16px;
  font-weight: 900;
}

.available-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.available-features div {
  min-height: 112px;
  padding: 18px;
  color: var(--white);
  background: var(--brand-red);
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 6px;
}

.available-features span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.available-features strong {
  display: block;
  font-size: 22px;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

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

.reason-card,
.car-card,
.spot-card,
.map-card,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reason-card {
  padding: 26px;
}

.reason-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--brand-red);
  border-radius: 50%;
  font-weight: 900;
}

.reason-card p,
.section-head p,
.map-layout p,
.spot-card p,
.faq-list p,
.note {
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.area-index-main {
  padding-top: 86px;
}

.area-index-main .section-head {
  margin-inline: auto;
  text-align: center;
}

.area-index-main h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.18;
}

.lineup-head {
  max-width: 960px;
}

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

.car-card {
  overflow: hidden;
}

.car-visual {
  padding: 24px 26px 12px;
  background: var(--white);
}

.class-head {
  display: grid;
  grid-template-columns: 158px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  margin-bottom: 6px;
}

.class-head span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--brand-red);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
}

.class-head h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.15;
}

.car-visual img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 10px 10px 0;
  background: var(--white);
}

.daily-price {
  margin: 8px 0 2px;
  color: #050505;
  font-size: 23px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
}

.daily-price strong {
  color: var(--brand-red);
  font-size: clamp(36px, 4vw, 48px);
  letter-spacing: 0;
}

.car-body {
  padding: 0 26px 26px;
}

.price-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 0;
}

.price-table div + div {
  border-left: 2px solid var(--white);
}

.price-table dt {
  padding: 8px 8px;
  color: var(--white);
  background: #d89900;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
}

.price-table div:nth-child(2) dt {
  background: var(--blue);
}

.price-table dd {
  margin: 0;
  padding: 10px 8px 12px;
  color: #303030;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  line-height: 1.35;
}

.price-table dd strong {
  font-size: clamp(25px, 3vw, 32px);
  letter-spacing: 0;
}

.price-table small {
  display: block;
  margin-top: 4px;
  color: #303030;
  font-size: 12px;
  font-weight: 500;
}

.cdw {
  margin: 0 0 18px;
  color: #303030;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.price-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--brand-red);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.price-button::after {
  content: ">";
  margin-left: 10px;
  font-size: 20px;
  line-height: 1;
}

.note {
  margin-top: 22px;
  font-size: 14px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: 46px;
  align-items: center;
}

.service-head {
  max-width: none;
}

.service-head p {
  white-space: nowrap;
}

.service-head h3 {
  margin: 10px 0 14px;
  color: var(--blue-dark);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
}

.service-spot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--brand-red);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.5;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-action {
  margin-top: 30px;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
}

.map-card {
  padding: 22px;
}

.ward {
  fill: #d6e5ef;
  stroke: #fff;
  stroke-width: 5;
}

.ward.active {
  fill: var(--orange);
}

.map-label {
  fill: var(--blue-dark);
  font-size: 18px;
  font-weight: 900;
}

.active-label {
  fill: var(--white);
  font-size: 28px;
}

.drive-section {
  background: linear-gradient(180deg, #fff 0%, #fff 60%, #f8fbfd 100%);
}

.drive-section .section-head {
  max-width: none;
}

.drive-section .section-head h2 {
  white-space: nowrap;
}

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

.spot-card {
  overflow: hidden;
}

.spot-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.spot-card div {
  padding: 24px;
}

.cta-band {
  padding: 70px 0;
  color: var(--white);
  background: linear-gradient(135deg, #b80f0d 0%, #E71410 54%, #f0443f 100%);
}

.cta-band .section-label {
  color: var(--yellow);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.cta-inner h2 {
  margin-bottom: 10px;
}

.cta-inner p:last-child {
  margin-bottom: 0;
}

.cta-actions {
  display: grid;
  min-width: 360px;
  gap: 12px;
}

.cta-actions .btn {
  border-width: 3px;
  box-shadow: 0 12px 26px rgba(80, 0, 0, .22);
}

.btn-cta-main {
  min-height: 64px;
  font-size: 18px;
  color: var(--white);
  background: #227BFF;
  border-color: var(--white);
}

.btn-cta-main:hover {
  color: var(--white);
  background: #227BFF;
  border-color: var(--white);
}

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

.cta-sub-actions .btn {
  color: var(--brand-red);
  background: var(--white);
  border-color: var(--white);
}

.cta-sub-actions .btn:hover {
  color: var(--brand-red);
  background: var(--white);
  border-color: var(--white);
}

.strength-section {
  padding: 42px 0;
  background: var(--white);
}

.strength-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--blue-dark);
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 22px;
}

.area-links {
  padding-top: 70px;
}

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

.area-grid a {
  display: grid;
  min-height: 56px;
  place-items: center;
  padding: 10px;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

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

.area-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 174px;
  overflow: hidden;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 65, 120, .18);
}

.area-card img {
  grid-row: span 4;
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 6px;
}

.area-card span {
  align-self: end;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.area-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.area-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  padding: 42px 0 70px;
  color: var(--white);
  background: var(--brand-red);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-inner img {
  width: 180px;
  padding: 10px;
  background: var(--white);
}

address {
  font-style: normal;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    min-height: 64px;
    padding: 12px 16px;
  }

  .global-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    display: none;
    width: min(320px, calc(100vw - 32px));
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .global-nav a {
    padding: 12px 14px;
    border-radius: 6px;
  }

  .global-nav a:hover {
    background: var(--soft);
  }

  .menu-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: var(--blue-dark);
    border-radius: 999px;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-toggle:checked ~ .global-nav {
    display: flex;
  }

  .hero {
    min-height: 560px;
  }

  .split,
  .available-layout,
  .map-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .map-layout {
    gap: 28px;
  }

  .car-grid,
  .service-spot-grid,
  .spot-grid,
  .area-card-grid {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-head p {
    white-space: normal;
  }

  .drive-section .section-head h2 {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .container,
  .hero-inner {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 160px;
  }

  .global-nav {
    gap: 16px;
    font-size: 12px;
  }

  h1 {
    font-size: 35px;
  }

  .hero .eyebrow {
    font-size: 15px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .68) 58%, rgba(0, 0, 0, .48) 100%);
  }

  .section {
    padding: 62px 0;
  }

  .reason-grid,
  .available-features,
  .area-grid,
  .area-card-grid {
    grid-template-columns: 1fr;
  }

  .area-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .area-card img {
    grid-row: auto;
    height: 180px;
  }

  .available-card {
    padding: 16px;
  }

  .cta-actions {
    min-width: 0;
  }

  .cta-sub-actions {
    grid-template-columns: 1fr;
  }

  .class-head {
    grid-template-columns: 128px 1fr;
    gap: 12px;
  }

  .class-head span {
    min-height: 52px;
    font-size: 18px;
  }

  .class-head h3 {
    font-size: 20px;
  }

  .car-visual {
    padding: 20px 18px 10px;
  }

  .car-visual img {
    height: 155px;
  }

  .price-table {
    grid-template-columns: 1fr;
  }

  .price-table div + div {
    border-top: 2px solid var(--white);
    border-left: 0;
  }

  .map-card {
    padding: 10px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.page-nakaku .hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%),
    url("assets/area/nakaku/fv-kamiyacho-hatchobori.jpg") center / cover no-repeat;
}

.page-hiroshima-airport .hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%),
    url("assets/area/hiroshima-airport/fv-hiroshima-airport.jpg") center / cover no-repeat;
}

.page-yokogawaeki .hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%),
    url("assets/area/yokogawaeki/fv-yokogawaeki.jpg") center / cover no-repeat;
}

.page-hiroshimaeki .hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%),
    url("assets/area/hiroshimaeki/fv-hiroshimaeki.jpg") center / cover no-repeat;
}

.page-akiku .hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%),
    url("assets/area/akiku/fv-akiku.jpg") center / cover no-repeat;
}

.page-saekiku .hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%),
    url("assets/area/saekiku/fv-saekiku.jpg") center / cover no-repeat;
}

.page-asaminamiku .hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%),
    url("assets/area/asaminamiku/fv-asaminamiku.jpg") center / cover no-repeat;
}

.page-nishiku .hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%),
    url("assets/area/nishiku/fv-nishiku.jpg") center / cover no-repeat;
}

.page-minamiku .hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%),
    url("assets/area/minamiku/fv-minamiku.jpg") center / cover no-repeat;
}

.page-higashiku .hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .2) 100%),
    url("assets/area/higashiku/fv-higashiku.jpg") center / cover no-repeat;
}
