:root {
  --ink: #101112;
  --charcoal: #17191d;
  --charcoal-2: #22262b;
  --navy: #0f1c2b;
  --brown: #4a3427;
  --green: #1f3b34;
  --wine: #5a2430;
  --bronze: #b58b54;
  --bronze-2: #d0aa71;
  --paper: #faf8f3;
  --paper-2: #f1eee7;
  --line: rgba(20, 22, 24, 0.12);
  --muted: #6e6b64;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(11, 12, 13, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--white);
  background: rgba(16, 17, 18, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--bronze), var(--bronze-2));
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-name {
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::before {
  transform: rotate(45deg);
}

.menu-toggle.is-open::after {
  transform: rotate(-45deg);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  color: #15100a;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-2));
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

.btn-light {
  color: var(--ink);
  border-color: rgba(16, 17, 18, 0.15);
  background: var(--white);
}

.btn-line {
  color: var(--ink);
  border-color: rgba(16, 17, 18, 0.18);
  background: transparent;
}

.hero {
  position: relative;
  min-height: clamp(560px, 74vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.48) 45%, rgba(10, 10, 10, 0.1)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.54), rgba(10, 10, 10, 0.02) 35%);
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bronze-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  margin: 16px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 86px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}

.hero-copy {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-width: 128px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts strong {
  display: block;
  color: var(--white);
  font-size: 17px;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.section-compact {
  padding: 58px 0;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 28, 43, 0.95), rgba(23, 25, 29, 1)),
    var(--charcoal);
}

.section-tint {
  background: var(--paper-2);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2,
.split-copy h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.22;
  letter-spacing: 0;
}

.section-head p,
.split-copy p {
  max-width: 630px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section-dark .section-head p,
.section-dark .split-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.feature-card,
.style-card,
.menu-card,
.staff-card,
.news-card,
.service-card,
.info-card,
.facility-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 16, 18, 0.06);
  overflow: hidden;
}

.feature-card,
.news-card,
.info-card,
.facility-card,
.contact-card {
  padding: 24px;
}

.feature-card .number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--bronze-2);
  font-size: 13px;
  font-weight: 900;
}

.feature-card h3,
.style-card h3,
.menu-card h3,
.staff-card h3,
.news-card h3,
.service-card h3,
.info-card h3,
.facility-card h3,
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.feature-card p,
.style-card p,
.menu-card p,
.staff-card p,
.news-card p,
.service-card p,
.info-card p,
.facility-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.style-card img,
.staff-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.style-card .card-body,
.menu-card .card-body,
.staff-card .card-body,
.service-card .card-body {
  padding: 22px;
}

.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(31, 59, 52, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.menu-card {
  display: flex;
  flex-direction: column;
}

.menu-card .price {
  margin-top: 16px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.menu-card .time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.menu-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.menu-card .btn,
.service-card .btn {
  width: fit-content;
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: center;
}

.split-image {
  min-height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list,
.plain-list,
.process-list,
.reservation-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li,
.reservation-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(16, 17, 18, 0.1);
}

.section-dark .check-list li {
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.check-list li::before,
.reservation-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bronze);
}

.flow {
  counter-reset: flow;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.flow-item {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.flow-item::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  display: block;
  margin-bottom: 20px;
  color: var(--bronze);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.flow-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.flow-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.news-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  border: 1px solid rgba(16, 17, 18, 0.2);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-band {
  padding: 54px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 17, 18, 0.88), rgba(15, 28, 43, 0.92)),
    var(--charcoal);
}

.cta-band p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-hero {
  padding: 86px 0 68px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 17, 18, 0.96), rgba(15, 28, 43, 0.9)),
    var(--charcoal);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 44px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--charcoal);
}

.stat strong {
  display: block;
  color: var(--bronze-2);
  font-size: 30px;
  line-height: 1.1;
}

.stat span {
  font-size: 13px;
  font-weight: 800;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-meta {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper-2);
}

.service-meta span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.service-meta strong {
  color: var(--ink);
}

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

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.store-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.store-table th,
.store-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.store-table tr:last-child th,
.store-table tr:last-child td {
  border-bottom: 0;
}

.store-table th {
  width: 180px;
  color: var(--ink);
  background: var(--paper-2);
}

.map-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.16) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.12) 50%, transparent 51%),
    linear-gradient(135deg, #1f3b34, #14181d);
  background-size: 110px 110px, 90px 90px, cover;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 132px;
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--bronze-2);
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow);
}

.map-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(16, 17, 18, 0.72);
}

.form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 17, 18, 0.16);
  border-radius: var(--radius);
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(31, 59, 52, 0.1);
  font-weight: 800;
}

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

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #0d0e10;
  padding: 56px 0 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.45fr) minmax(220px, 0.6fr);
  gap: 36px;
}

.footer-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--bronze-2);
}

.copyright {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  gap: 8px;
  background: rgba(16, 17, 18, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.mobile-cta .btn {
  width: 100%;
  min-height: 48px;
}

.image-band {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(16, 17, 18, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 50px;
    padding: 0 16px;
    border-radius: var(--radius);
  }

  .grid-4,
  .grid-3,
  .flow,
  .recommend-grid,
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .page-hero .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero img {
    max-height: 390px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-name {
    font-size: 15px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 70px 0 96px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .section {
    padding: 66px 0;
  }

  .section-head {
    display: block;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .flow,
  .recommend-grid,
  .stats-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .style-card img,
  .staff-card img {
    height: 320px;
  }

  .split-image {
    min-height: 320px;
  }

  .cta-band {
    padding: 34px 24px;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 116px;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .page-hero {
    padding: 62px 0 52px;
  }
}
