/* 注目のおすすめ商品を横2列に変更 */
.main.main--home section.__block.__block--feature .__body ul li {
        width: 50%;
}


/* 新着商品：PC4列 */
.new-item ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.new-item li {
  margin: 0;
}

.new-item li a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
}

.new-item li a > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.new-item figure {
  margin: 0;
}

.new-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: opacity 0.3s;
}

.new-item figcaption {
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  color: #666;
}

.new-item li a:hover img {
  opacity: 0.7;
}

.new-item li a:hover figcaption {
  text-decoration: underline;
}

/* タブレット：3列 */
@media screen and (max-width: 1024px) {
  .new-item ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* スマホ：横スクロール */
@media screen and (max-width: 768px) {
  .new-item ul {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 0 12px;
    -webkit-overflow-scrolling: touch;
  }

  .new-item ul::before,
  .new-item ul::after {
    content: "";
    flex: 0 0 16px;                 /* 左右余白 */
  }

  .new-item li {
    flex: 0 0 50%;
  }

  .new-item li a {
    padding: 14px;
  }

  .new-item figcaption {
    font-size: 12px;
    line-height: 1.5;
  }
}