/* 商品リスト */
.top-products{
  margin-bottom: 65px;
}

.top-products-lists{
	margin: 25px 0;
}

.top-products-list{
	border: 1px solid #ddd;
  	width: calc((100% - 50px) / 3);
  	margin-right: 25px;
 	padding: 12px;
}

.top-products-list:nth-child(3n){
  margin-right: 0;
}

.top-products-upper{ /* ラベル */
	display: flex;
 	 justify-content: space-between;
}

.top-products-shipment{ /* 送料無料 */
	background-color: #F26A4F;
  	color: #fff;
  	font-weight: 700;
  	letter-spacing: 0.2em;
  	padding: 1px 10px;
}

.top-products-shipment:empty { /* 送料無料の表示がない場合の処置 */
    visibility: hidden;
    width: 0;
    padding: 0;
    margin: 0;
}

.top-products-storage{ /* 保存状態 */
  	color: #fff;
  	font-weight: 700;
  	letter-spacing: 0.1em;
  	padding: 1px 15px;
  	border-radius: 10px;
}

.type-frozen{
	background-color: #53B9E7;
}

.type-room{
	background-color: #E7AB53;
}

.top-products-name-wrap{ /* 商品名 */
	margin-top: 10px;
  	margin-bottom: 10px
}

.top-products-name{
	font-size: 16px;
  	font-weight: 700;
  	letter-spacing: 0.05em;
   display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 2; /* 折り返しを2行まで許可 */
  	overflow: hidden;
  	text-overflow: ellipsis;
}

.top-products-price{ /* 金額 */
	color: #FF0000;
	font-size: 16px;
  	font-weight: 700;
	letter-spacing: 0.15em;
	border-bottom: 1px solid #F0F0F0;
  	padding-bottom: 10px;
   display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 1; /* 折り返しを許可しない */
  	overflow: hidden;
  	text-overflow: ellipsis;
}

.top-products-price-tax{ /* 税込 */
	color: #333;
	font-size: 12px;
}
.top-products-link:hover{
    opacity: 0.7;
    color: #333333;
}
.top-products-link:hover .top-products-price {
    color: #FF0000;
}

.top-products-description{ /* 説明 */
	min-height: 70px; 
	margin-bottom: 0;
  	display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 3; /* 折り返しを3行まで許可 */
  	overflow: hidden;
  	text-overflow: ellipsis;
}

.top-products-description-strong{
	font-weight: 700;
}

.top-products-btn-wrap{ /* ボタン */
	text-align: center;
}

.top-products-btn{
  background-color: #fff;
  border: 1px solid #333;
  padding: 7px 43px;
  letter-spacing: 0.1em;
}

.top-products-btn:hover{
  background-color: #F26A4F;
  color: #fff;
}

/* TABレスポンシブ */
@media (max-width: 980px) {
  
  .top-products-lists{
	margin-left: 20px;
   margin-right: 20px;
  }
  
  .top-products-shipment{
		padding: 1px 7px;
}
  
  .top-products-storage{
  	padding: 1px 7px;
	}
}

/* SPレスポンシブ */
@media (max-width: 768px) {
 
  .top-products-lists{
	margin-left: 20px;
   margin-right: 20px;
}
  
  .top-products-list{
	width: 100%;
  	margin-right: 0;
    margin-bottom: 20px;
  }
  
  .top-products-list:nth-child(3n){
  		margin-bottom: 0;
	}
  
 	.top-products-upper{ /* ラベル */
		justify-content: left;
	}
  
  	.top-products-storage{ /* 保存状態 */
  		margin-left:30px
	}
  
 	 .top-products-shipment:empty + .top-products-storage {
  		margin-left: 0; /* 送料無料の表示がない場合のマージンを0に */
	}
  
  .top-products-description{ /* 説明 */
	min-height: 50px; 
}

}