:root {
  color-scheme: light;
  --bg: #FBF7F0;
  --text: #222222;
  --heading: #3A2A1A;
  --accent: #D9C5A3;
  --footer-bg: #3A2A1A;
  --footer-text: #FBF7F0;
}

html, body {
  background-color: #FBF7F0 !important;
  color: #222222 !important;
}

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

body {
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background-color: var(--bg);
  color: var(--text);
}

.banner {
  background-color: var(--accent);
  color: var(--heading);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: bold;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 3rem 24px 2rem;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: var(--heading);
  letter-spacing: 0.2em;
}

nav {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--heading);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--accent);
}

nav a:hover {
  border-bottom-color: var(--heading);
}

main .container > section {
  margin-top: 3rem;
}

h2 {
  font-size: 1.6rem;
  color: var(--heading);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.1rem;
  color: var(--heading);
  margin: 1.5rem 0 0.75rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th, td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--accent);
}

th {
  color: var(--heading);
  font-weight: bold;
  background-color: var(--accent);
}

tr:last-child td {
  border-bottom: none;
}

.menu-note, .hours-note, .access-note {
  font-size: 0.875rem;
  color: var(--heading);
  margin-top: 0.75rem;
}

.closed-day {
  color: var(--heading);
  font-weight: bold;
}

.holiday-note {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.address-block {
  margin-bottom: 1.5rem;
  line-height: 2;
}

.parking-note {
  background-color: var(--accent);
  border-left: 4px solid var(--heading);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.payment-list {
  list-style: none;
  margin: 0.5rem 0 1rem 0;
}

.payment-list li {
  padding: 0.2rem 0;
}

.payment-list li::before {
  content: "・";
  color: var(--heading);
}

footer {
  margin-top: 4rem;
  background-color: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 2rem 24px;
  font-size: 0.875rem;
  line-height: 1.8;
}
