/* 商品1つあたりの外枠 */
.prd_lst_unit_s {
  display: inline-block !important; /* 横並びを強制 */
  vertical-align: top !important;   /* 上揃えを強制 */
  
  /* 3列固定のための計算（幅28% + 左右余白各2.5% = 33% × 3個 ≒ 100%） */
  width: 28% !important;            /* 画像（枠）を小さく設定 */
  margin: 0 2.5% 50px !important;   /* 左右に大きな余白、下に50pxの余白 */
  
  float: none !important;           /* レイアウト崩れ防止 */
  box-sizing: border-box !important;
  text-align: center;               /* 商品名なども中央に寄せる場合 */
}

/* 画像自体の設定 */
.prd_lst_img {
  width: 100% !important;           /* 上記の28%の枠いっぱいに表示 */
  height: auto !important;
  display: block;
  margin: 0 auto 15px;              /* 画像の下に少し隙間を作る */
}

/* 親要素（リスト全体）の調整 */
.prd_lst {
  text-align: left;                 /* 全体は左詰めで並べる */
  letter-spacing: -0.4em;           /* inline-block特有の隙間を消す */
}

.prd_lst > * {
  letter-spacing: normal;           /* 文字の隙間を元に戻す */
}