@charset "euc-jp";
.product-list__prices{
  float:left;
   display: inline-block; 
}
/*お気に入りに追加*/
.product-list__fav-items {
  width: 30px;
  float:right;
   display: inline-block; 
}
.product-list__fav-items:after {
  clear:both;
}

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

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

.product-list__fav-items svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
  /*フェードで切り替わるボタン
.fade_btn {
	position: relative;
	width: 32%;
	height: auto;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	cursor: pointer;
}
.fade_btn img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.fade_btn:hover img:nth-of-type(2) {
	opacity: 0;
}
