.productlist_subttl{
  color: #603813;
  font-size: 25px;
  margin: 10px auto;
}
.productlist_text{
  line-height: 1.9;
}

.list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
.list .item_box{
  width: 31.73%;
  max-width: 320px;
  background: rgba(255,255,255,.5);
  margin-bottom: 3.5%;
  padding: 2% 2% 50px 2%;
  transition: .3s;
  font-weight: bold;
}
.list .item_box:hover{
  border: 6px solid #603813;
  transform: scale(1.1);
}
.list .item_box:hover img{
  opacity: .5;
}
.list .item_box img{
  display: block;
  width: 100%;
}
.list .item_box .item_name{
  margin: 13px 0 2px 0;
}
.list .item_box .item_name a{
  color: #000;
}
.list .item_box .item_price{
  color: #B9272D
}
.pager{
  position: relative;
  height: 42px;
  margin: 10px auto 75px;
}
.pager span{
  padding-top: 7px;
  display: inline-block;
}
.pager .btn_next{
 position: absolute;
 right: 0;
 width: 150px;
} 
.pager .btn_prev{
 position: absolute;
 left: 0;
 width: 150px;
} 
.product_nav{
  margin-top: 60px;
}
div.f_link{
  margin-top: 14%;
}

@media (max-width: 768px){
  .list .item_box{
  width: 47.5%;
  max-width: none;
  }
  .pager span.page_num {
    padding-top: 50px;
  }
}