/* ==================================================
   目次
   01. :root（トークン / タイポスケール）
   02. Base / Utility
   03. Header（＋Scroll Header / Drawer / Hamburger)
   04. FV
   05. Section base
   06. About
   07. Campaign
   08. Course
   09. Drinks
   10. Banquet
   11. Menu
   12. Shop
   13. Footer
   14. Buttons
   ================================================== */


/* ==============================
   01. :root（トークン / タイポスケール）
   ============================== */
:root {
  /* ===== 共通トークン（固定） ===== */
  --text: #1a1a1a;
  --muted: #666;
  --header-bookmark-bg-rgb: 219, 180, 61;
  --header-bookmark-bg: rgba(var(--header-bookmark-bg-rgb), .70);

  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 26px rgba(0, 0, 0, .10);

  --container: 1120px;
  --px: 20px;
  --gap: 16px;

  /* ===== タイポスケール（固定） ===== */
  --fz-body: 15px;
  --fz-small: 13px;
  --fz-h2: 22px;
  --fz-h3: 16px;
  --lh-body: 1.8;
  --lh-tight: 1.35;

  /* ===== FV ===== */
  --fv-minh: 82vh;
  --fv-overlay: rgba(0, 0, 0, .35);
  --fv-copy-bg: transparent;
  --fv-copy-pad-y: 0px;
  --fv-copy-pad-x: 0px;
}

@media (min-width: 1200px) {
  :root {
    --fz-body: 16px;
    --fz-small: 14px;
    --fz-h2: 26px;
    --fz-h3: 16px;
    --fv-minh: 80vh;
  }
}


/* ==============================
   02. Base / Utility
   ============================== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: var(--lh-body);
  font-size: var(--fz-body);
}

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

.container {
  width: min(var(--container), calc(100% - var(--px) * 2));
  margin-inline: auto;
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h2 {
  font-size: var(--fz-h2);
  line-height: var(--lh-tight);
  margin: 0;
}

h3 {
  font-size: var(--fz-h3);
  line-height: var(--lh-tight);
  margin: 0;
}

small {
  font-size: var(--fz-small);
}

.sp {
  display: inline;
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}


/* ==============================
   03. Header（＋Scroll Header / Drawer / Hamburger)
   ============================== */
/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 0;
}

.header-inner {
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  align-self: flex-start;
  background: var(--header-bookmark-bg);
  padding: 12px 24px 36px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
}

.header-logo {
  display: inline-flex;
  align-items: center;
}

.header-bookmark-copy {
  margin: 0;
  color: #fff;
  font-family: "Kaisei Decol", "Noto Sans JP", serif;
  font-weight: 700;
  font-size: clamp(10px, calc(var(--bookmark-w, 160px) * .078), 16px);
  line-height: 1.5;
  letter-spacing: .02em;
  text-align: center;
  text-shadow: none;
  white-space: nowrap;
}

.header-logo img {
  display: block;
  height: 44px;
  width: auto;
}

.header-shop-tag {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  letter-spacing: .05em;
  font-size: var(--fz-small);
}

.header-menu {
  appearance: none;
  border: 0;
  background: none;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .24s ease;
}

.hamburger {
  position: relative;
  width: 22px;
  height: 16px;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
}

.hamburger::before {
  top: 0;
}

.hamburger span {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::after {
  bottom: 0;
}

.site-header .hamburger::before,
.site-header .hamburger::after,
.site-header .hamburger span {
  background: #fff;
}

.header-nav,
.header-nav__sns,
.scroll-header__sns {
  display: none;
}

@media (min-width: 1200px) {
  .header-menu {
    display: none;
  }

  .header-left {
    padding: 16px 32px 46px 24px;
  }

  .header-logo img {
    height: 64px;
    width: auto;
  }

  .site-header {
    padding: 0;
  }

  .header-nav {
    display: flex;
    flex: 1;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
    align-self: flex-start;
    padding: 22px 32px 0;
  }

  .header-nav__link {
    display: inline-block;
    padding: 15px 32px;
    background: url("assets/parts/bg-brush-black.png") center / 100% 100% no-repeat;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: .04em;
  }



  .header-nav__sns:hover {
    opacity: .7;
  }


}

.header-nav__sns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .24s ease;
}

.header-nav__sns img {
  display: block;
  width: 36px;
  height: auto;
  margin-left: 5px;
}

/* Scroll Header */
.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .10);
  transform: translate3d(0, -10px, 0);
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  transition:
    transform .38s cubic-bezier(.2, .8, .2, 1),
    opacity .28s ease,
    filter .38s cubic-bezier(.2, .8, .2, 1);
  will-change: transform, opacity, filter;
}

body.is-scroll-header .scroll-header {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-header {
    transition: none;
    transform: none;
    filter: none;
  }
}


.scroll-header__inner {
  width: min(100%, calc(100% - var(--px) * 2));
  margin-inline: auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.scroll-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-header__logo {
  display: inline-flex;
  align-items: center;
}

.scroll-header__logo img {
  display: block;
  height: 46px;
  width: auto;
}

.scroll-header__shop-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 20px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
}

.scroll-header__nav {
  display: none;
  gap: 40px;
  align-items: center;
}

.scroll-header__link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.scroll-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-header__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  background: var(--deep);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.scroll-header__reserve-icon {
  width: 20px;
  height: 20px;

  background-image: url("assets/parts/calendar.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 768px) {
  .scroll-header__reserve {
    height: 64px;
    padding: 0 26px;
  }

  .scroll-header__reserve-text {
    display: inline;
  }

  .scroll-header__shop-tag {
    font-size: inherit;
  }
}

@media (min-width: 1200px) {
  .scroll-header__inner {
    height: 72px;
  }

  .scroll-header__logo img {
    height: 56px;
  }

  .scroll-header__nav {
    display: flex;
  }

  .scroll-header__sns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity .24s ease;
    margin-right: 12px;
    height: 64px;
  }

  .scroll-header__sns:hover {
    opacity: .7;
  }

  .scroll-header__sns img {
    display: block;
    width: 32px;
    height: auto;
  }

  .header-menu--scroll {
    display: none;
  }

  .scroll-header__shop-tag {
    font-size: 15px;
  }
}

/* Drawer */
html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

:root {
  --scroll-offset: 92px;
}

@media (min-width: 1200px) {
  :root {
    --scroll-offset: 110px;
  }
}

[id] {
  scroll-margin-top: var(--scroll-offset);
}

.drawer {
  overflow: hidden !important;
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility .3s ease;
}

body.is-menu-open .drawer {
  visibility: visible;
  pointer-events: auto;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity .3s ease;
}

body.is-menu-open .drawer__backdrop {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: var(--light);
  overflow-y: auto;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.is-menu-open .drawer__panel {
  transform: translateX(0);
}

.drawer__head {
  width: min(100%, calc(100% - var(--px) * 2));
  margin-inline: auto;
  padding: 7px 0;
  display: grid;
  grid-template-columns: 1fr auto 44px;
  align-items: center;
  gap: 8px;
}

.drawer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.drawer__logo {
  display: inline-flex;
  align-items: center;
}

.drawer__logo img {
  display: block;
  height: 50px;
  width: auto;
}

@media (min-width: 1200px) {
  .drawer__logo img {
    height: 70px;
  }
}

.scroll-header__reserve-text {
  display: none;
}

.drawer .scroll-header__reserve {
  justify-self: center;
  height: 44px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .10);
}

.drawer__close {
  appearance: none;
  border: 0;
  background: none;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  justify-self: end;
}

.drawer__nav {
  width: min(860px, calc(100% - var(--px) * 2));
  margin: 0 auto;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  margin-top: 15px;
}

.drawer__link {
  display: inline-block;
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  outline: none;
}

.drawer__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: min(520px, 72vw);
  height: 2px;
  background: var(--deep);
  opacity: .75;
  transition: transform .22s ease;
}


@media (min-width: 768px) {
  .drawer__nav {
    min-height: calc(100vh - 88px);
    gap: 28px;
  }

  .scroll-header__reserve-text {
    display: inline;
  }

  .drawer__link {
    font-size: 22px;
  }
}

@media (min-width: 1025px) {
  .drawer__nav {
    gap: 32px;
  }
}


/* Hamburger */
.header-menu {
  appearance: none;
  border: 0;
  background: none;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .24s ease;
}

.hamburger {
  position: relative;
  width: 24px;
  height: 16px;
  display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: none;
}

.hamburger::before {
  top: 0;
}

