/* MODE用 横スクロール設定 */
.mode-scroll-container {
  margin: 40px 0;
  overflow: hidden; /* はみ出し防止 */
}

.mode-section-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.mode-scroll-list {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 0 15px 15px 15px; /* 下にスクロールバー用の余白 */
  list-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

/* スクロールバーをあえて薄く表示（操作性を伝えるため） */
.mode-scroll-list::-webkit-scrollbar {
  height: 2px;
}
.mode-scroll-list::-webkit-scrollbar-thumb {
  background: #ddd;
}

.mode-scroll-item {
  flex: 0 0 160px; /* スマホでの1枚の幅 */
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .mode-scroll-item {
    flex: 0 0 220px; /* PCでの1枚の幅 */
  }
}

.mode-scroll-item a {
  text-decoration: none;
  display: block;
  color: #333;
}

.mode-item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #f0f0f0;
}

.mode-item-detail {
  padding-top: 8px;
  white-space: normal; /* 商品名が長くても折り返す */
}

.mode-item-name {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.mode-item-price {
  display: block;
  font-size: 13px;
  font-weight: bold;
}

/* もっと見るボタン（MODEのスタイルに合わせる） */
.mode-more-btn {
  margin-top: 10px;
  border-top: 1px solid #eee;
}

.mode-more-btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
}

/* MODE用 横スクロール設定 */