@charset "UTF-8";
/*header*/
header{
width: 100%;
height: 88px;
position: fixed;
z-index: 10000;
background-color: rgba(255,255,255,10);
box-shadow: 0px 9px 5px -3px rgba(100,100,100,0.3);
-webkit-box-shadow: 0px 5px 3px -3px rgba(100,100,100,0.3);
-moz-box-shadow: 0px 9px 5px -3px rgba(0,0,0,0.3);
}
header .inner{
width: 960px;
height: auto;
margin: auto;
padding-top: 20px;
}
header .inner h1{
float: left;
}
header .inner h1 img{
width: 170px;
height: auto;
}
header .inner .gnav{
float: right;
margin-top: 25px;
}
header .inner .gnav ul li{
float: left;
}
header .inner .gnav ul li:nth-child(2n){
margin-left: 20px;
margin-right: 20px;
}
header .inner .gnav ul li a{
color: #3b3b3b;
font: 15px HiraKakuPro;
}
header .inner .gnav ul li a:hover{
color: #e96656;
text-decoration: none;
}
header .nav-open {
    display: none;
}




@media screen and (max-width: 980px) {
    header .inner{
        width: 100%;
    }
    header .inner h1{
        padding-left: 3%;
    }
    header .gnav{
        display: none;
        width: 100%;
        top: 40px;
        left: 0;
        background: rgba(255,255,255,.8);
/*        padding-bottom: 20px;*/
        z-index: 100;
    }
    header .inner .gnav ul{
/*        height: 100vh;*/
    }
    header .inner .gnav ul li{
        float: none;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    header .inner .gnav ul li:nth-child(2n){
        margin-left: 0px;
        margin-right: 0px;
    }
    header .inner .gnav ul li{
        text-align: center;
        font-size: 25px;
        font-weight: bold;
    }
    header .inner .gnav ul li a{
        font-size: 16px;
        font-weight: bold;
    }
    header .nav-open{
        display: block;
        position: absolute;
        line-height: 40px;
        top: 32px;
        right: 20px;
        cursor: pointer;
        color: #000;
    }
    header .nav-open i{
        font-size: 2em;
    }

}