@charset "UTF-8";
 
#overlay_menu {
	z-index: 2;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	transition: 0.3s;
	padding-top: 150px;
	visibility: hidden;
	background: url(../img/common/menu_bg.png) no-repeat;
	background-position: left bottom;
}
#overlay_menu .menu_logo {
	position: absolute;
	top: 35px;
	left: 35px;
}
#overlay_menu nav a {
	position: relative;
}
#overlay_menu ul {
	margin-top: 60px;
	padding: 0;
	height: 475px;
	list-style:none;
}
#overlay_menu li {
	margin: 0 0 45px;
	text-align: center;
}
#overlay_menu li a {
	display: inline-block;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.2em;
	transition: 0.3s;
	text-decoration: none;
}
#overlay_menu li a:hover {
	color: #ffe200;
}
.open #overlay_menu {
	opacity: 1;
	transition: 0.3s;
	visibility: visible;
}
#overlay_btn,
#overlay_btn span {
	z-index: 2;
	top: 25px;
	right: 25px;
	position: fixed;
	transition: 0.3s;
}
#overlay_btn {
	width: 65px;
	height: 65px;
	background: #d91c38;
	line-height: 15px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	box-shadow: 0 0 15px rgba(0,0,0,.3);
	cursor: pointer;
	z-index: 3;
}
#overlay_btn:hover {
	background: #fd2b2b;
}
#overlay_btn span {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 36px;
	height: 5px;
	border-radius: 5px;
	background-color: #fff;
}
#overlay_btn span:nth-of-type(1) {top: 20px;}
#overlay_btn span:nth-of-type(2) {top: 30px;}
#overlay_btn span:nth-of-type(3) {top: 40px;}

.cl-effect-12 a::before,
.cl-effect-12 a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	border: 2px solid rgba(0,0,0,0.1);
	border-radius: 50%;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.2);
	transform: translateX(-50%) translateY(-50%) scale(0.2);
}
.cl-effect-12 a::after {
	width: 90px;
	height: 90px;
	border-width: 6px;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.8);
	transform: translateX(-50%) translateY(-50%) scale(0.8);
}
.cl-effect-12 a:hover::before,
.cl-effect-12 a:hover::after,
.cl-effect-12 a:focus::before,
.cl-effect-12 a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
	-moz-transform: translateX(-50%) translateY(-50%) scale(1);
	transform: translateX(-50%) translateY(-50%) scale(1);
}

#overlay_menu .overlay_mail {
	width: 1000px;
	margin: 0 auto;
	padding: 25px 0;
	color: #fff;
	font-weight: bold;
	text-align: center;
	border: 2px solid #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}
#overlay_menu .overlay_mail a {
	color: #fff909;
}