/* ==================================================
   目次
   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;

  --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, .18);
  --fv-copy-bg: rgba(26, 26, 26, .35);
  --fv-copy-pad-y: 22px;
  --fv-copy-pad-x: 24px;
}

@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%;
}

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: none;
}

@media (max-width: 767px) {
  .sp {
    display: inline;
  }
}


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

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

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

.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;
}

.header-menu {
  appearance: none;
  border: 0;
  background: none;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.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;
}

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

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

  .site-header {
    padding: 18px 0;
  }
}

/* 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: 64px;
  padding: 0 26px;
  background: var(--deep);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

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

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


@media (max-width: 767px) {
  .scroll-header__reserve {
    height: 44px;
    padding: 0 14px;
  }

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

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

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

  .scroll-header__nav {
    display: flex;
  }

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

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

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
  height: 100%;
}

body.is-menu-open {
  position: fixed;
  width: 100%;
  left: 0;
}

: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;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

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

.drawer__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: transparent;
}

.drawer__panel {
  position: absolute;
  inset: 0;
  background: var(--light);
  overflow-y: auto;
  padding: 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;
  }
}

.drawer__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;
  white-space: nowrap;
}

.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;
}

.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:
    transform .28s cubic-bezier(.2, .8, .2, 1),
    opacity .18s ease,
    top .28s cubic-bezier(.2, .8, .2, 1),
    bottom .28s cubic-bezier(.2, .8, .2, 1);
  will-change: transform, opacity, top, bottom;
}

.hamburger::before {
  top: 0;
}

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

.hamburger::after {
  bottom: 0;
}

body.is-menu-open .hamburger::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.is-menu-open .hamburger span {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

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

.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 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fv-bg img {
  object-fit: cover;
  opacity: .85;
}

.fv-content {
  position: relative;
  z-index: 2;
  min-height: var(--fv-minh);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 120px 0 36px;
  width: min(var(--container), calc(100% - var(--px) * 2));
  margin-inline: auto;
}

.fv-copy {
  width: min(760px, 100%);
  background: var(--fv-copy-bg);
  padding: var(--fv-copy-pad-y) var(--fv-copy-pad-x);
}

.fv-h1 {
  margin: 0 0 10px;
  font-family: "Shippori Mincho", "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 10px;
  color: #fff;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .02em;
  font-size: 24px;
}

.fv-lead {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: var(--fz-body);
  font-size: 15px;
}

.fv-cta {
  position: absolute;
  right: 0;
  bottom: 90px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.fv-cta .icon-img {
  width: 20px;
  height: 20px;
  display: block;
}

.fv-cta-text {
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 15px;
}

@media (max-width: 767px) {
  .fv-content {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .fv-copy {
    width: 100%;
    border-radius: 0;
    padding: 22px 24px;
  }

  .fv-cta {
    right: 16px;
    bottom: 156px;
    width: 110px;
    height: 110px;
  }
}

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

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

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

  .fv-content {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .fv-copy {
    margin: 0 0 90px;
  }

  .fv-cta .icon-img {
    width: 35px;
    height: 35px;
  }

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

  .fv-cta {
    right: 40px;
    bottom: 65px;
    width: 165px;
    height: 165px;
  }

  .fv-content {
    padding: 140px 0 52px;
  }
}

/* ==============================
   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;
  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;
  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;
  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;
}

html.is-campaign-open,
body.is-campaign-open {
  height: 100%;
}

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

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__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__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;
  justify-content: center;
}

.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;
  font-weight: 900;
  text-decoration: none;

  min-width: 220px;
}

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

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

.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: 100%;
}

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

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

  display: flex;
  justify-content: center;

  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: 90vh;
  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;
  }

  .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);
  }
}

@media (max-width: 767px) {
  .sheet {
    align-items: flex-end;
    padding-top: 16px;
  }

  .sheet__panel {
    max-height: 75dvh;
  }
}






/* ==================================================
   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: var(--deep);
  color: #fff;
  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 {
  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;
  }
}