@CHARSET "UTF-8";


.header {
	font-family: 'Roboto Condensed',sans-serif;
/*	background-color: #3277CE;*/
/*	background-color: #FFFFFF;*/
	background-color: rgba(255, 255, 255, 0.80);
	color: #111111;
	/*min-width: 1280px;*/
	min-width: 1024px;
	width: 100%;
	/*position: fixed;*/
	top: 0px;
	z-index: 999999;
	height: 80px;
	-webkit-transition: all 0.9s ease;
	transition: all 0.9s ease;
	opacity: 0;
}

.header_show {
	opacity: 1;
}

.logo {
	float: left;
	width: 100%;
	font-size: 16pt;
	font-weight: bold;
	padding-top: 15px;
	padding-left: 30px;
}

.logo > a {
	color: #111111;
}

.header_a {
	width: 100%;
	display: block;
	height: 100%;
	line-height: 40px;
	padding-left: 5%;
}

.menu-pc {
	float: left;
	position: absolute;
/*	bottom: 5px;*/
	bottom: 30%;
	right: 5%;
}

.menu-pc ul > li {
	width: 150px;
	float: left;
	display: block;
	text-align: center;
	color: #111111;
	font-weight: bold;
}

.menu-pc ul > li:hover {
	opacity: 0.6;
}

.menu-pc ul li > a {
	color: #111111;
}

.overlay {
	content: "";
	display: block;
	width: 0;
	height: 0;
	background-color: rgba(0, 0, 0, 0.5);
/*	position: absolute;*/
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200000;
	opacity: 0;
	transition: opacity .5s;
}

.overlay.open {
	width: 100%;
	height: 100%;
	opacity: 1;
}

.menu-trigger {
	display: inline-block;
	width: 36px;
	height: 28px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
/*	top: 30px;*/
	top: 25px;
	right: 30px;
	z-index: 10000000000;
/*
	transform: translateX(0);
	transition: transform .5s;
*/
}

/*
.menu-trigger.active {
	transform: translateX(-250px);
}
*/
.menu-trigger span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #111111;
	transition: all .5s;
}

.menu-trigger.active span {
	background-color: #3277CE;
}

.menu-trigger span:nth-of-type(1) {
	top: 0;
}

.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(12px) rotate(-45deg);
}

.menu-trigger span:nth-of-type(2) {
	top: 12px;
}

.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}

.menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-12px) rotate(45deg);
}



/******************************************************************************/
/** left Header **/

/*
body {
	display: flex;
	flex-direction: column;
}


main {
	display: flex;
}

.g_header {
	height: 70px;
	background-color: #F1F1F1;
}
*/

.left_header {
	width: 7%;
	min-width: 100px;
	height: 100vh;
	text-align: center;
	background-color: #F1F1F1;
	color: #000000;
}

#content {
	width: 93%;
}

/*
#content {
	flex: 1;
}
*/

#logo {
	width: 100%;
	height: 80px;
	background-color: #000000;
}

ul.gmenu_ul > .menu_li {
	width: 100%;
	height: 50px;
	/*line-height: 50px;*/
	border-bottom: 1px solid #CCCCCC;
	padding: 10px 0px;
	font-size: small;
}

li.menu_li > a {
	width: 100%;
	height: auto;
	display: inline-block;
	text-decoration: none;
	color: #000000;
}










/*******************************************************************************/


@media screen and (max-width: 1024px) {
	#left_header {
		/*display: none;*/
	}

	.header {
		height: 60px;
	}

	.logo {
		padding-top: 15px;
		z-index: 100000000000;
		position: relative;
	}

	.menu-trigger {
		top: 15px;
	}

	nav {
		width: 330px;
		height: 100%;
		padding-top: 100px;
		background-color: #FFFFFF;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000000000;
		transform: translate(330px);
		transition: all .5s;
	}

	nav.open {
		transform: translateZ(0);
	}

	nav li {
/*
		color: #fff;
		text-align: center;
		width: 70%;
		text-align: left;
		margin-left: auto;
		letter-spacing: 2px;
*/

		color: #fff;
		width: 100%;
		text-align: left;
		letter-spacing: 2px;
		height: 40px;
		border-bottom: 1px dotted #000000;
		text-decoration: none;
		display: inline-block;
		margin-top: 10px;
	}

}
