:root {
  --navy: #05345c;
  --deep: #062238;
  --sky: #dff2ff;
  --yellow: #ffd34d;
  --paper: #f6f8fb;
  --white: #ffffff;
  --text: #1b2b38;
  --muted: #6a7884;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.9;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 4vw;
  right: 4vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 24px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(4, 31, 51, 0.14);
}

body.menu-open .site-header {
  z-index: 45;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.brand-text strong {
  color: var(--deep);
  font-size: 21px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 62px;
  color: var(--deep);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.main-nav a {
  position: relative;
  padding: 24px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  position: absolute;
  z-index: 40;
  top: 9px;
  right: 9px;
  width: 54px;
  height: 54px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
}

.menu-button span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  z-index: 25;
  inset: 0;
  background: rgba(6, 34, 56, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-menu {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  width: min(420px, 88vw);
  height: 100vh;
  padding: 110px 34px 34px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 211, 77, 0.28), transparent 28%),
    var(--white);
  box-shadow: -24px 0 70px rgba(4, 31, 51, 0.24);
  transform: translateX(105%);
  transition: transform 0.28s ease;
}

.drawer-menu.is-open {
  transform: translateX(0);
}

.drawer-inner {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.drawer-label {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.26em;
}

.drawer-menu nav {
  display: grid;
  gap: 10px;
}

.drawer-menu nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 8px;
  border-bottom: 1px solid #dce7ef;
  color: var(--deep);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.drawer-menu nav span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--deep);
  font-size: 12px;
  letter-spacing: 0;
}

.drawer-contact {
  display: block;
  margin-top: auto;
  padding: 17px 24px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  padding: 112px 4vw 64px;
  background:
    radial-gradient(circle at 15% 24%, rgba(255, 211, 77, 0.25), transparent 28%),
    linear-gradient(135deg, #eaf7ff 0%, #f8fbff 58%, #eef4f8 100%);
}

.route-rail {
  position: absolute;
  left: 6vw;
  top: 150px;
  bottom: 100px;
  width: 18px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    to bottom,
    var(--navy) 0,
    var(--navy) 34px,
    transparent 34px,
    transparent 54px
  );
  animation: routeLineIn 0.9s ease-out both, routeMove 4.6s linear 1s infinite;
}

.route-rail span {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translateX(-50%);
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 9px 20px rgba(4, 31, 51, 0.18);
  animation: routeDotPop 0.55s ease-out both, routeDotPulse 2.4s ease-in-out infinite;
}

.route-rail span:nth-child(1) {
  animation-delay: 0.35s, 1.6s;
}

.route-rail span:nth-child(2) {
  animation-delay: 0.55s, 1.9s;
}

.route-rail span:nth-child(3) {
  animation-delay: 0.75s, 2.2s;
}

.route-rail span:nth-child(1) {
  top: 0;
}

.route-rail span:nth-child(2) {
  top: 43%;
}

.route-rail span:nth-child(3) {
  bottom: 0;
}

.hero-photo {
  position: relative;
  width: min(1120px, calc(100% - 92px));
  height: 680px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 36px 36px 36px 130px;
  background:
    linear-gradient(90deg, rgba(3, 35, 60, 0.56), rgba(3, 35, 60, 0.08) 58%),
    url("assets/bus-fleet.png") center/cover;
  box-shadow: 0 28px 70px rgba(4, 31, 51, 0.22);
  animation: heroPhotoIn 1s ease-out both;
}

.hero-photo::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(255, 211, 77, 0.9);
  border-radius: 50%;
  animation: yellowRingIn 1s ease-out 0.45s both, yellowRingFloat 4.8s ease-in-out 1.45s infinite;
}

.headline {
  position: absolute;
  z-index: 1;
  left: clamp(26px, 6vw, 84px);
  bottom: 84px;
  display: grid;
  gap: 12px;
  color: #fff;
}

.headline small {
  width: max-content;
  max-width: 90%;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--deep);
  font-weight: 800;
  letter-spacing: 0.12em;
  animation: headlineIn 0.7s ease-out 0.45s both;
}

.headline span {
  display: block;
  width: max-content;
  max-width: min(820px, 84vw);
  padding: 6px 18px 8px;
  background: rgba(5, 52, 92, 0.92);
  color: #fff;
  border-radius: 12px;
  font-size: clamp(30px, 4.8vw, 68px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  animation: headlineIn 0.75s ease-out both;
}

.headline span:nth-of-type(1) {
  animation-delay: 0.65s;
}

.headline span:nth-of-type(2) {
  animation-delay: 0.82s;
}

.headline span:last-child {
  margin-left: 46px;
}

.hero-card {
  position: absolute;
  z-index: 1;
  top: 48px;
  right: 48px;
  width: min(300px, 42vw);
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
  box-shadow: 0 18px 36px rgba(4, 31, 51, 0.16);
  animation: heroCardIn 0.75s ease-out 0.9s both;
}

.hero-card strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.14em;
}

