@charset "UTF-8";



/*menu*/
.menu{
    height: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    z-index: 999;
}
.menu__line{
    background: #ddd;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 9px;
}
.menu__line--bottom{
    bottom: 0;
}
.menu__line--top.active{
    top: 8px;
    transform: rotate(45deg);
}
.menu__line--center.active{
    transform:scaleX(0);
}
.menu__line--bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
}



/*スクロール位置jsで色変更*/
.color_b .menu__line{
    background: #5c7b98;
}
/*白戻し*/
.menu .active{
    background: #fff !important;
}




/*gnav*/
.gnav{
    background: rgba(20,30,40,0.9);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 998;
}
.gnav__wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.gnav__menu__item{
    margin: 40px 0;
}
.gnav__menu__item a{
    color: #fff;
    font-size:20px;
    font-weight: bold;
    padding: 40px;
    text-decoration: none;
    transition: .5s;
	
}
.gnav__menu__item a:hover{
    color: #bbb;
}


/*h1ロゴ*/

.gnav__menu__item h1 {
	}
	
.gnav__menu__item h1 img{
	width:70%;
	max-width:160px;
	padding-left:18px;
	}

/*ロゴオフセット*/
.menulogooffset{
	position:relative;
	top:-10px;
	}