@charset "utf-8";

#menu {
	list-style-type: none;
	width: 100%;
    background: url("../images/bg.jpg") no-repeat;
    background-attachment: fixed;
    background-size: cover;
	position: fixed;
	left: 0px;
	top: 0;
	z-index: 990;
	display: none;
	padding-left: 0;
	padding-top: 100px;
	height: 100%;
    overflow-y: scroll;
}
#menu li {
	text-align: center;
}
#menu li a {
	display: block;
	padding: 2.0rem 0;
}
#menu li a img {
    max-height: 3.2rem;
}
/*#menu li.active a,
#menu li a:hover {
	background: rgba(255,0,0,1.0);
}*/
#sp-icon {
	width: 120px;
	height: 120px;
	position: fixed;
	right: 0px;
	top: 0px;
	z-index: 999;
}
#sp-icon:hover {
	cursor: pointer;
	opacity: 0.7;
}
@media (max-width: 575.98px) {
    #sp-icon {
	    width: 80px;
    }
}
#sp-icon span,
#sp-icon span:before,
#sp-icon span:after {
	display: inline-block;
	width: 60px;
	height: 5px;
	background: #fff;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.3s;
}
#sp-icon span {
	left: 50%;
	top: 50%;
	transform: translate( -50%, -50% );
}
#sp-icon span:before {
	content: "";
	transform: translateY( -10px ) rotate( 0deg );
}
#sp-icon span:after {
	content: "";
	transform: translateY( 10px ) rotate( 0deg );
}
.sp-open span {
	background: transparent !important;
}
.sp-open span:before {
	transform: rotate( 45deg ) !important;
}
.sp-open span:after {
	transform: rotate( -45deg ) !important;
}