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

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

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

@media (width <= 1279px) {
	.header {
		width: calc(100% - 80px);
	}
}

@media (width <= 767px) {
	.header {
		height: 80px;
	}
}

/*----------------------------------------------------------------------> ▼ .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;
	}
	
	.header_logo img {
		height: 25px;
	}
}

@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: 100%;
	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 (width <= 1279px) {
	.header_menu a {
		margin: 0 15px;
	}
}

@media (width <= 1149px) {
	.header_menu a:first-child {
		display: none;
	}
}

@media (width <= 1050px) {
	.header_menu a {
		margin: 0 10px;
	}
}

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