.hamburger span {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::after {
  bottom: 0;
}

body.is-menu-open .header-menu {
  opacity: .32;
}

.drawer__close .hamburger::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.drawer__close .hamburger span {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.drawer__close .hamburger::after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media (min-width: 1200px) {
  .header-menu {
    display: none !important;
  }

  .drawer {
    display: none !important;
  }

  body.is-menu-open {
    overflow: visible;
  }
}


/* ==============================
   04. FV
   ============================== */
.fv {
  position: relative;
  min-height: var(--fv-minh);
  overflow: hidden;
}

.fv-bg,
.fv-bg img,
.fv-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fv-bg {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.fv-bg--pc {
  display: none;
}

.fv-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .fv-bg--pc {
    display: block;
  }

  .fv-bg--video {
    display: none;
  }
}

@media (min-width: 1024px) {
  .fv-bg {
    object-position: center 46%;
  }
}

.fv-overlay {
  position: absolute;
  inset: 0;
  background: var(--fv-overlay);
  z-index: 1;
}

.fv-content {
  position: absolute;
  z-index: 3;
  min-height: var(--fv-minh);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  inset: auto 0 0 0;
  padding: 0;
  width: 100%;
}

.fv-copy {
  width: 100%;
  background: var(--fv-copy-bg);
  padding: 22px 20px;
}

.fv-h1 {
  margin: 0 0 10px;
  font-family: "Kaisei Decol", "Noto Sans JP", serif;
  font-weight: 600;
  color: #fff;
  line-height: var(--lh-tight);
  letter-spacing: .02em;
  font-size: 22px;
}

.fv-catch {
  margin: 0 0 12px;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .03em;
  font-size: 28px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.fv-lead {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: var(--fz-body);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

.fv-cta {
  position: absolute;
  right: 16px;
  bottom: 80px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("assets/parts/bg-brush-white.png") center / 100% 100% no-repeat;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: none;
  padding: 12px 36px 12px 24px;
  min-width: 130px;
}

.fv-cta-icon {
  display: none;
}

.fv-cta-text {
  font-weight: 800;
  letter-spacing: .06em;
}

@media (min-width: 768px) {
  .fv {
    height: 100vh;
    min-height: 100vh;
  }

  .fv-catch {
    font-size: 44px;
  }

  .fv-lead {
    font-size: 18px;
  }

  .fv-content {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 140px 0 52px 48px;
    align-items: center;
  }

  .fv-copy {
    width: min(560px, 100%);
    padding: 0;
    margin: 0;
  }

  .fv-cta {
    right: 48px;
    bottom: 60px;
    padding: 20px 56px 20px 36px;
    min-width: 200px;
  }

  .fv-cta-text {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .fv-content {
    padding-left: 64px;
  }

  .fv-catch {
    font-size: 52px;
  }

  .fv-cta {
    right: 64px;
    bottom: 72px;
  }
}

/* ==============================
   05. Section base
   ============================== */

.bg-white {
  --section-bg: #fff;
  background: var(--section-bg);
}

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

.bg-gray {
  --section-bg: var(--bg-gray, #f4f4f4);
  background: var(--section-bg);
}

.bg-white {
  --section-bg: #fff;
  background: var(--section-bg);
}

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

.bg-gray {
  --section-bg: var(--bg-gray, #f4f4f4);
  background: var(--section-bg);
}

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

.section-triangle {
  position: relative;
}

.section-triangle::after {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 0;
  width: 100%;
  height: 50px;
  background: inherit;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 2;
}

.section-head {
  margin: 0 0 25px;
}

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

.section-kicker {
  margin: 0 0 6px;
}

.section-line {
  display: inline-block;
  width: 84px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
}

.section-kicker--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--deep);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: var(--fz-small);
}

.section-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: var(--fz-h2);
}

.section-lead {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--fz-body);
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}


/* ==============================
   06. About
   ============================== */

.commitment {
  position: relative;
  background: var(--section-bg, #fff);
}


.commitment__text {
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  max-width: 660px;
  margin: 0 auto 22px;
  text-align: left;
}

.commitment__text p {
  margin: 0 0 10px;
}

.commitment__text p:last-child {
  margin-bottom: 0;
}

.commitment-slider {
  position: relative;
  margin-top: 10px;
}

.commitment-slider__viewport {
  overflow: hidden;
  border-radius: 0;
}

.commitment-slider__slide {
  flex: 0 0 78%;
  scroll-snap-align: center;
  border-radius: 0;
  overflow: hidden;
  background: #f4f4f4;
  aspect-ratio: 1 / 1;
}

.commitment-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.commitment-slider__track {
  list-style: none;
  padding: 0 20px;
  margin: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 20px;
}

.commitment-slider__track::-webkit-scrollbar {
  display: none;
}

.commitment-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;

  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;

  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 22px;
  line-height: 1;

  display: grid;
  place-items: center;
  cursor: pointer;
}

.commitment-slider__nav--prev {
  left: 10px;
}

.commitment-slider__nav--next {
  right: 10px;
}

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

.section-head__line {
  display: block;
  width: min(320px, 70%);
  height: 2px;
  margin: 12px auto;
  background: var(--deep);
}


@media (min-width: 768px) {
  .commitment__text {
    font-size: var(--fz-body);
    margin-bottom: 26px;
    text-align: center;
  }

  .commitment-slider__track {
    padding: 0 26px;
    gap: 14px;
    scroll-padding-inline: 26px;
  }

  .commitment-slider__slide {
    flex-basis: 56%;
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 1200px) {
  .commitment-slider__slide {
    flex-basis: 44%;
  }
}



/* ==============================
   07. Campaign
   ============================== */
.campaign-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kicker-svg {
  display: block;
}

.ticket-card {
  --ticket-radius: 14px;
  --ticket-notch: 14px;

  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: var(--ticket-radius);
  background: #fff;

  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);

  -webkit-mask:
    radial-gradient(circle var(--ticket-notch) at 100% 50%,
      transparent calc(var(--ticket-notch) - 0.5px),
      #000 calc(var(--ticket-notch) + 0.5px));
  mask:
    radial-gradient(circle var(--ticket-notch) at 100% 50%,
      transparent calc(var(--ticket-notch) - 0.5px),
      #000 calc(var(--ticket-notch) + 0.5px));
}

.ticket-main {
  flex: 1;
  border-radius: 0 var(--ticket-radius) var(--ticket-radius) 0;
  padding: 18px 16px;
}

.ticket-title {
  margin: 0 0 10px;
  font-weight: 900;
  line-height: 1.55;
  font-size: var(--fz-h3);
}

.ticket-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--fz-body);
}

.ticket-side {
  width: 96px;
  background: var(--main);
  display: grid;
  place-items: center;
  position: relative;
}

.ticket-side::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  border-left: 2px dotted rgba(0, 0, 0, .18);
  pointer-events: none;
}

.ticket-side>* {
  position: relative;
  z-index: 1;
}

.ticket-link {
  appearance: none;
  border: none;
  background: transparent;
  font-family: inherit;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ticket-link:focus-visible {
  outline: none;
}

.ticket-link-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}

.ticket-link-svg {
  width: 12px;
  height: 12px;
}

.ticket-link:hover .ticket-link-icon {
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(2px);
}

.campaign-sheet {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

body.is-campaign-open .campaign-sheet {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.campaign-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .35);
}

.campaign-sheet__panel {
  position: relative;
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, .18);
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translate3d(0, 18px, 0);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

body.is-campaign-open .campaign-sheet__panel {
  transform: translate3d(0, 0, 0);
}

.campaign-sheet__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.campaign-sheet__inner {
  width: min(520px, calc(100% - var(--px) * 2));
  margin: 0 auto;
  padding: 34px 18px 30px;
}

.campaign-sheet__kicker {
  margin: 0 0 8px;
  text-align: center;
  color: var(--deep);
  font-weight: 800;
  letter-spacing: .06em;
  font-size: var(--fz-small);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.campaign-sheet__kicker-icon {
  display: inline-flex;
}

.campaign-sheet__title {
  margin: 0;
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.55;
}

.campaign-sheet__meta {
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.campaign-sheet__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: start;
}

.campaign-sheet__badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--main);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.campaign-sheet__value {
  margin: 0;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .ticket-side {
    width: 120px;
  }

  .ticket-main {
    padding: 22px 22px;
  }

  .campaign-sheet {
    align-items: center;
  }

  .campaign-sheet__panel {
    width: min(720px, calc(100% - 40px));
    border-radius: 22px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
    max-height: min(80vh, 860px);
    transform: translate3d(0, 16px, 0);
  }

  .campaign-sheet__inner {
    padding: 44px 24px 38px;
  }

  .campaign-sheet__title {
    font-size: 20px;
  }

}

@media (min-width: 1200px) {
  .campaign-list {
    margin-inline: auto;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .campaign-list {
    width: min(900px, 100%);
    margin: 0 auto;
  }
}



/* ==============================
   08. Course
   ============================== */
.section-kicker--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--deep);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: var(--fz-small);
}

.kicker-svg {
  display: block;
}

.section-lead {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--fz-body);
  line-height: 1.8;
}

.course-hero {
  position: relative;
  margin: 22px 0 18px;
  display: grid;
  place-items: center;
}

.course-hero__images {
  position: relative;
  width: min(360px, 100%);
  height: 200px;
}

.course-hero__note {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 4;
  width: calc(100% - 32px);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: rgba(0, 0, 0, .72);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .16);
  backdrop-filter: blur(4px);
}

.course-hero__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.course-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-hero__img--main {
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  z-index: 3;
}

.course-hero__img--left {
  left: -6px;
  width: 120px;
  height: 120px;
  opacity: .28;
  filter: saturate(.9);
  z-index: 1;
}

.course-hero__img--right {
  right: -6px;
  width: 120px;
  height: 120px;
  opacity: .28;
  filter: saturate(.9);
  z-index: 1;
}

.course-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 5;
}

.course-nav--prev {
  left: 8px;
}

.course-nav--next {
  right: 8px;
}

.course-nav__icon {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.course-card {
  background: var(--light);
  border-radius: 20px;
  padding: 35px;

  margin-top: -45px;
  position: relative;
  z-index: 0;
}



.course-card__title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: var(--fz-h3);
  line-height: 1.45;
  font-size: 18px;
}

.course-card__text {
  margin: 0 0 14px;
  font-size: var(--fz-body);
  line-height: 1.85;
}

.course-card__price {
  margin: 0 0 12px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 0px;
}


.course-card__old {
  color: rgba(0, 0, 0, .45);
  text-decoration: line-through;
  font-weight: 700;
}

.course-card__new {
  color: var(--deep);
  font-weight: 900;
  font-size: 22px;
}

.course-card__tax {
  font-size: var(--fz-body);
  font-weight: 800;
  margin-left: 4px;
}

.course-card__offer {
  margin: 0 0 16px;
  text-align: center;
  color: var(--deep);
  font-weight: 900;
}

.course-card__old:empty,
.course-card__offer:empty,
.sheet__old:empty {
  display: none;
}

.course-card__detail-wrap {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.course-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  font-size: 16px;
}


.course-card__detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin: 12px auto 0;
  width: fit-content;

  font-weight: 900;
  text-decoration: none;

  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}


.course-card__detail-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid #1A1A1A;
  background: transparent;
}


.course-detail-svg {
  display: block;
}

.course-cta {
  margin-top: 18px;
  display: grid;
  place-items: center;
}

.course-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #1A1A1A;
  color: var(--text);
}

.course-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.course-cta__lead {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .04em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.shop-reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: clamp(34px, 4vw, 48px) auto 0;
}

.shop-reserve__lead {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .04em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.course-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 24px;
  border-radius: 999px;

  background: var(--deep);
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;

  min-width: 220px;
}

.course-cta-icon {
  display: grid;
  place-items: center;
}

.course-cta-icon img {
  display: block;
}

@media (max-width: 767px) {

  .course-cta__lead,
  .shop-reserve__lead {
    font-size: 14px;
  }

  .shop-reserve {
    margin-top: 30px;
  }
}

.course-hero {
  position: relative;
  margin: 22px auto 18px;
  width: min(760px, 100%);
  display: grid;
  place-items: center;
}