.hero-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.floating-contact {
  position: absolute;
  right: 6vw;
  bottom: 42px;
  padding: 17px 30px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--deep);
  font-weight: 900;
  letter-spacing: 0.14em;
  box-shadow: 0 16px 34px rgba(4, 31, 51, 0.18);
  animation: contactButtonIn 0.65s ease-out 1.05s both, contactButtonFloat 2.8s ease-in-out 1.7s infinite;
}

.section {
  padding: 110px 7vw;
}

.section-body {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(380px, 1fr);
  gap: 7vw;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.22em;
}

.copy-block h1,
.copy-block h2,
.service-panel h2,
.recruit-copy h2,
.contact h2 {
  margin: 0 0 26px;
  color: var(--deep);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.42;
  letter-spacing: 0.06em;
}

.copy-block p,
.service-panel p,
.recruit-copy p,
.contact p {
  font-size: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding: 10px 0;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.read-more::after {
  content: "";
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
}

.read-more.light {
  color: #fff;
}

.photo-stack {
  position: relative;
  min-height: 530px;
}

.photo-stack img:first-child {
  width: 76%;
  height: 410px;
  margin-left: auto;
  border-radius: 34px;
}

.photo-stack img:last-child {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  height: 275px;
  border: 14px solid var(--paper);
  border-radius: 30px;
}

.service {
  position: relative;
  min-height: 760px;
  padding-top: 150px;
}

.wide-photo {
  position: absolute;
  top: 90px;
  left: 7vw;
  width: 64%;
  height: 520px;
  border-radius: 36px;
  background-position: center;
  background-size: cover;
}

.service-photo {
  background-image:
    linear-gradient(rgba(5, 52, 92, 0.16), rgba(5, 52, 92, 0.16)),
    url("assets/midibus.png");
}

.service-panel {
  position: relative;
  z-index: 2;
  width: min(510px, 88vw);
  margin-left: auto;
  padding: 48px 48px;
  border-radius: 32px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 24px 55px rgba(4, 31, 51, 0.2);
}

.service-panel h2 {
  color: #fff;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
}

.service-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.reverse {
  grid-template-columns: minmax(430px, 1fr) minmax(280px, 390px);
}

.reverse .copy-block {
  order: 2;
}

.photo-pair {
  position: relative;
  min-height: 470px;
}

.photo-pair img:first-child {
  width: 76%;
  height: 330px;
  border-radius: 34px;
}

.photo-pair img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64%;
  height: 280px;
  border: 14px solid var(--paper);
  border-radius: 30px;
}

.recruit {
  min-height: 610px;
  display: flex;
  align-items: center;
  padding: 100px 7vw;
  background:
    linear-gradient(90deg, rgba(5, 52, 92, 0.92), rgba(5, 52, 92, 0.5)),
    url("assets/bus-city.png") center/cover;
  color: #fff;
}

.recruit-copy {
  max-width: 560px;
}

.recruit-copy h2,
.recruit-copy .large-copy {
  color: #fff;
}

.large-copy {
  font-size: clamp(38px, 5vw, 68px) !important;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.contact {
  max-width: 980px;
  margin: 0 auto;
}

.contact-lead {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.contact-button {
  display: inline-block;
  margin-top: 28px;
  padding: 17px 34px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  padding: 34px;
  border-radius: 32px;
  background: #fff;
  text-align: left;
  box-shadow: 0 18px 42px rgba(4, 31, 51, 0.08);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.contact-form .contact-button,
.form-note,
.form-message {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--deep);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.form-row label span {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--deep);
  font-size: 12px;
  letter-spacing: 0;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 2px solid #dce7ef;
  border-radius: 16px;
  padding: 14px 16px;
  background: #f8fbfd;
  color: var(--text);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 211, 77, 0.24);
}

.contact-form .contact-button {
  justify-self: center;
  min-width: 260px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.form-message {
  display: none;
  margin: 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: #eaf7ff;
  color: var(--deep);
  text-align: center;
  font-weight: 900;
}

.form-message.is-show {
  display: block;
}

.site-footer {
  padding: 62px 7vw 34px;
  background: var(--deep);
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 30px;
  font-size: 24px;
}

address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.86);
}

small {
  color: rgba(255, 255, 255, 0.52);
}

.sub-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: 44px;
  align-items: center;
  min-height: 680px;
  padding: 138px 7vw 86px;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 211, 77, 0.22), transparent 28%),
    linear-gradient(135deg, #eaf7ff 0%, #f8fbff 58%, #eef4f8 100%);
}

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

