:root {
  --ink: #092849;
  --text: #1d2c3d;
  --blue: #3199cf;
  --blue-dark: #0d7fbb;
  --pale: #edf9ff;
  --line: #d9e5ed;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-aos="fade-soft-up"] {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition-property: opacity, transform;
}

[data-aos="fade-soft-up"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.sp-break {
  display: none;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 0 rgba(9, 40, 73, .06);
}

.header-inner {
  width: min(100%, 1180px);
  height: 115px;
  margin: 0 auto;
  padding: 0 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 386px;
  height: 65px;
}

.logo {
  display: block;
  width: 220px;
  height: auto;
}

.logo-mobility {
  display: block;
  width: 138px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
}

.header-menu {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-button {
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.header-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.header-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.header-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-nav .facility-nav-link {
  min-height: 38px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.header-nav .facility-nav-link::before {
  display: none;
}

.header-nav .facility-nav-link::after {
  right: 0;
  bottom: 4px;
  left: 0;
}

.header-nav .facility-nav-link:hover,
.header-nav .facility-nav-link:focus-visible {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
}

.contact-button,
.panel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--white);
  line-height: 1.25;
  background: linear-gradient(180deg, #39a8dc 0%, #1b8bc7 100%);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
}

.contact-button {
  width: 190px;
  height: 63px;
  flex: 0 0 190px;
  padding: 0 14px;
  font-weight: 900;
  text-align: left;
}

.header-phone-button {
  display: none;
}

.mail-icon {
  display: block;
  width: 30px;
  height: 20px;
  object-fit: contain;
  object-position: center;
}

.contact-button-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-button-row {
  display: grid;
  grid-template-columns: 19px minmax(0, auto);
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.contact-button-icon {
  display: block;
  width: 19px;
  height: 16px;
  object-fit: contain;
  object-position: center;
}

.contact-button-row:first-child .contact-button-icon {
  filter: brightness(0) invert(1);
}

.contact-button-phone,
.contact-button-label {
  display: block;
  white-space: nowrap;
}

.contact-button-phone {
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: .02em;
}

.contact-button-label {
  font-size: 12px;
  line-height: 1.2;
}

.hero {
  height: 470px;
  overflow: hidden;
  background: linear-gradient(180deg, #d5efff 0%, #f8fdff 55%, #fff 100%);
}

.hero-inner {
  position: relative;
  width: min(100%, 1180px);
  height: 470px;
  margin: 0 auto;
  padding: 50px 64px 0;
}

.hero-photo {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: auto;
  height: 470px;
  object-fit: contain;
  object-position: right center;
  filter: none;
}

.hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0, #fff 520px, rgba(255, 255, 255, .9) 620px, rgba(255, 255, 255, .42) 780px, rgba(255, 255, 255, 0) 940px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 540px;
}

.hero-message-logo {
  display: block;
  height: auto;
}

.hero-message {
  width: 540px;
  max-width: 100%;
  margin-top: 42px;
  color: var(--ink);
  text-align: center;
}

.hero-message-en {
  margin: 0;
  color: var(--blue-dark);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: .03em;
  white-space: nowrap;
}

.hero-message-ja {
  margin: 14px 0 22px;
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .05em;
  white-space: nowrap;
}

.hero-message-logo {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}

.intro-message {
  background: var(--pale);
}

.intro-message .section-inner {
  padding-top: 44px;
  padding-bottom: 44px;
}

.intro-message p {
  max-width: 920px;
  margin: 0 auto 1em;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.9;
  text-align: center;
  letter-spacing: .02em;
}

.intro-message p:last-child {
  margin-bottom: 0;
}

.purchase-campaign {
  width: 100%;
  padding: 28px 0 0;
  background: var(--white);
}

.purchase-campaign-inner {
  position: relative;
  overflow: hidden;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 30px 18px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  border: 5px solid #0b3570;
  box-shadow: 0 14px 30px rgba(9, 40, 73, .16);
}

.purchase-campaign-link {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.purchase-campaign-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .28);
  opacity: 0;
  transition: opacity .2s ease;
}

.purchase-campaign-link:hover::before,
.purchase-campaign-link:focus-visible::before {
  opacity: 1;
}

.purchase-campaign-inner > :not(.purchase-campaign-link) {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.purchase-campaign-tel {
  z-index: 5;
  pointer-events: auto;
}

.purchase-campaign-ribbon {
  margin: 0 -30px 16px;
  padding: 9px 34px 10px;
  color: #0b2d66;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .04em;
  text-align: center;
  background: #ffe400;
  text-shadow: 2px 2px 0 #fff;
}

.campaign-red {
  color: #e71920;
}

.purchase-campaign-hero {
  text-align: center;
}

.purchase-campaign-copy {
  min-width: 0;
}

.purchase-campaign-kicker {
  display: inline-block;
  margin: 0 0 8px;
  padding: 7px 18px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  background: #0b3570;
  transform: skewX(-8deg);
}

.purchase-campaign-kicker span {
  color: #ffe400;
}

.purchase-campaign h1,
.purchase-campaign h2 {
  margin: 0;
  color: #0b3570;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .02em;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke fill;
  text-shadow:
    2px 1px 0 #fff,
    2px 3px 0 rgba(11, 53, 112, .38);
}

.campaign-orange {
  color: #ff7a00;
}

.purchase-campaign h1 br,
.purchase-campaign h2 br {
  display: none;
}

.purchase-campaign-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 16px 0 14px;
}

.purchase-campaign-points p {
  position: relative;
  margin: 0;
  min-height: 48px;
  padding: 9px 14px 9px 40px;
  color: #0b3570;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  background: #fff;
  border: 2px solid #0b5da6;
  border-radius: 8px;
}

.purchase-campaign-points p::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 15px;
  width: 15px;
  height: 15px;
  background: #ff5a13;
  border-radius: 50%;
}

.campaign-area-sp {
  display: none;
}

.purchase-campaign-gift {
  margin: 12px -30px -18px;
  padding: 8px 16px 9px;
  color: #0b2d66;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  background: #ffe400;
  border: 0;
  text-shadow: 2px 2px 0 #fff;
}

.purchase-campaign-tel-wrap {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  background: #fff;
  border: 3px solid #0b5da6;
}

.purchase-campaign-tel-wrap > span {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  background: #0b3570;
}

.purchase-campaign-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  color: #e71920;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .03em;
}

.purchase-campaign-tel img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: none;
}

.concerns {
  background: var(--white);
}

.concerns .section-inner {
  padding-top: 34px;
  padding-bottom: 42px;
}

.concerns-panel {
  padding: 34px 42px 36px;
  color: var(--ink);
  background: #f7fcff;
  border: 2px solid #bde6f2;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(9, 40, 73, .07);
}

.concerns-panel h2 {
  margin: 0 0 24px;
  color: var(--blue-dark);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  letter-spacing: .06em;
}

