.header {
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
.header_inner {
	display: flex;
	justify-content: space-between;
	max-width: 67rem;
	margin: 0 auto;
	padding: 0 1rem;
	box-sizing: border-box;
	transition: top 0.3s;
}
.header.action {
	top: -3.75rem;
}
.logo img {
	width: 6.7rem;
	height: 1.8rem;
	margin-top: 1.5rem;
}
.menubar {
	display: flex;
	justify-content: space-between;

	margin-top: 1.25rem;
	align-items: center;
}
.header_close_icon {
	display: none;
}
.menu_toggle {
	display: none;
}
.menu_toggle img {
	width: 1.4rem;
	height: 1.4rem;
}

.header_menu {
	display: flex;
	gap: 1.85rem;
}
.header_menu li {
	min-width: fit-content;
}
.header_menu li a {
	font-size: var(--font-size-16);
	font-weight: var(--font-weight-600);
	font-family: var(--font-Product);
	color: var(--color-gray43);
	line-height: 1.5;
	opacity: 0.5;
	min-width: fit-content;
	white-space: nowrap;
}

.header_menu li a:hover,
.header_menu li a.active {
	opacity: 1 !important;
}

.start_btn {
	margin-left: 8.7vw;
	padding: 0.8rem 0.8rem;
	padding-right: 1rem;
	display: inline-flex;
	gap: 0.45rem;
	max-height: 2.5rem;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-gray36);
	border-radius: 0.55rem;
	max-width: fit-content;
	width: 11.5rem;
	min-width: fit-content;
}
.start_btn span {
	padding: 0.15rem;
	display: flex;
	max-height: 0.6rem;
	align-items: center;
	justify-content: center;
	color: var(--color-gray01);
	font-family: var(--font-Product);
	font-size: var(--font-size-8);
	background-color: var(--color-red);
	border-radius: 0.55rem;
	max-width: 1.8rem;
	min-width: fit-content;
}
.start_btn p {
	margin-top: 0.1rem;
	color: var(--color-gray35);
	font-family: var(--font-Product);
	font-size: var(--font-size-13);
	font-weight: var(--font-weight-500);
}

@media (max-width: 1100px) {
	.header_inner {
		height: 2.8rem;
		align-items: center;
	}

	.header_menu {
		gap: 2.5rem;
	}
	.header_menu li a {
		font-size: var(--font-size-22);
		font-weight: var(--font-weight-600);
		color: var(--color-gray26);
	}
	.menu_toggle {
		display: block;
	}
	.menubar {
		display: none;
		position: fixed;
		top: 0;
		right: -250px;
		height: 100vh;
		width: 250px;
		flex-direction: column;
		justify-content: flex-start;
		align-items: start;
		background-color: var(--color-gray01);
		padding: 5rem 0 0 1.25rem;
		box-shadow: -4px 0 5px rgba(0, 0, 0, 0.2);
		transition: right 0.3s ease-in-out;
	}
	.menubar.open {
		display: flex;
		right: 0;
		margin: 0;
	}

	.header_close_icon {
		display: block;
		width: 2.2rem;
		height: 2.2rem;
		cursor: pointer;
		position: fixed;
		top: 0.7rem;
		right: 0.9rem;
	}
	.header_menu {
		flex-direction: column;
		gap: 1.5rem;
	}

	.start_btn {
		margin-top: 2rem;
	}
	.logo img {
		width: 5.15rem;
		height: 1.4rem;
		margin-top: 0;
	}
	.start_btn {
		position: fixed;
		bottom: 5rem;
		right: 0.65rem;
		color: var(--color-gray26);
		border: 0.1rem solid var(--color-gray26);
		padding: 0.8rem 1.2rem;
	}
	.start_btn p {
		color: var(--color-gray26);
	}
}
