@charset "UTF-8";
/*==============================================================================
1.共通事項
2.header
3.footer
4.下層
5.パンクズ
6.404ページ
7.ポップアップ
8.order 予約について
==============================================================================*/

/*============================================================================================================================================================
==============================================================================================================================================================

	1.共通事項

==============================================================================================================================================================
============================================================================================================================================================*/
html {
    font-size: 10px;
}

body {
    min-width: var(--max-width);
    font-size: var(--fontsize-base);
    font-family: var(--font-base);
    color: var(--color-font);
    letter-spacing: var(--letter-spacing);
    line-height: var(--lingh-height);
}

#bodywrap {
    overflow: hidden;
}

.inner {
    margin: 0 auto;
    width: var(--min-width);
}

.inner-pc {
    margin: 0 auto;
    width: var(--min-width);
}

/*============ リンク ============*/
a {
    font-family: var(--font-base);
    color: var(--color-sub);
    transition: 500ms;

    &:hover {
        opacity: 0.6;
        color: var(--color-sub);
    }

    &[href^="tel:"] {
        pointer-events: all;
    }
}
@media all and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/*============ フォント ============*/
[lang="en"] {
    font-family: var(--font-base);
}

/*============ selection ============*/
::selection {
    background: var(--color-sub);
    color: var(--color-font);
}

/*============ list-disc ============*/
ul.list-disc li {
    position: relative;
    padding-left: 1em;

    &::before {
        content: "";
        width: 0.3em;
        aspect-ratio: 1 / 1;
        position: absolute;
        left: 0;
        top: 0.9em;
        background-color: var(--color-font);
        border-radius: 100%;
    }
}


/*============ flex-wrap ============*/
.flex-wrap {
    display: flex;
}


/*============ indent ============*/
.indent {
    text-indent: -1em;
    margin-left: 1em;
}


/*============ ボタン ============*/
.button {
    width: 320px;
    max-width: 100%;
    padding: 15px 35px 17px;
    display: inline-block;
    text-align: center;
    font-size: 1.6rem;
    font-family: var(--font-base);
    font-weight: var(--weight-bold);
    color: #fff;
    background-color: var(--color-sub);
    border-radius: 60px;
    line-height: 1.6;
    position: relative;
    transition: 500ms;

    &::after {
        content: "";
        display: block;
        position: absolute;
    }

    &::after {
        width: 10px;
        height: 10px;
        top: 50%;
        right: 24px;
        border-bottom: 2px solid var(--color-font);
        border-right: 2px solid var(--color-font);
        transform: translateY(-50%) rotate(-45deg);
    }

    /* ========== ボタン 左向き ========== */
    &.left {
        &::after {
            left: 24px;
            right: unset;
            transform: translateY(-50%) rotate(-225deg);
        }
    }

    &:hover {
        opacity: 0.6;
        color: #fff;
    }

    /* ========== ボタン 白 ========== */
    &.white {
        background-color: #fff;
        color: var(--color-font);
        border: 1px solid #000;
    }

    /* ========== ボタン 黒 ========== */
    &.black {
        background-color: #000;

        &::after {
            border-color: #fff;
        }
    }

    /* ========== ボタン 茶色 ========== */
    &.brown {
        background-color: var(--color-font);

        &::after {
            border-color: #fff;
        }
    }

    /* ========== ボタン 別窓 ========== */
    &.window {
        &::after {
            right: 16px !important;
            width: 16px;
            height: auto;
            aspect-ratio: 1 / 1;
            background-color: transparent;
            background-image: url(../1_img/base/icon-window.svg);
            clip-path: unset;
            border: none;
            transform: translateY(-50%);
            background-size: 100% auto;
        }

        /* ========== ボタン 別窓 白 ========== */
        &.window-white::after {
            background-image: url(../1_img/base/icon-window-white.svg);
        }
    }
}

@media all and (min-width: 769px) {
    &.button {
        padding: 20px 0;
        line-height: 1;
    }
}


/*================================   吹き出し   ================================*/
.fukidashi {
    text-align: center;

    & span {
        padding: 0 40px;
        display: inline-block;
        position: relative;
        font-family: var(--font-sub);
        font-size: 1.8rem;
        font-weight: var(--weight-bold);

        &::before,
        &::after {
            content: "";
            position: absolute;
            bottom: 10px;
            width: 40px;
            height: 2px;
            background:
                radial-gradient(circle at 1px 1px,
                    var(--color-font) 0 1px,
                    transparent 1px);
            background-size: 4px 2px;
            /* 間隔 */
            background-repeat: repeat-x;
        }

        &::before {
            left: 0;
            transform: rotate(65deg);
        }

        &::after {
            right: 0;
            transform: rotate(115deg);
        }
    }
}

/*================================    bg-img   ================================*/
.bg-img {
    background: var(--bg-img);
}