.course-slider {
  width: min(620px, 100%);
  height: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-slider .slick-list {
  overflow: visible;
}

.course-slider .slick-track {
  display: flex;
  align-items: center;
}

.course-slider .slick-slide {
  outline: none;
}

.course-slider .course-slide {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  opacity: .28;
  filter: saturate(.9);
  transform: scale(.92);
  transition:
    width .28s cubic-bezier(.2, .8, .2, 1),
    height .28s cubic-bezier(.2, .8, .2, 1),
    transform .28s cubic-bezier(.2, .8, .2, 1),
    opacity .22s ease,
    filter .22s ease;
}

.course-slider .course-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-slider .slick-center .course-slide {
  width: 180px;
  height: 180px;
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.course-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 26, .14);
  background: rgba(255, 255, 255, .85);
  color: #1A1A1A;
  display: grid;
  place-items: center;
  z-index: 5;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  -webkit-tap-highlight-color: transparent;
}

.course-nav:active {
  transform: translateY(-50%) scale(.98);
}

.course-nav--prev {
  left: 8px;
}

.course-nav--next {
  right: 8px;
}

.course-nav__svg {
  display: block;
}


@media (min-width: 768px) {

  .course-card__title {
    font-size: 20px;
  }

  .course-card__price {
    justify-content: flex-start;
    text-align: left;
  }

  .course-card__offer {
    text-align: left;
  }

  .course-card__detail-wrap {
    justify-content: flex-start;
  }

  .course-card__detail {
    margin: 0px;
  }
}

@media (min-width: 768px) {
  .course-slider {
    height: 260px;
  }

  .course-slider .course-slide {
    width: 132px;
    height: 132px;
  }

  .course-slider .slick-center .course-slide {
    width: 198px;
    height: 198px;
  }

  .course-nav--prev {
    left: 0;
  }

  .course-nav--next {
    right: 0;
  }
}

.course-hero__img,
.course-card {
  transition: opacity .18s ease, transform .22s cubic-bezier(.2, .8, .2, 1);
  will-change: opacity, transform;
}

.course-hero__img--main {
  transition: opacity .18s ease, transform .28s cubic-bezier(.2, .8, .2, 1);
}

.course-hero.is-changing .course-hero__img {
  opacity: .35;
}

.course-hero.is-changing .course-hero__img--left,
.course-hero.is-changing .course-hero__img--right {
  transform: translateY(-50%) translateY(2px);
}

.course-hero.is-changing .course-hero__img--main {
  transform: translate(-50%, -50%);
}

.course-hero.is-changing~.course-card {
  opacity: .35;
  transform: translateY(2px);
}

.course-hero__img--main {
  transform: translate(-50%, -50%) scale(1);
}

.course-hero.pop .course-hero__img--main {
  transform: translate(-50%, -50%) scale(1.2);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .course-card {
    width: min(900px, 100%);
    margin: -45px auto 0;
  }

  .course-hero {
    width: min(900px, 100%);
    margin: 22px auto 18px !important;
  }
}

/* Sheet モーダル*/
html.is-sheet-open,
body.is-sheet-open {
  height: auto;
  overflow: hidden;
}

body.is-sheet-open {
  overflow: hidden;
  width: 100%;
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 2147483647;

  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 16px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

body.is-sheet-open .sheet {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .35);
}

.sheet__panel {
  position: relative;

  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, .18);

  width: 100%;
  max-height: 75dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  transform: translate3d(0, 18px, 0);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

body.is-sheet-open .sheet__panel {
  transform: translate3d(0, 0, 0);
}


.sheet__close {
  position: absolute;
  top: 20px;
  right: 20px;

  font-size: 20px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}

.sheet__inner {
  width: min(520px, calc(100% - var(--px) * 2));
  margin: 0 auto;
  padding: 40px 24px 32px;
}

.sheet__media {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.sheet__img {
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  object-fit: cover;
  display: block;
}

.sheet__title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.sheet__desc {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sheet__price {
  text-align: center;
  margin-bottom: 28px;
}

.sheet__old {
  text-decoration: line-through;
  color: #777;
  margin-right: 8px;
}

.sheet__new {
  font-weight: 900;
  font-size: 1.4em;
  color: var(--deep);
}

.sheet__meta {
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.sheet__meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
}

dl {
  margin: 0;
}

@media (min-width: 768px) {

  .sheet {
    align-items: center;
    padding-top: 0;
  }

  .sheet__panel {
    width: min(720px, calc(100% - 40px));
    border-radius: 22px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
    max-height: min(86vh, 900px);

    transform: translate3d(0, 16px, 0);
  }

  body.is-sheet-open .sheet__panel {
    transform: translate3d(0, 0, 0);
  }
}






/* ==================================================
   09. Drinks
   ================================================== */
.drinks-hero {
  width: min(520px, 100%);
  margin: 18px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.drinks-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.drinks-panel {
  width: min(720px, 100%);
  margin: 18px auto 0;
  display: grid;
  gap: 12px;
}

.drinks-accordion {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
  overflow: hidden;
}


.drinks-accordion__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  font-weight: 900;
  -webkit-user-select: none;
  user-select: none;
}

.drinks-accordion__summary::-webkit-details-marker {
  display: none;
}

.drinks-accordion__icon {
  display: grid;
  place-items: center;
  color: var(--text);
  transition: transform .2s ease;
  transform: rotate(-90deg);
}

.drinks-accordion[open] .drinks-accordion__icon {
  transform: rotate(0deg);
}


.drinks-accordion__body {
  padding: 0 18px 18px;
}

.drinks-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.drinks-item dt {
  font-weight: 900;
  margin: 0 0 4px;
}

.drinks-item dd {
  margin: 0;
  color: var(--text);
}

.drinks-more {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(0, 0, 0, .10);
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
}

.drinks-more__icon {
  display: grid;
  place-items: center;
}

.drinks-recommend {
  width: min(720px, 100%);
  margin: 30px auto 0;
  text-align: center;
  font-weight: 900;
}

.drinks-upgrade-lead {
  margin: 0 0 14px;
  font-weight: 900;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .drinks-panel {
    width: min(900px, 100%);
    margin: 18px auto 0px;
  }
}


/* ==================================================
   10. Banquet
   ================================================== */
.banquet-hero {
  width: min(520px, 100%);
  margin: 18px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.banquet-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.banquet-cards {
  width: min(720px, 100%);
  margin: 18px auto 0;
  display: grid;
  gap: 16px;
}

.banquet-card {
  display: flex;
  gap: 18px;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
  padding: 22px 22px;
}


.banquet-card__no {
  font-weight: 900;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1;
  color: var(--main);
  flex-shrink: 0;
}

.banquet-card__body {
  display: grid;
  gap: 8px;
}

.banquet-card__title {
  font-weight: 900;
  margin: 0;
  font-size: 16px;
}

.banquet-card__text {
  margin: 0;
  color: var(--muted);
}

.banquet-policy {
  margin: 30px auto 0;
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .10);
}

.banquet-policy__title {
  margin-bottom: 0px;
  font-weight: 900;
  font-size: 18px;
}

.banquet-policy__group {
  padding-top: 0px;
  border-radius: var(--radius);
  background: var(--bg-gray);
}

.banquet-policy__sub {
  margin-bottom: 12px;
  font-weight: 900;
}

.banquet-policy__list {
  padding-left: 1.2em;
}

.banquet-policy__list li {
  line-height: 1.8;
}

.banquet-policy__list li strong {
  font-weight: 900;
  color: var(--accent);
}

.banquet-policy__notes {
  padding-top: 5px;
  border-top: 1px solid var(--border);
  opacity: 0.8;
}

.banquet-policy__note+.banquet-policy__note {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .banquet-card__title {
    font-size: 18px;
  }

  .banquet-policy__title {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .banquet-cards {
    width: 100%;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .banquet-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .banquet-card__no {
    margin-bottom: 12px;
  }

  .banquet-card {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .banquet-card__no {
    margin-bottom: 12px;
  }

  .banquet-card__title {
    text-align: center;
    font-size: 20px;
  }

  .banquet-card__text {
    text-align: left;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .banquet-cards {
    width: min(900px, 100%);
    margin: 30px auto 0;
  }

  .banquet-policy {
    width: min(900px, 100%);
  }

}



/* ==================================================
   11. Menu
   ================================================== */
.menu-cards {
  width: min(720px, 100%);
  margin: 18px auto 0;
  display: grid;
  gap: 14px;
}

.menu-card {
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menu-card__img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.menu-card__body {
  padding: 14px 16px 16px;
}

.menu-card__title {
  font-weight: 900;
  margin: 0 0 6px;
}

.menu-card__text {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: min(900px, 100%);
  }

  .menu-card {
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .banquet-cards {
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .menu-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: min(1100px, 100%);
  }
}

/* ==================================================
   12. Shop
   ================================================== */
.shop-grid {
  width: min(860px, 100%);
  margin: 18px auto 0;
  display: grid;
  gap: 25px;
}

.shop-rows {
  display: grid;
  gap: 10px;
}

.shop-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: start;
}

.light-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--main);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.shop-value {
  margin: 0;
}

.shop-tel {
  color: var(--text);
  text-decoration: none;
}

.shop-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f4f4f4;
  aspect-ratio: 16 / 11;
}

.shop-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 1200px) {
  .shop-grid {
    width: min(1100px, 100%);
    margin: 30px auto 0;
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 32px;
  }

  .shop-rows {
    gap: 14px;
  }

  .shop-row {
    grid-template-columns: 110px 1fr;
    gap: 16px;
  }

  .light-badge {
    height: 32px;
    padding: 0 14px;
  }

  .shop-map {
    aspect-ratio: 16 / 10;
  }
}



/* ==================================================
   13. Footer
   ================================================== */
.site-footer {
  background: #fffaf0;
  color: var(--text);
  padding: 20px 0px;
}

.site-footer__inner {
  width: min(var(--container), calc(100% - var(--px) * 2));
  margin-inline: auto;
  display: grid;
  place-items: center;
  gap: 16px;
}

.site-footer__logo img {
  display: block;
  height: 56px;
  width: auto;
}

.site-footer__copy {
  color: #fff;
  margin: 0;
  text-align: center;
  opacity: .9;
}



/* ==============================
   14. Buttons
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: var(--fz-body);
}

.btn--primary {
  background: var(--deep);
  color: #fff;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .12);
}

.btn--ghost {
  background: #fff;
  color: var(--deep);
  border-color: rgba(0, 0, 0, .12);
}

.btn--wide {
  width: min(360px, 100%);
  padding: 14px 18px;
}

@media (min-width: 1200px) {
  .btn--wide {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* ==============================
   Reserve Shine Effect
   ============================== */
.course-cta-btn,
.scroll-header__reserve {
  overflow: hidden;
  isolation: isolate;
  animation: reserve-pulse 2.8s ease-in-out infinite;
}

@keyframes reserve-pulse {
  0% {
    transform: scale(1);
  }

  4% {
    transform: scale(1.03);
  }

  8% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}


.course-cta-btn::before,
.scroll-header__reserve::before {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(115deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.45) 45%,
      rgba(255, 255, 255, 0.75) 50%,
      rgba(255, 255, 255, 0.45) 55%,
      rgba(255, 255, 255, 0) 70%);
  transform: translateX(-120%);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: reserve-shine 2.8s ease-in-out infinite;
}

@keyframes reserve-shine {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  35% {
    transform: translateX(120%);
    opacity: 0;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .course-cta-btn::before,
  .scroll-header__reserve::before {
    animation: none;
    opacity: 0;
  }
}

/* ==============================
   Brand skin
   ============================== */
:root {
  --paper-strong: #fff;
  --wood-1: #6a3b1d;
  --wood-2: #3d1d0e;
  --wood-3: #7b4b25;
  --board-border: rgba(255, 255, 255, .34);
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 18px 38px rgba(40, 18, 6, .18);
  --fv-copy-bg: rgba(60, 31, 15, .58);
  --fv-overlay: rgba(38, 18, 6, .18);
}

body {
  color: var(--text);
  background-color: #43200f;
  background-image:
    linear-gradient(rgba(36, 17, 7, .08), rgba(36, 17, 7, .08)),
    url("assets/parts/bg-wood.jpg");
  background-image:
    linear-gradient(rgba(36, 17, 7, .08), rgba(36, 17, 7, .08)),
    image-set(
      url("assets/parts/bg-wood.webp") type("image/webp"),
      url("assets/parts/bg-wood.jpg") type("image/jpeg")
    );
  background-repeat: repeat;
  background-size: 600px auto;
  background-position: top center;
}

body,
.ticket-title,
.campaign-sheet__title,
.course-card__title,
.banquet-card__title,
.banquet-policy__title,
.banquet-policy__sub,
.menu-card__title,
.sheet__title,
.drawer__link,
.fv-catch,
.section-title,
.section-head__title {
  font-family: "Kaisei Decol", "Noto Sans JP", serif;
}

.bg-white,
.bg-light,
.bg-gray,
.section {
  background: transparent;
}

.section {
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 28px max(10px, calc((100% - min(var(--container), calc(100% - var(--px) * 2))) / 2 - 18px));
  z-index: -1;
  border: 1px solid var(--board-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .96)),
    repeating-linear-gradient(115deg, rgba(59, 29, 16, .025) 0 2px, transparent 2px 10px);
  box-shadow: 0 20px 42px rgba(32, 14, 4, .16);
}

.section-triangle::after {
  display: none;
}

.section-head {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 34px;
  padding: 12px 30px 14px;
  position: relative;
  z-index: 1;
}

.section-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, .96)),
    repeating-linear-gradient(-8deg, rgba(59, 29, 16, .035) 0 2px, transparent 2px 9px);
  clip-path: polygon(3% 12%, 96% 0, 100% 76%, 93% 100%, 7% 93%, 0 24%);
  filter: drop-shadow(0 10px 16px rgba(60, 31, 15, .12));
}

