@charset "utf-8";


.overlayMenuBtn {
	position: absolute;
	top: 23px;
	right: 2%;
	height: 20px;
	cursor: pointer;
	z-index: 100001;
	display: block;
	background: #f39700;
	padding: 12px 10px 6px 10px;
}
.overlayMenuBtn span {
	position: relative;
	display: block;
	width: 16px;
	border: 1px solid #fff;
	transition: .5s;
}
.overlayMenuBtn span:nth-child(1) {
	top: 0;
}
.overlayMenuBtn span:nth-child(2) {
	top: 4px;
}
.overlayMenuBtn span:nth-child(3) {
	top: 8px;
}
.overlayMenu {
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	overflow: auto;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 100000;
}
.overlayMenuInner {
	padding: 10px 0% 40px 0%;
	
}
.overlayMenuHeader {
	width: 60%;
	height: 35px;
	line-height: 35px;
	background-color: rgba(255, 255, 255, 0.9);
}
.overlayMenuHeader img{
	margin: 15px 0 0 10px;

}.overlayMenuItem ul {
	margin: 20px 0 40px 0;
	padding: 0;
	list-style-type: none;
	letter-spacing: 0.1em;
}
.overlayMenuItem ul li {
	border-top: 1px solid #ccc;
}
.overlayMenuItem ul li:last-child {
	border-bottom: 1px solid #ccc;
}
.overlayMenuItem ul li a {
	display: block;
	width: 96%;
	padding: 20px 0 20px 4%;
	color: #000;
	text-decoration: none;
	transition: .5s;
}
.overlayMenuItem ul li a:hover {
	background-color: #fce2ba;
}
.overlayMenuItem ul li a:hover {
	color: #333;
}

@media print, screen and (min-width : 768px) {
.overlayMenuBtn {
	display: none;
}
}
