.inner {
    width: 100%;
    margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
/*.inner:after {
    content: "";
    clear: both;
    display: block;
}*/
 
/* header */
#top-head {
    top: 0;
    position: fixed;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 ;
    line-height: 1;
    z-index: 999;
}
#top-head a,
#top-head {
    color: #e9d3b8;
    text-decoration: none;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
#top-head .inner {
    position: relative;
}
#top-head .logo {
	position: relative;
	top: 0;
	left: 20px;
    font-size: 36px;
}
#global-nav {
	width: 70%;
}
#global-nav ul {
    list-style: none;
    font-size: 1.3rem;
	display: flex;
	justify-content: flex-end;
	margin-right: 10px;
}
#global-nav ul li {
    /*float: left;*/
	/*width: 140px;*/
	width: 12.5%;
	text-align: center;
}
#global-nav ul li:nth-child(1) {
	width: 10%;
}
#global-nav ul li:nth-child(8) {
	width: 15%;
}
#global-nav ul li a {
    /*padding: 0 30px;*/
}
#global-nav ul li a span.en {
	display: inline;
	transition: .3s;
}
#global-nav ul li a span.jp {
	display: none;
	font-size: 1.2rem;
	animation: fadeIn 0.5s linear 0s;
}
#global-nav ul li a:hover span.en {
	display: none;
}
#global-nav ul li a:hover span.jp {
	display: inline;
}
 
/* Fixed */
#top-head.fixed {
    /*margin-top: 0;
    top: 0;*/
    /*position: fixed;*/
    /*padding-top: 10px;*/
    /*height: 55px;*/
    /*background: #fff;*/
    background: rgba(0,0,0,.7);
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
}
/*#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}*/
/*#top-head.fixed #global-nav ul li a {
    color: #ffffff;
    padding: 0 20px;
}*/
 
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 22px;
    width: 34px;
    height: 28px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #e9d3b8;
    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: 991px) {
    #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;*/
    }
    #mobile-head {
        /*background: rgba(0,0,0,.7);*/
        width: 100%;
        height: 70px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 10px;
        top: 10px;
        /*color: #333;
        font-size: 26px;*/
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: rgba(0,0,0,.7);
        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;
		flex-direction: column;
    }
    #global-nav ul li,
	#global-nav ul li:nth-child(1),
	#global-nav ul li:nth-child(8) {
		width: 100%;
		text-align: center;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #e9d3b8;
        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: translateY(570px);
        -webkit-transform: translateY(570px);
        transform: translateY(570px);
    }
}


@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}