@charset "utf-8";

* {
    box-sizing: border-box;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
#header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 142px;
    position: relative;
    z-index: 1;
    transition: 0.4s ease-in-out;
}
#header__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/main-image_bg.webp);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.2s ease-in-out 0.2s;
}
#header__container.is-visible {
    height: 80px;
}
#header__container.is-visible::before {
    opacity: 1;
}
.header__container__logo {
    margin: 0 0 0 44px;
    width: max(174px,calc((174 / 1440)*100%));
    height: 100%;
    color: #000;
    cursor: pointer;
}
.header__container__logo img {
    transition: 0.4s;
}
.is-visible .header__container__logo img {
    filter: invert(100%);
}
.header__container__link {
    display: flex;
    align-items: center;
    gap: 27px;
    margin: 0 44px 0 0;
}
.header__container__link__instagram {
    padding: 10px;
    width: 38px;
    height: 38px;
    border-radius: 100px;
    background-color: rgba(25, 25, 25, 1);
    transition: 0.4s
}
.header__container__link__instagram:hover {
    background-color: rgba(25, 25, 25, 0.8);
}
.header__container__link__nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    width: fit-content;
}
.header__container__link__nav ul li {
    position: relative;
}
.header__container__link__nav__container {
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
}
.header__container__link__nav li p,
.header__container__link__nav li a {
    color: #FFF;
    font-family: "Shippori Mincho B1", serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 100%;
    transition: 0.2s ease-in-out 0.2s;
}
.header__container__link__nav__a {
    margin-left: 14px;
}
.header__container__link__nav li a:not(.header__container__link__nav__no_margin){
    margin-left: 14px;
}
.header__container__link__nav li a::before,
.header__container__link__nav__a::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 100px;
    background-color: #FFF;
    transition: 0.2s ease-in-out 0.2s;
}
.header__container__link__nav__line {
    width: 1px;
    height: 12px;
    background-color: #FFF;
    transition: 0.2s ease-in-out 0.2s;
}
.is-visible .header__container__link__nav li a,
.is-visible .header__container__link__nav li p {
    color: #000;
}
.is-visible .header__container__link__nav li a::before,
.is-visible .header__container__link__nav__a::before,
.is-visible .header__container__link__nav__line {
    background-color: #000;
}

#l_wrapper {
    background-image: url(../image/main-image_bg.webp);
    background-size: 100%;
    background-position: center top;
    background-repeat: repeat-y;
}

#hero {
    width: 100%;
	height: 100vh;
    position: relative;
    background-image: url(../image/hero-image_main.webp);
    background-size: cover;
    background-position: center;
}
#hero::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,50%);
}
    .hero__logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .hero__scroll {
        width: 4px;
        height: 50px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .hero__scroll::before {
        content: '';
        display: block;
        width: 1px;
        height: 50px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: #FFF;
    }
    .hero__scroll::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,0);
        border-radius: 50%;
        background-color: #FFF;
        animation: move-down 2s infinite ease-in-out;
    }

    @keyframes move-down {
        0% {
            transform: translate(-50%,0);
            opacity: 0;
        }
        20% {
            opacity: 1;
        }
        80% {
            opacity: 1;
        }
        100% {
            transform: translate(-50%,46px);
            opacity: 0;
        }
    }

#about {
    width: 100%;
	height: auto;
    overflow-x: hidden;
    position: relative;
    background-color: #181717;
}
h2.about__container__heading,
p.about__container__content__text {
    color: #FFF;
}
    .about__container {
        display: flex;
        gap: 50px;
        margin: 0 auto;
        padding: 152px 0 120px;
        width: calc((1200 / 1440)*100%);
        max-width: 1200px;
        position: relative;
        z-index: 2;
    }
    .about__container__content {
        margin: 12px 0 0;
    }
    .about__container__content__text {
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 0;
        line-height: 155%;
        margin-bottom: 21.7px;
    }

    .about__logo__wrap {
        width: 100%;
        height: 0;
        position: relative;
        z-index: 1;
    }
    .about__logo {
        width: auto;
        height: 372px;
        position: absolute;
        bottom: -10px;
        right: calc((-30 / 1440)*100vw);
    }

    .about__visual {
        display: flex;
        gap: 0;
        width: 100%;
        height: auto;
        position: relative;
        z-index: 2;
    }

