/*menu*/
.hamburger_menu{
    position: fixed;
    right: 5%;
    top: 20px;
    width: 60px;
	height: 60px;
    z-index: 999;
	cursor: pointer;
	background: #009a53;
	border-radius: 50%;
	box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.9);
}
.hamburger_menu:hover,
.hamburger_menu:active{
	opacity: 1;
}
.menu_line{
    background: #FFF;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 40%;
	left: 30%;
    top: 34%;
}
.menu_line-center{
    top: 49%;
}
.menu_line-bottom{
    top: auto;
    bottom: 33%;
}
.hamburger_menu.active{
	background: #FFF;
	box-shadow: none;
}
.menu_line-top.active{
    top: 49%;
    transform: rotate(45deg);
	background: #009a53;
}
.menu_line-center.active{
    transform:scaleX(0);
}
.menu_line-bottom.active{
    top: 49%;
    bottom: auto;
    transform: rotate(135deg);
	background: #009a53;
}
@media only screen and (max-width:400px) {
	.hamburger_menu{
    	width: 50px;
		height: 50px;
	}
}
@media only screen and (max-width:350px) {
	.hamburger_menu{
    	width: 40px;
		height: 40px;
	}
}
/*gnav*/
.sp_nav{
    background: rgba(0,154,84,1);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
}
.sp_nav_wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 80%;
	margin: 0 10%;
}
.sp_nav_item{
    margin: 25px 0;
	list-style: none;
}
.sp_nav_item a{
	color: #fff;
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    padding: 25px;
	text-decoration: none;
    transition: .5s;
}
.sp_nav_item a:after{
	border-bottom: #000000 1px solid;
	width: 20px;
	height: 0;
}
.sp_nav_item a:hover{
    color: #666;
}
.sp_nav_logo{
	margin: 0 25px 40px 25px;
    padding: 0 0 40px 0;
	list-style: none;
	width: 100%;
	max-width: 200px;
	border-bottom: 1px solid #FFF;
}