@charset "UTF-8";
html {
    font-size: 62.5%;
    width: 100%;
}

body {
    font-family: "Roboto Mono", monospace;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    line-height: 3rem;
    font-weight: 500;
    color: #371f1f;
    text-align: left;
    margin: 0 auto;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    width: 100%;
    vertical-align: bottom;
}

ul {
    list-style: none;
}

a {
    color: #371f1f;
    text-decoration: none;
}

.footer {
    background-color: #371f1f;
    color: #fff;
    padding: 20px 0;
}
@media screen and (min-width: 640px) {
    .footer {
        display: flex;
        flex-direction: column;
    }
}
.footer__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 640px) {
    .footer__wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
        max-width: 680px;
    }
}
.footer__menu--list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}
@media screen and (min-width: 640px) {
    .footer__menu--list {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-end;
    }
}
@media screen and (min-width: 640px) {
    .footer__menu--list li {
        margin-right: 40px;
    }
    .footer__menu--list li:last-child {
        margin-right: 0;
    }
}
.footer__menu--list li a {
    color: #fff;
    font-size: 1.4rem;
}
.footer__sns-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    margin: 30px 0 15px;
}
@media screen and (min-width: 640px) {
    .footer__sns-links {
        justify-content: flex-end;
    }
}
.footer__sns-links li {
    margin-right: 30px;
}
@media screen and (min-width: 640px) {
    .footer__sns-links li {
        justify-content: flex-end;
        margin-right: 40px;
    }
}
.footer__sns-links li:last-child {
    margin-right: 0;
}
@media screen and (min-width: 640px) {
    .footer__sns-links li a {
        display: inline-block;
        width: 30px;
    }
    .footer__sns-links li a img {
        width: 100%;
    }
}
.footer__sns-links li .sns-btn {
    width: 30px;
    height: 30px;
}
.footer .copyright {
    font-size: 1.2rem;
    text-align: center;
}

