/* ------------------------------
   ベース
------------------------------ */
body {
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho',
               'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN',
               'MS 明朝', serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}
* {
  box-sizing: border-box;
}
:root {
  --gutter: 16px;
  --hero-height: 420px;
}
/* ------------------------------
   見出し
------------------------------ */
h2 {
  font-size: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  margin: 40px 0;
  text-align: center;
  color: #44546a;
  font-weight: bold;
  letter-spacing: 2px;
  position: relative;
  padding: 0 10px;
}
h2::before,
h2::after {
  content: "";
  flex: 1; /* ← 横線の長さを自動調整 */
  height: 2px;
  background: #44546a;
  opacity: 0.6;
}
h2::before { left: 0; }
h2::after  { right: 0; }

@media (max-width: 600px) {
  h2::before,
  h2::after {
    display: none;
  }
}

h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 1rem;
  text-decoration: underline;
}
h3 .alcohol {
  color: #44546a;
}
/* ------------------------------
   ヘッダー & ナビゲーション
------------------------------ */
header {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  text-align: center;
}

.logo {
  max-width: 250px;
  width: 100%;
  height: auto;
}
nav {
  background-color: #44546a;
  position: sticky;
  top: 0;           /* ここで画面上に固定される位置を指定 */
  z-index: 9999;
}
.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.nav-list li {
  margin: 0 20px;
}

.nav-list li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.nav-list a:hover {
  text-decoration: underline;
}

/* ------------------------------
   Cocktail & Softdrink
   ------------------------------ */
.alcohol{
  background-color: #44546a;
  padding: 20px 0;
  margin: 40px auto;
  color: #fff;
  border-radius: 8px;
  max-width: 900px;
}
.cocktail,
.softdrink {
  background-color: #44546a;
  padding: 20px 0;
  margin: 40px auto;
  color: #fff;
  border-radius: 8px;
  width: 400px;
}
.alcohol h3,
.cocktail h3,
.softdrink h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
.alcohol ul,
.cocktail ul,
.softdrink ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  max-width: 400px;
}

.cocktail ul li,
.softdrink ul li {
  margin: 0.5rem 0;
}

/* ------------------------------
   ビールリスト
------------------------------ */
.beer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.beer-image-wrap {
  position: relative;
  display: inline-block;
}
.beer-item img.award-badge {
  width: auto !important;
   width: 60px;
  max-width: 80px !important;
  height: auto !important;
  position: absolute !important;
  top: 8px !important;
  right: 8px;
  z-index: 20 !important;
  pointer-events: none;
}
.award{
  font-size: 20px;
}
.award-text {
  position: absolute;
  top: 65px;   /* ← バッジの下あたりに配置する高さ（調整可） */
  right: 10px;
  font-size: 14px;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 19;
}
/* スマホ用 */
@media (max-width: 600px) {
  .beer-item img.award-badge {
    max-width: 40px !important;
    top: 5px !important;
    right: 15px;
  }
}
.beer-item img {
  width: 360px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.beer-item p {
  text-align: center;
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 600px) {
  .award-text {
    right: 8px ;
    top: 30px;
    font-size: 10px !important;
  }
}
.price {
  background-color: #44546a;
  padding: 20px 0;
  margin: 20px auto 40px;
  color: #fff;
  border-radius: 8px;
  max-width: 800px;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 750px) {
.price{
 padding-top: 20px;
 padding-bottom: 20px;
}
}

/* ------------------------------
   BeerStyle
------------------------------ */
.beerstyle {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
}
.beerstyle img {
  width: auto;
  height: 140px;
  margin-bottom: 10px;
}
.beerstyle p {
  font-size: 18px;
}

/* ------------------------------
   下部画像
------------------------------ */
.bottom-images {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  flex-wrap: wrap; /* スマホで折り返し */
}
.bottom-images img {
  width: 33.333%;   /* 3枚で100%になるように調整 */
  height: 300px; /* 画像の縦を揃える */
  object-fit: cover; /* トリミングしてバランス良く */
}
/* ------------------------------
   フッター
------------------------------ */
.site-footer {
  text-align: center;
  padding: 20px 0 40px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
}

.footer-line {
  border-top: 2px dashed #6b7280;
  width: 100%;
  margin-bottom: 10px;
}

.footer-text {
  margin: 10px 0;
}

.footer-icons {
  margin-top: 10px;
}

.footer-icons a {
  display: inline-block;
  margin: 0 10px;
}

.footer-icons img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  transition: opacity 0.3s;
  background-color: #fff;
}