.concerns-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concerns-list li {
  position: relative;
  min-width: 0;
  padding-left: 34px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.concerns-list li::before {
  content: "";
  position: absolute;
  top: .32em;
  left: 0;
  width: 22px;
  height: 22px;
  background: #19a8d2;
  border-radius: 5px;
}

.concerns-list li::after {
  content: "";
  position: absolute;
  top: calc(.32em + 4px);
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.concerns-answer {
  margin: 30px 0 0;
  color: var(--blue-dark);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
  letter-spacing: .04em;
}

.services {
  height: auto;
  overflow: visible;
  background: var(--white);
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 67px;
}

.services .section-inner {
  padding-top: 27px;
  padding-bottom: 48px;
}

.section-title {
  margin: 0 0 27px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .14em;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin: 8px auto 0;
  background: var(--blue);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 8px 18px 0;
  text-align: center;
  border-left: 1px solid var(--line);
}

.service-item:first-child {
  border-left: 0;
}

.service-icon {
  display: block;
  width: 108px;
  height: 108px;
  margin: 0 auto 14px;
  object-fit: contain;
  object-position: center;
}

.service-item h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.service-item p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.service-more {
  text-align: right;
}

.service-item-footer {
  margin-top: auto;
  padding-top: 18px;
}

.service-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 46px;
  padding: 0 22px;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(180deg, #39a8dc 0%, #1b8bc7 100%);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 8px 18px rgba(9, 40, 73, .12);
}

.strengths {
  background: linear-gradient(180deg, #f8fdff 0%, #edf9ff 100%);
}

.strengths .section-inner {
  padding-top: 42px;
  padding-bottom: 48px;
}

.products-link-wrap {
  margin: 22px 0 0;
  text-align: center;
}

.products-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 0 26px;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(180deg, #39a8dc 0%, #1b8bc7 100%);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 8px 18px rgba(9, 40, 73, .12);
}

.strengths-catch {
  margin: 0 0 22px;
  color: var(--blue-dark);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  letter-spacing: .04em;
}

.strengths-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
  margin: 0 0 38px;
  padding: 18px 8px 10px;
}

.photo-print {
  margin: 0;
  padding: 14px 14px 28px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(9, 40, 73, .18);
  transform: rotate(-3deg);
}

.photo-print:nth-child(2) {
  margin-top: 18px;
  transform: rotate(3deg);
}

.photo-print:nth-child(3) {
  margin-top: 6px;
  transform: rotate(-1.5deg);
}

.photo-print img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.photo-print figcaption {
  min-height: 46px;
  margin: 18px 0 0;
  color: #16355c;
  font-family: "Hiragino Maru Gothic ProN", "YuGothic", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .03em;
  text-align: center;
}

.strengths .section-title {
  margin-top: 0;
  padding-top: 48px;
  margin-bottom: 24px;
}

.strengths-reasons .section-title {
  padding-top: 0;
}

.mobility-showcase .section-inner {
  padding-bottom: 18px;
}

.strengths-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.strength-card {
  position: relative;
  min-height: auto;
  padding: 24px 22px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(9, 40, 73, .06);
}

.strength-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 22px;
  width: 34px;
  height: 34px;
  background-color: var(--blue);
  border-radius: 50%;
}

.strength-card::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 29px;
  width: 20px;
  height: 20px;
  background: var(--white);
  mask: var(--strength-icon) center / contain no-repeat;
  -webkit-mask: var(--strength-icon) center / contain no-repeat;
}

.strength-card:nth-child(1) {
  --strength-icon: url("../img/icon-strength-proposal.svg");
}

.strength-card:nth-child(2) {
  --strength-icon: none;
}

.strength-card:nth-child(3) {
  --strength-icon: url("../img/icon-strength-tax.svg");
}

.strength-card:nth-child(4) {
  --strength-icon: url("../img/icon-strength-subsidy.svg");
}

.strength-card:nth-child(5) {
  --strength-icon: none;
}

.strength-card:nth-child(2)::after {
  top: 22px;
  left: 24px;
  width: 30px;
  height: 30px;
  background: url("../img/icon-strength-after-support.png") center / contain no-repeat;
  mask: none;
  -webkit-mask: none;
}

.strength-card:nth-child(5)::after {
  top: 24px;
  left: 26px;
  width: 26px;
  height: 26px;
  background: url("../img/icon-car.png") center / contain no-repeat;
  mask: none;
  -webkit-mask: none;
}

.strength-card h3 {
  margin: 0 0 12px;
  min-height: 34px;
  padding-left: 48px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
}

