/*お気に入りボタン*/
.product-list__fav-items {
  position: absolute;
  margin-top: 5px;
  margin-left:2px;
  margin-bottom: 2px;
  width: 30px;
}

.product-list__fav-items button {
  display: block;
  width: 100%;
  padding: 5px 0;
  cursor: pointer;
  transition: .2s;
  text-align: center;
  color: rgb(200,200,200);
  border: 0;
  outline: none;
  background: transparent;
}

.product-list__fav-items .fav-items {
  color: #ff7373;
}

.product-list__fav-items svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
/*お気に入りボタン終わり*/