#price_list_wrapper{
    width: 98%;
    background-image: url(../img/background/AdobeStock_1247431775.webp), url(../img/background/12.webp);
    background-size: cover,contain;
    background-repeat: no-repeat;
    background-position: top,right;
    background-color: rgba(255, 255, 255, 0.781);
    background-blend-mode: lighten;
    padding: 3vw;
}
#price_list_contain{
    width: 98%;
    height: fit-content;
    margin: 0 auto;
    /* background-image: url(../img/background/12.webp);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain; */
    display: flex;
    row-gap: 1vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#price_list_contain>p{
    font-size: 1.5vw;
    /* padding: 1vw; */
    height: fit-content;
}
table{
    margin: 1vw 0;
    width: 80%;
    /* border: 1px solid; */
}
th{
    text-align: center;
    height: 100%;
    padding: 0.5vw;
    border: 0.1vw solid;
    background: transparent linear-gradient(90deg,#800020e0 0%, #eb595e 20%,rgb(239, 178, 178) 50%,#eb595e 80%, #800020e0 100%) 0% 0% no-repeat padding-box;
    color: white;
    font-size: 1.5vw;
}
tr{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    align-items: center;
    /* color:#eb595e; */
}
td{
    /* width: 16%; */
    height: 100%;
    padding: 0.5vw;
    border: 0.1vw solid;
    background-color:rgba(255, 255, 255, 0.701) ;
    object-fit: contain;
}
.price_text{
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0.5vw;
    justify-content: center;
    align-items: end;
    font-size: 1.7vw;
    /* color:#eb595e; */
}
.tax{
    font-size: 1vw;
    /* color:#eb595e; */
    height: fit-content;
}
@media screen and (max-width: 768px) {
    /* #price_list_contain{
        width: 98%;
        height: 100vw;
        margin: 0 auto;
        background-image: url(../img/background/12.webp);
        background-repeat: no-repeat;
        background-position: right;
        background-size: contain;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    } */
    tr{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        align-items: center;
        /* color:#eb595e; */
    }
    th{
        text-align: center;
        height: 100%;
        padding: 0.5vw;
        border: 0.1vw solid;
        background: transparent linear-gradient(90deg,#800020e0 0%, #eb595e 20%,rgb(239, 178, 178) 50%,#eb595e 80%, #800020e0 100%) 0% 0% no-repeat padding-box;
        color: white;
        font-size: 2.8vw;
    }
    td{
        /* width: 16%; */
        height: 10vw;
        padding: 2vw;
        border: 0.1vw solid;
        background-color:rgba(255, 255, 255, 0.701) ;
    }
    .price_text{
        display: flex;
        width: 100%;
        height: 100%;
        padding: 0.5vw;
        justify-content: center;
        align-items: end;
        font-size: 4vw;
        /* color:#eb595e; */
    }
    .tax{
        font-size: 2.5vw;
        /* color:#eb595e; */
    }
    #price_list_contain>p{
        font-size: 3vw;
        padding: 1vw;
        height: fit-content;
    }
}