body.stop {
	overflow: hidden;
}

#header {
	position: absolute;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 0 1rem;
	width: 100%;
	height: 50px;
}

.header_logo {
	width: 290px;
	height: 38px;
	display: flex;
	align-items: center;
}

.header_sp {
	display: none;
	width: 50px;
	height: 50px;
	position: relative;
	cursor: pointer;
}

.header_sp::before {
	content: '';
	position: absolute;
	display: block;
	background-color: #242424;
	opacity: 0.3;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

@media (max-width: 960px) {
	.header_sp {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

.header_sp .header_sp_hamb {
	background-color: #fff;
	width: 24px;
	height: 3px;
	display: block;
	position: relative;
	z-index: 2;
}

.header_sp .header_sp_hamb::before {
	content: '';
	position: absolute;
	display: block;
	background-color: #fff;
	width: 24px;
	height: 3px;
	top: -10px;
	transition: all 0.2s;
}

.header_sp .header_sp_hamb::after {
	content: '';
	position: absolute;
	display: block;
	background-color: #fff;
	width: 24px;
	height: 3px;
	top: 10px;
	transition: all 0.2s;
}

.header_sp .header_sp_hamb.active {
	background-color: inherit;
}

.header_sp .header_sp_hamb.active::before {
	top: 0;
	transform: rotate(45deg);
}

.header_sp .header_sp_hamb.active::after {
	top: 0;
	transform: rotate(-45deg);
}

.header_nav {
	display: flex;
	justify-content: space-between;
	max-width: 695px;
	width: 100%;
	height: 100%;
	margin: 0 1rem;
}

@media (max-width: 960px) {
	.header_nav {
		overflow: auto;
		display: none;
		position: absolute;
		background-color: rgba(33, 33, 33, 0.9);
		max-width: 100vw;
		height: 100vh;
		margin: 0;
		padding: 50px 0;
		top: 0;
		left: 0;
	}
}

.header_nav .header_nav_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}

@media (max-width: 960px) {
	.header_nav .header_nav_list {
		flex-direction: column;
		justify-content: center;
	}
}

.header_nav .header_nav_list li {
	width: 100%;
}

.header_nav .header_nav_list a {
	font-size: 0.875rem;
	line-height: 1.2;
	height: 100%;
	width: 100%;
	color: #fff;
	display: block;
	padding: 1.125rem 0;
	text-align: center;
}

@media (max-width: 960px) {
	.header_nav .header_nav_list a {
		font-size: 1.25rem;
		padding: 1.5rem 0;
	}
}

.header_inf {
	text-align: right;
	min-width: 198px;
}

@media (max-width: 960px) {
	.header_inf {
		display: none;
	}
}

.header_inf .header_inf_tel {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 1.625rem;
	line-height: 1.3;
	position: relative;
	font-family: 'Roboto';
	color: #fff;
}

.header_inf .header_inf_tel::before {
	content: '';
	background-image: url(../images/ico_tel-white.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	width: 18px;
	height: 24px;
	transform: translate(-10%, 0);
}

.header_inf .header_inf_time {
	font-size: 0.75rem;
	line-height: 1.25;
	color: #fff;
}
