@charset "UTF-8";

.menus{
    padding-right: 20px;
    padding-left: 20px;
}

.basic_foods{
    display: flex;
    max-width: 100%;
}

.basic_foods>div{
    width: 50%;
}

table{
    width: 100%;
}

.recommendation{
    display: flex;
    width: 100%;
}

.left_area,.right_area{

    margin: 10px;
    width: 50%;
}

.food_area_cell{
    display: flex;
    width: 100%;
    margin-top: 10px;
}

hr{
    margin-top: 30px;
}

.food_area_cell img{
    height: 200px;
}

.food_area_cell>div
{
    width: 40%;
}

.food_area_cell>div>p{
    width: 100%;
    text-align: right;
    padding-right: 10px;

}

.center_h6{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.discription{
    font-size: 12px;
}


@media (max-width:767px) {

    .basic_foods{
        display: block;
    }

    .basic_foods>div{
        width: 100%;
    }

    .food_area_cell img{
        width: 60%;
        height: auto;
    }

    .left_area,.right_area{

        width: 100%;
    }

    .recommendation{
        display: block;
    }


}