.category-contents{
    max-width:100%;
    padding:16vw 0 5vw;
    margin:0 auto;
}

h2 {
    font-family: 'EB Garamond', serif;
    font-size: 35px;
    color: #6b6b6b;
}

.container {
    display: flex;
    justify-content: space-evenly;
}

.main {
    width:58%;
}

.item-category{
    text-align: center;
    margin: 8% 0 1%;
    font-family: "Hurricane", cursive;
    font-size: 1.6rem;
}

.item-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10%;
}

.item-list li{
    width:calc(94% / 4);
    margin-right:2%;
    margin-bottom:1.1vw;
    position:relative;
}

.item-list li:nth-child(4n){
    margin-right:0;
}

.item-list li img{
    width: 100%;
    object-fit: cover;
    margin-bottom: 3%;
    position: relative;
}

.item-icon{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 11px;
    color: #fff;
    z-index: 1;
}

.item-icon p{
    padding: 0 4px;
}

.item-icon .item-soldout{
    background: #757575;
    border-radius: 2px;
}

.original-price{
    text-decoration: line-through;
}

.category-image {
    margin-bottom: 20px !important;
    display: flex;
}

.total-count span{
    font-weight: bold;
}

.item-category-title{
    font-size:3em
}  

.item-category-title-sort{
	display:flex;
    justify-content:flex-end;
    margin:1vw 0 2.2vw 0;
    font-size:0.8rem;
}

.item-category-title-sort dd{
  margin-right:10px;
}

.category-child-item{
    display:flex;
    justify-content:space-evenly;
    flex-wrap:wrap;
}

.category-child-item li{
  margin-bottom:1vw;
}

.item-name{
    overflow: hidden;
    height: 100px;
}

.price{
    text-align:center;
    margin-top:10px;
}

.pager-wrap{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pager{
    display: flex;
    margin-left: 5%;
}

.pager li{
    margin: 0 20px;
}

.bulk-group{
    margin-bottom: 40px;
    font-size: 12px;
    font-weight: bold;
}

.bulk-group a{
    color: #B5B5B5;
}




/*レスポンシブ*/
@media screen and (max-width:768px){
.main{
    width: 93%;
}
    
.item-list{
    display: flex;
    flex-wrap: wrap;
}
    
.item-list li{
    width: calc((100% - 20px) / 2 );
    margin-bottom: 40px;
    position: relative;
}

.item-list li img{
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 4px;
}
}