/*
Theme Name: RabbitHunt
Theme URI: https://rabbit-hunt.example.com
Author: 24 TWENTY FOUR INC.
Description: POKER & SHISHA BAR RABBIT HUNT — WordPress theme
Version: 1.0.0
*/

/* ============================================================
   1. CSS カスタムプロパティ（カラーパレット）
   ============================================================ */
:root {
  /* カラー */
  --color-bg: #292929; /* 全体背景：ダークグレー */
  --color-black: #000000; /* ヘッダー背景・オーバーレイ */
  --color-white: #ffffff; /* フッター背景・コンセプトカード */
  --color-purple: #7b2fbf; /* アクセントカラー：パープル */
  --color-purple-dark: #5a2090; /* パープル暗め */
  --color-gold: #c9a227; /* ヒーロータイトル：ゴールド */
  --color-gray-dark: #4c4c4c; /* ボーダー・区切り */
  --color-gray-mid: #1a1a1a; /* セクション区切り背景 */
  --color-text-main: #ffffff; /* 本文（ダーク背景上） */
  --color-text-dark: #111111; /* 本文（ライト背景上） */
  --color-text-muted: #aaaaaa; /* サブテキスト */

  /* タイポグラフィ */
  --font-en: "Nanum Myeongjo", serif;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-ja-sub: "Noto Serif JP", sans-serif;
  --font-accent: "Nanum Myeongjo", serif;
  --font-body-primary: "Noto Sans JP", sans-serif;

  /* レイアウト */
  --container-max: 1160px;
  --container-pad: 120px; /* デザイン値 左右パディング */

  /* ヘッダー */
  --header-h: 91px;
  /* モーション */
  --motion-duration: 0.9s;
  --motion-duration-short: 0.6s;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-delay-step: 80ms;
  --motion-ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}
* {
  /* outline: 1px solid red; */
}

/* ============================================================
   2. リセット・ベース
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* body だけでは absolute 要素の横はみ出しを防げない */
}

body {
  font-family: var(--font-ja);
  background-color: var(--color-bg);
  background-image: url(./assets/img/rabbithunt-bg-pattern.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

main#main-content {
  background-image: none; /* 背景は body 側で管理 */
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ============================================================
   3. 共通レイアウト（container / section / inner）
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

@media (max-width: 1280px) {
  .container {
    padding-inline: 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 24px;
  }
}

.section {
  width: 100%;
}

.section__inner {
  padding-block: 80px;
}

[data-watermark] {
  position: relative;
  isolation: isolate;
}

[data-watermark]::after {
  content: attr(data-watermark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--watermark-rotate, -6deg));
  font-family: var(--font-en);
  font-size: clamp(4rem, 18vw, 12rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

[data-watermark] > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section__inner {
    padding-block: 48px;
  }
}

/* セクション見出し（共通） */
.section-heading {
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 12px;
}

.section-heading__sub {
  display: block;
  width: 1px;
  height: 48px;
  background: currentColor;
  margin-inline: auto;
  margin-bottom: 32px;
}

/* ============================================================
   4. ヘッダー（.header）
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background-color: var(--color-black);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline: 120px 140px;
}

@media (max-width: 1280px) {
  .header__inner {
    padding-inline: 40px;
  }
}

/* ロゴ */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo-img {
  height: 44px;
  width: auto;
}

/* ナビゲーション */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: color 0.2s;
  white-space: nowrap;
}

.header__nav-link:hover {
  color: var(--color-purple);
}

.header__nav-link--cta {
  border: 1px solid var(--color-white);
  padding: 8px 20px;
  border-radius: 2px;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.header__nav-link--cta:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* ハンバーガー（SP） */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  transition: transform 0.35s var(--motion-ease-soft);
}

.header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
  transition:
    transform 0.35s var(--motion-ease-soft),
    opacity 0.35s var(--motion-ease-soft);
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
}

/* ============================================================
   5. ヒーロー（.hero）
   ============================================================ */
