
body {
  min-height: 150vh; /* ビューポートの1.5倍の高さに設定 */
}

.shop-menu {
  position: sticky;
  top: 10px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  margin: 0 auto;
  max-width: 1100px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  -webkit-tap-highlight-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.shop-menu a {
  text-decoration: none;
}


.menu-item:active {
  transform: scale(0.98);
}

.menu-item {
  text-decoration: none;
  background-color: transparent;
  color: #4a5568;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.01em;
}


.shop-section {

}
.shop-section.active {
  display: block;
}


/* スマホ専用スタイル */
body {
  font-family: Arial, sans-serif;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

/* バナー画像のスタイル */
.banner {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 40px;
  padding: 0;
}

/* コンテンツ全体のスタイル */
.main-content {
  flex: 1; /* 残りの領域を埋める */
  padding: 15px; /* 内側余白 */
  background-color: #fff; /* 白背景 */
  border-radius: 8px; /* 角を丸める */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ボックス影 */
  margin: 20px auto;
  max-width: 90%; /* 画面幅の90%に調整 */
}

/* レスポンシブデザイン（スマホ対応） */
@media (max-width: 768px) {
  .main-content {
      margin: 10px auto; /* 上下余白を狭める */
      padding: 10px; /* 内側余白を調整 */
  }

  .banner img {
      width: 100%; /* バナー画像を画面幅いっぱいに */
  }
}

/* デスクトップ用（バナー幅制限） */
@media (min-width: 769px) {
  .banner {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 20px;
  }
}
