@charset "UTF-8";
/* CSS Document */
.pc-only{
 display: block;
}
.sp-only{
 display: none;
}
.contents{
 padding: 0 50px 50px;
}
.lBox .category.contents{
	display: inline-block;
    margin: 70px 0 50px;
	padding: 0;
}
.contents .p-description{
 font-weight: 500;
 padding: 0 0 10px;
 margin: 0 0 30px;
 border-bottom: solid 1px #E8E8E8;
}
.contents .product{
 display: flex;
 gap: 70px;
}
.contents .search-column{
 width: 21.5%;
 min-width: 233px;
}
.contents .product-list{
 width: 100%;
}
.contents .product-list ul{
 display: flex;
 flex-wrap: wrap;
 gap: 60px 35px;
}
.contents .product-list ul li{
 width: calc((100% - 70px) / 3);
}
.contents .product-list ul li a > div{
 width: 237px;
 height: 237px;
 background-color: #f7f7f7;
 padding: 9px;
 box-sizing: border-box;
 border-radius: 5px;
}
.contents .product-list ul li a > div > div{
 width: 100%;
 height: 100%;
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center center;
}
.contents .product-list ul li a p.title{
 font-size: 18px;
 font-weight: bold;
 margin: 20px 0 0;
}
.contents .product-list ul li a p.category{
 font-size: 16px;
 font-weight: 400;
 line-height: 1.6;
 margin: 5px 0 0;
 color: #9CA2A7;
}
.contents .product-list ul li a p.price{
 color: #000;
 font-family: 'Roboto', 'Noto Sans JP', sans-serif;
 font-weight: bold;
 margin: 20px 0 0;
 font-size: 16px;
}
.contents .product-list ul li a p.price span{
 font-size: 13px;
 font-weight: 400;
 padding: 0 0 0 3px;
}
#sort_form select{
 width: 100%;
 max-width: 233px;
 font-size: 16px;
 font-weight: 500;
 border: solid 5px #E8E8E8;
 border-radius: 5px;
 padding: 13px 16px 10px;
}
.contents .pc-title{
 font-weight: bold;
 margin: 28px 0 17px;
 padding: 0 0 10px;
 border-bottom: solid 1px #e8e8e8;
font-size: 18px;
}
.contents .plist-cat-list li a{
 font-size: 16px;
 font-weight: 400;
 color: #9CA2A7;
 display: block;
 padding: 8px 15px;
 line-height: 1.4;
}
.contents .plist-cat-list li a:hover,
.contents .plist-cat-list li.current a{
 color: #000;
 border-radius: 5px;
 transition: .3s;
 background-color: #E8E8E8;
}
.contents .plist-cat-list li:not(:first-child){
 margin: 3px 0 0;
}
.contents .product-list ul li a p.title{
	height: 50px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px){
 .pc-only{
  display: none;
 }
 .sp-only{
  display: block;
 }
 .contents{
  padding: 0 30px;
 }
 .contents .p-description{
  padding: 0 0 20px;
  margin: 0 0 20px;
 }
 .contents .product{
  display: block;
 }
 .contents .search-column{
  width: 100%;
 }
 #sort_form select{
  max-width: 100%;
  padding: 13px 16px 10px;
 }
 .contents .pc-title{
  margin: 15px 0 0;
  border-bottom: none;
 }
 .contents .p-category > form select,
 .contents .p-bland > form select{
  font-size: 12px;
  font-weight: 500;
  line-height: 2.6;
  width: 100%;
  padding: 13px 16px 9px;
  border: none;
  border-radius: 5px;
  background-color: #E8E8E8;
 }
 .contents .product-list{
  margin: 50px 0 0;
 }
 .contents .product-list ul{
  gap: 29.8px 16.4px;
 }
 .contents .product-list ul li{
  width: calc((100% - 16.4px) / 2);
 }
 .contents .product-list ul li a > div{
  width: 100%;
  height: 126px;
  padding: 5px;
 }
 .contents .product-list ul li a p.category{
  line-height: 1.25;
 }
 .contents .product-list ul li a p.price{
  margin: 23px 0 0;
 }
}
/*ページ送り*/
.pagination{
 display: flex;
 width: fit-content;
 margin: 100px auto 0;
 gap: 30px;
}
.pagination a{
 color: #3E3E3E;
}
.pagination a,
.pagination span{
 padding: 10px 10.5px 8px;
 line-height: 1.91;
 opacity: 1;
}
.pagination a:hover,
.pagination span.current{
 color: #fff;
 background-color: #000;
 border-radius: 5px;
}
.pagination a.prev,
.pagination a.next{
 position: relative;
}
.pagination a.prev:after,
.pagination a.next:after{
 position: absolute;
 content: "";
 width: 6.41px;
 height: 6.41px;
 background: url('../img/common/arrow-left-blk.svg') no-repeat center center;
 background-size: cover;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 margin: auto;
}
.pagination a.next:after{
 transform: rotate(180deg);
}
.pagination a.prev:hover:after,
.pagination a.next:hover:after{
 background: url('../img/common/arrow-left-wht.svg') no-repeat center center;
 background-size: cover;
}