@charset "UTF-8";

/* ====================
common
======================= */
html {
    font-size: 62.5%;
}

body {
    font-family: "YuMincho", "Yu Mincho", "游明朝体", serif;
    color: #231815;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #FFFDF6;
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.topic {
    color: #231815;
    font-family: Georgia;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.88px;
}

.section {
    margin-top: 110px;
}

.topic__center {
    text-align: center;
    margin-top: 50px;
}

/* フェードイン */
.fade {
    opacity: 0;
    transition: 2s;
}

.fadein {
    opacity: 1;
    transform: translateY(0);
}


.fadein__txt {
    opacity: 1;
}


/* common pc */
@media screen and (min-width:1025px) {

    .topic {
        color: #231815;
        font-family: Georgia;
        font-size: 5.5rem;
        letter-spacing: 8.25px;
    }

    .section {
        margin-top: 180px;
    }

    .topic__left {
        margin-left: 0;
    }

    .topic__center {
        text-align: center;
        margin-top: 0;
    }
}

/* ロゴのフェードイン */

.start {
    background:#FFFDF6;
    position: fixed;
    top: 0;
    left: 0;
    height: 100lvh;
    width: 100%;
    z-index: 999999;
}

.start p {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
    width: 280px;
}



/* ====================
hedder
======================= */

.header {
    position: absolute;
    width: 100%;
    padding: 34px 7vw;
    box-sizing: border-box;
}

.header__container {
    display: flex;
    align-items: center;
}

.header__topic{
    position: relative;
    z-index: 1;
    margin-right: auto;
}


.header__insta{
    z-index: 1;
    margin-right: 70px;
}

.logo-pc {
    display: none;
}

/* .navの初期表示 */

.nav {
    background: #FFFDF6;
    width: 100%;
    height: 100vh;
    padding: 34px 9.3%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100; 
    transition: .8s;
    opacity: 0;
    z-index: 99990;
    visibility: hidden;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav__item {
    color: #231815;
    font-family: Georgia;
    font-size: 2.4rem;
    letter-spacing: 0.96px;
    margin-top: 25px;
}

.nav__item:first-of-type {
    margin-top: 40px;
}

.nav.active {
    opacity: 1;
    visibility: initial;
}

.nav-reserve {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background: #231815;
    color: #FFFDF6;
    margin-top: 40px;
    font-size: 1.4rem;
    letter-spacing: 0.7px;
    border-radius: 20px;
}

.nav-reserve a {
    border-bottom: 1px solid #FFFDF6;
    font-size: 16px;
}

.nav-reserve p {
    margin-right: 15px;
}


/* btnの動き */
.btn-trigger {
    position: fixed;
    top: 35px;
    right: 7vw;
    background: rgba(0, 0, 0, 0.2);
    width: 37px;
    height: 20px;
    cursor: pointer;
    z-index: 99999;
}

#btn.active {
    background: none;
}

.btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FFFDF6;
}

.btn-trigger,
.btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
    mix-blend-mode: difference;
}

.btn-trigger span:nth-of-type(1) {
    top: 0;
}

.btn-trigger span:nth-of-type(2) {
    top: 9px;
}

.btn-trigger span:nth-of-type(3) {
    bottom: 0;
}

#btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(9.5px)rotate(-45deg);
    transform: translateY(9.5px)rotate(-45deg);
}

#btn.active span:nth-of-type(2) {
    opacity: 0;
    background-color: #231815;

}

#btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9.5px)rotate(45deg);
    transform: translateY(-9.5px)rotate(45deg);
}


/* header pc */

@media screen and (min-width: 1025px) {
    .header {
        padding: 0;
    }

    .header__container {
        max-width: 1280px;
        padding: 44px 4.7%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__insta{
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
        visibility: visible;
        opacity: 1;
    }

    .nav__topic {
        display: none;
    }

    .nav__list {
        display: flex;
        align-items: center;
        margin-top: 0;
    }

    .nav__header {
        display: none;
    }

    .nav__item {
        color: #FFFDF6;
        font-family: Georgia;
        font-size: 1.6rem;
        letter-spacing: 0.64px;
        margin-top: 0;
        margin-left: 52px;
    }

    .nav__item:first-of-type {
        margin-top: 0;
    }

    .nav__item:last-of-type {
        color: #231815;
        padding: 9px 12px;
        background: #FFFDF6;
        border-radius: 50px;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-reserve {
        display: none;
    }

    .content__btn {
        display: none;
    }

    .logo-sp {
        display: none;
    }

    .logo-pc {
        display: block;
        width: 202px;
    }
}


/* ====================
mv
======================= */


.top__pc {
    display: none;
}    

.article__header {
    position: relative;
    min-height: 100lvh;
    object-fit: cover;
}

.top__sp img{
    opacity: 0.5;
}

.article__header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100lvh;
    background: rgba(0, 0, 0, 0.4);
    display: block;
}

.top__logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 280px;
}

/* mv pc */
@media screen and (min-width: 1025px) {
    
    .top__pc{
        display: block;
    }

    .top__sp{
        display: none;
    }

}


/* ====================
about
======================= */

