@charset "UTF-8";

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

       Fixed ヘッダー

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

header.main-header { position: relative; z-index: 10000;}
        .header-wrap {
        position: fixed;
        background: url("../images/parts/background.jpg") repeat;
        width:100%;
        height:120px;
        box-sizing: border-box;
        z-index:1000;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        }
        .fixed-navigation-wrap {
                display: block;
                position: relative;
                width:100%;
                max-width:1440px;
                margin:0 auto;
                box-sizing: border-box;
                z-index: 2;
                }
                .fixed-logo {
                width:150px;
                position: absolute;
                top:30px;
                left:20px;
                opacity: 1;
                line-height: 100%;
                z-index: 10;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                }
        

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

        .fixed-navigation {
                position:absolute;
                top:44px;
                right:225px;
                width:780px;
                z-index: 20;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                }
                .fixed-main-nav {
                float: right;
                position:relative;
                text-align: center;
                }
                .fixed-main-nav li {
                display: inline-block;
                position: relative;
                font-weight: 500;
                letter-spacing: .05em;
                text-align: center;
                box-sizing: border-box;
                padding-right:2.5rem;
                z-index: 1;
                }
                .fixed-main-nav li:last-child {
                padding-right:0;
                }
                .fixed-main-nav li a {
                font-size:16px;
                padding:5px 0;
                line-height: 110%;
                letter-spacing: .05rem;
                display: block;
                -webkit-transition:all .3s ease;
                -moz-transition  : all .3s ease;
                -o-transition    : all .3s ease;
                -ms-transition   : all .3s ease;
                transition       : all .3s ease;
                }

                /*=================================================
                        hover bar
                ==================================================*/

                .fixed-main-nav li a {
                position: relative;
                display: inline-block;
                transition: .3s;
                }
                .fixed-main-nav li a:after {
                position:absolute;
                bottom:0;
                left:50%;
                content:'';
                width:0;
                height:2px;
                background-color:#393735;
                transition:.3s;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%); 
                }
                .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:35px;
                right:20px;
                width:165px;
                letter-spacing: 0.05em;
                z-index: 99999;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                }
                .fixed-reservation a {
                width:100%;
                height:50px;
                box-sizing: border-box;
                text-align: center;
                line-height: 50px;
                font-size:16px;
                font-weight:500;
                letter-spacing: 0;
                display:block;
                color:#FFF;
                background: url("../images/parts/orange.jpg") repeat;
                overflow: hidden;
                border-radius:2px;
                white-space: nowrap;
                text-decoration:none !important;
                position: relative;
                z-index: 1;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;

                }
                .fixed-reservation a:after {
                position: absolute;
                content: "";
                width: 0;
                height: 100%;
                top: 0;
                right: 0;
                z-index: -1;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                background: rgba(0,0,0,.25);
                }
                .fixed-reservation a span { font-size:10px; font-weight:normal; opacity:.6; letter-spacing: 0em; }
                .fixed-reservation a:hover:after {
                left: 0;
                width: 100%;
                }
                .fixed-reservation a:hover {
                opacity:1;
                filter: alpha(opacity=100);
                -ms-filter: "alpha( opacity=100 )";
                color:#FFF;
                }

        /*=================================================
                fixed
        ==================================================*/
                
        .header-wrap.fixed {
                height:80px;
                top:0;
                -webkit-box-shadow: 0px 3px 8px rgba(0,0,0,.1);
                -moz-box-shadow:	0px 3px 8px rgba(0,0,0,.1);
                -ms-box-shadow:		0px 3px 8px rgba(0,0,0,.1);
                -o-box-shadow:		0px 3px 8px rgba(0,0,0,.1);
                box-shadow:	        0px 3px 8px rgba(0,0,0,.1);
                }
        .header-wrap.fixed .fixed-logo { top:5px;  }
        .header-wrap.fixed .fixed-navigation { top:25px; }
        .header-wrap.fixed .fixed-sub-nav {  }
        .header-wrap.fixed .fixed-reservation { top:15px; }
        .header-wrap.fixed .fixed-reservation a {  }

        /*=================================================
                Responsive
        ==================================================*/

        @media screen and (max-width: 1200px) {
        .fixed-navigation { width:610px; }
        .fixed-main-nav li:first-child { display:none; }
        .fixed-main-nav li { padding-right:2rem; }
        }

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

       Mobile ヘッダー

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