/*================================    inner内に入れても画面100%にする   ================================*/
.inner-100vw {
    width: 100vw;
    transform: translateX(calc((-100vw + var(--min-width)) / 2));
}

@media all and (max-width: 980px) and (min-width: 769px) {

    /* max-widthの値はvar(--min-width)と同じ */
    .inner-100vw {
        width: 100%;
        transform: translateX(0);
    }
}

@media all and (max-width: 768px) {
    .inner-100vw {
        width: calc(100% + 40px);
        transform: translateX(-20px);
    }
}

/*================================    clearfix   ================================*/
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/*================================    表示・非表示   ================================*/
@media all and (min-width: 769px) {
    .only-sp {
        display: none !important;
    }
}

@media all and (max-width: 768px) {
    .only-pc {
        display: none !important;
    }
}


/*================================    スマホ   ================================*/
@media all and (max-width: 768px) {
    body {
        min-width: auto;
    }

    .inner {
        margin: auto;
        padding: 0 20px;
        width: 100%;
    }

    .inner-pc {
        margin: auto;
        padding: 0;
        width: 100%;
    }
}

/*================================    スライダーのチラ見え防止   ================================*/
.slider {
    visibility: hidden;
    opacity: 0;
}

.slider.slick-initialized {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/*================================    カルーセルのチラ見え防止   ================================*/
.carousel-wrap .carousel {
    display: none;
}

/*================================    ローディングアニメーション   ================================*/

/* https://www.t-web.co.jp/blog/page-move-animation/ */
.md_transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    transition: transform 0.8s cubic-bezier(.39, .575, .565, 1) 0.8s;
    /* ここの最後の0.8sを増減するとアニメーションの開始タイミングを変更できます */
    z-index: 999999;
}

.md_transition::before {
    background: linear-gradient(0deg, hsla(0, 77%, 66%, 0), var(--color-main) 33.33333%, var(--color-main) 66.66667%, hsla(0, 0%, 100%, 0));
    content: "";
    display: block;
    width: 100%;
    height: 300%;
    position: absolute;
    left: 0;
    top: -100%;
    z-index: 1;
}

body.is_remove .md_transition {
    -webkit-animation: maskCloseTransition .8s cubic-bezier(.47, 0, .745, .715) 0s 1 forwards;
    animation: maskCloseTransition .8s cubic-bezier(.47, 0, .745, .715) 0s 1 forwards;
}

body:not(.is_fade) .md_transition {
    transform: translateY(-200%);
}

@-webkit-keyframes maskCloseTransition {
    0% {
        transform: translateY(200%);
    }

    to {
        transform: translate(0);
    }
}

@keyframes maskCloseTransition {
    0% {
        transform: translateY(200%);
    }

    to {
        transform: translate(0);
    }
}

/* ========== ローディングのアイコンの設定 ========== */
.md_icon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: url(../1_img/base/logo-loading.svg) no-repeat center / 250px auto;
    transition: 800ms;
    z-index: 999999;
    pointer-events: none;
}

body:not(.is_fade) .md_icon {
    opacity: 0;
}

body.is_remove .md_icon {
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(.39, .575, .565, 1) 0.8s;
}

