.price-Memos{
    list-style-type: disc;
    margin-bottom: 30px;
}
.price-Memos__Item{
    font-size: 1.6rem;
    padding-bottom: 10px;
}



.price-List{
    margin-bottom: 50px;
}
.price-List__Title{
    font-size: 2.9rem;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
.price-List__Title::after{
    content: '税込価格表示です';
    font-size: 1.6rem;
    margin-left: auto;
}
.price-List__Table{
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.price-List__Table *{
    color: black;
    font-size: 1.5rem;
    text-align: center;
}
.price-List__Table > dl{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-top: -1px;
}
.price-List__Table > dl > dt{
    background-color: #efefef;
    padding: 10px;
}
.price-List__Table > dl > dd{
    padding: 10px;
}
.price-List__Table tbody > tr:nth-child(odd){
    background-color: #F8F9FA;
}
.price-List__Option{
    text-align: right;
    padding-top: 15px;
}