.hero {
  position: relative;
  max-width: 1440px; /* 1440px 外は body 背景パターンを表示 */
  min-height: 758px; /* デザイン仕様値（100vh から変更） */
  margin-inline: auto; /* 横中央配置 */
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__eyebrow {
  font-family: var(--font-en);
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  letter-spacing: 0.3em;
  color: var(--color-white);
  margin-bottom: 12px;
}

.hero__title {
  font-family: var(--font-en);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  line-height: 1.05;
  margin-bottom: 32px;
  text-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: heroFadeUp var(--motion-duration) var(--motion-ease) forwards;
  animation-delay: 0.15s;
  will-change: opacity, transform;
}

.hero__subtitle {
  font-family: var(--font-ja-sub);
  font-weight: 700;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  animation: heroFadeUp var(--motion-duration) var(--motion-ease) forwards;
  animation-delay: 0.35s;
  will-change: opacity, transform;
}

.hero__scroll {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
}

.hero__scroll-text {
  font-family: var(--font-accent);
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero__scroll-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__scroll .scroll-icon {
  rotate: 180deg;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ============================================================
   6. .page-column ラッパー
      hero 直下 〜 access を黒帯（max-width: 1160px）でまとめる
      overflow は設定しない（.poker__carousel 全幅ブレイクアウトのため）
   ============================================================ */
.page-column {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  background-color: #000000;
  position: relative;
}

@media (max-width: 1160px) {
  .page-column {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-column {
    margin-inline: 24px;
  }
}

/* ============================================================
   7. concept × producer 統合ラッパー（.concept-producer）
      coin.png / dice.png がセクション境界をまたいで連続表示される
   ============================================================ */
.concept-producer {
  background-color: var(--color-black);
  position: relative;
  isolation: isolate; /* 装飾と文字コンテンツの z-index を独立管理 */
}

/* coin.png: 左サイド — 黒帯外にはみ出して大きく表示 */
.concept-producer::before {
  content: "";
  position: absolute;
  background-image: url(./assets/img/coin.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  pointer-events: none;
  z-index: 10;
  width: 55vw;
  min-width: 125px;
  max-width: 900px;
  height: 70vw;
  max-height: 900px;
  left: -90px; /* 黒帯左端からはみ出す */
  top: 190px;
}

/* dice.png: 右サイド — 黒帯外にはみ出して大きく表示 */
.concept-producer::after {
  content: "";
  position: absolute;
  background-image: url(./assets/img/dice.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  pointer-events: none;
  z-index: 10;
  width: 55vw;
  min-width: 125px;
  max-width: 850px;
  height: 55vw;
  max-height: 850px;
  right: -80px; /* 黒帯右端からはみ出す */
  top: 60px;
}

/* ============================================================
   8. コンセプト（.concept）
   ============================================================ */
.concept {
  background-color: transparent; /* 親 .concept-producer が背景を担当 */
  padding-top: 100px;
  padding-bottom: 0; /* gap は .producer の padding-top で制御 */
  position: relative;
  z-index: 1; /* 装飾（z-index: 0）の前面 */
  overflow: visible; /* coin / dice がセクション外にはみ出せるよう解除 */
}

/* 旧装飾擬似要素を無効化（concept-producer に移管済み） */
.concept::before,
.concept::after {
  display: none;
}

.concept__container {
  max-width: 650px;
  margin-inline: auto;
  background-color: var(--color-black);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  z-index: 2; /* coin / dice より前面、文字を確実に上に */
}

.concept__heading {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin-bottom: 12px;
}

.concept__line {
  display: block;
  width: 1px;
  height: 48px;
  background-color: var(--color-gray-dark);
  margin-inline: auto;
  margin-bottom: 40px;
}

.concept__text {
  font-family: var(--font-body-primary);
  font-weight: 300;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
  text-align: center;
  text-transform: uppercase;
  z-index: 100;
}

.concept__text p + p {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .concept__card {
    padding: 40px 24px;
  }

  /* SP: 負のオフセットを解除（375px で右余白が発生しないよう） */
  .concept-producer::before {
    left: 0;
    width: 45vw;
    max-width: 45vw;
    height: 55vw;
    max-height: 55vw;
  }
  .concept-producer::after {
    right: 0;
    width: 45vw;
    max-width: 45vw;
    height: 45vw;
    max-height: 45vw;
  }
}

/* ============================================================
   9. プロデューサー（.producer）
   ============================================================ */
.producer {
  background-color: transparent; /* 親 .concept-producer が背景を担当 */
  padding-top: 100px; /* concept との gap = 100px */
  padding-bottom: 80px;
  position: relative;
  z-index: 1; /* 装飾（z-index: 0）の前面 */
}

.producer__inner {
  display: flex;
  gap: 38px; /* 仕様: 38px */
  width: 784px; /* 仕様: 全体幅 784px */
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.producer__image {
  flex: 0 0 336px; /* 仕様: 画像幅 336px */
  width: 336px;
  position: relative;
}

.producer__image-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.producer__body {
  flex: 0 0 416px;
  width: 416px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.producer__label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.producer__name {
  font-family: var(--font-ja-sub);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
  flex-direction: row;
}

.producer__name-en {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.producer__profile {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 2;
}

@media (max-width: 960px) {
  .producer__inner {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .producer__image {
    flex: none;
    width: 100%;
    max-width: 336px;
  }
  .producer__body {
    flex: none;
    width: 100%;
    max-width: 416px;
  }
}

@media (max-width: 768px) {
  .producer__profile {
    text-align: center;
  }
  .producer__profile p {
    margin-inline: auto;
  }
}

/* ============================================================
   8. サービスバナー POKER × SHISHA（.service-banner）
   ============================================================ */
.service-banner {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.service-banner__inner {
  display: flex;
  justify-content: center;
  /* gap:86px; */
  width: 100%;
}

.service-banner__item {
  position: relative;
  flex: 1;
  min-height: 320px;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-banner__bg {
  position: absolute;
  inset: 0;
}

.service-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--motion-ease);
  will-change: transform;
}

.service-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.service-banner__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.3s var(--motion-ease),
    opacity 0.3s var(--motion-ease),
    color 0.3s var(--motion-ease);
  will-change: transform;
  text-decoration: none;
}

.service-banner__label:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 6px;
}

.service-banner__cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.service-banner__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition:
    transform 0.3s var(--motion-ease),
    opacity 0.3s var(--motion-ease);
}

.service-banner__arrow:hover,
.service-banner__arrow:focus-visible {
  transform: translateY(2px);
  opacity: 0.85;
}

.service-banner__arrow:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

.service-banner__arrow-icon {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}
.service-banner__inner {
  display: flex;
  align-items: center; /* 2枚のバナーとバツ印を中央揃え */
  /* gap: 86px;             要素間を86px空ける */
}

.producer__divider {
  width: 86px;
  height: 86px;
  position: relative;
  flex: 0 0 86px;
}

.producer__divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

.producer__divider span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.producer__divider span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
  .service-banner__item:hover .service-banner__bg-img {
    transform: scale(1.04);
  }
  .service-banner__item:hover .service-banner__label {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .service-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    justify-items: center;
    width: 100%;
    padding-inline: clamp(16px, 6vw, 32px);
  }
  .service-banner__item {
    min-height: 180px;
    width: 100%;
  }
  .producer__divider {
    width: 56px;
    height: 56px;
  }
  .producer__divider span {
    width: 56px;
  }
}

@media (max-width: 480px) {
  .service-banner__inner {
    padding-inline: 16px;
  }
  .service-banner__item {
    min-height: 160px;
  }
  .producer__divider {
    width: 48px;
    height: 48px;
  }
  .producer__divider span {
    width: 48px;
  }
}

/* ============================================================
9. ポーカーセクション（.poker）
============================================================ */
.poker {
  background-color: var(--color-black);
  margin-top: 220px;
}

.poker__hero {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.poker__hero-bg .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.poker__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.poker__hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white);
}

.poker__body {
  padding-block: 80px;
}

.poker__section-label {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 8px;
  border: 1px solid var(--color-white);
  border-radius: 3px;
  width: 300px;
  margin: 0 auto 16px;
}

.poker__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 2;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 48px;
}

/* ゲーム種別グリッド（PC: 3列 / 全体幅: 880px） */
.poker__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.poker__card {
  width: 100%;
  padding:20px;
  border:1px solid var(--color-text-muted);
  overflow: hidden;
  border-radius: 4px;
}

.poker__card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.poker__card-title {
  font-family: var(--font-ja);
  font-size: 0.875rem;
  text-align: center;
  padding: 12px;
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .poker__grid {
    grid-template-columns: 1fr; /* SP: 1列 */
    max-width: 100%;
  }
}

/* カルーセル（全幅ブレイクアウト）
※ .poker__carousel は .poker__body.container の外に配置すること
left: 50% + translateX(-50%) で .page-column を突き抜けて画面横幅いっぱいに表示 */
.poker__carousel {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 228px; /* 仕様: 228px */
  overflow: hidden;
  margin-top: 48px;
}

.poker__carousel-track {
  display: flex;
  gap: 12px;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.poker__carousel-item {
  flex: 0 0 25vw; /* 4枚横並び */
  height: 228px;
  background-color: var(--color-gray-mid);
  overflow: hidden;
}

.poker__carousel-img {
  width: 100%;
  height: 228px;
  object-fit: cover;
}

.poker__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  font-size: 1rem;
}

.poker__carousel-btn--prev {
  left: 16px;
}
.poker__carousel-btn--next {
  right: 16px;
}

@media (max-width: 768px) {
  .poker__carousel-item {
    flex: 0 0 50vw;
  }
}

@media (max-width: 480px) {
  .poker__carousel-item {
    flex: 0 0 100vw;
  }
}

/* ============================================================
10. シーシャセクション（.shisha）
============================================================ */
.shisha {
  background-color: var(--color-black);
  margin-top: 220px;
}

.shisha__hero {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.shisha__hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shisha__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.shisha__hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white);
}

@media (max-width: 768px) {
  .poker__hero,
  .shisha__hero {
    height: 80px;
  }
  .poker__hero-title,
  .shisha__hero-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }
}

.shisha__body {
  padding-block: 80px;
}

.shisha__section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
  text-align: center;
}

.shisha__section-heading {
  font-family: var(--font-accent);
  font-size: clamp(0.75rem, 2.5vw, 1.25rem);
  letter-spacing: 0.2em;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 16px;
  border: 1px solid var(--color-text-muted);
  border-radius: 3px;
  width: 200px;
  margin: 0 auto;
}

.shisha__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 2;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 48px;
}

