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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  background: #050505;
  color: #f5f5f5;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* loading */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #050505;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading__text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.1em;
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.logo__img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  flex: 0 0 auto;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__main {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
}

.logo__sub {
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: #b8b8b8;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ededed;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #c8a96b;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav__guide {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(200, 169, 107, 0.14);
  border: 1px solid rgba(200, 169, 107, 0.45);
  color: #f3e0b8 !important;
}

.nav__area {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(200, 169, 107, 0.14);
  border: 1px solid rgba(200, 169, 107, 0.45);
  color: #f3e0b8 !important;
}

.nav__guide::after {
  display: none;
}

.nav__area::after {
  display: none;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 24px;
  border-radius: 14px;
  background: #c8a96b;
  color: #111111;
  box-shadow: 0 6px 24px rgba(200, 169, 107, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.header-tel__label {
  font-size: 0.74rem;
  font-weight: 700;
}

.header-tel__number {
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #ffffff;
  transition: 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: url("hero-car-seo.png") center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 6s ease;
  z-index: 0;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("hero-car-seo.png") 56% center / cover no-repeat;
  clip-path: inset(0 0 40% 0);
  opacity: 0.22;
  filter: blur(0.8px) saturate(0.95) contrast(1.02);
  transform: scale(1.08);
  will-change: background-position, transform;
  animation:
    heroBgDrift 20s linear infinite,
    heroBgBob 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(34vh, 300px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0) 70%);
  opacity: 0.55;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero.inview .hero__bg {
  transform: scale(1.1);
}

.hero__inner {
  position: relative;
  z-index: 3;
  padding: 140px 0 104px;
}

@keyframes heroBgDrift {
  0% {
    background-position: 56% center;
  }
  100% {
    background-position: 48% center;
  }
}

@keyframes heroBgBob {
  0%,
  100% {
    transform: translateY(0) scale(1.08);
  }
  50% {
    transform: translateY(-3px) scale(1.08);
  }
}

@keyframes roadMove {
  0% {
    background-position: 0 0, 0 100%;
  }
  100% {
    background-position: 0 0, -360px 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg::before,
  .hero::after {
    animation: none;
  }
}
.hero__lead {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(200, 169, 107, 0.45);
  border-radius: 999px;
  color: #c8a96b;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero__title {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.22;
  font-weight: 800;
  color: #ffffff;
}

.hero__text {
  max-width: 620px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-info {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-info__item {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.hero-info__label {
  display: block;
  margin-bottom: 8px;
  color: #c8a96b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-info__value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

/* common */
.section {
  padding: 92px 0;
}

.section--dark {
  background: #080808;
}

.section-heading {
  text-align: center;
  margin-bottom: 46px;
}

.section-heading__sub {
  margin-bottom: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #c8a96b;
}

.section-heading__title {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.4;
  color: #ffffff;
}

/* notice */
.notice {
  padding: 16px 0;
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.notice p {
  margin-bottom: 0;
  text-align: center;
  color: #e8e8e8;
  font-weight: 700;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

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

.btn--gold {
  background: linear-gradient(180deg, #d4b57a 0%, #c8a96b 45%, #b89655 100%);
  color: #111111;
  box-shadow: 0 6px 22px rgba(200, 169, 107, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__actions .btn--gold {
  min-width: 240px;
  padding: 17px 32px;
  font-size: 1.06rem;
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn--large {
  min-width: 320px;
  padding: 20px 38px;
  font-size: 1.12rem;
}

/* cards */
.card-grid,
.flow-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

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

.card,
.flow-card,
.contact-card {
  padding: 30px 24px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card__num,
.flow-card__step {
  display: inline-block;
  margin-bottom: 16px;
  color: #c8a96b;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.card h3,
.flow-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: #ffffff;
}

.card p,
.flow-card p {
  margin-bottom: 0;
  color: #cfcfcf;
}

.flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* guide */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  padding: 30px 24px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: #ffffff;
}

.guide-steps,
.guide-list {
  margin: 0;
  padding-left: 1.25em;
  color: #cfcfcf;
}

.guide-steps li,
.guide-list li {
  margin: 0 0 10px;
}

.guide-steps li:last-child,
.guide-list li:last-child {
  margin-bottom: 0;
}

.guide-note {
  margin: 0;
  color: #cfcfcf;
}

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

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

.contact-card__label {
  margin-bottom: 12px;
  color: #b9b9b9;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-card__value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #c8a96b;
}

.contact-card__value-text {
  margin-bottom: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
}

/* price */
.price-table {
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f0f0f;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span:last-child {
  font-weight: 800;
  color: #c8a96b;
}

.price-note {
  margin-top: 18px;
  margin-bottom: 0;
  text-align: center;
  color: #bfbfbf;
}

/* recruit */
.recruit-lead {
  max-width: 780px;
  margin: 0 auto 18px;
  text-align: center;
  color: #d7d7d7;
  font-weight: 700;
}

.recruit-table {
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f0f0f;
}

.recruit-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.recruit-row:last-child {
  border-bottom: none;
}

.recruit-row__label {
  color: #e8e8e8;
  font-weight: 700;
}

.recruit-row__value {
  font-weight: 800;
  color: #c8a96b;
}

.recruit-cta {
  max-width: 780px;
  margin: 22px auto 0;
  text-align: center;
}

.recruit-cta__text {
  margin: 0 0 14px;
  color: #bfbfbf;
  font-weight: 700;
}

/* faq */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0d;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 22px 54px 22px 20px;
  cursor: pointer;
  font-weight: 700;
  color: #ffffff;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #c8a96b;
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item__content p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px 0;
  color: #d0d0d0;
}

.faq-item[open] .faq-item__content {
  grid-template-rows: 1fr;
}

.faq-item[open] .faq-item__content p {
  padding: 0 20px 20px;
}

.faq-item__content a {
  color: #f3e0b8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* cta */
.cta {
  padding: 100px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.76)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.cta__inner {
  text-align: center;
}

.cta__sub {
  margin-bottom: 10px;
  color: #c8a96b;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
}

.cta__title {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
}

.cta__text {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #d7d7d7;
}

/* footer */
.footer {
  padding: 42px 0 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.footer__inner {
  text-align: center;
}

.footer__name {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.footer__text {
  margin-bottom: 6px;
  color: #bdbdbd;
}

.footer__copy {
  display: inline-block;
  margin-top: 12px;
  color: #8f8f8f;
}

/* fixed call */
.fixed-call {
  display: none;
}

/* animation */
.fade {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(200, 169, 107, 0);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 24px rgba(200, 169, 107, 0.28);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(200, 169, 107, 0);
  }
}

.pulse {
  animation: pulseButton 2.2s ease-in-out infinite;
}

/* responsive */
@media (max-width: 1024px) {
  .header__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .card-grid,
  .contact-grid,
  .hero-info {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, 1100px);
  }

  .header {
    position: sticky;
  }

  .header__inner {
    min-height: auto;
    gap: 14px;
    padding: 14px 0;
    align-items: center;
  }

  .logo {
    width: auto;
  }

  .logo__img {
    width: 34px;
    height: 34px;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .header-tel {
    display: none;
  }

  .nav {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 5, 5, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
  }

  .nav__guide {
    border-radius: 0;
    background: transparent;
    border: none;
    color: #ededed !important;
  }

  .nav__area {
    border-radius: 0;
    background: transparent;
    border: none;
    color: #ededed !important;
  }

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

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 104px 0 72px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn--large {
    width: 100%;
    min-width: 0;
  }

  .card-grid,
  .flow-grid,
  .guide-grid,
  .contact-grid,
  .hero-info {
    grid-template-columns: 1fr;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .recruit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section {
    padding: 68px 0;
  }

  .footer {
    padding-bottom: 100px;
  }

  .fixed-call {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1200;
  }

  .fixed-call a {
    display: block;
    padding: 18px 20px;
    text-align: center;
    border-radius: 999px;
    background: linear-gradient(180deg, #d4b57a 0%, #c8a96b 45%, #b89655 100%);
    color: #111111;
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow:
      0 8px 28px rgba(200, 169, 107, 0.45),
      0 12px 36px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* guide */
.guide {
  background: #050505;
}

.guide__lead {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
  color: #d7d7d7;
}

.guide-block {
  max-width: 900px;
  margin: 0 auto 28px;
  padding: 32px 28px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-block__title {
  margin-bottom: 22px;
  font-size: 1.35rem;
  color: #ffffff;
  text-align: center;
}

.guide-block__text {
  margin-bottom: 0;
  color: #d0d0d0;
  text-align: center;
}

.guide-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.guide-step__number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #c8a96b;
  color: #111111;
  font-weight: 800;
  font-size: 0.9rem;
}

.guide-step__body h4 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.05rem;
}

.guide-step__body p {
  margin-bottom: 0;
  color: #cfcfcf;
}

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

.guide-info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px 20px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.guide-info-row__label {
  color: #c8a96b;
  font-weight: 800;
}

.guide-info-row__value {
  color: #ffffff;
  font-weight: 700;
}

/* area */
.area {
  background: #050505;
}

.area-block {
  max-width: 920px;
  margin: 0 auto 28px;
  padding: 32px 28px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.area-block__title {
  margin-bottom: 18px;
  font-size: 1.35rem;
  color: #ffffff;
  text-align: center;
}

.area-block__lead {
  max-width: 760px;
  margin: 0 auto 26px;
  color: #d0d0d0;
  text-align: center;
}

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

.area-list li {
  padding: 16px 18px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-weight: 700;
}

.area-list li::before {
  content: "•";
  margin-right: 10px;
  color: #c8a96b;
}

.area-block__note {
  margin: 26px 0 0;
  color: #d0d0d0;
  text-align: center;
}

.area-cta {
  margin-top: 24px;
  text-align: center;
}

.area-fee-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.area-fee-card {
  padding: 28px 24px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.area-fee-card__title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
}

.area-fee-card__text {
  margin-bottom: 0;
  color: #d0d0d0;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 768px) {
  .guide-block {
    padding: 26px 18px;
  }

  .guide-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guide-info-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .guide-block__title {
    font-size: 1.18rem;
  }

  .area-block {
    padding: 26px 18px;
  }

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

  .area-fee-grid {
    grid-template-columns: 1fr;
  }

  .area-block__title,
  .area-fee-card__title {
    font-size: 1.18rem;
  }
}

.nav__price {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(200, 169, 107, 0.14);
  border: 1px solid rgba(200, 169, 107, 0.45);
  color: #f3e0b8 !important;
}

.nav__price::after {
  display: none;
}

.fare {
  background: #080808;
}

.fare-block {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 28px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fare-block__title {
  margin-bottom: 18px;
  font-size: 1.35rem;
  color: #ffffff;
  text-align: center;
}

.fare-block__lead {
  max-width: 780px;
  margin: 0 auto 28px;
  color: #d0d0d0;
  text-align: center;
}

.fare-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: #111111;
}

.fare-table caption {
  padding: 16px;
  color: #c8a96b;
  font-weight: 800;
  text-align: left;
  background: #0d0d0d;
}

.fare-table th,
.fare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  color: #ffffff;
}

.fare-table thead th {
  color: #111111;
  background: #c8a96b;
  font-weight: 800;
}

.fare-table tbody th {
  color: #ffffff;
  font-weight: 800;
}

.fare-table tbody td:nth-child(2) {
  color: #f3e0b8;
  font-weight: 800;
  white-space: nowrap;
}

.fare-table tbody td:nth-child(3) {
  color: #d0d0d0;
  font-size: 0.95rem;
}

.fare-table tbody tr:last-child th,
.fare-table tbody tr:last-child td {
  border-bottom: none;
}

.fare-block__note {
  margin: 22px 0 0;
  color: #cfcfcf;
  text-align: center;
  font-size: 0.95rem;
}

.fare-cta {
  margin-top: 26px;
  text-align: center;
}

@media (max-width: 768px) {
  .nav__price {
    border-radius: 0;
    background: transparent;
    border: none;
    color: #ededed !important;
  }

  .fare-block {
    padding: 26px 18px;
  }

  .fare-block__title {
    font-size: 1.18rem;
  }

  .fare-table {
    min-width: 560px;
  }

  .fare-table th,
  .fare-table td {
    padding: 14px 12px;
    font-size: 0.92rem;
  }

  .fare-table caption {
    font-size: 0.95rem;
  }
}

.nav__recruit {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(200, 169, 107, 0.14);
  border: 1px solid rgba(200, 169, 107, 0.45);
  color: #f3e0b8 !important;
}

.nav__recruit::after {
  display: none;
}

.recruit {
  background: #050505;
}

.recruit-block {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 30px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.08), rgba(255, 255, 255, 0.02)),
    #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.recruit-block__content {
  max-width: 820px;
  margin: 0 auto;
}

.recruit-block__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #c8a96b;
  background: rgba(200, 169, 107, 0.12);
  border: 1px solid rgba(200, 169, 107, 0.35);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.recruit-block__title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.35;
}

.recruit-block__lead {
  margin-bottom: 24px;
  color: #d0d0d0;
}

.recruit-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding: 20px 22px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.recruit-phone__label {
  color: #ffffff;
  font-weight: 800;
}

.recruit-phone__number {
  color: #c8a96b;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

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

.recruit-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px 20px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.recruit-row__label {
  color: #c8a96b;
  font-weight: 800;
}

.recruit-row__value {
  color: #ffffff;
  font-weight: 700;
}

.recruit-block__note {
  margin: 24px 0 0;
  color: #d0d0d0;
}

.recruit-cta {
  margin-top: 26px;
  text-align: center;
}

@media (max-width: 768px) {
  .nav__recruit {
    border-radius: 0;
    background: transparent;
    border: none;
    color: #ededed !important;
  }

  .recruit-block {
    padding: 28px 18px;
  }

  .recruit-phone {
    flex-direction: column;
    align-items: flex-start;
  }

  .recruit-phone__number {
    font-size: 1.15rem;
  }

  .recruit-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.header__inner {
  position: relative;
}

.menu-btn {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(200, 169, 107, 0.45);
  border-radius: 12px;
  background: rgba(200, 169, 107, 0.12);
  cursor: pointer;
  z-index: 1201;
}

.menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 4px 0;
  background: #f3e0b8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.header-tel {
  display: none !important;
}

.nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(340px, calc(100vw - 32px));
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(5, 5, 5, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1200;
}

.nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav a {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
}

.nav a::after {
  display: none !important;
}

.nav a:hover {
  color: #f3e0b8 !important;
  border-color: rgba(200, 169, 107, 0.45);
  background: rgba(200, 169, 107, 0.12);
}

.nav__tel {
  background: #c8a96b !important;
  color: #111111 !important;
  text-align: center !important;
  font-weight: 900 !important;
}

.nav__tel:hover {
  background: #d8ba78 !important;
  color: #111111 !important;
}

body.menu-open {
  overflow: auto;
}

@media (max-width: 768px) {
  .header__inner {
    align-items: center;
  }

  .menu-btn {
    width: 46px;
    height: 46px;
  }

  .nav {
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 24px));
  }

  .nav a {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
}

.fare-accordion-wrap {
  margin-top: 26px;
}

.fare-accordion {
  border: none;
}

.fare-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 100%);
  margin: 0 auto 22px;
  padding: 15px 26px;
  border-radius: 999px;
  background: #c8a96b;
  color: #111111;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fare-accordion__summary:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.fare-accordion__summary::-webkit-details-marker {
  display: none;
}

.fare-accordion__label--close {
  display: none;
}

.fare-accordion[open] .fare-accordion__label--open {
  display: none;
}

.fare-accordion[open] .fare-accordion__label--close {
  display: inline;
}

.fare-accordion__content {
  overflow: hidden;
  animation: fareAccordionOpen 0.35s ease;
}

@keyframes fareAccordionOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .fare-accordion__summary {
    width: 100%;
    padding: 15px 20px;
  }
}

.seo-intro {
  padding: 56px 0;
  background: #050505;
}

.seo-intro__title {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.4;
  text-align: center;
}

.seo-intro__text {
  max-width: 820px;
  margin: 0 auto;
  color: #d0d0d0;
  text-align: center;
}

@media (max-width: 768px) {
  .seo-intro {
    padding: 42px 0;
  }

  .seo-intro__title {
    font-size: 1.6rem;
  }

  .seo-intro__text {
    text-align: left;
  }
}

.hero {
  position: relative;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: #050505;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url("hero-car-seo.png") center / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: brightness(0.82) contrast(1.05);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero__video.is-loaded {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.68));
  pointer-events: none;
}

.hero__content {
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: min(900px, calc(100% - 32px));
  text-align: center;
  pointer-events: none;
}

.hero__seo-title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.25;
  font-weight: 900;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.8);
}

.hero__seo-text {
  max-width: 780px;
  margin: 0 auto 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.75);
}

.hero__seo-notice {
  display: inline-block;
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: #f3e0b8;
  background: rgba(5, 5, 5, 0.55);
  border: 1px solid rgba(200, 169, 107, 0.45);
  font-weight: 800;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .hero {
    min-height: 72vh;
  }

  .hero__content {
    top: 44%;
    width: min(100% - 24px, 900px);
  }

  .hero__seo-title {
    margin-bottom: 14px;
    font-size: 1.9rem;
  }

  .hero__seo-text {
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .hero__seo-notice {
    border-radius: 16px;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .hero__video {
    object-position: center;
    transform: scale(1.04);
  }
}

.notice__phone-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: #e8e8e8;
  font: inherit;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.notice__phone-trigger:hover {
  color: #f3e0b8;
}

.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.phone-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.phone-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.phone-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 34px 28px;
  background:
    linear-gradient(135deg, rgba(200, 169, 107, 0.08), rgba(255, 255, 255, 0.02)),
    #0d0d0d;
  border: 1px solid rgba(200, 169, 107, 0.35);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.phone-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.phone-modal__sub {
  margin-bottom: 8px;
  color: #c8a96b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
}

.phone-modal__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.35;
  text-align: center;
}

.phone-modal__text {
  margin: 0 auto 24px;
  color: #d0d0d0;
  text-align: center;
}

.phone-modal__list {
  display: grid;
  gap: 14px;
}

.phone-modal__call {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 16px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #ffffff;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.phone-modal__call:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 169, 107, 0.45);
  background: rgba(200, 169, 107, 0.1);
}

.phone-modal__call--main {
  background: #c8a96b;
  color: #111111;
  border-color: #c8a96b;
}

.phone-modal__call--main:hover {
  background: #d8ba78;
  color: #111111;
}

.phone-modal__badge {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.phone-modal__number {
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.phone-modal__desc {
  font-size: 0.9rem;
  font-weight: 700;
}

body.phone-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .phone-modal {
    padding: 16px;
  }

  .phone-modal__dialog {
    padding: 30px 18px 22px;
  }

  .phone-modal__call {
    padding: 18px 14px;
  }
}

.footer__address {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  color: #bdbdbd;
  font-style: normal;
}

.footer__address a {
  color: #f3e0b8;
  font-weight: 700;
}

.footer__address a:hover {
  color: #c8a96b;
}

@media (max-width: 768px) {
  .footer__address {
    font-size: 0.95rem;
  }
}

.nav__payment {
  padding: 9px 16px;
  border-radius: 12px;
  background: rgba(200, 169, 107, 0.14);
  border: 1px solid rgba(200, 169, 107, 0.45);
  color: #f3e0b8 !important;
}

.nav__payment::after {
  display: none !important;
}

.payment {
  background: #050505;
}

.payment-block {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 30px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-block__title {
  margin-bottom: 18px;
  font-size: 1.35rem;
  color: #ffffff;
  text-align: center;
}

.payment-block__lead {
  max-width: 780px;
  margin: 0 auto 28px;
  color: #d0d0d0;
  text-align: center;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.payment-card {
  padding: 26px 22px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-card__label {
  display: inline-block;
  margin-bottom: 12px;
  color: #c8a96b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.payment-card__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.15rem;
}

.payment-card__text {
  margin-bottom: 0;
  color: #d0d0d0;
}

.payment-block__note {
  margin: 24px 0 0;
  color: #cfcfcf;
  text-align: center;
  font-size: 0.95rem;
}

.payment-cta {
  margin-top: 26px;
  text-align: center;
}

.guide-block__text a {
  color: #f3e0b8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 768px) {
  .nav__payment {
    border-radius: 0;
    background: transparent;
    border: none;
    color: #ededed !important;
  }

  .payment-block {
    padding: 28px 18px;
  }

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

  .payment-block__title {
    font-size: 1.18rem;
  }
}

.contact-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(200, 169, 107, 0.14);
  border: 1px solid rgba(200, 169, 107, 0.45);
  color: #f3e0b8;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.contact-card__button:hover {
  transform: translateY(-2px);
  background: rgba(200, 169, 107, 0.22);
  border-color: rgba(200, 169, 107, 0.7);
}

#business-hours {
  scroll-margin-top: 100px;
}

.anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  .contact-card__button {
    width: 100%;
  }

  #business-hours,
  .anchor-target {
    scroll-margin-top: 90px;
  }
}