/* ---------------------------
  商品紹介（レスポンシブ）
--------------------------- */
@media print, screen and (min-width: 600px) {
  /* 親コンテナ */
  section.box.product .mainitem {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 中央寄せ */
    gap: 1.66%; /* 列間スペース */
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 0px;
  }

  /* 子要素（アイテム） */
  section.box.product .mainitem .limited,
  section.box.product .mainitem .reco {
    flex: 0 0 33%; /* 3列分の幅固定 */
    background-color: #fff;
    margin-bottom: 2.5%;
  }

  /* 1個だけのとき中央寄せ */
  section.box.product .mainitem .limited:first-child:nth-last-child(1),
  section.box.product .mainitem .reco:first-child:nth-last-child(1) {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------------------------
  スマホ対応（600px以下）
--------------------------- */
@media screen and (max-width: 959px) {
  section.box.product .mainitem {
    justify-content: center; /* 中央寄せ */
    gap: 0; /* 隙間なしでもOK */
  }

  section.box.product .mainitem .limited,
  section.box.product .mainitem .reco {
    flex: 0 0 100%; /* 1列表示 */
    margin-right: 0;
    margin-bottom: 2.5%;
  }
}