.section-head__line,
.section-line {
  display: none;
}

.section-kicker {
  margin-bottom: 2px;
}

.section-title,
.section-head__title {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0;
}

.section-lead,
.commitment__text,
.ticket-note,
.course-card__text,
.banquet-card__text,
.menu-card__text,
.shop-value,
.drinks-item dd,
.drinks-upgrade-lead {
  color: var(--text);
}

.site-header {
  padding-top: 0;
}

.header-inner {
  align-items: flex-start;
}

.scroll-header__inner {
  align-items: center;
}

.scroll-header__left,
.scroll-header__right {
  align-items: center;
}

.header-left {
  --bookmark-w: clamp(150px, 14vw, 200px);
  width: var(--bookmark-w);
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
  align-self: flex-start;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: calc(var(--bookmark-w) * .075);
  padding: calc(var(--bookmark-w) * .22) calc(var(--bookmark-w) * .13) calc(var(--bookmark-w) * .34);
  background: var(--header-bookmark-bg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
  box-shadow: 0 16px 24px rgba(45, 20, 5, .22);
}

.header-logo img {
  width: calc(var(--bookmark-w) * .66);
  height: auto;
}

.header-shop-tag,
.scroll-header__shop-tag {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: "Kaisei Decol", "Noto Sans JP", serif;
  font-weight: 600;
  font-size: clamp(15px, calc(var(--bookmark-w) * .105), 22px);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.header-menu .hamburger::before,
.header-menu .hamburger::after,
.header-menu .hamburger span {
  background: #fff;
}

.scroll-header {
  background: rgba(255, 250, 240, .96);
  border-bottom: 1px solid rgba(99, 50, 15, .14);
}

.scroll-header__left {
  gap: 14px;
}

.scroll-header__shop-tag {
  color: var(--text);
}

.scroll-header__link {
  color: var(--text);
  font-family: "Kaisei Decol", "Noto Sans JP", serif;
}

.scroll-header__reserve,
.course-cta-btn {
  position: relative;
  background:
    linear-gradient(180deg, #dcb12c, #c89413);
  color: #321507;
  border-radius: 0;
  clip-path: polygon(4% 12%, 96% 0, 100% 82%, 91% 100%, 0 90%);
  box-shadow: 0 16px 28px rgba(54, 25, 6, .22);
}

.fv {
  height: 100vh;
  min-height: 100vh;
}

.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 9, 2, .12), transparent 46%, rgba(20, 9, 2, .1));
}

.fv-bg img {
  opacity: 1;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 21, 7, .06), rgba(47, 21, 7, .2));
}

.fv-content {
  z-index: 3;
  justify-content: flex-start;
  align-items: center;
}

.fv-copy {
  width: min(520px, calc(100% - 40px));
  padding: 24px 28px;
  background: transparent;
}

.fv-catch {
  color: #fffdf8;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(30, 12, 3, .42);
}

.fv-lead {
  color: rgba(255, 252, 244, .96);
  text-shadow: 0 3px 14px rgba(30, 12, 3, .4);
}

.fv-cta {
  right: 7vw;
  bottom: 11vh;
  width: 260px;
  height: 94px;
  border-radius: 0;
  clip-path: polygon(3% 20%, 96% 0, 100% 80%, 91% 100%, 0 88%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .94));
  color: var(--text);
  flex-direction: row;
  gap: 12px;
}

.fv-cta .icon-img {
  filter: sepia(1) saturate(2) hue-rotate(350deg);
}

.drawer__panel {
  background:
    linear-gradient(90deg, rgba(198, 157, 45, .9) 0 34%, rgba(55, 28, 14, .82) 34% 100%);
}

.drawer__head {
  position: relative;
  z-index: 1;
  padding-top: 18px;
}

.drawer__logo img {
  height: 54px;
}

.drawer .scroll-header__reserve {
  display: none;
}

.drawer__close .hamburger::before,
.drawer__close .hamburger::after {
  background: #fffdf8;
}

.drawer__nav {
  width: min(100%, calc(100% - 34vw));
  margin-left: auto;
  padding: 54px 28px 40px;
  align-items: flex-start;
  gap: 20px;
}

.drawer__link {
  color: #fffdf8;
  font-weight: 600;
  font-size: var(--fz-h2);
  text-align: left;
}

.drawer__link::after {
  display: none;
}

.commitment__text,
.drinks-recommend {
  color: var(--text);
}

.commitment-slider__viewport,
.drinks-hero,
.banquet-hero,
.shop-map,
.menu-card,
.drinks-accordion,
.banquet-card,
.banquet-policy,
.ticket-card,
.course-card {
  border: 1px solid rgba(99, 50, 15, .18);
}

.ticket-card,
.course-card,
.drinks-accordion,
.banquet-card,
.banquet-policy,
.menu-card {
  background: rgba(255, 255, 255, .97);
}

