/* ============================================
   AZUR - 創作ダイニング アズュール
   Design tokens
   ============================================ */
:root {
  --bg: #f7f2ea;
  --bg-alt: #ece4d4;
  --bg-dark: #1d1a16;
  --bg-paper: #fffdf7;
  --ink: #1f1a14;
  --ink-soft: #4d4339;
  --muted: #8a7d6e;
  --line: #d9cdb9;
  --line-soft: #e8dfce;
  --azur: #1f4e6b;          /* 瑠璃色（AZUR） */
  --azur-deep: #143548;
  --gold: #b08b4f;          /* 金 */
  --gold-soft: #d7b981;
  --accent: #a8401f;        /* 朱 */
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(20, 12, 0, 0.08);
  --shadow-soft: 0 10px 30px rgba(20, 12, 0, 0.06);
  --radius: 4px;
  --radius-lg: 12px;
  --font-jp: "Noto Serif JP", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-display: "Shippori Mincho", "Noto Serif JP", serif;
  --font-en: "Cormorant Garamond", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 76px;
}

/* スナップ対象セクション */
.snap {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

/* スナップ無効化（ユーザーが制御したい状況用） */
html.no-snap {
  scroll-snap-type: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover { opacity: 0.75; }

/* ============================================
   Layout
   ============================================ */
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container--narrow {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #e9ded0; }
.section--kanji {
  background: var(--bg-paper);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(176, 139, 79, 0.08), transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(31, 78, 107, 0.08), transparent 50%);
}

.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sectionEyebrow {
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.sectionEyebrow--light { color: var(--gold-soft); }

.sectionTitle {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 14px;
}

.sectionTitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.sectionTitle--light { color: #fff; }
.sectionTitle--light::after { background: var(--gold-soft); }

.sectionLead {
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 720px;
  font-size: 0.98rem;
}

.textLink {
  color: var(--azur);
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.textLink i { transition: transform 0.2s ease; }
.textLink:hover i { transform: translateX(4px); }

/* ============================================
   Preview Banner
   ============================================ */
.previewBanner {
  background: linear-gradient(90deg, var(--azur-deep), var(--azur));
  color: #fff;
  font-size: 0.85rem;
  position: relative;
  z-index: 100;
}

.previewBanner.is-hidden { display: none; }

.previewBanner__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 40px 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.previewBanner__badge {
  font-family: var(--font-en);
  letter-spacing: 0.2em;
  font-weight: 600;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 0.72rem;
}

.previewBanner__text { flex: 1; min-width: 200px; line-height: 1.6; }

.previewBanner__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
}

/* ============================================
   Header
   ============================================ */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s ease;
}

.siteHeader.is-scrolled { background: rgba(247, 242, 234, 0.98); }

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__main {
  font-family: var(--font-en);
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.logo__sub {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}

.nav a:not(.nav__tel)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:not(.nav__tel):hover::after { width: 100%; }

.nav__tel {
  background: var(--azur);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 2px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.nav__tel:hover { opacity: 0.9; background: var(--azur-deep); }

.menuToggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.menuToggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menuToggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menuToggle.is-open span:nth-child(2) { opacity: 0; }
.menuToggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 10, 5, 0.45), rgba(15, 10, 5, 0.55)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(31, 78, 107, 0.35), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(20, 12, 0, 0.5), transparent 50%);
}

@keyframes slowZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.1); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
  width: min(1120px, calc(100% - 40px));
}

.hero__eyebrow {
  font-family: var(--font-en);
  letter-spacing: 0.5em;
  color: var(--gold-soft);
  margin: 0 0 28px;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin: 0 0 32px;
}

.hero__title span { display: block; }
.hero__title span:first-child { color: var(--gold-soft); font-size: 0.55em; letter-spacing: 0.25em; margin-bottom: 10px; }

.hero__lead {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 50px;
}

.btn--primary {
  background: var(--azur);
  color: #fff;
  border-color: var(--azur);
}

.btn--primary:hover {
  background: var(--azur-deep);
  border-color: var(--azur-deep);
  opacity: 1;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  opacity: 1;
}

.btn--block {
  display: flex;
  width: 100%;
  margin-top: 24px;
}

/* ============================================
   Carousel（横スクロール共通）
   ============================================ */
.carousel {
  position: relative;
  margin: 0 -20px;
}

.carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 20px 30px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-soft) transparent;
  -webkit-overflow-scrolling: touch;
}

.carousel__track::-webkit-scrollbar {
  height: 6px;
}

.carousel__track::-webkit-scrollbar-track {
  background: transparent;
}

.carousel__track::-webkit-scrollbar-thumb {
  background: var(--gold-soft);
  border-radius: 3px;
}

