.section__block--top-page {
  max-width: 1100px;
}

.slider {
  margin-top: 0;
}
.slider .bx-wrapper {
  margin-bottom: 0;
}
.slider .bx-wrapper .bx-caption {
  text-align: center;
  top: 0;
  bottom: auto;
}

#slider img {
  display: block;
  margin: 0 auto;
}

.banner__section {
  margin-top: 2px;
}

.news__lists {
  list-style-type: none;
  margin: 0 0 2em;
}

.news__list {
  margin-bottom: .5em;
}

.news__date {
  margin-right: 1em;
}

/* NEW ARRIVALS グリッド */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* スマホ2列 */
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.recommend-grid__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* PC（960px以上）では4列 */
@media (min-width: 960px) {
  .recommend-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