#menu {
    padding: 150px 0 100px;
    width: 100%;
	height: auto;
    position: relative;
}
    .menu__heading {
        width: calc((1200 / 1440)*100%);
        max-width: 1200px;
        margin: 0 auto;
    }
        .menu__heading__title{
            font-size: 60px;
            font-weight: 700;
            letter-spacing: 0.01em;
            line-height: 100%;
            margin-bottom: 9px;
            padding-left: 82px;
            position: relative;
        }
        .menu__heading__title::before {
            content: '';
            display: block;
            width: 70px;
            height: 1px;
            position: absolute;
            top: 50%;
            left: 0;
            background-color: #000;
        }
        .menu__heading__subtitle {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.08em;
            line-height: 100%;
            margin-left: 4px;
            padding-left: 82px;
        }

    .menu__content {
        margin: 74px auto 100px;
        padding-bottom: 120px;
        width: calc((1340 / 1440)*100%);
        max-width: 1340px;
        background-color: #FFF;
    }

    .menu__content__inner__category__heading__title {
        font-size: 26px;
        font-weight: 400;
        letter-spacing: 0.01em;
        line-height: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    .menu__content__inner__category__heading__subtitle {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.06em;
        line-height: 100%;
        text-align: center;
    }

        .menu__content__inner__category {
            margin: 0 auto;
            padding: 100px 0;
            position: relative;
            width: calc((1200 / 1340)*100%);
        }

        .menu__content__inner__category.__other_menus {
            padding: 40px 0;
        }

            .menu__content__inner__category__limited {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-top: 80px;
                padding: 15px 20px;
                position: absolute;
                top: 0;
                right: 0;
                background-color: #C39A6C;
            }
            .menu__content__inner__category__limited__line {
                width: 1px;
                height: 16px;
                background-color: #FFF;
            }
            /* @media all and (max-width: 1032px){
                .menu__content__inner__category__limited__line {
                height: 30px;
            }
            } */

            .menu__content__inner__category__content {
                padding: 40px 0 0;
            }
            .menu__content__inner__category__content__visual {
                display: flex;
                gap: 20px;
            }
            .menu__content__inner__category__content__visual__inner {
                position: relative;
            }
            .menu__content__inner__category__content__visual__inner__text {
                padding: 10px 18px;
                position: absolute;
                bottom: 0;
                right: 0;
                background-color: #C39A6C;
            }
                p.menu__content__inner__category__content__visual__inner__text {
                    color: #FFF;
                    font-size: 16px;
                    font-weight: 600;
                    letter-spacing: 0.01em;
                    line-height: 100%;
                    text-align: center;
                }

            .menu__content__inner__category__content__text{
                padding: 40px 0 0;
            }
            .menu__content__inner__category__content__text__heading {
                display: flex;
                gap: 10px;
                align-items: center;
            }
            .menu__content__inner__category__content__text__heading::before {
                content: '';
                display: block;
                margin-right: 6px;
                width: 20px;
                height: 20px;
                position: relative;
                border-radius: 50%;
                background-color: #C39A6C;
            }
            .menu__content__inner__category__content__text__content {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                padding: 30px 0 5px;
            }
            .__ricebowl .menu__content__inner__category__content__text__content {
                padding: 0 0 8px;
            }
            .menu__content__inner__category__content__text__content__menu__list {
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                gap: 25px;
            }
            .__alacarte .menu__content__inner__category__content__text__content__menu__list,
            .__drink .menu__content__inner__category__content__text__content__menu__list {
                flex-direction: row;
                justify-content: space-between;
                flex-wrap: wrap;
                padding: 0 calc((40 / 1120) * 100%) 70px;
            }
            .menu__content__inner__category__content__text__content__menu__list__item {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                position: relative;
                list-style: none;
            }
            .__alacarte .menu__content__inner__category__content__text__content__menu__list__item,
            .__drink .menu__content__inner__category__content__text__content__menu__list__item {
                width: calc((538 / 1120) * 100%);
                height: auto;
            }
            .__alacarte .menu__content__inner__category__content__text__content__menu__list__item:nth-of-type(2) {
                order: 3;
            }
            .__alacarte .menu__content__inner__category__content__text__content__menu__list__item:nth-of-type(3) {
                order: 5;
            }
            .__alacarte .menu__content__inner__category__content__text__content__menu__list__item:nth-of-type(4) {
                order: 7;
            }
            .__alacarte .menu__content__inner__category__content__text__content__menu__list__item:nth-of-type(5) {
                order: 2;
            }
            .__alacarte .menu__content__inner__category__content__text__content__menu__list__item:nth-of-type(6) {
                order: 4;
            }
            .__alacarte .menu__content__inner__category__content__text__content__menu__list__item:nth-of-type(7) {
                order: 6;
            }

            p.menu__content__inner__category__content__text__content__name__text,
            p.menu__content__inner__category__content__text__content__price__text {
                position: static;
                font-size: 20px;
                font-weight: 600;
                letter-spacing: 0.01em;
                line-height: 180%;
                /* margin-bottom: 15px; */
            }
            .menu__content__inner__category__content__text__content__price__text {
                white-space: nowrap;
                width: 190px;
                text-align: right;
            }
                .menu__content__inner__category__content__text__content__price__text::after,
                .menu__content__inner__category__content__text__content__price__text__vertical::after {
                    content: '（tax included）';
                    font-size: 10px;
                    font-weight: 600;
                    letter-spacing: 0.06em;
                    line-height: 130%;
                    white-space: nowrap;
                    position: relative;
                }
            .menu__content__inner__category__content__text__container {
                display: flex;
                justify-content: space-between;
            }
            /* .menu__content__inner__category__content__text__content__price {
                text-align: right;
            }
            .menu__content__inner__category__content__text__content__price__text {
                position: relative;
            }
            .menu__content__inner__category__content__text__content__price__text__vertical {
                position: relative;
                font-size: 20px;
                font-weight: 600;
                letter-spacing: 0.01em;
                line-height: 180%;

            } */
            /* @media all and (max-width: 1192px) {
                .menu__content__inner__category__content__text__content__price__text__vertical::after {
                    position: absolute;
                    top: 78%;
                    right: -6px;
                    }
            } */
            /* .menu__content__inner__category__content__text__content__price__text:has(br)::after {
                top: 88%;
            } */
                .menu__line {
                    margin: 0 auto;
                    width: calc((1200 / 1340)*100%);
                    height: 1px;
                    background-color: #000;
                }
                .menu__dot {
                    margin: 20px auto 10px;
                    width: 100%;
                    border: 1px dashed #000;
                }

                p.menu__content__inner__category__limited__text {
                    color: #FFF;
                    font-size: clamp(13px,calc((16 / 1340)*100vw),24px);
                    font-weight: 600;
                    letter-spacing: 0.01em;
                    white-space: nowrap;
                }
                p.menu__content__inner__category__limited__time {
                    color: #FFF;
                    font-size: clamp(13px,calc((16 / 1340)*100vw),24px);
                    font-weight: 600;
                    letter-spacing: 0.06em;
                    white-space: nowrap;
                }
                    /* font-size: min(16px,calc((16 / 1340)*100vw)); */

                h4.menu__content__inner__category__content__text__heading__title {
                    font-size: 28px;
                    font-weight: 600;
                    letter-spacing: 0.06em;
                    line-height: 100%;
                }
                p.menu__content__inner__category__content__text__heading__subtitle {
                    color: #C39A6C;
                    font-size: 14px;
                    font-weight: 700;
                    letter-spacing: 0.06em;
                    line-height: 100%;
                }
                p.__limited::before {
                    content: 'Limited Quantity';
                    margin-right: 10px;
                    padding: 10px 15px;
                    background-color: #C39A6C;
                    color: #FFF;
                    font-size: 14px;
                    font-weight: 600;
                    letter-spacing: 0.01em;
                    line-height: 100%;
                }
                p.menu__content__inner__category__content__text__content__price__text {
                    letter-spacing: 0.06em;
                }
                p.menu__content__inner__category__content__text__attention__text {
                    font-size: 14px;
                    font-weight: 600;
                    letter-spacing: 0.01em;
                    line-height: 100%;
                    margin: 20px 0 30px;
                }
                .__ricebowl .menu__content__inner__category__content__text__attention__text {
                    margin: 15px 0 0;
                }
                .__right {
                    text-align: right;
                }
                .__left {
                    text-align: left;
                }

/* アコーディオンの設定 */
.menu__content__inner__category__heading__title.__accordion {
    margin-top: 10px;
}

/* .menu__content__inner__category__content__text__content {
    width: calc((540px / 1200px)*100%);
} */
.pc_tablet__responsive__hidden {
    display: none;
}

/* チェックボックス */
.menu__accordion {
    margin: 0 auto;
    position: relative;
    width: calc((1200 / 1340)*100%);
}
.menu__accordion__hidden {
    display: none;
}

.label-menu__content__inner__category__heading {
    display: flex;
    padding: 40px calc((40 / 1200)*100%);
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.menu__content__inner__category__heading__button {
    display: block;
    width: 26px;
    height: 26px;
    position: relative;
}

.menu__content__inner__category__heading__button::before,
.menu__content__inner__category__heading__button::after {
    content: '';
    position: absolute;
    background-color: #000;
    transition: transform 0.4s;
}
    .menu__content__inner__category__heading__button::before {
        width: 100%;
        height: 1px;
        top: 13px;
        left: 0;
    }
    .menu__content__inner__category__heading__button::after {
        width: 1px;
        height: 100%;
        top: 0;
        left: 13px;
    }

/* --- 開いた時の動き --- */

.menu__accordion__hidden:checked + .label-menu__content__inner__category__heading .menu__content__inner__category__heading__button::after {
    transform: rotate(90deg);
}

.menu__accordion__hidden:checked + .label-menu__content__inner__category__heading .menu__content__inner__category__heading__button {
    transform: rotate(180deg);
}

.menu__content__inner__category__content__text.__accordion {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.menu__accordion__hidden:checked + .label-menu__content__inner__category__heading + .menu__content__inner__category__content__text.__accordion {
    max-height: 2000px;
}

/* アコーディオンの設定ここまで */


#special {
    padding: 140px 0;
    width: 100%;
	height: auto;
    position: relative;
    background-color: #181717;
}
.special__heading {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
    h2.special__heading__title {
        color: #FFF;
        font-size: 50px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 100%;
        text-align: center;
    }
    p.special__heading__subtitle {
        color: #FFF;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.08em;
        line-height: 100%;
        text-align: center;
    }

.special__content {
    padding: 60px 0 0;
    position: relative;
}

/* スワイパーの設定 */
.special__swiper__wrap {
    width: calc((1186 / 1440)*100%);
    height: auto;
    margin: 0 0 0 auto;
    position: relative;
}
.special__swiper {
    z-index: 1;
}
.swiper-wrapper {
    position: relative;
    display: flex;
    width: max-content;
}
.swiper-slide {
    width: 453px !important;
    height: auto;
    flex-shrink: 0;
}
.swiper-slide__inner {
    padding: 60px calc((50 / 1440)*100vw);
    width: 454px;
    height: 100%;
    background-image: url(../image/special-image_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.swiper-slide__inner.__big {
    padding-bottom: calc((48 / 1440)*100vw);
}
.swiper-slide__container {
    display: flex;
    flex-direction: column;
}
    p.swiper-slide__container__title {
        font-size: 40px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 60%;
        margin-bottom: 30px;
    }
    span.swiper-slide__container__title__small {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 120%;
        margin-bottom: 15px;
    }
    p.swiper-slide__container__subtitle {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.08em;
        line-height: 100%;
        margin-bottom: 25px;
    }
    p.swiper-slide__container__text {
        font-family: "DM Sans", sans-serif;
        font-size: 16px;
        font-weight: 300;
        letter-spacing: 0;
        line-height: 130%;
        margin-bottom: 8px;
    }
    p.swiper-slide__container__subtext {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 110%;
    }

    p.swiper-slide__container__title,
    p.swiper-slide__container__subtitle {
        color: #C39A6C;
    }
    p.swiper-slide__container__text,
    p.swiper-slide__container__subtext {
        color: #000;
    }

.swiper__button {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: -74px;
    z-index: 2;
}
.swiper-button-disabled {
    opacity: 0.2 !important;
    cursor: not-allowed;
    pointer-events: none;
}
.swiper__button__next,
.swiper__button__prev {
    width: 54px;
    height: 54px;
    position: relative;
    border: 1px solid #FFF;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}
    .swiper__button__image {
        width: 7px;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
.swiper__button__prev {
    transform: rotate(180deg);
}

#store {
    padding: 150px 50px 100px;
    width: 100%;
	height: auto;
    position: relative;
}
    .store__heading {
        width: calc((1200 / 1440)*100%);
        max-width: 1200px;
        margin: 0 auto;
    }
        .store__heading__title{
            padding-left: 82px;
            font-size: 60px;
            font-weight: 700;
            letter-spacing: 0.01em;
            line-height: 100%;
            margin-bottom: 9px;
            position: relative;
        }
        .store__heading__title::before {
            content: '';
            display: block;
            width: 70px;
            height: 1px;
            position: absolute;
            top: 50%;
            left: 0;
            background-color: #000;
        }
        .store__heading__subtitle {
            padding-left: 82px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.08em;
            line-height: 100%;
            margin-left: 4px;
        }
.store__content {
    display: flex;
    flex-direction: column;
    gap: 114px;
    margin: 0 auto;
    padding: 75px 0 105px;
    width: 100%;
    max-width: 1200px;
}
.store__content__inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: calc((70 / 1440)*100%);
}
.store__content__inner__address  {
    padding: 85px 0 0;
    width: calc((582 / 1200)*100%);
}
.store__content__inner__address__title::after {
    content: '';
    display: block;
    margin: 25px 0 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}
.store__content__inner__address__contents__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 23px;
}
.store__content__inner__address__contents__inner__contentainer {
    display: flex;
}
.store__content__inner__address__content__category__text {
    min-width: 100px;
}
.store__content__inner__address__content__more {
    margin-top: 80px;
}
.store__content__inner__address__content__more__text {
    position: relative;
    padding: 10px 30px 11px 40px;
    padding-left: 35px;
    width: 160px;
    height: auto;
    border: 1px solid #000;
    border-radius: 100px;
    text-align: center;
    transition: 0.4s;
}
.store__content__inner__address__content__more__text::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 23px;
    transition: 0.4s;
}
.store__content__inner__address__content__more__text:hover {
    background-color: #000;
}
.store__content__inner__address__content__more__text:hover::before {
    background-color: #FFF;
}
    p.store__content__inner__address__title {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 130%;
    }
    p.store__content__inner__address__content__category__text,
    p.store__content__inner__address__content__info__text {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.12em;
        line-height: 120%;
    }
    p.store__content__inner__address__content__more__text {
        color: #000;
        font-size: 16px;
        white-space: nowrap;
        transition: 0.4s;  
    }
    p.store__content__inner__address__content__more__text:hover {
        color: #FFF;
    }

.store__content__inner__map {
    width: calc((550 / 1200)*100%);
    height: auto;
    min-height: 385px;
}
.store__content__inner__map iframe {
    display: block;
    width: 100%;
    height: 100%;
}


footer {
    width: 100%;
    height: 300px;
    position: relative;
    background-color: #000;
}
.footer__copyright {
    margin-left: 40px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    /* text-orientation: upright; */
    color: #FFF;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 100%;
    text-align: center; 
}
.footer__container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-left: calc((165 /1440)*100vw);
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
    .footer__container__image {
        width: 321px;
        height: 100%;
        opacity: 1;
        transition: 0.4s;
    }
    .footer__container__image:hover {
        opacity: 0.8;
    }
.footer__container__sns {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    margin-right: 120px;
}
.footer__container__sns__instagram {
    display: flex;
    gap: 14px;
    padding: 14px 20px;
    border: 1px solid #FFF;
    border-radius: 100px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 1;
    transition: 0.4s;
}
.footer__container__sns__instagram:hover {
    opacity: 0.8;
}
    .footer__container__sns__instagram__text {
        position: relative;
        padding-left: 10px;
        color: #FFF;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.1em;
        line-height: 150%;
        text-align: center;    
    }
    .footer__container__sns__instagram__text::before {
        content: '';
        display: block;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background-color: #FFF;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    .footer__container__sns__instagram__image {
        width: 19px;
        height: 19px;
    }
.footer__container__sns__access {
    opacity: 1;
    transition: 0.4s;
}
.footer__container__sns__access:hover {
    opacity: 0.8;
}
.footer__container__sns__access__text {
    position: relative;
    padding-left: 10px;
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 150%;
    white-space: nowrap;
    text-align: center; 
}
.footer__container__sns__access__text::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* PC ================================================== */
/* @media all and (max-width: 1352px){
    .menu__content__inner__category__content__text.__accordion .menu__content__inner__category__content__text__content__price__text::after,
    .menu__content__inner__category__content__text.__accordion .menu__content__inner__category__content__text__content__price__text__vertical::after {
        font-size: 10px;
        position: absolute;
        top: 100%;
        right: 0;
    }
} */
@media all and (max-width: 1192px){
    .menu__content__inner__category__content__text__container {
        flex-direction: column;
    }
    .menu__content__inner__category__content__text__content.__accordion {
        width: 100%;
        padding: 0;
    }
    .pc_tablet__responsive__show {
        display: none;
    }
    .pc_tablet__responsive__hidden {
        display: block;
    }
}
@media all and (max-width:1118px){
    .__drink .menu__content__inner__category__content__text__content__menu__list__item {
        flex-direction: row;
        width: 100%;
    }
    .__alacarte .menu__content__inner__category__content__text__content__menu__list,
    .__drink .menu__content__inner__category__content__text__content__menu__list {
        flex-direction: column;
    }
    .__alacarte .menu__content__inner__category__content__text__content__menu__list__item,
    .__drink .menu__content__inner__category__content__text__content__menu__list__item {
        width: 100%;
    }
} 

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

}

/* Tablet ================================================== */
@media all and (max-width: 768px){
header {
        position: absolute;
        top: 0;
        left: 0;
    }
    #header__container {
        padding-bottom: 0;
        align-items: flex-start;
    }
    .header__container__bg {
        mask-image: none;
    }
    .header__container__logo {
        margin: 20px 0 0 20px;
        padding: 0;
        width: max(50px,calc((50 / 375)*100%));
        height: auto;
    }
    .header__container__link {
        flex-direction: column-reverse;
        align-items: flex-end;
        gap: 27px;
        margin: 16px 20px 0 0;
    }
        .header__container__link__nav ul {
            flex-direction: column;
            align-items: flex-end;
            gap: 18px;
        }
        .header__container__link__nav ul li {
            display: flex;
        }   
    #header__container.is-visible {
        height: 142px;
    }
    #header__container.is-visible::before {
        opacity: 0;
    }
    .is-visible .header__container__logo img {
        filter: invert(0%);
    }
    .is-visible .header__container__link__nav li a {
        color: #FFF;
    }
    .is-visible .header__container__link__nav li a::before,
    .is-visible .header__container__link__nav__line {
        background-color: #FFF;
    }
    
    .about__container {
        flex-direction: column;
        gap: 25px;
        padding: 70px 0 90px;
        width: calc((285 / 375)*100%);
    }
        p.about__container__content__text {
            font-size: 12px;
        }

    .about__logo {
        height: 156px;
        bottom: -20px;
        right: calc((-50 / 375)*100vw);
    }
    .about__logo img {
        height: 100%;
    }

    .about__visual {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 100px;
    }
    .about__visual__image__chef,
    .about__visual__image__katsu {
        width: calc((330 / 375)*100%);
    }
    .about__visual__image__chef {
        align-self: flex-start;
    }
    .about__visual__image__katsu {
        align-self: flex-end;
    }

    #menu {
        padding: 65px 0 50px;
    }
    .menu__heading {
        width: 100%;
    }
    .menu__heading__title {
        padding-left: 50px;
        font-size: 30px;
        font-weight: 700;
        letter-spacing: 0.01em;
        line-height: 100%;
        margin-bottom: 6px;
    }
    .menu__heading__title::before {
        width: 42px;
    }
    .menu__line {
        width: calc((285 / 335)*100%);
    }
    .menu__content {
        margin: 30px auto 50px;
        padding-bottom: 50px;
        width: calc((335 / 375)*100%);
    }
    .menu__content__inner__category {
        padding: 40px 0;
        width: calc((286 / 335)*100%);
    }
        h3.menu__content__inner__category__heading__title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        h3.menu__content__inner__category__heading__title.__margin_top {
            margin-top: 15px;
        }
        p.menu__content__inner__category__heading__subtitle {
            font-size: 12px;
        }
    .menu__content__inner__category__content {
        padding: 32px 0 0;
    }
    .menu__content__inner__category__content__visual {
        flex-direction: column;
    }
    .__ricebowl .menu__content__inner__category__content__visual {
        gap: 42px;
    }
        p.menu__content__inner__category__content__visual__inner__text {
            font-size: 14px;
        }
    .menu__content__inner__category__content__text__heading {
        margin-bottom: 25px;
    }
    .menu__content__inner__category__content__text__heading::before {
        margin-right: 0;
        width: 12px;
        height: 12px;
    }
        h4.menu__content__inner__category__content__text__heading__title {
            font-size: 16px;
        }
    .menu__content__inner__category__content__text__content,
    .menu__content__inner__category__content__text__content.__drink {
        padding: 0;
    }
    .__ricebowl .menu__content__inner__category__content__text__content {
        padding: 25px 0 8px;
    }
    .__alacarte .menu__content__inner__category__content__text__content__menu__list,
    .__drink .menu__content__inner__category__content__text__content__menu__list {
        padding: 32px 0 60px;
    }
    .menu__content__inner__category__content__text__content__menu__list {
        gap: 21px;
    }
    .menu__content__inner__category__content__text__content__menu__list__item {
        flex-direction: column;
        gap: 3px;
    }
    .__ricebowl .menu__content__inner__category__content__text__content__menu__list__item {
        gap: 9px;
    }
    .__gyukatsu .menu__content__inner__category__content__text__attention {
        margin-top: 12px;
    }
        p.menu__content__inner__category__content__text__content__name__text {
            font-size: 16px;
            line-height: 130%;
            margin-bottom: 0;
        }
        p.menu__content__inner__category__content__text__content__price__text {
            width: auto;
            font-size: 14px;
            line-height: 180%;
            margin-bottom: 0;
        }
        p.menu__content__inner__category__content__text__attention__text {
            font-size: 12px;
            letter-spacing: -0.01em;
            line-height: 120%;
            margin: 5px 0 30px;
        }
        .__ricebowl .menu__content__inner__category__content__text__attention__text {
            margin: 0;
        }
        p.menu__content__inner__category__content__text__attention__text.__margin_small {
            margin-bottom: 10px;
        }
        p.menu__content__inner__category__content__text__attention__text.__margin_big {
            margin-bottom: 25px;
        }
        .__right {
            text-align: left;
        }
        p.__limited {
            padding-top: 30px;
        }
        p.__limited::before {
            margin: 0;
            padding: 6px 10px;
            position: absolute;
            top: 0;
        }
    .menu__content__inner__category__limited {
        gap: 8px;
        margin-top: 30px;
        margin-bottom: 8px;
        padding: 14px;
        position: relative;
    }
    .menu__content__inner__category__limited__line {
        height: 20px;
    }
        p.menu__content__inner__category__limited__text,
        p.menu__content__inner__category__limited__time {
            font-size: 16px;
        }
    .menu__accordion {
        width: calc((285 / 335)*100%);
    }
    .label-menu__content__inner__category__heading {
        margin-bottom: 0;
        padding: 16px 14px;
    }
        .menu__content__inner__category__heading__button {
        width: 15px;
        height: 15px;
    }
        .menu__content__inner__category__heading__button::before {
            top: 7px;
        }
        .menu__content__inner__category__heading__button::after {
            left: 7px;
        }
    .__ricebowl .menu__content__inner__category__content__text {
        padding: 0;
    }
    .menu__accordion__hidden:checked + .label-menu__content__inner__category__heading + .menu__content__inner__category__content__text.__accordion {
        padding: 46px 0 0;
    }
    .__alacarte .menu__content__inner__category__content__text__content__menu__list__item,
    .__drink .menu__content__inner__category__content__text__content__menu__list__item {
        width: 100%;
    }
    .__drink .menu__content__inner__category__content__text__content__menu__list__item {
        flex-direction: column;
    }

    #special {
        padding: 64px 0 150px;
    }
    .special__heading {
        gap: 16px;
    }
        h2.special__heading__title {
            font-size: 30px;
            line-height: 130%;
        }
        p.special__heading__subtitle {
            font-size: 12px;
        }

    .special__content {
        padding: 40px 0 0;
    }

    /* スワイパーの設定 */
    .special__swiper__wrap {
        position: static;
        width: 100%;
        overflow: hidden;
    }
    .swiper-slide {
        width: 281px !important;
    }
    .swiper-slide__inner {
        padding: 42px calc((36 / 281)*100%);
        width: 281px;
    }
    .swiper-slide__inner.__big {
        padding-bottom: calc((48 / 1440)*100vw);
    }
        p.swiper-slide__container__title {
            font-size: 28px;
            line-height: 100%;
            white-space: nowrap;
            margin-bottom: 10px;
        }
        span.swiper-slide__container__title__small {
            font-size: 16px;
            margin-bottom: 5px;
        }
        p.swiper-slide__container__subtitle {
            font-size: 12px;
            margin-bottom: 15px;
        }
        p.swiper-slide__container__text {
            font-family: "DM Sans", sans-serif;
            font-size: 12px;
            margin-bottom: 5px;
        }
        p.swiper-slide__container__subtext {
            font-size: 10px;
        }

    .swiper__button {
        flex-direction: row-reverse;
        gap: 25px;
        bottom: -80px;
        left: 50%;
        transform: translateX(-50%);
    }

    #store {
        padding: 90px 0 60px;
    }
    .store__heading {
        width: 100%;
    }
    .store__heading__title {
        padding-left: 50px;
        font-size: 30px;
        font-weight: 700;
        letter-spacing: 0.01em;
        line-height: 100%;
        margin-bottom: 6px;
    }
    .store__heading__title::before {
        width: 42px;
    }

    .store__content {
        gap: 80px;
        padding: 0 45px;
    }
    .store__content__inner {
        gap: 40px;
        flex-direction: column;
    }
    .store__content__inner__address {
        padding: 60px 0 0;
        width: 100%;
        overflow: hidden;
    }
        p.store__content__inner__address__title {
            font-size: 14px;
        }
        p.store__content__inner__address__content__category__text,
        p.store__content__inner__address__content__info__text {
            font-size: 14px;
            letter-spacing: 0.06em;
            line-height: 150%;
        }
    .store__content__inner__address__contents__inner {
        gap: 30px;
        margin-top: 20px;
    }
    .store__content__inner__address__contents__inner__contentainer {
        flex-direction: column;
        gap: 12px;
    }
    .store__content__inner__map {
        width: 100%;
        height: auto;
        min-height: 197px;
        aspect-ratio: 285 /197;
    }
    .store__content__inner__address__content__more {
        align-self: center;
        margin-top: 10px;
    }


    footer {
        height: 350px;
    }
    .footer__container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        padding: 0;
    }
    .footer__container__image {
        width: 150px;
    }
    .footer__container__sns {
        align-items: center;
        gap: 15px;
        margin: 0 auto;
    }
    .footer__container__sns__instagram {
        margin-right: 0;
    }
}

/* * { outline: 2px solid red !important; } */

/* SP ================================================== */
@media all and (max-width: 575px){

}