@charset "UTF-8";

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

       Fixed ヘッダー

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

header.main-header { position: relative; z-index: 10000;}
        .header-wrap {
        position: fixed;
        background:#FEF3D3;
        width:100%;
        height:140px;
        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:1240px;
                margin-left:auto;
                margin-right:auto;
                box-sizing: border-box;
                z-index: 2;
                }
                .fixed-logo {
                width:220px;
                position: absolute;
                top:22px;
                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 {
                font-family: 'Noto Sans JP', sans-serif;
                position:absolute;
                top:44px;
                right:20px;
                width:890px;
                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;
                }
                .fixed-main-nav {
                position:relative;
                float:right;
                }
                .fixed-main-nav li {
                float:left;
                position: relative;
                text-align: center;
                box-sizing: border-box;
                padding-right:3rem;
                font-size:15px;
                line-height: 100%;
                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-main-nav li:last-child {
                padding-right:0;
                }
                .fixed-main-nav li a {
                color:#4E515A;
                line-height:120%;
                font-weight:400;
                padding:40px 0 5px;
                letter-spacing: .025em;
                display: block;
                -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 li a:before {
                content:"";
                display: block;
                position: absolute;
                top:0;
                left:50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                width:47px;
                height:32px;
                }
                .fixed-main-nav li:nth-child(1) a:before { background: url("../images/parts/menu_01.png") center center / cover; }
                .fixed-main-nav li:nth-child(2) a:before { background: url("../images/parts/menu_02.png") center center / cover; }
                .fixed-main-nav li:nth-child(3) a:before { background: url("../images/parts/menu_03.png") center center / cover; }
                .fixed-main-nav li:nth-child(4) a:before { background: url("../images/parts/menu_04.png") center center / cover; }
                .fixed-main-nav li:nth-child(5) a:before { background: url("../images/parts/menu_05.png") center center / cover; }
                .fixed-main-nav li:nth-child(6) a:before { background: url("../images/parts/menu_06.png") center center / cover; }

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

        .fixed-main-nav > li a {
                position: relative;
                display: inline-block;
                transition: .3s;
                }
                .fixed-main-nav > li a:after {
                position:absolute;
                bottom:-1px;
                left:50%;
                content:'';
                width:0;
                height:2px;
                background-color:#4E515A;
                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;
                }

        /*=================================================
                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:4px; width:184px; }
        .header-wrap.fixed .fixed-navigation { top:13px; }

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

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

        @media screen and (max-width: 1100px) {
        .fixed-main-nav li { padding-right:2rem; }
        }

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

       Mobile ヘッダー

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

.header-wrap-sp {
        display: none;
        position: absolute;
        width:100%;
        height:90px;
        z-index: 1;
        background:#FEF3D3;
        overflow: hidden;
        }
        .mobile-logo {
        width:160px;
        position: absolute;
        top:20px;
        left:5%;
        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:#29C0D5;
                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: #29C0D5; }
                .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:#29C0D5; -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:#29C0D5;  -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: #29C0D5; }
                .header-wrap-sp.fixed .active .nav-toggle span { background: #29C0D5; }
                .header-wrap-sp.fixed .gnav .menu  { color: #29C0D5; }

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


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

        .gnav-content {
                font-family: 'Noto Sans JP', sans-serif;
                display: none;
                position: fixed;
                right: 0;
                top: 0;
                width: 100%;
                height: 100%;
                color:#4E515A;
                background:#FEF3D3;
                overflow: auto;
                z-index:9999;
                }
                .gnav-logo {
                width:160px;
                position: absolute;
                top:20px;
                left:5%;
                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:180px;
                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 dotted #B7B4B1;
                }
                .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:#4E515A;
                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 #4E515A;
                border-right: solid 1px #4E515A;
                top: 45%;
                right: 12px;
                transform: rotate( 45deg );
                }
                .mobile-main-nav li li {
                border-top:1px solid #4E515A;
                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:140px; top:13px; }
        .gnav-logo { width:140px; top:13px; }
        .nav-toggle { top:5px; }
        .mobile-navigation { margin-top: 140px; }
        
        
        }



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

       フッター

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

footer {
        width:100%;
        position: relative;
        background:#FEF3D3 url("../images/parts/line.png") center top repeat-x;
        font-size:.94117647rem;
        line-height: 200%;
        z-index: 10;
        }
    
        .footer-logo {
        width:100%;
        max-width:280px;
        margin-bottom:1rem;
        position: relative;
        }
        @media only screen and (max-width: 1024px) {
        footer { background:url("../images/parts/line-tab.png") center top repeat-x; }
        .footer-logo { width:240px; }
        }
        @media only screen and (max-width: 767px) {
        footer { background:url("../images/parts/line-sp.png") center top repeat-x; }
        .footer-logo { width:180px; margin: 2rem auto 0; }
        }

.copyright {
        position: relative;
        z-index: 100;
        letter-spacing:0;
        text-align: center;
        box-sizing: border-box;
        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:20px;
        right:20px;
        z-index:999;
        }
        :root *> #totop { display:none;	}
        #totop { display:block; }
        *+html #totop { display:block; }
        #totop.open { display:block; }
        a.totop {
        width:50px;
        height:40px;
        padding-top:60px;
        display:block;
        cursor:pointer;
        text-align: center;
        color:#2CBCD6;
        font-size:13px;
        line-height: 100%;
        position: relative;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        }
        a.totop:before {
        content:"";
        display:block;
        position: absolute;
        top:0;
        left:50%;
        margin-left:-1px;
        width:2px;
        height:50px;
        background:#2CBCD6;
        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;
        }
        a.totop:hover{ padding-top:70px;  }
        a.totop:hover:before { height:60px;  }
        @media only screen and (max-width: 767px) {
        a.totop p { display: block; }
        #totop { bottom:20px; right:5px;}
        a.totop{ font-size:10px; padding-top:40px; }
        a.totop:before { height:30px; }
        a.totop:hover{ padding-top:50px; }
        a.totop:hover:before { height:40px; }
        }