@charset "UTF-8";
/* [接頭語なし] base-parameter
   役割：設計の「材料」。HTMLクラスに直接使わない定数と共通トークン。
   内容：カラー変数（raw / semantic）、フォント変数、行間・文字間などの基準値。 */
:root {
  /* Raw colors */
  --raw-peach-400: #ff8d6e;
  --raw-peach-300: #f0ba98;
  --raw-cream-100: #fff4e2; /* 定義白 */
  --raw-coral-500: #ec5f55;
  --raw-text-dark: #444444;
  /* Semantic colors */
  --color-bg: var(--raw-cream-100);
  --color-text: var(--raw-text-dark);
  --color-primary: var(--raw-coral-500);
  --color-secondary: var(--raw-peach-400);
  --color-accent-soft: var(--raw-peach-300);
  --color-text-inverse: var(--raw-cream-100);
  /* Font families */
  --font-base: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-round: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-display: "Train One", "Zen Kaku Gothic New", sans-serif;
  /* Common spacing / line-height tokens */
  --ls-wide: 0.1em;
  --lh-tight: 1.5; /* for former "auto" */
  --lh-loose: 2;
}

/* [tp-] base-typography
   役割：文字の「型」。サイト全体で使うタイポグラフィルール。
   内容：本文の基準設定、見出し・本文・ラベル向けのタイポクラス（t-*）。 */
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: 16px;
  line-height: var(--lh-loose);
  letter-spacing: var(--ls-wide);
}

/* Display */
.t-display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 102px;
  line-height: var(--lh-loose);
  letter-spacing: var(--ls-wide);
}

.t-display-lg {
  font-family: var(--font-round);
  font-weight: 500;
  font-size: 48px;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-wide);
}

/* Headings */
.t-hero-ja {
  font-family: var(--font-base);
  font-weight: 900;
  font-size: 48px;
  line-height: var(--lh-loose);
  letter-spacing: var(--ls-wide);
}

.t-heading-lg {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 40px;
  line-height: var(--lh-loose);
  letter-spacing: var(--ls-wide);
}

.t-heading-md {
  font-family: var(--font-base);
  font-weight: 900;
  font-size: 24px;
  line-height: var(--lh-loose);
  letter-spacing: var(--ls-wide);
}

/* Body */
.t-body-lg {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 20px;
  line-height: var(--lh-loose);
  letter-spacing: var(--ls-wide);
}

.t-body-md {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 16px;
  line-height: var(--lh-loose);
  letter-spacing: var(--ls-wide);
}

.t-body-md-tight {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 16px;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-wide);
}

/* UI text */
.t-label {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 16px;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-wide);
}

.t-caption {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 14px;
  line-height: var(--lh-loose);
  letter-spacing: var(--ls-wide);
}

.t-micro {
  font-family: var(--font-base);
  font-weight: 900;
  font-size: 12px;
  line-height: var(--lh-loose);
  letter-spacing: var(--ls-wide);
}

/* Responsive line break helpers (PIXLA-style) */
br[class*=tp-br-max-],
br[class*=tp-br-min-] {
  display: none;
}

