  /* ====================================
   全体のリセット & フォント
   ==================================== */
body {
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho',
               'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN',
               'MS 明朝', serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-size: 18px;
}

/* ====================================
   見出し
   ==================================== */
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;
    font-size:50px;
}
}
h3 {
  text-align: center;
  margin: 0 0 1rem;
}
/* ====================================
   ヘッダー & ナビゲーション
   ==================================== */
header {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  text-align: center;
}
header .logo {
  max-width: 250px;
  height: auto;
  display: inline-block;
}
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; }

/* ====================================
   ハンバーガーメニュー
   ==================================== */
.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; }

  .event-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }  
  .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
  }
  
  .event-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3つ */
  gap: 10px;
  }
  
  .event-item {
    width: 100%;       /* 枠にフィット */
  height: auto;      /* 縦横比を保つ */
  display: block; 
  }

  @media (max-width: 768px) {
    .event-grid {
      grid-template-columns: repeat(2, 1fr); /* 2列 */
    }
  }
  
  /* スマホ用（画面幅480px以下） */
  @media (max-width: 480px) {
    .event-grid {
      grid-template-columns: 1fr; /* 1列 */
    }
  }

  .image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;  /* 同じ縦横比で枠を固定 */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* 中央を基準に切り取り */
    display: block;
  }
  
  .caption {
    margin-top: 10px;
    font-size: 60px;
    line-height: 1.5;
    color: #444;
  }
  .more-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 999px; /* 楕円形にする */
    transition: background-color 0.3s ease;
  }
  
  .more-button:hover {
    background-color: #333;
  }

  .upcoming-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .upcoming-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }
  
  .upcoming-title hr {
    flex: 1;
    border: none;
    border-top: 1px solid #888;
  }
  
  .upcoming-title span {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #333;
  }
  
  .coming-subtitle {
    font-size: 16px;
    border-bottom: 1px solid #999;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 40px;
    color: #666;
  }
  
  .coming-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
  }
  
/* スマホ用（画面幅480px以下） */
@media (max-width: 480px) {
  .coming-content  {
    grid-template-columns: 1fr; /* 1列 */
  }
}

.instagram-section {
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央寄せ */
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

/* 写真の設定 */
.instagram-image {
  width: 80%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* リンクテキスト */
.instagram-link {
  margin-top: 20px;
  font-size: 22px;
  color: #E1306C; /* Instagramカラー */
  text-decoration: none;
  transition: color 0.3s ease;
}

.instagram-link:hover {
  color: #c82361;
}

/* モバイル対応 */
@media (max-width: 600px) {
  .instagram-image {
    width: 100%;
    max-width: 320px;
  }

  .instagram-link {
    font-size: 16px;
  }
}
  
  @media screen and (max-width: 768px) {
    .info-container {
      flex-direction: column;
    }
  
    .info-left, .info-right {
      width: 100%;
      text-align: center;
    }
  
    .info-right iframe {
      height: 250px;
    }
  }
 
  .container {
    display: flex;
    align-items: stretch; /* 左右の高さを揃える */
    gap: 38px; /* 左右の写真の間隔 */
  }
  
  @media (max-width: 480px) {
    .container {
      grid-template-columns: 1fr; /* 縦並びに変更 */
    }
  }

  .left-photo {
    width: 180px; /* 左写真の横幅 */
    object-fit: cover;
    height: auto; /* JavaScriptで高さ設定 */
  }
  
  .right-side {
    display: flex;
    flex-direction: column;
    width: 180px; /* 右側の幅は左写真に合わせる */
  }
  
  .right-photo {
    width: 140%;
    object-fit: cover;
  }
  
  .text {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
  }
  
  .instagram-link {
    margin-top: 5px;
    font-size: 14px;
    color: #0077cc;
    text-decoration: none;
  }
  
  .instagram-link:hover {
    text-decoration: underline;
  }
  
  .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;
  }
   
  .footer-icons img:hover {
    opacity: 0.7;
  }

  .more-button-wrapper {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 2em;
  }
  
  .more-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 999px; /* 楕円形にする */
    transition: background-color 0.3s ease;
  }
  
  .more-button:hover {
    background-color: #333;
  }

  .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
  }
  
  .heading::before,
  .heading::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #333; /* 横棒の色 */
    margin: 0 20px; /* STAFFとの余白 */
  }
  
  .heading span {
    font-weight: bold;
  }
  
  /* 下の2カラム */
  .content {
    display: flex;
    gap: 40px; /* 左右の間隔 */
  }
  

   


  /* 左カラム */
  .left {
    flex: 1;
    text-align: center;
    
  }
  
  .left img {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* バランスよく表示 */
    border-radius: 8px; /* 角を少し丸める場合 */
  }
  
  .caption {
    margin-top: 10px;
    font-size: 10px;
    color: #555;
  }
  
  /* 右カラム */
  .right {
    flex: 1;
    font-size: 20px;
    line-height: 1.8;
    color: #333;
  }
  
  .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .heading::before,
  .heading::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #333;
    margin: 0 20px;
  }
  
  .heading span {
    font-weight: bold;
  }
  
  /* ONLINE文字 */
  .subheading {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
  }
  
  .online {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    padding-right: 18px;
  }
  
  
  /* 商品リスト */
  .products {
    display: flex;
    flex-direction: column;
    gap: 40px; /* 商品ごとの間隔 */
  }
  
  /* 各商品（横並び2カラム） */
  .product {
    display: flex;
    gap: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
  }
  .product .left {
  display: none; /* 左写真エリアを削除 */
}

