.l-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 32px 20px;
	z-index: 30001;
}

.l-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
}

.l-header__logo {
	width: 117px;
	transition: all 0.6s ease-in-out;
}

.l-header.is-sticky .l-header__logo {
	opacity: 0;
	visibility: hidden;
}

.l-header__logo>a {
	display: block;
	width: 100%;
}

.l-header__logo>a img {
	display: block;
	width: 100%;
}

.l-header__contact {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	padding: 18px 36px;
	background-color: #cd421d;
	border-radius: 100px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	transition: background-color 0.5s ease-in-out;
}

@media (any-hover: hover) {
	.l-header__contact:hover {
		background-color: #898a8a;
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.l-header {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.l-header__inner {}

	.l-header__logo {
		width: 86px;
	}

	.l-header.is-sticky .l-header__logo {}

	.l-header__logo>a {}

	.l-header__logo>a img {}

	.l-header__contact {
		padding: 12px 24px;
		background-color: rgb(65 65 65 / 70%);
		border-radius: 30px;
		backdrop-filter: blur(12px);
	}
}