@charset "utf-8";


/* -- ul#menu -------------------------------------------------------------------------------- */


ul#menu {
	list-style-type: none;
	width: 100%;
	background: rgba(255,255,255,0.9);
	position: fixed;
    overflow-y: auto;
/*	top: 35px;*/
    top: 18px;
	left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
	display: none;
}

ul#menu li {
	text-align: center;
	border-bottom: 1px solid #000;
/*	width: 90%;*/
	margin: auto;
}

ul#menu li a {
	text-decoration: none;
	display: block;
	padding: 15px 0;
	color: #000;
}

ul#menu li a:hover {
	background: rgba(255,255,255,0.1);
}
ul#menu li:last-child {
	border-bottom: none;
}



/* -- div#sp-icon -------------------------------------------------------------------------------- */

div#sp-icon {
	width: 50px;
	height: 20px;
	position: fixed;
	right: 0px;
	top: 35px;
	z-index: 999;
}

div#sp-icon:hover {
	cursor: pointer;
	opacity: 0.7;
}

div#sp-icon span,
div#sp-icon span:before,
div#sp-icon span:after {
	display: inline-block;
	width: 30px;
	height: 3px;
	border-radius: 3px;
	background: #2D365D;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.3s;
}

div#sp-icon span {
	left: 50%;
	top: 50%;
	transform: translate( -50%, -50% );
}

div#sp-icon span:before {
	content: "";
	transform: translateY( -10px ) rotate( 0deg );
}

div#sp-icon span:after {
	content: "";
	transform: translateY( 10px ) rotate( 0deg );
}


div.sp-open span {
	background: transparent !important;
}

div.sp-open span:before {
	transform: rotate( 45deg ) !important;
}

div.sp-open span:after {
	transform: rotate( -45deg ) !important;
}