.product {
  justify-content: center; /* 右側を中央寄せ */
  text-align: center;
}
  /* 左：画像と価格 */
  .left {
    flex: 1;
    text-align: center;
    padding: 10px;
  }
  
  .left img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 10px;
  }
  
  .price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
  }
  
  /* 右：説明文 */
  .right {
    flex: 2;
  }
  
  .title {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .right p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    padding: 20px;
  }
  
  .buy {
    font-size: 14px;
    margin-top: 15px;
  }
  
  .buy a {
    color: #0066cc;
    text-decoration: none;
  }
  
  .buy a:hover {
    text-decoration: underline;
  }
  
  /* ===== スマホ対応（画面幅768px以下） ===== */
  @media (max-width: 768px) {
    .product {
      flex-direction: column;  /* 縦積み */
      align-items: center;     /* 写真中央寄せ */
      text-align: center;
    }
  
    .right {
      text-align:left; /* 説明文だけは左揃えに戻したい場合は消す */
      margin-top: 15px;
    }
  }
  .store {
    margin-top: 80px; /* 前のONLINEとのスペース */
  }
  




.products {
    display: flex;
    flex-direction: column;
    gap: 40px; /* 商品ごとの間隔 */
  }
  /* 各商品（横並び2カラム） */
  .product {
      display: flex;
  justify-content: center;   /* 中央に寄せる */
  text-align: center;
  padding: 30px;
  }
  .store .product {
  padding: 40px 20px;
  border-bottom: 1px solid #bbb;  /* ← これが一本線 */
  text-align: center;             /* 中央寄せ */
  margin-bottom: 40px;
}

