@charset "utf-8";
/* ================================================================================================================== */
/* HEADER                                                                                                             */
/* ===================================================================================================================*/
#header {
	width: 100%;
	height: 70px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 5000;
}
@media screen and (max-width: 750px) {
	#header {
		height: 100px;
	}
}
/* ================================================================================================================== */
/* HEADER:BAR                                                                                                         */
/* ===================================================================================================================*/
#header .bar {
	box-sizing: border-box;
	width: 100%;
	min-width: 980px;
	height: 70px;
	padding: 0 30px;
	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 {
		box-sizing: border-box;
		width: 100%;
		min-width: auto;
		min-width: initial;
		height: 100px;
		padding: 0 30px;
	}
}
/* =============================================================== */
/* HEADER:BAR:LogoArea                                             */
/* =============================================================== */
#header .bar .logo_area {
}
@media screen and (max-width: 750px) {
	#header .bar .logo_area {
	}
	#header .bar .logo_area img {
		width: 400px;
	}
}


