@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --black: #1a1a1a;
    --blue: #057dd3;
    --lightblue: #e5f8ff;
    --gray: #e0e0e0;

    /* 書式 */
    --notoSans: "Noto Sans JP", sans-serif;
    --notoSerif: "Noto Serif JP", serif;


    /* 文字サイズ */
    --size12: 1.2rem;
    --size15: 1.5rem;
    --size17: 1.7rem;
    --size20: 2rem;
    --size30: 3rem;

    /* ウェイト */
    --weight300: 300;
    --weight400: 400;

    /* 行間 */
    --lineHight133: 1.333333;
    --lineHight15: 1.5;
    --lineHight175: 1.75;
    --lineHight2: 2;

    /* 文字間 */
    --fontSpace005: 0.05em;
    --fontSpace150: 0.15em;
    --fontSpace250: 0.25em;

    /* トランジションの変数　 */
    --transitionBase: all 0.3s ease-in-out;

    /* 角丸の変数　 */
    --borderRadius50: 50px;
    --borderRadius20: 20px;
    --borderRadius10: 10px;

    /* 透明度 */
    --opacity07: 0.7;
}



@media screen and (max-width: 1200px) {
    :root {
        --size17: 1.6rem;
        --size20: 1.8rem;
        --size30: 2.8rem;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --size17: 1.6rem;
        --size30: 2.6rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        /* サイズ */
        --size17: 1.5rem;
        --size30: 2.5rem;
    }
}




/*******************************************
common
*******************************************/
body {
    color: var(--white);
    font-family: var(--notoSerif);
    font-weight: var(--weight400);
    font-size: var(--size17);
    background-color: var(--black);
    letter-spacing: var(--fontSpace150);
    line-height: var(--lineHight2);
}

.body__bg {
    background-color: var(--black);
    /* background-image: url(../img/bg.png);
    background-size: contain;
    width: 100%;
    background-repeat: repeat-y; */
}

p {
    text-align: justify;
}


.section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section__ttl {
    text-align: center;
    font-size: var(--size20);
    line-height: var(--lineHight175);
    letter-spacing: var(--fontSpace250);
}

.bg {
    background-image: url(../img/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width:1120px) {
    .push01 {
        display: inline-block;
    }

    .none01 {
        display: none;
    }

    .section__inner {
        padding: 0 30px;
    }
}

@media screen and (max-width:768px) {
    .push02 {
        display: inline-block;
    }

    .none02 {
        display: none;
    }
}

@media screen and (max-width:480px) {
    .push03 {
        display: inline-block;
    }

    .none03 {
        display: none;
    }
}


/*******************************************
btn
*******************************************/


.btn {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 10px 0;
    text-align: center;
    border: 1px solid var(--white);
    border-radius: var(--borderRadius50);
    transition: var(--transitionBase);
}

.btn:hover {
    color: var(--black);
    background-color: var(--white);
}

/*******************************************
header
*******************************************/
.headerNav-sp,
.hamburger {
    display: none;
}


.header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(10px, 1.3vw, 20px) clamp(15px, 2.82vw, 45px) 0 clamp(10px, 2.19vw, 35px);
    z-index: 100;
    font-size: var(--size15);
    font-family: var(--notoSans);
    font-weight: var(--weight300);
}

.header__logo {
    display: inline-block;
    width: clamp(136px, 13.3%, 300px);
    z-index: 100;
}

.headerNav-pc {
    width: 100%;
    height: 100%;
}

.headerNav__list--pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.headerNav__item--pc {
    margin-left: clamp(15px, 1.6vw, 40px);
    position: relative;

    &:first-child {
        margin-left: 0;
    }
}

.header__btn {
    max-width: 150px;
    width: 100%;
}

.headerNav__link {
    position: relative;
    width: fit-content;

    &::before {
        position: absolute;
        content: "";
        width: 0;
        height: 1px;
        top: 140%;
        left: 0;
        background-color: var(--white);
        transition: var(--transitionBase);
    }

    &:hover::before {
        width: 100%;
    }
}

