@charset "UTF-8";
/*
Theme Name:  BAR MATSU
Theme URI:   https://barmatsu-asakusa.jp
Author:      Yuki
Author URI:  https://example.com
Description: 浅草のバー「BAR MATSU」専用テーマ。1ページ完結構成。
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: bar-matsu
*/
/* ━━━ Mixin ━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKEN SET
   "夜の路地裏" — 墨・煤・真鍮・行灯・生成り
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  /* 背景階層 — 絶対に黒にしない。煤けた暗さ */
  --bg-0: #131109; /* 最深。墨に近い焦げ茶 */
  --bg-1: #1a1610; /* ページ地。夜の木目    */
  --bg-2: #211c15; /* カード面              */
  --bg-3: #2a2318; /* ホバー・浮き          */
  --bg-warm: #291f12; /* 暖色セクション地      */
  /* 境界線 */
  --line: rgba(200, 170, 110, 0.09);
  --line2: rgba(200, 170, 110, 0.16);
  /* アクセント — 真鍮と行灯。ギラつく金は使わない */
  --brass: #8a6c38;
  --brass-l: #a87e45;
  --andon: #c4923a;
  --andon-d: rgba(196, 146, 58, 0.13);
  /* テキスト — 生成り。白を使わない */
  --t1: #e8e0d0;
  --t2: #c2b89e;
  --t3: #8a7e6c;
  --t4: #5a5044;
  /* フォント */
  --serif: 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', sans-serif;
  --mono: 'DM Mono', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ━━━ RESET ━━━ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-1);
  color: var(--t1);
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.9;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

picture {
  display: contents;
}

/* ━━━ スクロールフェードイン ━━━ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
  will-change: opacity, transform;
}

.fade-in.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.fade-in.fade-delay-1 {
  transition-delay: 0.12s;
}

.fade-in.fade-delay-2 {
  transition-delay: 0.26s;
}

.fade-in.fade-delay-3 {
  transition-delay: 0.42s;
}

.fade-in.fade-delay-4 {
  transition-delay: 0.58s;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ナビゲーション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  transition: background 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}

#nav.scroll {
  background: rgba(20, 17, 11, 0.93);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

/* ロゴ */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.logo img {
  width: 48px;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--t1);
  letter-spacing: 0.12em;
}

/* ナビリンク */
.nav-menu {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-menu a {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--t3);
  transition: color 0.25s;
}

.nav-menu a:hover {
  color: var(--andon);
}

/* インスタ＋言語ボタン＋ハンバーガーのグループ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Instagram ボタン */
.nav-instagram-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--t3);
  border: 1px solid var(--line2);
  padding: 7px 14px;
  transition: color 0.25s, border-color 0.25s;
}

.nav-instagram-btn:hover {
  color: var(--andon);
  border-color: rgba(196, 146, 58, 0.35);
}

.nav-instagram-btn svg {
  flex-shrink: 0;
}

/* ━━━ 言語切り替えボタン ━━━ */
.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  border: 1px solid var(--line2);
  border-radius: 2px;
  color: var(--t4);
  background: none;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.nav-lang-btn:hover {
  border-color: rgba(196, 146, 58, 0.35);
}

.nav-lang-sep {
  color: var(--line2);
}

.nav-lang-ja,
.nav-lang-en {
  transition: color 0.2s;
}

/* アクティブ言語をブラスカラーで強調 */
body.lang-ja .nav-lang-ja,
body:not(.lang-en) .nav-lang-ja {
  color: var(--andon);
}

body.lang-en .nav-lang-en {
  color: var(--andon);
}

/* ━━━ 言語表示切り替え ━━━ */
/* デフォルト（JS前）: 英語非表示 */
.en-text {
  display: none;
}

/* 日本語モード: 日本語表示 / 英語非表示 */
body.lang-ja .ja-text {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

body.lang-ja .en-text {
  display: none;
}

/* 英語モード: 英語表示 / 日本語非表示 */
body.lang-en .ja-text {
  display: none;
}

body.lang-en .en-text {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* 英語モード時、見出しのサブ英語テキストは不要なので非表示 */
body.lang-en .section-heading-en {
  display: none;
}

/* 英語モード時、ヒーロー見出しを少し縮小して2行に収める */
body.lang-en .hero-heading {
  font-size: clamp(22px, 4.2vw, 50px);
  letter-spacing: 0.05em;
}

/* ハンバーガー */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--t3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SP ドロワー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(20, 17, 11, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

#drawer.open {
  opacity: 1;
  pointer-events: all;
}

#drawer a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--t2);
  transition: color 0.2s;
}

#drawer a:hover {
  color: var(--andon);
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 20px;
  color: var(--t3);
  background: none;
  border: none;
  font-family: var(--sans);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

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

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* スクロール時に画像レイヤーを GPU に常駐させてジャンクを防ぐ */
  will-change: transform;
  transform: translateZ(0);
}

