@charset "utf-8";
body {
	display: none;
}


/* メニュー */
.menu{
    margin-top: 150px;
}

.menu_textbox{
    width: 45%;
}
.menu_text{
    letter-spacing: 0.1em;
    line-height: 2.5;

}

.menu_list{
    margin-top: 4em;
}
.menu_box {
    justify-content: space-between;
    align-items: center;
}


.menu_listbox{
    align-items: center;
    justify-content: space-between;
}


.menu_box{
    justify-content: space-between;
    align-items: end;
}

.menu_group{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}


.menu_name p{
    margin-top: 1em;
    margin-bottom: -0.75em;
}

.ingredients{
    font-size: 10px;
    color:#A01616;
}

.menu_pastalist{
    width: 45%;
}
.menu_price p{
    margin-top: 1.5em;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing:0.15em;
    width: 4em;
}
.menu_price p::before{
    content: "";
    display: inline-block;
    width:0.5px;
    height:8em;
    background-color:rgb(0, 0, 0);
    position:absolute;
    top: -150%;
    left: -77px;
    transform: rotate(90deg);

}
.lunch_box{
    display: flex;
    justify-content: center;
    margin-bottom: 1.5em;
}

.lunch_group{
    width: 75%;
    justify-content: space-between;
    align-items:center;
}

.set_price p{
    position: relative;
}
.setmenu{
    font-weight: bold;
}

.set_price p::before{
    content: "";
    display: inline-block;
    width:0.5px;
    height:10em;
    background-color:rgb(0, 0, 0);
    position:absolute;
    top: -60px;
    left: -91px;
    transform: rotate(90deg);

}

/* テイクアウト */
.takeout{
    margin-top: 250px;
}

.takeout_box{
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.takeout:hover{
    opacity: 0.5;
}
.takeouttext{
    text-align: center;
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    color:#fff;

}
.takeouttitle{
    font-size: 40px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    letter-spacing:0.1em;
}
.takeout_image{
    width: 100%;
}
.more{
    display: flex;
    justify-content: flex-end;
    margin-top: 3em;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

/* タブレットサイズ */
@media (max-width:1100px) {
    .menu_price p::before{
        display: none;
    }

    .set_price p::before{
        display: none;
    }
    }

    /* スマホサイズ */

    @media (max-width:750px) {

    .menu_pastalist{
        width: 100%;
    }

    .menu_price p::before{
        height: 6em;
        top: -92%;
        left: -65px;

    }

    .menu{
    margin-top: 80px;
    } 
    .takeout{
    margin-top: 80px;
    } 
    .lunch_group{
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;

    }

    .set_menu{

        width: 70%;
    }
    .set_price{
        display: flex;
        align-items: flex-end;
    }


    /* テイクアウト */
    .takeout{
        margin-top: 80px;
        width: 90%;
    }
    .takeouttext{
        white-space: nowrap;
        font-size: 13px;
    }
    .takeouttitle{
        font-size: 24px;
        margin-bottom: 0.5em;
    }
    
    .takeout_image{
        display: none;
    }
    .takeout_box{
        width: 100%;
    }
    .takeout_image_sp{
        width: 100%;
    }

    }