/* DESKTOP */
.site-head {
	width: 100%;
	height: 11.8vw;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	margin: auto;
	transition: height 0.3s ease;
}

.header-cont {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	position: relative;
}

.web-title1 {
	position: absolute;
	top: 1.875vw;
	left: 2.34375vw;
	width: auto;
	height: 7.4479vw;
}

.web-title1 img {
	/* width: 100%; */
	height: 100%;
}

.logo img {
	position: absolute;
	top: 1.71875vw;
	right: 2.34375vw;
	height: 4.9479vw;
	width: 4.16667vw;
}

.menu-togg {
	position: absolute;
	right: 2.65625vw;
	top: 7.4479vw;
}

.burger-btn {
	background: none !important;
	border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	outline: none !important;
}

.line {
	background-color: #000;
	height: 0.0781vw;
	width: 3.4896vw;
	margin: 0.3385vw 0;
}

.web-title-mobile {
	display: none;
}

.logo a:hover {
	cursor: pointer;
}

.web-title-mobile a:hover,
.web-title1 a:hover {
	cursor: pointer;
}


/* Mobile */
@media (max-width: 800px) {
	.site-head {
		width: 100%;
		max-width: 1000px;
		height: 150px;
		background-color: #fff;
		margin: auto;
	}

	.web-title1 img {
		display: none;
	}

	.web-title-mobile {
		display: block;
		width: 246px;
		height: 112px;
		left: 15px;
	}

	.web-title-mobile img {
		width: 100%;
		height: 100%;
	}

	.logo img {
		width: 62px;
		height: 74px;
		top: 13px;
		right: 15px;
	}

	.line {
		width: 47px;
		height: 1.5px;
		margin: 5px 0;
	}

	.menu-togg,
	.burger-btn {
		top: 95px;
		right: 23px;
	}

	.site-head {
		padding-top: 13px;
		padding-left: 15px;
		padding-right: 15px;
	}
}