@charset "UTF-8";

.menu-btn {
	  display: none;
}
.overlay {
    display: none;
}

@media screen and (max-width: 1000px) {



.menu-btn {
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: 999;
	display: inline;
	font-size: 24px;
}
.menu-btn a {
    display: inline-block;
    text-decoration: none;
	height: 40px;
	width: 45px;
	text-align: center;
	background: #333333;
	padding-top: 10px; 
    /* safari hack */
}
.btn-open:after {
    color: #ffffff;
    content: "\f394";
    font-family: "Ionicons";
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
	font-size:24px;
}
.btn-open:hover:after {
    color: #ffffff;
}
.btn-close:after {
    color: #ffffff;
    content: "\f2d7";
    font-family: "Ionicons";
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}
.btn-close:hover:after {
    color: #ffffff;
}
/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    z-index: 200;
   display: none;
    overflow: auto;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}
.overlay .menu-cont {
	max-width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
}

.overlay ul {
	list-style: none;
	margin: 0px auto;
	padding: 0px;
	max-width: 600px;
}
.overlay .sp_nav {
	clear: both;
	float: none;
	padding-top: 20px;
}
.overlay .sp_nav a {
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	border-bottom: 1px solid #d1d1d1;
	display: block;
	text-decoration: none;
	padding: 20px 20px 20px 50px;
	position:relative;
}
.overlay .sp_nav a:after {
    color: #ffffff;
    content: "\f125";
    font-family: "Ionicons";
	position: absolute;
	top:20px;
	left:10px;
    font-size: 16px;
}
.overlay .sp_nav li:last-child a{
	border-bottom: none;
}

}