@charset "utf-8";



@media screen and (max-width: 768px){
    .pc{
        display: none!important;
    }
    .sp{
        display: block;
    }
}

@media screen and (min-width: 769px){
    .pc{
        display: block;
    }
    .sp{
        display: none!important;
    }
}
.plan_menu .menu_list li,
.drink_menu_list li{
    position: relative;
    margin-top: 0.8rem;
    &::before{
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    top: 0.4em;
    left: -0.5em;
    }
}