.strength-card p {
  margin: 0 0 .75em;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.strength-card p:last-child {
  margin-bottom: 0;
}

.about {
  height: auto;
  overflow: visible;
  background: linear-gradient(180deg, #edf9ff 0%, #f8fdff 100%);
}

.about .section-inner {
  padding-top: 42px;
  padding-bottom: 48px;
  text-align: center;
}

.about .section-title {
  margin-bottom: 26px;
}

.about p {
  margin: 0 auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.05;
}

.greeting-text {
  max-width: 660px;
  margin: 0 auto;
  text-align: left;
}

.greeting-text p {
  margin: 0 0 1.15em;
}

.greeting-text p:last-child {
  margin-bottom: 0;
}

.greeting-catch {
  margin: 26px auto;
  padding: 0 0 5px;
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.greeting-catch-en {
  font-size: 26px;
  letter-spacing: .08em;
}

.greeting-catch-ja {
  letter-spacing: .04em;
}

.greeting-catch-main {
  margin-top: 34px;
  margin-bottom: 8px;
  font-size: 36px;
  letter-spacing: .06em;
  text-decoration: none;
}

.greeting-subtitle {
  margin: 0 auto 28px;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  letter-spacing: .04em;
}

.about .greeting-final-catch {
  margin: 34px auto 0;
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.65;
  text-align: center;
  letter-spacing: .04em;
}

.company {
  height: 431px;
  overflow: hidden;
  background: var(--white);
}

.company .section-inner {
  padding-top: 36px;
}

.company .section-title {
  margin-bottom: 23px;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 308px;
  gap: 70px;
  align-items: start;
}

.company-table {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.company-table div {
  display: grid;
  grid-template-columns: 98px 1fr;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  min-height: 40px;
  padding: 8px 10px;
  color: var(--ink);
  font-weight: 900;
  background: #eef8fd;
}

.company-table dd {
  min-height: 40px;
  margin: 0;
  padding: 8px 10px 8px 14px;
  font-weight: 500;
}

.contact-panel {
  margin-top: 28px;
  padding: 37px 18px 33px;
  text-align: center;
  background: linear-gradient(180deg, #eef9ff, #e6f5fd);
  border-radius: 10px;
}

.panel-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
  white-space: nowrap;
}

.panel-tel img {
  display: block;
  width: 42px;
  height: 29px;
  object-fit: contain;
}

.contact-panel p {
  margin: 3px 0 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.panel-button {
  width: 220px;
  height: 54px;
  font-size: 19px;
  font-weight: 900;
}

.site-footer {
  height: 119px;
  overflow: hidden;
  background: #eef9ff;
}

.placeholder-page {
  min-height: 420px;
  background: linear-gradient(180deg, #f8fdff 0%, #edf9ff 100%);
}

.placeholder-page .section-inner {
  padding-top: 84px;
  padding-bottom: 96px;
  text-align: center;
}

.placeholder-page p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.products-hero {
  background: linear-gradient(180deg, #f8fdff 0%, #edf9ff 100%);
}

.products-hero .section-inner {
  padding-top: 54px;
  padding-bottom: 44px;
  text-align: center;
}

.page-kicker {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .08em;
}

.products-lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.products-page {
  background: var(--white);
}

.products-layout {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-right: 1px solid #bde6f2;
  border-left: 1px solid #bde6f2;
}

.product-category {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-left: 1px dashed #96d7e4;
}

.product-category:first-child {
  border-left: 0;
}

.product-category-header {
  min-height: 102px;
  padding: 28px 28px 22px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 126, 130, .94), rgba(0, 126, 130, .72)),
    url("../img/products/accelerator-ring.png") center / cover;
}

.product-category-transfer .product-category-header {
  background:
    linear-gradient(90deg, rgba(0, 136, 146, .94), rgba(0, 136, 146, .68)),
    url("../img/products/turnout.png") center / cover;
}

.product-category-wheelchair .product-category-header {
  background:
    linear-gradient(90deg, rgba(0, 91, 190, .96), rgba(0, 91, 190, .7)),
    url("../img/products/lift.png") center / cover;
}

.product-category-header h2 {
  margin: 0 0 3px;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .03em;
}

.product-category-header p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.product-list {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(4, minmax(176px, 1fr));
  padding: 24px 24px 14px;
}

.product-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 24px;
  margin: 0;
  border-bottom: 2px dotted #9adbe7;
}

.product-item:not(:first-child) {
  padding-top: 20px;
}

.product-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

.product-text {
  min-width: 0;
  padding-top: 0;
}

.product-text h3 {
  position: relative;
  margin: 0 0 11px;
  padding-left: 19px;
  color: #058f98;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
}

.product-category-wheelchair .product-text h3 {
  color: #0060bf;
}

.product-text h3::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 0;
  width: 13px;
  height: 13px;
  background: #059aa1;
  border-radius: 50%;
}

.product-category-wheelchair .product-text h3::before {
  background: #0060bf;
}

.product-text p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.product-supports {
  background: var(--white);
}

.product-supports .section-inner {
  width: min(100%, 1180px);
  padding: 8px 24px 50px;
}

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

.support-box {
  position: relative;
  min-height: 150px;
  padding: 22px 22px 21px 66px;
  border: 2px solid #167f9c;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(9, 40, 73, .06);
}

.support-box::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 24px;
  width: 30px;
  height: 30px;
  background: #078b96;
  border-radius: 50%;
}

.support-box::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 35px;
  width: 7px;
  height: 14px;
  border: solid var(--white);
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.support-box h2 {
  margin: 0 0 10px;
  color: #08627f;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
}

.support-box p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.products-contact {
  background: linear-gradient(180deg, #edf9ff 0%, #f8fdff 100%);
}

.products-contact .section-inner {
  padding-top: 44px;
  padding-bottom: 50px;
  text-align: center;
}

.products-contact h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
}

.products-contact p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.products-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 0 26px;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(180deg, #39a8dc 0%, #1b8bc7 100%);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 8px 18px rgba(9, 40, 73, .12);
}

.vehicles-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #fff 0%, #fff 44%, #f4fbfd 44.2%, #fff 62%, #eef9ff 100%);
}

.vehicles-hero-inner {
  width: min(100%, 1180px);
  min-height: 480px;
  margin: 0 auto;
  padding: 34px 40px 34px;
  display: grid;
  grid-template-columns: 48% minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.vehicles-hero-copy {
  min-width: 0;
}

.vehicles-hero *,
.vehicles-support *,
.vehicles-contact-band * {
  min-width: 0;
}

.vehicles-balloon {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  margin: 0 0 22px;
  padding: 0 30px;
  color: #050505;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .08em;
  background: #fff;
  border: 3px solid #147c91;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(9, 40, 73, .06);
  overflow-wrap: anywhere;
}

.vehicles-balloon::before,
.vehicles-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateX(-50%);
}

.vehicles-balloon::before {
  bottom: -18px;
  border-width: 18px 13px 0;
  border-color: #147c91 transparent transparent;
}

.vehicles-balloon::after {
  bottom: -12px;
  border-width: 14px 11px 0;
  border-color: #fff transparent transparent;
}

.vehicles-hero h1 {
  margin: 0 0 20px;
  color: #050505;
  font-size: 54px;
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: .04em;
}

.vehicles-hero h1 span {
  display: block;
  color: #087b90;
  font-size: 86px;
  line-height: 1.05;
  letter-spacing: .06em;
}

.vehicles-service-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 0;
  padding: 0 42px 0 36px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .07em;
  background: #087b90;
  filter: drop-shadow(0 8px 14px rgba(9, 40, 73, .12));
}

.vehicles-service-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -32px;
  width: 32px;
  height: 100%;
  background: #087b90;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.vehicles-hero-visual {
  position: relative;
  min-height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicles-hero-visual > img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
}

.vehicle-photo {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: rgba(8, 79, 105, .82);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .1)),
    linear-gradient(135deg, #d9eef5, #f7fbfd);
  border: 2px dashed rgba(8, 123, 144, .32);
  box-shadow: 0 14px 28px rgba(9, 40, 73, .12);
}

.vehicle-photo-large {
  top: 0;
  left: 0;
  width: 58%;
  height: 210px;
  border-radius: 42% 36% 38% 35% / 35% 42% 33% 40%;
}

.vehicle-photo-side {
  top: 22px;
  right: 0;
  width: 45%;
  height: 185px;
  border-radius: 36% 30% 34% 38% / 35% 42% 36% 34%;
}

.vehicle-photo-wide {
  right: 6%;
  bottom: 8px;
  width: 70%;
  height: 178px;
  border-radius: 40% 34% 35% 32% / 38% 36% 34% 33%;
}

.vehicles-support {
  background: #fff;
}

.vehicles-support-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 34px 28px 42px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 24px;
}

.vehicles-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.vehicles-feature-card {
  position: relative;
  min-height: 0;
  padding: 24px 24px 22px 76px;
  background: #fff;
  border: 2px solid #16849b;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(9, 40, 73, .06);
}

.vehicles-feature-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 38px;
  height: 38px;
  background: #0b7e92;
  border-radius: 50%;
}

.vehicles-feature-card::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 32px;
  width: 22px;
  height: 22px;
  background: #fff;
  mask: var(--vehicles-feature-icon) center / contain no-repeat;
  -webkit-mask: var(--vehicles-feature-icon) center / contain no-repeat;
}

.vehicles-feature-card:nth-child(1) {
  --vehicles-feature-icon: url("../img/icon-strength-proposal.svg");
}

.vehicles-feature-card:nth-child(2) {
  --vehicles-feature-icon: url("../img/icon-strength-tax.svg");
}

.vehicles-feature-card:nth-child(3) {
  --vehicles-feature-icon: url("../img/icon-strength-subsidy.svg");
}

.vehicles-feature-card:nth-child(4) {
  --vehicles-feature-icon: none;
}

.vehicles-feature-card:nth-child(4)::after {
  top: 29px;
  left: 29px;
  width: 28px;
  height: 28px;
  background: url("../img/icon-car.png") center / contain no-repeat;
  mask: none;
  -webkit-mask: none;
}

.vehicles-feature-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .03em;
  overflow-wrap: anywhere;
}

.vehicles-feature-card p {
  margin: 0 0 .75em;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.vehicles-feature-card p:last-child {
  margin-bottom: 0;
}

.purchase-page-support .vehicles-support-inner {
  grid-template-columns: 1fr;
}

.purchase-detail {
  background: #f7fcff;
}

.purchase-detail-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 28px 46px;
  display: grid;
  gap: 24px;
}

.purchase-detail-panel {
  padding: 30px 32px 34px;
  background: #fff;
  border: 2px solid #16849b;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(9, 40, 73, .06);
}

