@charset "utf-8";


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

ul#menu {
	list-style-type: none;
	width: 80%;
	background: #ffffff;
	opacity: 0.95;
	position: absolute;
	right:  0px;
	top:   70px;
	z-index: 990;
	display: none;
}

ul#menu li {
	text-align: left;
	font-size: 1.6rem;
	margin:  0;
	padding: 0.5em 1em;
	box-sizing: border-box;
	xbackground: url(../../images/arrow2.gif) no-repeat right center;
}



ul#menu li a {
	text-decoration: none;
	display: block;
	color: #000000;
}

ul#menu li:hover {
	background-color: rgba(204, 204, 204, 0.7);
}




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

div#sp-icon {
	width:  11.2vw;
	height: 11.2vw;
	position: absolute;
//	top:   4.4vw;
	bottom:  29%;
	right: 4.5vw;
	z-index: 999;
}

@media screen and (max-width:750px) {
	.toppage div#sp-icon {
		bottom:  -5.0em;
	}
}

@media screen and (max-width:414px) {
	div#sp-icon {
		bottom:  35%;
	}
}



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:  7.5vw;
	height: 1.2vw;
	background: #999999;
	border-radius: 0.8em;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.3s;
}

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

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

div#sp-icon span:after {
	content: "";
	transform: translateY(  2.3vw ) 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;
}








