/* ============================================
   静岡交通株式会社 - ヒーロー再現
============================================ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0e4a9e;
  --primary-dark: #093a82;
  --text: #1a2535;
  --text-sub: #6b7785;
  --border: #e1e7ee;
}

html, body { height: 100%; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   Header
============================================ */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: #fff;
  height: 88px;
  border-bottom: 1px solid #eef1f5;
}
.header__inner {
  height: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 0 0 32px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__logo-mark {
  width: 110px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header__logo-jp {
  font-size: 19px;
  font-weight: 700;
  color: #0d2545;
  letter-spacing: .04em;
}
.header__logo-en {
  font-size: 10px;
  font-weight: 500;
  color: #6b7785;
  letter-spacing: .14em;
  margin-top: 4px;
}

.header__nav {
  margin-left: auto;
}
.header__nav-list {
  display: flex;
  gap: 30px;
}
.header__nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: #1a2535;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.header__nav-list a:hover { color: var(--primary); }

.header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  flex-shrink: 0;
  margin-left: 8px;
}
.header__tel-label {
  font-size: 13px;
  color: #6b7785;
}
.header__tel-number {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin: 2px 0;
  letter-spacing: .02em;
  white-space: nowrap;
}
.header__tel-hours {
  font-size: 13px;
  color: #6b7785;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  height: 88px;
  padding: 0 28px;
  flex-shrink: 0;
  transition: background .2s;
  text-align: left;
}
.header__cta:hover { background: var(--primary-dark); }
.header__cta svg { flex-shrink: 0; }
.header__cta-text { display: flex; flex-direction: column; line-height: 1.25; }
.header__cta-main { font-size: 13px; font-weight: 700; }
.header__cta-sub  { font-size: 10px; opacity: .9; margin-top: 4px; }

/* Hamburger button (mobile only) */
.header__burger {
  display: none;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
  position: relative;
  z-index: 110;
}
.header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 30px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  z-index: 100;
  overflow-y: auto;
  padding: 88px 24px 32px;
  display: none;
}
.drawer.is-open { transform: translateX(0); }
.drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f4f7fb;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.drawer__close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}
.drawer__nav ul li {
  border-bottom: 1px solid #eef1f5;
}
.drawer__nav ul li a {
  display: block;
  padding: 18px 4px;
  font-size: 15px;
  font-weight: 700;
  color: #1a2535;
  position: relative;
  transition: color .2s, padding-left .2s;
}
.drawer__nav ul li a::after {
  content: "›";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--primary);
}
.drawer__nav ul li a:hover {
  color: var(--primary);
  padding-left: 8px;
}
.drawer__contact {
  margin-top: 28px;
  padding: 20px;
  background: #f4f7fb;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.drawer__contact-label {
  font-size: 12px;
  color: #6b7785;
  margin-bottom: 4px;
}
.drawer__contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .02em;
  white-space: nowrap;
  margin: 4px 0;
}
.drawer__contact-hours {
  font-size: 11px;
  color: #6b7785;
}
.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 90;
  display: none;
}
.drawer__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

/* Background scene */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slider {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity;
  z-index: 0;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: translateZ(0) scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  0%   { transform: translateZ(0) scale(1.04); }
  100% { transform: translateZ(0) scale(1.20); }
}

/* Slider dots */
.hero__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(14,74,158,.2);
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
  padding: 0;
}
.hero__dot:hover { background: rgba(255,255,255,.9); }
.hero__dot.is-active {
  background: var(--primary);
  width: 28px;
  border-radius: 999px;
}
/* white-to-transparent fade on the LEFT so text reads cleanly */
.hero__fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.65) 45%,
      rgba(255,255,255,0.15) 55%,
      rgba(255,255,255,0) 60%);
}

/* Hero content layer */
.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 88px 32px 0;
  display: flex;
  align-items: center;
}
.hero__copy {
  max-width: 820px;
  padding-top: 40px;
}

.hero__title {
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--primary);
  letter-spacing: .02em;
  margin-bottom: 28px;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__lead {
  font-size: 16px;
  line-height: 2;
  color: #1a2535;
  margin-bottom: 44px;
}

/* 3 features */
.hero__features {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(14,74,158,.1);
}
.hero__feature-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a2535;
}

/* Buttons */
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 320px;
  padding: 20px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s, box-shadow .25s, background .25s, color .25s;
}
.btn__arrow {
  margin-left: auto;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s;
}
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(14,74,158,.25);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(14,74,158,.3);
}
.btn--outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* News bar */
.news {
  position: absolute;
  left: 0; right: 0; bottom: 32px;
  z-index: 3;
  padding: 0 32px;
}
.news__inner {
  max-width: 1480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.news__label {
  background: var(--primary);
  color: #fff;
  padding: 8px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.news__date {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #1a2535;
  font-size: 15px;
  flex-shrink: 0;
}
.news__title {
  flex: 1;
  font-size: 15px;
  color: #1a2535;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s;
}
.news__title:hover { color: var(--primary); }
.news__more {
  font-size: 14px;
  color: #1a2535;
  font-weight: 500;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.news__more span {
  color: var(--primary);
  font-size: 18px;
  transition: transform .2s;
}
.news__more:hover span { transform: translateX(4px); }

/* ============================================
   Trust section (三ツ星評価)
============================================ */
.trust {
  position: relative;
  padding: 90px 0 100px;
  background: linear-gradient(135deg, #0e4a9e 0%, #093a82 100%);
  color: #fff;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(245,184,0,.18), transparent 70%);
  pointer-events: none;
}
.trust::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 70%, rgba(63,169,245,.15), transparent 70%);
  pointer-events: none;
}
.trust__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}

/* Safety badge image */
.trust__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.trust__badge img {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.3));
}

/* Body */
.trust__body { color: #fff; }
.trust__tag {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  color: #f5b800;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(245,184,0,.5);
  border-radius: 999px;
}
.trust__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .04em;
  margin-bottom: 22px;
  color: #fff;
}
.trust__text {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.trust__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 28px;
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.trust__btn:hover {
  background: #f5b800;
  color: #5a3a00;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(245,184,0,.35);
}
.trust__btn-arrow {
  font-size: 18px;
  font-weight: 400;
  transition: transform .2s;
}
.trust__btn:hover .trust__btn-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .trust { padding: 64px 0 72px; }
  .trust__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .trust__badge img { max-width: 200px; }
  .trust__title br { display: none; }
}
@media (max-width: 720px) {
  .trust__title { font-size: 22px; line-height: 1.6; }
  .trust__text { font-size: 14px; }
  .trust__btn { width: 100%; justify-content: center; }
}