.carousel__track > * {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

.carousel__nav {
  position: absolute;
  top: calc(50% - 15px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-paper);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
  font-size: 0.9rem;
}

.carousel__nav:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.carousel__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel__nav:disabled:hover {
  background: var(--bg-paper);
  color: var(--ink);
  border-color: var(--line);
}

.carousel__nav--prev { left: 4px; }
.carousel__nav--next { right: 4px; }

.section--alt .carousel__nav {
  background: var(--bg);
}

.carousel__hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel__hint i { color: var(--gold); }

/* スマホのみ表示されるヒント */
.carousel__hint--mobile { display: none; }

@media (max-width: 720px) {
  .carousel__hint--mobile {
    display: flex;
  }
}

/* ============================================
   Message
   ============================================ */
.messageCard {
  text-align: center;
  padding: 60px 20px;
}

.messageCard__body {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 2.4;
  color: var(--ink);
  margin: 0 0 48px;
  letter-spacing: 0.06em;
}

.azuyuru {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px 50px;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  background:
    linear-gradient(to right, transparent, rgba(215, 185, 129, 0.08), transparent);
}

.azuyuru__row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
}

.azuyuru__kana {
  font-size: 1.8rem;
  color: var(--azur);
  font-weight: 600;
  width: 2.4rem;
  text-align: center;
  border-right: 1px solid var(--gold-soft);
  padding-right: 18px;
}

.azuyuru__text {
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.1em;
}

.azuyuru__row--dash .azuyuru__kana {
  font-size: 1.2rem;
  color: var(--gold);
}

/* ============================================
   Menu
   ============================================ */
.menuTabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding-bottom: 6px;
}

.menuTab {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 18px;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s ease;
  letter-spacing: 0.04em;
}

.menuTab:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.menuTab.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.menuList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  background: var(--bg-paper);
  padding: 40px 50px;
  border: 1px solid var(--line-soft);
}

.menuItem {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}

.menuItem:last-child,
.menuItem:nth-last-child(2):not(:nth-child(even)) { border-bottom: none; }

.menuItem__name {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
  line-height: 1.5;
}

.menuItem__dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin: 0 4px 6px;
  min-width: 20px;
}

.menuItem__price {
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--azur);
  font-weight: 600;
  white-space: nowrap;
}

.menuItem__price small {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
  font-weight: 400;
  text-align: right;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.menuItem__desc {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--font-jp);
}

.menuNote {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* ============================================
   Course
   ============================================ */
[data-carousel="course"] { margin-bottom: 30px; }

.courseCard {
  width: 320px;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.courseCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.courseCard--featured {
  border: 1px solid var(--gold);
  background:
    linear-gradient(135deg, var(--bg-paper) 0%, #fff8ec 100%);
}

.courseCard__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: #fff;
  padding: 4px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border-radius: 2px;
}

.courseCard__badge--winter {
  background: var(--azur);
}

.courseCard__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.courseCard__desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 20px;
  flex: 1;
  line-height: 1.75;
}

.courseCard__price {
  font-family: var(--font-en);
  font-size: 2rem;
  color: var(--azur);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}

.courseCard__price small {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.08em;
}

/* Drink option */
.drinkOption {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
}

.drinkOption__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.drinkOption__title i { color: var(--gold); }

.drinkOption__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.drinkOption__list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.drinkOption__list .price {
  font-family: var(--font-en);
  font-size: 1.2rem;
  color: var(--azur);
  font-weight: 600;
}

.drinkOption__list .price small {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 400;
}

/* ============================================
   Reservation
   ============================================ */
.reservationCard {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  padding: 50px 60px;
  border-radius: var(--radius-lg);
}

.reservationCard__head { margin-bottom: 30px; }

.reservationCard__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 32px 0 16px;
  color: var(--ink);
}

.reservationCard__body > p:first-of-type {
  color: var(--ink-soft);
  line-height: 2;
  margin: 0;
}

.advanceList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
}

.advanceList li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}

.advanceList li .name { font-family: var(--font-display); color: var(--ink); }
.advanceList li .price {
  font-family: var(--font-en);
  color: var(--azur);
  font-weight: 600;
  white-space: nowrap;
}
.advanceList li .price small { font-size: 0.75rem; color: var(--muted); font-weight: 400; margin-left: 4px; }

.reservationCard__body .note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================
   Notice
   ============================================ */
.noticeGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.noticeCard {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: box-shadow 0.3s ease;
}

.noticeCard:hover { box-shadow: var(--shadow-soft); }

.noticeCard__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.noticeCard h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin: 0 0 12px;
  font-weight: 600;
}

.noticeCard p, .noticeCard li {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin: 0 0 4px;
  line-height: 1.9;
}

.noticeCard ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.noticeCard ul li { padding: 4px 0; }

.noticeCard .note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ============================================
   Time Limit Card（時間制限の詳細カード）
   ============================================ */
.timeLimitCard {
  margin-top: 32px;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.timeLimitCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
}

.timeLimitCard__head {
  padding: 32px 40px 20px;
  border-bottom: 1px dashed var(--line);
  background:
    linear-gradient(135deg, rgba(168, 64, 31, 0.04) 0%, rgba(215, 185, 129, 0.06) 100%);
}

.timeLimitCard__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  border-radius: 2px;
  margin-bottom: 14px;
}

.timeLimitCard__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  margin: 0;
  line-height: 1.6;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.timeLimitCard__title .accentNum {
  font-family: var(--font-en);
  font-size: 1.5em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 2px;
  letter-spacing: 0;
}