@media (max-width: 1440px) {
  br.tp-br-max-1440 {
    display: inline;
  }
}
@media (max-width: 1200px) {
  br.tp-br-max-1200 {
    display: inline;
  }
}
@media (max-width: 900px) {
  br.tp-br-max-900 {
    display: inline;
  }
}
@media (max-width: 768px) {
  br.tp-br-max-768 {
    display: inline;
  }
}
@media (max-width: 540px) {
  br.tp-br-max-540 {
    display: inline;
  }
}
@media (min-width: 1440px) {
  br.tp-br-min-1440 {
    display: inline;
  }
}
@media (min-width: 1200px) {
  br.tp-br-min-1200 {
    display: inline;
  }
}
@media (min-width: 900px) {
  br.tp-br-min-900 {
    display: inline;
  }
}
@media (min-width: 768px) {
  br.tp-br-min-768 {
    display: inline;
  }
}
@media (min-width: 540px) {
  br.tp-br-min-540 {
    display: inline;
  }
}
/* Range controls (min + max) */
@media (min-width: 540px) and (max-width: 768px) {
  br.tp-br-min-540.tp-br-max-768 {
    display: inline;
  }
}
@media (min-width: 540px) and (max-width: 900px) {
  br.tp-br-min-540.tp-br-max-900 {
    display: inline;
  }
}
@media (min-width: 540px) and (max-width: 1200px) {
  br.tp-br-min-540.tp-br-max-1200 {
    display: inline;
  }
}
@media (min-width: 540px) and (max-width: 1440px) {
  br.tp-br-min-540.tp-br-max-1440 {
    display: inline;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  br.tp-br-min-768.tp-br-max-900 {
    display: inline;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  br.tp-br-min-768.tp-br-max-1200 {
    display: inline;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  br.tp-br-min-768.tp-br-max-1440 {
    display: inline;
  }
}
@media (min-width: 900px) and (max-width: 1200px) {
  br.tp-br-min-900.tp-br-max-1200 {
    display: inline;
  }
}
@media (min-width: 900px) and (max-width: 1440px) {
  br.tp-br-min-900.tp-br-max-1440 {
    display: inline;
  }
}
@media (min-width: 1200px) and (max-width: 1440px) {
  br.tp-br-min-1200.tp-br-max-1440 {
    display: inline;
  }
}
/* [f-] base-frame
   役割：空間の「枠組み」。コンテンツ幅と寄せ方の制御。
   内容：innerWrap 系（full / 1080 / 1280 / r80 / l80）、凡例用レイアウト補助。 */
.site-main {
  display: grid;
  gap: 40px;
  padding-block: 40px;
}

.innerWrap {
  display: block;
}

.innerWrap-full {
  width: 100%;
}

.innerWrap-1080 {
  width: min(100% - 32px, 1080px);
  margin-inline: auto;
}

.innerWrap-1280 {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

/* 1280 + right 80
   At 1440px viewport: left 80 / right 0 */
.innerWrap-1280-r80 {
  width: min(100%, 1360px);
  margin-left: auto;
  margin-right: 0;
}

/* 1280 + left 80
   At 1440px viewport: right 80 / left 0 */
.innerWrap-1280-l80 {
  width: min(100%, 1360px);
  margin-left: 0;
  margin-right: auto;
}

/* Sample legend */
.layout-sample {
  padding: 12px;
  border: 1px dashed var(--color-text);
  background: #fff;
}

.layout-sample__box {
  padding: 8px 12px;
  background: var(--color-accent-soft);
  color: var(--color-text);
}

/* [c-] base-components-header
   役割：全ページ共通の最上部コンポーネント。
   内容：ヘッダー、アイコン群、ハンバーガーメニュー（ドロワー）など。 */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 100px;
  /* 帯は見た目上フル幅だが、ロゴ／アクション以外は下層（ヒーロー内ボタン等）へクリックを通す */
  pointer-events: none;
}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  padding: 0;
}

.c-logo img {
  width: 200px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-logo {
  position: relative;
  z-index: 72;
  pointer-events: auto;
}

.c-header__actions {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  pointer-events: auto;
}

.c-headerIcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  font-size: 14px;
}

.c-headerIcon--utility img {
  width: 32px;
  height: 32px;
  font-size: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-headerIcon--utility {
  gap: 4px;
}

.c-headerIcon__label {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.c-langSwitcher {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

.c-langSwitcher__trigger {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.c-langSwitcher__trigger .c-langSwitcher__body {
  position: absolute;
  inset: 0;
}

.c-langSwitcher__option .c-langSwitcher__body {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.c-langSwitcher .c-headerIcon--utility .c-langSwitcher__flag {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translate(-50%, -50%);
}

.c-langSwitcher__abbr {
  position: absolute;
  top: calc(50% + 22px);
  left: 50%;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #444;
  white-space: nowrap;
  transform: translateX(-50%);
}

.c-langSwitcher__option.c-headerIcon--utility {
  gap: 0;
}

.c-langSwitcher__trigger .c-langSwitcher__caret {
  position: absolute;
  top: calc(50% + 22px + 1em + 4px);
  left: 50%;
  z-index: 1;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3.5px solid #444;
  pointer-events: none;
  transform: translateX(-50%);
}

.c-langSwitcher__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  z-index: 85;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.c-langSwitcher.is-open .c-langSwitcher__list {
  pointer-events: auto;
}

.c-langSwitcher__item {
  opacity: 0;
  transform: translateY(-8px) scale(0.92);
  transition: opacity 0.28s cubic-bezier(0.25, 1, 0.5, 1), transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
}

.c-langSwitcher.is-open .c-langSwitcher__item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.c-langSwitcher__item.is-langSwitcher-skip {
  display: none;
}

.c-langSwitcher__option {
  /* inherit .c-headerIcon white circle; do not set background (anchor reset would hide it) */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-langSwitcher__option:focus-visible {
  outline: 2px solid #444;
  outline-offset: 2px;
}

.c-langSwitcher__trigger:focus-visible {
  outline: 2px solid #444;
  outline-offset: 2px;
}

.c-menuToggle {
  position: relative;
}

.c-menuToggle__icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 40px;
  height: 27px;
}

.c-menuToggle__line {
  position: relative;
  width: 40px;
  height: 1px;
  background: #444;
  transition: transform 0.35s ease, opacity 0.2s ease;
  transform-origin: center;
}

.c-menuToggle__line:nth-child(1),
.c-menuToggle__line:nth-child(2),
.c-menuToggle__line:nth-child(3) {
  transform: translateY(0);
}

.is-menu-open .c-menuToggle__line:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}

.is-menu-open .c-menuToggle__line:nth-child(2) {
  opacity: 0;
}

.is-menu-open .c-menuToggle__line:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

.is-menu-open .c-headerIcon {
  background: transparent;
}

.is-menu-open .c-header__actions .c-headerIcon--utility {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.c-menuPanel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: 540px;
  max-width: 100%;
  height: 100svh;
  background: var(--color-bg);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.c-menuPanel::before,
.c-menuPanel::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  pointer-events: none;
}

.c-menuPanel::before {
  bottom: 40px;
  height: 40px;
  background: var(--color-accent-soft);
}

.c-menuPanel::after {
  bottom: 0;
  height: 40px;
  background: #ff8d6e;
}

.c-menuPanel.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.c-menuPanel__inner {
  height: 100%;
  padding: 0 0 80px;
}

.c-menuPanel__nav {
  display: grid;
  gap: 40px;
  margin-top: 140px;
  padding-inline: 60px;
}

.c-menuPanel__nav a {
  display: block;
  letter-spacing: 0.1em;
}

.c-menuPanel__en {
  position: relative;
  display: block;
  padding-left: 28px;
  font-size: 24px;
  line-height: 1.2;
}

.c-menuPanel__en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("../img/icon_arrow.svg") no-repeat center/contain;
  transform: translateY(-50%);
}

.c-menuPanel__ja {
  display: block;
  padding-left: 28px;
  font-size: 16px;
}

/* PC: 言語切替 — 開閉とも transform / opacity をアニメーション */
@media (min-width: 769px) {
  .c-header__actions > .c-menuToggle,
  .c-header__actions > a.c-headerIcon--utility,
  .c-header__actions > .c-langSwitcher {
    transition: opacity 0.28s cubic-bezier(0.25, 1, 0.5, 1), transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .c-header__actions.is-lang-pc-compact > .c-menuToggle,
  .c-header__actions.is-lang-pc-compact > a.c-headerIcon--utility {
    pointer-events: none;
    opacity: 0;
  }
  .c-header__actions.is-lang-pc-compact > a.c-headerIcon--utility {
    transform: translateY(-104px);
  }
  .c-header__actions.is-lang-pc-compact > .c-langSwitcher {
    transform: translateY(-208px);
  }
}
@media (max-width: 768px) {
  .c-header {
    height: 60px;
  }
  .c-header__inner {
    padding-inline: 12px;
  }
  .c-logo img {
    width: 100px;
    height: 50px;
  }
  .c-logo {
    position: fixed;
    top: 0;
    left: 20px;
    z-index: 95;
  }
  .c-header__actions {
    top: 4px;
    right: 20px;
    left: auto;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  .c-headerIcon {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
  .c-headerIcon__label {
    display: none;
  }
  .c-headerIcon--utility img {
    width: 20px;
    height: 20px;
  }
  .c-langSwitcher {
    width: 60px;
  }
  .c-langSwitcher .c-headerIcon--utility .c-langSwitcher__flag {
    width: 30px;
    height: 30px;
  }
  .c-langSwitcher__abbr {
    display: none;
  }
  .c-langSwitcher__trigger .c-langSwitcher__caret {
    top: auto;
    bottom: 6px;
    border-left-width: 2.5px;
    border-right-width: 2.5px;
    border-top-width: 3px;
  }
  .c-langSwitcher__list {
    top: calc(100% + 12px);
    gap: 12px;
  }
  .c-menuToggle__line {
    width: 24px;
  }
  .c-menuToggle__icon {
    width: 24px;
    height: 17px;
  }
  .is-menu-open .c-menuToggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .is-menu-open .c-menuToggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .c-menuPanel {
    width: 100%;
    height: 100svh;
  }
  .c-menuPanel__inner {
    padding: 0 0 80px;
  }
  .c-menuPanel__nav {
    gap: 40px;
    margin-top: 140px;
    padding-inline: 60px;
  }
  .c-menuPanel__nav a {
    font-size: inherit;
  }
  .c-menuPanel__en {
    font-size: 24px;
  }
  .c-menuPanel__ja {
    font-size: 16px;
  }
}
@media (max-width: 540px) {
  .c-menuPanel__nav {
    gap: 24px;
    margin-top: 80px;
    padding-inline: 30px;
  }
}
/* [c-] base-components-footer
   役割：全ページ共通の最下部コンポーネント。
   内容：フッター（未実装）。 */
.c-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 30px 80px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: 20px;
  line-height: 1.5;
}

.c-footer__copy {
  grid-column: 2;
  margin: 0;
}

.c-footer__policyLink {
  grid-column: 3;
  justify-self: end;
  color: var(--color-text-inverse);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.c-privacyModal {
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 40px;
  display: none;
  align-items: stretch;
  justify-content: center;
  box-sizing: border-box;
}

.c-privacyModal.is-open {
  display: flex;
}

.c-privacyModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.c-privacyModal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  max-height: 100%;
  background: var(--raw-cream-100);
  color: var(--color-text);
  overflow: auto;
  box-sizing: border-box;
  border-radius: 10px;
}

.c-privacyModal__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px 20px;
  background: var(--raw-cream-100);
  border-radius: 10px 10px 0 0;
}

.c-privacyModal__close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.c-privacyModal__title {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  text-align: center;
}

.c-privacyModal__body {
  padding: 20px 36px 36px;
  font-size: 16px;
  line-height: 1.8;
}

.c-privacyModal__body p {
  margin: 0 0 16px;
}

.c-privacyModal__body ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
}

.c-privacyModal__body li {
  margin-bottom: 6px;
}

body.is-privacy-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .c-footer {
    padding-inline: 20px;
  }
}
@media (max-width: 768px) {
  .c-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px 20px 110px;
  }
  .c-footer__policyLink {
    order: 1;
  }
  .c-footer__copy {
    order: 2;
  }
  .c-privacyModal {
    padding: 20px;
  }
  .c-privacyModal__dialog {
    border-radius: 8px;
  }
  .c-privacyModal__header {
    min-height: 64px;
    padding: 10px 14px;
    border-radius: 8px 8px 0 0;
  }
  .c-privacyModal__title {
    font-size: 24px;
  }
  .c-privacyModal__body {
    padding: 16px 18px 20px;
  }
}
/* [c-] base-components
   役割：全ページ共通の再利用コンポーネント群。
   内容：予約ボタン、将来追加する共通ボタン・カード・バッジ等。 */
.c-reservation {
  position: fixed;
  right: 0;
  bottom: 12px;
  z-index: 35;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 180px;
  height: 180px;
  border-radius: 20px 0 0 20px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.08em;
  transition: bottom 0.35s ease;
}

.c-reservation::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  left: 5px;
  border: 2px solid var(--color-text-inverse);
  border-right: 0;
  border-radius: 15px 0 0 15px;
  pointer-events: none;
}

.c-reservation__text,
.c-reservation__icon {
  position: relative;
  z-index: 1;
  transform: translateX(7px);
}

.c-reservation__icon {
  width: 99px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-scrollCue {
  position: fixed;
  left: 50%;
  bottom: 32px;
  z-index: 60;
  width: 48px;
  transform: translateX(-50%);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.8s ease-out;
}

/* トップ（hm-home）: ヒーロー下端から 24px（ビューポート基準で算出） */
body.hm-home .c-scrollCue {
  bottom: max(24px, 100svh - var(--hm-hero-height, 800px) + 24px);
}

.c-scrollCue img {
  display: block;
  width: 100%;
  height: auto;
}

.c-outlineTitle {
  --c-outline-title-size: 72px;
  --c-outline-title-fill: #ff8d6e;
  --c-outline-title-stroke: #c3564f;
  --c-outline-title-stroke-width: 2px;
  --c-outline-title-shadow: rgba(255, 233, 209, 0.4);
  --c-outline-title-ghost-fill: rgba(255, 196, 168, 0.2);
  --c-outline-title-ghost-stroke: rgba(242, 139, 112, 0.3);
  --c-outline-title-ghost-x: 10px;
  --c-outline-title-ghost-y: -10px;
  position: relative;
  display: inline-grid;
  z-index: 1;
  font-family: "Train One", cursive;
  font-size: var(--c-outline-title-size);
  line-height: 1;
  letter-spacing: 0.06em;
}

.c-outlineTitle__text,
.c-outlineTitle__stroke,
.c-outlineTitle__ghost {
  grid-area: 1/1;
}

.c-outlineTitle__text {
  position: relative;
  z-index: 1;
  color: var(--c-outline-title-fill);
  text-shadow: 0 0 18px var(--c-outline-title-shadow);
}

.c-outlineTitle__ghost {
  position: relative;
  z-index: -2;
  transform: translate(var(--c-outline-title-ghost-x), var(--c-outline-title-ghost-y));
  color: var(--c-outline-title-ghost-fill);
  -webkit-text-stroke: 1px var(--c-outline-title-ghost-stroke);
  pointer-events: none;
}

.c-outlineTitle__stroke {
  position: relative;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: var(--c-outline-title-stroke-width) var(--c-outline-title-stroke);
  pointer-events: none;
}

/* Reusable title style for sections after intro */
.c-outlineTitle--section {
  --c-outline-title-fill: var(--color-primary);
  --c-outline-title-stroke: var(--color-primary);
  --c-outline-title-stroke-width: 1px;
  --c-outline-title-shadow: rgba(0, 0, 0, 0);
  --c-outline-title-ghost-fill: rgba(236, 95, 85, 0.16);
  --c-outline-title-ghost-stroke: rgba(236, 95, 85, 0.16);
}

@media (max-width: 900px) and (min-width: 769px) {
  .c-reservation {
    gap: 6px;
    width: 120px;
    height: 120px;
    border-radius: 14px 0 0 14px;
    font-size: 16px;
  }
  .c-reservation::before {
    top: 4px;
    right: 0;
    bottom: 4px;
    left: 4px;
    border-radius: 10px 0 0 10px;
  }
  .c-reservation__text,
  .c-reservation__icon {
    transform: translateX(5px);
  }
  .c-reservation__icon {
    width: 66px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  /* SP: 非重なり＝ヒーロー下端から80px、完全重なり＝予約高+24px、その間は重なり量で補間 */
  body.hm-home .c-scrollCue {
    --hm-sp-overlap: max(
      0px,
      min(var(--hm-hero-height, 800px), 100svh) - max(0px, 100svh - var(--hm-reservation-sp-height, 64px))
    );
    --hm-sp-bottom-hero: calc(100svh - var(--hm-hero-height, 800px) + 80px);
    --hm-sp-bottom-clear: calc(var(--hm-reservation-sp-height, 64px) + 24px);
    bottom: calc(var(--hm-sp-bottom-hero) + (var(--hm-sp-bottom-clear) - var(--hm-sp-bottom-hero)) * min(80px, var(--hm-sp-overlap)) / 80px);
  }
  .c-outlineTitle--section {
    --c-outline-title-ghost-x: -15px;
    --c-outline-title-ghost-y: -20px;
    line-height: 1.5;
  }
  .c-reservation {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    height: 64px;
    border-radius: 0;
    font-size: 20px;
  }
  .c-reservation::before {
    top: 4px;
    right: 5px;
    bottom: 4px;
    left: 5px;
    border-right: 2px solid var(--color-text-inverse);
    border-radius: 8px;
  }
  .c-reservation__icon {
    display: none;
  }
  .c-reservation__text {
    display: flex;
    align-items: center;
    gap: 16px;
    transform: none;
  }
  .c-reservation__text::before,
  .c-reservation__text::after {
    content: "";
    width: 26px;
    height: 24px;
    background: url("../img/icon_pot.png") no-repeat center/contain;
    transform: translateY(1px);
  }
}
/* [hm-] page/home
   役割：トップページ専用のUIと状態制御。
   内容：背景・ヒーローなど、ページに依存する要素。 */
html {
  overflow-x: hidden;
  /* 縦スクロールバー出現で 100% 幅が変わり、コース表が左右に引っ込むのを防ぐ */
  scrollbar-gutter: stable;
}

body.hm-home {
  min-height: 100svh;
  padding-top: 0;
  overflow-x: hidden;
  /* c-scrollCue 位置計算用（.hm-hero の高さと一致させる） */
  --hm-hero-height: 800px;
  /* SP フル幅予約バー（.c-reservation @max-width 768） */
  --hm-reservation-sp-height: 64px;
}

.hm-main {
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.hm-hero {
  height: 800px;
  background: linear-gradient(to bottom, var(--raw-cream-100) 0 33.333%, var(--raw-peach-300) 33.333% 66.666%, var(--raw-peach-400) 66.666% 100%);
}

.hm-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 100%;
}

.hm-hero__visual {
  position: relative;
  width: min(100%, 900px);
  height: 600px;
}

.hm-hero__photo,
.hm-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.hm-hero__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.hm-hero__textImage {
  position: absolute;
  z-index: 2;
  width: auto;
  height: auto;
  pointer-events: none;
}

.hm-hero__textImage--top {
  top: 60px;
  right: 104px;
  width: 260px;
  max-width: 80vw;
}

.hm-hero__textImage--bottom {
  left: 80px;
  bottom: 60px;
  width: 348px;
  max-width: 80vw;
}

/* 各国語ヒーローSVG（PCは指定寸法、≤900px は日本語と同縮尺 216/260・279/348） */
html[lang=en] body.hm-home .hm-hero__textImage--top {
  width: 225px;
  height: 230px;
  -o-object-fit: contain;
     object-fit: contain;
}
html[lang=en] body.hm-home .hm-hero__textImage--bottom {
  width: 417px;
  height: 272px;
  -o-object-fit: contain;
     object-fit: contain;
}

html[lang=zh-Hans] body.hm-home .hm-hero__textImage--top {
  width: 178px;
  height: 225px;
  -o-object-fit: contain;
     object-fit: contain;
}
html[lang=zh-Hans] body.hm-home .hm-hero__textImage--bottom {
  width: 293px;
  height: 278px;
  -o-object-fit: contain;
     object-fit: contain;
}

html[lang=zh-Hant] body.hm-home .hm-hero__textImage--top {
  width: 178px;
  height: 223px;
  -o-object-fit: contain;
     object-fit: contain;
}
html[lang=zh-Hant] body.hm-home .hm-hero__textImage--bottom {
  width: 293px;
  height: 278px;
  -o-object-fit: contain;
     object-fit: contain;
}

html[lang=ko] body.hm-home .hm-hero__textImage--top {
  width: 229px;
  height: 162px;
  -o-object-fit: contain;
     object-fit: contain;
}
html[lang=ko] body.hm-home .hm-hero__textImage--bottom {
  width: 403px;
  height: 371px;
  -o-object-fit: contain;
     object-fit: contain;
}

.hm-hero__side {
  align-self: center;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.hm-hero__side--left {
  transform: rotate(180deg);
}

.hm-intro {
  position: relative;
  overflow: hidden;
  background: url("../img/bg_intro_01.png") no-repeat top center/cover;
  margin-top: 0;
  padding-block: 218px;
}

.hm-intro__inner {
  position: relative;
}

.hm-intro__titleWrap {
  position: relative;
  z-index: 4;
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: right;
}

.hm-intro__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(255, 255, 255, 0.62);
  padding: 90px 40px;
  text-align: center;
}

.hm-intro__title {
  --c-outline-title-size: 102px;
  --c-outline-title-fill: var(--color-accent-soft);
  --c-outline-title-stroke: var(--color-primary);
  --c-outline-title-stroke-width: 7px;
  --c-outline-title-ghost-x: -120px;
  --c-outline-title-ghost-y: -35px;
  --c-outline-title-shadow: rgba(0, 0, 0, 0);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.hm-intro__textGroup {
  display: grid;
  gap: 20px;
}

.hm-intro__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hm-intro__deco {
  position: absolute;
  z-index: 3;
  display: block;
  width: auto;
  height: auto;
}

.hm-intro__deco--lt {
  top: -30px;
  left: -70px;
  width: clamp(340px, 34vw, 420px);
}

.hm-intro__deco--rb {
  right: -40px;
  bottom: -60px;
  width: clamp(260px, 27vw, 320px);
}

@media (min-width: 1440px) {
  .hm-intro__deco--lt {
    left: calc(-70px + (100vw - 1440px) / 2);
  }
  .hm-intro__deco--rb {
    right: calc(-40px + (100vw - 1440px) / 2);
  }
}
.hm-intro__hashtags {
  position: relative;
  z-index: 4;
  width: min(100%, 1440px);
  margin-inline: auto;
  margin-top: 4px;
  padding-inline: 24px;
  color: var(--color-text-inverse);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hm-find {
  position: relative;
  background: var(--raw-cream-100);
}

.hm-find > * {
  min-height: 540px;
}

.hm-find__content {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.hm-find__titleSection {
  background: var(--raw-cream-100);
  padding-top: 180px;
}

/* Title style: reusing intro's outline token system */
.hm-find__titleBlock {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
}

.hm-sectionTitle {
  --c-outline-title-size: 64px;
  --c-outline-title-ghost-x: -120px;
  --c-outline-title-ghost-y: -35px;
}

.hm-find__title {
  margin-bottom: 0;
  text-align: left;
}

.hm-find__jp {
  margin-top: 14px;
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  text-align: left;
}

.hm-find__card {
  padding-block: 0;
}

.hm-find__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hm-find__row--reverse {
  flex-direction: row-reverse;
}

.hm-find__text {
  flex: 1;
  min-width: 320px;
  padding-inline: 80px;
}

/* Remove padding on the image-facing side */
.hm-find__row:not(.hm-find__row--reverse) .hm-find__text {
  padding-right: 0;
}

.hm-find__row--reverse .hm-find__text {
  padding-left: 0;
}

.hm-find__kicker {
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-inverse);
  margin-bottom: 16px;
}

.hm-find__desc {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--color-text-inverse);
  max-width: 520px;
}

.hm-find__media {
  flex: 0 0 auto;
  width: 818px;
}

.hm-find__imageFrame {
  position: relative;
  border: 4px solid rgba(255, 244, 226, 0.95); /* near-white */
  border-radius: 100px;
  overflow: hidden;
  background: var(--raw-cream-100);
  width: 100%;
  height: 500px;
  transform: translateY(-56px); /* PC translate-up */
}

/* Right-side image: no right border / no right corner radius */
.hm-find__row .hm-find__imageFrame {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Left-side image (reverse row): no left border / no left corner radius */
.hm-find__row--reverse .hm-find__imageFrame {
  border-left: 0;
  border-right: 4px solid rgba(255, 244, 226, 0.95);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

@media (min-width: 1441px) {
  .hm-find__row .hm-find__imageFrame,
  .hm-find__row--reverse .hm-find__imageFrame {
    border: 4px solid rgba(255, 244, 226, 0.95);
    border-radius: 100px;
  }
}
@media (max-width: 1440px) {
  .hm-find__text {
    padding-inline: 60px;
  }
  .hm-find__row:not(.hm-find__row--reverse) .hm-find__text {
    padding-right: 0;
  }
  .hm-find__row--reverse .hm-find__text {
    padding-left: 0;
  }
  .hm-find__media {
    width: calc(818px - (1440px - 100vw) + 20px); /* add 20px from reduced text padding */
  }
}
.hm-find__imageFrame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.hm-findCarousel__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hm-findCarousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
}

.hm-findCarousel__slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}

.hm-findCarousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.hm-findCarousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 244, 226, 0.95);
  color: var(--color-secondary);
  transform: translateY(-50%);
  cursor: pointer;
}

.hm-findCarousel__nav--prev {
  left: 10px;
}

.hm-findCarousel__nav--next {
  right: 10px;
}

.hm-findCarousel__nav span {
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--color-accent-soft);
  line-height: 1;
}

.hm-findCarousel__nav--prev span {
  transform: rotate(180deg);
}

.hm-findMedia__credit {
  position: absolute;
  bottom: 10px;
  z-index: 1;
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--color-text-inverse);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hm-findMedia--creditLeft .hm-findMedia__credit {
  left: 12px;
  right: auto;
}

.hm-findMedia--creditRight .hm-findMedia__credit {
  right: 12px;
  left: auto;
}

@media (min-width: 1441px) {
  .hm-findMedia--creditLeft .hm-findMedia__credit {
    left: 64px;
  }
  .hm-findMedia--creditRight .hm-findMedia__credit {
    right: 64px;
  }
}
.hm-find__card--01 {
  background: var(--raw-peach-300);
}

.hm-find__card--01 .hm-find__imageFrame {
  transform: translateY(-200px);
}

.hm-find__card--01 .hm-find__text {
  padding-top: 32px;
}

.hm-find__card--02 {
  background: var(--raw-peach-400);
}

.hm-find__card--02 .hm-find__text,
.hm-find__card--02 .hm-find__kicker,
.hm-find__card--02 .hm-find__desc {
  text-align: right;
}

.hm-find__card--02 .hm-find__kicker,
.hm-find__card--02 .hm-find__desc {
  width: min(100%, 520px);
  margin-left: auto;
}

.hm-find__card--02 .hm-find__imageFrame {
  transform: translateY(-128px);
}

.hm-find__card--02 .hm-find__text {
  padding-top: 112px;
}

.hm-find__card--03 {
  background: var(--raw-coral-500);
}

.hm-find__card--03 .hm-find__imageFrame {
  transform: translateY(-50px);
}

.hm-find__card--03 .hm-find__text {
  padding-top: 192px;
}

.hm-menu {
  position: relative;
  padding: 148px 0 120px;
  background: var(--raw-cream-100);
}

.hm-section__content {
  position: relative;
  width: min(100% - 32px, 1440px);
  margin-inline: auto;
}

.hm-section__titleBlock {
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.hm-menu__titleBlock {
  margin: 0 auto 28px;
}

.hm-menu__title {
  margin-bottom: 8px;
}

.hm-menu__lead {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hm-menu__panelWrap {
  width: 100%;
  max-width: 1296px;
  margin-inline: auto;
  box-sizing: border-box;
}

.hm-menu__panelViewport {
  width: min(100%, 1080px);
  margin-inline: auto;
}

.hm-menuTabs {
  --hm-menu-current-color: var(--raw-peach-400);
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 54px;
}

/* タブ種別の識別は data-tab-id。スタイルは --theme-* と .is-active のみ */
.hm-menuTabs__button {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  cursor: pointer;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.hm-menuTabs__button.is-active {
  transform: translateY(-1px);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) brightness(0.96);
}

.hm-menuTabs__button--theme-coral {
  background: var(--raw-peach-400);
  color: var(--color-text-inverse);
}

.hm-menuTabs__button--theme-soft {
  background: var(--color-accent-soft);
  color: var(--color-text-inverse);
}

.hm-menuTabs__indicator {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid var(--hm-menu-current-color);
  transition: transform 0.3s ease, opacity 0.3s ease, border-top-color 0.3s ease;
}

.hm-menuTabContent {
  --hm-menu-current-color: var(--raw-peach-400);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(240, 186, 152, 0.2);
}

.hm-menuTabContent__header {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 120px;
  height: auto;
  padding: 0 60px;
  box-sizing: border-box;
  background: var(--hm-menu-current-color);
  color: var(--color-text-inverse);
  border-radius: 20px 20px 0 0;
  transition: background-color 0.3s ease;
}

.hm-menuTabContent__title {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transform: translateY(-2px);
}

.hm-menuTabContent__subtitle {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: normal;
  overflow-wrap: break-word;
  min-width: 0;
  max-width: 100%;
  flex: 1 1 0;
  padding-top: 4px;
}

.hm-menuTabContent__accentStrong {
  font-weight: 900;
  color: var(--color-primary);
  vertical-align: baseline;
}

.hm-menuTabContent__accentText {
  font-weight: 700;
  color: var(--color-primary);
}

/* 英語ページ：PCのみ Premium Ingredients タブ 14px / ヘッダー縦並び左揃え（≤1000px は共通の中央揃えのまま） */
@media (min-width: 1001px) {
  html[lang=en] .hm-menuTabs__button[data-tab-id=premium] {
    font-size: 14px;
  }
  html[lang=en] .hm-menuTabContent__header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 8px;
  }
  html[lang=en] .hm-menuTabContent__title {
    transform: none;
  }
  html[lang=en] .hm-menuTabContent__subtitle {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
}
.hm-menuTabContent__body {
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: height 0.36s ease;
}

/* ビュッフェ：左右飾りが .hm-menuTabContent / __body の overflow:hidden で欠けるため、アクティブ時は見切れないよう開放（:has 非対応は従来どおり） */
.hm-menuTabContent:has(.hm-menuTabPane[data-pane-id=buffet].is-active) {
  overflow: visible;
}
.hm-menuTabContent:has(.hm-menuTabPane[data-pane-id=buffet].is-active) .hm-menuTabContent__body {
  overflow: visible;
}

.hm-menuTabPane {
  display: none;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 28px 0 80px;
  background: rgba(240, 186, 152, 0.2);
  color: var(--raw-text-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.hm-menuTabPane.is-active {
  display: block;
}

.hm-menuTabPane--h-xs {
  min-height: 160px;
}

.hm-menuTabPane--h-sm {
  min-height: 240px;
}

.hm-menuTabPane--h-md {
  min-height: 320px;
}

.hm-menuTabPane--h-lg {
  min-height: 430px;
}

.hm-menuTabPane--h-xl {
  min-height: 540px;
}

.hm-menuTabPane__header {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 56px;
  padding-inline: 0;
  width: 100%;
  box-sizing: border-box;
}

.hm-menuTabPane__kicker {
  flex-shrink: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 18px 36px 18px 60px;
  border: 5px solid var(--color-text-inverse);
  border-left: none;
  border-radius: 0 20px 20px 0;
  background: var(--hm-menu-current-color);
  color: var(--color-text-inverse);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.hm-menuTabPane__headline {
  flex: 1;
  min-width: 0;
  padding-top: 18px;
  color: var(--color-primary);
}

.hm-menuTabPane__promoLine {
  margin: 0 0 6px;
  line-height: 1.4;
}

/* Inline slash decorations; use --no-lines to hide. Per-breakpoint toggles are not bundled here. */
.hm-menuTabDecorLines {
  --hm-decor-line-length: 1.182em;
  --hm-decor-line-thickness: 0.091em;
  --hm-decor-line-gap: 0.364em;
  --hm-decor-line-offset-y: 0.091em;
  display: inline-flex;
  align-items: center;
  gap: var(--hm-decor-line-gap);
  box-sizing: border-box;
}

.hm-menuTabDecorLines::before,
.hm-menuTabDecorLines::after {
  content: "";
  flex-shrink: 0;
  width: var(--hm-decor-line-length);
  height: var(--hm-decor-line-thickness);
  background: currentColor;
  border-radius: calc(var(--hm-decor-line-thickness) / 2);
}

.hm-menuTabDecorLines::before {
  transform: rotate(45deg) translateY(var(--hm-decor-line-offset-y));
}

.hm-menuTabDecorLines::after {
  transform: rotate(-45deg) translateY(var(--hm-decor-line-offset-y));
}

.hm-menuTabDecorLines--no-lines::before,
.hm-menuTabDecorLines--no-lines::after {
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}

.hm-menuTabDecorLines--no-lines {
  gap: 0 !important;
}

.hm-menuTabPane__promoAccent {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hm-menuTabPane__promoSub {
  margin: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

/* Broth tab: headline is split into promoLine vs promoSub by breakpoint (different composition). */
@media (min-width: 1001px) {
  .hm-menuTabPane[data-pane-id=broth] .hm-menuTabPane__promoLine {
    display: block;
  }
  .hm-menuTabPane[data-pane-id=broth] .hm-menuTabPane__promoSub {
    display: none;
  }
}
@media (max-width: 1000px) {
  .hm-menuTabPane[data-pane-id=broth] .hm-menuTabPane__promoLine {
    display: none;
  }
  .hm-menuTabPane[data-pane-id=broth] .hm-menuTabPane__promoSub {
    display: block;
  }
}
.hm-menuTabPane__body {
  margin: 0;
  padding-inline: 36px;
  box-sizing: border-box;
}

@media (max-width: 1080px) {
  .hm-menuTabPane__body {
    padding-inline: 24px;
  }
  .hm-menuTabPane[data-pane-id=course] .hm-menuTabPane__body {
    width: 1000px;
    max-width: 100%;
    margin-inline: auto;
  }
}
.hm-menuTabPane__placeholder {
  margin: 0;
  opacity: 0.75;
}

/* メニュー概要タブ：カード型一覧（罫線＝2pxで背後のタブ地色が見える／早見表と同原理） */
.hm-menuTabPane[data-pane-id=overview] .hm-menuTabPane__body {
  margin-inline: auto;
  padding-inline: 20px;
}

/* 脚注〜タブ色帯フッター間を出汁・ビュッフェと同じに */
.hm-menuTabPane[data-pane-id=overview] {
  padding-bottom: 4px;
}

.hm-menuOverview {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: var(--ls-wide);
  color: var(--raw-text-dark);
}

@media (max-width: 768px) {
  .hm-menuOverview {
    font-size: 16px;
  }
}
.hm-menuOverviewCard {
  position: relative;
  isolation: isolate;
  margin: 0 0 120px;
  padding: 0;
  box-sizing: border-box;
}

.hm-menuOverviewCard:last-child {
  margin-bottom: 0;
}

/* 概要カード装飾（1.5×書き出し → 表示は各辺 2/3）。位置は各 nth-child で個別指定 */
.hm-menuOverviewCard::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.hm-menuOverviewCard:nth-child(1)::before {
  top: -130px;
  right: -160px;
  left: auto;
  background-position: top right;
  width: 295px;
  height: 251px;
  background-image: url("../img/bg_menulist_01.png");
}

.hm-menuOverviewCard:nth-child(2)::before {
  top: -100px;
  left: -160px;
  right: auto;
  background-position: top left;
  width: 272px;
  height: 265px;
  background-image: url("../img/bg_menulist_02.png");
}

.hm-menuOverviewCard:nth-child(3)::before {
  top: -100px;
  right: -130px;
  left: auto;
  background-position: top right;
  width: 240px;
  height: 274px;
  background-image: url("../img/bg_menulist_03.png");
}

.hm-menuOverviewCard:nth-child(4)::before {
  top: -100px;
  left: -160px;
  right: auto;
  background-position: top left;
  width: 212px;
  height: 225px;
  background-image: url("../img/bg_menulist_04.png");
}

.hm-menuOverviewCard:nth-child(5)::before {
  top: -50px;
  right: -140px;
  left: auto;
  background-position: top right;
  width: 206px;
  height: 227px;
  background-image: url("../img/bg_menulist_05.png");
}

.hm-menuOverviewCard:nth-child(6)::before {
  top: -60px;
  left: -80px;
  right: auto;
  background-position: top left;
  width: 138px;
  height: 181px;
  background-image: url("../img/bg_menulist_06.png");
}

.hm-menuOverviewCard:nth-child(7)::before {
  top: -60px;
  right: -130px;
  left: auto;
  background-position: top right;
  width: 168px;
  height: 221px;
  background-image: url("../img/bg_menulist_07.png");
}

.hm-menuOverviewCard:nth-child(8)::before {
  top: -60px;
  left: -110px;
  right: auto;
  background-position: top left;
  width: 157px;
  height: 238px;
  background-image: url("../img/bg_menulist_08.png");
}

/* 1080px以下：幅 = max(現状の1/2, 現状幅 - (1080 - 画面幅)/2)、上限は現状幅。縦は aspect-ratio で追従。
   縮小分 min(現状幅/2, (1080 - 100vw)/2) を right または left に加算（はみ出し量の補正） */
@media (max-width: 1080px) {
  .hm-menuOverviewCard:nth-child(1)::before {
    width: clamp(147.5px, 295px - (1080px - 100vw) / 2, 295px);
    height: auto;
    aspect-ratio: 295/251;
    right: calc(-160px + min(147.5px, (1080px - 100vw) / 2));
  }
  .hm-menuOverviewCard:nth-child(2)::before {
    width: clamp(136px, 272px - (1080px - 100vw) / 2, 272px);
    height: auto;
    aspect-ratio: 272/265;
    left: calc(-160px + min(136px, (1080px - 100vw) / 2));
  }
  .hm-menuOverviewCard:nth-child(3)::before {
    width: clamp(120px, 240px - (1080px - 100vw) / 2, 240px);
    height: auto;
    aspect-ratio: 240/274;
    right: calc(-130px + min(120px, (1080px - 100vw) / 2));
  }
  .hm-menuOverviewCard:nth-child(4)::before {
    width: clamp(106px, 212px - (1080px - 100vw) / 2, 212px);
    height: auto;
    aspect-ratio: 212/225;
    left: calc(-160px + min(106px, (1080px - 100vw) / 2));
  }
  .hm-menuOverviewCard:nth-child(5)::before {
    width: clamp(103px, 206px - (1080px - 100vw) / 2, 206px);
    height: auto;
    aspect-ratio: 206/227;
    right: calc(-140px + min(103px, (1080px - 100vw) / 2));
  }
  .hm-menuOverviewCard:nth-child(6)::before {
    width: clamp(69px, 138px - (1080px - 100vw) / 2, 138px);
    height: auto;
    aspect-ratio: 138/181;
    left: calc(-80px + min(69px, (1080px - 100vw) / 2));
  }
  .hm-menuOverviewCard:nth-child(7)::before {
    width: clamp(84px, 168px - (1080px - 100vw) / 2, 168px);
    height: auto;
    aspect-ratio: 168/221;
    right: calc(-130px + min(84px, (1080px - 100vw) / 2));
  }
  .hm-menuOverviewCard:nth-child(8)::before {
    width: clamp(78.5px, 157px - (1080px - 100vw) / 2, 157px);
    height: auto;
    aspect-ratio: 157/238;
    left: calc(-110px + min(78.5px, (1080px - 100vw) / 2));
  }
}
/* 900px以下：装飾の top / right または left（枚ごとに数値調整可。1080px 以下の縮小はそのまま） */
@media (max-width: 900px) {
  .hm-menuOverviewCard:nth-child(1)::before {
    top: -100px;
    right: -20px;
    left: auto;
  }
  .hm-menuOverviewCard:nth-child(2)::before {
    top: -100px;
    left: -20px;
    right: auto;
  }
  .hm-menuOverviewCard:nth-child(3)::before {
    top: -70px;
    right: -20px;
    left: auto;
  }
  .hm-menuOverviewCard:nth-child(4)::before {
    top: -50px;
    left: -20px;
    right: auto;
    transform: rotate(20deg);
  }
  .hm-menuOverviewCard:nth-child(5)::before {
    top: -35px;
    right: -20px;
    left: auto;
    transform: rotate(-50deg);
  }
  .hm-menuOverviewCard:nth-child(6)::before {
    top: -20px;
    left: -20px;
    right: auto;
  }
  .hm-menuOverviewCard:nth-child(7)::before {
    top: -40px;
    right: -20px;
    left: auto;
  }
  .hm-menuOverviewCard:nth-child(8)::before {
    top: -55px;
    left: -20px;
    right: auto;
  }
}
/* 3〜8：表（__rows）だけ背面へ。装飾はタイトルと同じ z-index で、木順によりタイトルが手前 */
.hm-menuOverviewCard:nth-child(n+3):nth-child(-n+8)::before {
  z-index: 2;
}

.hm-menuOverviewCard:nth-child(n+3):nth-child(-n+8) .hm-menuOverviewCard__rows {
  z-index: 0;
}

.hm-menuOverviewCard__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 12px 12px 0 0;
  background: var(--hm-menu-current-color);
  color: var(--color-text-inverse);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 768px) {
  .hm-menuOverviewCard__title {
    font-size: 20px;
  }
}
.hm-menuOverviewCard__rows {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 2px 0 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  background: transparent;
}

.hm-menuOverviewCard__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 16px;
  margin: 0;
  padding: 8px 16px;
  box-sizing: border-box;
  background: #fff;
}

.hm-menuOverviewCard__label {
  box-sizing: border-box;
  font-weight: 700;
  text-align: left;
  min-width: 0;
}

/* 括弧列：mid | suffix を右寄せグリッド（幅は JS が --hm-overview-*-w で統一） */
.hm-menuOverviewCard__right {
  display: grid;
  grid-template-columns: var(--hm-overview-mid-w, max-content) var(--hm-overview-suffix-w, max-content);
  -moz-column-gap: 6px;
       column-gap: 6px;
  align-items: baseline;
  justify-content: end;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 541px) {
  .hm-menuOverviewCard__label {
    flex: 0 0 var(--hm-overview-label-w, max-content);
    width: var(--hm-overview-label-w, -moz-max-content);
    width: var(--hm-overview-label-w, max-content);
  }
  /* 残り幅を右ブロックへ（ラベル幅は JS が --hm-overview-label-w で統一） */
  .hm-menuOverviewCard__right {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
}
.hm-menuOverviewCard__mid {
  width: var(--hm-overview-mid-w, -moz-max-content);
  width: var(--hm-overview-mid-w, max-content);
  max-width: 100%;
  text-align: right;
  min-width: 0;
  box-sizing: border-box;
}

/* 種・価格を分離（JS でカード内の最大幅に揃える） */
html:not([lang=en]) .hm-menuOverviewCard__mid:has(.hm-menuOverviewCard__midPrice) {
  display: inline-grid;
  grid-template-columns: var(--hm-overview-mid-count-w, max-content) var(--hm-overview-mid-price-w, max-content);
  -moz-column-gap: 0.35em;
       column-gap: 0.35em;
  align-items: baseline;
  justify-items: end;
}

html:not([lang=en]) .hm-menuOverviewCard__mid:has(.hm-menuOverviewCard__midPrice):not(:has(.hm-menuOverviewCard__midCount)) {
  grid-template-columns: var(--hm-overview-mid-price-w, max-content);
}

html:not([lang=en]) .hm-menuOverviewCard__midCount,
html:not([lang=en]) .hm-menuOverviewCard__midPrice {
  text-align: right;
  min-width: 0;
}

.hm-menuOverviewCard__suffix {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: flex-start;
  box-sizing: border-box;
  width: var(--hm-overview-suffix-w, -moz-max-content);
  width: var(--hm-overview-suffix-w, max-content);
  max-width: 100%;
  min-width: 0;
}

.hm-menuOverviewCard__suffix::before,
.hm-menuOverviewCard__suffix::after {
  flex-shrink: 0;
  white-space: nowrap;
}

.hm-menuOverviewCard__suffix::before {
  content: "(";
}

.hm-menuOverviewCard__suffix::after {
  content: ")";
}

.hm-menuOverviewCard__suffixInner {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  width: var(--hm-overview-suffix-inner-w, auto);
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: auto;
  text-align: center;
  white-space: normal;
}

/* 英語：PC2段時は mid+suffix を1行インライン、（）は inner に付与 */
html[lang=en] .hm-menuOverviewCard__suffix::before,
html[lang=en] .hm-menuOverviewCard__suffix::after {
  content: none;
}

html[lang=en] .hm-menuOverviewCard__suffixInner::before {
  content: "(";
}

html[lang=en] .hm-menuOverviewCard__suffixInner::after {
  content: ")";
}

/* メニュー概要（日本語以外）：飲み放題・単品は PC で行内2段（label 上 / right 下）。英語は全カード。row は全幅のまま */
@media (min-width: 541px) {
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__row,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__row,
  html[lang=en] .hm-menuOverviewCard__row {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
  }
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__label,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__label,
  html[lang=en] .hm-menuOverviewCard__label {
    flex: none;
    width: 100% !important;
    max-width: none;
    text-align: left;
  }
  /* 英語：mid + （本文）を1行インライン・右寄せ */
  html[lang=en] .hm-menuOverviewCard__right {
    display: block;
    flex: none;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    margin-left: auto;
    text-align: right;
    line-height: 1.45;
  }
  html[lang=en] .hm-menuOverviewCard__mid,
  html[lang=en] .hm-menuOverviewCard__suffix {
    display: inline;
    vertical-align: baseline;
  }
  html[lang=en] .hm-menuOverviewCard__suffixInner {
    display: inline;
    flex: none;
    width: auto !important;
    max-width: 100%;
    text-align: inherit;
  }
  html[lang=en] .hm-menuOverviewCard__suffix {
    display: inline;
    width: auto;
    max-width: 100%;
  }
  /* 英語以外・飲み放題/単品：縦並び時は英語同様インラインフロー（）は inner・括弧前後で改行しない */
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__suffix::before,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__suffix::before,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__suffix::after,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__suffix::after {
    content: none;
  }
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__suffixInner::before,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__suffixInner::before {
    content: "(";
  }
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__suffixInner::after,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__suffixInner::after {
    content: ")";
  }
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__right,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__right {
    display: block;
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    text-align: left;
    line-height: 1.45;
  }
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__mid:not(:has(.hm-menuOverviewCard__midPrice)),
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__mid:not(:has(.hm-menuOverviewCard__midPrice)),
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__suffix,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__suffix,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__suffixInner,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__suffixInner {
    display: inline;
    flex: none;
    width: auto !important;
    max-width: 100%;
    vertical-align: baseline;
    overflow-wrap: break-word;
    word-break: normal;
  }
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__mid:has(.hm-menuOverviewCard__midPrice),
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__mid:has(.hm-menuOverviewCard__midPrice) {
    display: inline-grid;
    width: auto !important;
    vertical-align: baseline;
  }
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-drink-title] .hm-menuOverviewCard__suffix,
  html:not([lang=ja]) .hm-menuOverviewCard[aria-labelledby=hm-overview-bottle-title] .hm-menuOverviewCard__suffix {
    max-width: 100%;
  }
}
/* 表直下の注釈（次の表までの 120px は .hm-menuOverviewCard の margin-bottom に含まれる） */
.hm-menuOverviewCard__note {
  position: relative;
  z-index: 1;
  margin: 2px 0 0;
  padding: 10px 0 14px 18px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 540px) {
  .hm-faq__aTextList {
    font-size: 14px;
  }
  .hm-menuOverviewCard__note {
    font-size: 14px;
  }
  .hm-menuOverviewCard__row {
    flex-wrap: wrap;
    row-gap: 0;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .hm-menuOverviewCard__label {
    flex: 1 1 100%;
    width: 100%;
  }
  /* 英語以外 SP：row 縦並び時は英語同様インラインフロー（）は inner・括弧前後で改行しない */
  html:not([lang=en]) .hm-menuOverviewCard__suffix::before,
  html:not([lang=en]) .hm-menuOverviewCard__suffix::after {
    content: none;
  }
  html:not([lang=en]) .hm-menuOverviewCard__suffixInner::before {
    content: "(";
  }
  html:not([lang=en]) .hm-menuOverviewCard__suffixInner::after {
    content: ")";
  }
  html:not([lang=en]) .hm-menuOverviewCard__right {
    display: block;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
    line-height: 1.45;
  }
  html:not([lang=en]) .hm-menuOverviewCard__mid:not(:has(.hm-menuOverviewCard__midPrice)),
  html:not([lang=en]) .hm-menuOverviewCard__suffix,
  html:not([lang=en]) .hm-menuOverviewCard__suffixInner {
    display: inline;
    flex: none;
    width: auto !important;
    max-width: 100%;
    vertical-align: baseline;
    overflow-wrap: break-word;
    word-break: normal;
  }
  html:not([lang=en]) .hm-menuOverviewCard__mid:has(.hm-menuOverviewCard__midPrice) {
    display: inline-grid;
    width: auto !important;
    vertical-align: baseline;
  }
  html:not([lang=en]) .hm-menuOverviewCard__suffix {
    max-width: 100%;
  }
  /* 英語のみ SP もインラインフロー */
  html[lang=en] .hm-menuOverviewCard__right {
    display: block;
    flex: 1 1 100%;
    max-width: none;
    width: 100%;
    text-align: left;
    line-height: 1.45;
  }
  html[lang=en] .hm-menuOverviewCard__mid,
  html[lang=en] .hm-menuOverviewCard__suffix {
    display: inline;
    width: auto;
    vertical-align: baseline;
  }
  html[lang=en] .hm-menuOverviewCard__suffix {
    display: inline;
    max-width: 100%;
  }
  html[lang=en] .hm-menuOverviewCard__suffixInner {
    display: inline;
    flex: none;
    width: auto;
    max-width: 100%;
    text-align: inherit;
  }
}
/* Dashi tab: hero + 3×3 grid — assets: img/img_dashi_konbu.png, toripaitan, tomato, chige, maaraa, miso, torishio, shoyu, gomatonyu, sukiyaki (+ @2x); crown: img/icon_crown.svg */
.hm-menuTabPane[data-pane-id=broth] .hm-menuTabPane__body {
  max-width: 960px;
  margin-inline: auto;
}

/* Broth: tight gap from disclaimer to colored tab footer (hm-menuTabContent__footer). */
.hm-menuTabPane[data-pane-id=broth] {
  padding-bottom: 4px;
}

.hm-dashi {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hm-dashiHero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 28px;
  margin: 0 0 40px;
  box-sizing: border-box;
}

.hm-dashiHero__visual {
  position: relative;
  flex-shrink: 0;
  width: min(100%, 320px);
  overflow: visible;
}

.hm-dashiHero__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.hm-dashiHero__crown {
  display: block;
  width: 75px;
  height: 66px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.hm-dashiHero__badgeText {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  -webkit-text-stroke: 6px var(--color-text-inverse);
  paint-order: stroke fill;
}

.hm-dashiHero__figure {
  position: relative;
  margin: 0;
  width: 100%;
  overflow: visible;
  background: transparent;
}

.hm-dashiHero__img {
  display: block;
  width: 100%;
  height: auto;
}

.hm-dashiHero__caption {
  position: absolute;
  right: 4%;
  bottom: 4%;
  left: auto;
  z-index: 1;
  margin: 0;
  max-width: 95%;
  padding: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-align: right;
  color: var(--color-primary);
  -webkit-text-stroke: 6px var(--color-text-inverse);
  paint-order: stroke fill;
  pointer-events: none;
}

.hm-dashiHero__text {
  flex: 1;
  min-width: 0;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.hm-dashiHero__heading {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.hm-dashiHero__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.hm-dashiGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  overflow: visible;
}

.hm-dashiGrid__cell {
  margin: 0;
  padding: 0;
  min-width: 0;
  overflow: visible;
}

.hm-dashiCard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  width: 100%;
  overflow: visible;
  background: transparent;
}

.hm-dashiCard__img {
  display: block;
  width: 100%;
  height: auto;
}

.hm-dashiCard__caption {
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 1;
  margin: 0;
  max-width: 95%;
  padding: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-align: right;
  color: var(--color-primary);
  -webkit-text-stroke: 6px var(--color-text-inverse);
  paint-order: stroke fill;
  pointer-events: none;
}

.hm-dashiNote {
  margin: 80px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: right;
  color: var(--raw-text-dark);
  opacity: 0.72;
}

/* Buffet tab: full-bleed body, footnote spacing matches broth (see [data-pane-id="buffet"] padding-bottom). */
.hm-menuTabPane[data-pane-id=buffet] .hm-menuTabPane__body {
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.hm-menuTabPane[data-pane-id=buffet] {
  padding-bottom: 4px;
}

/* Premium tab: 本文エリアの余白（.hm-premium は幅100%で中の比率ボックスのみ） */
.hm-menuTabPane[data-pane-id=premium] .hm-menuTabPane__body {
  max-width: none;
  margin-inline: 0;
  padding-inline: 40px;
  padding-bottom: 48px;
}

.hm-menuTabPane[data-pane-id=premium] {
  padding-bottom: 4px;
}

.hm-buffet {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hm-buffetHero {
  margin: 0;
  padding: 0;
  width: 100%;
}

.hm-buffetMedia {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.04);
}
.hm-buffetMedia__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hm-buffetMedia__credit {
  position: absolute;
  bottom: 10px;
  z-index: 1;
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--color-text-inverse);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.hm-buffetMedia--creditLeft .hm-buffetMedia__credit {
  left: 12px;
  right: auto;
}
.hm-buffetMedia--creditRight .hm-buffetMedia__credit {
  right: 12px;
  left: auto;
}

.hm-buffetBand:not(.hm-buffetBand--flip) .hm-buffetBand__media {
  border-radius: 0 20px 20px 0;
}

.hm-buffetBand--flip .hm-buffetBand__media {
  border-radius: 20px 0 0 20px;
}

.hm-buffetMedia--hero {
  aspect-ratio: 4/3;
}

@media (min-width: 769px) {
  .hm-buffetMedia--hero {
    aspect-ratio: 21/9;
  }
}
/* 縦パディングは __layout 側に寄せ、疑似要素の calc 減算と揃える（inner 高さ I に対しセクション高さは I + この合計） */
.hm-buffetIntro {
  position: relative;
  isolation: isolate;
  margin: 60px 0 80px;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
}

.hm-buffetIntro::before,
.hm-buffetIntro::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 0;
  height: calc(1.2 * (100% - 24px));
  width: auto;
  aspect-ratio: 200/400;
  max-width: none;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  transform: translateY(-50%);
}

.hm-buffetIntro::before {
  left: 0;
  background-image: url("../img/img_buffet_05_pc.png");
}

.hm-buffetIntro::after {
  right: 0;
  background-image: url("../img/img_buffet_06_pc.png");
}

.hm-buffetIntro__layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  padding-top: 8px;
  padding-bottom: 16px; /* 上と合わせて $hm-buffet-intro-layout-pad-y と一致 */
  box-sizing: border-box;
}

.hm-buffetIntro__inner {
  position: relative;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: 0;
  text-align: center;
  box-sizing: border-box;
}

.hm-buffetIntro__heading {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.hm-buffetIntro__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.hm-buffetBand {
  margin: 0;
  box-sizing: border-box;
}

.hm-buffetIntro + .hm-buffetBand {
  margin-top: 0;
}

.hm-buffetBand + .hm-buffetBand {
  margin-top: 40px;
}

.hm-buffetBand__media {
  min-width: 0;
}

/* ビュッフェ 02〜04: 900px 以下は 46:32、901px 以上は 65:32（PC帯レイアウト） */
@media (max-width: 900px) {
  .hm-buffetBand__media {
    aspect-ratio: 46/32;
  }
}
@media (max-width: 768px) {
  .hm-menuTabPane__body {
    padding-inline: 16px;
  }
  .hm-menuTabPane[data-pane-id=premium] .hm-menuTabPane__body {
    padding-inline: 16px;
  }
  .hm-buffetBand + .hm-buffetBand {
    margin-top: 80px;
  }
  .hm-buffetBand {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hm-buffetMedia--hero {
    aspect-ratio: 5/2;
  }
  .hm-buffetBand__media {
    position: relative;
    z-index: 0;
    box-sizing: border-box;
  }
  .hm-buffetBand:not(.hm-buffetBand--flip) .hm-buffetBand__media {
    align-self: flex-start;
    width: calc(100% - 40px);
    margin-right: 40px;
    margin-left: 0;
  }
  .hm-buffetBand--flip .hm-buffetBand__media {
    align-self: flex-end;
    width: calc(100% - 40px);
    margin-left: 40px;
    margin-right: 0;
  }
  .hm-buffetBand__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
  }
  .hm-buffetBand__lead {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .hm-buffetIntro {
    margin-top: 60px;
    margin-bottom: 80px;
  }
  .hm-buffetIntro::before {
    background-image: url("../img/img_buffet_05_sp.png");
  }
  .hm-buffetIntro::after {
    background-image: url("../img/img_buffet_06_sp.png");
  }
}
@media (min-width: 769px) {
  .hm-buffetBand + .hm-buffetBand {
    margin-top: 80px;
  }
  /* 写真とコピーを同一セルに重ね、コピーは帯（.hm-buffetBand）全幅。写真は 65:32、幅は 65/(65+32) */
  .hm-buffetBand {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: start;
    justify-items: stretch;
    overflow-x: auto;
    overflow-y: visible;
  }
  .hm-buffetBand__media {
    grid-column: 1;
    grid-row: 1;
    width: 67.0103092784%;
    max-width: 67.0103092784%;
    height: auto;
    justify-self: start;
    align-self: start;
    z-index: 0;
  }
  .hm-buffetBand--flip .hm-buffetBand__media {
    justify-self: end;
  }
  /* VEGETABLE / CONDIMENTS: 右寄せ・英字は帯の右端に密着。TOPPINGS(flip): 左寄せ・英字は左端に密着 */
  .hm-buffetBand__copy {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 28px 0 32px 28px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    text-align: right;
  }
  .hm-buffetBand--flip .hm-buffetBand__copy {
    align-items: flex-start;
    text-align: left;
    padding: 28px 28px 32px 0;
  }
  .hm-buffetBand__lead {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: inherit;
    box-sizing: border-box;
  }
  .hm-buffetBand:not(.hm-buffetBand--flip) .hm-buffetBand__lead {
    text-align: right;
    padding-right: 28px;
  }
  .hm-buffetBand--flip .hm-buffetBand__lead {
    text-align: left;
    padding-left: 28px;
  }
}
@media (min-width: 901px) {
  .hm-buffetBand__media {
    aspect-ratio: 65/32;
  }
}
.hm-buffetBand__title {
  margin: 0 0 12px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  -webkit-text-stroke: 4px #fce8d3;
  paint-order: stroke fill;
  text-wrap: balance;
}

.hm-buffetBand__titleLine {
  display: block;
}

@media (min-width: 769px) {
  .hm-buffetBand__title {
    flex-shrink: 0;
    min-width: -moz-min-content;
    min-width: min-content;
    white-space: nowrap;
  }
  .hm-buffetBand__titleLine {
    display: inline;
  }
}
/* ベースの .hm-buffetBand__title { margin: 0 0 12px } が先に来ると、768 用の margin-top が打ち消されるため、このブロックはベースの直後に置く */
@media (max-width: 768px) {
  .hm-premium {
    margin-top: 0;
    padding-top: 0;
  }
  .hm-buffetBand__title {
    width: 100%;
    text-align: center;
    margin-top: -0.5em;
    margin-bottom: 12px;
  }
}
.hm-buffetBand__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  text-align: center;
  -webkit-text-stroke: 2px #fce8d3;
  paint-order: stroke fill;
}

/* 疑似要素なし。.hm-premium 自体を比率ボックスにし padding-top 128px。背景は要素全面に cover（上128px含む領域にも描画）。文字はグリッドのコンテンツ領域＝上から128pxの下から */
.hm-premium {
  position: relative;
  display: grid;
  align-items: start;
  justify-items: center;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: -104px;
  padding-top: 128px;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  aspect-ratio: 465/520;
  background-image: url("../img/bg_premium.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}

.hm-premium__inner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  align-self: start;
  width: min(100%, 30rem);
  margin: 0;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
}

.hm-premium__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 130%;
  height: 130%;
  left: -15%;
  top: -15%;
  box-sizing: border-box;
  background-image: url("../img/bg_blur.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
}

@media (min-width: 769px) {
  .hm-premium {
    justify-items: start;
    padding-top: 128px;
    padding-right: 0;
    padding-left: 0;
    aspect-ratio: 1026/1056;
    background-position: center center;
  }
  .hm-premium__inner {
    margin-left: 0;
    margin-right: auto;
  }
}
.hm-premium__heading {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.hm-premium__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

@media (max-width: 540px) {
  .hm-buffetBand__title {
    font-size: 36px;
    letter-spacing: 0.1em;
  }
  /* 狭幅：飾りを左右へ逃がし、横だけクリップ（hidden+visible だと縦が auto になり不要な縦スクロールが出るため clip） */
  .hm-buffetIntro {
    overflow-x: clip;
    overflow-y: visible;
  }
  .hm-buffetIntro::before {
    transform: translateY(-50%) translateX(-32%);
  }
  .hm-buffetIntro::after {
    transform: translateY(-50%) translateX(32%);
  }
  .hm-buffetIntro__heading {
    font-size: 24px;
  }
  .hm-buffetIntro__lead {
    font-size: 15px;
  }
  .hm-buffetBand:not(.hm-buffetBand--flip) .hm-buffetBand__media {
    width: calc(100% - 20px);
    margin-right: 20px;
  }
  .hm-buffetBand--flip .hm-buffetBand__media {
    width: calc(100% - 20px);
    margin-left: 20px;
  }
  .hm-menuTabDecorLines {
    gap: 0;
  }
  .hm-premium {
    aspect-ratio: auto;
  }
  .hm-premium__heading {
    font-size: 24px;
  }
  .hm-premium__lead {
    font-size: 15px;
  }
}
@media (min-width: 1001px) {
  .hm-dashiHero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px 48px;
    margin-bottom: 48px;
  }
  .hm-dashiHero__visual {
    width: min(42%, 360px);
  }
  .hm-dashiGrid {
    gap: 40px 40px;
  }
}
/* Course tab: comparison table (outer radius only; equal columns) */
/* overflow: visible — Safari で sticky 列が効かない原因になり得る祖先の overflow:hidden を避ける */
.hm-courseTableWrap {
  max-width: 100%;
  border-radius: 16px;
  overflow: visible;
  border: none;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
}

.hm-courseTableWrap > .hm-courseTable--bandOnly:first-child {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.hm-courseTableWrap > .hm-courseTableScrollShell:last-child .hm-courseTableScroll {
  border-radius: 0 0 16px 16px;
}

.hm-courseTableScroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: transparent;
}

.hm-courseTable--bandOnly {
  width: 100%;
  display: table;
}

.hm-courseTableScrollShell {
  display: block;
}

.hm-courseTableScrollCtrl {
  display: none;
}

.hm-courseScrollHint {
  display: none;
}

@media (max-width: 1080px) {
  .hm-courseTableWrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    overflow-anchor: none;
  }
  .hm-courseTableScrollShell {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin-top: -2px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  .hm-courseTableScroll {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    overflow-anchor: none;
    box-sizing: border-box;
    isolation: isolate;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.28) transparent;
  }
  .hm-courseTableScroll:focus {
    outline: none;
  }
  .hm-courseTableScroll::-webkit-scrollbar {
    height: 8px;
  }
  .hm-courseTableScroll::-webkit-scrollbar-track {
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .hm-courseTableScroll::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.28);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
  }
  .hm-courseTableScroll::-webkit-scrollbar-corner {
    background: transparent;
  }
  .hm-courseScrollHint {
    display: flex;
    pointer-events: none;
    position: absolute;
    top: 500px;
    left: calc((100% + 125px) / 2);
    z-index: 12;
    width: 200px;
    height: 200px;
    margin: 0;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .hm-courseScrollHint--visible {
    opacity: 1;
    visibility: visible;
  }
  .hm-courseScrollHint__img {
    display: block;
    width: 200px;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .hm-courseTable--bodyOnly .hm-courseTable__row > th:first-child,
  .hm-courseTable--bodyOnly .hm-courseTable__row > td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.07);
    background-clip: padding-box;
  }
  .hm-courseTableScrollCtrl {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    z-index: 3;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
    color: #444;
    background-color: transparent;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55), 0 1px 4px rgba(0, 0, 0, 0.35);
    opacity: 1;
    pointer-events: auto;
    transition: background-color 0.2s ease;
  }
  .hm-courseTableScrollCtrl:hover {
    background-color: rgba(0, 0, 0, 0.45);
  }
  .hm-courseTableScrollCtrl:active {
    color: #444;
    background-color: transparent;
  }
  .hm-courseTableScrollCtrl:hover:active {
    background-color: rgba(0, 0, 0, 0.45);
  }
  .hm-courseTableScrollShell--hScroll .hm-courseTableScrollCtrl {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .hm-courseTableScrollShell--hScroll .hm-courseTableScrollCtrl:hover {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .hm-courseTableScrollShell--hScroll .hm-courseTableScrollCtrl:active {
    color: #444;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .hm-courseTableScrollShell--hScroll .hm-courseTableScrollCtrl:hover:active {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .hm-courseTableScrollCtrl--prev {
    left: 125px;
    right: auto;
  }
  .hm-courseTableScrollCtrl--next {
    right: 0;
    left: auto;
  }
}
.hm-courseTable {
  --hm-course-cell-white: #fff;
  width: 100%;
  min-width: 640px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 2px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--raw-text-dark);
}

.hm-courseTable col {
  width: 12.5%;
}

.hm-courseTable.hm-courseTable--bandOnly {
  min-width: 0;
}

@media (max-width: 1080px) {
  .hm-courseTable.hm-courseTable--bodyOnly {
    min-width: 1000px;
  }
}
.hm-courseTable__cell {
  padding: 12px 8px;
  border: 1px solid transparent;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}

.hm-courseTable__row:not(.hm-courseTable__row--band):not(.hm-courseTable__row--tariff) > .hm-courseTable__cell {
  min-height: 130px;
  height: auto;
}

.hm-courseTable__row--tariff > .hm-courseTable__cell {
  min-height: 60px;
  height: auto;
  padding-block: 4px;
}

.hm-courseTable__row--band > .hm-courseTable__cell {
  min-height: 0;
  height: auto;
}

.hm-courseTable__cell--band {
  padding: 14px 12px;
  background: var(--raw-peach-400);
  color: var(--raw-cream-100);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-align: left;
}

.hm-courseTable__cell--bandCourseList {
  font-size: 20px;
  font-weight: 900;
  text-align: left;
}

.hm-courseTable__cell--bandStacked {
  padding: 0;
  vertical-align: top;
  background: var(--raw-peach-400);
}

.hm-courseTable__bandHead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25em 0.65em;
  margin: 0;
  padding: 14px 12px;
  background: transparent;
  letter-spacing: 0.06em;
  text-align: left;
}

.hm-courseTable__bandTitle {
  color: var(--raw-cream-100);
  font-size: 20px;
  font-weight: 900;
  padding-right: 12px;
}

.hm-courseTable__bandInline {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--raw-text-dark);
}

.hm-courseTable__bandHead--ingredient {
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 16px;
}

.hm-courseTable__bandTitle--ingredient {
  flex: 0 0 auto;
  margin: 0;
  padding-right: 12px;
  color: #fff;
}

.hm-courseTable__bandIngredientLegend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 28px;
  flex: 0 1 auto;
  min-width: 0;
}

.hm-courseTable__bandLegendPair {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hm-courseTable__bandLegendLabel {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--raw-text-dark);
}

.hm-courseTable__bandLegendMark {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.hm-courseTable__bandLegendMark--includePot {
  width: 30px;
  height: 30px;
  background: url("../img/icon_pot_b.png") center/contain no-repeat;
}

.hm-courseTable__bandLegendMark--x {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--raw-text-dark);
  background: transparent;
  box-sizing: border-box;
}

.hm-courseTable__bandLegendMark--x::before,
.hm-courseTable__bandLegendMark--x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  margin: -0.75px 0 0 -6px;
  background: var(--raw-text-dark);
  border-radius: 0.75px;
}

.hm-courseTable__bandLegendMark--x::before {
  transform: rotate(45deg);
}

.hm-courseTable__bandLegendMark--x::after {
  transform: rotate(-45deg);
}

/* コース案内：オレンジ見出し帯（コース一覧・価格一覧・食材一覧） */
@media (max-width: 768px) {
  .hm-courseTable__cell--band,
  .hm-courseTable__cell--bandCourseList {
    padding-block: 6px;
  }
  .hm-courseTable__cell--bandCourseList,
  .hm-courseTable__bandTitle,
  .hm-courseTable__bandTitle--ingredient {
    font-size: 16px;
  }
  .hm-courseTable__bandHead {
    padding-block: 6px;
    gap: 0.125em 0.325em;
  }
  .hm-courseTable__bandInline,
  .hm-courseTable__bandLegendLabel {
    font-size: 12px;
  }
  .hm-courseTable__bandHead--ingredient {
    gap: 5px 8px;
  }
  .hm-courseTable__bandIngredientLegend {
    gap: 5px 14px;
  }
  .hm-courseTable__bandLegendPair {
    gap: 4px;
  }
  .hm-courseTable__bandLegendMark--includePot {
    width: 20px;
    height: 20px;
  }
  .hm-courseTable__bandLegendMark--x {
    width: 20px;
    height: 20px;
  }
  .hm-courseTable__bandLegendMark--x::before,
  .hm-courseTable__bandLegendMark--x::after {
    width: 9px;
    margin: -0.75px 0 0 -4.5px;
  }
}
.hm-courseTable--bodyOnly th.hm-courseTable__cell--rowHead,
.hm-courseTable--bodyOnly th.hm-courseTable__cell--ingredientLabel {
  line-height: 1.35;
}

.hm-courseTable__cell--rowHead {
  color: var(--raw-cream-100);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hm-courseTable__cell--rowHeadCourse {
  background: var(--raw-peach-300);
}

.hm-courseTable__cell--rowHeadTariffEat {
  background: #d94d42;
}

.hm-courseTable__cell--rowHeadTariffDrink {
  background: #d94d42;
}

.hm-courseTable__cell--tariffHead {
  font-size: 14px;
  font-weight: 900;
}

.hm-courseTable__cell--course {
  background-color: var(--hm-course-cell-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

/* コース列の背景アイコン（staticsite/img） */
.hm-courseTable__cell--courseBg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% auto;
}

.hm-courseTable__cell--courseBg01 {
  background-image: url("../img/icon_shushi.png");
}

.hm-courseTable__cell--courseBg02 {
  background-image: url("../img/icon_pork.png");
}

.hm-courseTable__cell--courseBg03 {
  background-image: url("../img/icon_mix.png");
}

.hm-courseTable__cell--courseBg04 {
  background-image: url("../img/icon_tongue.png");
}

.hm-courseTable__cell--courseBg05 {
  background-image: url("../img/icon_wagyu.png");
}

.hm-courseTable__cell--courseBg06 {
  background-image: url("../img/icon_crab.png");
}

.hm-courseTable__cell--courseBg07 {
  background-image: url("../img/icon_premium.png");
}

.hm-courseTable__courseEn {
  color: var(--color-primary);
}

.hm-courseTable__courseJp {
  color: var(--color-primary);
}

.hm-courseTable__cell--price {
  background-color: var(--hm-course-cell-white);
  font-size: 14px;
  font-weight: 400;
}

.hm-courseTable__row--tariff[data-tariff=drink] .hm-courseTable__cell--price {
  font-weight: 900;
}

.hm-courseTable__cell--priceDrink {
  color: var(--color-primary);
}

.hm-courseTable__cell--ingredientLabel {
  vertical-align: middle;
  text-align: center;
  padding-block: 14px;
  padding-inline: 8px;
  background: var(--raw-peach-300);
  color: var(--raw-cream-100);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

html[lang=en] .hm-courseTable__cell--rowHead,
html[lang=en] .hm-courseTable__cell--ingredientLabel {
  font-size: 14px;
}

html[lang=en] .hm-courseTable__cell--headFitted {
  hyphens: auto;
}

.hm-courseTable__ingredientLabelInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
  min-height: 0;
}

.hm-courseTable__ingredientLabelInner::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hm-courseTable__cell--ingredientIconFishes .hm-courseTable__ingredientLabelInner::before {
  background-image: url("../img/icon_food_fishes.png");
}

.hm-courseTable__cell--ingredientIconPork .hm-courseTable__ingredientLabelInner::before {
  background-image: url("../img/icon_food_pork.png");
}

.hm-courseTable__cell--ingredientIconChicken .hm-courseTable__ingredientLabelInner::before {
  background-image: url("../img/icon_food_chiken.png");
}

.hm-courseTable__cell--ingredientIconBeef .hm-courseTable__ingredientLabelInner::before {
  background-image: url("../img/icon_food_beef.png");
}

.hm-courseTable__cell--ingredientIconTongue .hm-courseTable__ingredientLabelInner::before {
  background-image: url("../img/icon_food_tongue.png");
}

.hm-courseTable__cell--ingredientIconCrab .hm-courseTable__ingredientLabelInner::before {
  background-image: url("../img/icon_food_crab.png");
}

.hm-courseTable__cell--ingredientIconWagyu .hm-courseTable__ingredientLabelInner::before {
  background-image: url("../img/icon_food_wagyu.png");
}

.hm-courseTable__cell--icon {
  position: relative;
  min-height: 0;
  padding: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px auto;
}

.hm-courseTable__cell--iconYes {
  background-color: var(--hm-course-cell-white);
  background-image: url("../img/icon_pot_red.png");
}

.hm-courseTable__cell--iconNo {
  background-color: #DEDEDE;
  background-image: none;
}

.hm-courseTable__cell--iconNo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border-radius: 50%;
  border: 1.5px solid var(--raw-text-dark);
  background: transparent;
  box-sizing: border-box;
  z-index: 0;
}

.hm-courseTable__cell--iconNo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: linear-gradient(45deg, transparent 44%, var(--raw-text-dark) 44%, var(--raw-text-dark) 56%, transparent 56%), linear-gradient(-45deg, transparent 44%, var(--raw-text-dark) 44%, var(--raw-text-dark) 56%, transparent 56%);
}

.hm-courseTable__cell--iconRed {
  background-color: var(--hm-course-cell-white);
  background-image: url("../img/icon_pot_red.png");
}

.hm-menuTabContent__footer {
  position: relative;
  height: 32px;
  border-radius: 0 0 20px 20px;
  background: var(--hm-menu-current-color);
  transition: background-color 0.3s ease;
}

.hm-faq {
  position: relative;
  padding: 148px 0 120px;
  background: var(--raw-peach-300);
}

.hm-faq__vapor {
  position: absolute;
  top: -30px;
  right: -50px;
  width: 250px;
  height: auto;
  z-index: 1;
}

.hm-faq__titleBlock {
  margin: 0 auto 28px;
}

.hm-faq__title {
  margin-bottom: 8px;
}

.hm-faq__lead {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hm-faq__panelWrap {
  width: 1296px; /* 1080 + 108 + 108 */
  margin-inline: auto;
  box-sizing: border-box;
}

.hm-faq__panelInner {
  position: relative;
  --hm-faq-right-lane: 108px;
  width: 100%;
  height: 100%;
  padding-block: 120px;
  padding-left: 108px;
  padding-right: 108px;
  box-sizing: border-box;
  border: 4px solid rgba(255, 244, 226, 0.95);
  border-radius: 100px;
  overflow: hidden;
  background: url("../img/bg_faq.png") no-repeat center/cover;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.hm-faq__panelViewport {
  width: 100%;
  margin-inline: auto;
  height: 480px;
  overflow-y: auto;
  padding: 0;
  backdrop-filter: saturate(0.9);
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hm-faq__panelViewport::-webkit-scrollbar {
  display: none;
}

.hm-faqScroll {
  position: absolute;
  top: 152px;
  left: calc(100% - var(--hm-faq-right-lane) / 2);
  display: grid;
  justify-items: center;
  gap: 16px;
  z-index: 2;
  pointer-events: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.hm-faqScroll__label {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--color-text-inverse);
}

.hm-faqScroll__line {
  width: 1px;
  height: 350px;
  background: rgba(255, 244, 226, 0.5);
}

.hm-faqScroll__thumb {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-text-inverse);
  transform: translate(-50%, 0);
  transition: transform 0.15s linear;
  cursor: grab;
  touch-action: none;
}

.hm-faqScroll__thumb.is-dragging {
  cursor: grabbing;
}

@media (max-width: 1440px) {
  .hm-faq__panelWrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: auto;
    padding-right: 80px;
    box-sizing: border-box;
  }
  .hm-faq__panelInner {
    width: 100%;
    padding-left: 188px;
    padding-right: 108px;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .hm-faq__panelViewport {
    width: 100%;
    margin-inline: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .hm-faq__item {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.hm-faq__item {
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.hm-faq__question {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.hm-faq__qLabel,
.hm-faq__qText {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
}

.hm-faq__toggle {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hm-faq__toggle::before,
.hm-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--color-text);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hm-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.hm-faq__item.is-open .hm-faq__toggle::after {
  opacity: 0;
}

.hm-faq__answer {
  height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.3s ease, margin-top 0.3s ease, opacity 0.25s ease;
}

.hm-faq__item.is-open .hm-faq__answer {
  margin-top: 10px;
  opacity: 1;
}

.hm-faq__answerRow {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.hm-faq__aLabel {
  display: inline-flex;
  align-items: center;
  align-self: start;
  height: 24px; /* match A-text first-line box */
  line-height: 1;
  font-size: 24px;
  font-weight: 400;
}

.hm-faq__aText {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.hm-faq__qText,
.hm-faq__aText {
  letter-spacing: 0.02em;
}

.hm-faq__qLabel {
  display: inline-flex;
  align-items: center;
  align-self: start;
  height: 36px; /* match Q-text first-line box */
  line-height: 1;
}

.hm-access {
  position: relative;
  padding: 148px 0 0;
  background: var(--raw-peach-400);
}

.hm-access__vapor {
  position: absolute;
  top: 100px;
  left: -50px;
  width: 250px;
  height: auto;
  z-index: 1;
  transform: scaleX(-1);
}

.hm-access__titleBlock {
  margin: 0 auto 148px;
}

.hm-access__title {
  --c-outline-title-fill: var(--color-text-inverse);
  --c-outline-title-stroke: var(--color-text-inverse);
  --c-outline-title-ghost-fill: rgba(255, 244, 226, 0.2);
  --c-outline-title-ghost-stroke: rgba(255, 244, 226, 0.2);
  margin-bottom: 8px;
}

.hm-access__lead {
  color: var(--color-text-inverse);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hm-access__panelWrap {
  position: relative;
  --hm-access-panel-gutter: clamp(16px, 5.556vw, 72px);
  width: min(1296px, 100% - 2 * var(--hm-access-panel-gutter));
  max-width: 1296px;
  margin-inline: auto;
  box-sizing: border-box;
}

.hm-access__logo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 260px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hm-access__panelInner {
  width: 100%;
  height: 100%;
  padding-top: 172px;
  padding-bottom: 110px;
  padding-left: 108px;
  padding-right: 108px;
  box-sizing: border-box;
  border: 4px solid rgba(255, 244, 226, 0.95);
  border-radius: 100px;
  overflow: hidden;
  background: url("../img/bg_access.png") no-repeat center/cover;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.hm-access__panelViewport {
  width: 100%;
  padding: 0 28px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: max-content 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: start;
}

.hm-access__row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  gap: 0;
  padding: 0;
  border-bottom: 0;
}

.hm-access__row > .hm-access__label,
.hm-access__row > .hm-access__text:not(.hm-access__label) {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 244, 226, 0.5);
  margin: 0;
}

.hm-access__text {
  margin: 0;
  color: var(--color-text-inverse);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.hm-access__tel {
  color: inherit;
  text-decoration: none;
}
.hm-access__tel:hover {
  text-decoration: underline;
}

.hm-access__label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  -moz-column-gap: 0.28em;
       column-gap: 0.28em;
  text-align: left;
  white-space: nowrap;
  padding-right: 0.45em;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.hm-access__label::after {
  content: "：";
  grid-column: 2;
  grid-row: 1;
  line-height: 1;
  font: inherit;
}

.hm-accessLinks {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

.hm-accessLinks__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

.hm-accessLinks__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hm-accessMap {
  width: 100vw;
  height: 400px;
  margin-top: 120px;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hm-accessMap iframe {
  width: 100%;
  height: 100%;
  display: block;
  /* Warm map tone aligned with peach-based site palette */
  filter: sepia(0.28) saturate(0.9) hue-rotate(-12deg) brightness(1.03) contrast(0.92);
}

@media (max-width: 1200px) {
  .hm-menuTabContent__header {
    padding-inline: 30px;
    gap: 20px;
  }
  .hm-faq__panelWrap {
    padding-right: 70px;
  }
  .hm-access__panelWrap {
    --hm-access-panel-gutter: clamp(16px, 4.5vw, 56px);
  }
  .hm-faq__panelInner {
    padding-left: 132px;
    padding-right: 96px;
    --hm-faq-right-lane: 96px;
  }
  .hm-access__panelInner {
    padding-left: 96px;
    padding-right: 96px;
  }
  .hm-find__titleSection {
    padding-top: 120px;
  }
  .hm-find__titleBlock,
  .hm-find__title {
    text-align: center;
  }
  .hm-find__jp {
    text-align: center;
  }
  .hm-find__text {
    padding-inline: 40px;
  }
  .hm-find__row:not(.hm-find__row--reverse) .hm-find__text {
    padding-right: 0;
  }
  .hm-find__row--reverse .hm-find__text {
    padding-left: 0;
  }
  .hm-find__media {
    width: calc(818px - (1440px - 100vw) + 80px); /* add 80px (40px extra at <=1200) */
  }
  .hm-hero__inner {
    padding-inline: 120px;
  }
  .hm-hero__textImage--top {
    right: 52px;
  }
  .hm-hero__textImage--bottom {
    left: 40px;
  }
}
@media (max-width: 1000px) {
  .hm-faq__panelWrap {
    padding-right: 60px;
  }
  .hm-access__panelWrap {
    --hm-access-panel-gutter: clamp(16px, 4vw, 48px);
  }
  .hm-faq__panelInner {
    padding-left: 76px;
    padding-right: 84px;
    --hm-faq-right-lane: 84px;
  }
  .hm-access__panelInner {
    padding-left: 76px;
    padding-right: 76px;
  }
  .hm-find__media {
    width: calc(818px - (1440px - 100vw) + 160px); /* add +60px more from <=1000 */
  }
  .hm-find__kicker {
    font-size: 32px;
    line-height: 1;
  }
  .hm-find__desc {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .hm-faq__panelWrap {
    padding-right: 50px;
  }
  .hm-access__panelWrap {
    --hm-access-panel-gutter: clamp(16px, 3.5vw, 40px);
  }
  .hm-faq__panelInner {
    padding-left: 48px;
    padding-right: 78px;
    --hm-faq-right-lane: 78px;
  }
  .hm-access__panelInner {
    padding-left: 48px;
    padding-right: 48px;
  }
  .hm-find__text {
    padding-inline: 20px;
  }
  .hm-find__row .hm-find__text {
    padding-right: 0;
  }
  .hm-find__row--reverse .hm-find__text {
    padding-left: 0;
  }
  .hm-find__media {
    width: calc(818px - (1440px - 100vw) + 200px); /* keep +60px and add +40px more at <=900 */
  }
  .hm-hero__textImage--top {
    width: 216px;
  }
  .hm-hero__textImage--bottom {
    width: 279px;
  }
  html[lang=en] body.hm-home .hm-hero__textImage--top {
    width: 186.9230769231px;
    height: auto;
  }
  html[lang=en] body.hm-home .hm-hero__textImage--bottom {
    width: 334.3189655172px;
    height: auto;
  }
  html[lang=zh-Hans] body.hm-home .hm-hero__textImage--top {
    width: 147.8769230769px;
    height: auto;
  }
  html[lang=zh-Hans] body.hm-home .hm-hero__textImage--bottom {
    width: 234.9051724138px;
    height: auto;
  }
  html[lang=zh-Hant] body.hm-home .hm-hero__textImage--top {
    width: 147.8769230769px;
    height: auto;
  }
  html[lang=zh-Hant] body.hm-home .hm-hero__textImage--bottom {
    width: 234.9051724138px;
    height: auto;
  }
  html[lang=ko] body.hm-home .hm-hero__textImage--top {
    width: 190.2461538462px;
    height: auto;
  }
  html[lang=ko] body.hm-home .hm-hero__textImage--bottom {
    width: 323.0948275862px;
    height: auto;
  }
}
@media (max-width: 1000px) {
  .hm-menuTabs {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 54px;
  }
  .hm-menuTabs__button {
    width: 100%;
    max-width: 400px;
    font-size: 16px;
    padding: 7px 12px;
  }
  .hm-menuTabs__button.is-active {
    position: relative;
  }
  .hm-menuTabs__button.is-active::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 19px;
    height: 19px;
    transform: translateY(-50%);
    background: url("../img/icon_circlecheck.svg") no-repeat center/contain;
    pointer-events: none;
  }
  .hm-menuTabs__indicator {
    left: 50%;
    transform: translateX(-50%) !important;
  }
  .hm-menuTabContent__header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    text-align: center;
    border-radius: 20px 20px 0 0;
  }
  .hm-menuTabContent__subtitle {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    font-size: 16px;
  }
  .hm-menuTabContent__title {
    transform: none;
  }
}
@media (max-width: 768px) {
  body.hm-home {
    padding-top: 0;
  }
  .hm-main {
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hm-hero {
    height: 800px;
  }
  .hm-hero__inner {
    align-items: flex-start;
    gap: 10px;
    padding-top: 90px;
    padding-inline: 0;
  }
  .hm-hero__visual {
    width: min(100%, 640px);
    height: 580px;
  }
  .hm-hero__photo img {
    border-radius: 8px;
  }
  .hm-hero__side {
    position: absolute;
    top: 90px;
    display: grid;
    place-items: center;
    height: 580px;
    text-align: center;
    font-size: 12px;
  }
  .hm-hero__side--left {
    left: 0;
  }
  .hm-hero__side--right {
    right: 0;
  }
  .hm-hero__textImage--top {
    top: 80px;
    right: 34px;
  }
  .hm-hero__textImage--bottom {
    left: 20px;
    bottom: 80px;
  }
  .hm-intro {
    background-image: url("../img/bg_intro_01_sp.png");
    padding-block: 120px 220px;
  }
  .hm-intro__titleWrap {
    text-align: right;
    padding-inline: 16px;
  }
  .hm-intro__panel {
    padding: 90px 20px;
  }
  .hm-intro__title {
    --c-outline-title-size: 56px;
    --c-outline-title-ghost-x: -32px;
    --c-outline-title-ghost-y: -32px;
    line-height: 1.5;
    margin-bottom: 26px;
  }
  .hm-intro__text {
    font-size: 16px;
    line-height: 1.9;
  }
  .hm-intro__deco--lt {
    top: -110px;
    left: -120px;
  }
  .hm-intro__deco--rb {
    right: -40px;
    bottom: -120px;
  }
  .hm-intro__hashtags {
    margin-top: 12px;
    padding-inline: 16px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  .hm-menu {
    padding: 148px 0 120px;
  }
  .hm-menu__lead {
    font-size: 14px;
  }
  .hm-menuTabContent {
    border-radius: 20px;
  }
  .hm-menuTabContent__body {
    padding: 0;
  }
  .hm-menuTabPane {
    padding: 28px 0 80px;
    font-size: 16px;
  }
  .hm-menuTabPane__header {
    gap: 18px;
  }
  /* Buffet / Premium: stack header at 768px; center slash decorations with headline copy */
  .hm-menuTabPane[data-pane-id=buffet] .hm-menuTabPane__header,
  .hm-menuTabPane[data-pane-id=premium] .hm-menuTabPane__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hm-menuTabPane[data-pane-id=buffet] .hm-menuTabPane__headline,
  .hm-menuTabPane[data-pane-id=premium] .hm-menuTabPane__headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    text-align: center;
    width: 100%;
  }
  .hm-menuTabPane[data-pane-id=buffet] .hm-menuTabPane__promoLine,
  .hm-menuTabPane[data-pane-id=premium] .hm-menuTabPane__promoLine {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .hm-menuTabPane[data-pane-id=buffet] .hm-menuTabDecorLines,
  .hm-menuTabPane[data-pane-id=premium] .hm-menuTabDecorLines {
    justify-content: center;
  }
  .hm-menuTabPane--h-xs {
    min-height: 140px;
  }
  .hm-menuTabPane--h-sm {
    min-height: 200px;
  }
  .hm-menuTabPane--h-md {
    min-height: 250px;
  }
  .hm-menuTabPane--h-lg {
    min-height: 320px;
  }
  .hm-menuTabPane--h-xl {
    min-height: 420px;
  }
  .hm-menuTabPane__kicker {
    padding: 18px 24px;
  }
  .hm-menuTabPane__headline {
    text-align: center;
  }
  .hm-menuTabPane__promoSub {
    font-size: 18px;
  }
  .hm-faq {
    padding: 148px 0 120px;
  }
  .hm-faq__content {
    width: 100%;
  }
  .hm-faq__vapor {
    width: 200px;
    top: 30px;
    right: -40px;
  }
  .hm-faq__title {
    margin-bottom: 8px;
  }
  .hm-faq__lead {
    font-size: 14px;
  }
  .hm-faq__panelWrap {
    padding-right: 40px;
  }
  .hm-faq__panelInner {
    --hm-faq-right-lane: 72px;
    padding-block: 60px;
    padding-left: 20px;
    padding-right: 72px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-width: 4px;
  }
  .hm-faq__panelViewport {
    height: 780px;
    padding: 0;
  }
  .hm-faqScroll {
    top: 124px;
  }
  .hm-faq__item {
    width: 100%;
    max-width: none;
    padding: 20px;
    margin-bottom: 8px;
  }
  .hm-faq__qLabel,
  .hm-faq__qText {
    font-size: 20px;
    line-height: 1.5;
  }
  .hm-faq__qLabel {
    height: 30px;
  }
  .hm-faq__aLabel {
    font-size: 20px;
    height: 24px;
  }
  .hm-faq__aText {
    font-size: 16px;
    line-height: 1.5;
  }
  .hm-access {
    padding: 148px 0 0;
  }
  .hm-access__content {
    width: 100%;
  }
  .hm-access__vapor {
    width: 200px;
    top: 120px;
    left: -40px;
  }
  .hm-access__title {
    margin-bottom: 8px;
  }
  .hm-access__titleBlock {
    margin-bottom: 124px;
  }
  .hm-access__lead {
    font-size: 14px;
  }
  .hm-access__logo {
    width: 210px;
  }
  .hm-access__panelWrap {
    --hm-access-panel-gutter: clamp(16px, 4vw, 32px);
  }
  .hm-access__panelInner {
    padding-top: 128px;
    padding-bottom: 60px;
    padding-inline: 40px;
    border-radius: 80px;
    border-width: 4px;
  }
  .hm-access__panelViewport {
    padding: 0;
    display: block;
  }
  .hm-access__row {
    display: grid;
    grid-template-columns: 1fr;
    grid-column: auto;
    gap: 4px;
    padding-block: 12px;
    padding-inline: 0;
    border-bottom: 1px solid rgba(255, 244, 226, 0.5);
  }
  .hm-access__row > .hm-access__label,
  .hm-access__row > .hm-access__text:not(.hm-access__label) {
    padding: 0;
    border-bottom: 0;
  }
  .hm-accessMap {
    height: 600px;
    margin-top: 120px;
    margin-bottom: 0;
  }
  .hm-access__text {
    font-size: 16px;
    line-height: 2;
  }
  .hm-access__label {
    display: block;
    width: 100%;
    min-width: 0;
    padding-right: 0;
    text-align: left;
    white-space: nowrap;
  }
  .hm-access__label::after {
    display: inline;
    line-height: inherit;
    font: inherit;
    grid-column: unset;
    grid-row: unset;
  }
  .hm-accessLinks {
    gap: 32px;
  }
  .hm-accessLinks__item {
    width: 48px;
    height: 48px;
  }
  .hm-find > * {
    min-height: auto;
  }
  .hm-find__titleSection {
    padding: 160px 0 48px;
  }
  .hm-find__titleBlock {
    text-align: center;
  }
  .hm-find__title {
    text-align: center;
  }
  .hm-sectionTitle {
    --c-outline-title-size: 40px;
    --c-outline-title-ghost-x: -15px;
    --c-outline-title-ghost-y: -20px;
    line-height: 1.5;
  }
  .hm-find__jp {
    font-size: 20px;
    text-align: center;
  }
  .hm-find__row {
    flex-direction: column;
    gap: 48px;
  }
  .hm-find__row--reverse {
    flex-direction: column;
  }
  .hm-find__text {
    min-width: auto;
    padding-inline: 20px;
    padding-top: 0;
  }
  .hm-find__card {
    padding: 16px 0 96px;
  }
  .hm-find__media {
    width: 100%;
  }
  .hm-find__imageFrame {
    border-radius: 80px;
    width: 100%;
    height: 400px;
    transform: none;
    aspect-ratio: auto;
    border-right: 4px solid rgba(255, 244, 226, 0.95);
    border-left: 4px solid rgba(255, 244, 226, 0.95);
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
  }
  .hm-find__kicker {
    font-size: 32px;
  }
  .hm-find__desc {
    font-size: 16px;
  }
  .hm-find__card--01 .hm-find__media {
    width: 100%;
  }
  .hm-find__card--01 .hm-find__imageFrame {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .hm-findCarousel__nav {
    width: 32px;
    height: 32px;
  }
  .hm-findCarousel__nav span {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
  }
  .hm-find__card--01 .hm-find__imageFrame,
  .hm-find__card--02 .hm-find__imageFrame,
  .hm-find__card--03 .hm-find__imageFrame {
    transform: none;
  }
  .hm-find__card--01 .hm-find__text,
  .hm-find__card--02 .hm-find__text,
  .hm-find__card--03 .hm-find__text {
    padding-top: 0;
  }
  .hm-find__card--02 .hm-find__media {
    width: calc(100% - 56px);
    margin-right: 56px;
    margin-left: 0;
  }
  .hm-find__card--03 .hm-find__media {
    width: calc(100% - 56px);
    margin-left: 56px;
    margin-right: 0;
  }
  .hm-find__card--02 .hm-find__imageFrame {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .hm-find__card--03 .hm-find__imageFrame {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .hm-find__card--02 .hm-find__text,
  .hm-find__card--02 .hm-find__kicker,
  .hm-find__card--02 .hm-find__desc {
    text-align: right;
  }
  .hm-find__card--02 .hm-find__text {
    width: 100%;
    padding-left: 0;
    padding-right: 20px;
  }
  .hm-find__card--02 .hm-find__kicker,
  .hm-find__card--02 .hm-find__desc {
    margin-right: 0;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .hm-dashiHero__crown {
    width: 59px;
    height: 52px;
  }
  .hm-dashiHero__badgeText {
    font-size: 36px;
    -webkit-text-stroke: 6px var(--color-text-inverse);
  }
  .hm-dashiHero__caption {
    font-size: 36px;
    -webkit-text-stroke: 6px var(--color-text-inverse);
  }
  .hm-dashiCard__caption {
    font-size: 24px;
    -webkit-text-stroke: 6px var(--color-text-inverse);
  }
}
@media (max-width: 540px) {
  .hm-menuTabPane__body {
    padding-inline: 12px;
  }
  .hm-menuTabPane__header {
    flex-direction: column;
    gap: 0;
  }
  .hm-menuTabPane__headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hm-menuTabContent__title {
    font-size: 31px; /* 48px * 0.65 (rounded) */
  }
  .hm-menuTabContent__subtitle {
    font-size: 13px; /* 16px * 0.8 (rounded) */
  }
  .hm-faqScroll__label {
    display: none;
  }
  .hm-faq__panelWrap {
    padding-right: 20px;
  }
  .hm-faq__panelInner {
    --hm-faq-right-lane: 36px;
    padding-right: 36px;
  }
  .hm-faq__item {
    padding: 20px 10px;
  }
  .hm-faq__question {
    gap: 6px;
  }
  .hm-access__panelWrap {
    --hm-access-panel-gutter: 16px;
  }
  .hm-access__panelInner {
    padding-inline: 20px;
  }
  .hm-find__card--02 .hm-find__media {
    width: calc(100% - 20px);
    margin-right: 20px;
  }
  .hm-find__card--03 .hm-find__media {
    width: calc(100% - 20px);
    margin-left: 20px;
  }
  .hm-menuTabPane[data-pane-id=course] .hm-menuTabPane__body {
    width: 800px;
    max-width: 100%;
  }
  .hm-courseTableScrollShell {
    max-width: 800px;
  }
  .hm-courseScrollHint {
    left: calc((100% + 100px) / 2);
  }
  .hm-courseTableScrollCtrl {
    width: 32px;
    font-size: 22px;
  }
  .hm-courseTableScrollCtrl--prev {
    left: 100px;
  }
  .hm-courseTable.hm-courseTable--bodyOnly {
    min-width: 800px;
    font-size: 13px;
  }
  .hm-courseTable--bodyOnly .hm-courseTable__cell--course {
    font-size: 14px;
  }
  .hm-courseTable--bodyOnly .hm-courseTable__cell--price {
    font-size: 14px;
  }
  .hm-courseTable--bodyOnly .hm-courseTable__cell--rowHead {
    font-size: 16px;
    letter-spacing: 0.03em;
    padding-inline: 6px;
  }
  html[lang=en] .hm-courseTable--bodyOnly .hm-courseTable__cell--rowHead,
  html[lang=en] .hm-courseTable--bodyOnly .hm-courseTable__cell--ingredientLabel {
    font-size: 14px;
  }
  .hm-courseTable--bodyOnly .hm-courseTable__cell--tariffHead {
    font-size: 14px;
    padding-inline: 6px;
  }
  .hm-courseTable--bodyOnly .hm-courseTable__cell--ingredientLabel {
    font-size: 16px;
    padding-inline: 6px;
    padding-block: 12px;
  }
  .hm-courseTable--bodyOnly .hm-courseTable__ingredientLabelInner::before {
    width: 38px;
    height: 38px;
  }
  .hm-courseTable--bodyOnly .hm-courseTable__cell--icon {
    background-size: 36px auto;
  }
  .hm-dashiHero {
    gap: 20px;
    margin-bottom: 28px;
  }
  .hm-dashiHero__visual {
    width: min(100%, 280px);
  }
  .hm-dashiHero__crown {
    width: 48px;
    height: 42px;
  }
  .hm-dashiHero__badgeText {
    font-size: 28px;
    -webkit-text-stroke: 5px var(--color-text-inverse);
  }
  .hm-dashiHero__caption {
    font-size: 28px;
    -webkit-text-stroke: 5px var(--color-text-inverse);
  }
  .hm-dashiCard__caption {
    font-size: 18px;
    -webkit-text-stroke: 4px var(--color-text-inverse);
  }
  .hm-dashiHero__heading {
    font-size: 24px;
  }
  .hm-dashiGrid {
    gap: 12px 10px;
  }
  .hm-dashiNote {
    font-size: 11px;
  }
}
@media (max-width: 540px) and (max-height: 900px) {
  .hm-courseTable__row:not(.hm-courseTable__row--band):not(.hm-courseTable__row--tariff) > .hm-courseTable__cell {
    min-height: 100px;
    height: auto;
  }
}
@media (max-width: 540px) and (max-height: 900px) {
  .hm-faq__panelViewport {
    height: 480px;
  }
}/*# sourceMappingURL=style.css.map */