/* フレーバーグリッド（3列 / 全体幅: 882px / gap: 21px） */
.shisha__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  max-width: 882px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.shisha__groups {
  display: grid;
  gap: 120px;
}

.shisha__group {
  display: grid;
  gap: 48px;
}

.shisha__group-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  row-gap: 8px;
}

.shisha__group-heading-text {
  display: grid;
  gap: 6px;
}

.shisha__group-ruby {
  grid-column: 2;
  margin: 0;
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--color-text-main);
}

.shisha__group-title {
  grid-column: 2;
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-text-main);
}

.shisha__group-line {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.shisha__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.shisha__item {
  position: static;
  overflow: visible;
  aspect-ratio: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 18px 24px;
  background: transparent;
  border-radius: 4px;
}

.shisha__item-img-wrap {
  margin-bottom: 16px;
}

.shisha__item-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition:
    transform 0.6s var(--motion-ease),
    filter 0.6s var(--motion-ease);
  will-change: transform, filter;
}

.shisha__item-ruby {
  margin: 0 0 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--color-text-main);
}

.shisha__item-title {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--color-text-main);
}

.shisha__item-line {
  display: block;
  width: 60px;
  height: 1px;
  margin: 14px auto 16px;
  background: rgba(255, 255, 255, 0.35);
}