/* ============================================
   Scene section
============================================ */
.scene {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fc 100%);
  overflow: hidden;
}
.scene__bg-script {
  position: absolute;
  top: 60px;
  left: -20px;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-style: italic;
  font-size: clamp(120px, 14vw, 220px);
  font-weight: 400;
  color: rgba(14,74,158,.06);
  pointer-events: none;
  letter-spacing: -.04em;
  z-index: 0;
}
.scene__bg-shape {
  position: absolute;
  pointer-events: none;
}
.scene__bg-shape--tr {
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(63,169,245,.18), transparent 70%);
}
.scene__bg-shape--bl { display: none; }
.scene__inner {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
.scene__head {
  text-align: center;
  margin-bottom: 56px;
}
.scene__tag {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}
.scene__tag::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--primary);
}
.scene__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  color: #1a2535;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.scene__lead {
  font-size: 15px;
  color: #1a2535;
}

/* Cards */
.scene__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.scene-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(14,74,158,.08);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.scene-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(14,74,158,.18);
}
.scene-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8e6f1;
}
.scene-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.scene-card:hover .scene-card__image img { transform: scale(1.05); }

.scene-card__body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.scene-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.scene-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scene-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a2535;
  letter-spacing: .04em;
}
.scene-card__text {
  font-size: 14px;
  color: #1a2535;
  line-height: 1.8;
  margin-bottom: 22px;
  flex: 1;
}
.scene-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid #e1e7ee;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  transition: gap .2s ease;
}
.scene-card__link span {
  font-size: 18px;
  transition: transform .2s ease;
}
.scene-card__link:hover span { transform: translateX(4px); }

/* Bottom contact bar */
.scene__contact {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.scene__contact-tel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.scene__contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scene__contact-tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.scene__contact-tel-label {
  font-size: 13px;
  color: #1a2535;
}
.scene__contact-tel-num {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a2535;
  letter-spacing: .02em;
  white-space: nowrap;
  margin: 2px 0;
}
.scene__contact-tel-hours {
  font-size: 13px;
  color: #6b7785;
}
.scene__contact-desc {
  font-size: 14px;
  color: #1a2535;
  line-height: 1.8;
}
.scene__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: #fff;
  padding: 22px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(14,74,158,.25);
  transition: background .2s ease, transform .2s ease;
}
.scene__contact-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.scene__contact-btn-arrow {
  margin-left: 6px;
  font-size: 22px;
  font-weight: 400;
  transition: transform .2s ease;
}
.scene__contact-btn:hover .scene__contact-btn-arrow { transform: translateX(4px); }

@media (max-width: 1100px) {
  .scene__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .scene { padding: 70px 0 80px; }
  .scene__grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .scene__contact { flex-direction: column; gap: 20px; text-align: center; }
  .scene__contact-desc br { display: none; }
  .scene__contact-btn { width: 100%; justify-content: center; }
}

/* ============================================
   Lineup section
============================================ */
.lineup {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fc 100%);
  overflow: hidden;
}
.lineup::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(63,169,245,.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.lineup__bg-script {
  position: absolute;
  top: 60px;
  left: -20px;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-style: italic;
  font-size: clamp(120px, 14vw, 220px);
  font-weight: 400;
  color: rgba(14,74,158,.06);
  pointer-events: none;
  letter-spacing: -.04em;
  z-index: 0;
}
.lineup__inner {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
.lineup__head {
  text-align: center;
  margin-bottom: 64px;
}
.lineup__tag {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 12px;
  position: relative;
}
.lineup__tag::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--primary);
}
.lineup__title {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 900;
  color: #1a2535;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.lineup__lead {
  font-size: 15px;
  color: #1a2535;
}

/* Decorative round badge */
.lineup__badge {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(14,74,158,.25);
  z-index: 2;
}
.lineup__badge svg { margin-bottom: 6px; }
.lineup__badge-main {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}
.lineup__badge-sub {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  opacity: .9;
  border-top: 1px solid rgba(255,255,255,.3);
  padding-top: 6px;
}

/* Cards */
.lineup__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.vcard {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(14,74,158,.08);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.vcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(14,74,158,.18);
}
.vcard__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8e6f1;
}
.vcard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.vcard:hover .vcard__image img { transform: scale(1.05); }
.vcard__capacity {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
}

.vcard__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vcard__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e1e7ee;
}
.vcard__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a2535;
  letter-spacing: .04em;
}
.vcard__seats {
  font-size: 13px;
  color: #6b7785;
  font-weight: 500;
  white-space: nowrap;
}
.vcard__text {
  font-size: 13px;
  color: #1a2535;
  line-height: 1.8;
  margin-bottom: 18px;
  flex: 1;
}
.vcard__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.vcard__features li {
  background: #f4f7fb;
  border-radius: 6px;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.vcard__features svg {
  color: var(--primary);
  flex-shrink: 0;
}
.vcard__features span {
  font-size: 13px;
  font-weight: 500;
  color: #1a2535;
  line-height: 1.4;
}
.vcard__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease;
}
.vcard__link span {
  font-size: 16px;
  transition: transform .2s ease;
}
.vcard__link:hover { background: var(--primary-dark); }
.vcard__link:hover span { transform: translateX(4px); }

/* "車両一覧を見る" center button */
.lineup__more {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.lineup__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 18px 56px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  min-width: 360px;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(14,74,158,.1);
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.lineup__more-arrow {
  font-size: 22px;
  font-weight: 400;
  margin-left: 4px;
  transition: transform .2s ease;
}
.lineup__more-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14,74,158,.25);
}
.lineup__more-btn:hover .lineup__more-arrow { transform: translateX(4px); }

/* Bottom contact bar */
.lineup__contact {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 6px 24px rgba(14,74,158,.08);
  overflow: hidden;
}
.lineup__contact-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lineup__contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lineup__contact-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 4px;
}
.lineup__contact-text p {
  font-size: 13px;
  color: #6b7785;
  line-height: 1.7;
}
.lineup__contact-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid #e1e7ee;
  padding-left: 32px;
}
.lineup__contact-tel-label {
  font-size: 13px;
  color: #6b7785;
  margin-bottom: 4px;
}
.lineup__contact-tel-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a2535;
  white-space: nowrap;
  letter-spacing: .02em;
  margin-bottom: 2px;
}
.lineup__contact-tel-num svg { color: var(--primary); }
.lineup__contact-tel-hours {
  font-size: 13px;
  color: #6b7785;
}
.lineup__contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.lineup__contact-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #1a2535;
  font-weight: 500;
}
.lineup__contact-cta-label svg { color: var(--primary); }
.lineup__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  transition: background .2s ease, transform .2s ease;
}
.lineup__contact-btn span {
  font-size: 18px;
  transition: transform .2s ease;
}
.lineup__contact-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.lineup__contact-btn:hover span { transform: translateX(4px); }


