:root {
  --ink: #f8f2ea;
  --muted: #c9b8a8;
  --paper: #fff8ef;
  --paper-2: #f3eadf;
  --charcoal: #151211;
  --smoke: #241d1a;
  --wine: #6e1f35;
  --gold: #d6ad62;
  --amber: #b46b32;
  --line: rgba(255, 248, 239, 0.16);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--charcoal);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(21, 18, 17, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(214, 173, 98, 0.7);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.brand strong {
  display: block;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.nav-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 32% 106%, #feda75 0 18%, #fa7e1e 29%, transparent 42%),
    radial-gradient(circle at 12% 12%, #4f5bd5 0 22%, transparent 36%),
    linear-gradient(135deg, #833ab4 0%, #c13584 42%, #fd1d1d 72%, #fcb045 100%);
  box-shadow: 0 8px 22px rgba(193, 53, 132, 0.32);
}

.nav-icon-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 74px) 56px;
}

.hero-image,
.tourist-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 10, 9, 0.88), rgba(13, 10, 9, 0.52) 48%, rgba(13, 10, 9, 0.22)),
    linear-gradient(0deg, rgba(21, 18, 17, 1), rgba(21, 18, 17, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, serif;
  font-size: clamp(4rem, 13vw, 9rem);
  font-weight: 500;
  line-height: 0.86;
}

h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.22;
  margin-bottom: 20px;
}

h3 {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 720px;
  color: var(--paper);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 248, 239, 0.28);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #211714;
}

.button.secondary {
  background: rgba(255, 248, 239, 0.1);
  color: #fff;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quick-info div {
  padding: 16px;
  background: rgba(21, 18, 17, 0.62);
}

dt {
  color: var(--muted);
  font-size: 0.8rem;
}

dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.band {
  background: linear-gradient(180deg, var(--charcoal), #201817);
}

.section {
  padding: clamp(72px, 10vw, 118px) clamp(18px, 5vw, 74px);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.86fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.split > *,
.feature-grid > *,
.english-grid > * {
  min-width: 0;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.02fr);
}

.split.reverse > :first-child {
  order: 2;
}

.intro p,
.section-heading p,
.menu-section p,
.tourist-card p,
.english-section p,
.instagram-section p,
.faq-section p,
.info-list dd + dd {
  color: var(--muted);
}

.nowrap {
  white-space: nowrap;
}

.photo-frame {
  margin: 0;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-frame figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
  min-width: 0;
}

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

.feature-grid article,
.english-grid article,
.faq-list details {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.055);
}

.number {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.feature-grid p,
.english-grid p,
.faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.menu-section,
.english-section {
  background: var(--paper);
  color: #241d1a;
}

.menu-section h2,
.menu-section h3,
.english-section h2,
.english-section h3 {
  color: #241d1a;
}

.menu-section .section-kicker,
.english-section .section-kicker {
  color: var(--wine);
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 26px 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(36, 29, 26, 0.12);
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #fffdf8;
}

caption {
  padding: 14px 16px;
  text-align: left;
  color: var(--wine);
  font-weight: 800;
}

th,
td {
  padding: 13px 16px;
  border-top: 1px solid rgba(36, 29, 26, 0.1);
  text-align: left;
}

th {
  color: #5b4039;
  background: var(--paper-2);
  font-size: 0.9rem;
}

.note {
  color: #715e55;
  font-size: 0.9rem;
}

.tourist-section {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.tourist-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 18, 17, 0.9), rgba(21, 18, 17, 0.64) 54%, rgba(21, 18, 17, 0.24)),
    linear-gradient(0deg, rgba(21, 18, 17, 0.7), rgba(21, 18, 17, 0.08));
}

.tourist-card {
  position: relative;
  z-index: 2;
  margin-left: 0;
  max-width: 830px;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.keyword-list span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(214, 173, 98, 0.38);
  border-radius: 999px;
  background: rgba(21, 18, 17, 0.5);
  color: #ffe5b1;
  font-size: 0.88rem;
}

.instagram-section {
  background:
    linear-gradient(135deg, rgba(110, 31, 53, 0.28), rgba(21, 18, 17, 0.94)),
    var(--smoke);
}

.instagram-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.08), rgba(255, 248, 239, 0.03)),
    rgba(21, 18, 17, 0.42);
}

.instagram-panel h2 {
  margin-bottom: 12px;
}

.instagram-panel p {
  max-width: 720px;
  margin-bottom: 0;
}

.instagram-button {
  white-space: nowrap;
}

.info-list {
  display: grid;
  gap: 1px;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.info-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 18px;
  background: rgba(255, 248, 239, 0.055);
}

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

.english-grid article {
  background: #fffdf8;
  border-color: rgba(36, 29, 26, 0.1);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-weight: 800;
}

.faq-list details[open] summary {
  margin-bottom: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 74px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.4rem;
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .hero {
    min-height: 92vh;
    padding-top: 150px;
  }

  .quick-info,
  .feature-grid,
  .english-grid,
  .instagram-panel,
  .split,
  .split.reverse {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: initial;
  }

  .tourist-section {
    min-height: 680px;
  }
}

@media (max-width: 560px) {
  :root {
    --mobile-gutter: 22px;
  }

  .site-header {
    position: absolute;
    max-width: 100vw;
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 150px var(--mobile-gutter) 32px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-info div {
    padding: 13px;
  }

  .section {
    padding: 64px var(--mobile-gutter);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.18rem);
    overflow-wrap: anywhere;
  }

  #access-title .nowrap {
    display: inline-block;
  }

  table {
    min-width: 520px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
  }
}
