/*for all*/
/*-----list page-----*/
/*list*/
.srh_title {
    border-bottom: 1px solid #ed9d91;
}

.srh_title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    width: 8.6%;
    height: 1px;
    background: #db3d25;
}

.list_title {
    margin-bottom: 30px;
}

.list_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item_quantity {
    font-size: 1.2rem;
}

.item_quantity span {
    font-size: 1.2rem;
}

.item_sort {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.item_sort_select {
    position: relative;
}

.item_sort_select li {
    width: 135px;
    padding: 10px 5px 10px 15px;
    border: 1px solid #ddd;
    background: url(https://file002.shop-pro.jp/PA01391/693/images/icon/icon_arrow_down.png) no-repeat 92%;
    font-size: 1.2rem;
}

.item_sort_select ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0px;
       padding: 0px;
}

.item_sort_select ul li {
    background: #fff;
    border-top: none;
}

/*-----list end-----*/

/*for smartphone*/
@media screen and (max-width:768px) {

    .item_block {
        width: 100%;
    }
    .list_header {
        align-items: center;
        padding-bottom: 25px;
    }
    .item_sort span {
        display: none;
    }
    .item_name {
        display: block;
        margin: 25px 0 20px;
    }
      .item_name,
      .item_price{
          font-size: 3.8vw;
          text-align: center;
      }
    .srh_title::after {
        width: 80px;
    }

}