@charset "utf-8";

/*---------------------------------------------------------------------- .general --*/

#header {
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.header {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	background-color: rgba(255, 255, 255, 1);
	border-bottom: 1px solid #ddd;
}

.header.scrolled {
	box-shadow: 0 0 3px #ccc;
}


@media (1024px <= width) {
	.header {
		flex-wrap: wrap;
		padding: 30px 30px 19px 0;
	}
}

@media (width <= 1023px) {
	body {
		--header_height: 81px;
	}
	
	.header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		justify-content: space-between;
		padding: 15px 30px;
		z-index: 2000;
	}
}

@media (width <= 767px) {
	.header {
		padding: 15px;
	}
}

/*---------------------------------------------------------------------- .header_logo --*/

.header_logo {
	display: block;
}

.header_logo img {
	width: auto;
}

@media (1024px <= width) {
	.header_logo {
		position: absolute;
		top: 35px;
		left: 30px;
	}
	
	.header_logo img {
		height: 70px;
	}
}

@media (width <= 1023px) {
	.header_logo {

	}

	.header_logo img {
		height: 50px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.header_logo:hover {
		opacity: 0.75;
	}
}

/*---------------------------------------------------------------------- .header_menu --*/

.header_menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}

.header_menu .tel {
	margin-right: 30px;
	font-size: 32px;
}

.header_menu .icon::after {
	content: '\f2a0';
	margin-right: 7px;
}

.header_menu a img {
	width: 50px;
}

@media (width <= 1023px) {
	.header_menu {
		display: none;
	}
}
	
/*---------------------------------------------------------------------- .header_menu_2 --*/

.header_menu_2 {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.header_menu_2 a {
	position: relative;
	margin-top: 10px;
	z-index: 200;
	font-family: Yugo-B;
	font-size: 12px;
}

.header_menu_2 a:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--hover);	
	transition: 0.2s;
}

@media (1024px <= width) {
	.header_menu_2 a {
		line-height: 40px;
		letter-spacing: 0;
	}
	
	.header_menu_2 a:not(:last-child) {
		margin-right: 30px;
	}
}

@media (width <= 1023px) {
	.header_menu_2 {
		display: none;
	}
}

@media (hover: hover) and (pointer: fine) {
	.header_menu_2 a, .header_menu_2 a:before {
		transition: var(--transition);
	}
	
	.header_menu_2 a:hover {
		color: var(--hover);
	}

	.header_menu_2 a:hover::before {
		width: 100%;
	}
}
	
.header_menu_2 .current-page a {
	color: #f7b52c;
}

.header_menu_2 .current-page a:before {
	content: none;
}









@media (hover: hover) and (pointer: fine) {

}