.ticket-side,
.light-badge,
.campaign-sheet__badge {
  background: linear-gradient(180deg, #dcb23a, #c9941f);
  color: #321507;
}

.course-card {
  border-radius: 0;
  outline: 1px solid rgba(255, 255, 255, .34);
  outline-offset: -12px;
}

.course-card__new,
.course-card__offer,
.campaign-sheet__kicker,
.section-kicker--icon {
  color: #c66d00;
}

.course-arrow,
.course-nav {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(99, 50, 15, .22);
  color: var(--text);
}

.campaign-sheet__backdrop,
.sheet__backdrop {
  background: rgba(28, 13, 5, .56);
}

.campaign-sheet__panel,
.sheet__panel {
  background: var(--paper-strong);
  border: 1px solid rgba(99, 50, 15, .18);
}

.sheet__panel {
  border-radius: 34px 34px 0 0;
}

.sheet__media {
  display: none;
}

.sheet__inner {
  padding-top: 92px;
}

.sheet__title,
.sheet__desc,
.sheet__price {
  text-align: left;
}

.sheet__title {
  font-weight: 600;
}

.sheet__new {
  color: #d06f00;
}

.sheet__heading {
  display: inline-flex;
  margin: 8px 0 16px;
  padding: 8px 22px;
  color: #fffdf8;
  background: linear-gradient(180deg, #6a3514, #4b220e);
  clip-path: polygon(5% 14%, 96% 0, 100% 82%, 90% 100%, 0 88%);
}

.site-footer {
  background: #fffaf0;
  border-top: 1px solid rgba(99, 50, 15, .14);
}

.section {
  padding: 88px 0;
}

.section::before {
  inset: 18px 10px;
}

.section-head {
  margin-bottom: 28px;
  padding-inline: 24px;
}

.site-header {
  padding-top: 0;
}

.header-inner {
  padding-right: 16px;
}

.site-header .header-menu {
  margin-top: 22px;
}

.header-left {
  --bookmark-w: clamp(150px, 44vw, 176px);
}

.drawer__logo img {
  height: 46px;
}

.header-logo img {
  width: calc(var(--bookmark-w) * .62);
  height: auto;
}

.fv {
  min-height: 100svh;
}

.fv-content {
  inset: 0;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(18px, 3.5svh, 32px);
  padding: 0 18px calc(30px + env(safe-area-inset-bottom, 0px));
}

.fv-copy {
  width: min(84vw, 420px);
  position: static;
  top: auto !important;
  left: auto;
  margin: 0;
  padding: 0;
  transform: none;
}

.fv-cta {
  position: static;
  align-self: flex-end;
  width: min(68vw, 250px);
  height: clamp(78px, 14svh, 100px);
}

.fv-cta-text {
  font-size: 20px;
}

.drawer__nav {
  width: 66%;
  min-height: calc(100vh - 82px);
  margin-top: 8px;
}

.drawer__link {
  font-size: var(--fz-h2);
}

.course-card {
  padding: 32px 24px;
}

.sheet__panel {
  max-height: 86dvh;
}

.sheet__inner {
  width: min(100%, calc(100% - 32px));
  padding: 88px 10px 32px;
}

.sheet__meta-row,
.campaign-sheet__row {
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 768px) {
  .section {
    padding-block: 92px;
  }

  .section::before {
    inset-block: 34px;
  }

  .header-inner {
    padding-right: 0;
  }

  .site-header .header-menu {
    margin-top: 0;
  }

  .header-left {
    --bookmark-w: clamp(150px, 14vw, 200px);
  }

  .drawer__logo img {
    height: 54px;
  }

  .fv-content {
    width: 100%;
    padding: 0;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }

  .fv-copy {
    width: min(560px, 55vw);
    margin: 0;
    padding: 0;
    position: absolute;
    left: clamp(64px, 6vw, 120px);
    top: 65% !important;
    transform: translateY(-50%);
    background: transparent;
  }

  .fv-cta {
    position: absolute;
    align-self: auto;
    width: 260px;
    height: 94px;
  }

  .sheet__panel {
    border-radius: 34px;
  }

  .sheet__inner {
    width: min(520px, calc(100% - var(--px) * 2));
    padding: 40px 24px 32px;
  }

  .sheet__meta-row {
    grid-template-columns: 110px 1fr;
    gap: 14px;
  }

  .campaign-sheet__row {
    grid-template-columns: 120px 1fr;
    gap: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header .header-inner {
    padding-right: 20px;
  }

  .site-header .header-menu {
    margin-top: 22px;
  }
}

@media (min-width: 1200px) {
  .header-logo img {
    width: calc(var(--bookmark-w) * .62);
    height: auto;
  }
}

/* ==============================
   Wood layout skin
   ============================== */
:root {
  --text: #fff;
  --muted: rgba(255, 255, 255, .82);
  --main: #d6a51f;
  --deep: #3b1d10;
  --light: transparent;
  --paper: transparent;
  --paper-strong: #fff;
  --line-white: rgba(255, 255, 255, .72);
  --panel-dark: rgba(40, 19, 8, .62);
  --panel-dark-strong: rgba(28, 12, 4, .78);
  --shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

body {
  color: #fff;
  background-color: #3a1b0b;
  background-image: url("assets/parts/bg-wood.jpg");
  background-image: image-set(
    url("assets/parts/bg-wood.webp") type("image/webp"),
    url("assets/parts/bg-wood.jpg") type("image/jpeg")
  );
  background-repeat: repeat-y, repeat-y;
  background-size: 100% auto, 100% auto;
  background-position: top center, top center;
}

.bg-white,
.bg-light,
.bg-gray,
.section {
  background: transparent !important;
}

.section {
  padding-block: 92px;
}

.section>.container {
  position: relative;
  z-index: 2;
}

.section-deco {
  position: absolute;
  z-index: 1;
  display: block;
  opacity: .72 !important;
  width: var(--deco-w);
  aspect-ratio: var(--deco-r);
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.section-deco--tableware {
  --deco-r: 716 / 592;
  background-image: url("assets/parts/deco-tableware.png");
}

.section-deco--cheers {
  --deco-r: 501 / 328;
  background-image: url("assets/parts/deco-cheers-text.png");
}

.section-deco--wine {
  --deco-r: 575 / 712;
  background-image: url("assets/parts/deco-wine-glass.png");
}

.section-deco--yummy {
  --deco-r: 560 / 361;
  background-image: url("assets/parts/deco-yummy-text.png");
}

.section-deco--commitment-tableware {
  --deco-w: clamp(200px, 23vw, 320px);
  top: 10px;
  left: max(20px, calc(50% - 520px));
  transform: rotate(-7deg);
}


.section-deco--courses-wine {
  --deco-w: clamp(160px, 18vw, 240px);
  left: 50%;
  top: 8px;
  transform: translateX(-50%) rotate(-5deg);
}

.section-deco--menu-wine {
  --deco-w: clamp(160px, 18vw, 240px);
  left: 50%;
  top: 10px;
  transform: translateX(-50%) rotate(-5deg);
}

.section-deco--menu-yummy {
  --deco-w: clamp(260px, 30vw, 420px);
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%) rotate(-5deg);
}

.section-deco--shop-cheers {
  --deco-w: clamp(250px, 28vw, 390px);
  left: 50%;
  top: 10px;
  transform: translateX(-50%) rotate(6deg);
}

.section::before,
.section-triangle::after {
  display: none !important;
}

.section-head {
  width: fit-content;
  max-width: min(100%, 560px);
  min-width: min(78vw, 260px);
  margin: 0 auto 36px;
  padding: 34px 44px 38px;
  color: #3b1d10;
  text-align: center;
}

.section-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/parts/bg-brush-white.png") center / 100% 100% no-repeat;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .18));
  clip-path: none;
}

.section-kicker {
  display: none;
}

.section-title,
.section-head__title {
  color: #3b1d10;
  font-weight: 700;
  text-shadow: none;
}

.section-lead,
.commitment__text,
.ticket-note,
.course-card__text,
.banquet-card__text,
.menu-card__text,
.shop-value,
.shop-tel,
.drinks-item dd,
.drinks-upgrade-lead,
.drinks-recommend,
.campaign-sheet__value,
.sheet__desc,
.sheet__list,
.banquet-policy__list,
.banquet-policy__notes {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.commitment__text {
  max-width: 760px;
}

.commitment-slider__viewport,
.drinks-hero,
.banquet-hero,
.shop-map,
.course-hero__img {
  box-shadow: var(--shadow);
}

.commitment-slider__viewport {
  box-shadow: none;
}

.commitment-slider__viewport,
.drinks-hero,
.banquet-hero,
.shop-map,
.menu-card,
.drinks-accordion,
.banquet-card,
.banquet-policy,
.ticket-card,
.course-card {
  border: 0;
  outline: 0;
}

.commitment-slider__track {
  transform: translateZ(0);
  will-change: scroll-position;
}

.commitment-slider__slide {
  border: 2px solid var(--line-white);
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
  backface-visibility: hidden;
}

.commitment-slider__nav,
.course-nav {
  background: var(--main);
  color: #3b1d10;
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}

.ticket-card,
.course-card,
.drinks-accordion,
.banquet-card,
.banquet-policy,
.menu-card {
  background: transparent;
  border: 0;
  color: #fff;
  box-shadow: none;
}

.ticket-card {
  -webkit-mask: none;
  mask: none;
  background: var(--panel-dark);
}

.ticket-title,
.course-card__title,
.banquet-card__title,
.banquet-policy__title,
.banquet-policy__sub,
.menu-card__title,
.drinks-accordion__label,
.drinks-item dt {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

.ticket-side {
  background: rgba(214, 165, 31, .94);
  color: #3b1d10;
}

.ticket-link {
  color: #3b1d10;
}

.ticket-link-icon {
  background: rgba(59, 29, 16, .22);
}

.course-card {
  margin-top: -36px;
  padding: 38px 28px 30px;
  background: linear-gradient(180deg, rgba(34, 14, 4, .2), rgba(34, 14, 4, .5));
  outline: none;
}

.course-card__old {
  color: rgba(255, 255, 255, .55);
}

.course-card__new,
.course-card__offer {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.course-arrow {
  background: transparent;
  border-color: var(--line-white);
  color: #fff;
}

.course-cta-btn,
.scroll-header__reserve,
.fv-cta {
  background: var(--main);
  color: #3b1d10;
}

.fv-cta {
  background: url("assets/parts/bg-brush-white.png") center / 100% 100% no-repeat;
}

.drinks-accordion {
  background: var(--panel-dark);
}

.drinks-accordion__summary {
  color: #fff;
}

.drinks-accordion__body {
  border-top: 1px solid rgba(255, 255, 255, .24);
  padding-top: 18px;
}

.drinks-accordion__icon {
  color: #fff;
}

.banquet-card,
.banquet-policy {
  background: var(--panel-dark);
}

.banquet-card__no {
  color: var(--main);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.banquet-policy__group {
  background: transparent;
}

.banquet-policy__notes {
  border-top-color: rgba(255, 255, 255, .28);
}

#campaign .ticket-card,
#drinks .drinks-accordion,
#banquet .banquet-card,
#banquet .banquet-policy {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .82);
  box-shadow: none;
  color: #fff;
}

#campaign .ticket-card {
  -webkit-mask: none;
  mask: none;
}

#banquet .banquet-card,
#banquet .banquet-policy {
  position: relative;
  border: 0;
}

#banquet .banquet-card::before,
#banquet .banquet-policy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#banquet .banquet-policy::before {
  background-image: url("assets/parts/chalk-frame-rounded.png");
}

#banquet .banquet-card::before {
  background-image: url("assets/parts/chalk-frame-square.png");
}

#banquet .banquet-card>*,
#banquet .banquet-policy>* {
  position: relative;
  z-index: 1;
}

#campaign .ticket-title,
#campaign .ticket-note,
#drinks .drinks-accordion__label,
#drinks .drinks-item dt,
#drinks .drinks-item dd,
#drinks .drinks-upgrade-lead,
#banquet .banquet-card__title,
#banquet .banquet-card__text,
#banquet .banquet-policy__title,
#banquet .banquet-policy__sub,
#banquet .banquet-policy__list,
#banquet .banquet-policy__notes {
  color: #fff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .58);
}

#campaign .ticket-side {
  background: rgba(214, 165, 31, .88);
  color: #3b1d10;
}

#campaign .ticket-side::before {
  border-left-color: rgba(59, 29, 16, .22);
}

