@charset "UTF-8";
/*
header
=======================================================================*/

#header {
	height: 95px;
	background: #fff;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 101;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header_container {
	max-width: 100%;
	width: 100%;
	position: relative;
	padding: 0 50px;
	height: 90px;
}

.header_container p {
	font-size: 1.3rem;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, 'Noto Sans JP', -apple-system, BlinkMacSystemFont, メイリオ, Meiryo, sans-serif;
}

.logo--hdr {
	display: inline-block;
	height: 60px;
}

.logo--hdr img {
	height: 60px;
}


.head_right {
	width: auto;
	justify-content: center;
}

.head_right p {
	display: inline-block;
	padding-right: 2em;
}

@media only screen and (max-width: 768px) {
	#header {
		height: 60px;
	}
	.header_container {
		padding: 0 4vw;
		height: 60px;
	}
	.header_container p {
		font-size: 1rem;
	}
	.head_left {
		margin:  auto;
		width: auto;
		justify-content: center;
	}
	.head_right {
		position: absolute;
		right: 3.4666667vw;
	}
	.logo--hdr img, .logo--hdr {
		height: auto;
		width: 32vw;
		line-height: 0;
	}
}