/* 電球色の光が床に溜まるイメージ */
.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 15, 8, 0.96) 0%, rgba(20, 15, 8, 0.6) 38%, rgba(20, 15, 8, 0.22) 72%, rgba(20, 15, 8, 0.08) 100%), linear-gradient(160deg, rgba(20, 15, 8, 0.55) 0%, transparent 50%);
}

/* 写真の灯りをページに滲ませる暖色ハレーション */
.hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: radial-gradient(ellipse 90% 70% at 30% 100%, rgba(160, 90, 20, 0.14) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/* 営業ステータス */
.hero-status {
  position: absolute;
  top: 8%;
  right: 36px;
  z-index: 4;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--t2);
  background: rgba(20, 15, 8, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: dn 0.6s 1.1s var(--ease) both;
}

.hero-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a8d4a0;
  animation: blink 2.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  55% {
    opacity: 0.25;
  }
}
@keyframes dn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* ヒーロー本文エリア */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 36px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-l);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: up 0.7s 0.4s var(--ease) both;
}

.hero-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass);
}

.hero-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5.2vw, 58px);
  line-height: 1.65;
  letter-spacing: 0.09em;
  color: var(--t1);
  margin-bottom: 22px;
  animation: up 0.85s 0.55s var(--ease) both;
}

.hero-heading .hero-heading-sub {
  display: block;
  font-size: 0.56em;
  font-weight: 300;
  color: var(--t2);
  letter-spacing: 0.07em;
  margin-top: 6px;
  line-height: 1.85;
}

/* CTA */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: up 0.7s 0.88s var(--ease) both;
}

.hero-cta-instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--andon);
  color: var(--bg-0);
  padding: 13px 26px;
  font-family: var(--mono);
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}

.hero-cta-instagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-0);
  transform: translateX(-101%);
  transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.hero-cta-instagram:hover::before {
  transform: translateX(0);
}

.hero-cta-instagram:hover {
  color: var(--andon);
}

.hero-cta-instagram > * {
  position: relative;
  z-index: 1;
}

.hero-cta-link {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t2);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.25s;
  background: none;
  border: none;
  cursor: pointer;
}

.hero-cta-link::after {
  content: "→";
  transition: transform 0.25s;
  display: inline-block;
}

.hero-cta-link:hover {
  color: var(--andon);
}

.hero-cta-link:hover::after {
  transform: translateX(5px);
}

/* ━━━ スクロールインジケーター ━━━ */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.hero-scroll-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.hero-scroll-dot {
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(255, 220, 160, 0.8);
  position: absolute;
  top: -18px;
  left: 0;
  border-radius: 1px;
  animation: scrollDrop 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes scrollDrop {
  0% {
    top: -18px;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 56px;
    opacity: 0;
  }
}
/* ━━━ お知らせバー ━━━ */
.notice-bar {
  background: var(--bg-0);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

.notice-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.notice-bar-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--andon);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 1px solid var(--line2);
}

.notice-bar-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 32px;
}

.notice-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--t2);
}

.notice-bar-date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t1);
  letter-spacing: 0.04em;
}

/* 詳細あり：ボタン化 */
.notice-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 2px 6px 2px 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: color 0.2s;
}

.notice-bar-btn:hover {
  color: var(--andon);
}

.notice-bar-arrow {
  font-size: 14px;
  color: var(--brass);
  line-height: 1;
  transition: transform 0.2s;
}

.notice-bar-btn:hover .notice-bar-arrow {
  transform: translateX(3px);
}

/* ━━━ お知らせモーダル ━━━ */
.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.notice-modal[hidden] {
  display: none;
}

.notice-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.notice-modal-panel {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 36px 32px 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  animation: modalIn 0.28s var(--ease) both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.notice-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  color: var(--t3);
  transition: background 0.2s, color 0.2s;
}

