@charset "utf-8";

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

header {
	position: relative;
	padding-top: 90px;
}

@media (1024px <= width) {
	.header {

	}
}

@media (width <= 1023px) {
	body {
	}
	
	.header {
		height: 80px;
		padding-right: 0;
	}
}

@media (width <= 767px) {
	.header {
	}
}

/*----------------------------------------------------------------------- ▼ #header-logo --*/

#header-logo {
	position: absolute;
	top: 15px;
	left: 0;
	height:40px;
	z-index: 1000;
	
	div {
		font-family: Helvetica-B;
		font-size: 12px;
		letter-spacing: 1px;
		text-align: center;
		color: var(--color-orange);
	}
}

@media (1024px <= width) {
	.header-logo {
		
	}
	
	.header-logo img {
		height: 30px;
	}	
}

@media (width <= 1023px) {
	.header-logo {
		top: 17px;
		left: 30px;
	}

	.header-logo img {
		height: 25px;
	}
	
	.header-logo div {
		margin-top: 8px;
		font-size: 13px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.header-logo:hover {
		opacity: 0.75;
	}
}

/*----------------------------------------------------------------------- ▼ #header-tel --*/

#header-tel {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	color: var(--color-blue);
}

/*----------------------------------------------------------------------- ▼ #header-menu --*/

#header-menu {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	
	a {
		display: flex;
		align-items: center;
		position: relative;
		height: ;
		padding: 5px 25px 3px;
		border: 2px solid #666;
		border-radius: var(--border-radius-light);
		background: var(--color-orange);
		font-family: YuGo-B;
		font-size: 16px;
		letter-spacing: 0.25px;
		color: #fff;
		text-align: center !important;
	}

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

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

@media (1024px <= width) {

}

@media (width <= 1280px) {
	#header-menu a {
		position: relative;
		min-width: 140px;
		height: 100px;
	}
}

@media (width <= 1023px) {
	#header-menu {
		display: none;
	}
}

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

}

/*----------------------------------------------------------------------- ▼ #smart-menu-button --*/

#smart-menu-button {
	position: fixed;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, 1);
	cursor: pointer;
	z-index: 1000;
}

#smart-menu-button div,
#smart-menu-button div::before,
#smart-menu-button div::after {
	position: absolute;
	width: 50px;
	height: 4px;
	border-radius: 50px;
	background: #ddd;
	transition: var(--transition);
}

#smart-menu-button div::before,
#smart-menu-button div::after {
	content: '';
}
	
#smart-menu-button div::before {
	top: -10px;
}

#smart-menu-button div {
	top: calc(50% - (4px / 2));
	left: 25px;
}

#smart-menu-button div::after {
	top: 10px;
}

#smart-menu-button_active div::before,
#smart-menu-button_active div::after {
	top: -1px;
	height: 5px;
	background: #15b2d1;
}

#smart-menu-button_active div::before {
	transform: rotate(45deg);
}

#smart-menu-button_active div {
	background: #fff;
}

#smart-menu-button_active div::after {
	transform: rotate(-45deg);
}

@media (width <= 1023px) {
	#smart-menu-button {
		width: 80px;
		height: 80px;
	}
	
	#smart-menu-button div,
	#smart-menu-button div::before,
	#smart-menu-button div::after {
		width: 40px;
		height: 4px;
	}
	
	#smart-menu-button div {
		left: 20px;
	}
}

@media (width <= 500px) {
	#smart-menu-button {

	}
}

@media (hover: hover) and (pointer: fine) {
	/*
	#smart-menu-button:hover div,
	#smart-menu-button:hover div::before,
	#smart-menu-button:hover div::after {
		background: var(--hover);
	}
	*/
}