.purchase-detail-panel h2 {
  margin: 0 0 22px;
  color: #0b3570;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  letter-spacing: .06em;
}

.purchase-area-list,
.purchase-vehicle-groups {
  display: grid;
  gap: 18px;
}

.purchase-area-block,
.purchase-vehicle-group {
  min-width: 0;
  padding: 20px 22px;
  background: #f8fdff;
  border: 1px solid #bde6f2;
  border-radius: 8px;
}

.purchase-area-block h3,
.purchase-vehicle-group h3 {
  margin: 0 0 12px;
  color: #0b3570;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.purchase-area-block p,
.purchase-detail-lead {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.purchase-area-note {
  margin: 0;
  padding: 14px 18px;
  color: #0b3570;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  background: #ffe400;
  border-radius: 8px;
}

.purchase-detail-lead {
  margin-bottom: 20px;
  text-align: center;
}

.purchase-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.purchase-chip-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: #16355c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  background: #fff;
  border: 1px solid #8dcfe2;
  border-radius: 999px;
}

.vehicles-rental {
  display: grid;
  gap: 18px;
  align-content: start;
}

.rental-table-wrap,
.rental-message {
  overflow: hidden;
  background: #fff;
  border: 2px solid #16849b;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(9, 40, 73, .06);
}

.rental-table-wrap h2 {
  margin: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .08em;
  background: linear-gradient(180deg, #0b879b, #057487);
}

.rental-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.rental-table th,
.rental-table td {
  min-height: 48px;
  padding: 14px 9px;
  border: 2px solid #16849b;
}

.rental-table thead th {
  background: #f8fdff;
  font-size: 16px;
}

.rental-table thead th:first-child,
.rental-table tbody th {
  width: 34%;
}

.rental-table tbody th {
  background: #fbfdfe;
}

.rental-message {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 22px 28px 24px;
  text-align: left;
}

.rental-message h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  overflow-wrap: anywhere;
}

.rental-message p {
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.rental-message small {
  display: block;
  margin-top: 4px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-align: right;
}

.rental-icon {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.vehicles-contact-band {
  background: linear-gradient(180deg, #0a8498 0%, #057184 100%);
}

.vehicles-lineup {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(49, 153, 207, .2) 0 3px, transparent 4px) 0 0 / 34px 34px,
    linear-gradient(180deg, #fff 0%, #f5fbff 100%);
}

.vehicles-lineup::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 82px;
  background:
    radial-gradient(ellipse at 18% 100%, rgba(49, 153, 207, .28) 0 38%, transparent 39%),
    radial-gradient(ellipse at 54% 100%, rgba(49, 153, 207, .2) 0 42%, transparent 43%),
    radial-gradient(ellipse at 90% 100%, rgba(49, 153, 207, .24) 0 36%, transparent 37%);
  pointer-events: none;
}

.vehicles-lineup-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 50px 36px 78px;
}

.vehicles-lineup h2 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  min-height: 58px;
  margin: 0 auto 26px;
  padding: 10px 58px 12px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .06em;
  text-align: center;
  background: linear-gradient(180deg, #39a8dc, #168bbf);
  clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0 50%);
  filter: drop-shadow(0 8px 18px rgba(9, 40, 73, .1));
}

.vehicles-lineup-list {
  display: grid;
  gap: 20px;
}

.vehicles-lineup-card {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
  gap: 26px;
  align-items: center;
  min-height: 248px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, .94);
  border: 2px solid #a9dff3;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(9, 40, 73, .06);
}

.vehicles-lineup-copy {
  min-width: 0;
}

.vehicles-lineup-copy h3 {
  margin: 0 0 12px;
  color: #1360b7;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .03em;
}

