.header {
	position: fixed;
	z-index: 99;
	margin: 0 auto;
	top: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: calc(121.4rem * var(--scale));
	background-color: rgb(255 255 255 / .5);
	backdrop-filter: blur(60px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.7rem 8.6rem 1.7rem 2.6rem;
	border-radius: 1.1rem;
}
.header_left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.header_logo {
	width: 9.8rem;
	display: block;
}
.header_logo_text {
	font-family: "Montserrat", sans-serif;
	font-size: 1.1rem;
	color: #fff;
	background-color: var(--main-color);
	border-radius: 100vmax;
	padding: .8rem 1.2rem;
}
.header_right {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.header_visit_btn {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
	font-size: 1.7rem;
	color: #fff;
	width: 15rem;
	height: 4.5rem;
	border-radius: 100vmax;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(119deg, rgba(245, 177, 92, 1) 0%, rgba(255, 146, 13, 1) 100%);
	padding-top: .3rem;
}
.header_line_btn {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
	font-size: 1.7rem;
	color: #fff;
	width: 15rem;
	height: 4.5rem;
	border-radius: 100vmax;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .8rem;
	background: linear-gradient(119deg, rgba(82, 212, 133, 1) 0%, rgba(0, 185, 0, 1) 100%);
	padding-top: .3rem;
}
.header_line_btn:before {
	content: "";
	width: 2rem;
	height: 1.9rem;
	background-image: url(../img/line-icon-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.header_entry_btn {
	font-family: "Montserrat", sans-serif;
	font-size: 2.2rem;
	color: #fff;
	width: 15rem;
	height: 4.5rem;
	border-radius: 100vmax;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, rgba(255, 153, 0, 1) 0%, rgba(90, 190, 204, 1) 50%, rgba(42, 252, 255, 1) 100%);
}
@media (max-width: 767px) {
	.header {
		position: fixed;
		top: inherit;
		bottom: 1rem;
		width: 100%;
		background: none;
		backdrop-filter: blur(0);
		padding: 0;
		margin: 0;
	}
	.header_left {
		display: none;
	}
	.header_right {
		gap: .7rem;
		justify-content: center;
		width: 100%;
	}
	.header_visit_btn {
		font-size: 1.3rem;
		width: 11.3rem;
		height: 4rem;
		padding-top: .3rem;
	}
	.header_line_btn {
		font-size: 1.3rem;
		width: 11.3rem;
		height: 4rem;
		padding-top: .3rem;
	}
	.header_line_btn:before {
		width: 1.7rem;
		height: 1.6rem;
	}
	.header_entry_btn {
		width: 11.3rem;
		height: 4rem;
		font-size: 1.6rem;
	}
}