@charset "utf-8";
/* CSS Document */

/*  http://www.webopixel.net/lab/sample/15/1207responsive-nav/   */



.inner {
    width: 100%;/*********/
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
 
/* header */
#top-head {
    /*top: -100px;
    position: absolute;*/
    width: 100%;
    /*margin: 100px auto 0;
	margin: 40px auto 40px;
    padding: 30px 0 0;*/
    line-height: 1;
    z-index: 999;
	padding:45px 0px; background-color:#000f19;
}
#top-head a,
#top-head {
    color: #eaeaea;
	font-family: 'Cormorant', serif; 
    font-size: 20px;
    font-size: 1.11rem;
    text-decoration: none;
}
#top-head a:hover {color:#d3b5c2;}/*****/

#top-head .inner {
    position: relative;
}
#top-head .logo {
    float: left;
    /*font-size: 36px;*/
}
#global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    /*bottom: 0;*/
	top:50%;/*****/
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
    padding: 0 18px 0 18px;/*****/
}

#top-head .logo img { width: 15%; margin-right: 10px;}

 
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    /*padding-top: 10px;
    height: 55px;
    background: #fff;
    background: rgba(255,255,255,.7);*/
	padding:12px 0px; background:rgba(0,15,25,0.8);/****/
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    /*font-size: 24px;
    color: #333;*/
}
#top-head.fixed #global-nav ul li a {
    color: #eaeaea;
    padding: 0 18px 0 18px;/*****/
}
#top-head.fixed #global-nav ul li a:hover { color:#d3b5c2;}/*****/
 
/* Toggle Button */
#navbut {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#navbut div {
    position: relative;
}
#navbut span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #eaeaea;/****/
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#navbut span:nth-child(1) {
    top: 0;
}
#navbut span:nth-child(2) {
    top: 11px;
}
#navbut span:nth-child(3) {
    top: 22px;
}

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

#global-nav ul li a {
    padding: 0 8px;/*****/
}

#top-head.fixed #global-nav ul li a {
    color: #eaeaea;
    padding: 0 8px;/*****/
}
	
}



@media screen and (max-width: 1160px) {
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        /*background: transparent;*/
		height:56px;/*****/
    }
    #mobile-head {
        background: rgba(0,15,25,0.8);
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 8px;
        top: 8px;
        /*color: #333;
        font-size: 26px;*/
    }
	#mobile-head .logo img { margin-bottom:0px; /*width:50%;*/ }
	
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: #fff;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 18px;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #000f19;
        padding: 18px 0;
		border-bottom:1px dotted #000f19;/****/
    }
	#top-head #global-nav ul li a:hover { color:#d3b5c2;}/*****/
	
    #navbut {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #navbut span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #navbut span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #navbut span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
}