.vehicles-lineup-capacity {
  margin: 0 0 10px;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.vehicles-lineup-copy p {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

.vehicles-lineup-visual {
  position: relative;
  min-height: 208px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.vehicles-lineup-visual img {
  display: block;
  width: min(100%, 470px);
  min-height: 170px;
  object-fit: contain;
  object-position: center bottom;
}

.vehicles-lineup-icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  min-width: 152px;
  margin: 0;
  padding: 10px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  background: linear-gradient(180deg, #39a8dc, #168bbf);
  border-radius: 999px;
}

.vehicles-contact-inner {
  width: min(100%, 1180px);
  min-height: 96px;
  margin: 0 auto;
  padding: 12px 22px;
  display: grid;
  grid-template-columns: 120px 330px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  color: #fff;
}

.vehicles-contact-badge {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #087b90;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background: #fff;
  border-radius: 8px;
}

.vehicles-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .02em;
  white-space: nowrap;
}

.vehicles-phone img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.vehicles-phone small {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.3;
}

.vehicles-hours {
  grid-column: 2;
  align-self: start;
  margin: -16px 0 0 58px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.vehicles-brand-panel {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-height: 74px;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  align-items: center;
  background: #fff;
  border-radius: 4px;
}

.vehicles-tagline {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .08em;
  text-align: center;
}

.vehicles-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicles-brand img {
  display: block;
  width: 235px;
  max-width: 100%;
  height: auto;
}

.maintenance-hero {
  background: #233963;
}

.maintenance-hero .section-inner {
  padding-top: 58px;
  padding-bottom: 52px;
}

.maintenance-main-title {
  margin-bottom: 34px;
  padding: 14px 24px 16px;
  color: var(--white);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.maintenance-main-title::after {
  background: #f6ad19;
}

.maintenance-hero-grid {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.maintenance-copy {
  min-width: 0;
}

.maintenance-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin: 0 0 22px;
  padding: 0 24px;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background: #d72f1f;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(9, 40, 73, .12);
}

.maintenance-response-list {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
  padding: 0 10px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.maintenance-response-list p {
  margin: 0;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #f6ad19;
  font-size: 78px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: skewX(-7deg);
  transform-origin: left center;
}

.maintenance-response-list p span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 4px solid #f6ad19;
}

.maintenance-visual {
  min-width: 0;
}

.maintenance-alert {
  margin: 0;
  padding: 18px 24px 20px;
  color: var(--white);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  letter-spacing: .02em;
  background: #d83120;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(9, 40, 73, .12);
}

.maintenance-alert span {
  color: inherit;
}

.maintenance-visual-main-wrap {
  position: relative;
  overflow: hidden;
  padding-right: 190px;
  padding-bottom: 18px;
}

.maintenance-visual-main {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.maintenance-visual-staff {
  position: absolute;
  right: 0;
  bottom: 24px;
  display: block;
  width: 145px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.maintenance-visual-sub {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-top: -8px;
}

.maintenance-visual-sub img {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.maintenance-visual-sub-staff {
  max-height: 150px;
}

.maintenance-visual-sub-car {
  max-height: 210px;
}

.maintenance-trouble {
  background: var(--white);
}

.maintenance-trouble .section-inner {
  padding-top: 52px;
  padding-bottom: 58px;
}

.maintenance-trouble .section-title {
  width: min(100%, 720px);
  min-height: 54px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #d72f1f;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(9, 40, 73, .12);
}

.maintenance-trouble .section-title::after {
  display: none;
}

.maintenance-trouble-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.maintenance-trouble-list div {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background: #1b3d79;
  border-radius: 8px;
}

.maintenance-trouble-phone {
  width: min(100%, 720px);
  margin: 34px auto 0;
  text-align: center;
}

.maintenance-trouble-phone p {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}

.maintenance-trouble-phone h3 {
  margin: 0;
  color: #d83120;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
}

.maintenance-trouble-phone h3 a {
  color: inherit;
}

.maintenance-support {
  margin-bottom: 64px;
  background: #f0f06b;
}

.maintenance-support .section-inner {
  width: 100%;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.maintenance-support-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
  min-height: 184px;
  padding: 26px 34px;
  overflow: hidden;
  background: transparent;
  clip-path: none;
}

.maintenance-support-list {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.maintenance-support-list p {
  position: relative;
  margin: 0;
  padding-left: 68px;
  color: #1b3d79;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .03em;
}

.maintenance-support-list p::before {
  content: "";
  position: absolute;
  top: .05em;
  left: 0;
  width: 44px;
  height: 44px;
  background: #1b3d79;
  border-radius: 4px;
}

.maintenance-support-list p::after {
  content: "";
  position: absolute;
  top: calc(.05em + 8px);
  left: 14px;
  width: 13px;
  height: 22px;
  border: solid var(--white);
  border-width: 0 6px 6px 0;
  transform: rotate(45deg);
}

.maintenance-support-banner > img {
  display: block;
  width: 100%;
  max-height: 152px;
  object-fit: contain;
  object-position: center;
}

.maintenance-check {
  background: var(--pale);
}

.maintenance-check .section-inner {
  padding-top: 0;
  padding-bottom: 64px;
}

.maintenance-check h2 {
  margin: 0 auto 46px;
  padding: 32px 24px 34px;
  color: var(--white);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  letter-spacing: .04em;
  background: #4aa8c8;
}

.maintenance-check-list {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.maintenance-check-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 22px;
  align-items: center;
}

.maintenance-check-row.reverse {
  grid-template-columns: 210px minmax(0, 1fr);
}

.maintenance-check-row.reverse p {
  grid-column: 2;
}

.maintenance-check-row.reverse .maintenance-check-icon {
  grid-column: 1;
  grid-row: 1;
}

.maintenance-check-row p {
  position: relative;
  margin: 0;
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 16px 28px;
  color: #050505;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.35;
  background: #dcebf5;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}

.maintenance-check-row p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 18px solid #dcebf5;
  transform: translateY(-50%);
}

.maintenance-check-row.reverse p::after {
  right: auto;
  left: -17px;
  border-right: 18px solid #dcebf5;
  border-left: 0;
}

.maintenance-check-icon {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maintenance-check-icon img {
  display: block;
  width: 100%;
  max-height: 142px;
  object-fit: contain;
  object-position: center;
}

.maintenance-check-message {
  max-width: 980px;
  margin: 64px auto 0;
  text-align: center;
}

.maintenance-check-message p {
  margin: 0;
  color: #050505;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.45;
}

.maintenance-check-message p + p {
  margin-top: 36px;
  font-size: 36px;
}

.maintenance-contact {
  background: linear-gradient(180deg, #f8fdff 0%, #edf9ff 100%);
}

.maintenance-contact .section-inner {
  padding-top: 48px;
  padding-bottom: 54px;
  text-align: center;
}

.maintenance-contact-lead {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}

.maintenance-contact h2 {
  margin: 0 0 24px;
  color: #c53120;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
}

.maintenance-contact h2 a {
  color: inherit;
}

.contact-hero {
  background: linear-gradient(180deg, #f8fdff 0%, #edf9ff 100%);
}

.contact-hero .section-inner {
  padding-top: 54px;
  padding-bottom: 42px;
  text-align: center;
}

.contact-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

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

.contact-form-section .section-inner {
  padding-top: 42px;
  padding-bottom: 62px;
}

.section-inner.narrow {
  max-width: 900px;
}

.contact-support {
  margin: 0 auto 28px;
  padding: 26px 24px 24px;
  text-align: center;
  background: linear-gradient(180deg, #eef9ff, #e6f5fd);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-support p {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.welmobi-form {
  padding: 34px 38px 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(9, 40, 73, .06);
}

.form-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.form-row:first-of-type {
  padding-top: 0;
}

.form-row label,
.confirm-label {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.form-row label span {
  display: inline-flex;
  margin-left: 8px;
  color: #c53120;
  font-weight: 900;
}

.form-control input,
.form-control textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  line-height: 1.6;
  background: #f8fdff;
  border: 1px solid #bcd9e8;
  border-radius: 5px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-control textarea {
  min-height: 170px;
  resize: vertical;
}

.form-control input:focus,
.form-control textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(49, 153, 207, .16);
}

.validation-errors {
  margin: 0 0 24px;
  padding: 16px 18px;
  background: #fff7f5;
  border: 1px solid #f0b7ad;
  border-radius: 6px;
}

.error,
label.error,
div.error {
  color: #c53120;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.form-control div.error {
  margin-top: 7px;
}

.contact-notice {
  margin: 20px 0 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.form-submit,
.form-reset {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  padding: 0 24px;
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  border-radius: 5px;
  cursor: pointer;
}

.form-submit {
  color: var(--white);
  background: linear-gradient(180deg, #39a8dc 0%, #1b8bc7 100%);
  border: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 8px 18px rgba(9, 40, 73, .12);
}

.form-reset {
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bcd9e8;
}

.confirm-list {
  border-top: 1px solid var(--line);
}

.confirm-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.confirm-value {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.contact-complete {
  text-align: center;
}

.contact-complete-title {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.45;
}

.contact-complete-copy {
  max-width: 650px;
  margin: 0 auto 1em;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  text-align: left;
}

.footer-inner {
  width: min(100%, 1180px);
  height: 119px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-inner small {
  color: #53616d;
  font-size: 14px;
  font-weight: 500;
}

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

@media (max-width: 760px) {
  .sp-break {
    display: block;
  }

  .site-header,
  .hero,
  .services,
  .about,
  .company,
  .placeholder-page,
  .contact-hero,
  .contact-form-section,
  .site-footer {
    height: auto;
    overflow: visible;
  }

  .header-inner {
    height: 80px;
    min-height: 80px;
    padding: 12px 16px 10px;
    position: relative;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .nav-toggle-button {
    width: 52px;
    height: 48px;
    flex: 0 0 52px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    border-radius: 5px;
    background: linear-gradient(180deg, #39a8dc 0%, #1b8bc7 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
  }

  .nav-toggle-button span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 999px;
    transition: transform .2s ease, opacity .2s ease;
  }

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

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

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

  .header-menu {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 24px 128px;
    background: rgba(255, 255, 255, .96);
  }

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

  .header-nav {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    overflow: visible;
    padding-top: 0;
  }

  .header-nav a {
    min-height: 46px;
    justify-content: center;
    font-size: 15px;
    border-bottom: 0;
  }

  .header-nav a::after {
    display: none;
  }

  .header-nav .facility-nav-link {
    width: auto;
    min-height: 46px;
    margin-top: 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header-nav .facility-nav-link::before {
    display: none;
  }

  .header-menu .header-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -1px 0 rgba(9, 40, 73, .08), 0 -10px 24px rgba(9, 40, 73, .08);
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    height: 44px;
    gap: 6px;
  }

  .logo {
    width: 165px;
    height: auto;
  }

  .logo-mobility {
    width: 84px;
  }

  .header-menu .header-phone-button {
    width: auto;
    height: 52px;
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(180deg, #39a8dc 0%, #1b8bc7 100%);
    border-radius: 5px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
  }

  .header-menu .header-phone-button .contact-button-icon {
    filter: brightness(0) invert(1);
  }

  .header-menu .contact-button {
    width: auto;
    height: 52px;
    flex: 1 1 0;
    min-width: 0;
    gap: 8px;
    margin: 0;
    padding: 0 12px;
    justify-content: center;
  }

  .header-menu .contact-button .contact-button-row:first-child {
    display: none;
  }

  .header-menu .contact-button-text {
    display: block;
  }

  .header-menu .contact-button-row {
    display: inline-flex;
    grid-template-columns: none;
    gap: 8px;
    justify-content: center;
  }

  .contact-button-icon {
    width: 18px;
    height: 15px;
  }

  .contact-button-phone {
    font-size: 16px;
  }

  .contact-button-label {
    font-size: 13px;
  }

  .contact-hero .section-inner {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .contact-lead {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .contact-form-section .section-inner {
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .contact-support {
    padding: 22px 16px 20px;
  }

  .contact-support .panel-tel {
    font-size: 24px;
  }

  .welmobi-form {
    padding: 24px 18px 28px;
  }

  .form-row,
  .confirm-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .form-row label,
  .confirm-label {
    font-size: 15px;
  }

  .form-control input,
  .form-control textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .form-control textarea {
    min-height: 150px;
  }

  .form-actions {
    gap: 10px;
  }

  .form-submit,
  .form-reset {
    width: 100%;
    min-width: 0;
  }

  .contact-complete-title {
    font-size: 23px;
  }

  .hero {
    background: linear-gradient(180deg, #e5f5ff 0%, #fff 100%);
  }

  .hero-inner {
    height: auto;
    min-height: 535px;
    padding: 34px 24px 185px;
  }

  .hero-photo {
    top: 260px;
    right: 0;
    bottom: auto;
    width: auto;
    height: 296px;
  }

  .hero-inner::after {
    display: none;
  }

  .hero-copy {
    width: min(100%, 342px);
    margin: 0 auto;
  }

  .hero-message {
    width: min(100%, 342px);
    margin: 0 auto;
    text-align: center;
  }

  .hero-message-en {
    font-size: 27px;
  }

  .hero-message-ja {
    margin: 12px 0 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-message-logo {
    width: 320px;
    transform: translateY(-8px);
  }

  .intro-message .section-inner {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .intro-message p {
    max-width: 342px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.85;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .purchase-campaign-inner {
    width: 100%;
    padding: 0 18px 18px;
    text-align: center;
    border-right: 0;
    border-left: 0;
  }

  .purchase-campaign-ribbon {
    margin: 0 -18px 18px;
    padding: 9px 18px 10px;
    font-size: 20px;
  }

  .purchase-campaign-kicker {
    margin-bottom: 10px;
    padding: 7px 12px;
    font-size: 17px;
  }

  .purchase-campaign h1,
  .purchase-campaign h2 {
    font-size: 39px;
    line-height: 1.08;
  }

  .purchase-campaign h1 br,
  .purchase-campaign h2 br {
    display: block;
  }

  .purchase-campaign-points {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 18px 0 14px;
  }

  .purchase-campaign-points p {
    min-height: 0;
    padding: 9px 12px 9px 36px;
    font-size: 15px;
  }

  .purchase-campaign-points p::before {
    top: 15px;
    left: 13px;
    width: 12px;
    height: 12px;
  }

  .campaign-area-pc {
    display: none;
  }

  .campaign-area-sp {
    display: inline;
  }

  .purchase-campaign-gift {
    margin-right: -18px;
    margin-bottom: -18px;
    margin-left: -18px;
    padding: 8px 12px 8px;
    font-size: 13px;
  }

  .purchase-campaign-tel-wrap {
    grid-template-columns: 1fr;
  }

  .purchase-campaign-tel-wrap > span {
    min-height: 48px;
    font-size: 16px;
    white-space: normal;
  }

  .purchase-campaign-tel {
    min-height: 64px;
    gap: 8px;
    font-size: 31px;
  }

  .purchase-campaign-tel img {
    width: 32px;
    height: 32px;
  }

  .concerns .section-inner {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .concerns-panel {
    padding: 28px 20px 30px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .concerns-panel h2 {
    margin-bottom: 20px;
    font-size: 23px;
    letter-spacing: .03em;
  }

  .concerns-list {
    grid-template-columns: 1fr;
    gap: 11px;
    max-width: 342px;
    margin: 0 auto;
  }

  .concerns-list li {
    padding-left: 31px;
    font-size: 15px;
    line-height: 1.55;
  }

  .concerns-list li::before {
    width: 20px;
    height: 20px;
  }

  .concerns-list li::after {
    top: calc(.32em + 4px);
    left: 7px;
  }

  .concerns-answer {
    margin-top: 24px;
    font-size: 20px;
    letter-spacing: .02em;
  }

  .section-inner {
    padding: 46px 24px;
    width: 100%;
    max-width: 100%;
  }

  .services .section-inner,
  .strengths .section-inner,
  .about .section-inner,
  .company .section-inner {
    padding-top: 46px;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    column-gap: 18px;
    min-height: auto;
    padding: 24px 0;
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-item:first-child {
    border-top: 0;
  }

  .service-icon {
    grid-row: 1 / span 3;
    width: 84px;
    height: 84px;
    transform: none;
    margin: 2px 0 0;
  }

  .service-item h3 {
    font-size: 20px;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  .service-item p {
    font-size: 14px;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }

  .service-more {
    text-align: right;
  }

  .service-item-footer {
    grid-column: 1 / -1;
    margin-top: 0;
    padding-top: 14px;
    text-align: center;
  }

  .service-detail-button {
    width: min(100%, 190px);
    min-height: 40px;
    font-size: 15px;
  }

  .strengths .section-inner {
    padding-bottom: 46px;
  }

  .products-link-wrap {
    max-width: 342px;
    margin: 0 0 22px;
  }

  .products-link-button {
    width: 100%;
    min-height: 52px;
    font-size: 18px;
  }

  .strengths-catch {
    max-width: 342px;
    margin-left: auto;
    margin-right: auto;
    font-size: 25px;
    letter-spacing: .02em;
  }

  .strengths-images {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 342px;
    margin: 0 auto 32px;
    padding: 8px 0;
  }

  .photo-print {
    padding: 10px 10px 22px;
    transform: rotate(-1.5deg);
  }

  .photo-print:nth-child(2),
  .photo-print:nth-child(3) {
    margin-top: 0;
  }

  .photo-print:nth-child(2) {
    transform: rotate(1.5deg);
  }

  .photo-print:nth-child(3) {
    transform: rotate(-1deg);
  }

  .photo-print figcaption {
    min-height: 0;
    margin-top: 12px;
    font-size: 15px;
  }

  .strengths-list {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 342px;
    margin: 0;
  }

  .strength-card {
    min-height: auto;
    padding: 22px 18px 20px;
  }

  .strength-card::before {
    top: 26px;
    left: 18px;
  }

  .strength-card::after {
    top: 33px;
    left: 25px;
  }

  .strength-card:nth-child(2)::after {
    top: 28px;
    left: 20px;
  }

  .strength-card:nth-child(5)::after {
    top: 30px;
    left: 22px;
  }

  .strength-card h3 {
    font-size: 18px;
  }

  .strength-card p {
    font-size: 14px;
    line-height: 1.85;
    overflow-wrap: anywhere;
  }

  .about .section-title {
    max-width: 342px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    letter-spacing: .03em;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .about p {
    max-width: 342px;
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
    line-height: 1.95;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .greeting-text {
    max-width: 342px;
    margin: 0;
  }

  .greeting-text p {
    max-width: none;
  }

  .greeting-catch {
    margin: 24px 0;
    padding: 0 0 5px;
    font-size: 20px;
    text-align: center;
  }

  .greeting-catch-en {
    font-size: 22px;
    letter-spacing: .05em;
  }

  .greeting-catch-main {
    font-size: 28px;
    letter-spacing: .03em;
  }

  .greeting-subtitle {
    font-size: 17px;
    letter-spacing: .02em;
  }

  .about .greeting-final-catch {
    max-width: 342px;
    margin-top: 28px;
    font-size: 20px;
    text-align: center;
    letter-spacing: .02em;
  }

  .about p br {
    display: inline;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 342px;
    margin: 0;
  }

  .company-table div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .contact-panel {
    margin-top: 0;
    padding: 34px 20px;
  }

  .panel-tel {
    font-size: 28px;
  }

  .footer-inner {
    height: auto;
    padding: 26px 24px;
  }

  .placeholder-page .section-inner {
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .placeholder-page p {
    font-size: 18px;
  }

  .products-hero .section-inner {
    padding-top: 46px;
    padding-bottom: 38px;
  }

  .products-lead {
    max-width: 342px;
    font-size: 15px;
    text-align: left;
  }

  .products-layout {
    grid-template-columns: 1fr;
    width: 100%;
    border-right: 0;
    border-left: 0;
  }

  .product-category {
    border-left: 0;
    border-top: 1px solid #bde6f2;
  }

  .product-category:first-child {
    border-top: 0;
  }

  .product-category-header {
    min-height: 86px;
    padding: 22px 24px 18px;
  }

  .product-category-header h2 {
    font-size: 26px;
  }

  .product-category-header p {
    font-size: 16px;
  }

  .product-list {
    display: block;
    max-width: 390px;
    margin: 0 auto;
    padding: 24px 24px 2px;
  }

  .product-item {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 22px;
  }

  .product-text {
    padding-top: 0;
  }

  .product-text h3 {
    margin-bottom: 7px;
    padding-left: 19px;
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .product-text h3::before {
    width: 11px;
    height: 11px;
  }

  .product-text p {
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .product-supports .section-inner {
    width: 100%;
    padding: 26px 24px 46px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 390px;
    margin: 0 auto;
  }

  .support-box {
    min-height: auto;
    padding: 20px 18px 19px 58px;
  }

  .support-box::before {
    top: 25px;
    left: 24px;
    width: 30px;
    height: 30px;
  }

  .support-box::after {
    top: 31px;
    left: 35px;
  }

  .support-box h2 {
    font-size: 19px;
  }

  .products-contact .section-inner {
    padding-top: 40px;
    padding-bottom: 44px;
  }

  .products-contact h2 {
    max-width: 342px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
  }

  .products-contact p {
    font-size: 15px;
  }

  .vehicles-hero-inner {
    width: 100%;
    min-height: auto;
    padding: 34px 24px 40px;
    grid-template-columns: 1fr;
    gap: 26px;
    overflow: hidden;
  }

  .vehicles-balloon {
    display: block;
    width: calc(100vw - 48px);
    max-width: 100%;
    min-height: 56px;
    padding: 12px 18px;
    font-size: 17px;
    letter-spacing: .03em;
    text-align: center;
    word-break: break-all;
  }

  .vehicles-hero h1 {
    margin-bottom: 18px;
    font-size: 32px;
    text-align: center;
    letter-spacing: .02em;
  }

  .vehicles-hero h1 span {
    font-size: 56px;
    letter-spacing: .04em;
  }

  .vehicles-service-label {
    width: calc(100vw - 48px);
    max-width: 100%;
    min-height: 52px;
    padding: 0 18px;
    font-size: 21px;
    background: #087b90;
  }

  .vehicles-service-label::after {
    display: none;
  }

  .vehicles-hero-visual {
    min-height: 0;
    display: flex;
  }

  .vehicles-hero-visual > img {
    width: 100%;
    max-width: 390px;
  }

  .vehicle-photo {
    position: static;
    width: 100%;
    height: 112px;
    font-size: 13px;
    border-radius: 30px;
  }

  .vehicle-photo-large {
    width: 100%;
    height: 128px;
  }

  .vehicle-photo-side {
    width: 100%;
    height: 112px;
  }

  .vehicle-photo-wide {
    width: 100%;
    height: 122px;
  }

  .vehicles-support-inner {
    width: 100%;
    padding: 30px 0 38px;
    grid-template-columns: 1fr;
    gap: 22px;
    overflow: hidden;
  }

  .vehicles-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: auto;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    justify-items: center;
  }

  .vehicles-feature-card {
    width: calc(100vw - 48px);
    max-width: 390px;
    min-height: auto;
    padding: 21px 18px 20px 64px;
  }

  .vehicles-feature-card::before {
    top: 22px;
    left: 18px;
    width: 34px;
    height: 34px;
  }

  .vehicles-feature-card::after {
    top: 29px;
    left: 25px;
    width: 20px;
    height: 20px;
  }

  .vehicles-feature-card:nth-child(4)::after {
    top: 26px;
    left: 22px;
    width: 26px;
    height: 26px;
  }

  .vehicles-feature-card h2 {
    font-size: 19px;
    overflow-wrap: anywhere;
  }

  .vehicles-feature-card p {
    font-size: 14px;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }

  .purchase-detail-inner {
    width: 100%;
    padding: 0 24px 38px;
  }

  .purchase-detail-panel {
    padding: 24px 18px 26px;
  }

  .purchase-detail-panel h2 {
    font-size: 24px;
  }

  .purchase-area-block,
  .purchase-vehicle-group {
    padding: 18px 16px;
  }

  .purchase-area-block h3,
  .purchase-vehicle-group h3 {
    font-size: 20px;
  }

  .purchase-area-block p,
  .purchase-detail-lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .purchase-area-note {
    padding: 12px 14px;
    font-size: 15px;
  }

  .purchase-chip-list {
    gap: 7px;
  }

  .purchase-chip-list li {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .vehicles-rental {
    max-width: none;
    margin: 0 auto;
    width: calc(100vw - 48px);
    padding: 0;
  }

  .rental-table-wrap h2 {
    min-height: 42px;
    font-size: 19px;
  }

  .rental-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rental-table {
    min-width: 560px;
    font-size: 14px;
  }

  .rental-table th,
  .rental-table td {
    padding: 12px 8px;
  }

  .rental-message {
    gap: 10px;
    padding: 20px 16px;
  }

  .rental-icon {
    width: 190px;
  }

  .rental-message h2 {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .rental-message p {
    font-size: 13px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .rental-message small {
    text-align: left;
  }

  .vehicles-lineup-inner {
    width: 100%;
    padding: 40px 24px 62px;
  }

  .vehicles-lineup h2 {
    width: 100%;
    min-height: 52px;
    margin-bottom: 22px;
    padding: 10px 28px 12px;
    font-size: 21px;
    letter-spacing: .03em;
  }

  .vehicles-lineup-list {
    gap: 16px;
  }

  .vehicles-lineup-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 24px 18px 22px;
    border-radius: 10px;
  }

  .vehicles-lineup-copy h3 {
    font-size: 22px;
  }

  .vehicles-lineup-capacity {
    font-size: 15px;
  }

  .vehicles-lineup-copy p {
    font-size: 14px;
    line-height: 1.75;
  }

  .vehicles-lineup-visual {
    min-height: 170px;
  }

  .vehicles-lineup-visual img {
    width: 100%;
    min-height: 140px;
  }

  .vehicles-lineup-icon {
    min-width: 128px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .vehicles-contact-inner {
    min-height: auto;
    padding: 18px 24px 20px;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px 14px;
  }

  .vehicles-contact-badge {
    grid-row: 1 / span 2;
    min-height: 78px;
    font-size: 16px;
  }

  .vehicles-phone {
    grid-column: 2;
    font-size: 28px;
  }

  .vehicles-phone img {
    width: 34px;
    height: 34px;
  }

  .vehicles-phone small {
    font-size: 12px;
  }

  .vehicles-hours {
    grid-column: 2;
    margin: -2px 0 0;
    font-size: 12px;
  }

  .vehicles-brand-panel {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
    padding: 14px 16px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vehicles-tagline {
    font-size: 17px;
    letter-spacing: .05em;
  }

  .vehicles-brand {
    min-height: 66px;
  }

  .vehicles-brand img {
    width: 210px;
  }

  .maintenance-hero .section-inner {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .maintenance-main-title {
    margin-bottom: 22px;
    padding: 12px 18px 14px;
  }

  .maintenance-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .maintenance-label {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    margin-bottom: 18px;
    padding: 0 16px;
    font-size: 17px;
    text-align: center;
  }

  .maintenance-response-list {
    gap: 0;
    margin-bottom: 18px;
    padding: 0 9px;
  }

  .maintenance-response-list p {
    min-height: 82px;
    font-size: 52px;
  }

  .maintenance-response-list p span {
    padding-bottom: 7px;
    border-bottom-width: 3px;
  }

  .maintenance-alert {
    padding: 14px 16px 16px;
    font-size: 21px;
  }

  .maintenance-visual-main {
    width: 112%;
    margin: 0 -6% -30px;
    max-height: none;
  }

  .maintenance-visual-main-wrap {
    overflow: visible;
    padding-right: 116px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .maintenance-visual-staff {
    bottom: 14px;
    width: 86px;
  }

  .maintenance-visual-sub {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    margin-top: -8px;
  }

  .maintenance-visual-sub-staff {
    max-height: 112px;
  }

  .maintenance-visual-sub-car {
    max-height: 138px;
  }

  .maintenance-trouble .section-inner,
  .maintenance-support .section-inner,
  .maintenance-contact .section-inner {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .maintenance-support .section-inner {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .maintenance-support {
    margin-bottom: 52px;
  }

  .maintenance-trouble-list {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 390px;
    margin: 0 auto;
  }

  .maintenance-trouble-list div {
    min-height: 58px;
    padding: 10px 16px;
    font-size: 19px;
  }

  .maintenance-trouble-phone {
    width: min(100%, 390px);
    margin-top: 28px;
  }

  .maintenance-trouble-phone p {
    font-size: 18px;
  }

  .maintenance-trouble-phone h3 {
    font-size: 30px;
  }

  .maintenance-support-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px 18px 20px;
    clip-path: none;
  }

  .maintenance-support-list {
    gap: 14px;
  }

  .maintenance-support-list p {
    padding-left: 42px;
    font-size: 24px;
  }

  .maintenance-support-list p::before {
    width: 28px;
    height: 28px;
  }

  .maintenance-support-list p::after {
    top: calc(.05em + 5px);
    left: 9px;
    width: 8px;
    height: 14px;
    border-width: 0 4px 4px 0;
  }

  .maintenance-support-banner > img {
    width: min(100%, 260px);
    max-height: 118px;
    justify-self: center;
  }

  .maintenance-check .section-inner {
    padding-top: 0;
    padding-bottom: 46px;
  }

  .maintenance-check h2 {
    margin-bottom: 32px;
    padding: 24px 18px 26px;
    font-size: 21px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .maintenance-check-list {
    gap: 18px;
    max-width: 390px;
  }

  .maintenance-check-row,
  .maintenance-check-row.reverse {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .maintenance-check-row.reverse p,
  .maintenance-check-row.reverse .maintenance-check-icon {
    grid-column: auto;
    grid-row: auto;
  }

  .maintenance-check-row p {
    min-height: auto;
    padding: 16px 18px;
    font-size: 19px;
    text-align: center;
    justify-content: center;
  }

  .maintenance-check-row p::after,
  .maintenance-check-row.reverse p::after {
    display: none;
  }

  .maintenance-check-icon {
    width: 150px;
    min-height: 82px;
    margin: 0 auto;
  }

  .maintenance-check-icon img {
    max-height: 104px;
  }

  .maintenance-check-message {
    margin-top: 44px;
  }

  .maintenance-check-message p {
    font-size: 28px;
  }

  .maintenance-check-message p + p {
    margin-top: 28px;
    font-size: 24px;
  }

  .maintenance-contact-lead {
    font-size: 18px;
  }

  .maintenance-contact h2 {
    font-size: 30px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    position: relative;
    gap: 10px;
  }

  .hero-inner {
    min-height: 535px;
    padding: 32px 20px 185px;
  }

  .hero-photo {
    top: 252px;
    right: 0;
    transform: none;
    transform-origin: right bottom;
  }

  .section-title {
    font-size: 23px;
  }

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

  .company-table dt {
    padding-bottom: 6px;
  }

  .company-table dd {
    padding-left: 10px;
  }

  .product-list {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-item {
    grid-template-columns: 1fr;
  }

  .product-item img {
    aspect-ratio: 1.45 / 1;
  }

  .vehicles-hero-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .vehicles-balloon {
    font-size: 15px;
  }

  .vehicles-hero h1 {
    font-size: 28px;
  }

  .vehicles-hero h1 span {
    font-size: 46px;
  }

  .vehicles-service-label {
    font-size: 18px;
  }

  .maintenance-response-list p {
    min-height: 72px;
    font-size: 44px;
  }

  .vehicles-support-inner {
    padding-right: 0;
    padding-left: 0;
  }

  .vehicles-feature-grid,
  .vehicles-rental {
    padding-right: 0;
    padding-left: 0;
  }

  .vehicles-balloon,
  .vehicles-service-label,
  .vehicles-feature-card,
  .vehicles-rental {
    width: calc(100vw - 40px);
  }

  .rental-message {
    text-align: left;
  }

  .rental-icon {
    margin-right: auto;
    margin-left: auto;
  }

  .vehicles-contact-inner {
    grid-template-columns: 1fr;
  }

  .vehicles-contact-badge,
  .vehicles-phone,
  .vehicles-hours,
  .vehicles-brand-panel,
  .vehicles-tagline,
  .vehicles-brand {
    grid-column: 1;
    grid-row: auto;
  }

  .vehicles-contact-badge {
    min-height: 54px;
  }

  .vehicles-phone {
    justify-content: center;
    font-size: 27px;
  }

  .vehicles-hours {
    text-align: center;
  }

}

@media (max-width: 520px) {
  .header-inner {
    position: relative;
  }

}