.section--about {
    position: relative;
    padding-bottom: 150px;
    overflow: hidden;
}

.section--about::before {
    background-image: url(../images/mangestu.webp);
    content: '';
    display: block;
    width: 100%;
    height: 60%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -30%;
    bottom: -2%;
    z-index: 0;
    opacity: 0.4;
}

.about__img {
    position: relative;
    margin-top: 30px;
}


.about__txt {
    position: relative;
    z-index: 10;
    padding: 0 10.6%;
    margin-top: -20px;
}

.maincaption {
    margin-top: 35px;
}

.maincaption__txt {
    font-size: 2rem;
    line-height: 2.5;
}

.maincaption__span {
    display: inline-block;
    margin-top: 15px;
    font-size: 1.6rem;
    line-height: 2.5;
    letter-spacing: 0.8px;
}

.mainImg-sp img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.about-pc {
    display: none;
}

/* about pc */
@media screen and (min-width:1025px) {

    .about__img {
        margin-top: 0;
        z-index: 1;
        width: 50%;
    }

    .section--about::before {
        background-image: url(../images/mangestu.webp);
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        left: auto;
        bottom: auto;
        top: 0;
        right: -45%;
        opacity: 0.27;
        z-index: -1;
    }


    .about-sp {
        display: none;
    }

    .about-pc {
        display: block;
        width: 100%;
        height: 100vh;
        object-fit: cover;

    }

    .about {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
    }

    .about__txt {
        width: 50%;
        padding: 0 7.15%;
        margin-top: 0;
    }

    .maincaption {
        margin-top: 70px;
    }

    .maincaption__txt {
        font-size: 2.8rem;
    }

    .maincaption__span {
        display: inline-block;
        margin-top: 50px;
        font-size: 1.6rem;
        line-height: 2.5;
        letter-spacing: 0.8px;
    }

}

/* ====================
menu
======================= */
/* スライドショー */

.section--menu {
    margin-top: 0;
    padding-top: 0;
}


.menu__slider_pc {
    display: none;
}

.menu__slider_sp {
    width: 100%;
    height: 75vw;
    min-height: 300px;
}


.slider {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    width: 50vw;
}

.slider img {
    height: 100lvh;
    object-fit: cover;
}

.menu__slider_pc {
    display: none;
}


.tab-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
    margin-top: 25px;
    background-color: #FFFDF6;
}

.tab {
    text-align: center;
    width: 140px;
    height: 48px;
    letter-spacing: 0.56px;
    border: 1px solid rgba(35, 24, 21, 0.2);
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 20px;
    transition: .3s ease-in-out;
}

div .tab:hover {
    cursor: pointer;
    border: 1px solid #231815;
}

.menu__caption {
    font-size: 1.6rem;
    line-height: 2.5;
    letter-spacing: 0.8px;
    padding: 0 10.6%;
    margin-top: 35px;
}

/* menuのコンテンツ */
.content-container {
    padding: 0 10.6%;
    margin-top: 36px;
}

.detail__category {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.64px;
    height: auto;
    padding: 35px 0;
    margin: 0 auto;
    border-top: 1px solid #231815;
    border-bottom: 1px solid #231815;
}

.tab.active {
    border: 1px solid rgba(35, 24, 21, 1);
    transition: all .5s;
}

.content {
    display: none;
}

.content.show {
    display: block;
}

/* nameとtasteとpriceの横並び */
.item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    height: auto;
    padding: 16px 0;
    border-bottom: 1px solid #D9D9D9;
}

.item__name {
    width: 40%;
    font-size: 1.6rem;
    letter-spacing: 0.64px;
}

.plice {
    width: 59px
}

/* taseteとpriceの横並び */
.variant {
    flex-grow: 1;
    display: flex;
    gap: 5px;
}

.variant .taste {
    width: 73px;
}

.notice {
    margin-top: 12px;
    line-height: 2;
    padding: 0 10.6%;
}



/* menu pc */

@media screen and (min-width:1025px) {
    .menu {
        display: flex;
        flex-direction: row-reverse;
    }

    .slider {
        position: static;
        width: 100%;
        height: auto;
    }

    .slider img {
        height: auto;
    }


    .menu__slider_pc {
        display: block;
        width: 100%;
    }

    .menu__slider_sp {
        display: none;
    }

    .menu__txt {
        width: 50%;
        padding: 0 7.15%;
    }

    .menu__caption {
        padding: 0;
        font-size: 1.6rem;
        line-height: 2.5;
        letter-spacing: 0.8px;
        margin-top: 100px;
    }

    .tab-container {
        gap: 15px;
        padding: 30px 0 10px;
        position: sticky;
        top: 0;
        left: 0;
        z-index: 10;
    }

    .notice {
        font-size: 1.2rem;
        line-height: 1.6;
        letter-spacing: 0.48px;
        padding: 0;
    }
}



/* ====================
instagram
======================= */
.es-widget-rating-container {
    font-size: 1.4rem;
    color: #231815;
}

/* ====================
reserve
======================= */
.section--reserve {
    position: relative;

}


.reserve img {
    width: 100lvw;
    height: 353px;
    object-fit: cover;
    filter: brightness(0.7);
}

