/* ============================================================
   BURIBUSHI - Main Stylesheet
   Color Palette:
     - Background Dark:  #0a0a0a / #111111 / #1a1a1a
     - Gold Accent:      #c9a84c / #d4af37 / #e8d5a3
     - White/Light:      #ffffff / #f5f0e8
     - Text Mid:         #888888 / #aaaaaa
     - Border:           #2a2a2a / #333333
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #0d0d0d;
  color: #e8e0d5;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
}

ul, ol { list-style: none; }

/* ---------- Typography ---------- */
.en-font {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  letter-spacing: 0.15em;
}

/* ---------- Utility Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, #c9a84c 0%, #d4af37 50%, #c9a84c 100%);
  color: #0d0d0d;
  border-color: #c9a84c;
}
.btn--gold:hover {
  background: linear-gradient(135deg, #d4af37 0%, #e8c84a 50%, #d4af37 100%);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #e8e0d5;
  border-color: rgba(232, 224, 213, 0.6);
}
.btn--outline:hover {
  background: rgba(232, 224, 213, 0.1);
  border-color: #e8e0d5;
}

.btn--outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.btn--outline-gold {
  background: transparent;
  color: #c9a84c;
  border-color: #c9a84c;
}
.btn--outline-gold:hover {
  background: rgba(201, 168, 76, 0.15);
}

.btn--line {
  background: #06C755;
  color: #ffffff;
  border-color: #06C755;
}
.btn--line:hover {
  background: #00b547;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.4);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header__en {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: #c9a84c;
  margin-bottom: 10px;
  display: block;
}

.section-header__ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: #f5f0e8;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.section-header__line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  margin: 0 auto;
}

.section-header--light .section-header__ja,
.section-header--light .section-header__en {
  color: inherit;
}
.section-header--light .section-header__en {
  color: rgba(201, 168, 76, 0.9);
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 70px;
  display: flex;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
  background: transparent;
}

.header.is-scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2);
  height: 60px;
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.header__logo .logo-img {
  height: 50px;
  width: auto;
  transition: height 0.4s ease;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.9)) drop-shadow(0 0 3px rgba(255,255,255,0.7));
}

.header.is-scrolled .header__logo .logo-img {
  height: 44px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a84c;
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: #c9a84c;
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link--reserve {
  background: linear-gradient(135deg, #c9a84c, #d4af37);
  color: #0d0d0d !important;
  padding: 8px 20px 8px 20px;
  border-radius: 2px;
  letter-spacing: 0.15em;
}

.nav__link--reserve::after { display: none; }

.nav__link--reserve:hover {
  background: linear-gradient(135deg, #d4af37, #e8c84a);
  box-shadow: 0 3px 15px rgba(212, 175, 55, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: #e8e0d5;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 100vw);
  height: 100%;
  background: #0d0d0d;
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 80px 40px 40px;
  border-left: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mobile-menu.is-open { right: 0; }

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid #333;
  color: #e8e0d5;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu__close:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

.mobile-menu__list { display: flex; flex-direction: column; gap: 6px; }

.mobile-menu__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: #e8e0d5;
  padding: 12px 0;
  border-bottom: 1px solid #1e1e1e;
  display: block;
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu__link:hover { color: #c9a84c; padding-left: 10px; }
.mobile-menu__link--reserve { color: #c9a84c; }

.mobile-menu__info {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  color: #888;
}
.mobile-menu__info i { color: #c9a84c; margin-right: 8px; }

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}
.mobile-menu__overlay.is-active {
  opacity: 1;
  pointer-events: all;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide--active { opacity: 1; }

.hero__slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.hero__slide--active .hero__slide-bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* 文字視認性向上：全体に30%の黒を車いて、上下に追加グラデーション */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.30) 35%,
    rgba(0,0,0,0.30) 60%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: heroFadeUp 1.5s ease 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.hero__logo {
  height: clamp(60px, 12vw, 110px);
  width: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 0 10px rgba(255,255,255,1)) drop-shadow(0 0 4px rgba(255,255,255,0.9));
}

.hero__title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 8px 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3em;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero__dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__dot--active {
  background: #c9a84c;
  transform: scale(1.3);
}


