@charset "UTF-8";
.items_groups{
    background-image: url(../images/price_item_bg.png);
    background-size: cover;
    padding: 1em;
    color: white;
    font-size: 1em;
    margin: auto;
    border-radius: 1.5em;
}

.items{
    margin: auto;
    text-align: left;
}
.items_contents{
    width: 70%;
    margin: auto;
}

.items_contents > img{
    width: 100%;
    height: auto;
    padding: 1.5em 0em 0.5em;
}

.items_name{
    font-size: 0.8em;
    border-bottom: solid 1px white;
    height: 2.5em;
    padding: 0 0 0.3em 0;
    line-height: 1em;
}
  
.items_price{
    font-size: 1.4em;
    font-weight: 500;
}

/* PC */
@media screen and (min-width: 769px) {
    .main_wrap #price .price_inner::after{
        top: 50px!important;
    }

    .items_groups{
        width: 72%;
    }

    .items_name{
        width: 80%;
    }
}

/* SP */
@media screen and (max-width: 768px) {
    .main_wrap #price .price_inner::after{
        top: 35px!important;
    }

    .items_groups{
        width: 90%;
    }

    .items_name{
        width: 100%;
    }
}