/* 最後のショップだけ線を消す */
.store .product:last-of-type {
  border-bottom: none;
}
  /* 左：画像と価格 */
  .left {
    flex: 1;
    text-align: center;
    padding: 10px;
  }
  .left img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 10px;
  }
  .price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
  }
  /* 右：説明文 */
  .right {
    flex: 2;
  }
  .title {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .right p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    padding: 20px;
  }
  .buy {
    font-size: 14px;
    margin-top: 15px;
  }
  .buy a {
    color: #0066cc;
    text-decoration: none;
  }
  .buy a:hover {
    text-decoration: underline;
  }
  /* ===== スマホ対応（画面幅768px以下） ===== */
  @media (max-width: 768px) {
    .product {
      flex-direction: column;  /* 縦積み */
      align-items: center;     /* 写真中央寄せ */
      text-align: center;
    }
    .right {
      text-align:left; /* 説明文だけは左揃えに戻したい場合は消す */
      margin-top: 15px;
    }
  }
  .store {
    margin-top: 80px; /* 前のONLINEとのスペース */
  }




  /* 詳細リンク */
  .detail {
    font-size: 18px;
    margin-top: 10px;
    padding: 10px; ;
  }
  
  .detail a {
    color: #0066cc;
    text-decoration: none;
  }
  
  .detail a:hover {
    text-decoration: underline;
  }
  
  /* スーパーのボタン */
  .button-wrapper {
    margin-top: 20px;
  }
  
  .btn-store {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border-radius: 50px; /* 楕円形 */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .btn-store:hover {
    background: #333;
  }
  
  /* 下部メッセージ */
  .store-footer {
    margin-top: 60px;
    text-align: center;
  }
  
  .message {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 60px; /* 3行分くらいの余白 */
  }
  
  .footer-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .access-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .access-title {
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .access-title .line {
    flex: 1;
    height: 2px;
    background-color: #000;
    margin: 0 20px;
  }
  
  .facility-name {
    font-size: 24px;
    margin-bottom: 20px; /* 施設名の下1行空け */
    font-weight: bold;
  }
  
  .info-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .info-left {
    width: 48%;
    text-align: center; /* 中央寄せ */
    font-size: 22px;
    line-height: 2;
  }
  
  .info-right {
    width: 48%;
  }
  
  .access-note {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px; /* 上1行分の余白 */
  }
  
  /* レスポンシブ対応 */
  @media screen and (max-width: 768px) {
    .info-container {
      flex-direction: column;
    }
  
    .info-left, .info-right {
      width: 100%;
      text-align: center;
      object-fit: contain;
    }
  
    .info-right iframe {
      height: 250px;
    }
  }
   
  .media-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: black;
    max-width: 300px;
    margin: 0 10px;
}

.media-title {
    font-size: 40px;
    margin: 0;
}

.description {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: center;
    padding: 10px;
}

.media-gallery {
    display: grid; /* FlexboxからGridに変更 */
    grid-template-columns: 1fr 1fr; /* 2列に設定 */
    gap: 40px; /* アイテム間の余白 */
    justify-items: center; /* グリッドアイテムを中央に配置 */
    align-items: center; /* グリッドアイテムを中央に配置 */
    max-width: 800px; /* 全体の幅を制限 */
    margin: 0 auto; /* 中央揃え */
}

.media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vertical-item img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

.horizontal-item {
    display: flex;
    flex-direction: column-reverse; /* 説明と写真の順序を反転 */
    align-items: center;
    text-align: center;
}

.horizontal-item img {
    width: 300px; /* 幅を調整 */
    height: 150px; /* 高さを調整 */
    object-fit: cover;
    margin-top: 10px;
    border-radius: 0;
}

.caption {
    font-size: 18px;
    color: #555;
    margin: 10px 0;
}

.other-media-section {
    margin-top: 60px;
    text-align: center;
}

.media-button {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 9999px;
    background-color: black;
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
}



.instagram-link {
    font-size: 14px;
    color: #888;
}



@media (max-width: 750px) {
  h2 {
    font-size: 50px;
    gap: 0.5em;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    padding: 0;
  }
}
@media (max-width: 600px){
  .footer-image{
    padding-left: 10px;
    padding-right: 10px;
  }
}

* {
  box-sizing: border-box;
}

.access {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.access-info {
  flex: 1;
  font-size: 20px;
  line-height: 2;
}

.info-row {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.label {
  width: 120px;
  font-weight: bold;
}

.value {
  flex: 1;
}

.access-map {
  flex: 1.3;
  width: 100%;
}

.access-map iframe {
  width: 100%;
  height:100%;
  border: 0;
}


/* ---- モバイル ---- */
@media (max-width: 768px) {
  .access {
    flex-direction: column;
    gap: 30px;
    padding: 10px;
    width: 100%;
  }

  .access-info {
    font-size: 18px;
    width: 100%;
  }

  .info-row {
    flex-direction: column;
    gap: 4px;
  }

  .label {
    width: auto;
  }

  .access-map iframe {
    height: 300px;
    width: 100%;
  }
}
.beer-more-btn::after {
  content: "→";
  position: absolute;
  right: 16px;
  opacity: 0;
  transition: all 0.3s ease;
}
.beer-more-btn:hover {
  background: linear-gradient(135deg, #a2b5ff, #cbd4ff);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  padding-right: 36px;
}

.beer-more-btn:hover::after {
  opacity: 1;
  right: 12px;
}
.btn-text{
  text-align: center;
}
.more-line {
  display: flex;
  align-items: center;
  justify-content:center; /* 全体を右寄せ */
  gap: 30px; /* テキストとボタンの間隔 */
  margin-top: 10px;
}

.more-line .info-text {
  font-weight: bold;
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .store .product .right {
    text-align: center !important;  /* ← これでLEFTを完全に打ち消す */
  }
}
/* === MORE BTN 統一（HOME と同じアニメーション） === */
.more-btn {
  height: 42px;       
  line-height: 42px; 
  padding: 0 24px;  
  display: inline-block;
  background: linear-gradient(135deg, #44546a);
  border-radius: 25px;
  text-decoration: none;
  color: #f8f7f7;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  font-size: 16px;
}

.more-btn::after {
  content: "→";
  position: absolute;
  right: 16px;
  opacity: 0;
  transition: all 0.3s ease;
}

.more-btn:hover {
  background: linear-gradient(135deg, #a2b5ff, #cbd4ff);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  padding-right: 36px;
}

.more-btn:hover::after {
  opacity: 1;
  right: 12px;
}
