:root{
  --bg: #000;
  --panel: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.66);

  --radius: 1.2rem;
  --shadow: 0 1.2rem 2.6rem rgba(0,0,0,.45);

  --max: 60rem; /* ≒960px */
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}



img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0; color: var(--muted); }

.wrap{
  width: min(var(--max), calc(100% - 2.2rem));
  margin: 0 auto;
  padding: 3.2rem 0;
}

/* ================= HERO ================= */
.hero{
  position: relative;
  min-height: 100svh; /* スマホのアドレスバー対応 */
  background: #000;
  overflow: hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.02);
}

.hero-scrim{
  position:absolute;
  inset:0;
  /* 上は比較的明るく、画像の「下1/3」からしっかり暗くする */
  background:
    radial-gradient(120% 70% at 30% 10%,
      rgba(0,0,0,.0),
      rgba(0,0,0,.15) 55%,
      rgba(0,0,0,.20) 75%,
      rgba(0,0,0,.40) 85%,
      rgba(0,0,0,.92) 100%
    ),
    linear-gradient(to top,
      rgba(0,0,0,.92) 0%,
      rgba(0,0,0,.40) 25%,
      rgba(0,0,0,.20) 66%,
      rgba(0,0,0,.0) 100%
    );
}


.hero-content{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding: max(1.2rem, env(safe-area-inset-top)) 1.2rem max(1.2rem, env(safe-area-inset-bottom)) 1.2rem;
}

/* 左下のロゴ＋店名 */
.brand-lockup{
  display:flex;
  align-items:flex-end;
  gap: .9rem;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}

.brand-logo{
  width: clamp(2.8rem, 9vw, 4.2rem);
  height: auto;
}

.brand-text{ display:grid; gap:.15rem; }

.brand-name{
  margin:0;
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: .06em;
  font-size: clamp(1.6rem, 7vw, 2.6rem);
  line-height: 1.05;
  color: rgba(255,255,255,.96);
}

.brand-tag{
  margin:0;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
}

/* スクロールヒント */
.scroll-hint{
  position:absolute;
  left: 1.2rem;
  bottom: calc(1.2rem + env(safe-area-inset-bottom));
  transform: translateY(4.6rem);
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .6rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
}

/* ================= Section Head ================= */
.section-head{
  display:grid;
  gap:.35rem;
  margin-bottom: 1.1rem;
}
.section-head-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
}

.btn-inline{
  margin: 0;           /* 余計な余白を消す */
  padding: .55rem .9rem;  /* 少しコンパクトに */
  border-radius: 999px;   /* pill */
  white-space: nowrap;
}

.section-title{
  margin:0;
  font-size: 1.4rem;
  letter-spacing: .06em;
}
.section-sub{
  font-size: .9rem;
  color: var(--muted);
}

/* ================= STORY 2回 ================= */
.story{
  display:grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.story-media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.02);
}
.story-media img{
  width:100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-text{
  padding: .2rem .1rem;
}
.story-text h2{
  margin: .3rem 0 .4rem;
  font-size: 1.25rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.92);
}
.story-text p{
  margin:0;
  font-size: 1rem;
}

/* ================= DRINKS carousel ================= */
.carousel{
  position: relative;
  margin-top: 1.2rem;
}

.carousel-track{
  display:flex;
  gap: .9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .2rem .2rem 1.1rem;
  -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar{ height: .5rem; }
.carousel-track::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}