.lineup__note {
  text-align: center;
  font-size: 13px;
  color: #6b7785;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .lineup__grid { grid-template-columns: repeat(2, 1fr); }
  .lineup__badge { width: 120px; height: 120px; right: 20px; top: 16px; }
  .lineup__badge-main { font-size: 13px; }
  .lineup__badge-sub { font-size: 9px; }
  .lineup__contact { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .lineup__contact-tel { border-left: none; padding-left: 0; border-top: 1px solid #e1e7ee; padding-top: 20px; }
  .lineup__contact-bus { display: none; }
}
@media (max-width: 720px) {
  .lineup { padding: 70px 0 80px; }
  .lineup__grid { grid-template-columns: 1fr; gap: 20px; }
  .lineup__badge { display: none; }
}

/* ============================================
   Reason section
============================================ */
.reason {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fc 100%);
  overflow: hidden;
}
.reason__bg-script {
  position: absolute;
  top: 60px;
  left: -20px;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-style: italic;
  font-size: clamp(120px, 14vw, 220px);
  font-weight: 400;
  color: rgba(14,74,158,.06);
  pointer-events: none;
  letter-spacing: -.04em;
  z-index: 0;
}
.reason__bg-shape {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(63,169,245,.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.reason__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
.reason__head {
  text-align: center;
  margin-bottom: 80px;
}
.reason__tag {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 12px;
  position: relative;
}
.reason__tag::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--primary);
}
.reason__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: #1a2535;
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.reason__lead {
  font-size: 15px;
  color: #1a2535;
  line-height: 1.9;
}

/* Cards */
.reason__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.rcard {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(14,74,158,.08);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.rcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(14,74,158,.18);
}
.rcard__num {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(14,74,158,.25);
}
.rcard__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #d8e6f1;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}
.rcard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.rcard:hover .rcard__image img { transform: scale(1.05); }
.rcard__body {
  padding: 26px 22px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rcard__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a2535;
  letter-spacing: .04em;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed #b6c3d2;
}
.rcard__text {
  font-size: 14px;
  color: #1a2535;
  line-height: 1.9;
  margin-bottom: 28px;
  flex: 1;
}
.rcard__icon {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .reason__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
@media (max-width: 720px) {
  .reason { padding: 70px 0 80px; }
  .reason__head { margin-bottom: 56px; }
  .reason__bg-script { font-size: 100px; top: 40px; }
  .reason__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   Detail page (車両詳細)
============================================ */

/* Solid header for inner pages (no overlay) */
.header--solid {
  position: sticky;
  top: 0;
}

.detail {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
  min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 22px 0 8px;
}
.breadcrumb__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: #6b7785;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #b6c3d2;
}
.breadcrumb a {
  color: #6b7785;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb li:last-child { color: #1a2535; font-weight: 500; }

.detail__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 32px 80px;
}

.detail__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

/* ----- Gallery ----- */
.gallery__main {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #d8e6f1;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(14,74,158,.08);
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: #d8e6f1;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  transition: border-color .2s, transform .2s;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb.is-active { border-color: var(--primary); }
.thumb:hover { transform: translateY(-2px); }

/* Seat layout */
.seats {
  margin-top: 16px;
}
.seats__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 12px;
}
.seats__figure {
  margin: 0;
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding: 10px;
}
.seats__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}
.seats__placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #eef5fc 0%, #d8e6f1 100%);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  min-height: 180px;
  padding: 20px;
  text-align: center;
}
.seats__legend {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  font-size: 12px;
  color: #1a2535;
}
.seats__legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.legend-mark {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--primary);
  display: inline-block;
}
.legend-mark--aux { background: #c8d6e6; }

/* ----- Spec right column ----- */
.spec__badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.spec__title {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 900;
  color: #1a2535;
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.spec__lead {
  font-size: 15px;
  color: #1a2535;
  line-height: 1.9;
  margin-bottom: 28px;
}

.spec__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 12px;
  padding: 24px 18px;
  margin-bottom: 28px;
}
.spec__features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #1a2535;
  line-height: 1.5;
}
.spec__feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f0f5fb;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spec table */
.spec__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #e1e7ee;
}
.spec__table tr {
  border-bottom: 1px solid #e1e7ee;
}
.spec__table th,
.spec__table td {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.7;
}
.spec__table th {
  width: 140px;
  background: #f4f7fb;
  font-weight: 700;
  color: #1a2535;
}
.spec__table td { color: #1a2535; }

/* Spec note (備考) */
.spec__note {
  margin-top: 24px;
  padding: 18px 22px;
  background: #f4f9fd;
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
}
.spec__note-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
  letter-spacing: .04em;
}
.spec__note p {
  font-size: 13px;
  line-height: 1.85;
  color: #1a2535;
  margin: 0;
}

/* Detail-page contact: same component as lineup, just give it some top margin */
.detail__contact { margin-bottom: 40px; }

/* Pager */
.detail__pager {
  display: flex;
  justify-content: center;
}
.detail__pager .pager-btn {
  min-width: 320px;
}
.pager-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  color: #1a2535;
  border: 1px solid #cdd5dd;
  transition: background .2s, color .2s, transform .2s;
}
.pager-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
}
.pager-btn span {
  font-size: 20px;
  font-weight: 400;
}
.pager-btn--next {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pager-btn--next:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

@media (max-width: 1100px) {
  .detail__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .detail__inner { padding: 16px 20px 56px; }
  .gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
  .spec__features { grid-template-columns: repeat(2, 1fr); }
  .spec__feature-icon { width: 48px; height: 48px; }
  .spec__table th { width: 110px; padding: 14px 10px; font-size: 12px; }
  .spec__table td { padding: 14px 10px; font-size: 13px; }
  .seats__placeholder { min-height: 140px; }
  .detail__pager .pager-btn { min-width: 0; width: 100%; }
}

/* ============================================
   News page (お知らせ一覧)
============================================ */
.pagehead {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fc 100%);
  padding: 64px 0 48px;
  overflow: hidden;
}
.pagehead::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(63,169,245,.18), transparent 70%);
  pointer-events: none;
}
.pagehead__bg-script {
  position: absolute;
  top: 30px;
  left: -10px;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-style: italic;
  font-size: clamp(100px, 12vw, 180px);
  color: rgba(14,74,158,.06);
  pointer-events: none;
  letter-spacing: -.04em;
  z-index: 0;
}
.pagehead__inner {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.pagehead__tag {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 12px;
  position: relative;
}
.pagehead__tag::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--primary);
}
.pagehead__title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: #1a2535;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.pagehead__lead {
  font-size: 14px;
  color: #6b7785;
}

