/* =========================
  新商品・おすすめ：3列グリッド（PC）
========================= */
.new-item-list{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-item-list li{
  box-sizing: border-box;
}

.new-item-list img{
  width: 100%;
  height: auto;
  display: block;
}

/* タブレット：2列 */
@media (max-width: 1024px){
  .new-item-list{
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* スマホ：1列 */
@media (max-width: 600px){
  .new-item-list{
    grid-template-columns: 1fr !important;
  }
}

/* =========================
  新商品「もっと見る」：控えめリンク（ボタン感なし）
========================= */
.new-item-more-wrap{
  margin: 16px 0 8px;
  text-align: right; /* 右寄せ。中央にしたければ center */
}

.new-item-more{
  display: inline-block;
  font-size: 16px;       /* 控えめサイズ */
  line-height: 1.4;
  padding: 0;
  text-decoration: underline;
  border: none;
  background: none;
  font-weight: 500;
}

.new-item-more:hover{
  opacity: .7;
}

/* =========================
  新商品 → おすすめ の境目（仕切り線＋余白）
========================= */
.top-pickup{
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

/* 見出しの下線（既存がある場合は不要） */
.new-item-title::after{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #c8a26a;
  margin-top: 8px;
}

/* 「新商品をもっと見る」を中央寄せ */
.new-item-more-wrap{
  text-align: center !important;
}

/* 商品カードの下に余白を追加 */
.new-item-list li{
  margin-bottom: 24px;
}

/* 商品名と価格の行間も少し広げる（任意） */
.new-item-list li a{
  margin-bottom: 8px;
  display: block;
}

.new-item-list .price{
  display: block;
  margin-top: 4px;
}