.footer-icons img:hover {
  opacity: 0.7;
}
/* ------------------------------
   レスポンシブ
------------------------------ */
@media (max-width: 800px) {
  .slide {
    flex: 0 0 calc((100% - (var(--gutter) * 2)) / 1.2);
  }
  .track { gap: 12px; }
}

@media (max-width: 600px) {
  .beer-list {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 90%;
  }
  .beer-item img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 10px;
  }
}

@media (max-width: 480px) {
  :root { --hero-height: 200px; }
  .nav { width: 36px; height: 36px; font-size: 20px; }
}

@media (max-width: 750px) {
  .nav-list {
    display: none;
    flex-direction: column;
    padding: 0;
  }
}

/* ------------------------------
   ハンバーガーメニュー
------------------------------ */
.hamburger-demo-menubox * { font-size: 16px; }
.hamburger-demo-menubox li { font-size: 14px; }
.input-hidden { display: none; }
.hamburger-demo-switch {
  cursor: pointer;
  position: fixed;
  right: 3%;
  top: 0;
  z-index: 9999;
  width: 4em;
  height: 4em;
}
#hamburger-demo1:checked ~ .hamburger-demo-switch {
  position: fixed;
}
.hamburger-switch-line1,
.hamburger-switch-line1:before,
.hamburger-switch-line1:after {
  width: 25px;
  height: 3px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: .3s;
  content: "";
}
.hamburger-switch-line1 {
  transform: translate(-50%, -50%);
}
.hamburger-switch-line1:before { transform: translate(-50%, -300%); }
.hamburger-switch-line1:after  { transform: translate(-50%, 200%); }
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1 {
  width: 0;
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:before {
  transform: rotate(45deg) translate(-40%, 325%);
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:after {
  transform: rotate(-45deg) translate(-40%, -325%);
}
.hamburger-demo-menuwrap {
  position: fixed;
  top: 0;
  left: 100%;
  width: 70%;
  height: 100%;
  background: #44546a;
  padding: 5em 3% 2em;
  z-index: 9998;
  transition: .3s;
  overflow-y: scroll;
}
.hamburger-demo-menulist {
  margin-right: 3%;
  padding-left: 5% !important;
  list-style: none;
}
.hamburger-demo-menulist li { margin: 20px 0; }
.hamburger-demo-menulist li a {
  text-decoration: none;
  color: #f5f5f5;
  display: block;
  font-size: 18px;
  padding: 10px;
}
#hamburger-demo1:checked ~ .hamburger-demo-menuwrap { left: 30%; }
#hamburger-demo1:checked ~ .hamburger-demo-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  background: rgba(3,3,3,.5);
  display: block;
}
@media (min-width: 750px) {
  .hamburger-demo-menubox { display: none; }
}
.hamburger { display: none; }
/* ------------------------------
   下部スライド：スマホ用スライドショー
------------------------------ */
@media (max-width: 600px) {
  .bottom-images {
    position: relative;
    overflow: hidden;
    height: 220px; /* ← スライド画像の高さと揃える！ */
  }

  .bottom-images img {
    position: absolute;
    width: 100%;
    height: 220px;
    left: 0;
    top: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .bottom-images img.active {
    opacity: 1;
    z-index: 1;
  }
}
@media (max-width: 750px) {
  h2 {
    font-size: 50px;
  }
}
.beer-raw{
  text-align: center;
}