.header-wrap-sp {
        display: none;
        position: absolute;
        width:100%;
        height:90px;
        z-index: 1;
        background:#F9F8F8;
        }
        .mobile-logo {
                width:135px;
                position: absolute;
                top:14px;
                left:3%;
                opacity: 1;
                z-index: 999;
                line-height: 100%;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                }

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

        .gnav {
                font-family: 'Poppins', sans-serif;
                letter-spacing: 0;
                }
                .nav-toggle {
                display:block;
                position:fixed;
                right:10px;
                top:11px;
                padding:0;
                width:70px;
                height:70px;
                text-align: center;
                font-size: 0px;
                letter-spacing: 0;
                box-sizing: border-box;
                pointer-events: auto;
                cursor:pointer;
                z-index:99999;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                }
                .nav-toggle div {
                position:absolute;
                width:27px;
                height:10px;
                top:25px;
                right:21px;
                }
                .nav-toggle span {
                display: block;
                position: absolute;
                height: 2px;
                width:27px;
                background:#393735;
                border-radius:2px;
                left: 0;
                -webkit-transition: .3s ease-in-out;
                -moz-transition: .3s ease-in-out;
                transition: .3s ease-in-out;
                }
                .nav-toggle span:nth-child(1) { top: 0; }
                .nav-toggle span:nth-child(2) { top: 8px; }
                .gnav.active .nav-toggle span { background: #FFF; }
                .gnav.active .nav-toggle span:nth-child(1) {top: 3px;-webkit-transform: rotate(315deg);-moz-transform: rotate(315deg);transform: rotate(315deg);}
                .gnav.active .nav-toggle span:nth-child(2) {top: 3px;-webkit-transform: rotate(-315deg);-moz-transform: rotate(-315deg);transform: rotate(-315deg);}
                
                
                .gnav .menu  { opacity: 1; position: absolute; width:27px; right:21px; top:42px; line-height: 1; font-size:10px; color:#393735; -webkit-transition : all 0.3s ease-in-out;  -moz-transition : all 0.3s ease-in-out; -o-transition : all 0.3s ease-in-out;}
                .gnav .close { opacity: 0; position: absolute; width:31px; right:19px; top:42px; line-height: 1; font-size:10px; color:#FFF;  -webkit-transition : all 0.3s ease-in-out; -moz-transition : all 0.3s ease-in-out; -o-transition : all 0.3s ease-in-out;}
                .gnav.active .menu  { opacity: 0; }
                .gnav.active .close { opacity: 1; }
                
                
                .header-wrap-sp.fixed .nav-toggle span { background: #393735; }
                .header-wrap-sp.fixed .active .nav-toggle span { background: #FFF; }
                .header-wrap-sp.fixed .gnav .menu  { color: #393735; }

        /*=================================================
                オリジナルセット
        ==================================================*/



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

        .gnav-content {
                display: none;
                position: fixed;
                right: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background:#393735;
                color:#FFF;
                overflow: auto;
                z-index:9999;
                }
                .gnav-logo {
                width:135px;
                position: absolute;
                top:14px;
                left:3%;
                opacity: 1;
                z-index: 999;
                line-height: 100%;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-navigation {
                margin-top:170px;
                width:100%;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-main-nav {
                position:relative;
                padding-bottom:1rem;
                }
                .mobile-main-nav li {
                width:100%;
                text-align: left;
                font-weight:400;
                border-bottom:1px solid #AAA;
                }
                .mobile-main-nav li:last-child {
                border-bottom:none;
                }
                .mobile-main-nav li a {
                letter-spacing: 0.01em;
                padding:15px 0;
                display:block;
                font-size:1.375rem;
                position: relative;
                color:#FFF;
                box-sizing: border-box;
                background:none;
                }
                .mobile-main-nav li:not(.acordion) a:after {
                position: absolute;
                content: '';
                width: 6px;
                height: 6px;
                border: 0;
                border-top: solid 1px #FFF;
                border-right: solid 1px #FFF;
                top: 45%;
                right: 12px;
                transform: rotate( 45deg );
                }
                .mobile-main-nav li li {
                border-top:1px solid rgba(255,255,255,.4);
                border-bottom:none;
                }
                .mobile-main-nav li li a {
                font-size:0.85rem;
                padding-left:1.5rem;
                }
                /*
                .mobile-reservation { position:relative;  }
                .mobile-main-nav li.mobile-reservation { border-bottom:none; }
                .mobile-main-nav li.mobile-reservation a { letter-spacing: 0.01em; padding:15px 0 ; text-align:center; display:block; font-size:1rem; position: relative; background: #FFF; color:#FFF; font-weight:500; }
                .mobile-main-nav li.mobile-reservation a:after { display:none; }
                */
        /*=================================================
                SNS btn
        ==================================================*/

        .mobile-sns-nav {
                position: relative;
                padding:.75rem 0;
                text-align: center;
                }
                .mobile-sns-nav li {
                width:32px;
                height:32px;
                display: inline-block;
                margin:0 6px;
                }
        .mobile-menu { display: none; }

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


        @media screen and (max-width: 767px) {
        .header-wrap-sp { height:80px; position: relative; }
        .mobile-logo { width:120px; top:14px; }
        .gnav-logo { width:120px; top:14px; }
        .nav-toggle { top:5px; }
        .mobile-navigation { margin-top: 120px; }
        
        .header-wrap-sp.fixed .nav-toggle span { background: #1D1B19; }
        .header-wrap-sp.fixed .gnav .menu  { color: #1D1B19; }
        
        .tablet-phone { display: none; }
        .tablet-reservation { display: none; }
        
        .mobile-menu {
                display: block;
                position: fixed;
                bottom:0;
                left:0;
                width:100%;
                height: 60px;
                z-index: 10000;
                -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.2);
                -moz-box-shadow:	0px 0px 10px rgba(0,0,0,.2);
                -ms-box-shadow:		0px 0px 10px rgba(0,0,0,.2);
                -o-box-shadow:		0px 0px 10px rgba(0,0,0,.2);
                box-shadow:	        0px 0px 10px rgba(0,0,0,.2);
                }
        .mobile-phone { position:fixed; bottom:0; left:0;  width:50%; height:60px; 
                font-size:13px;
                line-height: 150%;
                letter-spacing: 0;
                text-align: center;
                padding-top:10px;
                background: url("../images/parts/white.jpg") repeat;
                box-sizing: border-box;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-phone a {
                background: url("../images/parts/white.jpg") repeat;
                display: block;
                width:100%;
                height: 100%;
                }
        .mobile-order {
                position: fixed;
                text-align: center;
                bottom:0;
                right:0;
                width:50%;
                height: 60px;
                letter-spacing: 0;
                font-size:13px;
                z-index: 99999;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-order a {
                width:100%;
                height:60px;
                box-sizing: border-box;
                text-align: center;
                line-height: 200%;
                font-weight:500;
                letter-spacing: 0;
                padding-top:18px;
                display:block;
                color:#FFF;
                background: url("../images/parts/red.jpg") left top repeat;
                overflow: hidden;
                white-space: nowrap;
                text-decoration:none !important;
                position: relative;
                z-index: 1;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                }
                .mobile-order a:hover {
                opacity:1;
                filter: alpha(opacity=100);
                -ms-filter: "alpha( opacity=100 )";
                color:#FFF;
                }

        }



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

       フッター

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

footer {
        width:100%;
        position: relative;
        background: rgb(57,55,53);
        background: linear-gradient(180deg, rgba(57,55,53,1) 0%, rgba(38,35,33,1) 100%);
        font-size:.94117647rem;
        line-height: 200%;
        z-index: 5;
        color:#FFF;
        }
    
        .footer-logo {
        width:100%;
        max-width:150px;
        margin-bottom:1rem;
        position: relative;
        }
        @media only screen and (max-width: 1024px) {
        .footer-logo { width:150px; }
        }
        @media only screen and (max-width: 767px) {
        .footer-logo { width:150px; margin: 2rem auto 0; }
        }

.footer-menu {
        width:100%;
        text-align:center;
        }
        .footer-menu li {
        display: inline-block;
        font-size:1rem;
        padding:.25rem 15px .125rem;
        }
        .footer-menu li a {
        font-size:1rem;
        color:#FFF;
        position: relative;
        display: inline-block;
        text-decoration: none;
        }
        .footer-menu li a:hover {
        cursor: pointer;
        opacity: .6;
        text-decoration: none;
        }
        .footer-menu li a::after {
        position: absolute;
        bottom: 0px;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background: #FFF;
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform .3s;
        }
        .footer-menu li a:hover::after {
        transform-origin: left top;
        transform: scale(1, 1);
        }

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

        @media only screen and (max-width: 767px) {
        .footer-nav { display:none; }
        .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 ;}

        .copyright { padding:0 0 6rem 0; text-align: center;font-size:10px; }
        }

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

		ページトップ

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

#totop {
	display:none;
	*display:block; /* IE 7 and below */
	position:fixed;
	bottom:0;
	right:0px;
	z-index:999;
	}
    :root *> #totop { display:none;	}
    #totop { display:block; }
    *+html #totop { display:block; }
    #totop.open { display:block; }
    a.totop{ background: url("../images/parts/orange.jpg") repeat; width:60px;height:60px; 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{ background-position:center bottom;}

@media only screen and (max-width: 767px) {
    #totop { bottom:20px; right:5px;}
	a.totop{ width:55px;height:55px; font-size:10px;
    background: rgba(0,0,0,.3);
    border-radius:         50%;
    moz-border-radius:     50%;
    -webkit-border-radius: 50%;
    -o-border-radius:      50%;
    -ms-border-radius:     50%;
    }
}