/*============================================================================================================================================================
==============================================================================================================================================================

	2.header

==============================================================================================================================================================
============================================================================================================================================================*/
@media (min-width: 769px) {
    .underlayer header{
        opacity: 1;
        transform: translateY(0);

        & .sns {
            pointer-events: all;
        }
    }

    header {
        width: 100%;
        height: 80px;
        position: fixed;
        top: 0;
        left: 0;
        transition: 500ms;
        transform: translateY(-100%);
        z-index: 9999;
        background-color: #fff;
        box-shadow: -14px 3px 14px 0px rgba(48, 48, 48, 0.1);
        opacity: 0;
        transition: 800ms;

        &.fix {
            opacity: 1;
            transform: translateY(0);

            & .sns {
                pointer-events: all;
            }
        }

        & .header-inner {
            height: 100%;
            margin: 0 auto;
            padding: 0 100px 0 20px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        & .sns {
            position: absolute;
            top: calc(100% + 20px);
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            pointer-events: none;
        }
    }

    /* ========== ロゴの周り logo-wrap ========== */
    header .logo-wrap {
        display: flex;
        align-items: center;
        gap: 0 20px;

        & .logo {
            margin: 20px 0;
            width: 248px;
            aspect-ratio: 160 / 38;
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-image: url(../1_img/base/logo.svg);
            transition: 500ms;

            &:hover {
                opacity: 0.6;
            }

            & a {
                width: 100%;
                height: 100%;
                display: block;
                font-size: 0;
                color: transparent;
            }
        }

        & p:not(.logo) {
            display: none;
        }
    }

    /* ========== navの設定 ========== */
    header .nav-wrap {
        display: flex;
        align-items: center;

        & nav {
            height: 100%;
        }
    }

    /* ========== ベースメニュー ========== */
    header .nav-wrap nav ul.nav-menu-base {
        display: flex;
        gap: 0 60px;

        &>li {
            transition: 500ms;

            &.current,
            &:hover {
                &>a {
                    color: var(--color-main);
                }
            }

            &>a {
                padding-top: 42px;
                display: block;
                position: relative;
                color: var(--color-font);
                font-weight: var(--weight-bold);
                opacity: 1;
                transition: color 500ms;

                &::before,
                &::after{
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    aspect-ratio: 1 / 1;
                    background-size: 47px auto;
                    background-position: top center;
                    background-repeat: no-repeat;
                    transition: 500ms;
                }
                &::after{
                    z-index: 2;
                    opacity: 0;
                }

                &>span {
                    display: block;
                    text-align: center;

                    &[lang="ja"] {
                        font-size: 1.3rem;
                    }
                }
            }

            &.current a,
            &:hover a{
                &::before{
                    opacity: 0;
                }
                &::after{
                    opacity: 1;
                }
            }

            &.menu a {
                &::before{
                    background-image: url(../1_img/base/menu-menu_pc.svg);
                }
                &::after{
                    background-image: url(../1_img/base/menu-menu_on.svg);
                }
            }

            &.shop a {
                &::before{
                    background-image: url(../1_img/base/menu-shop_pc.svg);
                }
                &::after{
                    background-image: url(../1_img/base/menu-shop_on.svg);
                }
            }

            &.order a {
                &::before{
                    background-image: url(../1_img/base/menu-order_pc.svg);
                }
                &::after{
                    background-image: url(../1_img/base/menu-order_on.svg);
                }
            }

            &.recruit a {
                &::before{
                    background-image: url(../1_img/base/menu-recruit_pc.svg);
                }
                &::after{
                    background-image: url(../1_img/base/menu-recruit_on.svg);
                }
            }
        }
    }
}

@media (max-width: 980px) and (min-width: 768px) {
    header .logo-wrap .logo {
        width: 200px;
    }

    header .nav-wrap nav {
        & ul.nav-menu-base {
            gap: 0 25px;

            &>li {
                font-size: 1.2rem;
            }
        }
    }
}

/*==============================================================================

	header スマホ

==============================================================================*/
@media all and (max-width: 768px) {
    .menu_open{
        & header {
            background: rgb(255 255 255 / 0);

            & .logo-wrap,
            & .sns  {
                opacity: 0!important;
                pointer-events: none;
            }
        }
    }

    header {
        padding: 0 20px;
        width: 100%;
        height: 50px;
        position: fixed;
        top: -50px;
        left: 0;
        transition: 1000ms;
        z-index: 99999;
        transition: 800ms;
        background: rgb(255 255 255 / 0.7);

        & .header-inner {
            height: 100%;
        }

        & .sns {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: row;
            gap: 0 10px;
            opacity: 0;
            transition: 800ms;

            & img {
                width: 35px;
            }
        }

        &.fix {
            top: 0;

            & .logo-wrap,
            & .sns {
                opacity: 1;
            }
        }
    }
    .underlayer header{
        top: 0;

        & .logo-wrap,
        & .sns {
            opacity: 1;
        }
    }

    /* ========== ロゴの周り logo-wrap ========== */
    header .logo-wrap {
        height: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
        opacity: 0;
        transition: 800ms;

        & p:not(.logo) {
            display: none;
        }

        & .logo {
            width: 140px;
            aspect-ratio: 160 / 38;

            & a {
                width: 100%;
                height: 100%;
                display: block;
                position: relative;
                font-size: 0;
                color: transparent;
                background-size: 100% auto;
                background-repeat: no-repeat;
                background-image: url(../1_img/base/logo.svg);
                transition: 1000ms;
            }
        }
    }


    /* ========== navの設定 ========== */
    header .nav-wrap {
        width: 100%;
        height: 50px;
        position: fixed;
        bottom: 0;
        left: 0;
        transition: 800ms;
        z-index: 9999;
        background-color: var(--color-font);
        filter: drop-shadow(0px -5px 5px rgba(255, 255, 255, 0.2));
        padding: 0 10px;

        &::before {
            content: "";
            width: 85px;
            height: 21px;
            position: absolute;
            left: 50%;
            top: -20px;
            background: url(../1_img/base/deco-menu.svg);
            transform: translateX(-50%);
            filter: drop-shadow(0px -3px 2px rgba(255, 255, 255, 0.2));
        }
    }

    /* ========== ベースメニュー ========== */
    header nav {
        height: 100%;
    }

    header nav ul.nav-menu-base {
        height: 100%;
        display: flex;
        justify-content: space-around;

        /* crttentなしの設定 */
        &>li {
            width: calc(100% / 5);

            &>a {
                padding-top: 28px;
                padding-bottom: 5px;
                display: block;
                position: relative;
                font-size: 1rem;
                letter-spacing: 0.15em;
                text-align: center;
                background-size: 22px auto;
                background-position: top 7px center;
                background-repeat: no-repeat;
                color: #fff;

                &>span {
                    display: block;
                }
            }

            &.menu a {
                background-image: url(../1_img/base/menu-menu_sp.svg);
            }

            &.shop a {
                background-image: url(../1_img/base/menu-shop_sp.svg);
            }

            &.order a {
                background-image: url(../1_img/base/menu-order_sp.svg);
            }

            &.recruit a {
                background-image: url(../1_img/base/menu-recruit_sp.svg);
            }
        }

        /* crttent時の設定 */
        &>li.current {
            &>a {
                color: var(--color-main);
            }

            &.menu a {
                background-image: url(../1_img/base/menu-menu_on.svg);
            }

            &.shop a {
                background-image: url(../1_img/base/menu-shop_on.svg);
            }

            &.order a {
                background-image: url(../1_img/base/menu-order_on.svg);
            }

            &.recruit a {
                background-image: url(../1_img/base/menu-recruit_on.svg);
            }
        }
    }
}

/*==============================================================================

	big-menu

==============================================================================*/
/* ========== メニューの開閉ボタン ========== */
.nav-menu-base_menu {
    position: relative;
    z-index: 99999;
    cursor: pointer;

    & .menu-animation {
        position: absolute;
        width: 25px;
        height: 2px;
        top: calc(50% - 5px);
        left: 50%;
        transform: translate(-50%, -50%);

        &>span {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #fff;
            top: 0px;
            transition: 500ms;
            display: block;
        }

        &::before,
        &::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #fff;
            transition: 500ms;
        }

        &::before {
            top: -10px;
        }

        &::after {
            bottom: -10px;
        }
    }
}