#drinks .drinks-accordion__summary {
  color: #fff;
}

#drinks .drinks-accordion__body {
  border-top-color: rgba(255, 255, 255, .32);
}

#drinks .drinks-accordion__icon {
  color: #fff;
}

#banquet .banquet-card__no {
  color: var(--main);
  text-shadow: 0 3px 10px rgba(0, 0, 0, .58);
}

#banquet .banquet-policy__group {
  background: transparent;
  border: 0;
}

#banquet .banquet-policy__notes {
  border-top-color: rgba(255, 255, 255, .28);
}

.menu-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: #1f0d04;
}

.menu-card__img {
  height: 100%;
  min-height: 260px;
  aspect-ratio: auto;
}

.menu-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(20, 8, 2, .9));
}

.shop-row {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
  padding-bottom: 12px;
}

.light-badge,
.campaign-sheet__badge {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line-white);
  border-radius: 0;
}

.site-footer {
  background: rgba(34, 14, 4, .86);
}

.scroll-header {
  background: rgba(37, 16, 6, .92);
  border-bottom-color: rgba(255, 255, 255, .24);
}

.scroll-header__shop-tag,
.scroll-header__link {
  color: #fff;
}

.scroll-header__reserve-icon {
  filter: brightness(0) sepia(1) saturate(2) hue-rotate(352deg);
}

.campaign-sheet__panel,
.sheet__panel {
  background:
    linear-gradient(rgba(38, 16, 6, .94), rgba(38, 16, 6, .94)),
    url("assets/parts/bg-wood.jpg");
  background:
    linear-gradient(rgba(38, 16, 6, .94), rgba(38, 16, 6, .94)),
    image-set(
      url("assets/parts/bg-wood.webp") type("image/webp"),
      url("assets/parts/bg-wood.jpg") type("image/jpeg")
    );
  background-repeat: repeat-y, repeat-y;
  background-size: 100% auto, 100% auto;
  color: #fff;
  border: 2px solid var(--line-white);
}

.campaign-sheet__title,
.campaign-sheet__kicker,
.sheet__title,
.sheet__price,
.sheet__meta-row,
.sheet__new {
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.campaign-sheet__close,
.sheet__close {
  color: #fff;
}

.sheet__media {
  display: none;
}

.sheet__heading {
  display: inline-flex;
  margin: 8px 0 16px;
  padding: 14px 34px 18px;
  color: #3b1d10;
  background: url("assets/parts/bg-brush-white.png") center / 100% 100% no-repeat;
  clip-path: none;
}

.section {
  padding-block: 72px;
}

.section-deco {
  z-index: 1;
}

.section-deco--commitment-tableware {
  --deco-w: 340px;
  top: 0px;
  left: -22px;
}

.section-deco--commitment-cheers {
  --deco-w: min(380px, calc(100vw - 18px));
  left: 18%;
  bottom: -150px;
  transform: rotate(-5deg);
}

.section-deco--courses-wine {
  --deco-w: 265px;
  top: auto;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%) rotate(-5deg);
}

.section-deco--menu-wine {
  --deco-w: 255px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
}

.section-deco--menu-yummy {
  --deco-w: min(380px, calc(100vw - 18px));
  left: auto;
  right: -2px;
  bottom: -2px;
  transform: rotate(-5deg);
}

.section-deco--shop-cheers {
  --deco-w: min(345px, calc(100vw - 28px));
  top: 2px;
  left: 12px;
  transform: rotate(5deg);
}

.section-head {
  margin-bottom: 28px;
  padding: 30px 32px 34px;
}

.course-card {
  padding: 34px 22px 28px;
}

#courses {
  padding-top: 72px;
}

#courses .section-head {
  margin-bottom: 20px;
}

#courses .course-hero {
  z-index: 4;
  width: 100vw;
  margin: 22px 0 18px 50%;
  transform: translateX(-50%);
}

#courses .course-hero__images {
  width: min(430px, 100vw);
  height: 260px;
}

#courses .course-hero__img {
  box-shadow: none;
}

#courses .course-hero__img--main {
  width: 236px;
  height: 236px;
}

#courses .course-hero__img--left,
#courses .course-hero__img--right {
  width: 154px;
  height: 154px;
  opacity: .56;
  filter: saturate(.95);
}

#courses .course-hero__img--left {
  left: max(6px, calc(50% - 196px));
}

#courses .course-hero__img--right {
  right: max(6px, calc(50% - 196px));
}

#courses .course-nav {
  top: 52%;
  width: 42px;
  height: 42px;
  box-shadow: none;
}

#courses .course-nav--prev {
  left: max(38px, calc(50% - 172px));
}

#courses .course-nav--next {
  right: max(38px, calc(50% - 172px));
}

#courses .course-card {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: -45px auto 0;
  padding: 38px 28px 30px;
  background: transparent;
  border: 0;
  color: #fff;
}

#courses .course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url("assets/parts/chalk-frame-square.png") center / 100% 100% no-repeat;
}

#courses .course-card__title {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.35;
  text-align: left;
}

#courses .course-card__text {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

#courses .course-card__price {
  justify-content: center;
  margin-bottom: 10px;
}

#courses .course-card__new {
  font-size: 22px;
}

#courses .course-card__offer {
  margin-bottom: 18px;
  font-size: 16px;
}

#courses .course-card__detail-wrap {
  justify-content: center;
  margin-top: 8px;
}

#courses .course-card__detail {
  margin-top: 0;
  color: #fff;
  font-size: 16px;
}

#courses .course-arrow {
  width: 30px;
  height: 30px;
  color: #fff;
}

#menu .section-deco--courses-wine {
  --deco-w: clamp(330px, 36vw, 520px);
  top: auto;
  left: 16%;
  bottom: 108px;
  opacity: .62;
  z-index: 1;
}

@media (max-width: 767px) {
  #courses {
    padding-top: 66px;
    padding-bottom: 54px;
  }

  #courses .section-head {
    padding: 24px 34px 30px;
    min-width: min(78vw, 300px);
  }

  #courses .section-title {
    font-size: 24px;
    line-height: 1.35;
  }

  #courses .course-card {
    width: calc(100% - 20px);
  }

}

@media (min-width: 768px) {
  #courses {
    padding-top: 84px;
  }

  #courses .section-head {
    margin-bottom: 22px;
  }

  #courses .course-hero {
    width: min(580px, 100%);
    margin: 22px auto 18px;
    transform: none;
  }

  #courses .course-hero__images {
    width: min(560px, 100%);
    height: 280px;
  }

  #courses .course-hero__img--main {
    width: 240px;
    height: 240px;
  }

  #courses .course-hero__img--left,
  #courses .course-hero__img--right {
    width: 160px;
    height: 160px;
  }

  #courses .course-hero__img--left {
    left: 44px;
  }

  #courses .course-hero__img--right {
    right: 44px;
  }

  #courses .course-nav--prev {
    left: 28px;
  }

  #courses .course-nav--next {
    right: 28px;
  }

  #courses .course-card {
    width: min(900px, 100%);
    margin: -45px auto 0;
    padding: 38px 28px 30px;
  }

  #courses .course-card__title {
    font-size: 20px;
  }

  #courses .course-card__text {
    font-size: 16px;
  }

  #courses .course-card__new {
    font-size: 22px;
  }

  #courses .course-card__offer {
    font-size: 16px;
  }

  #courses .course-card__detail {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  #courses .course-hero {
    width: 620px;
  }

  #courses .course-hero__images {
    width: 600px;
    height: 290px;
  }

  #courses .course-hero__img--main {
    width: 250px;
    height: 250px;
  }

  #courses .course-hero__img--left,
  #courses .course-hero__img--right {
    width: 170px;
    height: 170px;
  }

  #courses .course-card {
    width: min(900px, 100%);
  }

  #courses .course-card__title {
    font-size: 20px;
  }
}

.menu-card,
.menu-card__img {
  min-height: 230px;
}

@media (min-width: 768px) {
  .section {
    padding-block: 92px;
  }

  .section-head {
    margin-bottom: 36px;
    padding: 34px 44px 38px;
  }

  .course-card {
    padding: 38px 28px 30px;
  }

  .menu-card,
  .menu-card__img {
    min-height: 260px;
  }

  .section-deco--commitment-tableware {
    --deco-w: clamp(280px, 27vw, 320px);
    left: 24px;
  }

  .section-deco--commitment-cheers {
    --deco-w: clamp(320px, 30vw, 360px);
    bottom: -90px;
    left: 60%;
  }

  .section-deco--courses-wine {
    --deco-w: clamp(210px, 18vw, 230px);
    top: 8px;
  }

  .section-deco--menu-wine {
    --deco-w: clamp(210px, 18vw, 230px);
    left: 50%;
    top: 10px;
    transform: translateX(-50%) rotate(-5deg);
  }

  .section-deco--menu-yummy {
    --deco-w: clamp(320px, 30vw, 360px);
    bottom: 10px;
  }

  .section-deco--shop-cheers {
    --deco-w: clamp(300px, 28vw, 340px);
  }
}

#menu .menu-card {
  position: relative;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-rows: auto 1fr;
}

#menu .menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: url("assets/parts/chalk-frame-rounded.png") center / 100% 100% no-repeat;
}

#menu .menu-card__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(180px, 17vw, 250px);
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
}

#menu .menu-card__body {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding: clamp(18px, 1.45vw, 24px) clamp(22px, 2vw, 32px) clamp(28px, 2.2vw, 38px);
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  row-gap: 10px;
  background: transparent;
  border-radius: 0;
}

#menu .menu-card__title {
  margin: 0;
  color: #fff;
  font-family: "Kaisei Decol", "Noto Sans JP", serif;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .08em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .56);
}

#menu .menu-card__text {
  margin: 0;
  color: #fff;
  font-family: "Kaisei Decol", "Noto Sans JP", serif;
  font-size: clamp(12px, .92vw, 15px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .08em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .58);
}

@media (min-width: 1200px) {
  #menu .menu-card__body {
    padding-top: 24px;
    padding-bottom: 38px;
    row-gap: 12px;
  }

  #menu .menu-card__title {
    min-height: 1.35em;
  }
}

@media (max-width: 767px) {
  #menu .menu-card__img {
    height: clamp(210px, 56vw, 330px);
  }

  #menu .menu-card__body {
    padding: 20px 24px 34px;
  }

  #menu .menu-card__title {
    font-size: 23px;
  }

  #menu .menu-card__text {
    font-size: 14px;
    line-height: 1.6;
  }
}

