:root {
  --ink: #121416;
  --ink-2: #1b242c;
  --night: #071019;
  --paper: #f4f0e8;
  --paper-2: #ebe4d8;
  --white: #fffaf0;
  --muted: #7d766c;
  --line: rgba(28, 30, 30, .14);
  --line-light: rgba(255, 250, 240, .22);
  --accent: #9e352b;
  --gold: #b79b63;
  --shadow: 0 28px 80px rgba(7, 16, 25, .22);
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans JP", "Noto Sans SC", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(18,20,22,.035) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(180deg, var(--paper), #f8f5ed 44%, var(--paper-2));
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 18px; top: 18px; z-index: 20; background: var(--white); padding: 8px 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7,16,25,.72), rgba(7,16,25,.2));
  border-bottom: 1px solid rgba(255,250,240,.16);
  transition: background .28s ease, color .28s ease, border-color .28s ease;
}
.site-header.scrolled {
  background: rgba(244, 240, 232, .94);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Noto Serif JP", "Noto Serif SC", serif;
  font-weight: 700;
}
.brand img {
  width: 44px;
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.28));
}
.brand span { white-space: nowrap; }
.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 13px;
}
.site-nav a,
.language-switcher a {
  position: relative;
  color: currentColor;
  opacity: .76;
  text-decoration: none;
}
.site-nav a.active,
.site-nav a:hover,
.language-switcher a.active { opacity: 1; }
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: currentColor;
}
.language-switcher {
  display: flex;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0;
}
.menu-button {
  display: none;
  width: 48px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}
.menu-button span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(120px, 14vw, 190px) clamp(20px, 6vw, 92px) clamp(38px, 7vw, 84px);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 18%, rgba(183,155,99,.22), transparent 28%),
    linear-gradient(90deg, rgba(7,16,25,.92), rgba(7,16,25,.58) 44%, rgba(7,16,25,.2)),
    linear-gradient(0deg, rgba(7,16,25,.82), transparent 34%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.hero-copy {
  width: min(920px, 100%);
  padding-bottom: clamp(70px, 8vw, 120px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1,
.page-hero h1,
.section h2,
.intro-band h2,
.cinema-copy h2,
.service-atlas h2 {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif SC", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}
.hero h1 {
  max-width: 850px;
  font-size: clamp(50px, 9vw, 124px);
}
.hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255,250,240,.82);
  font-size: clamp(16px, 1.7vw, 21px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.hero .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--night);
}
.button.ghost {
  background: transparent;
  color: currentColor;
}
.reservation-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 62px);
  width: min(560px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-light);
  background: rgba(7, 16, 25, .54);
  backdrop-filter: blur(18px);
}
.reservation-panel div {
  min-height: 118px;
  padding: 18px;
  border-left: 1px solid var(--line-light);
}
.reservation-panel div:first-child { border-left: 0; }
.reservation-panel span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}
.reservation-panel strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(16px, 1.6vw, 22px);
}
.reservation-panel small {
  display: block;
  color: rgba(255,250,240,.68);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 620px);
  justify-content: space-between;
  gap: 42px;
  max-width: 1360px;
  margin: auto;
  padding: clamp(58px, 8vw, 120px) clamp(20px, 6vw, 92px);
}
.intro-band h2,
.section h2,
.cinema-copy h2 { font-size: clamp(34px, 5vw, 76px); }
.intro-band p {
  margin: 0;
  align-self: end;
  color: var(--muted);
}

.service-atlas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.service-atlas article {
  min-height: 480px;
  display: grid;
  align-content: space-between;
  padding: clamp(26px, 4vw, 52px);
  border-left: 1px solid var(--line);
  background: rgba(255,250,240,.58);
  transition: background .22s ease, transform .22s ease;
}
.service-atlas article:first-child { border-left: 0; }
.service-atlas article:hover {
  background: var(--night);
  color: var(--white);
}
.service-atlas span {
  color: var(--accent);
  font-weight: 900;
}
.service-atlas h2 {
  margin-top: 80px;
  font-size: clamp(28px, 3.4vw, 54px);
}
.service-atlas p {
  color: var(--muted);
}
.service-atlas article:hover p { color: rgba(255,250,240,.76); }
.service-atlas a {
  color: currentColor;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.cinema-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  min-height: 720px;
  background: var(--night);
  color: var(--white);
}
.cinema-section img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.cinema-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 84px);
  min-width: 0;
  overflow-wrap: anywhere;
}
.cinema-copy p:not(.eyebrow) {
  color: rgba(255,250,240,.72);
  max-width: 520px;
}