.menu_open {
    & .menu-animation {
        &>span {
            opacity: 0;
        }

        &::before {
            top: 0px;
            transform: rotate(135deg);
            background-color: var(--color-main);
        }

        &::after {
            bottom: 0px;
            transform: rotate(-135deg);
            background-color: var(--color-main);
        }
    }
}

@media all and (min-width: 769px) {
    .nav-menu-base_menu {
        position: fixed;
        width: 40px;
        height: 40px;
        right: 20px;
        top: 20px;
        transform: translate(0);

        & .menu-animation {
            width: 100%;
            top: 50%;
            left: 0;
            transform: translateY(-50%);

            &>span,
            &::before,
            &::after {
                height: 4px;
                border-radius: 5px;
                background-color: var(--color-font);
            }

            &::before {
                top: -13px;
            }

            &::after {
                bottom: -14px;
            }
        }
    }

    .menu_open {
        & .menu-animation {
            &::before {
                top: -1px;
                transform: rotate(135deg);
                background-color: var(--color-main);
            }

            &::after {
                bottom: -1px;
                transform: rotate(-135deg);
                background-color: var(--color-main);
            }
        }
    }
}


/* ========== 開閉メニュー ========== */
#big-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 100%;
    height: calc(100dvh - 50px);
    display: flex;
    justify-content: center;
    align-items: start;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99998;
    background-color: #fff;
    overflow-y: scroll;
    transition: 800ms;

    & .inner {
        margin: 0;
        padding: 30px 50px;

        & .logo {
            text-align: center;

            & img {
                width: 176px;
            }
        }


        & .menu {
            margin-top: 35px;
            display: flex;
            flex-direction: column;
            gap: 15px;

            & .menu-right {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            & .menu-box {

                & .menu-title {
                    margin: 0 10px;
                    padding-left: 20px;
                    position: relative;

                    &::before {
                        content: "";
                        width: 8px;
                        aspect-ratio: 8 / 7;
                        position: absolute;
                        top: 50%;
                        left: 0;
                        transform: translateY(-50%);
                        background-image: url(../1_img/base/deco-onigiri.svg);
                        background-size: 100% auto;
                    }

                    & a {
                        color: var(--color-font);
                        font-weight: var(--weight-bold);
                    }
                }

                & ul {
                    margin-top: 7px;
                    padding: 20px 25px;
                    background-color: var(--color-accent);
                    border-radius: 10px;

                    & li {
                        text-indent: -1em;
                        margin-left: 1em;
                        font-weight: var(--weight-bold);

                        &::before {
                            content: "・";
                        }

                        & a {
                            color: var(--color-font);
                        }
                    }
                }
            }
        }

        & .others {
            margin-top: 30px;
            text-align: center;

            & .policy {
                & a {
                    color: var(--color-font);
                }
            }

            & .sns {
                margin-top: 15px;
                display: flex;
                justify-content: center;
                gap: 35px;
            }
        }
    }

    &.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
}