.notice-modal-close:hover {
  background: var(--bg-3);
  color: var(--t1);
}

.notice-modal-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--andon);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.notice-modal-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--t1);
  margin-bottom: 16px;
  line-height: 1.6;
}

.notice-modal-body {
  font-size: 13px;
  color: var(--t2);
  line-height: 2;
}

/* モーダル内「お知らせ一覧」リンク */
.notice-modal-list-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--andon);
  border: 1px solid var(--andon);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.notice-modal-list-link:hover {
  background: var(--andon);
  color: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   お知らせ一覧ページ（/news/）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.news-page {
  padding: 140px 0 100px;
  min-height: 70vh;
}

.news-page-header {
  margin-bottom: 40px;
  text-align: center;
}

.news-page-header .section-label {
  margin-bottom: 12px;
}

.news-page-header .section-heading {
  margin: 0;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-list-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-list-btn,
.news-list-static {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 8px;
  background: transparent;
  border: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--t1);
  transition: background 0.2s ease;
}

.news-list-static {
  cursor: default;
}

.news-list-btn:hover {
  background: rgba(255, 255, 255, 0.03);
}

.news-list-posted {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--t3, #888);
  letter-spacing: 0.06em;
  font-family: 'DM Mono', monospace;
  min-width: 84px;
}

.news-list-date {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--andon);
  letter-spacing: 0.04em;
  font-family: 'DM Mono', monospace;
  min-width: 90px;
}

.news-list-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.news-list-arrow {
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--t3, #888);
  transition: transform 0.2s ease;
}

.news-list-btn:hover .news-list-arrow {
  transform: translateX(4px);
  color: var(--andon);
}

.news-page-back {
  margin-top: 40px;
  text-align: center;
}

.news-page-back a {
  display: inline-block;
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--t2);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.news-page-back a:hover {
  color: var(--andon);
  border-color: var(--andon);
}

.news-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--t3, #888);
  font-size: 14px;
}

@media (max-width: 600px) {
  .news-page {
    padding: 110px 0 80px;
  }
  .news-list-btn,
  .news-list-static {
    flex-wrap: wrap;
    gap: 6px 14px;
    padding: 18px 4px;
  }
  .news-list-posted {
    min-width: 0;
    font-size: 10px;
  }
  .news-list-date {
    min-width: 0;
    font-size: 11px;
  }
  .news-list-text {
    flex: 1 1 100%;
    font-size: 13px;
  }
  .news-list-arrow {
    position: absolute;
    right: 8px;
  }
  .news-list-btn {
    position: relative;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   セクション共通
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section {
  padding: 80px 0;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 36px;
}

.section-label {
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--brass);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.08em;
  color: var(--t1);
  text-wrap: balance;
}

.section-heading-en {
  display: block;
  font-family: var(--mono);
  font-size: 0.38em;
  font-weight: 300;
  color: var(--t3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   コンセプト
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#concept {
  background: var(--bg-0);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.concept-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.concept-lead {
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 17px);
  font-weight: 300;
  line-height: 2.15;
  letter-spacing: 0.07em;
  color: var(--t1);
}

.concept-body {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: var(--t2);
}

.concept-features {
  border-top: 1px solid var(--line);
}

.concept-feature {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.concept-feature-number {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--brass);
  letter-spacing: 0.06em;
}

.concept-feature-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--t1);
}

.concept-feature-detail {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--t3);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.concept-photo {
  position: relative;
}

.concept-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.concept-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 6, 0.1);
  pointer-events: none;
}

.concept-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(19, 14, 7, 0.8) 0%, transparent 100%);
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t2);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ドリンク
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#drinks {
  background: var(--bg-warm);
}

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

.drinks-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid var(--line);
  width: 100%;
  scrollbar-width: none;
}
.drinks-tabs::-webkit-scrollbar {
  display: none;
}

.drinks-tab {
  padding: 8px 16px;
  margin-bottom: -1px;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t3);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}

.drinks-tab.is-active {
  color: var(--andon);
  border-bottom-color: var(--brass);
}

.drinks-tab:hover:not(.is-active) {
  color: var(--t1);
}

