/* EDKDS001-03_add */
@charset "utf-8";

.newSalesCommodityList {
  opacity: 0;
}
.newSalesCommodityList.slick-initialized {
  opacity: 1;
}
.newSalesCommodityList .slick-track {
  display: flex;
}
.newSalesCommodityList .slick-slide {
  height: auto;
}

/* ショップアイコン＋店名（PCのみアイコン表示。SPは recommend と同じテキストのみ） */
.newSalesCommodity-shopRow {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.newSalesCommodityList .itembox_shopname a:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shopImage {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid #ddd;
  background: #fff;
  vertical-align: middle;
}

.shopicon {
  flex: 0 0 auto;
  line-height: 0;
}

.newSalesCommodityList .itembox_img a:hover img {
  transform: scale(1.06);
}

.newSalesCommodityList .itembox_img img {
  transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  /* common_kfg.css の .itembox（max-width:768px）と同じ item 間隔: margin-right: 16px */
  .newSalesCommodityList .itembox {
    margin-right: 16px;
  }
  .newSalesCommodityList .shopicon {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  /* recommend-list の PC用 flex は Slick と競合するため打ち消す */
  .newSalesCommodityList.recommend-list {
    display: block;
    width: 1080px;
    margin: 0 auto 80px;
  }
  .newSalesCommodityList .slick-slide {
    width: 200px;
    margin-right: 20px;
  }
}

.itembox_price span span b {
  color: red;
}
