
/* カクテル詳細ページ */

body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto;
      line-height: 1.6;
      background: #111;
      color: #eee
    }

.container {
      max-width: 960px;
      margin: 160px auto;
      padding: 24px
    }

    .hero {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 24px;
      align-items: start
    }

.hero img {
      width: 100%;
      height: auto;
      aspect-ratio: 1/1;
      object-fit: cover;
      border-radius: 12px;
      background: #333
    }

.name {
      font-size: 28px;
      font-weight: 700;
      margin: 0 0 4px
    }

.meta {
      opacity: .8;
      margin: 4px 0 16px
    }

.badge {
      display: inline-block;
      background: #222;
      border: 1px solid #333;
      border-radius: 999px;
      padding: 4px 10px;
      margin: 2px;
      font-size: 12px
    }

h2 {
      font-size: 18px;
      margin: 24px 0 8px
    }

.content {
      background: #0d0d0d;
      border: 1px solid #222;
      border-radius: 12px;
      padding: 16px
    }

.back {
      display: inline-block;
      margin-top: 24px;
      text-decoration: none;
      color: #9fd;
    }

.grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

@media (max-width: 768px) {
.hero {
        grid-template-columns: 1fr
      }

.grid {
        grid-template-columns: 1fr
      }
}


/* ===== Header: dark style (no extra classes) ===== */

/* バー全体 */
.site-header {
  --bg: #000;
  --fg: #eee;
  --fg-muted: #bdbdbd;
  --fg-hover: #fff;
  --pill-hover: rgba(255,255,255,.08);

  background: var(--bg);
  color: var(--fg);
  position: sticky;   /* 固定をやめたいなら次の2行を削除 */
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

/* 横並びと内側余白 */
.site-header .header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ロゴ（リンク） */
.site-header .logo {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--fg);
  text-decoration: none;
  white-space: nowrap;
}

/* aの色はヘッダー内だけ継承 */
.site-header a { color: inherit; text-decoration: none; }

/* ナビゲーションの並び */
.site-header .site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .site-nav a {
  color: var(--fg-muted);
  padding: 10px 14px;
  border-radius: 999px;
  line-height: 1;
  font-size: 15px;
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: var(--fg-hover);
  background: var(--pill-hover);
  outline: none;
}

/* 現在地に当てたい時用（任意でis-activeを付与） */
.site-header .site-nav a.is-active {
  color: var(--fg-hover);
  background: rgba(255,255,255,.14);
}

/* モバイル：トグルはデフォ非表示（JSない前提） */
.site-header .nav-toggle { display: none; }

/* 小さめ幅の余白調整 */
@media (max-width: 640px) {
  .site-header .header__inner {
    padding: 10px 14px;
    gap: 12px;
  }
  .site-header .site-nav a {
    padding: 8px 12px;
    font-size: 14px;
  }
}