.sub-hero-copy h1 {
  margin: 0 0 22px;
  color: var(--deep);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.32;
  letter-spacing: 0.06em;
}

.sub-hero-copy h1.balance-title {
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.sub-hero-copy p:last-child {
  max-width: 520px;
  font-weight: 700;
}

.sub-hero img {
  height: 480px;
  border-radius: 34px 34px 34px 110px;
  box-shadow: 0 28px 70px rgba(4, 31, 51, 0.18);
}

.sub-section {
  padding: 110px 7vw;
}

.sub-section.pale {
  background: #eef6fb;
}

.sub-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(360px, 1.2fr);
  gap: 7vw;
  max-width: 1120px;
  margin: 0 auto;
}

.sub-grid h2,
.sub-image-band h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.42;
  letter-spacing: 0.06em;
}

.text-block p {
  margin-top: 0;
  font-size: 17px;
}

.feature-cards,
.job-list,
.service-detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

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

.feature-cards article,
.job-list article,
.service-detail-list article {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(4, 31, 51, 0.08);
}

.feature-cards span,
.job-list span,
.service-detail-list span,
.route-cards span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--deep);
  font-weight: 900;
  letter-spacing: 0;
}

.feature-cards h3,
.job-list h2,
.service-detail-list h2 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 25px;
  line-height: 1.45;
}

.sub-image-band {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(300px, 0.75fr);
  gap: 6vw;
  align-items: center;
  padding: 110px 7vw;
  background: var(--deep);
  color: #fff;
}

.sub-image-band img {
  height: 430px;
  border-radius: 34px;
}

.sub-image-band h2,
.sub-image-band .eyebrow {
  color: #fff;
}

.route-cards {
  display: grid;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.route-cards article {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: center;
  padding: 22px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(4, 31, 51, 0.08);
}

.route-cards img {
  height: 210px;
  border-radius: 22px;
}

.route-cards span {
  width: max-content;
  height: auto;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
}

.route-cards h2 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 30px;
}

.sub-cta {
  padding: 82px 7vw;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 77, 0.22), transparent 32%),
    #fff;
}

.sub-cta p {
  margin: 0 0 22px;
  color: var(--deep);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: 0.06em;
}