/* ============================================================
   INFO BAR
   ============================================================ */
.info-bar {
  background: #141414;
  border-bottom: 1px solid #222;
  border-top: 1px solid #222;
}

.info-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.info-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  color: #e8e0d5;
}

.info-bar__item > i {
  color: #c9a84c;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-bar__item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-bar__label {
  font-size: 0.68rem;
  color: #888;
  letter-spacing: 0.1em;
}

.info-bar__value {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.info-bar__divider {
  width: 1px;
  height: 40px;
  background: #2a2a2a;
}

.info-bar__item--reserve {
  padding-left: 40px;
}


/* ============================================================
   CONCEPT
   ============================================================ */
.concept {
  padding: 100px 0;
  background: #0d0d0d;
}

.concept__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.concept__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.concept__block:last-child { margin-bottom: 0; }

.concept__block--reverse .concept__visual { order: 2; }
.concept__block--reverse .concept__text   { order: 1; }

.concept__visual {
  position: relative;
}

.concept__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
}

.concept__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.concept__img-wrap:hover .concept__img {
  transform: scale(1.05);
}

.concept__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  z-index: 1;
  border-radius: 2px;
  pointer-events: none;
}

.concept__img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: rgba(201, 168, 76, 0.08);
  letter-spacing: 0.1em;
  line-height: 1;
  z-index: 0;
  user-select: none;
}

.concept__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: #f5f0e8;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.concept__line {
  width: 40px;
  height: 1px;
  background: #c9a84c;
  margin-bottom: 24px;
}

.concept__desc {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 32px;
}


/* ============================================================
   FEATURE
   ============================================================ */
.feature {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.feature__bg {
  position: absolute;
  inset: 0;
}

.feature__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.88);
}

.feature__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  color: #f5f0e8;
}

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

.feature__item {
  text-align: left;
  padding: 44px 36px;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  transition: all 0.35s ease;
  background: rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}

.feature__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, #c9a84c, transparent);
  transition: height 0.4s ease;
}

.feature__item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-4px);
}

.feature__item:hover::before {
  height: 100%;
}

.feature__num {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.feature__divider {
  width: 32px;
  height: 1px;
  background: #c9a84c;
  margin: 14px 0 18px;
  transition: width 0.4s ease;
}

.feature__item:hover .feature__divider {
  width: 56px;
}

.feature__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #f5f0e8;
  margin-bottom: 0;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.feature__desc {
  font-size: 0.84rem;
  color: #888;
  line-height: 1.85;
  margin-top: 0;
}


/* ============================================================
   COVID-19 SAFETY SECTION（独立セクション）
   ============================================================ */
.covid-section {
  padding: 80px 0;
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
}

.covid-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.covid__card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 2px;
  padding: 28px 24px;
  transition: border-color 0.3s ease;
}

.covid__card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.covid__card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: #c9a84c;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #222;
}

.covid__card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.covid__card-list li {
  font-size: 0.78rem;
  color: #777;
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}

.covid__card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #444;
  font-size: 0.7rem;
}


/* ============================================================
   MENU SECTION
   ============================================================ */
.menu {
  padding: 100px 0;
  background: #111111;
}

.menu__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 60px;
}

.menu__tab {
  padding: 14px 40px;
  background: none;
  border: none;
  color: #888;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.menu__tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #c9a84c;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.menu__tab:hover { color: #c9a84c; }

.menu__tab--active {
  color: #c9a84c;
  border-bottom-color: #c9a84c;
}
.menu__tab--active::after { transform: scaleX(1); }

.menu__panel {
  display: none;
  animation: fadePanel 0.4s ease;
}

.menu__panel--active { display: block; }

@keyframes fadePanel {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.menu__card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.menu__card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.menu__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #222;
}

.menu__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu__card:hover .menu__card-img img {
  transform: scale(1.06);
}

.menu__card-body {
  padding: 20px;
}

.menu__card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: #f5f0e8;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.menu__card-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 14px;
}

.menu__card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #c9a84c;
  letter-spacing: 0.05em;
}

.menu__note {
  margin-top: 30px;
  text-align: center;
  font-size: 0.78rem;
  color: #555;
  letter-spacing: 0.05em;
}

