.inner {
   width:90%;
	max-width:1280px;
	margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}

.navi-bg{
	background:url("../img/bg.png");
}

/* header */
#top-head {
   /* top: -100px;*/
    position: fixed;
    width: 100%;
    margin: 0 auto ;
    line-height: 1;
    z-index: 999;
	background: #fff;
}
#top-head a,
#top-head {
    color: #333;
    text-decoration: none;
}
#top-head .inner {
	 padding: 15px 0 10px;
    position: relative;
}
#top-head .logo {
    /*float: left;
    font-size: 36px;*/
	text-align: center;
}
#top-head .logo img{
   width:90px;
	text-align: center;
}

#global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    top: 20px;
	min-width: 400px;
}
#global-nav ul li {
	color: #8B7B64;
	padding: 0 16px 7px 16px;
  float: right;
	font-size: 16px;
  writing-mode: vertical-rl; 
  -moz-writing-mode: vertical-rl;
  -o-writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
	transition: all 0.3s ease;
}
#global-nav ul li:hover {
	background: rgba(141,123,100,.2);
	transition: all 0.5s ease;
}

#global-nav ul li:before{
	position: relative;
	top:-4px;
	left:0;
	display: inline-block;
	content: '○';
	font-size:10px;
	font-weight: 700;
	transform:scale(0.7);
}
#global-nav ul li a {
}
 
/* Fixed */
/*#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 55px;
    background: #fff;
    background: rgba(255,255,255,.7);
    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: #333;
    padding: 0 20px;
}
*/

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #8D7B64;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}




/*以下 ハンバーガーメニュー*/

@media screen and (max-width: 950px) {
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
			z-index: 9999;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
			z-index: 9999;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        /*background: transparent;*/
			z-index: 9999;
    }
    #mobile-head {
        /*background: #fff;*/
        width: 100%;
        height: 56px;
        z-index: 9999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        /*position: absolute;
        left: 13px;
        top: 0px;*/
        color: #333;
        font-size: 26px;
    }
	#top-head .logo img{
		width:50px;
		margin-top: -7px;
	}
	
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
			top:87px;
        right: -100vw;
        background: rgba(0,0,0,.8);
        width: 90%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .4s ease-in-out;
        -moz-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
			z-index: 9000;
			height:100vh;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;
			writing-mode: horizontal-tb; 
  -moz-writing-mode: horizontal-tb;
  -o-writing-mode: horizontal-tb;
  -webkit-writing-mode: horizontal-tb;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle 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: translateX(-100vw);
        -webkit-transform: translateX(-100vw);
        transform: translateX(-100vw);
    }
}