.shisha__item-desc {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--color-text-main);
}

@media (hover: hover) and (pointer: fine) {
  .shisha__item:hover .shisha__item-img {
    transform: scale(1.03);
    filter: brightness(1.05);
  }
}
.shisha__empty {
  text-align: center;
  color: var(--color-text-main);
}

@media (max-width: 768px) {
  .shisha__groups {
    gap: 80px;
  }

  .shisha__group {
    gap: 32px;
  }

  .shisha__group-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
  }

  .shisha__group-line {
    display: none;
  }

  .shisha__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .shisha__item {
    padding: 16px;
  }

  .shisha__item-title {
    font-size: 22px;
  }

  .shisha__group-title {
    justify-self: center;
    text-align: center;
  }

  .shisha__group-heading-text {
    text-align: center;
  }
}

/* ============================================================
   Motion utilities
   ============================================================ */
.reveal-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-32px, 0, 0);
}

.reveal-right {
  transform: translate3d(32px, 0, 0);
}

.reveal-scale-y {
  opacity: 1;
  transform-origin: center top;
  transform: scaleY(0);
  transition: transform var(--motion-duration-short) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-scale-x {
  opacity: 1;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform var(--motion-duration-short) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-scale-y.is-visible,
.reveal-scale-x.is-visible {
  transform: scale(1);
}

@media (max-width: 768px) {
  .reveal-left,
  .reveal-right {
    transform: translate3d(0, 18px, 0);
  }
}

/* ドリンクメニューCTA */
.shisha__cta {
  text-align: center;
  padding-top: 16px;
}

.shisha__cta-btn {
  display: inline-block;
  font-family: var(--font-ja);
  font-size: 0.9375rem;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 16px 64px;
  letter-spacing: 0.1em;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.3s var(--motion-ease),
    opacity 0.3s var(--motion-ease);
}

.shisha__cta-btn:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  opacity: 0.9;
}

.shisha__cta-btn:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 4px;
}