.drinks-category-notice {
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 12px 18px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.drinks-category-notice-text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--t2);
  margin: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.payment-badge.card {
  background-color: #2c3e50;
  color: #fff;
}
.payment-badge.paypay {
  background-color: #ff0033;
  color: #fff;
}
.payment-badge.rakuten {
  background-color: #bf0000;
  color: #fff;
}

.payment-note {
  width: 100%;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--t2);
  margin-top: 2px;
}

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

.drinks-card {
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: background 0.35s, border-color 0.35s;
  contain: layout style;
}

.drinks-card.has-detail {
  cursor: pointer;
}

.drinks-card.has-detail:hover {
  background: var(--bg-3);
  border-color: var(--line2);
}

.drinks-card-thumb {
  width: 100%;
  height: 296px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.drinks-card-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drinks-card-tags {
  display: flex;
  gap: 5px;
  min-height: 33px;
  align-items: center;
}

.drinks-card-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border: 1px solid rgba(138, 108, 56, 0.4);
  color: var(--brass-l);
}

.drinks-card-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--t1);
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.drinks-card-desc {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--t2);
  flex: 1;
}

/* タブ絞り込みアニメーション */
.drinks-card {
  animation: drinkFadeIn 0.3s var(--ease) both;
}

@keyframes drinkFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.drinks-card[hidden] {
  display: none;
}

/* 詳細あり：ホバーエフェクト */
.drinks-card.has-detail {
  cursor: pointer;
}

.drinks-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.drinks-card-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 5, 0);
  color: rgba(255, 255, 255, 0);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.drinks-card.has-detail:hover .drinks-card-zoom,
.drinks-card.has-detail:focus-visible .drinks-card-zoom {
  background: rgba(10, 8, 5, 0.45);
  color: rgba(255, 255, 255, 0.9);
}

.drinks-card.has-detail:hover .drinks-card-thumb {
  transform: scale(1.03);
  transition: transform 0.45s var(--ease);
}

/* フレーバータグ */
.drinks-flavors {
  display: block;
  margin-top: 4px;
}

/* ラッパースパン（ja/en）をフレックスコンテナにしてタグ間の gap を有効化 */
.drinks-flavors > .ja-text {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.drinks-flavors > .en-text {
  display: none;
  flex-wrap: wrap;
  gap: 5px;
}

body.lang-en .drinks-flavors > .ja-text {
  display: none;
}

body.lang-en .drinks-flavors > .en-text {
  display: flex;
}

.drinks-flavor {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--t3);
  background: rgba(200, 170, 110, 0.07);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ソフトドリンクはアルコール表示を非表示 */
.drinks-card[data-category="Soft Drink"] .drinks-alcohol {
  display: none;
}

/* アルコール強さインジケーター */
.drinks-alcohol {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.drinks-alcohol-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--t4);
  white-space: nowrap;
}

.drinks-alcohol-bar {
  display: flex;
  gap: 3px;
  align-items: center;
}

.drinks-alcohol-pip {
  display: block;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--line2);
  transition: background 0.2s;
}

.drinks-alcohol-pip.is-on {
  background: var(--brass);
}

/* ━━━ ドリンク詳細モーダル ━━━ */
.drink-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.drink-modal[hidden] {
  display: none;
}

.drink-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.drink-modal-panel {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line2);
  border-radius: 12px;
  max-width: 880px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  animation: modalIn 0.28s var(--ease) both;
  display: flex;
  overflow: hidden;
}

.drink-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  color: var(--t1);
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.2s;
}

.drink-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.drink-modal-img {
  width: 44%;
  flex-shrink: 0;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.drink-modal-body {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  overflow-y: auto;
}

.drink-modal-flavors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* モーダル内フレーバーのラッパースパンをフレックスコンテナに */
.drink-modal-flavors > .ja-text {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.drink-modal-flavors > .en-text {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

body.lang-en .drink-modal-flavors > .ja-text {
  display: none;
}

body.lang-en .drink-modal-flavors > .en-text {
  display: flex;
}

.drink-modal-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--t1);
  line-height: 1.4;
}

.drink-modal-alcohol {
  margin-top: 4px;
}

.drink-modal-desc {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.9;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

/* 詳細テキストがない場合は下線を消す */
.drink-modal.no-detail .drink-modal-desc {
  border-bottom: none;
  padding-bottom: 0;
}

.drink-modal-detail {
  font-size: 1rem;
  color: var(--t3);
  line-height: 2;
}

/* PC ナビボタン・カウンター */
.drink-modal-prev,
.drink-modal-next {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  align-items: initial;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  z-index: 1;
  transition: background 0.2s;
}
.drink-modal-prev:hover:not(:disabled),
.drink-modal-next:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
}
.drink-modal-prev:disabled,
.drink-modal-next:disabled {
  opacity: 0.2;
  pointer-events: none;
}

.drink-modal-prev {
  left: 12px;
}

.drink-modal-next {
  right: 12px;
}

.drink-modal-counter {
  display: block;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  z-index: 1;
  pointer-events: none;
}

.drinks-footnote {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--t3);
  text-align: right;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ギャラリー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#gallery {
  background: var(--bg-0);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-instagram-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--t3);
  transition: color 0.25s;
}