.timeLimitCard__body {
  padding: 30px 40px 36px;
}

.timeLimitCard__lead {
  margin: 0 0 28px;
  color: var(--ink-soft);
  line-height: 2;
  font-size: 0.95rem;
}

.timeLimitCard__lead strong {
  color: var(--accent);
  font-weight: 600;
  background: linear-gradient(transparent 60%, rgba(215, 185, 129, 0.35) 60%);
  padding: 0 2px;
}

.timeLimitCard__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 16px;
}

.timeLimitCard__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.timeLimitCard__list li:hover {
  border-color: var(--gold-soft);
  transform: translateX(4px);
}

.timeLimitCard__list li > i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  color: var(--azur);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.timeLimitCard__list h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--ink);
}

.timeLimitCard__list p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

.timeLimitCard__foot {
  margin: 0;
  text-align: center;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .timeLimitCard__head { padding: 24px 24px 16px; }
  .timeLimitCard__body { padding: 24px; }
  .timeLimitCard__list li {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 14px 16px;
  }
  .timeLimitCard__list li > i {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
}

/* ============================================
   Access
   ============================================ */
.accessGrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.accessInfo dl {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.accessInfo dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.accessInfo dt {
  font-family: var(--font-display);
  color: var(--gold-soft);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  margin: 0;
  padding-top: 2px;
}

.accessInfo dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.85;
}

.accessMap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 3;
  background: #222;
}

.accessMap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

/* ============================================
   Footer
   ============================================ */
.siteFooter {
  background: #0f0d0b;
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 0 30px;
}

.siteFooter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.siteFooter__brand .logo__main { color: #fff; }
.siteFooter__brand .logo__sub { color: rgba(255, 255, 255, 0.5); }

.siteFooter__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.siteFooter__nav a { font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); }

.siteFooter__copy {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  margin: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .section { padding: 70px 0; }
  .courseCard { width: 280px; }
  .menuList { grid-template-columns: 1fr; gap: 0; padding: 30px; }
  .menuItem:nth-last-child(2):not(:nth-child(even)) { border-bottom: 1px dashed var(--line); }
  .drinkOption__list { grid-template-columns: 1fr; }
  .noticeGrid { grid-template-columns: 1fr; }
  .accessGrid { grid-template-columns: 1fr; gap: 30px; }
  .advanceList { grid-template-columns: 1fr; }
  .reservationCard { padding: 36px 30px; }
}

@media (max-width: 720px) {
  .nav { display: none; }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 242, 234, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid var(--line-soft);
    backdrop-filter: blur(14px);
  }

  .nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    width: 100%;
  }

  .nav.is-open a:last-child { border-bottom: none; }

  .menuToggle { display: flex; }

  .courseCard { width: calc(100vw - 80px); max-width: 300px; }
  .carousel__nav { display: none; }
  .carousel { margin: 0 -20px; }

  .hero { min-height: 75vh; }

  .messageCard { padding: 30px 0; }
  .azuyuru { padding: 30px 24px; }
  .azuyuru__kana { font-size: 1.4rem; width: 2rem; padding-right: 12px; }
  .azuyuru__text { font-size: 1rem; }

  .reservationCard { padding: 30px 22px; }
  .article { padding: 30px 22px; }

  .accessInfo dl > div { grid-template-columns: 80px 1fr; gap: 14px; padding: 14px 0; }

  .previewBanner__inner { padding: 10px 40px 10px 16px; font-size: 0.78rem; }
}

/* ============================================
   Reveal Animation（セクション到着時のフェードイン）
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.reveal--delay {
  transition-delay: 0.15s;
}

.reveal--delay2 {
  transition-delay: 0.3s;
}

/* 旧クラスも同じ挙動で動作させる（後方互換） */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ============================================
   Section Indicator（右端のドットナビ）
   ============================================ */
.sectionIndicator {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px 12px;
  background: rgba(255, 253, 247, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(-50%) translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.sectionIndicator.is-ready {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.sectionIndicator a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.sectionIndicator a span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.4;
  transition: all 0.3s ease;
}

.sectionIndicator a:hover span {
  opacity: 0.8;
  background: var(--azur);
}

.sectionIndicator a.is-active span {
  opacity: 1;
  background: var(--azur);
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(31, 78, 107, 0.15);
}

.sectionIndicator a em {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-style: normal;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.95);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 1px solid var(--line-soft);
  text-transform: uppercase;
}

.sectionIndicator a:hover em,
.sectionIndicator a.is-active em {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* 暗セクションでのインジケーター反転 */
.sectionIndicator.is-on-dark {
  background: rgba(29, 26, 22, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

.sectionIndicator.is-on-dark a span { background: rgba(255, 255, 255, 0.5); }
.sectionIndicator.is-on-dark a.is-active span {
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(215, 185, 129, 0.2);
}
.sectionIndicator.is-on-dark a em {
  background: rgba(29, 26, 22, 0.95);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 960px) {
  .sectionIndicator { display: none; }
}