@media all and (min-width: 769px) {
    #big-menu {
        height: calc(100svh);
        align-items: center;

        & .inner {
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            flex-direction: row;
            gap: 40px 80px;

            & .logo {
                width: 275px;

                & img {
                    width: 100%;
                }
            }

            & .menu {
                margin-top: 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;

                & .menu-right {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                }

                & .menu-box {

                    &:first-child {
                        grid-column: 1;
                    }

                    & .menu-title {
                        margin: 0 20px;
                        padding-left: 20px;

                        &::before {
                            width: 11px;
                        }

                        & a {
                            font-size: 2rem;
                        }
                    }

                    & ul {
                        margin-top: 10px;
                        padding: 35px;

                        & li {
                            font-size: 1.5rem;

                            &+li {
                                margin-top: 10px;
                            }
                        }
                    }
                }
            }

            & .others {
                width: 100%;
                margin-top: 30px;
                display: flex;
                flex-direction: column;
                align-items: center;

                & .policy {
                    margin-top: 30px;
                    order: 2;
                }

                & .sns {
                    order: 1;
                    margin-top: 0;
                    gap: 50px;
                }
            }
        }
    }
}


/*============================================================================================================================================================
==============================================================================================================================================================

	3.footer

==============================================================================================================================================================
============================================================================================================================================================*/
.fix footer{
    & .to-media{
        opacity: 1;
        pointer-events: all;
    }
    & #page_top{
        opacity: 1;
        pointer-events: all;
    }
}

/*================================    footer   ================================*/
footer {
    margin-top: 0;
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: var(--color-font);
    background-image: url(../1_img/base/footer-bg_sp.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% 50px;
    color: #fff;

    & .to-media,
    & #page_top{
        position: fixed;
        opacity: 0;
        transition: 800ms;
        pointer-events: none;
        cursor: pointer;
        z-index: 999;
    }
    & .to-media{
        width: 65px;
        left: 10px;
        bottom: 60px;

        & img{
            width: 100%;
        }
    }
    & #page_top{
        padding-top: 10px;
        position: fixed;
        right: 10px;
        bottom: 60px;
        color: var(--color-main);
        font-size: 1.6rem;
        font-weight: var(--weight-bold);

        &::before{
            content: "";
            display: block;
            position: absolute;
            width: 10px;
            aspect-ratio: 1 / 1;
            top: 0;
            right: calc(50% - 8px);
            border-top: 2px solid var(--color-main);
            border-right: 2px solid var(--color-main);
            transform: translateX(-50%) rotate(-45deg);
        }
    }

    &  h2{
        text-align: center;

        & span{
            display: none;
        }
    }

    & .footer-content{
        margin-top: 40px;

        & .left{
            text-align: center;

            & .link{
                margin-top: 40px;
                text-align: center;

                & .button{
                    width: auto;
                    display: inline-block;
                    padding: 0 16px;
                    background: none;
                    font-family: var(--font-base);
                    font-weight: var(--weight-bold);
                    
                    &::before {
                        content: none;
                    }

                    &::after {
                        margin-top: 2px;
                        width: 10px;
                        height: 10px;
                        top: 50%;
                        right: 0;
                        border-right: 2px solid #fff;
                        border-bottom: 2px solid #fff;
                    }
                }
            }
        }
    }

    /*================================   copyright   ================================*/
    & #copyright {
        margin-top: 30px;
        text-align: center;
    }
}
/*===========================================================================================================================================================

	footer PC

===========================================================================================================================================================*/
@media all and (min-width: 769px) {
    /*================================    footer   ================================*/
    footer {
        margin-top: -30px;
        padding-bottom: 75px;
        background-image: url(../1_img/base/footer-bg_pc.png);
        background-size: 100% 100px;

        & .to-media{
            width: 80px;
            left: 30px;
            bottom: 30px;
        }
        & #page_top{
            padding-top: 13px;
            right: 30px;
            bottom: 30px;
            font-size: 2.2rem;

            &::before{
                width: 15px;
                right: calc(50% - 13px);
                border-top: 3px solid var(--color-main);
                border-right: 3px solid var(--color-main);
            }
        }

        &  h2{
            & img{
                width: 265px;
            }
        }

        & .footer-content{
            margin-top: 30px;
            display: flex;

            /*================================    left   ================================*/
            & .left{
                width: 50%;
                text-align: left;

                & address{
                    text-align: left;
                }

                & .link{
                    text-align: left;

                    & .button{
                        padding-left: 0;
                    }
                }
            }

            /*================================    right   ================================*/
            & .right{
                width: 50%;

                & nav{
                    padding-bottom: 20px;
                    border-bottom: 1px solid #fff;

                    & ul{
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: flex-end;
                        gap: 18px 0;

                        & li{
                            width: calc(100% / 4);

                            &.privacy{
                                font-size: 70%;
                            }

                            & a{
                                color: #fff;
                            }
                        }
                    }
                }

                & .sns{
                    margin-top: 35px;
                    padding: 0 15px;
                    display: flex;
                    gap: 0 45px;
                }
            }
        }

        /*================================   copyright   ================================*/
        & #copyright {
            margin-top: 80px;
        }
    }
}