.gallery-instagram-link:hover {
  color: var(--andon);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr;
  grid-template-rows: 310px 200px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item-main {
  grid-row: 1/3;
}

/* サムネイルボタン */
.gallery-thumb-btn {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: zoom-in;
  border: none;
  background: none;
  padding: 0;
}

.gallery-thumb-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 5, 0);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s, background 0.25s;
}

.gallery-thumb-btn:hover .gallery-thumb-zoom,
.gallery-thumb-btn:focus-visible .gallery-thumb-zoom {
  opacity: 1;
  background: rgba(10, 8, 5, 0.38);
}

/* ━━━ ライトボックス ━━━ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 3, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.lightbox-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 860px);
  max-height: 90svh;
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(90svh - 48px);
  object-fit: contain;
  border-radius: 4px;
  animation: lbIn 0.3s var(--ease) both;
}

@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.lightbox-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 0.06em;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--t2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--t1);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--t4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   アクセス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#access {
  background: var(--bg-1);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.access-map {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.4) brightness(0.75);
}

.access-info {
  display: flex;
  flex-direction: column;
}

.access-info-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.access-info-row:first-child {
  padding-top: 0;
}

.access-info-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.access-info-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--t1);
  line-height: 1.75;
}

.access-info-value small {
  display: block;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--t2);
  margin-top: 3px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 72px 1fr;
  row-gap: 5px;
}

.hours-day {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--t3);
}

.hours-time {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--t1);
  letter-spacing: 0.04em;
}

.access-instagram-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--t3);
  transition: color 0.25s;
}

.access-instagram-row:hover {
  color: var(--andon);
}

.access-buttons {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.access-btn {
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  transition: 0.3s;
  cursor: pointer;
}

.access-btn-fill {
  background: var(--andon);
  color: var(--bg-0);
  border: none;
  border-radius: 3px;
}

.access-btn-fill:hover {
  opacity: 0.82;
}

.access-btn-outline {
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--line2);
  border-radius: 3px;
}

.access-btn-outline:hover {
  color: var(--andon);
  border-color: rgba(196, 146, 58, 0.35);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Instagram CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#igcta {
  padding: 100px 0;
  background: radial-gradient(ellipse 75% 90% at 50% 60%, rgba(140, 80, 15, 0.11) 0%, transparent 65%), var(--bg-warm);
}

.igcta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.igcta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(140, 80, 15, 0.08);
}

.igcta-heading {
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.08em;
  color: var(--t1);
}

.igcta-body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: var(--t2);
}

.igcta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.igcta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--andon);
  color: var(--bg-0);
  border: none;
  padding: 13px 26px;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  cursor: pointer;
}

.igcta-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-0);
  transform: translateX(-101%);
  transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.igcta-btn-primary:hover::before {
  transform: translateX(0);
}

.igcta-btn-primary:hover {
  color: var(--andon);
}

.igcta-btn-primary > * {
  position: relative;
  z-index: 1;
}

.igcta-btn-dm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--line2);
  padding: 13px 22px;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s, border-color 0.3s;
}

.igcta-btn-dm:hover {
  color: var(--andon);
  border-color: rgba(196, 146, 58, 0.35);
}

.igcta-walkin {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 14px;
}

.igcta-walkin::before,
.igcta-walkin::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 50px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 44px 36px 32px;
}

.footer-inner {
  max-width: 1040px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: inherit;
  text-decoration: none;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-logo-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--t2);
}

.footer-logo-location {
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t4);
  width: 100%;
  padding-left: 31px; /* img(21px) + gap(10px) */
}

.footer-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: baseline;
}