/* Course */
.course__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.course__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.course__item:hover { border-color: rgba(201, 168, 76, 0.4); }
.course__item--premium { border-color: rgba(201, 168, 76, 0.2); }

.course__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  writing-mode: vertical-rl;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #888;
  padding: 20px 10px;
}

.course__badge--gold {
  background: linear-gradient(135deg, #c9a84c, #d4af37);
  color: #0d0d0d;
}

.course__badge--silver {
  background: linear-gradient(135deg, #888, #aaa);
  color: #0d0d0d;
}

.course__info {
  padding: 28px 32px;
}

.course__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  color: #f5f0e8;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.course__desc {
  font-size: 0.84rem;
  color: #777;
  margin-bottom: 16px;
  line-height: 1.7;
}

.course__items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 20px;
}

.course__items li {
  font-size: 0.8rem;
  color: #aaa;
  position: relative;
  padding-left: 14px;
}

.course__items li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: #c9a84c;
}

.course__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #c9a84c;
}

.course__price small {
  font-size: 0.72rem;
  color: #888;
  font-family: 'Noto Sans JP', sans-serif;
  margin-left: 4px;
}

/* Drink */
.drink__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.drink__category {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 24px;
}

.drink__cat-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  color: #f5f0e8;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2a2a2a;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drink__cat-title i { color: #c9a84c; }

.drink__list { display: flex; flex-direction: column; gap: 10px; }

.drink__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  color: #aaa;
  padding-bottom: 8px;
  border-bottom: 1px solid #1e1e1e;
}

.drink__list li:last-child { border-bottom: none; padding-bottom: 0; }
.drink__list li span:last-child { color: #c9a84c; font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; }


/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 100px 0;
  background: #0d0d0d;
}

.gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.gallery__filter {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery__filter-btn {
  padding: 8px 24px;
  background: none;
  border: 1px solid #333;
  color: #888;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.gallery__filter-btn:hover,
.gallery__filter-btn--active {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #0d0d0d;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: #1a1a1a;
}

.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
}

.gallery__item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(4px);
}

.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox__img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.lightbox__close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1rem;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.1rem;
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(201, 168, 76, 0.3);
  border-color: #c9a84c;
}

.lightbox__caption {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}


/* ============================================================
   RESERVE
   ============================================================ */
.reserve {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.reserve__bg {
  position: absolute;
  inset: 0;
}

.reserve__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reserve__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.88);
}

.reserve__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  color: #f5f0e8;
}

.reserve__methods {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.reserve__method {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s ease;
}

.reserve__method:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.reserve__method--center {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.3);
}

.reserve__method-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #e8e0d5;
}

.reserve__method-icon--gold {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.4);
  color: #c9a84c;
}

.reserve__method-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  color: #f5f0e8;
  letter-spacing: 0.08em;
}

.reserve__method-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #c9a84c;
}

.reserve__method-time,
.reserve__method-desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.7;
}


/* ============================================================
   ACCESS
   ============================================================ */
.access {
  padding: 100px 0;
  background: #111111;
}

.access__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.access__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: stretch;
}

.access__dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}

.access__dl dt {
  font-size: 0.8rem;
  color: #c9a84c;
  letter-spacing: 0.05em;
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid #1e1e1e;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.access__dl dt i { width: 14px; text-align: center; }

.access__dl dd {
  font-size: 0.88rem;
  color: #ccc;
  padding: 16px 0;
  border-bottom: 1px solid #1e1e1e;
  line-height: 1.8;
}

.access__dl dd a {
  color: #c9a84c;
}

.access__dl dd small {
  color: #777;
  font-size: 0.78rem;
}

.access__dl dt:last-of-type,
.access__dl dd:last-of-type {
  border-bottom: none;
}

.access__sns {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #2a2a2a;
}

.access__sns-label {
  font-size: 0.78rem;
  color: #777;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.access__sns-links {
  display: flex;
  gap: 12px;
}

.access__sns-link {
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.access__sns-link:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
}

/* Access exterior photo */
.access__map {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 560px;
}

.access__exterior {
  position: relative;
  overflow: hidden;
  border-radius: 2px 2px 0 0;
  height: 200px;
  flex-shrink: 0;
}

.access__exterior-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.6s ease;
}