/*============================================================================================================================================================
==============================================================================================================================================================

	4.下層

==============================================================================================================================================================
============================================================================================================================================================*/

/*================================   下層 title   ================================*/
#title {
    padding:50px 30px 35px;
    min-height: 260px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background-color: #fff;
    background-size: cover;
    background-position: center;

    &::after{
        content: "";
        width: 100%;
        height: 5px;
        position: absolute;
        left: 0;
        bottom: 35px;
        background-color: var(--color-main);
    }

    & .inner {
        padding: 0;
        margin: 0;
    }

    & .title-content {
        display: flex;
        flex-direction: column;
        align-items: center;

        & span {
            color: #fff;
            font-weight: var(--weight-bold);

            &[lang="ja"] {
                margin-top: 0px;
                font-size: 2.4rem;
                font-family: var(--font-sub);
                letter-spacing: 0.2em;
                line-height: 1.4;
            }

            &[lang="en"] {
                font-size: 1.2rem;
                letter-spacing: 0.2em;
                color: var(--color-main);
            }
        }
    }
}

/*================================   下層 title-lv2   ================================*/
.title-lv2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: var(--weight-bold);

    & span {
        display: block;
        font-family: var(--font-sub);

        &[lang="ja"] {
            line-height: 1.6;
        }

        &[lang="en"] {
            margin-top: 10px;
            font-size: 1.4rem;
            font-family: var(--font-base);
            color: var(--color-main);
            line-height: 1;
        }
    }
}

/*================================   下層 title-lv3   ================================*/
.title-lv3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: var(--weight-bold);
    font-family: var(--font-sub);

    & span {
        min-width: 170px;
        padding: 0 10px;
        display: inline-block;
        border-bottom: 1px solid var(--color-font);
    }
}

/*================================   下層 content   ================================*/
.underlayer .content {
    padding: 50px 0;

    &>section+section {
        margin-top: 55px;
    }
}

/*==========================================================================================================================================================

	下層 PC

==========================================================================================================================================================*/
@media all and (min-width: 769px) {

    /*================================   title   ================================*/
    #title {
        padding:100px 30px 55px;
        height: 415px;

        &::after{
            height: 10px;
            bottom: 45px;
        }

        & .title-content {
            & span {
                &[lang="ja"] {
                    font-size: 3.4rem;
                }

                &[lang="en"] {
                    font-size: 1.4rem;
                }
            }
        }
    }

    /*================================   下層 title-lv2   ================================*/
    .title-lv2 {
        margin-bottom: 70px;
        font-size: 3rem;

        & span {

            &[lang="en"] {
                font-size: 1.5rem;
            }
        }
    }

    /*================================   下層 content   ================================*/
    .underlayer .content {
        padding: 100px 0;

        &>section+section {
            margin-top: 100px;
        }
    }
}

/*============================================================================================================================================================
==============================================================================================================================================================

	5.パンクズ

==============================================================================================================================================================
============================================================================================================================================================*/
#pankuzu {
    padding-top: 15px;

    & ul {
        margin: auto;
        width: var(--min-width-s);
        display: flex;
        list-style: none;
        font-size: 1.4rem;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;

        & li {
            margin: 0;
            font-weight: var(--weight-bold);

            &:not(:first-child) {
                margin-left: 13px;
                padding-left: 22px;
                position: relative;

                &::before {
                    content: ">";
                    position: absolute;
                    font-size: 1.3rem;
                    top: 50%;
                    transform: translateY(-50%);
                    left: 0px;
                    line-height: 0;
                }
            }

            &:last-child {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                max-width: 15em;
            }
        }
    }
}
@media all and (min-width: 769px) {
    #pankuzu {
        padding-top: 20px;
    }
}


/*============================================================================================================================================================
==============================================================================================================================================================

	6.404ページ

==============================================================================================================================================================
============================================================================================================================================================*/
#nopage {
    padding: 100px 20px;
    font-size: 1.8rem;
    text-align: center;
}

#nopage .to-top {
    margin-top: 30px;
}

/*==============================================================================

	404ページ PC

==============================================================================*/
@media all and (min-width: 769px) {
    #nopage {
        margin: 0 auto;
        padding: 200px 0px;
        width: 980px;
        font-size: 1.8rem;
    }

    #nopage .to-top {
        margin-top: 50px;
    }
}

#nopage .btn_wrap {
    margin-top: 50px;
}



/*============================================================================================================================================================
==============================================================================================================================================================

	7.ポップアップ

==============================================================================================================================================================
============================================================================================================================================================*/
.popup {
    max-width: 90%;
    width: 980px;
    padding: 40px 20px;

    & .popup-inner {
        max-height: calc(100svh - 200px);
    }
}
.fancybox__container,
.fancybox__backdrop {
    background: rgb(255 255 255 / 0.5)!important;
}
.f-button[data-fancybox-close]  {
    color: var(--color-font)!important;
}
button.is-arrow{
    width: 30px;
    height: 30px;
}
.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
    left: 10px!important;
}
.is-horizontal.is-ltr .f-button.is-arrow.is-next {
    right: 10px!important;
}
/* 1. スライドの移動（translate）を物理的に無効化する */
.fancybox__slide {
    transform: none !important; /* translate を打ち消す */
    opacity: 0;
    transition: opacity 0.3s !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto !important;
}