.reserve-detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFDF6;
    border: 1px solid #FFF;
    width: 88%;
    padding: 30px 12%;
    text-align: center;
}

.topic-reserve {
    color: #FFFDF6;
    text-align: center;
}

.reserve__txt {
    color: #FFFDF6;
    text-align: center;
}

.reserve-detail p {
    margin-top: 10px;
}

.reserve-detail a {
    display: inline-block;
    color: #FFFDF6;
    margin-top: 5px;
    font-size: 2.5rem;
    letter-spacing: 1px;
    border-bottom: solid 1px #FFFDF6;
}

/* reserve pc */
@media screen and (min-width:1025px) {
    .reserve__txt {
        font-size: 1.6rem;
        margin-top: 50px;
    }

    .reserve-detail a {
        font-size: 4rem;
        margin: 5px auto 0;

    }

    .reserve-detail p {
        font-size: 1.6rem;
        margin-top: 15px;
    }
}

/* ====================
shop info
======================= */
.topic__shopinfo {
    padding: 0 10.6%;
}

.map {
    width: 100lvw;
    margin-top: 35px;
}

.shopinfo__detail {
    max-width: 800px;
    padding: 0 10.6%;

}

.shop__name {
    font-size: 2rem;
    margin-top: 51px;
}

.directions {
    margin-top: 21px;
}

.directions__item {
    margin-top: 17px;
    display: flex;
}

.directions__item:first-of-type {
    margin-top: 35px;
}

.directions__dt {
    font-weight: 600;
    letter-spacing: 0.7px;
    width: 100px;
}

.directions__dd {
    width: 70%;
}

/* shop info pc */
@media screen and (min-width:1025px) {

    .topic__shopinfo {
        text-align: center;
    }

    .map {
        margin-top: 0;
        width: 70%;
        height: 600px;
    }

    .shopinfo {
        display: flex;
        gap: 10%;
        align-items: start;
        padding: 0 7.15%;
        margin-top: 100px;
    }

    .shopinfo__detail {
        width: 48vw;
        max-width: 800px;
        padding: 0;
    }

    .shop__name {
        font-size: 2.5rem;
        margin-top: 0;
    }

    .directions__item {
        font-size: 1.6rem;
    }

    .directions__dt {
        width: 150px;
    }
}


/* ====================
foater
======================= */
.footer {
    margin-top: 80px;
    padding: 45px 20%;
    background-color: #231815;
}

.footer__menu{
    display: none;
}

.footer__topic {
    margin: 0 auto;
    width: 97px;
    height: 22px;
}


.menu__list {
    text-align: center;
    margin-top: 41px;
}

.menu__item {
    color: #FFFDF6;
    font-family: Georgia;
    font-size: 2rem;
    letter-spacing: 0.8px;
    margin-top: 18px;
}

.pagetop {
    text-align: center;
    margin-top: 25px;
}

.pagetop__img {
    width: 15px;
    height: 10px;
}

.pagetop__txt {
    color: #FFFDF6;
    font-family: Georgia;
    font-size: 1.2rem;
    margin-top: 9px;
}

.coppy {
    color: #FFFDF6;
    font-family: Georgia;
    font-size: 1.2rem;
    letter-spacing: 0.6px;
    margin-top: 17px;
    text-align: center;

}

/* footer pc */
@media screen and (min-width:1025px) {


    .footer {

        margin-top: 180px;
        padding: 150px 10% 86px;
    }
    
    .footer__menu{
        display: block;
    }
    
    .footer__topic {
        margin: 0 auto;
        width: 150px;
        height: auto;
    }


    .footer__group {
        max-width: 1280px;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }


    .menu__list {
        display: flex;
        align-items: center;
        margin-top: 0;
    }

    .menu__item {
        font-size: 1.4rem;
        margin-top: 0;
        flex-grow: 1;
        margin-left: 38px;
    }

    .spbutton {
        display: none;
    }

    .logo-sp {
        display: none;
    }

    .coppy {
        font-size: 1.4rem;

        margin-top: 130px;
        text-align: start;
    }
}





.slider {
    position: sticky;
    top: 0;
    left: 0;
    height: 100lvh;
    width: 40%;
}

.slider img {
    height: 100lvh;
    object-fit: cover;
}

.menu__slider_sp {
    display: none;
}

@media (max-width: 1025px) {
    .menu {
        display: block;
    }

    .slider {
        position: static;
        width: 100%;
        height: auto;
    }

    .slider img {
        height: auto;
    }

    .menu__slider_sp {
        display: block;
    }

    .menu__slider_pc {
        display: none;
    }
}



.slider {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    width: 50%;
}

.slider img {
    height: 100vh;
    object-fit: cover;
}

.menu__slider_sp {
    display: none;
}

@media (max-width: 1025px) {
    .menu {
        display: block;
    }

    .slider {
        position: static;
        width: 100%;
        height: auto;
    }


    .menu__slider_sp {
        display: block;
    }

    .menu__slider__pc {
        display: none;
    }
    
}

.top__pc{
    width: 100%;
}

.menu__slider_sp img {
    height: auto!important;
}