@charset "UTF-8";

:root {
  --base: #fbf6ef;
  --base-dark: #f3e8dc;
  --white: #ffffff;
  --text: #4a332b;
  --muted: #7c665c;
  --accent: #d98f89;
  --accent-dark: #c77772;
  --line: #eadbd0;
  --shadow: 0 20px 50px rgba(93, 61, 43, 0.12);
  --radius: 22px;
  --inner: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    serif;
  line-height: 1.8;
  background:
    radial-gradient(circle at right top, rgba(235, 204, 190, 0.35), transparent 32%),
    linear-gradient(180deg, #fffaf5 0%, var(--base) 45%, #fffaf5 100%);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

button {
  font-family: inherit;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.92);
  border-bottom: 1px solid rgba(234, 219, 208, 0.7);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--inner);
  height: 82px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-mark {
  color: #b98e65;
  font-size: 24px;
}

.logo strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.logo small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
}

.nav a {
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent-dark);
}

.header-btn,
.menu-btn,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 28px rgba(201, 116, 108, 0.24);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-btn:hover,
.menu-btn:hover,
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(201, 116, 108, 0.3);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 7px auto;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(35deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-35deg);
}

.mobile-nav {
  display: none;
}

/* Common */

.section-label {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-family: Georgia, serif;
}

.section-head {
  margin-bottom: 38px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.section-head p {
  color: var(--muted);
  font-size: 15px;
}

/* Hero */

.menu-hero {
  padding: 80px 28px 50px;
}

.menu-hero-inner {
  max-width: var(--inner);
  min-height: 390px;
  margin: 0 auto;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: center;
  gap: 44px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.9), rgba(243, 232, 220, 0.72)),
    var(--base);
  box-shadow: var(--shadow);
}

.menu-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.menu-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
}

.menu-hero-card {
  padding: 38px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.menu-hero-card p {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.menu-hero-card h2 {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 48px;
  font-family: Georgia, serif;
  font-weight: 400;
}

.menu-hero-card span {
  color: var(--muted);
  font-size: 14px;
}

/* Main Menu */

.menu-section {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 70px 28px 90px;
}

.menu-grid {
  display: grid;
  gap: 34px;
}

.menu-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(93, 61, 43, 0.08);
}

.menu-card:nth-child(even) {
  grid-template-columns: 1fr 420px;
}

.menu-card:nth-child(even) .menu-image {
  order: 2;
}

.menu-image img {
  height: 100%;
  min-height: 360px;
}

.menu-content {
  padding: 42px;
}

.menu-category {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-family: Georgia, serif;
}

.menu-content h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.4;
}

.menu-content p {
  color: var(--muted);
  font-size: 14px;
}

.menu-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.menu-detail dl {
  padding: 18px;
  background: #fffaf6;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.menu-detail dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.menu-detail dd {
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 600;
}

.menu-points {
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.menu-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
}

.menu-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* Option */

.option-section {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 30px 28px 90px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.option-card {
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.option-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.option-card p {
  min-height: 56px;
  color: var(--muted);
  font-size: 14px;
}

.option-card strong {
  display: block;
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: 15px;
}

/* Flow */

.flow-section {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 20px 28px 90px;
}

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

.flow-card {
  padding: 34px 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.flow-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-family: Georgia, serif;
}

.flow-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 500;
}

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

/* Notice */

.notice-section {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 20px 28px 90px;
}

.notice-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.notice-inner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.45;
}

.notice-inner ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.notice-inner li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
}

.notice-inner li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
}

/* CTA */

.cta-section {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 10px 28px 110px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 52px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(244, 208, 206, 0.72), rgba(255, 250, 245, 0.9)),
    var(--base-dark);
  border: 1px solid var(--line);
}

.cta-inner h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.45;
}

.cta-inner p {
  color: var(--muted);
}

/* Footer */

.footer {
  background: #4d372f;
  color: #fffaf5;
}

.footer-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 70px 28px 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 44px;
}

.footer-logo .logo-mark,
.footer-logo small {
  color: #d9b58f;
}

.footer p {
  color: rgba(255, 250, 245, 0.72);
  font-size: 14px;
}

.footer h3 {
  margin-bottom: 16px;
  color: #e8cfb8;
  font-size: 14px;
  letter-spacing: 0.14em;
  font-family: Georgia, serif;
}

.footer-bottom {
  padding: 18px 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 250, 245, 0.12);
}

.footer-bottom p {
  color: rgba(255, 250, 245, 0.56);
  font-size: 12px;
}

/* Fade In */

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

body.js-enabled .fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.js-enabled .fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */

@media (max-width: 1024px) {
  .header-inner {
    height: 74px;
  }

  .nav,
  .header-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-nav {
    display: none;
    padding: 18px 28px 28px;
    background: rgba(255, 250, 245, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(93, 61, 43, 0.08);
  }

  .mobile-nav.active {
    display: grid;
    gap: 14px;
  }

  .mobile-nav a {
    color: var(--muted);
    font-size: 14px;
  }

  .mobile-reserve {
    width: fit-content;
    margin-top: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    color: #fff !important;
    background: var(--accent);
  }

  .menu-hero-inner {
    grid-template-columns: 1fr;
    padding: 44px;
  }

  .menu-hero-card {
    max-width: 360px;
  }

  .menu-card,
  .menu-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .menu-card:nth-child(even) .menu-image {
    order: 0;
  }

  .menu-image img {
    height: 340px;
    min-height: auto;
  }

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

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

  .notice-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Smartphone */

@media (max-width: 640px) {
  .header-inner {
    height: 70px;
    padding: 0 18px;
  }

  .logo strong {
    font-size: 17px;
  }

  .logo small {
    font-size: 9px;
  }

  .mobile-nav {
    padding: 16px 18px 24px;
  }

  .menu-hero {
    padding: 42px 18px 28px;
  }

  .menu-hero-inner {
    min-height: auto;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .menu-hero h1 {
    font-size: 34px;
  }

  .menu-hero-card h2 {
    font-size: 42px;
  }

  .menu-section {
    padding: 56px 18px 70px;
  }

  .menu-grid {
    gap: 26px;
  }

  .menu-image img {
    height: 240px;
  }

  .menu-content {
    padding: 28px 22px;
  }

  .menu-detail {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    width: 100%;
  }

  .option-section {
    padding: 20px 18px 70px;
  }

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

  .option-card p {
    min-height: auto;
  }

  .flow-section {
    padding: 10px 18px 70px;
  }

  .notice-section {
    padding: 10px 18px 70px;
  }

  .notice-inner {
    padding: 30px 22px;
  }

  .cta-section {
    padding: 10px 18px 80px;
  }

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

  .cta-btn {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 56px 18px 38px;
  }
}