/* News list */
.news-page {
  background: #fff;
  padding: 56px 0 96px;
}
.news-page__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  justify-content: center;
}
.news-filter__btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cdd5dd;
  font-size: 13px;
  font-weight: 700;
  color: #1a2535;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.news-filter__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.news-filter__btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.news-list {
  border-top: 1px solid #e1e7ee;
  margin-bottom: 56px;
}
.news-item {
  border-bottom: 1px solid #e1e7ee;
}
.news-item a {
  display: grid;
  grid-template-columns: 110px 100px 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 22px 12px;
  transition: background .2s;
}
.news-item a:hover {
  background: #f4f9fd;
}
.news-item__date {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a2535;
}
.news-item__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
}
.news-item__cat--info    { background: #e6f0fb; color: #0e4a9e; }
.news-item__cat--service { background: #e6f6ee; color: #138a4d; }
.news-item__cat--recruit { background: #fff1e0; color: #c46f00; }
.news-item__cat--media   { background: #f1e9fb; color: #6f3ec3; }
.news-item__title {
  font-size: 15px;
  color: #1a2535;
  line-height: 1.7;
  transition: color .2s;
}
.news-item a:hover .news-item__title { color: var(--primary); }
.news-item__arrow {
  font-size: 22px;
  color: var(--primary);
  text-align: right;
  transition: transform .2s;
}
.news-item a:hover .news-item__arrow { transform: translateX(4px); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination__list li {
  display: flex;
  align-items: center;
}
.pagination__list a,
.pagination__sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a2535;
  background: #fff;
  border: 1px solid #e1e7ee;
  transition: background .2s, color .2s, border-color .2s;
  box-sizing: border-box;
}
.pagination__list a:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pagination__list a.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pagination__sep {
  border: none;
  background: transparent;
  color: #6b7785;
}
.pagination__prev,
.pagination__next {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e1e7ee;
  font-size: 13px;
  font-weight: 700;
  color: #1a2535;
  transition: background .2s, color .2s, border-color .2s;
}
.pagination__prev:hover,
.pagination__next:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pagination__prev[aria-disabled="true"] {
  opacity: .35;
  pointer-events: none;
}

@media (max-width: 720px) {
  .pagehead { padding: 48px 0 32px; }
  .news-page { padding: 40px 0 64px; }
  .news-page__inner { padding: 0 20px; }
  .news-filter { gap: 6px; margin-bottom: 28px; }
  .news-filter__btn { padding: 7px 14px; font-size: 12px; }
  .news-item a {
    grid-template-columns: auto auto;
    grid-template-areas:
      "date  cat"
      "title title";
    gap: 8px 12px;
    padding: 18px 8px;
  }
  .news-item__date { grid-area: date; font-size: 13px; }
  .news-item__cat { grid-area: cat; font-size: 10px; padding: 4px 8px; }
  .news-item__title { grid-area: title; font-size: 14px; }
  .news-item__arrow { display: none; }
  .pagination__prev, .pagination__next { padding: 0 10px; font-size: 12px; }
}

/* ============================================
   News article (お知らせ詳細)
============================================ */
.news-article {
  background: #fff;
  padding: 56px 0 96px;
}
.news-article__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.news-article__head {
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid #e1e7ee;
}
.news-article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.news-article__date {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a2535;
}
.news-article__title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.5;
  color: #1a2535;
  letter-spacing: .02em;
}

.news-article__body {
  font-size: 15px;
  line-height: 2;
  color: #1a2535;
}
.news-article__body p { margin-bottom: 22px; }
.news-article__body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a2535;
  margin: 36px 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  line-height: 1.5;
}
.news-article__body ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 22px 26px;
  background: #f4f7fb;
  border-radius: 8px;
}
.news-article__body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
}
.news-article__body ul li:last-child { margin-bottom: 0; }
.news-article__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.news-article__body blockquote {
  background: #eef5fc;
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin: 30px 0;
  font-size: 14px;
  line-height: 1.9;
  color: #1a2535;
  border-radius: 0 8px 8px 0;
}
.news-article__body blockquote a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}
.news-article__sign {
  text-align: right;
  margin-top: 40px !important;
  font-size: 14px;
  color: #6b7785;
  line-height: 1.7;
}

/* Article pager (prev/list/next) */
.article-pager {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  margin: 56px 0 28px;
  padding: 22px 0;
  border-top: 1px solid #e1e7ee;
  border-bottom: 1px solid #e1e7ee;
}
.article-pager__prev,
.article-pager__next {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.article-pager__prev:hover,
.article-pager__next:hover {
  background: #f4f7fb;
}
.article-pager__next { justify-content: flex-end; text-align: right; }
.article-pager__arrow {
  font-size: 28px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}
.article-pager__inner { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.article-pager__label {
  font-size: 11px;
  color: #6b7785;
  font-weight: 700;
  letter-spacing: .08em;
}
.article-pager__title {
  font-size: 13px;
  font-weight: 700;
  color: #1a2535;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s;
}
.article-pager__prev:hover .article-pager__title,
.article-pager__next:hover .article-pager__title { color: var(--primary); }
.article-pager__list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  align-self: center;
}
.article-pager__list:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.news-article__back {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.news-article__back .pager-btn { min-width: 320px; }

@media (max-width: 720px) {
  .news-article { padding: 40px 0 64px; }
  .news-article__inner { padding: 0 20px; }
  .news-article__body h3 { font-size: 17px; margin: 28px 0 14px; }
  .article-pager {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .article-pager__list { grid-column: 1 / -1; justify-content: center; order: -1; }
  .article-pager__title { font-size: 12px; }
  .article-pager__arrow { font-size: 22px; }
  .news-article__back .pager-btn { min-width: 0; width: 100%; }
}

/* ============================================
   Company page (会社概要)
============================================ */
.company {
  background: #fff;
  padding: 56px 0 96px;
}
.company__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.company__section {
  margin-bottom: 80px;
}
.company__section:last-child { margin-bottom: 0; }
.company__section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--primary);
}
.company__section-num {
  font-family: "Roboto", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: .35;
  letter-spacing: -.02em;
}
.company__section-tag {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--primary);
  margin-bottom: 4px;
}
.company__section-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  color: #1a2535;
  letter-spacing: .04em;
}

/* Greeting */
.company__greeting p {
  font-size: 15px;
  line-height: 2;
  color: #1a2535;
  margin-bottom: 18px;
}
.company__signature {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  margin-top: 24px !important;
  color: #1a2535;
}

/* Table */
.company__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #e1e7ee;
}
.company__table tr {
  border-bottom: 1px solid #e1e7ee;
}
.company__table th,
.company__table td {
  padding: 20px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.8;
}
.company__table th {
  width: 200px;
  background: #f4f7fb;
  font-weight: 700;
  color: var(--primary);
}
.company__table td { color: #1a2535; }

/* Business */
.company__business {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.biz-card {
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 12px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(14,74,158,.12);
  border-color: var(--primary);
}
.biz-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eef5fc;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2535;
}
.biz-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #1a2535;
}

