@charset "utf-8";


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

ul#menu {
	list-style-type: none;
	width: 100%;
	background: #fff;
	color:#aaa;
	font-size:0.9em;
	opacity: 1;
	position: absolute;
	left: 0px;
	top: 89px;
	z-index: 990;
	display: none;
}

ul#menu li {
	text-align: center;
	border-bottom:1px solid #aaa;
}

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

ul#menu li a:hover {
	background: #fff;
	opacity: 0.7;
	color:#000;
}

ul#menu:last-of-type li a img{
	text-decoration: none;
	height:1.5em;
	filter:invert(100%);
}

ul#menu:last-of-type li a{
	text-align:center;
}



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

div#sp-icon {
	width: 70px;
	height: 0px;
	position: absolute;
	right: 15px;
	top:45px;
	z-index: 999;
}

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

div#sp-icon span,
div#sp-icon span:before,
div#sp-icon span:after {
	display: inline-block;
	width: 40px;
	height: 3px;
	background: #fff;
	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;
}








