@charset "utf-8";
/* ================================================================================================================== */
/* HEADER                                                                                                             */
/* ===================================================================================================================*/
#header {
	height: 70px;
	position: relative;
	z-index: 5000;
}
@media screen and (max-width: 750px) {
	#header {
		height: 80px;
	}
}
/* ================================================================================================================== */
/* HEADER:BAR                                                                                                         */
/* ===================================================================================================================*/
#header .bar {
	box-sizing: border-box;
	width: 100%;
	min-width: 1120px;
	height: 70px;
	padding: 0 20px;
	background: #ffffff;
	position: fixed;
	top: 0;
	left: 0;

	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
@media screen and (max-width: 750px) {
	#header .bar {
		min-width: auto;
		min-width: initial;
		height: 80px;
		padding: 0 30px 0 20px;
	}
}
/* =============================================================== */
/* HEADER:BAR:LogoArea                                             */
/* =============================================================== */
#header .bar ul.logo_area {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
#header .bar ul.logo_area li:nth-child(1) img {
	width: 110px;
	height: 36px;
}
#header .bar ul.logo_area li:nth-child(2) {
	margin-left: 13px;
	color: #555555;
	font-size: 0.24rem;

	font-family: poynter-oldstyle-display,serif;
	font-weight: 600;
	font-style: normal;
}
@media screen and (max-width: 750px) {
	#header .bar ul.logo_area {
	}
	#header .bar ul.logo_area li:nth-child(1) img {
		width: 145px;
		height: 47.45px;
	}
	#header .bar ul.logo_area li:nth-child(2) {
		margin-left: 17px;
		font-size: 0.32rem;
	}
}
/* =============================================================== */
/* HEADER:BAR:LogoArea                                             */
/* =============================================================== */
#header .menu_area {
}
@media screen and (max-width: 750px) {
	#header .menu_area {
		width: 100%;
		height: 0;
		overflow: scroll;
		background: #198bcb;
		transition: all .3s ease;
		opacity: 0;
		position: fixed;
		top: 80px;
		left: 0;
	}
	#header.menu_open .menu_area {
		height: auto;
		opacity: 1;
	}
}
/* =============================================================== */
/* HEADER:BAR:MenuCtrl                                             */
/* =============================================================== */
@media screen and (max-width: 750px) {
	#header ul.menu_ctrl {
		width: 40px;
		height: 22px;
		cursor: pointer;
		position: relative;
	}
	#header ul.menu_ctrl li {
		position: absolute;
		display: block;
		width: 100%;
		height: 2px;
		background: #198bcb;
		transition: all .3s ease 0s;
	}
	#header ul.menu_ctrl li:nth-child(1) {
		top: 0;
	}
	#header ul.menu_ctrl li:nth-child(2) {
		top: 10px;
	}
	#header ul.menu_ctrl li:nth-child(3) {
		top: 20px;
	}
}
/* =============================================================== */
/* HEADER:BAR:MenuCtrl(active)                                     */
/* =============================================================== */
@media screen and (max-width: 750px) {
	#header.menu_open ul.menu_ctrl li:nth-child(1) {
		transform: rotate(45deg);
		transform-origin: center center;
		top: 11px;
	}
	#header.menu_open ul.menu_ctrl li:nth-child(2) {
		width: 0;
		right: 0;
	}
	#header.menu_open ul.menu_ctrl li:nth-child(3) {
		transform: rotate(-45deg);
		transform-origin: center center;
		top: 11px;
	}
}
