@charset "UTF-8";

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

       Fixed ヘッダー

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

header.main-header{
        position: fixed;
        width:100%;
        height:70px;
        font-family:var(--font-title);
        background:#FFF;
        box-sizing: border-box;
        z-index:2;
        -webkit-transition: all .3s ease;
                transition: all .3s ease;
        }

        .fixed-navigation-wrap {
                width: 100%;
                box-sizing: border-box;
                position:relative;
                z-index:5;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .fixed-logo {
                width:155px;
                position: absolute;
                left:30px;
                top:19px;
                line-height:1;
                text-align: center;
                box-sizing: border-box;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                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%;
                z-index: 0;
                }
                .fixed-main-nav {
                position:absolute;
                top:23px;
                right:240px;
                text-align: left;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .fixed-main-nav li {
                float:left;
                position: relative;
                letter-spacing:0.05em;
                text-align: center;
                padding-right:4em;
                box-sizing: border-box;
                line-height:24px;
                z-index: 1;
                font-size:16px;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .fixed-main-nav li:last-child { padding-right:0; }
                .fixed-main-nav li:after {
                content:"/";
                display:block;
                position: absolute;
                top:50%;
                right:0;
                translate:0 -50% ;
                width:4em;
                height:1em;
                line-height: 1em;
                color:#303233;
                opacity:.6;
                }
                .fixed-main-nav li:last-child:after {
                display: none;
                }
                .fixed-main-nav li a {
                position:relative;
                display: block;
                font-size:16px;
                line-height:24px;
                box-sizing: border-box;
                letter-spacing:0.05em;
                font-weight:600;
                color:#303233;
                -webkit-transition: all .5s ease;
                transition: all .5s ease;
                }
                .fixed-main-nav li a:after {
                position:absolute;
                bottom:-5px;
                left:50%;
                transform: translateX(-50%);
                content:'';
                width:0px;
                height:2px;
                background-color:#303233;
                transition:.5s;
                }
                .fixed-main-nav li a:hover:after {
                width:100%;
                }
                .fixed-main-nav li a:hover {
                opacity:1;
                }
                
        /*=================================================
                Reservation btn
        ==================================================*/

        .fixed-reservation {
                position: absolute;
                text-align: center;
                top:10px;
                right:30px;
                width:180px;
                letter-spacing: 0.05rem;
                line-height: 1;
                font-size:1rem;
                z-index:3;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .fixed-reservation a {
                position: relative;
                font-size:16px;
                width:100%;
                height:50px;
                line-height:50px;
                box-sizing: border-box;
                border-radius: 0;
                background: #D5AD4E;
                font-weight:600;
                letter-spacing:0.05em;
                display:block;
                color:#FFF;
                white-space: nowrap;
                text-decoration:none !important;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                z-index: 1;
                }
                .fixed-reservation a:after {
                position:absolute;
                content:'';
                display: block;
                top:0;
                right:0;
                width:0px;
                height:100%;
                background-color:rgb(255 255 255 / .2);
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .fixed-reservation a:hover:after {
                width: 100%;
                left:0;
                }
                .fixed-reservation a:hover { opacity:1; }

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

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

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

        @media screen and (max-width:1250px) {
        .fixed-main-nav { right:220px; }
        .fixed-main-nav li { padding-right:3em; }
        .fixed-main-nav li:after { width:3em; }
        .fixed-reservation { width:160px; }
        }



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

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

        .mobile-bottom-reservation {
                display: none;
                position: fixed;
                left:20px;
                bottom:15px;
                text-align: center;
                width:240px;
                height:54px;
                letter-spacing: 0.2rem;
                line-height: 1;
                font-size:16px;
                z-index:3;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-bottom-reservation a {
                position: relative;
                width:100%;
                height:54px;
                line-height: 54px;
                box-sizing: border-box;
                border-radius:30px;
                background:#D5AD4E;
                text-align: center;
                font-size:15px;
                font-weight:500;
                letter-spacing:0.05em;
                display:block;
                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 span {
                position:relative;
                display: inline-block;
                top:3px;
                margin-right:10px;
                width:19px;
                height:19px;
                background: url("../images/icons/icon-reservation-2-w.svg") center center / cover;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-bottom-reservation a:hover { opacity:.6; }

        
        @media screen and (max-width:1200px) {
        .mobile-bottom-reservation { display: block; }
        }
        @media screen and (max-width:767px) {
        .mobile-bottom-reservation { bottom:8px; left:10px; width:calc(100% - 20px); }
        .mobile-bottom-reservation a { }
        .mobile-bottom-reservation a span {  }
        }

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

       SP-header

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

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



        .mobile-navigation-wrap {
                position: relative;
                width:100%;
                height:100%;
                z-index:4;
                }
        .mobile-logo {
                width:145px;
                position: absolute;
                top:30px;
                left:25px;
                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; }

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

        .gnav {
                display: none;
                letter-spacing: 0;
                }
                .nav-toggle {
                display:block;
                position:fixed;
                right:0px;
                top:0px;
                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:40px;
                height:16px;
                top:50%;
                left:50%;
                translate:-50% -50%;
                }
                .nav-toggle span {
                display: block;
                position: absolute;
                height: 1px;
                width:40px;
                background:#303233;
                border-radius:0px;
                -webkit-transition: .5s ease;
                transition: .5s ease;
                }
                .nav-toggle span:nth-child(1) { top: 0px; width:70px; right:0; }
                .nav-toggle span:nth-child(2) { top: 12px;   }
                .nav-toggle span:nth-child(3) { top: 16px; }
                .gnav.active .nav-toggle span { background:#EFEFEF ; }
                .gnav.active .nav-toggle span:nth-child(1) { top: 8px; -webkit-transform: rotate(315deg); transform: rotate(315deg); width:50px; right:auto;}
                .gnav.active .nav-toggle span:nth-child(2) { top: 8px;-webkit-transform: rotate(-315deg); transform: rotate(-315deg); width:50px; }
                .gnav.active .nav-toggle span:nth-child(3) {  }

                .gnav .menu  { opacity: 1; position: absolute; text-align:center; width:100%; left:0; top:23px; line-height: 1; font-size:13px; color:#303233; 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: #FFF; }

                .gnav.fixed.active .nav-toggle span { background: #EFEFEF; }

                .gnav.fixed .menu  { color:#FFF; }

                .gnav.fixed .close  { color:#686868; }
                
                
                /* 反転    */             
                .gnav.fixed .nav-toggle { mix-blend-mode: difference; }
                .gnav.fixed.active .nav-toggle { mix-blend-mode:normal; }

                .gnav.active .nav-toggle { background: none; }

                @media screen and (max-width: 1200px) {
                .gnav { display: block; }
                .gnav.fixed .nav-toggle { top:0; }
                .gnav.fixed .active .nav-toggle { top:25px; }
                .gnav.fixed .active .nav-toggle { top:10px; }
                }
                @media screen and (max-width: 767px) {
                .nav-toggle { width:80px; }
                .gnav.fixed .nav-toggle { top:0; }
                .gnav.active .nav-toggle span:nth-child(1) { top: 6px; width:40px; }
                .gnav.active .nav-toggle span:nth-child(2) { top: 6px; width:40px; }
                .gnav .menu  { font-size:11px; }
                .gnav .close { font-size:10px; }
                
                .nav-toggle div { width:34px; margin-left:5px; }
                .nav-toggle span { width:34px; }
                .nav-toggle span:nth-child(1) { width:60px;  }
                
                .gnav.fixed .active .nav-toggle { top:15px; }
                
                /*      反転    */
                .nav-toggle { background: none; }
                .gnav.fixed .nav-toggle { mix-blend-mode: difference; }

                }


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

        .gnav-content {
                display: none;
                position: fixed;
                right: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background:#000;
                color:#F5F3F3;
                overflow: auto;
                z-index:9999;
                }
                /* tablet→PC時ナビ表示強制解除 */
                @media screen and (min-width: 1201px) {
                .gnav-content { opacity: 0; z-index: -999999; display: none !important; }
                }
                .gnav-content a { color:#F5F3F3; }
        .gnav-logo {
                width:145px;
                position: absolute;
                top:30px;
                left:5%;
                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/img/main.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:7rem;

                width:100%;
                -webkit-transition:all .5s ease;
                transition       : all .5s ease;
                }
                .mobile-main-nav {
                position:relative;
                padding-bottom:2.5rem;
                }
                .mobile-main-nav > li {
                width:100%;
                text-align: left;
                font-weight:400;
                border-top: 1px dotted rgb(255 255 255 / .3);
                padding: .5em 0;
                }
                .mobile-main-nav > li:last-child { border-bottom: 1px dotted rgb(255 255 255 / .3); }

                .mobile-main-nav > li a {
                letter-spacing: 0.01em;
                padding: .5em 0;
                color: #EEE;
                display: block;
                position: relative;
                box-sizing: border-box;
                white-space:nowrap;
                text-align: center;
                line-height: 160%;
                font-size:16px;
                font-weight:500;
                }
                .mobile-main-nav > li a span { opacity:.65; font-size:.875em;}
                
                .mobile-sub-navigation {
                padding-top:1.5rem;
                padding-bottom:1.5rem;
                border-bottom:1px solid rgb(255 255 255 / .3);
                margin-bottom:2rem;
                width:100%;
                -webkit-transition:all .5s ease;
                transition       : all .5s ease;
                }
                .mobile-sub-nav {
                margin-top:1rem;
                margin-bottom: 1rem;
                }
                .mobile-sub-nav > li {
                position: relative;
                padding:.26em 0 .26em 1em;
                box-sizing: border-box;
                }
                .mobile-sub-nav > li:after {
                content:"-";
                display: inline-block;
                position: absolute;
                left:0;
                top:.125em;
                }
                
                .mobile-sns {
                padding-bottom:1rem;
                text-align: center;
                }
                .mobile-sns li {
                display: inline-block;
                width:34px;
                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: center;
                width:100%;
                letter-spacing: 0;
                line-height: 1;
                font-size:1rem;
                z-index:3;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-reservation a {
                position: relative;
                width:100%;
                height:58px;
                line-height:58px;
                box-sizing: border-box;
                border-radius: 6px;
                background: #203864;
                text-align: center;
                font-weight:500;
                font-size:16px;
                letter-spacing:0;
                display:block;
                color:#FFF;
                overflow: hidden;
                white-space: nowrap;
                text-decoration:none !important;
                z-index: 1;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-reservation a i {
                position:relative;
                display: inline-block;
                margin-right:.75rem;
                top:3px;
                width:20px;
                height:20px;
                background: url("../images/icons/icon-reservation-2-w.svg") center center / cover;
                z-index: 0;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-reservation a span { opacity:.65; font-size:.875em;}
                
                .mobile-freedial {
                position: relative;
                text-align: center;
                width:100%;
                letter-spacing: 0;
                line-height: 1;
                font-size:1rem;
                z-index:3;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-freedial a {
                position: relative;
                width:100%;
                height:58px;
                line-height:58px;
                box-sizing: border-box;
                border-radius: 6px;
                background: #237F3F;
                text-align: center;
                font-weight:500;
                font-size:16px;
                letter-spacing:0;
                display:block;
                color:#FFF;
                overflow: hidden;
                white-space: nowrap;
                text-decoration:none !important;
                z-index: 1;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-freedial a i {
                position:relative;
                display: inline-block;
                margin-right:.75rem;
                top:3px;
                width:24px;
                height:16px;
                background: url("../images/icons/freedial-w.svg") center center / cover;
                z-index: 0;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-freedial a span { opacity:.65; font-size:.875em;}

                

        @media screen and (max-width: 1200px) {
        header.main-header { position: relative; width:100%; }
        .header-wrap { display:none; }
        .header-wrap-sp { margin-top:0; display:block; opacity: 1; }

        .gnav.active .nav-toggle span:nth-child(1) { width:36px; top:10px; }
        .gnav.active .nav-toggle span:nth-child(2) { width:36px; top:10px; }
        }
        @media screen and (max-width: 1024px) {
        .mobile-logo { left:20px; }
        }
        @media screen and (max-width: 767px) {
        .header-wrap-sp { height:90px; }
        .header-wrap-sp.fixed .nav-toggle { top:0; }
        .mobile-logo  { top:30px; left:15px; width:145px; }
        .gnav-logo {  position: relative; width:145px; top:0; left:20px;  padding-top:30px; }
        
        .gnav-logo-outer { max-width:550px; margin: 0 auto; position: relative; box-sizing: border-box; }
        .gnav-content:after { content:""; display:block; position: fixed; top:0; left:0;width:100%; height:100%; background:  url("../images/img/main.jpg") center center / cover; z-index: -1; opacity: .35; }
    
        .mobile-main-nav li { }
        .mobile-navigation { padding-top:3rem; }
        .gnav-outer { padding:0 7vw; max-width:550px; margin: 0 auto; }

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

        }

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

       フッター

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

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

        .footer-logo {
        width:100%;
        max-width:165px;
        position: relative;
        }

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



.footer-menu {
        position: relative;
        width:100%;
        text-align:center;
        padding-bottom:3rem;
        z-index: 10;
        }
        .footer-menu li {
        display: inline-block;
        font-size:1rem;
        position: relative;
        text-align: center;
        padding-right:2rem;
        line-height: 22px;
        }
        .footer-menu li:after {
        content:"|";
        display: inline-block;
        position: absolute;
        text-align: center;
        margin:0 auto;
        width: 2rem;
        font-weight: 400;
        }

        .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: 16px;
        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:1200px) {
        .footer-menu li { padding-right:1.5rem; }
        .footer-menu li:after { display: none; }
        }
        @media only screen and (max-width:1024px) {
        .footer-menu li { padding-right:1.25rem; }
        .footer-menu { padding-top:0; padding-bottom:3rem; }
        }

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

.copyright {
        position: relative;
        line-height: 200%;
        text-align: center;
        z-index: 100;
        letter-spacing:0;
        color:#FDFBF9;
        box-sizing: border-box;
        width:100%;
        font-size:13px;
        }
        .copyright img { vertical-align: middle; }

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

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

        .footer-sns { text-align: center; }
        .copyright {  position: relative; right:auto; bottom:auto; padding-bottom:4rem;font-size:10px; text-align: center; }
        }

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

		ページトップ

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

#totop {
	display:none;
	*display:block; /* IE 7 and below */
	position:fixed;
	bottom:0;
	right:0;
	z-index:2;
	}
    :root *> #totop { display:none;	}
    #totop { display:block; }
    *+html #totop { display:block; }
    #totop.open { display:block; }
    a.totop{ background:#4292AF; width:60px;height:60px; border-radius: 0; display:block; cursor:pointer; text-align: center; color:#FFF; font-size:13px; line-height: 125%; position: relative; }
    a.totop p { position: absolute; top:50%; left:50%; -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
    a.totop:hover{ opacity: .8; }

    @media only screen and (max-width: 1024px) {
    #totop { bottom:10px; right:5px;}
	a.totop{ width:55px;height:55px; font-size:10px; border-radius:50%; }
    }
    @media only screen and (max-width:767px) {
    #totop { bottom:65px; }
    }