.header {
    height: 60px;
    width: 100%;
    background-color: #371f1f;
    margin: 0 auto;
    position: fixed;
    z-index: 1000;
}
.header__wrapper {
    height: 60px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__wrapper .logo {
    width: 120px;
    margin-left: 25px;
}

.drawer_open {
    display: none;
}

.drawer_hidden {
    display: none;
}

@media screen and (max-width: 639px) {
    .drawer_open {
        z-index: 100;
        width: 45px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 15px;
        top: 0px;
        cursor: pointer;
    }
    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after {
        content: "";
        display: block;
        height: 3px;
        width: 25px;
        background-color: #8dbb48;
        border-radius: 10px;
        transition: 0.5s;
        position: absolute;
    }
    .drawer_open span:before {
        bottom: 8px;
    }
    .drawer_open span:after {
        top: 8px;
    }
    #drawer_input:checked ~ .drawer_open span {
        background: rgba(108, 179, 56, 0);
    }
    #drawer_input:checked ~ .drawer_open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #drawer_input:checked ~ .drawer_open span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    .nav_content {
        background-color: #371f1f;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        position: fixed;
        bottom: 100%;
        left: 0%;
        z-index: 99;
        transition: 0.3s;
        text-align: center;
        padding-top: 60px;
    }
    .menu-list {
        list-style: none;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .menu-item {
        margin-bottom: 15px;
    }
    .menu-item a {
        display: inline-block;
        padding: 15px;
        font-size: 1.6rem;
        font-weight: bold;
        color: #fff;
        text-align: center;
        box-sizing: border-box;
        text-decoration: none;
    }
    .sns-links {
        margin: 0 auto 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        width: 50%;
    }
    .sns-links li {
        margin: 0 auto;
    }
    .sns-links li .sns-btn {
        width: 30px;
        height: 30px;
    }
    .nav__Reservation-btn {
        background-color: #8dbb48;
        border-radius: 300px;
        max-width: 250px;
        margin: 0 auto;
    }
    .nav__Reservation-btn .Reservation-btn {
        display: block;
        font-size: 1.6rem;
        font-size: 16px;
        line-height: 1.25;
        font-weight: bold;
        color: #371f1f;
        padding: 15px;
    }
    #drawer_input:checked ~ .nav_content {
        bottom: 0;
    }
}
@media screen and (min-width: 640px) {
    #header {
        position: fixed;
    }
    .nav_content {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    .menu-list {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    .menu-item {
        margin-left: 50px;
    }
    .menu-item a {
        font-size: 1.4rem;
        font-weight: 400;
        text-align: center;
        color: #fff;
    }
    .sns-links {
        margin: 0 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .sns-links li {
        margin-right: 50px;
    }
    .sns-links li:last-child {
        margin-right: 0;
    }
    .sns-links li .sns-btn {
        width: 30px;
        height: 30px;
    }
}
@media screen and (min-width: 640px) {
    .nav__Reservation-btn {
        width: 200px;
        height: 60px;
        background-color: #8dbb48;
        color: #371f1f;
        display: inline;
    }
    .nav__Reservation-btn .Reservation-btn {
        font-size: 14px;
        line-height: 2;
        font-size: 1.4rem;
        text-align: center;
        display: block;
    }
    .nav__Reservation-btn .Reservation-btn:hover {
        background-color: #371f1f;
        height: 60px;
        color: #fff;
    }
}
.content__wrapper {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
}
@media screen and (min-width: 640px) {
    .content__wrapper {
        max-width: 960px;
    }
}

.Menu {
    padding-top: 120px;
    margin: 0 auto;
    width: 100%;
}
@media screen and (min-width: 640px) {
    .Menu {
        padding-top: 140px;
    }
}
.Menu .sec-title {
    margin: 0 auto 60px;
}
.Menu .sec-title--en {
    background-repeat: no-repeat;
    background-position: center;
    height: 8vh;
    background-image: url(/assets/img/Menu-g.svg);
    height: 6vh;
}
@media screen and (min-width: 640px) {
    .Menu .sec-title--en {
        height: 10vh;
    }
}
.Menu .sec-title--ja {
    font-size: 1.4rem;
    margin: 5px auto 30px;
    text-align: center;
    color: #8dbb48;
    text-align: center;
    margin-bottom: 20px;
}
@media screen and (min-width: 640px) {
    .Menu .sec-title--ja {
        font-size: 1.4rem;
        margin: 15px auto 25px;
        color: #8dbb48;
        margin-bottom: 60px;
    }
}

.attention {
    text-align: center;
    margin-bottom: 60px;
}

.sp-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
    margin: 0 auto 50px;
}
.sp-btn .btn {
    width: 48%;
    padding: 10px;
    background: #f1efef;
    border: 2px solid #371f1f;
    border-radius: 99px;
    text-align: center;
    margin-bottom: 0;
}
.sp-btn .btn a {
    font-size: 1.4rem;
    line-height: 1;
}
@media screen and (min-width: 640px) {
    .sp-btn {
        display: none;
    }
}

.Menu-price__group {
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
}
.Menu-price__group .category__title {
    background-color: #f1efef;
    text-align: center;
    padding: 13px 0;
    font-size: 1.8rem;
    font-weight: bold;
}
.Menu-price__group .Menu-price__content {
    margin-top: 15px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #371f1f;
    margin-bottom: 20px;
}
.Menu-price__group .Menu-price__content:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}
.Menu-price__group .Menu-price__content .Menu__title {
    font-size: 1.6rem;
    font-weight: bold;
}
.Menu-price__group .Menu-price__content .Menu__title .shop::after {
    background-color: #8dbb48;
    content: "伊勢店のみ";
    color: #fff;
    margin-left: 20px;
    padding: 0 5px;
    font-size: 1.3rem;
    font-weight: normal;
    border-radius: 2px;
}
.Menu-price__group .Menu-price__content .Menu__title.option-menu {
    margin-top: 25px;
}
.Menu-price__group .Menu-price__content .discount-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
}
.Menu-price__group .Menu-price__content .discount-item .description {
    text-align: right;
    justify-content: flex-end;
    width: 20%;
}
.Menu-price__group .Menu-price__content .discount-item .description.rows {
    width: 25%;
}
.Menu-price__group .Menu-price__content .Menu__price--list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
    font-size: 14px;
    line-height: 2.2857142857;
}
.Menu-price__group .Menu-price__content .Menu__price--list .Menu-name {
    width: 55%;
    font-weight: 500;
}
.Menu-price__group .Menu-price__content .Menu__price--list .Menu-name.short {
    width: 30%;
}
.Menu-price__group .Menu-price__content .Menu__price--list .note,
.Menu-price__group .Menu-price__content .Menu__price--list .discount {
    width: 25%;
    text-align: right;
}
.Menu-price__group .Menu-price__content .Menu__price--list .price {
    width: 20%;
    text-align: right;
}
.Menu-price__group .Menu-price__content .text {
    font-size: 1.2rem;
    margin-top: 10px;
}

@media screen and (min-width: 640px) {
    .Menu-price__group {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    .Menu-price__group--left,
    .Menu-price__group--right {
        width: 48%;
    }
    .Menu-price__group .category__title {
        padding: 20px 0;
        font-size: 2.4rem;
    }
    .Menu-price__group .Menu-price__content {
        margin-top: 20px;
    }
    .Menu-price__group .Menu-price__content .Menu__title {
        font-size: 1.8rem;
    }
    .Menu-price__group .Menu-price__content .description {
        font-size: 1.4rem;
    }
    .Menu-price__group .Menu-price__content .Menu__price--list {
        font-size: 16px;
        line-height: 2;
    }
    .Menu-price__group .Menu-price__content .Menu__price--list .Menu-note {
        font-size: 1.6rem;
    }
    .Menu-price__group .Menu-price__content .text {
        font-size: 1.4rem;
    }
}
.Menu__note {
    margin-bottom: 80px;
    background-color: #f1efef;
    border-radius: 5px;
    padding: 30px 20px;
}
.Menu__note--title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.Menu__note--content li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 2.2857142857;
    list-style: none;
}
.Menu__note--content li::before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: #371f1f;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}

@media screen and (min-width: 640px) {
    .Menu__note {
        margin-bottom: 100px;
        padding: 40px;
    }
    .Menu__note--title {
        font-size: 1.8rem;
    }
    .Menu__note--content li {
        font-size: 16px;
        line-height: 2;
    }
}