/* 2. 選択されているスライドだけ表示 */
.fancybox__slide.is-selected {
    opacity: 1 !important;
}
/* 3. ドラッグ用の判定レイヤーを無効化 */
.fancybox__viewport, 
.fancybox__track {
    pointer-events: none !important;
}
/* 4. 中身のコンテンツだけはクリックや操作を許可 */
.fancybox__content {
    pointer-events: auto !important;
    cursor: default !important;
}
/* 5. マウスが「掴む手」にならないように強制 */
.is-draggable {
    cursor: default !important;
}
/* 背景（スライド）のクリックを有効にする */
.fancybox__slide {
    pointer-events: auto !important; /* none から auto に戻す */
    cursor: pointer; /* 背景はクリックできることがわかるように */
}
/* サムネイルバーを完全に非表示 */
.fancybox__thumbs {
    display: none !important;
}
/* サムネイルがある前提の余白（隙間）を消す */
.fancybox__container {
    --f-thumb-width: 0px;
    --f-thumb-height: 0px;
    --f-thumb-outline: 0px;
    --f-thumb-gap: 0px;
}

/*============================================================================================================================================================
==============================================================================================================================================================

	8.order 予約について

==============================================================================================================================================================
============================================================================================================================================================*/
#order{

    /* ========== イントロ ========== */
    & .intro{
        & .fukidashi{
            & span{
                font-size: 1.6rem;
            }
        }
        & .intro-text{
            margin-top: 20px;
            text-align: center;
        }
    }
    /* ========== ボタン ========== */
    & .popup-btn_wrap{ 
        margin-top: 35px;
        display: flex;
        flex-direction: column;
        gap: 25px;

        & a{
            color: var(--color-font);
            
            & img{
                width: 100%;
            }

            & span{
                display: none;
            }

            /* ========== 注意書き ========== */
            & .note{
                margin-top: 15px;
                text-align: center;
            }
        }
    }
}
/* ==================== ポップアップ ==================== */
.popup.order-popup{
    padding: 40px 25px;
    background-color: var(--color-accent);
    border-radius: 15px;
    color: var(--color-font);

    & .popup-inner{
        height: 100%;
        overflow-y: auto;
        color: var(--color-font);
    }

    /* アイコン */
    & .popup-icon{
        margin-bottom: 10px;
        text-align: center;

        & img{
            width: 140px;
        }
    }
    /* h3タイトル */
    & .title{
        margin-bottom: 35px;
        display: flex;
        align-items: center;
        gap: 5px;

        & img{
            width: 86px;
        }

        & h3{
            padding-bottom: 15px;
            width: calc(100% - 86px - 5px);
            position: relative;
            font-family: var(--font-sub);
            font-size: 2rem;
            text-align: center;
            line-height: 1.4;
            
            &::after{
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 5px;
                background: radial-gradient(
                    circle at 2.5px 2.5px,
                    var(--color-main) 0 2.5px,
                    transparent 2.5px);
                background-size: 10px 5px;
                background-repeat: repeat-x;
            }
        }
    }
    /* イントロ */
    & .popup-intro{
        margin-bottom: 35px;

        & .note{
            margin-top: 35px;

            & p{
                text-align: center;
                font-family: var(--font-sub);
                font-weight: var(--weight-bold);
                font-size: 1.6rem;
            }
            & .link-list{
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;

                & a{
                    padding: 4px 35px 6px;
                    width: 80%;
                    line-height: 1.4;
                    border: none;
                    border-radius: 15px;
                    font-family: var(--font-base);

                    &::after{
                        right: 16px !important;
                        width: 20px;
                    }
                }
            }
        }
    }
    /* h4 */
    & h4{
        text-align: center;

        & span{
            padding: 8px 10px 10px;
            width: 270px;
            display: inline-block;
            background-color: var(--color-font);
            border-radius: 60px;
            color: #fff;
            font-weight: var(--weight-bold);
        }
    }
}

/* ========== 注文予約 ========== */
#popup-reserve.popup.order-popup{
    & .reserve-howto{
        display: flex;
        flex-direction: column;
        gap: 35px;

        & dl{
            margin-top: 10px;

            & dt{
                padding-bottom: 10px;
                text-align: center;
                font-family: var(--font-sub);
                font-weight: var(--weight-bold);
                font-size: 1.6rem;
                border-bottom: 3px solid #e8e3e2;
            }
            & dd{
                margin-top: 10px;

                & a{
                    color: var(--color-font);
                    font-weight: var(--weight-bold);
                    text-decoration: underline;
                }
            }
        }
    }
}