/* History timeline */
.history {
  position: relative;
  padding-left: 28px;
}
.history::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(14,74,158,.2));
}
.history__item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0;
}
.history__item::before {
  content: "";
  position: absolute;
  top: 28px;
  left: -28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px #eef5fc;
}
.history__year {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .02em;
}
.history__body h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 6px;
}
.history__body p {
  font-size: 14px;
  line-height: 1.9;
  color: #1a2535;
}

/* Access */
.company__access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.company__access .company__table th { width: 160px; }
.company__map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #eef5fc 0%, #d8e6f1 100%);
  border-radius: 12px;
  height: 100%;
  min-height: 320px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
}
.company__map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  display: block;
}

/* Offices */
.offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.office {
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.office:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(14,74,158,.10);
}
.office__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #f4f7fb;
  border-bottom: 1px solid #e1e7ee;
}
.office__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.office__badge--alt {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.office__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2535;
}
.office__body {
  padding: 0;
}
.office__body .company__table {
  border-top: none;
}
.office__body .company__table tr:first-child { border-top: none; }
.office__body .company__table th { width: 110px; }
.office__body .company__map {
  border-radius: 0;
  min-height: 200px;
}
.office__body .company__table td a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 900px) {
  .offices { grid-template-columns: 1fr; }
}

/* Group companies (関連事業) */
.company__group-lead {
  font-size: 14px;
  color: #1a2535;
  line-height: 1.9;
  margin-bottom: 24px;
}
.group-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.group {
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 12px;
  padding: 26px 28px;
  transition: border-color .2s, box-shadow .2s;
}
.group:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(14,74,158,.10);
}
.group__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e1e7ee;
}
.group__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef5fc;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.group__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.group__badge--alt {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.group__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2535;
}
.group__desc {
  font-size: 13px;
  line-height: 1.85;
  color: #1a2535;
  margin-bottom: 18px;
}
.group .company__table {
  border-top: 1px solid #e1e7ee;
}
.group .company__table th { width: 110px; padding: 14px 12px; font-size: 13px; }
.group .company__table td { padding: 14px 12px; font-size: 13px; }

@media (max-width: 900px) {
  .group-list { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .company__business { grid-template-columns: 1fr; }
  .company__access { grid-template-columns: 1fr; }
  .company__map { min-height: 220px; }
}
@media (max-width: 720px) {
  .company { padding: 40px 0 64px; }
  .company__inner { padding: 0 20px; }
  .company__section { margin-bottom: 56px; }
  .company__section-head { gap: 14px; margin-bottom: 24px; padding-bottom: 16px; }
  .company__section-num { font-size: 40px; }
  .company__table th { width: 110px; padding: 14px 12px; font-size: 13px; }
  .company__table td { padding: 14px 12px; font-size: 13px; }
  .history { padding-left: 22px; }
  .history__item { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
  .history__item::before { top: 22px; left: -22px; width: 12px; height: 12px; }
  .history__year { font-size: 20px; }
}

/* ============================================
   FAQ page (よくある質問)
============================================ */
.faq-page {
  background: #fff;
  padding: 56px 0 96px;
}
.faq-page__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 64px;
}
.faq-item {
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item details[open] { box-shadow: 0 6px 18px rgba(14,74,158,.08); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #f4f9fd; }

.faq-item__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2535;
  line-height: 1.6;
}
.faq-item__toggle {
  width: 24px;
  height: 24px;
  position: relative;
  justify-self: end;
  flex-shrink: 0;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.faq-item__toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-item__toggle::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-item details[open] .faq-item__toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 0 24px 26px;
  background: #fafcff;
  border-top: 1px solid #eef1f5;
  padding-top: 24px;
  animation: faqOpen .25s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-item__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item__answer p {
  font-size: 14px;
  line-height: 1.95;
  color: #1a2535;
  margin-bottom: 12px;
}
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer ul {
  list-style: none;
  margin: 12px 0;
  padding: 16px 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e1e7ee;
}
.faq-item__answer ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.8;
}
.faq-item__answer ul li:last-child { margin-bottom: 0; }
.faq-item__answer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.faq-item__table {
  width: 100%;
  margin: 12px 0;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 8px;
  overflow: hidden;
}
.faq-item__table tr { border-bottom: 1px solid #eef1f5; }
.faq-item__table tr:last-child { border-bottom: none; }
.faq-item__table th,
.faq-item__table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  vertical-align: middle;
}
.faq-item__table th {
  width: 160px;
  background: #f4f7fb;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* FAQ contact CTA */
.faq-cta {
  background: linear-gradient(135deg, #eef5fc 0%, #d8e6f1 100%);
  border-radius: 14px;
  padding: 44px 36px;
  text-align: center;
}
.faq-cta__title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.faq-cta__lead {
  font-size: 14px;
  color: #1a2535;
  margin-bottom: 28px;
}
.faq-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.faq-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s, background .2s, color .2s, box-shadow .2s;
  min-width: 280px;
  justify-content: center;
}
.faq-cta__btn--tel {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.faq-cta__btn--tel span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; }
.faq-cta__btn-label { font-size: 11px; color: #6b7785; font-weight: 500; }
.faq-cta__btn-num {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
}
.faq-cta__btn--tel:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.faq-cta__btn--tel:hover .faq-cta__btn-label { color: rgba(255,255,255,.9); }
.faq-cta__btn--form {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(14,74,158,.25);
}
.faq-cta__btn--form:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(14,74,158,.3);
}
.faq-cta__arrow {
  margin-left: 10px;
  font-size: 18px;
}

@media (max-width: 720px) {
  .faq-page { padding: 40px 0 64px; }
  .faq-page__inner { padding: 0 20px; }
  .faq-item summary { padding: 18px 16px; gap: 12px; grid-template-columns: 36px 1fr 22px; }
  .faq-item__q { width: 32px; height: 32px; font-size: 14px; }
  .faq-item__title { font-size: 14px; }
  .faq-item__answer { padding: 18px 16px 20px; grid-template-columns: 36px 1fr; gap: 12px; }
  .faq-item__a { width: 32px; height: 32px; font-size: 14px; }
  .faq-item__table th { width: 100px; padding: 10px 12px; font-size: 12px; }
  .faq-item__table td { padding: 10px 12px; font-size: 12px; }
  .faq-cta { padding: 32px 22px; }
  .faq-cta__btn { min-width: 0; width: 100%; }
}

/* ============================================
   Lineup page (車両ラインナップ一覧)
============================================ */
.lineup-page {
  background: #fff;
  padding: 56px 0 96px;
}
.lineup-page__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.lineup-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  justify-content: center;
}
.lineup-filter__btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cdd5dd;
  font-size: 13px;
  font-weight: 700;
  color: #1a2535;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.lineup-filter__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.lineup-filter__btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.lineup-page .lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.lineup-page .lineup__contact { margin-bottom: 16px; }

@media (max-width: 1100px) {
  .lineup-page .lineup-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .lineup-page { padding: 40px 0 64px; }
  .lineup-page__inner { padding: 0 20px; }
  .lineup-filter { gap: 6px; margin-bottom: 28px; }
  .lineup-filter__btn { padding: 8px 16px; font-size: 12px; }
  .lineup-page .lineup-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   Safety page (安全への取り組み)
============================================ */
.safety { background: #fff; padding: 56px 0 96px; }
.safety__inner { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

.safety__hero {
  text-align: center;
  background: linear-gradient(135deg, #eef5fc 0%, #d8e6f1 100%);
  padding: 56px 32px;
  border-radius: 14px;
  margin-bottom: 80px;
}
.safety__hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  margin-bottom: 22px;
}
.safety__hero-title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.safety__hero-text {
  font-size: 15px;
  line-height: 2;
  color: #1a2535;
}
.safety__hero-download {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(14, 74, 158, .25);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.safety__hero-download:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(14, 74, 158, .32);
}
.safety__hero-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}
.safety__hero-download-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}
.safety__hero-download-label {
  font-size: 15px;
  letter-spacing: .04em;
}
.safety__hero-download-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  opacity: .85;
  margin-top: 2px;
}

.safety__section { margin-bottom: 80px; }
.safety__section:last-child { margin-bottom: 0; }

.safety-policy__lead {
  font-size: 15px;
  line-height: 2;
  color: #1a2535;
  margin-bottom: 24px;
}
.safety-policy__list { list-style: none; padding: 0; margin: 0; }
.safety-policy__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  background: #f4f9fd;
  padding: 20px 24px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.safety-policy__list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.safety-policy__list li p {
  font-size: 14px;
  line-height: 1.95;
  color: #1a2535;
  padding-top: 8px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.safety-grid--3 { grid-template-columns: repeat(3, 1fr); }
.safety-card {
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 12px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.safety-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(14,74,158,.12);
  border-color: var(--primary);
}
.safety-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eef5fc;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.safety-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 36px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  align-self: flex-start;
}
.safety-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2535;
}
.safety-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #1a2535;
}