.access__exterior:hover .access__exterior-img {
  transform: scale(1.04);
}

.access__exterior-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 20px 16px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.access__exterior-caption i {
  color: #c9a84c;
}

.access__map iframe {
  width: 100%;
  flex: 1;
  min-height: 300px;
  border-radius: 0 0 2px 2px;
  display: block;
  border: 0;
}

.access__info {
  display: flex;
  flex-direction: column;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #080808; }

.footer__top {
  padding: 70px 0 50px;
  border-bottom: 1px solid #1a1a1a;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 50px;
}

.footer__brand {}

.footer__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.9)) drop-shadow(0 0 3px rgba(255,255,255,0.7));
  display: inline-block;
}

.footer__tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.8rem;
  color: #666;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer__sns {
  display: flex;
  gap: 10px;
}

.footer__sns-link {
  width: 36px;
  height: 36px;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer__sns-link:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

.footer__nav-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: #c9a84c;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e1e1e;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-list a {
  font-size: 0.82rem;
  color: #777;
  transition: color 0.3s, padding-left 0.3s;
  letter-spacing: 0.05em;
}

.footer__nav-list a:hover {
  color: #c9a84c;
  padding-left: 6px;
}

.footer__info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__info-list li {
  font-size: 0.82rem;
  color: #777;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.footer__info-list i {
  color: #c9a84c;
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px;
}

.footer__reserve-text {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.footer__btn {
  width: 100%;
  margin-bottom: 10px;
}

.footer__btn:last-child { margin-bottom: 0; }

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.72rem;
  color: #444;
  letter-spacing: 0.05em;
}

.footer__policy {
  display: flex;
  gap: 20px;
}

.footer__policy a {
  font-size: 0.72rem;
  color: #444;
  transition: color 0.3s;
}

.footer__policy a:hover { color: #c9a84c; }


/* ============================================================
   PAGE TOP BUTTON
   ============================================================ */
.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #c9a84c, #d4af37);
  color: #0d0d0d;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.page-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-top:hover {
  background: linear-gradient(135deg, #d4af37, #e8c84a);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.45);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.is-visible { opacity: 1; }


/* ============================================================
   RESPONSIVE - Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .header { padding: 0 24px; }

  .feature__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .concept__block { grid-template-columns: 1fr; gap: 40px; }
  .concept__block--reverse .concept__visual { order: 0; }
  .concept__block--reverse .concept__text   { order: 0; }

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

  .access__layout { grid-template-columns: 1fr; }
  .access__map { min-height: 500px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--large { grid-column: span 2; }
}


/* ============================================================
   RESPONSIVE - Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .header { padding: 0 20px; height: 60px; }
  .header.is-scrolled { height: 56px; }
  .header__logo .logo-img { height: 34px; }

  .header__nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero__scroll { display: none; }
  .hero__dots { bottom: 24px; right: 24px; }

  /* Info Bar */
  .info-bar__inner {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 0 20px;
  }
  .info-bar__item { padding: 14px 0; }
  .info-bar__divider { width: 100%; height: 1px; }
  .info-bar__item--reserve { padding: 16px 0; }

  /* Sections */
  .concept__inner,
  .feature__inner,
  .menu__inner,
  .gallery__inner,
  .reserve__inner,
  .access__inner { padding: 0 20px; }

  .concept { padding: 70px 0; }
  .concept__block { margin-bottom: 60px; gap: 30px; }

  .feature { padding: 70px 0; }
  .feature__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature__item { padding: 24px 16px; }

  .menu { padding: 70px 0; }
  .menu__tab { padding: 12px 20px; font-size: 0.82rem; }
  .menu__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .course__item { grid-template-columns: 80px 1fr; }
  .course__info { padding: 20px; }

  .gallery { padding: 70px 0; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery__item--tall { grid-row: span 2; }

  .reserve { padding: 70px 0; }

  .access { padding: 70px 0; }

  .footer__top { padding: 50px 0 40px; }
  .footer__inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 32px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 12px;
  }

  .page-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }

  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news {
  padding: 80px 0;
  background: #111111;
  border-bottom: 1px solid #1e1e1e;
}

.news__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid #222;
  border-radius: 2px;
  overflow: hidden;
}

