.order-form {
  /* background-color: #f4f4f4; */

  background-color: rgba(244, 244, 244, 0.6); /* 80%の不透明度で半透明にする場合 */
  padding: 50px 20px;
  text-align: center;
}

.order-form h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
  color: #333;
}

.order-form form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.order-form label {
  display: block;
  margin-top: 20px;
  font-weight: bold;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #333;
  border-radius: 5px;
}

.order-form button {
  margin-top: 30px;
  padding: 12px 30px;
  background-color: #fff;
  color: black;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.order-form button:hover {
  background-color: #fff;
}
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 10px; /* 上下のパディングを調整 */
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
   display: flex; /* Flexboxを有効にする */
  justify-content: space-between; /* 要素を両端に配置 */
  align-items: center; /* 垂直方向の中央揃え */
}

/* ロゴのスタイル */
.fixed-nav .logo img {
  height: 50px; /* ロゴの高さ。必要に応じて調整してください */
  width: auto; /* アスペクト比を維持 */
  /* margin-right: 20px; ロゴとメニューの間にスペースを作成 */
}

.fixed-nav ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 10px 0;
  list-style: none;
}

.fixed-nav li {
  margin: 0 15px;
}

.fixed-nav a {
  text-decoration: none;
  color: #333;
   /* color: #eee; */
   background-color: #fff;
  font-weight: bold;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 4px;
  background-color: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* 開いた状態のアニメーション */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==== レスポンシブ（モバイル対応）==== */
    @media (max-width: 768px) {
      .fixed-reserve-button {
        left: 5px; /* スマホでは少し内側に */
        padding: 8px 12px;
        font-size: 1em;
    }
      .fixed-nav .logo img {
    height: 40px; /* モバイルでのロゴの高さ */
  }

      .horizontal-text { display: none; }
      #top .overlay {
        flex-direction: column;
        justify-content: center;
      }
      .vertical-text {
        writing-mode: horizontal-tb;
        font-size: 2em;
        writing-mode: vertical-rl;
        position: absolute;
        top: 20%;
        left: 10%;
        line-height: 1.5;
          }

      .fixed-nav ul {
        display: flex;
        justify-content: space-around;
        margin: 0;
        padding: 10px 0;
        list-style: none;
          }
      .product-gallery {
      display: flex; /* 横並びに変更 */
      gap: 16px;
      overflow-x: auto; /* 横スクロールを有効に */
      scroll-snap-type: x mandatory; /* スクロールスナップを有効にして気持ちよく止まる */
      padding-bottom: 16px; /* 下のスクロールバーが商品にかぶらないように余白追加 */

      }
.fixed-nav ul {
    display: none; /* デフォルトでメニュー非表示 */
    position: fixed;
    top: 70px; /* ナビゲーションの高さに応じて調整 */
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98); /* モバイルメニューの背景 */
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
  }
  .fixed-nav li {
    margin: 15px 0;
  }
  .fixed-nav a {
    font-size: 1em;
  }
  .hamburger {
    display: flex; /* モバイルではハンバーガーを表示 */
    position: absolute;
    top: 15px;
    right: 50px;
  }
  .nav-menu.active {
    display: flex; /* activeクラスでメニューを表示 */
  }
    .product-item img {
      width: 100%;
      max-width: 160px;
      height: auto;
      display: block;
      margin: 0 auto 15px auto;
      border-radius: 4px;
      }
        



    .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    background-color: #333;
    width: 100%;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    transition: opacity .6s ease, visibility .6s ease; visibility: hidden;
  }

  .nav-menu.active {
    display: flex;
    visibility: visible;
  }

  .nav-menu li {
    margin: 15px 0;
  }
  section {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 0 16px;
}

}
  

    @media (max-width: 480px) {
      .product-gallery { grid-template-columns: 1fr; }
      .section6 { font-size: 1em; }
      .fixed-reserve-button {
        top: 50%; font-size: 1em;
        font-size: 0.9em;
    }
    }