.footer-nav a {
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t4);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--andon);
}

.footer-totop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 20px 0;
  color: var(--t3, rgba(255, 255, 255, 0.4));
  font-size: 10px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 1px solid var(--line2, rgba(255, 255, 255, 0.08));
  transition: color 0.2s;
}
.footer-totop:hover {
  color: var(--t1, #fff);
}

.footer-copyright {
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--t4);
}

.footer-privacy {
  font-size: 12px;
  color: var(--t4);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-privacy:hover {
  color: var(--t1, #fff);
}

/* ━━━ プライバシーポリシーモーダル ━━━ */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.privacy-modal[hidden] {
  display: none;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.privacy-modal-panel {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line2);
  border-radius: 8px;
  padding: 40px 32px 32px;
  width: 100%;
  max-width: 680px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.25s ease both;
}

.privacy-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg-3);
  color: var(--t3);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.privacy-modal-close:hover {
  background: var(--bg-3);
  color: var(--t1);
}

.privacy-modal-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--t1);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.privacy-modal-body {
  font-size: 13px;
  color: var(--t2);
  line-height: 2;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.privacy-modal-body h2, .privacy-modal-body h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--t1);
  margin: 20px 0 8px;
}
.privacy-modal-body p {
  margin-bottom: 12px;
}
.privacy-modal-body a {
  color: var(--t3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SP 画像フルスクリーンビューア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#img-viewer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#img-viewer[hidden] {
  display: none;
}

.img-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.img-viewer-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100dvh;
  object-fit: contain;
}

/* SP限定：モーダル画像にタップ可能を示すカーソル */
@media (hover: none) {
  .drink-modal-img {
    cursor: zoom-in;
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SP 固定バー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#sp-fix {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  /* backdrop-filter はスクロール中の合成レイヤー再構築コストが高いため削除。
     不透明度を上げて視認性を担保する。 */
  background: rgba(14, 11, 7, 0.98);
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  gap: 8px;
}

.sp-bar-instagram-btn {
  flex: 1;
  background: var(--andon);
  color: var(--bg-0);
  border: none;
  padding: 12px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.sp-bar-access-btn {
  flex: 1;
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--line2);
  padding: 12px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.sp-bar-access-btn .ja-text {
  justify-content: center;
}
.sp-bar-access-btn .en-text {
  justify-content: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Instagram フォローバナー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#ig-follow-banner {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  max-width: 420px;
  background: var(--bg-1, #1a1710);
  border: 1px solid var(--line2, rgba(255, 255, 255, 0.12));
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: bottom 0.35s cubic-bezier(0.22, 1, 0.36, 1), left 0.35s cubic-bezier(0.22, 1, 0.36, 1), right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
#ig-follow-banner.is-visible {
  animation: bannerIn 0.4s var(--ease, cubic-bezier(0.22, 1, 0.36, 1)) forwards;
}
@media (max-width: 960px) {
  #ig-follow-banner {
    bottom: 76px;
  }
}
@media (max-width: 600px) {
  #ig-follow-banner {
    left: 8px;
    right: 8px;
    max-width: none;
  }
}
@media (max-width: 600px) {
  #ig-follow-banner.is-bottom {
    bottom: 8px;
    left: 8px;
    right: 8px;
    animation: bannerSlideUp 0.4s var(--ease, cubic-bezier(0.22, 1, 0.36, 1)) forwards;
  }
}
#ig-follow-banner.is-collapsing {
  animation: bannerCollapse 0.45s cubic-bezier(0.4, 0, 0.8, 0.6) forwards !important;
  transform-origin: bottom right;
  pointer-events: none;
}