.news__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  padding: 18px 28px;
  border-bottom: 1px solid #1e1e1e;
  transition: background 0.2s ease;
}

.news__item:last-child { border-bottom: none; }
.news__item:hover { background: rgba(255,255,255,0.03); }

.news__date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  color: #c9a84c;
  letter-spacing: 0.08em;
  padding-top: 2px;
  flex-shrink: 0;
}

.news__text {
  font-size: 0.88rem;
  color: #bbb;
  line-height: 1.7;
}

.news__more {
  text-align: center;
}


/* ============================================================
   NAV TEL LINK
   ============================================================ */
.nav__link--tel {
  color: #c9a84c !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem !important;
  letter-spacing: 0.05em;
}

.nav__link--tel::after { display: none; }
.nav__link--tel i { margin-right: 4px; font-size: 0.75rem; }

.nav__en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem;
  opacity: 0.55;
  margin-left: 4px;
  letter-spacing: 0.15em;
}


/* ============================================================
   MENU CATEGORY TITLE
   ============================================================ */
.menu__category-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: #c9a84c;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu__category-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 16px;
  background: #c9a84c;
  border-radius: 2px;
}

.menu__card--featured {
  border-color: rgba(201, 168, 76, 0.3);
  position: relative;
}

.menu__card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c9a84c, #d4af37);
  color: #0d0d0d;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  margin-top: 8px;
}


/* ============================================================
   BENTO SECTION
   ============================================================ */
.bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.bento__item {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 22px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.bento__item:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.04);
}

.bento__item--featured {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

.bento__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.bento__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: #e8e0d5;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.bento__badge {
  display: inline-block;
  background: linear-gradient(135deg, #c9a84c, #d4af37);
  color: #0d0d0d;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.bento__order {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.bento__order > i {
  font-size: 1.6rem;
  color: #c9a84c;
  flex-shrink: 0;
}

.bento__order-label {
  font-size: 0.78rem;
  color: #777;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.bento__order-method {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  color: #e8e0d5;
  margin-bottom: 12px;
}

/* Drink list override — price non for this store */
.drink__list li {
  grid-template-columns: 1fr;
}
.drink__list li span { color: #aaa; }


/* ============================================================
   COVID BLOCK
   ============================================================ */
.covid__block {
  margin-top: 36px;
  padding: 28px;
  background: #141414;
  border: 1px solid #222;
  border-radius: 2px;
}

.covid__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  color: #c9a84c;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.covid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.covid__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #1a1a1a;
  border-radius: 2px;
  border: 1px solid #222;
}

.covid__item > i {
  font-size: 1.1rem;
  color: #c9a84c;
  margin-top: 2px;
  flex-shrink: 0;
}

.covid__item-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e8e0d5;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.covid__item ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.covid__item ul li {
  font-size: 0.76rem;
  color: #777;
  position: relative;
  padding-left: 12px;
}

.covid__item ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #555;
}

/* Footer inline info */
.footer__info-list-inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.footer__info-list-inline span {
  font-size: 0.8rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__info-list-inline i {
  color: #c9a84c;
  width: 14px;
  text-align: center;
}

.footer__reserve-note {
  font-size: 0.72rem;
  color: #555;
  text-align: center;
  margin-top: 6px;
  letter-spacing: 0.05em;
}


/* ============================================================
   RESPONSIVE - Small Mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .feature__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr; }
  .menu__tab { padding: 10px 14px; font-size: 0.78rem; }
  .course__item { grid-template-columns: 1fr; }
  .course__badge { writing-mode: horizontal-tb; padding: 10px 20px; font-size: 0.7rem; }
  .drink__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .reserve__method { padding: 28px 20px; }
  .hero__btns { flex-direction: column; align-items: center; }
  .news__item { grid-template-columns: 1fr; gap: 4px; }
  .bento__grid { grid-template-columns: 1fr 1fr; }
  .covid__grid { grid-template-columns: 1fr; }
}