.safety-list { list-style: none; margin: 0; padding: 0; }
.safety-list li {
  position: relative;
  padding: 22px 24px 22px 60px;
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 10px;
  margin-bottom: 12px;
}
.safety-list li::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
}
.safety-list li::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 30px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.safety-list li h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 8px;
}
.safety-list li p {
  font-size: 14px;
  line-height: 1.9;
  color: #1a2535;
}

.safety-equip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.safety-equip li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.safety-equip li:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(14,74,158,.08);
}
.safety-equip__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #eef5fc;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.safety-equip li h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 6px;
}
.safety-equip li p {
  font-size: 13px;
  line-height: 1.85;
  color: #1a2535;
}

.safety-cert {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.safety-cert__card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 28px;
  background: linear-gradient(135deg, #f4f9fd 0%, #ffffff 100%);
  border: 1px solid #e1e7ee;
  border-radius: 12px;
}
.safety-cert__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.safety-cert__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 6px;
}
.safety-cert__card p {
  font-size: 13px;
  line-height: 1.85;
  color: #1a2535;
}

.safety__cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 14px;
  padding: 52px 36px;
  text-align: center;
}
.safety__cta h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.safety__cta p {
  font-size: 14px;
  margin-bottom: 28px;
  opacity: .9;
}
.safety__cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.safety__cta .faq-cta__btn--tel {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}
.safety__cta .faq-cta__btn--tel .faq-cta__btn-label { color: #6b7785; }
.safety__cta .faq-cta__btn--form {
  background: var(--primary-dark);
  color: #fff;
  border: 2px solid #fff;
  box-shadow: none;
}
.safety__cta .faq-cta__btn--form:hover {
  background: #fff;
  color: var(--primary);
}

@media (max-width: 900px) {
  .safety-grid,
  .safety-grid--3,
  .safety-equip,
  .safety-cert { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .safety { padding: 40px 0 64px; }
  .safety__inner { padding: 0 20px; }
  .safety__hero { padding: 40px 22px; margin-bottom: 56px; }
  .safety__hero-icon { width: 70px; height: 70px; }
  .safety__hero-icon svg { width: 44px; height: 44px; }
  .safety__hero-download { padding: 12px 20px; gap: 12px; margin-top: 22px; }
  .safety__hero-download-icon { width: 32px; height: 32px; }
  .safety__hero-download-icon svg { width: 18px; height: 18px; }
  .safety__hero-download-label { font-size: 14px; }
  .safety__section { margin-bottom: 56px; }
  .safety-policy__list li { grid-template-columns: 40px 1fr; gap: 12px; padding: 16px 18px; }
  .safety-policy__list li span { width: 32px; height: 32px; font-size: 15px; }
  .safety-list li { padding: 18px 18px 18px 50px; }
  .safety-list li::before { top: 22px; left: 16px; width: 16px; height: 16px; }
  .safety-list li::after { top: 26px; left: 21px; }
  .safety-equip li { grid-template-columns: 48px 1fr; gap: 14px; padding: 18px; }
  .safety__cta { padding: 36px 22px; }
  .safety__cta-actions .faq-cta__btn { width: 100%; min-width: 0; }
}

/* ============================================
   Contact CTA section (top page bottom)
============================================ */
.contactcta {
  background: linear-gradient(180deg, #f4f9fd 0%, #e9f2fb 100%);
  padding: 80px 0 100px;
}
.contactcta__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.contactcta__content {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 64px 64px 56px;
  box-shadow: 0 14px 36px rgba(14,74,158,.12);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}
.contactcta__left { min-width: 0; }
.contactcta__right { min-width: 0; }
.contactcta__content::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(63,169,245,.18), transparent 70%);
  pointer-events: none;
}
.contactcta__content::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 70%, rgba(14,74,158,.10), transparent 70%);
  pointer-events: none;
}
.contactcta__content > * { position: relative; z-index: 1; }
.contactcta__sub {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.contactcta__title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--primary);
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.contactcta__rule {
  border: none;
  height: 2px;
  width: 100%;
  max-width: 360px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 60%, transparent 100%);
  margin: 0 0 22px;
}
.contactcta__lead {
  font-size: 15px;
  line-height: 1.9;
  color: #1a2535;
  margin-bottom: 28px;
}

