@charset "UTF-8";
.menulist{
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}
.title_m{
    color: var(--primary-red);
    text-align: center;
    font-family: Bevan;
    font-size: 2rem;
    padding-top: 12px;
    margin-bottom: 8px;
}
.title_t{
    color: var(--primary-red);
    text-align: center;
    font-family: Bevan;
    font-size: 2rem;
    padding-top: 20px;
    margin-bottom: 16px;
}
.menu_d{
    width: 83%;
    border-width: 2px;
    border-style: solid;
    border-color: var(--primary-red);
    margin: 0 auto;
    margin-top: 16px;
    border-radius: 5%;
    margin-bottom: 8px;
}
.delivery{
    width: 18%;
    padding-top: 18px;
}
.d_txt_1{
    font-size: 1.4rem;
}
.d_txt_2{
    font-size: 1.2rem;
}
.menu_content{
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 10px;
    margin-top: 20px;
}
.menu0{
    display: none;
}
.btn_red_m{
    position: relative;
    background-color:var(--primary-red);
    color: var(--primary-white);
    text-align: center; 
    display: inline-block;
    font-size: 1.2rem; 
    margin: 24px 12%;
    cursor: pointer;
    border-radius: 5px; 
    width: 230px;
    height: 49px;
    padding-top: 16px;
}
.btn_red_m::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 4%;
    margin-top: -8px;
    margin-left: -5px;
    border-width: 8px;
    border-style: solid;
    border-color:var(--primary-white) transparent transparent transparent;
    transform: rotate(-90deg);
}
.btn_red_m:hover {
    opacity: 0.5;
    background-color:red;
}
/* menu pc */
@media screen and (min-width : 769px) {
    .title_m{
        font-size: 4.8rem;
        padding-top: 48px;
    }
    .menu_box{
        display: flex;
        justify-content: center;
    }
    .menu0{
        display: flex;
        width: 30%;
    }
    .menu1{
        width: 30%;
    }
    .menu_sp{
        display: none;
    }
    .title_t{
        font-size: 4.8rem;
        padding-top: 44px;
    }
    .takeout{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin-bottom: 30px;
    }
    .menu_d{
        margin: 0;
        width: 39%;
        height: 490px;
    }
    .d_txt_1{
        font-size: 1.8rem;
    }
    .d_txt_2{
        font-size: 1.6rem;
    }
    .btn_red_m{
        font-size: 1.6rem; 
        width: 80%;
        height: 80px;
        padding-top: 26px;
        border-radius: 20px; 
        margin: 8% 10%;
    }
}
/* menu 960 */
@media screen and (min-width : 960px) {
    .btn_red_m{
        font-size: 1.8rem; 
        width: 78%;
    }

}
/* menu 1060 */
@media screen and (min-width : 1060px) {
    .d_txt_1{
        font-size: 2rem;
    }
    .d_txt_2{
        font-size: 2rem;       
    }
    .btn_red_m{
        font-size: 2rem; 
        margin: 8% 16%;
        width: 78%;
    }
}