@keyframes bannerCollapse {
  0% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
    transform-origin: bottom right;
  }
  60% {
    opacity: 0.6;
    transform: scale(0.35) translate(60%, -20%);
  }
  100% {
    opacity: 0;
    transform: scale(0.05) translate(120%, -40%);
  }
}
@keyframes tabShake {
  0%, 100% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-18deg);
  }
  30% {
    transform: rotate(16deg);
  }
  45% {
    transform: rotate(-12deg);
  }
  60% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-6deg);
  }
  90% {
    transform: rotate(4deg);
  }
}
@keyframes tabPress {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tabPopIn {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  60% {
    opacity: 1;
    transform: scale(1.2);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bannerSlideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bannerIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ig-follow-banner-close {
  position: absolute;
  top: 6px;
  right: 8px;
  z-index: 1;
  background: none;
  border: none;
  color: var(--t3, rgba(255, 255, 255, 0.4));
  font-size: 12px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
}
.ig-follow-banner-close::after {
  content: "";
  position: absolute;
  inset: -12px;
}

.ig-follow-banner-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px 14px 14px;
  color: var(--t1, #fff);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5;
}
.ig-follow-banner-link strong {
  font-size: 13px;
}
.ig-follow-banner-link svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.ig-follow-banner-arrow {
  margin-left: auto;
  font-size: 18px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* バナー閉じ後のミニアイコン */
#ig-follow-banner-tab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line2, rgba(255, 255, 255, 0.12));
  background: var(--bg-1, #1a1710);
  color: var(--t1, #fff);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tabPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
#ig-follow-banner-tab[hidden] {
  display: none;
}
#ig-follow-banner-tab::before {
  content: "1";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 18px;
  height: 18px;
  background: #e53535;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 960px) {
  #ig-follow-banner-tab {
    bottom: 76px;
  }
  #ig-follow-banner-tab.no-sp-bar {
    bottom: 24px;
  }
}
#ig-follow-banner-tab svg {
  opacity: 0.85;
}

#ig-follow-banner.is-image .ig-follow-banner-link {
  display: block;
  padding: 0;
}
#ig-follow-banner.is-image img {
  width: 100%;
  border-radius: 8px;
}

/* WP管理バーを下部に固定（ログイン中のみ表示） */
#wpadminbar {
  top: inherit !important;
  bottom: 0 !important;
  position: fixed;
}

/* 管理バーがある場合のフッター余白（PC: 32px） */
.admin-bar footer {
  padding-bottom: 64px; /* 元の下padding + 管理バー高さ */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   レスポンシブ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 960px) {
  #nav {
    padding: 0 18px;
  }
  .nav-menu,
  .nav-instagram-btn {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-right {
    gap: 8px;
  }
  #hero {
    margin-top: -48px;
  }
  .hero-content {
    padding: 0 18px;
  }
  .hero-status {
    /* hero に margin-top: -48px があるため nav(56px) をクリアするには 48+56+12=116px 必要 */
    top: 116px;
    right: 18px;
  }
  .hero-shopinfo {
    display: none;
  }
  .hero-heading {
    font-size: clamp(26px, 7.5vw, 42px);
  }
  body.lang-en .hero-heading {
    font-size: clamp(18px, 5.5vw, 36px);
  }
  .container {
    padding: 0 18px;
  }
  .section {
    padding: 72px 0;
  }
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .concept-image {
    height: 360px;
  }
  .drinks-tab {
    font-size: 1rem;
  }
  .drink-modal-panel {
    max-height: 82vh;
  }
  .drinks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .drinks-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px 160px;
  }
  .gallery-item-main {
    grid-row: 1;
    grid-column: 1/3;
  }
  .access-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .access-map {
    height: 280px;
  }
  .igcta-inner {
    padding: 0 18px;
  }
  footer {
    /* SP固定バー（約70px）+ safe-area分を確保して重ならないようにする */
    padding: 36px 18px calc(80px + env(safe-area-inset-bottom, 0px));
  }
  /* SP + 管理バーあり：SP固定バー + 管理バー（46px）分 */
  .admin-bar footer {
    padding-bottom: calc(126px + env(safe-area-inset-bottom, 0px));
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-nav {
    display: none;
  }
  #sp-fix {
    display: flex;
    /* 初期状態は非表示。IntersectionObserver が .is-visible を付与して表示する */
    visibility: hidden;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0s 0.28s;
  }
  #sp-fix.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0s;
  }
  body {
    padding-bottom: 64px;
  }
}
.sp-br {
  display: none;
}