@media (max-width: 920px) {
  .site-header {
    left: 14px;
    right: 14px;
    padding-left: 18px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding: 96px 18px 54px;
  }

  .route-rail {
    left: 28px;
    top: 140px;
  }

  .hero-photo {
    width: calc(100% - 32px);
    height: 610px;
    margin-left: 32px;
    border-radius: 28px 28px 28px 80px;
  }

  .headline {
    left: 24px;
    bottom: 62px;
  }

  .headline span {
    padding: 7px 14px 8px;
    font-size: clamp(28px, 7vw, 52px);
  }

  .headline span:last-child {
    margin-left: 18px;
  }

  .hero-card {
    top: 24px;
    right: 24px;
    width: 245px;
  }

  .floating-contact {
    right: 22px;
    bottom: 24px;
  }

  .section,
  .service,
  .recruit {
    padding: 72px 22px;
  }

  .section-body,
  .reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .reverse .copy-block {
    order: 0;
  }

  .wide-photo {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 290px;
    margin-bottom: -40px;
  }

  .service-panel {
    margin: 0 auto;
    padding: 34px 28px;
  }

  .sub-hero,
  .sub-grid,
  .sub-image-band,
  .route-cards article {
    grid-template-columns: 1fr;
  }

  .sub-hero {
    padding: 116px 22px 70px;
  }

  .sub-hero img,
  .sub-image-band img {
    height: 320px;
  }

  .feature-cards,
  .job-list,
  .service-detail-list {
    grid-template-columns: 1fr;
  }

  .route-cards img {
    height: 260px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .brand-text span {
    display: none;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand {
    min-width: auto;
  }

  .site-header {
    top: 10px;
    height: 64px;
  }

  .menu-button {
    top: 7px;
    right: 7px;
    width: 50px;
    height: 50px;
  }

  .hero {
    min-height: 660px;
  }

  .route-rail {
    display: none;
  }

  .hero-photo {
    width: 100%;
    height: 560px;
    margin-left: 0;
    border-radius: 24px 24px 24px 64px;
  }

  .headline {
    left: 16px;
    right: 16px;
    bottom: 70px;
  }

  .headline small {
    width: auto;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.5;
  }

  .headline span {
    max-width: 100%;
    font-size: 25px;
  }

  .hero-photo::after {
    right: -120px;
    bottom: -135px;
    width: 230px;
    height: 230px;
    border-width: 28px;
    opacity: 0.75;
  }

  .hero-card {
    width: auto;
    left: 18px;
    right: 18px;
    top: 24px;
    padding: 18px 20px;
  }

  .hero-card strong {
    font-size: 22px;
  }

  .floating-contact {
    right: 18px;
    bottom: 22px;
    padding: 13px 22px;
    font-size: 14px;
  }

  .photo-stack,
  .photo-pair {
    min-height: auto;
  }

  .photo-stack img:first-child,
  .photo-stack img:last-child,
  .photo-pair img:first-child,
  .photo-pair img:last-child {
    position: static;
    width: 100%;
    height: 250px;
    margin: 0 0 18px;
    border: 0;
  }

  .sub-hero {
    min-height: auto;
    gap: 28px;
  }

  .sub-hero img {
    height: 280px;
    border-radius: 24px 24px 24px 64px;
  }

  .sub-section,
  .sub-image-band {
    padding: 72px 22px;
  }

  .feature-cards article,
  .job-list article,
  .service-detail-list article {
    padding: 26px;
  }

  .route-cards article {
    padding: 16px;
  }

  .route-cards img {
    height: 220px;
  }

  .contact-form {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-form .contact-button {
    min-width: 0;
    width: 100%;
  }
}


/* ── サブページ ヒーローアニメーション ── */
.sub-hero-copy h1 {
  animation: subHeroZoom 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes subHeroZoom {
  from {
    opacity: 0;
    transform: scale(1.18);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── スクロールフェードイン ── */
.scroll-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-fade[data-delay="1"] { transition-delay: 0.12s; }
.scroll-fade[data-delay="2"] { transition-delay: 0.24s; }
.scroll-fade[data-delay="3"] { transition-delay: 0.36s; }

@keyframes heroPhotoIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes headlineIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes yellowRingIn {
  from {
    opacity: 0;
    transform: scale(0.72) rotate(-18deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes yellowRingFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -8px);
  }
}

@keyframes contactButtonIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactButtonFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes routeLineIn {
  from {
    opacity: 0;
    transform: scaleY(0.72);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes routeMove {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: 54px;
  }
}

@keyframes routeDotPop {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.4);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes routeDotPulse {
  0%,
  100% {
    box-shadow: 0 9px 20px rgba(4, 31, 51, 0.18), 0 0 0 0 rgba(255, 211, 77, 0.45);
  }
  50% {
    box-shadow: 0 9px 20px rgba(4, 31, 51, 0.18), 0 0 0 11px rgba(255, 211, 77, 0);
  }
}

/* ── フォント適用 ── */
body {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

.brand-mark,
.main-nav,
.drawer-label,
.eyebrow,
.service-list span,
.feature-cards span,
.job-list span,
.service-detail-list span,
.route-cards span,
.hero-card strong {
  font-family: "Montserrat", sans-serif;
}

/* ── スクロールフェードイン ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ボタン・リンクのホバー強化 ── */
.contact-button {
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.contact-button:hover {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(4, 31, 51, 0.28);
}

.floating-contact {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.floating-contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(4, 31, 51, 0.26);
}

.read-more {
  transition: gap 0.2s ease;
}
.read-more:hover {
  gap: 20px;
}

.drawer-contact {
  transition: background 0.2s ease, transform 0.2s ease;
}
.drawer-contact:hover {
  background: #062238;
  transform: translateY(-2px);
}

/* ── サービスリストホバー ── */
.service-list li {
  transition: background 0.18s ease, padding-left 0.18s ease;
  border-radius: 8px;
}
.service-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 16px;
}

/* ── カードホバー ── */
.feature-cards article,
.job-list article,
.service-detail-list article {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.feature-cards article:hover,
.job-list article:hover,
.service-detail-list article:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(4, 31, 51, 0.14);
}

.accent-yellow {
  font-style: normal;
  color: var(--yellow);
}

/* ── フッター再設計 ── */
.site-footer {
  padding: 0;
  background: var(--deep);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr;
  gap: 48px;
  padding: 64px 7vw 52px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ブランドカラム */
.footer-brand-col {}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.06em;
  margin: 0;
}

.footer-contact-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--yellow);
  color: var(--deep);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.18s ease;
}
.footer-contact-btn:hover { opacity: 0.85; }

/* 情報・ナビカラム */
.footer-col-title {
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

address {
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 2;
}

.footer-nav {
  display: grid;
  gap: 2px;
  margin: 0;
  flex-wrap: unset;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color 0.18s ease, padding-left 0.18s ease;
  display: block;
}
.footer-nav a:hover {
  color: var(--yellow);
  padding-left: 8px;
}

/* コピーライト */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 7vw;
  text-align: center;
}

small {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 22px 36px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    padding: 16px 22px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
