
/*----------------------------------------------------------------------> ▼ .general <--*/

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

.header {
	display: flex;	
	justify-content: flex-end;
	position: absolute;
	width: calc(100% - 110px);
	background: rgba(255, 255, 255, 0.0);
	border-bottom: 0px solid #ddd;
	z-index: 500;
}

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

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

/*----------------------------------------------------------------------> ▼ .header_logo <--*/

.header_logo {
	position: absolute;
	display: block;
	padding-top: 25px;
	padding-left: 50px;
	z-index: 500;
}

.header_logo img {
	width: auto;
	height: 30px;
}

.header_copy {
	margin-top: 5px;
	font-family: NotoSans-B;
	font-size: 14px;
	letter-spacing: 1px;
	text-align: center;
}

@media (width <= 1023px) {
	.header_logo {
		padding-left: 30px;
	}
}

@media (width <= 767px) {
	.header_logo {
		padding-left: 30px;
	}
}

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

/*----------------------------------------------------------------------> ▼ .header_menu <--*/

.header_menu {
	display: flex;
	justify-content: flex-end;
}

.header_menu a {
	display: flex;
	align-items: center;
	position: relative;
	height: 100px;
	margin: 0 20px;
	border-left: 0px solid #eee;
	font-family: NotoSans-B;
	font-size: 15px;
	letter-spacing: 1px;
	color: #444;
}

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

.header_menu span {
	letter-spacing: -0.5px;
}

@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 {
		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%;
	}
}