/* Contact cards */
.contactcta__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.contactcta__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.contactcta__card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(14,74,158,.12);
  transform: translateY(-2px);
}
.contactcta__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef5fc;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contactcta__card-body {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.contactcta__card-label {
  font-size: 11px;
  color: #6b7785;
  margin-bottom: 4px;
}
.contactcta__card-num {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a2535;
  letter-spacing: .02em;
  white-space: nowrap;
}
.contactcta__card-hours {
  font-size: 11px;
  color: #6b7785;
  margin-top: 2px;
}
.contactcta__card-link {
  font-size: 14px;
  font-weight: 700;
  color: #1a2535;
  white-space: nowrap;
}
.contactcta__card-link span {
  color: var(--primary);
  margin-left: 4px;
  transition: transform .2s;
  display: inline-block;
}
.contactcta__card:hover .contactcta__card-link span { transform: translateX(3px); }

/* Big CTA button */
.contactcta__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: #fff;
  padding: 22px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(14,74,158,.25);
  transition: background .2s, transform .2s, box-shadow .2s;
  width: 100%;
}
.contactcta__btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14,74,158,.32);
}
.contactcta__btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contactcta__btn-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f5b800;
  color: #5a3a00;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.contactcta__btn-text { flex: 1; }
.contactcta__btn-arrow {
  font-size: 20px;
  transition: transform .2s;
}
.contactcta__btn:hover .contactcta__btn-arrow { transform: translateX(4px); }

/* Features (left column) */
.contactcta__features {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.contactcta__features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1a2535;
}
.contactcta__features svg { color: var(--primary); }

@media (max-width: 1100px) {
  .contactcta__content { padding: 56px 40px; gap: 56px; }
}
@media (max-width: 900px) {
  .contactcta { padding: 56px 0 72px; }
  .contactcta__content { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .contactcta__cards { grid-template-columns: 1fr; }
  .contactcta__title { font-size: 26px; }
  .contactcta__btn { font-size: 15px; padding: 18px 20px; }
  .contactcta__btn-text { font-size: 14px; }
  .contactcta__features { gap: 14px 18px; }
}

/* ============================================
   Footer
============================================ */
.footer {
  background: #fff;
  color: #1a2535;
  font-size: 14px;
}
.footer__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ----- Top: white area ----- */
.footer__top {
  padding: 80px 0 60px;
  border-top: 1px solid #eef1f5;
}
.footer__top .footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Brand */
.footer__brand { grid-column: 1; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__logo-mark { width: 130px; height: 56px; object-fit: contain; object-position: left center; }
.footer__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer__logo-jp {
  font-size: 22px;
  font-weight: 700;
  color: #0d2545;
  letter-spacing: .04em;
}
.footer__logo-en {
  font-size: 13px;
  font-weight: 500;
  color: #6b7785;
  letter-spacing: .14em;
  margin-top: 5px;
}
.footer__desc {
  font-size: 14px;
  line-height: 2;
  color: #1a2535;
  margin-bottom: 24px;
}
.footer__bus {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

/* Link columns */
.footer__nav {
  display: contents;
}
.footer__col {}
.footer__col-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2535;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid #e1e7ee;
}
.footer__links li {
  border-bottom: 1px solid #eef1f5;
}
.footer__links a {
  display: block;
  padding: 14px 0 14px 22px;
  position: relative;
  font-size: 14px;
  color: #1a2535;
  transition: color .2s, padding-left .2s;
}
.footer__links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}
.footer__links a:hover {
  color: var(--primary);
  padding-left: 26px;
}

/* Contact card */
.footer__contact {
  background: #f4f7fb;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__contact-label {
  font-size: 13px;
  color: #1a2535;
  margin-bottom: 6px;
}
.footer__contact-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.footer__contact-tel span { white-space: nowrap; }
.footer__contact-hours {
  font-size: 13px;
  color: #6b7785;
  margin-bottom: 20px;
}
.footer__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: transform .2s, background .2s, color .2s;
}
.footer__btn-arrow {
  margin-left: auto;
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s;
}
.footer__btn:hover .footer__btn-arrow { transform: translateX(4px); }
.footer__btn--primary {
  background: var(--primary);
  color: #fff;
}
.footer__btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.footer__btn--outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.footer__btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ----- Bottom: dark blue area ----- */
.footer__bottom {
  background: var(--primary);
  color: #fff;
  padding: 32px 0;
}
.footer__inner--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__features {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.footer__features li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__feature-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}
.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer__meta-links {
  display: flex;
  gap: 0;
  align-items: center;
}
.footer__meta-links li {
  position: relative;
  padding: 0 18px;
}
.footer__meta-links li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.4);
}
.footer__meta-links a {
  font-size: 13px;
  color: #fff;
  transition: opacity .2s;
}
.footer__meta-links a:hover { opacity: .75; }
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  font-family: "Roboto", sans-serif;
}

/* ============================================
   Contact page (お問い合わせ)
============================================ */
.contactpage {
  background: #fff;
  padding: 56px 0 96px;
}
.contactpage__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Channel cards */
.contactpage__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 48px;
}
.channel {
  background: linear-gradient(135deg, #f4f9fd 0%, #ffffff 100%);
  border: 1px solid #e1e7ee;
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
}
.channel__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.channel h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 8px;
}
.channel__tel {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .02em;
  margin: 6px 0;
  white-space: nowrap;
}
.channel__lead {
  font-size: 14px;
  color: #1a2535;
  margin-bottom: 8px;
  line-height: 1.7;
}
.channel__sub {
  font-size: 12px;
  color: #6b7785;
}

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid #e1e7ee;
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 6px 22px rgba(14,74,158,.06);
}
.contact-form__note {
  font-size: 13px;
  color: #6b7785;
  line-height: 1.8;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: #f4f9fd;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}
.req {
  display: inline-block;
  color: #d4452a;
  font-weight: 700;
  margin-left: 4px;
}
.contact-form__group { margin-bottom: 20px; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: #1a2535;
  background: #fff;
  border: 1px solid #cdd5dd;
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,74,158,.12);
}
.contact-form textarea { resize: vertical; min-height: 140px; line-height: 1.7; }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231a2535' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-form__radios label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid #cdd5dd;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #1a2535;
  background: #fff;
  transition: background .2s, color .2s, border-color .2s;
}
.contact-form__radios label:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.contact-form__radios input[type="radio"] { accent-color: var(--primary); }
.contact-form__radios label:has(input:checked) {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.contact-form__inline {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form__inline input { flex: 1; }
.contact-form__inline span {
  font-size: 14px;
  color: #1a2535;
  white-space: nowrap;
}

.contact-form__privacy {
  margin: 28px 0 24px;
  text-align: center;
  font-size: 14px;
  color: #1a2535;
}
.contact-form__privacy label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact-form__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}
.contact-form__privacy a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}

.contact-form__actions {
  display: flex;
  justify-content: center;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 56px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(14,74,158,.25);
  transition: background .2s, transform .2s, box-shadow .2s;
  min-width: 320px;
  justify-content: center;
}
.contact-form__submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14,74,158,.32);
}
.contact-form__submit-arrow {
  font-size: 20px;
  transition: transform .2s;
}
.contact-form__submit:hover .contact-form__submit-arrow { transform: translateX(4px); }