@media (max-width: 540px) {
  .sp-br {
    display: inline;
  }
  .drinks-grid {
    grid-template-columns: 1fr;
  }
  #hero {
    margin-top: 0px;
  }
  .hero-status {
    /* nav 高さ(56px) + 余白(12px) でハンバーガーの下に配置 */
    top: 68px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .notice-bar-label {
    font-size: 14px;
  }
  .notice-bar-date {
    font-size: 14px;
  }
  .notice-bar-text {
    font-size: 16px;
  }
  .notice-bar-arrow {
    font-size: 20px;
  }
  .notice-bar-inner {
    padding: 12px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .notice-bar-label {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--line2);
    padding-bottom: 8px;
    width: 100%;
  }
  .notice-bar-list {
    flex-direction: column;
    gap: 6px;
  }
  .section-heading-en {
    font-size: 0.7rem;
  }
  .concept-feature-title {
    font-size: 18px;
  }
  /* ─── SP スクロールパフォーマンス最適化 ─── */
  /* nav：backdrop-filter はスクロール毎に再合成が走るため solid に置換 */
  #nav.scroll {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    background: rgba(20, 17, 11, 0.97);
  }
  /* sp-fix：GPU レイヤーに事前プロモート */
  #sp-fix {
    will-change: opacity, transform;
  }
  /* hero-status：SP では blur 不要。fixed 要素の合成コストを削減 */
  .hero-status {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    background: rgba(14, 11, 7, 0.88);
  }
  .hero-scroll-dot {
    animation: scrollDrop 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  }
  /* ─── SP ドリンクモーダル：カード縦積み（PCは変更なし） ─── */
  .drink-modal {
    z-index: 1000;
    padding: 12px;
    align-items: center;
  }
  .drink-modal-panel {
    flex-direction: column;
    /* height 固定でコンテンツ量に関係なく常に一定サイズ */
    height: 88dvh;
    max-height: 88dvh;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    animation: modalIn 0.28s var(--ease) both;
  }
  .drink-modal-panel::before {
    content: none;
  }
  .drink-modal-panel::after {
    content: none;
  }
  /* 画像：30vh 固定 */
  .drink-modal-img {
    position: static;
    width: 100%;
    height: 35vh;
    min-height: 0;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
  }
  /* ボディ：残り全部（約 58vh 相当）スクロール可 */
  .drink-modal-body {
    position: static;
    flex: 1 1 0;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding: 18px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  }
  .drink-modal-close {
    top: 10px;
    right: 10px;
    left: auto;
    z-index: 3;
    width: 28px;
    height: 28px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.5);
  }
  /* prev/next：カード top(6dvh) + パネルpadding(12px) + 画像高さ半分(17.5vh) */
  .drink-modal-prev,
  .drink-modal-next {
    top: calc(6dvh + 12px + 17.5vh);
    bottom: auto;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    font-size: 24px;
    line-height: 0;
    align-items: center;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-tap-highlight-color: transparent;
  }
  .drink-modal-prev:hover:not(:disabled),
  .drink-modal-next:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.65);
  }
  .drink-modal-prev:not(:disabled):active,
  .drink-modal-next:not(:disabled):active {
    background: rgba(0, 0, 0, 0.8);
  }
  .drink-modal-prev {
    left: 20px;
  }
  .drink-modal-next {
    right: 20px;
  }
  /* カウンター：カード top(6dvh) + 上余白(10px) */
  .drink-modal-counter {
    top: calc(6dvh + 10px);
    bottom: auto;
    left: calc(6dvh + 10px);
    right: auto;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 10px;
    border-radius: 20px;
  }
  .drink-modal-name {
    font-size: 18px;
  }
  .drink-modal-desc {
    font-size: 14px;
    line-height: 1.8;
  }
  .drink-modal-detail {
    font-size: 13px;
  }
  .drinks-flavor {
    flex: auto;
    max-width: fit-content;
    font-size: 0.8rem;
  }
  .drinks-alcohol-label {
    font-size: 14px;
  }
  .drinks-card-tag {
    font-size: 0.8rem;
  }
  .drink-modal-desc {
    font-size: 16px;
  }
  .drink-modal-detail {
    font-size: 15px;
  }
  .gallery-grid {
    display: flex;
    flex-direction: column;
  }
  .gallery-item {
    height: 220px;
  }
  .igcta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .igcta-btn-primary,
  .igcta-btn-dm {
    justify-content: center;
  }
  .admin-bar footer {
    padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  }
  .footer-logo {
    flex-direction: column;
    width: 100%;
  }
  .footer-logo-location {
    font-size: 0.75rem;
    padding-left: 0;
    text-align: center;
  }
  .drinks-footnote {
    text-align: left;
  }
  .lightbox-close {
    top: 70px;
  }
  .footer-copyright {
    font-size: 0.75rem;
    display: block;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=style.css.map */
