@charset "UTF-8";

.inner {
	width: 1000px;
	margin: 0 auto;}

/* header */
.logo{display: none;}
.top-head {
	font-size: 0.8em;
	top: -80px;
	position: absolute;
	width: 100%;
	margin: 36% auto 0;
	padding: 30px 0 0;
	line-height: 1;
	z-index: 999;}
    
.top-head a,
.top-head {
	color: #000;
	text-decoration: none;}
    
.top-head .inner {position: relative;}


.global-nav ul {
	list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;}

.global-nav ul li a {
    font-size: 1.2em;
    padding: 0 30px;}

.global-nav ul li a:hover{
    color: #EA4515;
    text-shadow:0 0 15px #06B93B;
	transition: 0.6s ease;}

/* Fixed */
.top-head.fixed {
	margin-top: 0;
	top: 0;
	position: fixed;
	padding-top: 20px;
	height: 55px;
	background: rgba(255,255,255,0.9);
	/*transition: top 0.65s ease-in;*/
    box-shadow: 0 1px 5px #000;}
    
.top-head.fixed .global-nav ul li a {
	color: #333;
	padding: 0 20px;}

/* Fixed Btn Hover */
.top-head.fixed .global-nav ul li a:after {
	bottom: -10px;}
    
.top-head.fixed .global-nav ul li a:hover {
	color: #EA4515;
	/*bottom: -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: 4px;
	width: 100%;
	background: #666;
	left: 0;
	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;}


/*　画面サイズが481px以上　960pxまでのスマホ横画面対策　*/
@media screen and (min-width:481px) and ( max-width:960px) {
article {padding: 0 30px;}
.inner {
    width: 100%;
    padding: 0 20px;}
        
.global-nav ul li a {padding: 0 20px;}
    
.top-head.fixed .global-nav ul li a {padding: 0 15px;}
}

/*スマホでの表示*/
@media screen and (max-width: 480px) {

.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: #fff;
    width: 100%;
    height: 56px;
    z-index: 999;
    position: relative;}

.top-head.fixed .logo,
.top-head .logo {
    position: absolute;
    left: 13px;
    top: 13px;
    display: block;
    color: #333;
    font-size: 20px;}

.global-nav {
    position: absolute;
/* 開いてないときは画面外に配置 */
    top: -500px;
    background-color: rgba(255, 255, 255,0.95);
    width: 100%;
    text-align: center;
    padding: 10px 0;
    transition: .5s ease-in-out;}
    
.global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 11px;
    display: flex;
    flex-wrap: wrap;}
    
.global-nav ul li {
    width: 100%;
    position: static;}
    
.global-nav ul li:after {display: none;}

.top-head .global-nav ul li a,
.top-head.fixed .global-nav ul li a {
    width: 100%;
    display: block;
    color: #333;
    padding: 18px 0;}
    
.nav-toggle {display: block;}

/* #nav-toggle 切り替えアニメーション */
.open .nav-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(315deg);}
    
.open .nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;}
    
.open .nav-toggle span:nth-child(3) {
    top: 11px;
    transform: rotate(-315deg);}

/* #global-nav スライドアニメーション */
.open .global-nav {transform: translateY(556px);}

}