#menu .section-deco {
  z-index: 2;
  opacity: .82;
}

#menu .container {
  position: relative;
  z-index: 3;
}

#menu .section-deco--courses-wine {
  --deco-w: clamp(230px, 21vw, 330px);
  top: -28px;
  left: 15px;
  bottom: auto;
  transform: rotate(-9deg);
}

#menu .section-deco--menu-yummy {
  --deco-w: clamp(360px, 38vw, 580px);
  top: auto;
  right: 8px;
  bottom: clamp(8px, 2vw, 28px);
  left: auto;
  transform: rotate(-5deg);
}

@media (max-width: 767px) {
  #menu .section-deco {
    opacity: .74;
  }

  #menu .section-deco--courses-wine {
    --deco-w: min(270px, 60vw);
    top: -45px;
    left: -22px;
    transform: rotate(-12deg);
  }

  #menu .section-deco--menu-yummy {
    --deco-w: min(410px, 100vw);
    right: -26px;
    bottom: -85px;
    transform: rotate(-6deg);
  }
}

@media (min-width: 1200px) {
  #menu .section-deco--menu-yummy {
    bottom: -85px;
  }

  #menu .section-deco--courses-wine {
    top: -140px;
  }
}

@media (min-width: 1200px) {
  .section-deco--commitment-tableware {
    --deco-w: clamp(200px, 23vw, 320px);
    top: 10px;
    left: max(20px, calc(50% - 620px));
  }

  .section-deco--commitment-cheers {
    --deco-w: clamp(260px, 30vw, 420px);
    left: 80%;
    bottom: -125px;
    transform: translateX(-50%) rotate(-5deg);
  }

  .section-deco--courses-wine,
  .section-deco--menu-wine {
    --deco-w: clamp(160px, 18vw, 240px);
    left: 50%;
    top: 8px;
    bottom: 20px !important;
    transform: translateX(-50%) rotate(-5deg);
  }

  .section-deco--menu-wine {
    top: 10px;
  }

  .section-deco--menu-yummy {
    --deco-w: clamp(260px, 30vw, 420px);
    left: 50%;
    right: auto;
    bottom: 10px;
    transform: translateX(-50%) rotate(-5deg);
  }

  .section-deco--shop-cheers {
    --deco-w: clamp(250px, 28vw, 390px);
    left: 50%;
    top: 10px;
    transform: translateX(-50%) rotate(6deg);
  }
}

/* ==============================
   FV
   ============================== */
@media (min-width: 1200px) {
  .fv {
    min-height: 0;
    height: 100svh;
    max-height: none;
    overflow: hidden;
  }

  .fv-bg,
  .fv-bg img,
  .fv-bg video,
  .fv-content {
    min-height: 0;
    height: 100%;
  }

  .fv-bg {
    object-position: center 35%;
  }

  .fv-bg img {
    object-position: center center;
  }

  .fv-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .26), rgba(0, 0, 0, .04) 34%, rgba(0, 0, 0, 0) 62%),
      linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .08));
  }

  .fv::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .14));
  }

  .site-header {
    padding: 0;
  }

  .header-inner {
    width: 100%;
    align-items: flex-start;
    padding: 0 36px 0 0;
  }

  .header-left {
    --bookmark-w: 220px;
    background: var(--header-bookmark-bg);
    box-shadow: none;
  }

  .header-bookmark-copy {
    font-size: 16px;
    line-height: 1.45;
  }

  .header-logo img {
    width: calc(var(--bookmark-w) * .62);
    height: auto;
  }

  .header-shop-tag {
    margin-top: 2px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
  }

  .header-menu {
    display: none !important;
  }

  .header-nav {
    display: flex;
    flex: 1;
    gap: 18px;
    row-gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
    align-self: flex-start;
    padding: 40px 22px 0;
  }

  .header-nav__link {
    display: inline-block;
    padding: 15px 32px;
    background: url("assets/parts/bg-brush-black.png") center / 100% 100% no-repeat;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: .04em;
  }

  .fv-content {
    width: 100%;
    padding: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .fv-copy {
    width: min(560px, 44vw);
    margin: 0;
    padding: 0;
    position: absolute;
    left: clamp(64px, 6vw, 120px);
    top: 70% !important;
    transform: translateY(-50%);
    background: transparent;
  }

  .fv-catch {
    margin-bottom: 22px;
    color: #fff;
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: 0;
    font-size: clamp(34px, 3.2vw, 48px);
    text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
  }

  .fv-lead {
    color: #fff;
    line-height: 1.75;
    font-size: clamp(16px, 1.55vw, 22px);
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, .58);
  }

  .fv-cta {
    right: 6.2vw;
    bottom: 9.6%;
    width: clamp(280px, 25vw, 410px);
    height: clamp(86px, 7.9vw, 126px);
    padding: 0 42px;
    border-radius: 0;
    clip-path: none;
    background: url("assets/parts/bg-brush-white.png") center / 100% 100% no-repeat;
    color: #3b1d10;
    box-shadow: none;
    flex-direction: row;
    justify-content: center;
  }

  .fv-cta-icon {
    display: none;
  }

  .fv-cta-text {
    color: #3b1d10;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    text-shadow: none;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .header-inner {
    align-items: flex-start;
    padding: 0 28px 0 0;
  }

  .header-left {
    --bookmark-w: 220px;
  }

  .header-bookmark-copy {
    font-size: 16px;
    line-height: 1.45;
  }

  .header-menu {
    display: none !important;
  }

  .drawer {
    display: none !important;
  }

  .header-nav {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
    align-content: flex-start;
    gap: 8px 18px;
    flex: 1;
    align-self: flex-start;
    padding: 22px 24px 0;
  }

  .header-nav__link {
    display: inline-block;
    padding: 15px 32px;
    background: url("assets/parts/bg-brush-black.png") center / 100% 100% no-repeat;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: .04em;
    text-align: center;
  }

  .header-nav__link:nth-child(5) {
    grid-column: 2;
  }

  .header-nav__link:nth-child(6) {
    grid-column: 3;
  }

  .header-nav__sns {
    grid-column: 4;
    align-self: center;
    justify-self: flex-start;
    margin-left: 4px;
  }
}

.drawer {
  --drawer-bookmark-w: clamp(150px, 44vw, 176px);
  left: auto;
  right: 0;
  width: calc(100vw - var(--drawer-bookmark-w));
  background: transparent;
}

.drawer__backdrop {
  display: none;
}

.drawer__panel {
  inset: 0;
  width: 100%;
  z-index: 1;
  min-height: 100dvh;
  overflow: hidden;
  background: rgba(52, 25, 9, .72);
  backdrop-filter: blur(2px);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}

body.is-menu-open .drawer__panel {
  transform: translateX(0);
}

.drawer__head,
.drawer__nav {
  position: relative;
  z-index: 2;
}

.drawer__head {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

.drawer__brand {
  display: none;
}

.drawer__close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 8px;
}

.drawer__close .hamburger {
  width: 28px;
  height: 28px;
}

.drawer__close .hamburger::before,
.drawer__close .hamburger::after,
.drawer__close .hamburger span {
  height: 3px;
  background: #fff;
}

.drawer__nav {
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 104px 18px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.drawer__link {
  padding: 0;
  color: #fff;
  font-family: "Kaisei Decol", "Noto Sans JP", serif;
  font-size: clamp(18px, 5.2vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .08em;
  text-align: left;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .48);
}

.drawer__link::after {
  display: none;
}

.drawer__sns {
  display: inline-flex;
  margin-top: 12px;
  transition: opacity .24s ease;
}

.drawer__sns:hover {
  opacity: .7;
}

.drawer__sns img {
  display: block;
  width: 44px;
  height: auto;
}

.drawer .scroll-header__reserve {
  position: absolute;
  right: 28px;
  bottom: max(28px, env(safe-area-inset-bottom));
  z-index: 3;
  width: 188px;
  height: 78px;
  padding: 0 32px;
  background: url("assets/parts/bg-brush-white.png") center / 100% 100% no-repeat;
  color: #3b1d10;
  box-shadow: none;
}

.drawer .scroll-header__reserve-icon {
  display: none;
}

.drawer .scroll-header__reserve-text {
  display: inline;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .08em;
}

@media (min-width: 768px) {
  .drawer {
    --drawer-bookmark-w: clamp(150px, 14vw, 200px);
    left: auto;
    right: 0;
    width: calc(100vw - var(--drawer-bookmark-w));
    background: transparent;
  }

  .drawer__backdrop {
    display: none;
  }

  .drawer__panel {
    inset: 0;
    width: 100%;
    z-index: 1;
    min-height: 100dvh;
    overflow: hidden;
    background: rgba(52, 25, 9, .72);
    backdrop-filter: blur(2px);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.2, .8, .2, 1);
  }

  body.is-menu-open .drawer__panel {
    transform: translateX(0);
  }

  .drawer__head,
  .drawer__nav {
    position: relative;
    z-index: 2;
  }

  .drawer__head {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }

  .drawer__brand {
    display: none;
  }

  .drawer__close {
    position: absolute;
    top: 28px;
    right: 32px;
    z-index: 3;
    width: 48px;
    height: 48px;
    padding: 8px;
  }

  .drawer__close .hamburger {
    width: 32px;
    height: 32px;
  }

  .drawer__close .hamburger::before,
  .drawer__close .hamburger::after,
  .drawer__close .hamburger span {
    height: 3px;
    background: #fff;
  }

  .drawer__nav {
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 148px 56px 0 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
  }

  .drawer__link {
    padding: 0;
    color: #fff;
    font-family: "Kaisei Decol", "Noto Sans JP", serif;
    font-size: clamp(24px, 3.8vw, 34px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .08em;
    text-align: left;
    text-shadow: 0 3px 12px rgba(0, 0, 0, .48);
  }

  .drawer__link::after {
    display: none;
  }

  .drawer .scroll-header__reserve {
    display: none;
  }
}

.drawer__panel {
  inset: 0 0 auto;
  min-height: 0;
  height: auto;
  overflow: visible;
  padding-bottom: 54px;
}

.drawer__nav {
  padding-bottom: 0;
}

.drawer .scroll-header__reserve {
  position: relative;
  right: auto;
  bottom: auto;
  margin: 24px 24px 0 auto;
}

@media (min-width: 768px) {
  .drawer__panel {
    min-height: 0;
    padding-bottom: 68px;
    border-radius: 0 0 0 24px;
  }

  .drawer__nav {
    padding-bottom: 0;
  }
}

/* Course detail modal: restore style_bk behavior */
html.is-sheet-open,
body.is-sheet-open {
  height: auto;
  overflow: hidden;
}

body.is-sheet-open {
  overflow: hidden;
  width: 100%;
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

body.is-sheet-open .sheet {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .35);
}

.sheet__panel {
  position: relative;
  width: 100%;
  max-height: 75dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  color: #1a1a1a;
  border: 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, .18);
  transform: translate3d(0, 18px, 0);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

body.is-sheet-open .sheet__panel {
  transform: translate3d(0, 0, 0);
}

.sheet__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #1a1a1a;
  font-size: 20px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}