/* ========== モバイルオーダー ========== */
#popup-mobile.popup.order-popup{
    /* h3タイトル */
    & .title{
        & h3{            
            &::after{
                background: radial-gradient(
                    circle at 2.5px 2.5px,
                    var(--color-sub) 0 2.5px,
                    transparent 2.5px);
                background-size: 10px 5px;
                background-repeat: repeat-x;
            }
        }
    }

    /* ===== 注文方法について ===== */
    & .mobile-howto{
        margin-top: 50px;

        & dl{
            margin-top: 35px;

            & dt{
                margin-bottom: 10px;
                font-family: var(--font-sub);
                font-size: 1.6rem;
                font-weight: var(--weight-bold);

                & p{
                    position: relative;
                    padding-left: 45px;
                    padding-bottom: 15px;

                    & .num{
                        margin-top: -6px;
                        position: absolute;
                        top: 50%;
                        left: 0;
                        transform: translateY(-50%);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        text-align: center;
                        background-color: var(--color-font);
                        color: #fff;
                        width: 30px;
                        aspect-ratio:  1 / 1;
                        border-radius: 100%;
                        line-height: 1;
                        letter-spacing: 0;
                        padding-bottom: 2px;
                    }

                    &::after{
                        content: "";
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        width: 100%;
                        height: 5px;
                        background: radial-gradient(circle at 2.5px 2.5px, var(--color-font) 0 2.5px, transparent 2.5px);
                        background-size: 10px 5px;
                        background-repeat: repeat-x;
                    }
                }
            }
            & dd:first-of-type{
                font-weight: var(--weight-bold);
                font-size: 1.5rem;
            }
            & dd a{
                color: var(--color-font);
                font-weight: var(--weight-bold);
                text-decoration: underline;
            }
            & dd + dd{
                margin-top: 5px;
            }
        }
    }
}

/*==============================================================================

	予約について PC

==============================================================================*/
@media all and (min-width: 768px){
    #order{
        margin-top: 0;
        padding-top: 60px;

        /* ========== イントロ ========== */
        & .intro{
            & .intro-text{
                margin-top: 40px;
            }
        }

        /* ========== ボタン ========== */
        & .popup-btn_wrap{ 
            flex-direction: row;
            justify-content: space-between;
        }
        /* ========== 注意書き ========== */
        & .note{
            margin-top: 20px;
        }
    }
    /* ==================== ポップアップ ==================== */
    .popup.order-popup{
        background-color: var(--color-accent);
        border-radius: 15px;

        & .popup-inner{
            padding: 0 80px;
        }

        /* アイコン */
        & .popup-icon{
            & img{
                width: 160px;
            }
        }
        /* h3タイトル */
        & .title{
            margin-bottom: 35px;
            justify-content: center;

            & h3{
                width: auto;
                padding: 0 40px 15px;
            }
        }
        /* イントロ */
        & .popup-intro{
            margin-bottom: 35px;
            text-align: center;

            & .note{
                margin-top: 50px;

                & p{
                    font-size: 1.6rem;
                }
                & .link-list{
                    margin-top: 40px;
                    flex-direction: row;
                    justify-content: space-between;

                    & a{
                        padding: 4px 35px 6px;
                        width: 230px;
                        font-size: 1.4rem;
                    }
                }
            }
        }
    }

    

    /* ========== 注文予約 ========== */
    #popup-reserve.popup.order-popup{
        & .reserve-howto{
            flex-direction: row;
            flex-wrap: wrap;
            gap: 45px;

            & > div{
                width: calc( (100% - 45px) / 2 );
            }

            & dl{
                margin-top: 10px;

                & dt{
                    padding-bottom: 10px;
                    text-align: center;
                    font-family: var(--font-sub);
                    font-weight: var(--weight-bold);
                    font-size: 1.6rem;
                    border-bottom: 3px solid #e8e3e2;
                }
                & dd{
                    margin-top: 10px;

                    & a{
                        color: var(--color-font);
                        font-weight: var(--weight-bold);
                        text-decoration: underline;
                    }
                }
            }
        }
    }

    /* ========== モバイルオーダー ========== */
    #popup-mobile.popup.order-popup{
        /* h3タイトル */
        & .title{
            & h3{            
                &::after{
                    background: radial-gradient(
                        circle at 2.5px 2.5px,
                        var(--color-sub) 0 2.5px,
                        transparent 2.5px);
                    background-size: 10px 5px;
                    background-repeat: repeat-x;
                }
            }
        }

        /* 注文方法について */
        & .mobile-howto{

            & dl{
                margin-top: 50px;

                & dt{
                    margin-bottom: 20px;
                    text-align: center;

                    & p{
                        width: 320px;
                        display: inline-block;
                        padding-left: 35px;

                        & .num{
                            left: 10px;
                        }
                    }
                }
                & dd{
                    text-align: center;
                }
            }
        }

    }
}