/*************************
		アイキャッチ画像
*************************/
.productlist_img{
  position: relative;
  width: 100%;
  /*height: 320px;*/
  margin-bottom: 7px;
}
.productlist_img a img{
  width: 100%;
  height: 320px;
  object-fit: cover; /* この一行を追加するだけ！ */
}
.productlist_img2{
  position: relative;
  width: 100%;
  /*height: 320px;*/
  margin-bottom: 7px;
}
.productlist_img2 a img{
  width: 100%;
  height: 200px;
  object-fit: cover; /* この一行を追加するだけ！ */
}
/*************************
		soldout
*************************/
.sold_img{
  position: absolute;
  width: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  /*background: rgba(0,0,0,0.6);*/
}
.sold_img img{
  width: 100%;
  height: auto;
}
.col-lg-3s {
    position: relative;
	width: 20%;
  	margin-bottom: 10px;
}
.col-lg-3s img {
	width: 100%;
	height: auto;
  object-fit: cover; /* この一行を追加するだけ！ */
}
@media screen and (max-width: 700px) {
  .col-lg-3s {
    width: 50%;
  }
}