.sheet__inner {
  width: min(520px, calc(100% - var(--px) * 2));
  margin: 0 auto;
  padding: 40px 24px 32px;
}

.sheet__media {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.sheet__img {
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  object-fit: cover;
  display: block;
}

.sheet__title {
  margin-bottom: 16px;
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  text-shadow: none;
}

.sheet__desc {
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.8;
  text-align: center;
  text-shadow: none;
}

.sheet__price {
  margin-bottom: 28px;
  color: #1a1a1a;
  text-align: center;
  text-shadow: none;
}

.sheet__old {
  color: #777;
  text-decoration: line-through;
  margin-right: 8px;
}

.sheet__new {
  color: var(--deep);
  font-weight: 900;
  font-size: 1.4em;
  text-shadow: none;
}

.sheet__meta {
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.sheet__meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  color: #1a1a1a;
  text-shadow: none;
}

.sheet .light-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--main);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.sheet__heading {
  display: block;
  margin: 8px 0 16px;
  padding: 0;
  color: #1a1a1a;
  background: none;
  clip-path: none;
  font-size: 18px;
  font-weight: 900;
}

.sheet__list {
  color: #1a1a1a;
  line-height: 1.8;
  text-shadow: none;
}

.sheet__list p {
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .sheet {
    align-items: center;
    padding-top: 0;
  }

  .sheet__panel {
    width: min(720px, calc(100% - 40px));
    max-height: min(86vh, 900px);
    border-radius: 22px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
    transform: translate3d(0, 16px, 0);
  }

  .sheet__title,
  .sheet__desc,
  .sheet__price {
    text-align: center;
  }
}

/* Course detail modal: compact white design */
#courseSheet.sheet {
  justify-content: center;
  align-items: flex-end;
  padding: 0;
}

#courseSheet .sheet__backdrop {
  background: rgba(0, 0, 0, .52);
}

#courseSheet .sheet__panel {
  width: 100%;
  max-height: 86dvh;
  background: #fff;
  color: #3b1d10;
  border: 0;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -18px 44px rgba(0, 0, 0, .24);
}

#courseSheet .sheet__inner {
  width: min(100%, 430px);
  padding: 72px 28px 38px;
}

#courseSheet .sheet__media {
  display: none;
}

#courseSheet .sheet__close {
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  color: #666;
  font-size: 34px;
  font-weight: 300;
}

#courseSheet .sheet__title {
  margin: 0 0 22px;
  color: #3b1d10;
  font-family: "Kaisei Decol", "Noto Sans JP", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  text-shadow: none;
}

#courseSheet .sheet__desc {
  margin: 0 0 26px;
  color: #3b1d10;
  font-weight: 700;
  line-height: 1.85;
  text-align: left;
  text-shadow: none;
}

#courseSheet .sheet__price {
  margin: 0 0 34px;
  color: #d06f00;
  text-align: center;
  text-shadow: none;
}

#courseSheet .sheet__old {
  color: rgba(59, 29, 16, .48);
  font-weight: 700;
  text-decoration: line-through;
}

#courseSheet .sheet__new {
  color: #d06f00;
  font-size: 24px;
  font-weight: 900;
  text-shadow: none;
}

#courseSheet .sheet__meta {
  margin: 0 0 56px;
  gap: 14px;
}

#courseSheet .sheet__meta-row {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 14px;
  align-items: center;
  color: #3b1d10;
  font-weight: 800;
  text-shadow: none;
}

#courseSheet .sheet__meta-row dd {
  margin: 0;
}

#courseSheet .sheet .light-badge,
#courseSheet .light-badge {
  height: auto;
  min-height: 34px;
  padding: 6px 8px;
  border: 2px solid #3b1d10;
  border-radius: 0;
  background: #fff;
  color: #3b1d10;
  font-weight: 900;
}

#courseSheet .sheet__heading {
  display: inline-flex;
  align-items: center;
  min-width: 136px;
  min-height: 58px;
  margin: 0 0 18px;
  padding: 14px 24px 18px;
  color: #fff;
  background: url("assets/parts/bg-brush-black.png") center / 100% 100% no-repeat;
  font-size: 16px;
  font-weight: 900;
}

#courseSheet .sheet__list {
  color: #3b1d10;
  font-weight: 700;
  line-height: 1.65;
  text-shadow: none;
}

#courseSheet .sheet__list p {
  margin: 0 0 8px;
}

#courseSheet .sheet__list p.sheet__list-spacer {
  height: 14px;
  margin: 0;
  font-size: 0;
  line-height: 0;
}

@media (min-width: 768px) {
  #courseSheet.sheet {
    align-items: center;
  }

  #courseSheet .sheet__panel {
    width: min(760px, calc(100% - 64px));
    max-height: min(82vh, 720px);
    border-radius: 12px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
  }

  #courseSheet .sheet__inner {
    width: 100%;
    padding: 70px 56px 46px;
  }

  #courseSheet .sheet__title {
    max-width: 620px;
    font-size: 26px;
  }
}

/* ==============================
   Section heading refinement
   ============================== */
.section-head {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 auto 40px !important;
  padding: 0 !important;
  color: #fff;
  text-align: center;
}

.section-head::before {
  display: none !important;
  content: none !important;
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
  clip-path: none !important;
}

.section-title,
.section-head__title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0 17px;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: .07em;
  text-shadow:
    0 4px 14px rgba(0, 0, 0, .7),
    0 0 18px rgba(255, 255, 255, .08);
}

.section-title::before,
.section-head__title::before {
  display: none !important;
  content: none !important;
}

.section-title::after,
.section-head__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block !important;
  width: calc(100% - 1.2em);
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  transform: translateX(-50%);
}

.section-head__line,
.section-line {
  display: none !important;
}

.section-kicker {
  display: flex !important;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .72) !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.section-kicker .kicker-icon {
  display: none;
}

#commitment .section-head::after {
  content: none;
  display: none;
}

.section-lead {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 700;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .56);
}

.commitment__text {
  max-width: 1000px !important;
  margin-inline: auto !important;
  color: #fff !important;
  font-size: clamp(17px, 1.75vw, 22px) !important;
  font-weight: 700 !important;
  line-height: 1.95 !important;
  letter-spacing: .06em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .64);
}

@media (max-width: 767px) {
  .section-head {
    margin-bottom: 32px !important;
    padding: 0 !important;
  }

  .section-title,
  .section-head__title {
    padding-bottom: 15px;
    font-size: clamp(25px, 6.6vw, 32px);
    letter-spacing: .045em;
  }

  .section-title::before,
  .section-head__title::before {
    display: none !important;
  }

  .section-title::after,
  .section-head__title::after {
    width: calc(100% - .9em);
    height: 2px;
  }

  .commitment__text {
    font-size: 16px !important;
    line-height: 1.9 !important;
    letter-spacing: .025em;
  }
}

/* ==============================
   Typography balance
   ============================== */
#courses .section-title {
  font-size: clamp(px, 3vw, 38px) !important;
  line-height: var(--lh-tight) !important;
}

.course-drink-note {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .045em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .58);
}

.course-drink-note span {
  font-size: 1.28em;
  font-weight: 800;
}

.ticket-title,
#courses .course-card__title,
#banquet .banquet-card__title,
#banquet .banquet-policy__title,
#menu .menu-card__title,
.drinks-accordion__label {
  font-size: clamp(1px, 1.45vw, 22px) !important;
  line-height: 1.45;
  letter-spacing: .045em;
}

#courses .course-card__text,
#campaign .ticket-note,
#drinks .drinks-item dd,
#drinks .drinks-upgrade-lead,
#banquet .banquet-card__text,
#banquet .banquet-policy__list,
#banquet .banquet-policy__notes,
#menu .menu-card__text,
.shop-value {
  font-size: clamp(14px, 1.15vw, 16px) !important;
  line-height: 1.8;
  letter-spacing: .035em;
  font-weight: 700;
}

#drinks .drinks-item dt {
  font-size: clamp(15px, 1.2vw, 17px) !important;
  line-height: 1.5;
  letter-spacing: .045em;
}

#courses .course-card__new {
  font-size: clamp(21px, 1.8vw, 26px) !important;
}

#courses .course-card__offer,
#courses .course-card__detail,
.ticket-link {
  font-size: clamp(14px, 1.1vw, 16px) !important;
}

@media (max-width: 767px) {
  #courses .section-title {
    font-size: clamp(25px, 6.6vw, 32px) !important;
  }

  .ticket-title,
  #courses .course-card__title,
  #banquet .banquet-card__title,
  #banquet .banquet-policy__title,
  #menu .menu-card__title,
  .drinks-accordion__label {
    font-size: clamp(17px, 4.6vw, 21px) !important;
    line-height: 1.45;
  }

  #courses .course-card__text,
  #campaign .ticket-note,
  #drinks .drinks-item dd,
  #drinks .drinks-upgrade-lead,
  #banquet .banquet-card__text,
  #banquet .banquet-policy__list,
  #banquet .banquet-policy__notes,
  #menu .menu-card__text,
  .shop-value {
    font-size: 14px !important;
    line-height: 1.75;
    letter-spacing: .025em;
  }
}

/* ==============================
   Header Instagram alignment
   ============================== */
.header-nav__sns {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.header-nav__sns img {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0;
  object-fit: contain;
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .header-nav {
    grid-template-columns: repeat(4, max-content) 40px;
    align-items: center;
    column-gap: 18px;
  }

  .header-nav__link:nth-child(n) {
    grid-column: auto;
  }

  .header-nav__sns {
    grid-column: 5;
    align-self: center;
    justify-self: start;
  }
}