.section,
.page-hero,
.faq-list,
.contact-form-section,
.article-page,
.price-showcase {
  max-width: 1360px;
  margin: auto;
  padding: clamp(58px, 8vw, 120px) clamp(20px, 6vw, 92px);
}
.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-head p { color: var(--muted); }
.price-showcase {
  max-width: none;
  background: linear-gradient(180deg, #f8f4ea, #e9e0d1);
}
.price-table {
  border-top: 1px solid var(--line);
}
.price-row {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) minmax(160px, .8fr) minmax(180px, .9fr) minmax(130px, auto);
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.price-row strong {
  display: block;
  font-family: "Noto Serif JP", "Noto Serif SC", serif;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.2;
}
.price-row span,
.price-row small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.price {
  color: var(--accent);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  text-align: right;
}
.destination-strip {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  gap: 1px;
  background: var(--night);
}
.destination-strip img {
  width: 100%;
  height: clamp(300px, 34vw, 560px);
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
}

.service-grid,
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card,
.vehicle-grid article {
  min-height: 250px;
  padding: 30px;
  background: rgba(255,250,240,.78);
}
.service-card h3 {
  font-family: "Noto Serif JP", "Noto Serif SC", serif;
  line-height: 1.24;
}
.service-card a {
  color: var(--accent);
  font-weight: 800;
}

.page-hero {
  max-width: none;
  min-height: 460px;
  display: grid;
  align-content: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,16,25,.92), rgba(7,16,25,.58)),
    url("/assets/media/uploads-image-20260318-2026031811573664.webp") center / cover;
  padding-top: 150px;
}
.page-hero h1 {
  max-width: 880px;
  font-size: clamp(42px, 7vw, 94px);
}
.page-hero p {
  max-width: 720px;
  color: rgba(255,250,240,.76);
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: 1360px;
  margin: auto;
  padding: clamp(58px, 8vw, 120px) clamp(20px, 6vw, 92px);
}
.split-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.check-list {
  padding-left: 18px;
  color: var(--muted);
}
.company-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.company-list div {
  padding: 20px;
  background: rgba(255,250,240,.84);
}
.company-list dt { font-weight: 800; }
.company-list dd {
  margin: 4px 0 0;
  color: var(--muted);
}
.vehicle-grid article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 20px;
}

.location-map {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  min-height: 520px;
  background: var(--night);
  color: var(--white);
  border-top: 1px solid var(--line-light);
}
.location-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 84px);
}
.location-copy h2 {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif SC", serif;
  font-size: clamp(32px, 4.5vw, 66px);
  line-height: 1.06;
}
.location-copy p:not(.eyebrow) {
  color: rgba(255,250,240,.75);
}
.map-frame {
  min-height: 520px;
  background: #d6d1c7;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(.18) contrast(.94) saturate(.8);
}

.contact-form-section {
  max-width: 1160px;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 46px);
  background: rgba(255,250,240,.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(18,20,22,.3);
  background: transparent;
  padding: 12px 0;
  color: var(--ink);
  font: inherit;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form small { color: var(--accent); }
.check { display: flex !important; align-items: center; gap: 12px; }
.check input { width: auto; }
.hp { position: absolute; left: -100vw; }
.notice {
  padding: 14px 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.success { background: #edf7ef; }
.error { background: #fff0ed; }

.legal-list article,
.faq-list details,
.article-page {
  border-top: 1px solid var(--line);
}
.faq-list details {
  padding: 24px 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}
.article-body { max-width: 820px; }
.source {
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 78px) clamp(20px, 6vw, 92px);
  background: var(--night);
  color: var(--white);
}
.contact-cta h2 {
  margin: 0;
  font-family: "Noto Serif JP", "Noto Serif SC", serif;
  font-size: clamp(30px, 4vw, 62px);
  line-height: 1.08;
}
.contact-cta p { color: rgba(255,250,240,.72); }
.contact-cta .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--night);
}
.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 34px;
  padding: 46px clamp(20px, 6vw, 92px);
  background: #090c0f;
  color: var(--white);
}
.site-footer p,
.footer-links a {
  color: rgba(255,250,240,.72);
}
.footer-links {
  display: grid;
  gap: 9px;
}
.qr-row {
  display: flex;
  gap: 10px;
}
.qr-row img {
  width: 76px;
  height: 76px;
  padding: 3px;
  background: var(--white);
}

@media (prefers-reduced-motion: no-preference) {
  .section,
  .split-section,
  .cinema-section,
  .service-atlas article,
  .price-row {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .section.visible,
  .split-section.visible,
  .cinema-section.visible,
  .service-atlas article.visible,
  .price-row.visible {
    opacity: 1;
    transform: none;
  }
  .hero-bg {
    animation: heroDrift 12s ease-out both;
  }
  @keyframes heroDrift {
    from { transform: scale(1.08); }
    to { transform: scale(1.02); }
  }
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto auto auto; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px clamp(18px, 5vw, 42px);
    flex-direction: column;
    background: rgba(244,240,232,.98);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .menu-button { display: inline-flex; }
  .service-atlas { grid-template-columns: repeat(2, 1fr); }
  .service-atlas article:nth-child(3) { border-left: 0; }
  .cinema-section,
  .intro-band,
  .split-section {
    grid-template-columns: 1fr;
  }
  .price-row {
    grid-template-columns: 1fr;
  }
  .price { text-align: left; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .site-header { min-height: 68px; }
  .brand span { display: none; }
  .hero {
    min-height: 100svh;
    padding: 108px 20px 26px;
    align-items: end;
  }
  .hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .hero p {
    margin-top: 18px;
    font-size: 15px;
  }
  .hero-copy { padding-bottom: 0; }
  .reservation-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .reservation-panel div {
    min-height: 82px;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }
  .reservation-panel div:first-child { border-top: 0; }
  .intro-band,
  .section,
  .page-hero,
  .faq-list,
  .contact-form-section,
  .article-page,
  .price-showcase {
    padding-inline: 20px;
  }
  .service-atlas,
  .service-grid,
  .vehicle-grid,
  .company-list,
  .contact-form,
  .location-map,
  .destination-strip,
  .site-footer,
  .contact-cta {
    grid-template-columns: 1fr;
  }
  .service-atlas article {
    min-height: 360px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .service-atlas article:first-child { border-top: 0; }
  .cinema-section img { min-height: 360px; }
  .destination-strip img { height: 300px; }
  .location-map,
  .map-frame,
  .map-frame iframe { min-height: 420px; }
  .language-switcher { gap: 7px; }
}
