.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 50px 170px 0 50px;
	z-index: 1000;
}
.header_logo {
	width: 120px;
}
.header_list {
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.header_list_item {
	padding: 0 12px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}
.header_list_item_link {
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-size: 16px;
	color: #001860;
	letter-spacing: 0.075em;
	position: relative;
	display: block;
	transition: .3s;
}
.header_list_item_link:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0%;
	height: 1px;
	background: #fff;
	transition: all .5s;
	z-index: 3;
}
.header_list_item:hover .header_list_item_link:after {
	width: 100%;
}
@media (max-width: 1000px) {
	.header_list {
		display: none;
	}
}
@media (max-width: 767px) {
	.header {
		padding: 30px 30px 0 20px;
	}
	.header_logo {
    width: 94px;
	}
}