@charset "UTF-8";

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

       ヘッダー

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

header.main-header{
        position: absolute;
        top:0;
        left:0;
        width:100%;
        height:0;
        box-sizing: border-box;
        z-index:2;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        }

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

       Normal ヘッダー

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

        .normal-header-outer {
            position: absolute;
            right:0;
            top:0;
            width:230px;
            height:100%;
            z-index: 2;
            }
            .normal-header-outer:after {
            content:"";
            display: block;
            position: absolute;
            top:0;
            right:0;
            width:20vw;
            min-width:300px;
            height: 100%;
            background: #000;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
            opacity: .45;
            z-index: -1;
            }
        .normal-header {
                position: absolute;
                top:50%;
                left:50%;
                translate:-50% -50%;
                width:100%; 
                z-index: 0;
                }

        .normal-navigation-wrap {
                width: 100%;
                box-sizing: border-box;
                position:relative;
                padding-right:55px;
                z-index:5;
                transition     :   all .3s ease;
                }
                .normal-logo {
                width:100px;
                position: relative;
                margin-left:auto;
                padding-bottom:3rem;
                line-height:1;
                text-align: center;
                box-sizing: border-box;
                transition     :   all .3s ease;
                z-index: 1;
                }
                .normal-logo a { display: block; line-height: 1; font-size:1px; }
                .normal-logo a img { line-height: 1; }
                .toppage .normal-logo { display: none; }

        /*=================================================
                navigation
        ==================================================*/

        .normal-navigation {
                position: relative;
                width:100%;
                }
                .normal-main-nav {
                position:relative;
                width:100%;
                text-align: right;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                z-index: 0;
                }
                .normal-main-nav li {
                position: relative;
                text-align: right;
                box-sizing: border-box;
                line-height: 1;
                z-index: 1;
                }
                .normal-main-nav li:last-child {
                padding-right:0;
                }
                .normal-main-nav li a {
                position: relative;
                font-size:1rem;
                line-height:230%;
                letter-spacing:0.05em;
                color:#FFF;
                font-weight: 400;
                display: inline-block;
                box-sizing: border-box;
                white-space: nowrap;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .normal-main-nav li a:after {
                position:absolute;
                bottom:-2px;
                right:0%;
                content:'';
                width:0px;
                height:2px;
                background-color:#FFF;
                transition:.5s;
                }
                .normal-main-nav li a:hover:after {
                width:100%;
                }

        /*=================================================
                SNS
        ==================================================*/

        .normal-sns {
                position: relative;
                width:100%;
                text-align: right;
                padding-top:1rem;
                }
                .normal-sns li {
                display: inline-block;
                width:24px;
                }


        @media screen and (max-width:1350px) {
        .normal-navigation-wrap { padding-right:40px; }
        .normal-logo { width:80px; padding-bottom:1.5rem; }
        .normal-main-nav li a { line-height: 210%; font-size:15px; }
        }




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

       Fixed ヘッダー

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

        .fixed-header {
        position: fixed;
        display: flex;
        align-items: center;
        top:-80px;
        width:100%;
        height:70px;
        box-sizing: border-box;
        background:#1E1D1C;
        z-index:2;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        opacity:0;
        }
        
        .main-header.fixed .fixed-header { top:0; opacity: 1; margin-top:0; }

        .fixed-navigation-wrap {
                width: 100%;
                box-sizing: border-box;
                padding:0 1.5625vw;
                position:relative;
                display: flex;
                gap:2rem;
                align-items: center;
                z-index:5;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }

                .fixed-logo {
                width:210px;
                flex-shrink: 0;
                position: relative;
                line-height:1;
                text-align: center;
                box-sizing: border-box;
                z-index: 1;
                }
                .fixed-logo a { display: block; line-height: 1; font-size:1px; }
                .fixed-logo a img { line-height: 1; }

        /*=================================================
                navigation
        ==================================================*/

        .fixed-navigation {
                position: relative;
                width: 100%;
                margin-left: auto;
                display: flex;
                justify-content: flex-end;
                gap:2rem;
                align-items: center;
                z-index: 0;
                }
                
                .fixed-main-nav {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 2rem;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .fixed-main-nav li {
                float:left;
                position: relative;
                letter-spacing:0.05em;
                text-align: center;
                box-sizing: border-box;
                line-height: 120%;
                z-index: 1;
                font-size:16px;
                -webkit-transition: all .5s ease;
                transition: all .5s ease;
                }
                .fixed-main-nav li:last-child {
                padding-right:0;
                }
                .fixed-main-nav li:last-child:after {
                display: none;
                }
                .fixed-main-nav li a {
                position:relative;
                display: inline-block;
                font-size:16px;
                line-height: 140%;
                letter-spacing:0.05em;
                font-weight:400;
                color:#FFF;
                -webkit-transition: all .5s ease;
                transition: all .5s ease;
                }
                .fixed-main-nav li a:after {
                position:absolute;
                bottom:-4px;
                left:50%;
                transform: translateX(-50%);
                content:'';
                width:0px;
                height:2px;
                background-color:#FFF;
                transition:.5s;
                }
                .fixed-main-nav > li a:hover:after {
                width:100%;
                }
                .fixed-main-nav > li a:hover {
                opacity:1;
                }

        /*=================================================
                Reservation btn
        ==================================================*/

        .fixed-reservation {
                display: block;
                line-height: 1;
                text-align: center;

                z-index:3;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .fixed-reservation a {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 124px;
                height: 56px;
                line-height: 140%;
                box-sizing: border-box;
                background: #23483e;
                border-radius: 3px;
                text-align: center;
                font-weight: 500;
                font-size: 16px;
                letter-spacing: 0.05em;
                color: #FFF;
                overflow: hidden;
                white-space: nowrap;
                text-decoration: none !important;
                z-index: 1;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .fixed-reservation a:after {
                position: absolute;
                content: "";
                width: 0;
                height:100%;
                bottom:0;
                right: 0;
                z-index: -1;
                border-radius:0;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
                background:rgb(255 255 255 / .3);
                }

                .fixed-reservation a:hover { opacity:1; }
                .fixed-reservation a:hover:after { left: 0; width: 100%; }


        /*=================================================
                fixed
        ==================================================*/

        header.main-header.fixed .fixed-header { height:80px; box-shadow: 0 5px 10px rgb(0 0 0 / .2); }

        /*=================================================
                responsive
        ==================================================*/

        @media screen and (max-width:1250px) {
        .fixed-main-nav li:first-child { display: none; }
        }
        @media screen and (max-width:1200px) {
        .fixed-logo { width:47px; }
        }
        @media screen and (max-width:1000px) {
        
        
        }

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

       Mobile Reservation btn
       
==================================================================================================*/

        .mobile-bottom-reservation {
                position: fixed;
                display: none;
                left:10px;
                bottom:10px;
                text-align: center;
                width:160px;
                height:56px;
                line-height: 1;
                font-size:16px;
                z-index:3;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-bottom-reservation a {
                position: relative;
                display:flex;
                align-items: center;
                justify-content: center;
                gap:.5em;
                height:56px;
                width:100%;
                background:#23483e;
                border-radius:3px ;
                line-height: 1;
                box-sizing: border-box;
                text-align: center;
                font-size:16px;
                font-weight:400;
                letter-spacing:0;
                color:#FFF;
                overflow: hidden;
                white-space: nowrap;
                text-decoration:none !important;
                z-index: 1;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-bottom-reservation a i {
                width:16px;
                height:16px;
                background: url("../images/icons/icon-reservation-2-w.svg") center center / cover;
                }
                .mobile-bottom-reservation a:hover { opacity:.6; }
        @media screen and (max-width:1024px) {
        .mobile-bottom-reservation { display: block; }
        }
        @media screen and (max-width:767px) {
        .mobile-bottom-reservation {  }
        }


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

       SP-header

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

.header-wrap-sp {
        display: none;
        position: absolute;
        width:100%;
        height: 100px;
        box-sizing: border-box;
        z-index: 3;
        }

        .mobile-navigation-wrap {
                position: relative;

                padding:0 20px;
                box-sizing: border-box;
                width:100%;
                height:100%;
                z-index:4;
                }
        .mobile-logo {
                width:100px;
                position: relative;
                padding:20px 0 0;
                opacity: 1;
                z-index: 999;
                line-height: 1;
                -webkit-transition:all .5s ease;
                transition       : all .5s ease;
                }
                .mobile-logo a { display: block; line-height: 1; }
                .mobile-logo a img { display: block; line-height: 1; }
                .pages .mobile-logo { display: none; }

        /*=================================================
                ハンバーガー
        ==================================================*/

        .gnav {
                display: none;
                letter-spacing: 0;
                }
                .nav-toggle {
                display:block;
                position:fixed;
                right:5px;
                top:5px;
                padding:0;
                width:90px;
                height:90px;
                text-align: center;
                font-size: 0px;
                letter-spacing: 0;
                box-sizing: border-box;
                pointer-events: auto;
                cursor:pointer;
                z-index:100001;
                -webkit-transition:all .5s ease;
                transition       : all .5s ease;
                }
                .nav-toggle div {
                position:absolute;
                width:27px;
                height:18px;
                top:50%;
                left:50%;
                translate:-50% -50%;
                }
                .nav-toggle span {
                display: block;
                position: absolute;
                height: 2px;
                width:27px;
                background:#FFF;
                border-radius:0px;
                right: 0;
                -webkit-transition: .5s ease;
                transition: .5s ease;
                }
                .nav-toggle span:nth-child(1) { top: 0; width:13px; }
                .nav-toggle span:nth-child(2) { top: 8px; width:20px; }
                .nav-toggle span:nth-child(3) { top: 16px; width:27px; }
                .gnav.active .nav-toggle span { background:#FFF ; }
                .gnav.fixed.active .nav-toggle span { background: #FFF; }
                .gnav.active .nav-toggle span:nth-child(1) { top: 8px;-webkit-transform: rotate(315deg);-moz-transform: rotate(315deg);transform: rotate(315deg); width:27px;}
                .gnav.active .nav-toggle span:nth-child(2) { width:0; left:50%;}
                .gnav.active .nav-toggle span:nth-child(3) { top: 8px;-webkit-transform: rotate(-315deg);-moz-transform: rotate(-315deg);transform: rotate(-315deg); width:27px; }

                .gnav .menu  { opacity: 1; position: absolute; text-align:center; width:100%; left:0; top:23px; line-height: 1; font-size:13px; color:#2C2E2E; transition : all 0.5s ease; font-weight:400; }
                .gnav .close { opacity: 0; position: absolute; width:auto; text-align:right; left:0px; top:18px; line-height: 1; font-size:13px; color:#FFF; transition : all 0.5s ease; }
                .gnav.active .menu  { opacity: 0; }
                .gnav.active .close { opacity: 1; }

                
                
                /* 反転    */
                .gnav.fixed .nav-toggle span { background: #9b9b9b; }
                .gnav.fixed .nav-toggle { mix-blend-mode: difference; }
                .gnav.fixed.active .nav-toggle { mix-blend-mode:normal; }

                @media screen and (max-width: 1024px) {
                .gnav { display: block; }
                .gnav.fixed .nav-toggle { top:0; }
                .gnav.fixed .active .nav-toggle { top:25px; }
                }
                @media screen and (max-width: 767px) {
                .nav-toggle { width:80px; height:80px; top:0; right:0; }
                .gnav.fixed .nav-toggle { top:0; }
                .gnav .menu  { font-size:11px; }
                .gnav .close { font-size:10px; }
                .header-wrap-sp.fixed .nav-toggle { top:0; }
                
                .gnav.fixed .active .nav-toggle { top:15px; }
                
                /*      反転    */
                .nav-toggle { background: none; }
                .gnav.fixed .nav-toggle { mix-blend-mode: difference; }

                }


        /*=================================================
                ナビゲーション
        ==================================================*/

/* android アンカー時スクロール対策済み visible + inner付与 */

.gnav-content {
                display: none;
                position: fixed;
                right: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background:#1E1D1C;
                color:#FFF;
                z-index:9999;
                overflow: visible;
                }
                .gnav-content-inner {
                height: 100%;
                overflow-y: auto;
                }

                /* tablet→PC時ナビ表示強制解除 */
                @media screen and (min-width: 1025px) {
                .gnav-content { opacity: 0; z-index: -999999; display: none !important; }
                }
                .gnav-content a { color:#FFF; }
                
        .gnav-logo-outer {
                position: absolute;
                top:20px;
                left: 0;
                width: 50%;
                height: 100px;
                display: flex;
                align-items: flex-start;
                }
        .gnav-logo {
                width:100px;
                margin-left:20px;
                position: relative;
                opacity: 1;
                z-index: 999;
                line-height: 100%;
                -webkit-transition:all .5s ease;
                transition       : all .5s ease;
                }
                .gnav-logo a { line-height: 1; display: block; }
                .gnav-logo a img { line-height: 1; display: block; }
                
                .gnav-wrap {
                max-width:53%;
                width:53%;
                min-width:53%;
                }
                .gnav-outer {
                padding:0 5vw;
                box-sizing: border-box;
                }
                .gnav-img {
                position: fixed;
                top:0;
                background: url("../images/parts/header-sp.jpg") center center / cover;
                width:47%;
                height:100%;
                opacity: .5;
                }
                @media screen and (max-width: 767px) {
                .gnav-img { position: relative; width:100%; }
                }
    
                .mobile-navigation {
                padding-top:6rem;
                width:100%;
                -webkit-transition:all .5s ease;
                transition       : all .5s ease;
                }
                .mobile-main-nav {
                position:relative;
                padding-bottom:.5rem;
                }
                .mobile-main-nav > li {
                width:100%;
                text-align: center;
                font-weight:400;
                border-bottom: 1px solid rgb(255 255 255 / .3);
                }
                .mobile-main-nav > li:last-child { border-bottom:none; }

                .mobile-main-nav > li a {
                letter-spacing: 0.01em;
                padding: 1em;
                color:#FFF;
                display: block;
                position: relative;
                box-sizing: border-box;
                white-space:nowrap;
                line-height: 110%;
                font-size:16px;
                font-weight:600;
                }

                
                .mobile-sns {
                text-align: center;
                line-height: 1;
                }
                .mobile-sns li {
                display: inline-block;
                width:30px;
                line-height: 1;
                margin-right:10px;
                }
                .mobile-sns li:last-child { margin-right:0; }
                
                .mobile-address {
                padding-top:2rem;
                padding-bottom:2rem;
                }
                .mobile-address p { line-height:250%; }

                .mobile-reservation {
                position: relative;
                text-align: left;
                width:100%;
                letter-spacing: 0;
                line-height: 1;
                font-size:1rem;
                z-index:3;
                transition: all .3s ease;
                }
                .mobile-reservation a {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                gap:.5em;
                width:100%;
                height:60px;
                line-height:1;
                box-sizing: border-box;
                background: #23483e;
                border-radius: 3px;
                text-align: left;
                font-weight:400;
                font-size:1rem;
                letter-spacing:0;
                color:var(--white-color);
                overflow: hidden;
                white-space: nowrap;
                text-decoration:none !important;
                z-index: 1;
                transition: all .3s ease;
                }
                .mobile-reservation a i {
                width:1em;
                height:1em;
                background: url("../images/icons/icon-reservation-2-w.svg") center center / cover;
                z-index: 0;
                transition: all .3s ease;
                }
                
                .mobile-bestrate {
                width:80%;
                max-width:240px;
                margin-inline:auto;
                }
                

        @media screen and (max-width: 1024px) {
        .main-header { display:none !important; }
        .header-wrap-sp { margin-top:0; display:block; opacity: 1; }
        }
        @media screen and (max-width: 767px) {
        .header-wrap-sp  { height:80px; }
        .mobile-logo     { width:70px; padding-top:10px; }
        .gnav-logo       { width:70px; }
        .gnav-logo-outer { width:100%; position: relative; box-sizing: border-box; height:80px; top:10px; }
        .gnav-content:after { content:""; display:block; position: fixed; top:0; left:0;width:100%; height:100%; background:  url("../images/parts/header-sp.jpg") center center / cover; z-index: -1; opacity: .1; }
        .mobile-navigation { padding-top:5rem; }
        .gnav-outer { padding:0 7vw; max-width:550px; margin: 0 auto; }
        }

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

       フッター

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

footer {
        position: relative;
        width:100%;
        box-sizing: border-box;
        font-size:1rem;
        font-weight:500;
        overflow: hidden;
        background:#393734;
        color:var(--footer-font-color);
        z-index: 1;
        }

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

        .footer-logo {
        width:120px;
        margin: 0 auto;
        }

        @media only screen and (max-width: 1024px) {
        .footer-logo { width:100px;}
        }
        @media only screen and (max-width: 767px) {
        .footer-logo { margin: 0 auto; width:100px; }
        }

.footer-menu {
        position: relative;
        width:100%;
        text-align:center;
        z-index: 10;
        }
        .footer-menu li {
        display: inline-block;
        font-size:1rem;
        position: relative;
        text-align: center;
        padding-right:2rem;
        line-height: 130%;
        }
        .footer-menu li:after {
        content:"/";
        display: inline-block;
        position: absolute;
        text-align: center;
        margin:0 auto;
        width: 2rem;
        font-weight: 400;
        line-height:130%;
        opacity:.6;
        }
        .footer-menu li:last-child { padding-right:0; }
        .footer-menu li:last-child:after { display: none; }
        .footer-menu li a {
        font-size:1rem;
        line-height: 130%;
        position: relative;
        display: inline-block;
        text-decoration: none;
        white-space: nowrap;
        color:var(--footer-font-color);
        }
        .footer-menu li a:hover {
        cursor: pointer;
        opacity: .6;
        text-decoration: none;
        }
        .footer-menu li a::after {
        position: absolute;
        bottom: -3px;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background:var(--footer-font-color);
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform .5s;
        }
        .footer-menu li a:hover::after {
        transform-origin: left top;
        transform: scale(1, 1);
        }
        @media only screen and (max-width:1450px) {
        .footer-menu li { padding-right:2rem; }
        .footer-menu li:after { width:2rem; }
        }
        @media only screen and (max-width:1240px) {
        .footer-menu li { padding-right:1rem; }
        .footer-menu li:after { display: none; }
        .footer-menu li a { font-size:15px; }
        }
        

.sns-footer-banner {
        position: relative;
        }
        .sns-footer-banner a {
        display: flex;
        align-items: center;
        gap:.5em;
        font-size:1.125rem;
        padding:.85em 1.1em;
        box-sizing: border-box;
        width:100%;
        max-width:300px;
        background: #F9F9F2;
        border-radius: 5px;
        color:#312B27;
        line-height: 1;
        }
        .sns-footer-banner a img {
        width:1.2rem;
        }


        .footer-sns {
        text-align: left;
        }
        .footer-sns li {
        display: inline-block;
        width:30px;
        margin-right:10px;
        }
        .footer-sns li:last-child { margin-right:0; }
        

.copyright {
        position: relative;
        line-height:200%;
        text-align: center;
        z-index: 100;
        padding-top:3rem;
        letter-spacing:0;
        color:var(--footer-font-color);
        box-sizing: border-box;
        width:100%;
        font-size:12px;
        }
        .copyright img { vertical-align: middle; }

        @media only screen and (max-width: 1024px) {
        
        }

        @media only screen and (max-width: 767px) {

        .footer-menu { border-top:1px solid rgba(255,255,255,.3); }
        .footer-menu.top-line-none { border-top:none; }
        .footer-menu li { display: block; width:100%; text-align: center; border-bottom:1px solid rgba(255,255,255,.3); padding:0; }
        .footer-menu li:last-child {  }
        .footer-menu li a { padding:.75rem 1rem; display: block; }
        .footer-menu li a:before { display:none; }
        .footer-menu li:before {  display:none ;}

        .footer-sns { text-align: center; }
        .copyright {  position: relative; right:auto; bottom:auto; padding-bottom:4rem; font-size:10px; text-align: center; line-height: 150%; }
        .sns-footer-banner { width:270px; margin-inline:auto; }
        .sns-footer-banner a { justify-content: center; }
        }

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

		ページトップ

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

#totop {
	display:none;
	position:fixed;
	bottom:10px;
	right:20px;
	z-index:999;
    border: none;
    padding: 0;
    background: none;
	}
    :root *> #totop { display:none;	}
    #totop { display:block; }
    *+html #totop { display:block; }
    #totop.open { display:block; }
    .totop{ background:none; width:100px;height:60px; display:block; cursor:pointer; text-align: center; color:#FFF; font-size:13px; line-height: 125%; position: relative; }
    .totop span { position: absolute; top:50%; left:50%; -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
    .totop:hover{ opacity: .8; }
    .totop a { display: block; width:100%; height:100%; color:#FFF; }

    @media only screen and (max-width: 1024px) {
    #totop { bottom:15px; right:10px;}
	.totop{ width:80px;height:48px; }
    }
    @media only screen and (max-width:767px) {
    #totop { bottom:20px; right:10px; }
    .totop{ width:60px;height:36px; }
    }
