@charset "utf-8";



/* Responsive Menu[Media Queries Layout]
------------------------------------------------------------- */

#menu_box {
	display: none;
}

#menuOverlay {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	display: none;
	position: fixed;
	z-index: 9950;
}



/*Switch Button*/

#switchBtnArea {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 0;
	position: fixed;
	z-index: 9990;
}

#switchBtnArea #switchBtn {
	width: 42px;
	height: 42px;
	display: block;
	background: #6ca5c5;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 9998;
	opacity: 0.7;
	transition: opacity 0.3s;
}

#switchBtnArea #switchBtn:hover {
	opacity: 0.9;
	transition: opacity 0.3s;
}

#switchBtnArea #switchBtn span {
	left: 20%;
	width: 60%;
	height: 4px;
	display: block;
	position: absolute;
	background-color: #fff;
	transition: all 0.2s linear;
}

#switchBtnArea #switchBtn span:nth-of-type(1) {
	top: 8px;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

#switchBtnArea #switchBtn span:nth-of-type(2) {
	top: 19px;
	-webkit-transform: scale(1);
	transform: scale(1);
}

#switchBtnArea #switchBtn span:nth-of-type(3) {
	bottom: 8px;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

#switchBtnArea #switchBtn.btnClose {
	background: #6ca5c5;
	opacity: 0.9;
}

#switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
	top: 19px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {
	-webkit-transform: scale(0);
	transform: scale(0);
}

#switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {
	bottom: 19px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#rwdMenuWrap {
	top: 0;
	right: -260px;
	width: 260px;
	height: 100%;
	background: #b3ced9;
	overflow: auto;
	position: fixed;
	z-index: 9999;
}

#rwdMenuWrap ul {
	margin: 0;
	width: 100%;
}

#rwdMenuWrap ul > li {
	width: 100%;
}

#rwdMenuWrap ul > li a {
	padding: 15px 12px 15px 25px;
	text-align: left;
	display: block;
	background-color: #b3ced9;
	position: relative;
	border-bottom: #fff 1px solid;
	color: #333;
	transition: all 0.3s;
}

#rwdMenuWrap ul > li a:hover {
	text-decoration: none;
	background-color: #c1e4ed;
	transition: all 0.3s;
}

#rwdMenuWrap ul li a::before {
	content: '';
	margin-top: -5px;
	top: 50%;
	left: 8px;
	width: 10px;
	height: 10px;
	color: #888;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
	display: block;
	position: absolute;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

#rwdMenuWrap ul li.ext_link a::after {
	content: '\f08e';
	font-family: FontAwesome;
	font-size: 0.9rem;
	line-height: 1;
}



/*ClearFix
---------------------------------------*/

#menu-area > ul::after {
	content:"";
	display:block;
	clear:both;
}



/* Google Translate
------------------------------------------------------------- */

/* Google Translate Element*/

#google_translate_element {
	position: absolute;
	right: 62px;
	top: 10px;
	z-index: 1000 !important;
}

#google_translate_element .goog-te-gadget-simple {
	border-radius: 4px;
	height: 26px;
	padding-top: 3px;
	padding-left: 20px;
}

#google_translate_element .goog-te-gadget-simple a {
	text-decoration: none;
}

#google_translate_element .goog-te-gadget-icon {
	width: 100%;
	height: 24px;
	padding-left: 20px;
	background-repeat: no-repeat;
	position: absolute;
	left: 1px;
	top: 3px;
}





/* for MiddleSize
--------------------------------------------------------------------------------- */

@media print, screen and (min-width:480px) {

	/*Switch Button*/

	#switchBtnArea #switchBtn {
		width: 50px;
		height: 50px;
		top: 18px;
		right: 20px;
	}

	#switchBtnArea #switchBtn span:nth-of-type(1) {
		top: 11px;
	}

	#switchBtnArea #switchBtn span:nth-of-type(2) {
		top: 23px;
	}

	#switchBtnArea #switchBtn span:nth-of-type(3) {
		bottom: 11px;
	}

	#switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
		top: 23px;
	}

	#switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {
		bottom: 23px;
	}


	/* Google Translate
	------------------------------------------------------------- */

	/* Google Translate Element*/

	#google_translate_element {
		right: 85px;
		top: 18px;
	}

}