/* ============================================================
   11. アクセス（.access）
   ============================================================ */
.access {
  position: relative;
  background-color: var(--color-black);
  overflow: hidden;
  padding-block: 100px;
}

/* 背景テキスト透かし */
.access__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: var(--font-en);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  text-align: center;
}

.access__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.access__info {
  flex: 0 0 340px;
}

.access__heading {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--color-white);
  margin-bottom: 8px;
}

.access__heading-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--color-white);
  margin-bottom: 32px;
}

.access__table {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 2;
}

.access__row {
  display: flex;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.access__row:last-child {
  border-bottom: none;
}

.access__row-label {
  flex: 0 0 80px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.access__row-value {
  flex: 1;
}

.access__map {
  flex: 0 0 684px; /* 仕様: Google Map 幅 684px */
  max-width: 684px;
  min-height: 400px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #2a2a2a;
}

.access__map iframe {
  width: 100%;
  height: 400px; /* height:100% は親の定義高さに依存するため、px 直指定で確実に表示 */
  border: 0;
  display: block;
}

/* access: container の標準 padding-inline(120px) では
   info(340) + gap(60) + map(684) = 1084px が 920px に収まらない。
   38px に上書きして 1160 - 76 = 1084px の content area を確保する */
.access__inner.container {
  padding-inline: 38px;
}

@media (max-width: 960px) {
  .access__inner {
    flex-direction: column;
  }
  .access__info {
    flex: none;
    width: 100%;
  }
  .access__map {
    flex: none;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .access__inner.container {
    padding-inline: 24px;
  }
}

/* ============================================================
   12. フッター（.footer）
   ============================================================ */
.footer {
  background-color: var(--color-white);
  padding-block: 50px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-inline: 280px;
}

@media (max-width: 1280px) {
  .footer__inner {
    padding-inline: 60px;
  }
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo-img {
  height: 48px;
  width: auto;
}

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

.footer__nav-link {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
  transition: color 0.2s;
}

.footer__nav-link:hover {
  color: var(--color-purple);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer__contact-label {
  font-family: var(--font-ja);
  font-size: 0.75rem;
  color: var(--color-text-dark);
  letter-spacing: 0.1em;
}

.footer__sns {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.footer__sns-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: auto;
  height: auto;
  color: var(--color-text-dark);
  padding: 5px 4px;
  border-radius: 0;
  transition:
    opacity 0.25s var(--motion-ease),
    color 0.25s var(--motion-ease);
  will-change: opacity, color;
}

.footer__sns-link:hover {
  opacity: 0.7;
}

.footer__sns-link.line:hover {
  color: #06c755;
}

.footer__sns-link.x-twitter:hover {
  color: #000000;
}

.footer__sns-link.instagram:hover {
  color: #E1306C;
}

.footer__sns-link.x-twitter.x-twitter--miyahi:hover {
  color: #9B59B6;
}

.footer__sns-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer__sns-label {
  display: block;
  font-family: var(--font-ja);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--color-text-dark);
  white-space: nowrap;
  transition: color 0.25s var(--motion-ease);
}


.footer__copy {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--color-text-dark);
  padding-top: 24px;
  letter-spacing: 0.05em;
}

@media (max-width: 960px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 24px;
  }
  .footer__contact {
    align-items: flex-start;
  }
}

/* ============================================================
   13. ページトップボタン
   ============================================================ */
.page-top {
  text-align: center;
  padding-block: 32px;
  background-color: var(--color-black);
}

.page-top__link {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.page-top__link:hover {
  color: var(--color-white);
}

.page-top__arrow {
  display: block;
  width: 1px;
  height: 32px;
  background-color: currentColor;
}

/* ============================================================
   14. レスポンシブ補完
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --container-pad: 24px;
  }

  .hero {
    min-height: 480px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}

/* ============================================================
   15. SP メニュードロワー（.sp-menu）
   ============================================================ */
.sp-menu[hidden] {
  display: none !important;
}

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background-color: var(--color-black);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--motion-ease-soft),
    transform 0.45s var(--motion-ease-soft);
  transform: translateY(-12px);
}

.sp-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sp-menu__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.sp-menu__close-line {
  position: absolute;
  width: 24px;
  height: 1px;
  background-color: var(--color-white);
  display: block;
  transition:
    transform 0.3s var(--motion-ease),
    opacity 0.3s var(--motion-ease);
}

.sp-menu__close-line:first-child {
  transform: rotate(45deg);
}

.sp-menu__close-line:last-child {
  transform: rotate(-45deg);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.sp-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 48px;
  min-height: 100vh;
}

.sp-menu__logo {
  display: block;
  margin-bottom: 32px;
}

.sp-menu__logo-img {
  height: 48px;
  width: auto;
}

.sp-menu__sns {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sp-menu__sns-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: auto;
  min-width: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 16px 8px;
  transition: color 0.2s;
}

.sp-menu__sns-link:hover {
  color: var(--color-text-muted);
}

.sp-menu__sns-link.line:hover {
  color: #06C755;
}

.sp-menu__sns-link.instagram:hover {
  color: #E1306C;
}

.sp-menu__sns-link.x-twitter--miyahi:hover {
  color: #9B59B6;
}

.sp-menu__sns-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sp-menu__sns-label {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: inherit;
  white-space: nowrap;
}

.sp-menu__nav {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sp-menu__nav-link {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  padding: 20px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: color 0.2s;
}

.sp-menu__nav-link:hover {
  color: var(--color-text-muted);
}

/* ============================================================
   16. フッター SP レイアウト（≤ 768px）
   ============================================================ */
@media (max-width: 768px) {
  .footer__inner {
    align-items: center;
  }

  .footer__logo {
    order: 1;
  }

  .footer__contact {
    order: 2;
    align-items: center;
    width: 100%;
  }

  .footer__contact-label {
    display: none;
  }

  .footer__sns {
    gap: 2px;
    align-items: flex-start;
  }

  .footer__sns-link {
    flex-direction: row;
    width: auto;
    min-width: 0;
    height: auto;
    border-radius: 0;
    padding: 6px 4px;
    gap: 10px;
    border: none;
  }

  .footer__sns-label {
    font-size: 0.6875rem;
  }

  .footer__nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .footer__nav-link {
    display: block;
    padding: 20px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
  }
}

.poker__hero,
.shisha__hero {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

.poker__hero-bg,
.subpage-hero-bg {
  width: 100%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__subtitle {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-item,
  .reveal-left,
  .reveal-right,
  .reveal-scale-y,
  .reveal-scale-x {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .service-banner__bg-img,
  .service-banner__label,
  .shisha__item-img,
  .shisha__cta-btn,
  .footer__sns-link,
  .header__hamburger,
  .header__hamburger-line,
  .sp-menu,
  .sp-menu__close-line {
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   17. サブページ共通ヒーロー（.subpage-hero）
       /faq/ /drink/ 等の下層ページ用ショートヒーロー
   ============================================================ */
.subpage-hero {
  position: relative;
  max-width: 1440px;
  min-height: 400px;
  margin-inline: auto;
  padding-top: var(--header-h);
  overflow: hidden;
}

.subpage-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.subpage-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.subpage-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

@media (max-width: 768px) {
  .subpage-hero {
    min-height: 280px;
  }
}

/* ============================================================
   18. FAQ ページ（.faq）
   ============================================================ */

/* ページラベル共通（FAQ / DRINK 両方で使用） */
.page-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 6px 24px;
  border-radius: 2px;
  text-align: center;
  margin-inline: auto;
  display: block;
  width: fit-content;
  margin-bottom: 20px;
}

/* ページタイトル（日本語） */
.page-title-ja {
  font-family: var(--font-ja);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .page-title-ja {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

/* FAQ セクション wrapper */
.faq {
  background-color: var(--color-black);
  padding-block: 80px;
}

.faq__heading-block {
  text-align: center;
  margin-bottom: 0;
}

/* FAQ リスト */
.faq__list {
  max-width: 760px;
  margin-inline: auto;
}

/* FAQ 個別アイテム */
.faq__item {
  padding-block: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Q 見出し */
.faq__q {
  font-family: var(--font-ja);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* A 本文 */
.faq__a {
  font-family: var(--font-ja);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 2;
}

@media (max-width: 768px) {
  .faq {
    padding-block: 48px;
  }

  .faq__item {
    padding-block: 28px;
  }

  .faq__q {
    font-size: 0.9375rem;
  }

  .faq__a {
    font-size: 0.8125rem;
  }
}

/* ============================================================
   19. DRINK ページ（.drink）
   ============================================================ */
.drink {
  background-color: var(--color-black);
  padding-block: 80px;
}

/* 飲み放題価格ブロック */
.drink__price-block {
  text-align: center;
  margin-bottom: 64px;
}

.drink__price-item {
  font-family: var(--font-ja);
  font-size: 1.0625rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
  line-height: 2.4;
}

.drink__price-item span {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-left: 12px;
}

/* GRAND MENU 見出し（左右罫線付き） */
.drink__menu-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--color-white);
  margin-bottom: 48px;
}

.drink__menu-heading::before,
.drink__menu-heading::after {
  content: "";
  flex: 0 0 120px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .drink__menu-heading::before,
  .drink__menu-heading::after {
    flex: 0 0 60px;
  }
}

/* グランドメニュー 2カラムグリッド */
.drink__menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  max-width: 880px;
  margin-inline: auto;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .drink__menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* カテゴリブロック */
.drink__category {
  margin-bottom: 32px;
}

/* カテゴリ見出し */
.drink__category-heading {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-white);
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}

/* メニューアイテム */
.drink__menu-item {
  font-family: var(--font-ja);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 2;
}

.drink__menu-item-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.drink__menu-item-name {
  color: var(--color-white);
}

.drink__menu-item-price {
  color: var(--color-text-muted);
  margin-left: 4px;
}

/* CHAMPAGNE セクション */
.drink__champagne {
  margin-bottom: 80px;
}

.drink__section-heading {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  letter-spacing: 0.4em;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 32px;
}

/* シャンパン カードグリッド（PC: 固定幅カード） */
.drink__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1440px;
  margin-inline: auto;
  justify-items: center;
}

@media (max-width: 768px) {
  .drink__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

/* 商品カード */
.drink__card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
  background-color: #111;
  display: flex;
  flex-direction: column;
  width: min(100%, 280px);
  min-height: 274px;
}

.drink__card-img-wrap {
  position: relative;
  aspect-ratio: 3 / 3;
  background-color: #fff;
  overflow: hidden;
}

.drink__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
}



.drink__card-body {
  padding: 16px;
  text-align: center;
}

.drink__card-title {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 4px;
}

.drink__card-price {
  font-family: var(--font-ja);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* PREMIUM WHISKY セクション */
.drink__whisky {
  margin-bottom: 80px;
}

/* ウイスキーカードグリッド（3列） */
.drink__whisky-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .drink__whisky-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ウイスキーカードの画像比率（縦長） */
.drink__whisky .drink__card-img-wrap {
  aspect-ratio: 3 / 3;
}

@media (max-width: 768px) {
  .drink {
    padding-block: 48px;
  }

  .drink__price-block {
    margin-bottom: 40px;
  }

  .drink__champagne,
  .drink__whisky {
    margin-bottom: 48px;
  }
}