.headerNav__snsLink {
    transition: var(--transitionBase);

    &:hover {
        opacity: var(--opacity07);
    }
}


@media screen and (max-width:768px) {
    .headerNav-pc {
        display: none;
    }

    .header__logo {
        width: clamp(136px, 36.27vw, 200px);
    }


    .headerNav-sp {
        display: block;
        position: fixed;
        left: 0;
        top: -100%;
        width: 100%;
        height: 100vh;
        transition: var(--transitionBase);
        background-color: var(--gray);
    }

    .active .headerNav-sp {
        top: 0;
    }

    .headerNav__list--sp {
        width: 100%;
        height: 100vh;
        margin: 0 0 0 auto;
        padding: max(30%,145px) clamp(10px, 1.96%, 20px) 0 45px;
        background-color: var(--black);
    }

    .headerNav__item--sp {
        margin-top: max(5%, 30px);
        position: relative;
        font-size: var(--size20);

        &:first-child {
            margin-top: 0;

        }

        &:last-child {
            width: 51.57%;
        }
    }



    .hamburger {
        display: block;
        position: fixed;
        right: 1%;
        width: 50px;
        height: 50px;
        cursor: pointer;
        z-index: 100;
        transition: var(--transitionBase);
    }

    .line {
        position: absolute;
        width: 70%;
        height: 2px;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .4s;
        background-color: var(--white);
    }

    .line:nth-of-type(1) {
        top: 25%;
    }

    .active .line:nth-of-type(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .line:nth-of-type(2) {
        top: 50%;
    }

    .active .line:nth-of-type(2) {
        opacity: 0;
    }

    .line:nth-of-type(3) {
        top: 75%;
    }

    .active .line:nth-of-type(3) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .headerNav__link--insta,
    .headerNav__link--line {

        padding-left: 30px;
        font-size: 1.4rem;

        &::after {
            position: absolute;
            content: "";
            background-repeat: no-repeat;
            background-size: contain;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
    }

    .headerNav__link--insta::after {
        background-image: url(../img/insta.svg);
        width: 18px;
        height: 18px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: contain;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .headerNav__link--line::after {
        background-image: url(../img/line.svg);
        width: 21px;
        height: 20px;
    }



}








/*******************************************
mv
*******************************************/
.mv {
    padding-top: clamp(180px, 13.14vw, 250px);
    padding-bottom: clamp(50px, 6.813vw, 109px);
}

.mv__ttl {
    text-align: left;
}

.mv__img {
    margin-top: clamp(40px, 3.75%, 60px);
    width: 90.63%;
}


@media screen and (max-width:768px) {
    .mv {
        margin-top: 0;
    }

    .mv__img {
        width: 100%;
        /* aspect-ratio: 1 / 1; 

        & img {
            object-fit: cover;
            height: 100%;
        } */
    }
}


/*******************************************
concept
*******************************************/
.concept {
    position: relative;
    padding: 0 0 clamp(50px, 10.63vw, 170px) 0;

    & .section__ttl {
        text-align: left;
    }

    & p {
        margin-bottom: 40px;
    }
}

.concept__bg {
    position: absolute;
    width: 100%;
    max-height: 755px;
    left: 0;
    top: 0;
    overflow: hidden;
}

.conceptBox {
    position: relative;
    margin-top: 50px;
}

.conceptBox__txt p {
    text-align: left;
}

.conceptBox__img {
    position: absolute;
    width: min(45vw, 720px);
    height: auto;
    top: 50%;
    left: 57%;
    transform: translate(0, -50%);
}

@media screen and (max-width:1024px) {
    .conceptBox {
        display: flex;
        align-items: flex-start;
    }

    .conceptBox__img {
        position: static;
        transform: none;
        margin-left: 20px;
        min-width: 350px;
    }
}

@media screen and (max-width:768px) {
    .conceptBox {
        flex-direction: column-reverse;
    }

    .conceptBox__img {
        margin-left: auto;
        margin-bottom: 50px;
        transform: translateX(30px);
        width: 91%;
        min-width: auto;
    }
}

/*******************************************
charge
*******************************************/
.charge {
    & .section__ttl {
        text-align: left;
        margin-bottom: 85px;
    }
}

.chargeContainer {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.charge__para {
    background-image: url(../img/bg-charge.jpg);
    background-size: 155%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat-y
}

.chargeBox {
    position: relative;
    width: 100%;

    &::before {
        position: absolute;
        content: "";
        width: max(41%, 300px);
        height: 101%;
        left: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.7);
    }
}

.chargeBox__inner {
    position: relative;
    padding: clamp(61.5px, 11.57vw, 185px) 0 clamp(61.5px, 12.2vw, 195px) 0;
}

.chargeBox__txt {
    position: relative;
    padding-left: 20px;

    &::before {
        position: absolute;
        content: "";
        width: 5px;
        height: 1px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background-color: var(--white);
    }
}

.chargeBox__small {
    font-size: var(--size12);
}

@media screen and (max-width:1130px) {
    .chargeBox__inner {
        padding: clamp(61.5px, 11.57vw, 185px) 30px clamp(61.5px, 12.2vw, 195px);
    }
}

@media screen and (max-width:480px) {
    .charge__para {
        background-image: url(../img/bg-charge-sp.jpg);

    }

    .charge .section__ttl {
        margin-bottom: 70px;
    }

    .chargeBox__inner {
        padding: 65px 30px 310px;
    }

    .chargeBox::before {
        width: 100%;
        height: 64%;
    }
}

/*******************************************
menu
*******************************************/
.menu {
    padding: clamp(45px, 6vw, 90px) 0 0;

    & .section__ttl,
    & .menu__ttl--sub {
        opacity: var(--opacity07);
        text-align: center;
    }

    & .section__ttl {
        margin-bottom: max(5.9%, 30px);
    }

    & .menu__ttlBox--sub {
        margin-bottom: max(5.5%, 20px);
    }

    & h4 {
        text-align: center;
        margin-bottom: 30px;
    }


}

.menuContainer {
    margin-bottom: max(11%, 50px);

    &:last-child {
        margin-bottom: 0;
    }
}


.menu__list {
    padding: 0 60px 0 240px;
    column-count: 2;

    &.menu__list--mTop {
        margin-top: max(2.8%, 15px);
    }

    &.menu__list--mBottom {
        margin-bottom: max(9.1%, 40px);
    }
}

.menu__list--tCenter {
    text-align: center;
}

.menu__list02 {
    column-count: auto;
    display: flex;
    flex-wrap: wrap;

    & .menu__item {
        width: calc(100% / 2);
    }
}


.menu__item {
    margin-bottom: max(8%, 15px);

    &:last-child {
        margin-bottom: 0;
    }

}

.separateBox {
    width: 100%;
    height: 650px;
    margin: clamp(50px, 11.25%, 180px) 0 0 0;
}

.separateBox__para {
    top: 0;
    /* スクロールに合わせて、上部に固定 */
    height: 100%;

    background-image: url(../img/bg-menu01.jpg);
    background-size: 140%;
    background-position: center;
    background-attachment: fixed;
    /* 背景を固定し、スクロール時に異なる速度で動かす */
}


.menuContainer-food {
    padding: clamp(40px, 6%, 95px) 0 clamp(50px, 12.5%, 200px);
    background-image: url(../img/bg-menu02.png);
    background-size: cover;
}

.menu__list--sp {
    display: none;
}

@media screen and (max-width:1100px) {
    .menu__list {
        padding: 0;
        width: min(100%, 700px);
        margin: 0 auto;
    }
}

@media screen and (max-width:768px) {
    .menu__list {
        padding: 0;
        width: min(100%, 450px);
        margin: 0 auto;
        column-count: 1;
    }

    .menu__list02 {
        flex-direction: column;

        & .menu__item {
            width: 100%;
        }
    }

    .menu__list--food {
        text-align: center;
    }
}

@media screen and (max-width:480px) {
    .menu {

        & .menu__ttlBox--sub {
            margin-bottom: 35px;
        }

        & h4 {
            margin-bottom: 10px;
            text-align: left;
        }
    }

    .menuContainer {
        margin-bottom: 100px;
    }

    .menu__list--tCenter {
        display: none;
    }

    .menu__list--sp {
        display: block;
    }

    .menu__item {
        margin-bottom: 15px;
        line-height: 1.46;
    }

    .menu__list {

        &.menu__list--mTop {
            margin-top: max(2.8%, 15px);
        }

        &.menu__list--mBottom {
            margin-bottom: 100px;
        }
    }

    .separateBox {
        height: 295px;
    }

    .separateBox__para {
        background-image: url(../img/bg-menu01-sp.jpg);
    }

}

/*******************************************
instagram
*******************************************/
.instagram {
    padding: clamp(50px, 6.25%, 100px) 0 clamp(50px, 11.25%, 180px);
}
 
.instagramBox {
    margin-top: 75px;
}

/*******************************************
 ACCESS
*******************************************/
.access {
    padding: clamp(50px, 7.2%, 115px) 0 clamp(40px, 6.25%, 100px);
    background-image: url(../img/bg-access.png);
    background-repeat: repeat-y;
    background-size: cover;

    & .section__ttl {
        opacity: var(--opacity07);
    }
}

.mapBox {
    width: min(100%, 1100px);
    margin: max(5.9%, 30px) auto 90px;
    height: 370px;

    & iframe {
        width: 100%;
        height: 100%;

        pointer-events: auto;
    }
}

.mapTxt {
    text-align: center;

    & p {
        text-align: center;
        margin-bottom: max(3.2%, 20px);
        opacity: var(--opacity07);
    }

    & p:last-of-type {
        margin-bottom: 0;
    }

    & .small {
        font-size: var(--size12);
        opacity: var(--opacity07);
    }
}

@media screen and (max-width:1130px) {
    .mapBox {
        padding: 0 30px;
    }
}

@media screen and (max-width:480px) {
    .mapBox {
        padding: 0;
        max-height: 360px;
    }

    .mapTxt p {
        margin-bottom: 35px;
    }
}

/*******************************************
reserve
*******************************************/
.reserve {

    & .section__ttl {
        opacity: var(--opacity07);
    }
}

.reserve__para {
    background-image: url(../img/bg-reserve.jpg);
    background-size: 100%;
    background-position-y: 20%;
    background-attachment: fixed;
    padding: clamp(50px, 6.25%, 100px) 0px clamp(30px, 5%, 80px);
}

.reserve__txt {
    text-align: center;
    margin: max(4.55%, 20px) 0 max(5%, 20px);
    opacity: var(--opacity07);
}

.reserveBtn {
    display: flex;
    justify-content: space-between;
}

.reserveBtn__item {
    position: relative;
    width: calc((100% - 50px)/2);
    font-size: var(--size30);
    text-align: center;
}

.reserveBtn__item--line::before {
    position: absolute;
    content: "";
    background-image: url(../img/line.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 69px;
    height: 65px;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    transition: var(--transitionBase);
}

.reserveBtn__item--line:hover:before {
    background-image: url(../img/line-black.svg);
}

.reserveBtn__link {
    border-radius: 0;
    padding: 44px 0;
    background-color: var(--black);
}

@media screen and (max-width:1200px) {
    .reserveBtn__item.line::before {
        width: 64.4px;
        height: 60.6px;
    }
}

@media screen and (max-width:1024px) {
    .reserveBtn__item.line::before {
        width: 59.8px;
        height: 56.3px;
    }
}

@media screen and (max-width:768px) {
    .reserve__para {
        padding: 115px 0;
        background-image: url(../img/bg-reserve-sp.jpg);
        background-size: 180%;
        background-position-y: 30%;
    }

    .reserveBtn {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .reserveBtn__item {
        width: 100%;
        margin-bottom: 50px;

        &:last-child {
            margin-bottom: 0;
        }
    }
}




/*******************************************
footer
*******************************************/
.footer {
    padding: 65px 0 60px;
}

.copyright {
    text-align: center;
    font-size: var(--size12);
    opacity: var(--opacity07);
}