/* Notes */
.contact-form__notes {
  margin-top: 36px;
  background: #f4f7fb;
  border-radius: 10px;
  padding: 22px 26px;
}
.contact-form__notes h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2535;
  margin-bottom: 12px;
}
.contact-form__notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-form__notes li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.85;
  color: #1a2535;
  margin-bottom: 4px;
}
.contact-form__notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.contact-form__notes a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .contactpage { padding: 40px 0 64px; }
  .contactpage__inner { padding: 0 20px; }
  .contactpage__channels { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  .channel { padding: 26px 22px; }
  .channel__tel { font-size: 26px; }
  .contact-form { padding: 28px 20px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
  .contact-form__radios label { padding: 10px 16px; font-size: 13px; }
  .contact-form__submit { min-width: 0; width: 100%; padding: 16px 24px; }
}

/* ============================================
   Legal page (プライバシーポリシー など)
============================================ */
.legal {
  background: #fff;
  padding: 56px 0 96px;
}
.legal__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
  font-size: 15px;
  line-height: 1.95;
  color: #1a2535;
}
.legal__intro {
  background: #f4f9fd;
  border-left: 3px solid var(--primary);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 36px;
}
.legal__section { margin-bottom: 32px; }
.legal__section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e1e7ee;
}
.legal__section p { margin-bottom: 12px; }
.legal__section ol {
  list-style: decimal;
  padding-left: 24px;
  margin: 8px 0 12px;
}
.legal__section ol li {
  margin-bottom: 6px;
  padding-left: 4px;
}
.legal__contact {
  background: #f4f7fb;
  border-radius: 8px;
  padding: 18px 22px;
  margin-top: 14px;
  font-size: 14px;
}
.legal__contact p { margin-bottom: 4px; }
.legal__contact a { color: var(--primary); font-weight: 700; }
.legal__date {
  text-align: right;
  margin-top: 40px;
  font-size: 13px;
  color: #6b7785;
}

@media (max-width: 720px) {
  .legal { padding: 40px 0 64px; }
  .legal__inner { padding: 0 20px; font-size: 14px; }
  .legal__section h2 { font-size: 16px; }
}

/* ============================================
   Sitemap page
============================================ */
.sitemap {
  background: #fff;
  padding: 56px 0 96px;
}
.sitemap__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.sitemap__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e1e7ee;
}
.sitemap__list li { border-bottom: 1px solid #e1e7ee; }
.sitemap__list li a {
  display: block;
  padding: 18px 16px 18px 28px;
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: #1a2535;
  transition: color .2s, background .2s, padding-left .2s;
}
.sitemap__list li a::before {
  content: "›";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}
.sitemap__list li a:hover {
  color: var(--primary);
  background: #f4f9fd;
  padding-left: 32px;
}

@media (max-width: 720px) {
  .sitemap { padding: 40px 0 64px; }
  .sitemap__inner { padding: 0 20px; }
  .sitemap__list li a { padding: 16px 14px 16px 24px; font-size: 14px; }
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 1280px) {
  .header__nav-list { gap: 22px; }
  .header__nav-list a { font-size: 13px; }
  .header__tel-number { font-size: 22px; }
  .hero__copy { max-width: 580px; }
  .hero__title { font-size: clamp(34px, 4vw, 52px); }

  .footer__top .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
  .footer__contact { grid-column: 1 / -1; }
  .footer__contact { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px; }
  .footer__contact-label, .footer__contact-tel, .footer__contact-hours { margin-bottom: 0; }
  .footer__btn { width: auto; flex: 1 1 240px; margin-bottom: 0; }
}

@media (max-width: 980px) {
  .header__nav { display: none; }
  .header__tel { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; margin-left: auto; }
  .drawer { display: block; }
  .drawer__overlay { display: block; }
  .hero__copy { max-width: 520px; }
  .hero__features { gap: 20px; }
  .btn { width: 280px; padding: 16px 22px; font-size: 14px; }
}

@media (max-width: 820px) {
  .hero__title { font-size: clamp(26px, 5.5vw, 38px); }
  .hero__title span { white-space: normal; }
}

@media (max-width: 720px) {
  .header { height: 70px; }
  .header__inner { padding-left: 16px; gap: 12px; }
  .header__logo-mark { width: 40px; height: 40px; }
  .header__logo-jp { font-size: 16px; }
  .header__logo-en { font-size: 9px; }
  .header__cta { height: 70px; padding: 0 18px; }
  .header__cta-main { font-size: 13px; }
  .header__cta-sub { font-size: 9px; }

  .hero { min-height: 640px; }
  .hero__fade {
    background: linear-gradient(180deg,
      rgba(255,255,255,0.85) 0%,
      rgba(255,255,255,0.55) 35%,
      rgba(255,255,255,0.2) 60%,
      rgba(255,255,255,0) 100%);
  }
  .hero__inner { padding: 120px 32px 0; align-items: baseline ;}
  .hero__copy { padding-top: 0px; }
  .hero__title { font-size: 32px; line-height: 1.4; }
  .hero__lead { font-size: 14px; line-height: 1.9; }
  .hero__features { flex-direction: column; gap: 14px; }
  .btn { width: 100%; }

  .news { padding: 0 16px; bottom: 16px; }
  .news__inner { flex-wrap: wrap; padding: 14px 18px; gap: 10px 14px; }
  .news__title {
    flex: 1 1 100%;
    white-space: normal;
    font-size: 13px;
    order: 3;
  }
  .news__more { order: 4; margin-left: auto; }

  /* ----- Footer mobile ----- */
  .footer__top { padding: 56px 0 40px; }
  .footer__top .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__brand {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer__logo { justify-content: flex-start; }
  .footer__bus { max-width: 280px; margin: 0 auto; }

  .footer__col-title { font-size: 15px; padding-bottom: 12px; }
  .footer__links a { padding: 12px 0 12px 20px; font-size: 13px; }

  .footer__contact {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 22px 18px;
  }
  .footer__contact-label,
  .footer__contact-hours {
    text-align: center;
  }
  .footer__contact-tel {
    justify-content: center;
    font-size: 24px;
  }
  .footer__btn {
    width: 100%;
    flex: 1 1 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 13px;
  }

  /* dark bottom bar */
  .footer__bottom { padding: 24px 0; }
  .footer__inner--bottom {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .footer__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    width: 100%;
  }
  .footer__features li { gap: 10px; }
  .footer__feature-icon { width: 38px; height: 38px; }
  .footer__feature-icon svg { width: 20px; height: 20px; }
  .footer__feature-text { font-size: 11px; }

  .footer__meta {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer__meta-links { justify-content: center; flex-wrap: wrap; }
  .footer__meta-links li { padding: 0 14px; }
}