.card{
  flex: 0 0 78%;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  margin:0;
}
.card img{
  width:100%;
  height:auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.card figcaption{
  padding: .85rem .95rem;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
}

/* 前/次ボタン（スマホで押しやすく） */
.car-btn{
  position:absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  font-size: 1.8rem;
  line-height: 1;
  display:grid;
  place-items:center;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
}
.car-btn--prev{ left: .3rem; }
.car-btn--next{ right: .3rem; }

/* ドット */
.dots{
  display:flex;
  gap: .45rem;
  justify-content:center;
  margin-top: .5rem;
}
.dot{
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.dot.is-active{ background: rgba(255,255,255,.80); }

/* ================= Information ================= */
.info{
  display:grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.info-brand, .info-block{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
}

.info-brand img{
  width: min(14rem, 100%);
  height:auto;
}

.info-block h3{
  margin: 0 0 .35rem;
  font-size: .95rem;
  color: rgba(255,255,255,.90);
}
.info-block p{
  margin: 0 0 .9rem;
  font-size: 1rem;
}

.note{
  margin-top: .7rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .85rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.25);
}

/* ===== Footer with image set in HTML ===== */
.footer.footer--img{
  position: relative;
  margin-top: 0;         /* 余白いらないなら0 */
  min-height: 100svh;    /* ← ここが“全面” */
  overflow: hidden;
  border-top: 0;         /* 境界線も消すなら */
}

.footer-inner{
  position: relative;
  z-index: 1;
  min-height: 100svh;    /* ← 中身も全面に合わせる */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.2rem 1.2rem max(1.2rem, env(safe-area-inset-bottom));
  text-align: center;
}
.footer-inner p{
  margin: 0;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  padding: .55rem .95rem;
  border-radius: 999px;
  background: rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
}

/* 背景画像（HTMLで指定したimgを全面表示） */
.footer-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* 上80%は黒く、下20%だけ明るく画像が見える */
.footer-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.96) 0%,
    rgba(0,0,0,.60) 40%,
    rgba(0,0,0,.40) 80%,
    rgba(0,0,0,.20) 100%
  );
}

/* 左側を地図にする */
.info-map{
  padding: 0;            /* iframeを端まで使う */
  overflow: hidden;      /* 角丸を効かせる */
}

.info-map iframe{
  width: 100%;
  height: 100%;
  min-height: 18rem;     /* スマホでの見やすさ */
  border: 0;
  display: block;
  /* filter: grayscale(1) contrast(1.1) brightness(.9); /* 黒系デザインに馴染ませる(不要なら消してOK) */
}

/* ===== Sticky Header ===== */
/* ===== Sticky Header（最初から表示） ===== */
.sticky-header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  /* ★高さ（=幅感）を大きく：上下のpaddingを増やす */
  padding: 1.15rem 1.2rem;
  padding-top: calc(1.15rem + env(safe-area-inset-top));

  background: rgba(0,0,0,.55);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);

  /* ★ここが「最初から表示」 */
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

/* もう is-visible は不要だが、残ってもOK（念のため上書き） */
.sticky-header.is-visible{
  transform: none;
  opacity: 1;
  pointer-events: auto;
}


.sticky-brand{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
}
.sticky-brand img{
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: .5rem;
}
.sticky-brand span{
  font-family: "Cinzel", serif;
  letter-spacing: .06em;
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-nav{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.sticky-nav a{
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  padding: .5rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.sticky-nav a:active{
  transform: translateY(1px);
}

/* “ヘッダーの分だけ”アンカー位置を下げる（飛んだ時に見切れない） */
#about, #drinks, #info{
  scroll-margin-top: 5.2rem;
}

/* 見た目は影響なし：判定用 */
.sticky-sentinel{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
}
.sticky-brand img{
  width: 2.4rem;
  height: 2.4rem;
}

.sticky-brand span{
  font-size: 1.15rem;
}
.sticky-nav a{
  font-size: .95rem;
  padding: .65rem .8rem;
}

/* ===== Hero copy block ===== */

/* hero-content を “左下に積む” */
.hero-content{
  align-items: flex-end;       /* 下寄せ */
  justify-content: flex-start; /* 左寄せ */
}

/* brand-lockup + copy を縦並びで */
.hero-content > div{
  display: grid;
  gap: 1rem;
  max-width: min(44rem, 92vw);
}

/* コピー全体 */
.hero-copy{
  padding: 1.05rem 1.05rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}

/* 小さい行 */
.hero-overline{
  margin: 0 0 .35rem;
  color: rgba(255,255,255,.90);
  font-weight: 600;
  letter-spacing: .02em;
}

/* 「バーを愉しめ」 */
.hero-kicker{
  margin: 0 0 .35rem;
  font-size: clamp(1.4rem, 6vw, 2.2rem);
  font-weight: 700;
  color: rgba(255,255,255,.98);
  letter-spacing: .03em;
}

/* 英字の大見出し */
.hero-headline{
  margin: 0 0 .55rem;
  font-size: clamp(1.55rem, 7.2vw, 3.0rem);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.08;
  color: rgba(255,255,255,.98);
}

/* 本文 */
.hero-lead{
  margin: 0;
  font-size: clamp(.95rem, 3.8vw, 1.05rem);
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}

/* ===== Intro (hero の下のセンター文字) ===== */
.intro{
  background: #000;
  padding: 4.2rem 0;
}

.intro-inner{
  width: min(60rem, calc(100% - 2.2rem));
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,.95);
}

.intro-overline{
  margin: 0 0 .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.88);
}

.intro-kicker{
  margin: 0 0 .65rem;
  font-size: clamp(1.6rem, 7vw, 2.6rem);
  font-weight: 800;
  letter-spacing: .03em;
  color: rgba(255,255,255,.98);
}

.intro-headline{
  margin: 0 0 1.1rem;
  font-size: clamp(1.6rem, 7.4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.08;
}

.intro-lead{
  margin: 0 auto;
  max-width: 46rem;
  font-size: clamp(1rem, 3.8vw, 1.08rem);
  line-height: 1.9;
  color: rgba(255,255,255,.72);
}



/* ================= 少し広い画面（タブレット等） ================= */
@media (min-width: 48rem){
  .wrap{ padding: 4rem 0; }

  .story{
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 1.4rem;
  }
  .story--reverse{
    grid-template-columns: .95fr 1.05fr;
  }
  .story--reverse .story-media{ order: 2; }
  .story--reverse .story-text{ order: 1; }

  .card{ flex-basis: 42%; }
  .car-btn{ width: 3.1rem; height: 3.1rem; }
  .info{ grid-template-columns: .9fr 1.1fr; }
}

/* ===== Mobile Hamburger Nav ===== */
/* ===== Perfect X Hamburger ===== */
.nav-toggle{
  display: none; /* ← @media内で inline-flex にするのは今のままでOK */
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  position: relative;          /* ★重要：バーを絶対配置する土台 */
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.nav-toggle:active{ transform: scale(0.98); }
.nav-toggle:hover{
  background: rgba(0,0,0,0.34);
  border-color: rgba(255,255,255,0.28);
}

/* 3本線：中央基準で絶対配置（これが一番キレイに×になる） */
.nav-toggle__bar{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  transform-origin: center;
  transition: transform .22s ease, opacity .18s ease;
}

/* 通常時：上・中・下 */
.nav-toggle__bar:nth-child(1){ transform: translate(-50%, -50%) translateY(-7px); }
.nav-toggle__bar:nth-child(2){ transform: translate(-50%, -50%); }
.nav-toggle__bar:nth-child(3){ transform: translate(-50%, -50%) translateY(7px); }

/* 開いたら：中心で回転して綺麗な× */
.nav-open .nav-toggle__bar:nth-child(1){
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-open .nav-toggle__bar:nth-child(2){
  opacity: 0;
}
.nav-open .nav-toggle__bar:nth-child(3){
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モバイル：ドロップダウン化 */
@media (max-width: 860px){
  .nav-toggle{ display: inline-flex; }

  /* 既存の横並びnavを、ドロップダウンに変更 */
  .sticky-nav{
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);

    display: grid;
    gap: 8px;

    padding: 12px;
    border-radius: 18px;

    background: rgba(10,10,10,0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);

    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .sticky-nav a{
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 12px;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: .06em;

    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background .18s ease, transform .18s ease, border-color .18s ease;
  }

  .sticky-nav a::after{
    content: "↗";
    opacity: .75;
    transform: translateY(-1px);
  }

  .sticky-nav a:hover{
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.16);
    transform: translateY(-1px);
  }

  /* 開いている状態 */
  .nav-open .sticky-nav{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* アニメ苦手ユーザー配慮 */
@media (prefers-reduced-motion: reduce){
  .sticky-nav, .nav-toggle, .nav-toggle__bar{ transition: none !important; }
}

.info-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.icon-link{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.icon-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.28);
}

.icon-link:focus-visible{
  outline: 2px solid rgba(255,255,255,.65);
  outline-offset: 2px;
}

.icon{
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: .95;
}
