@keyframes fadeIn {

	0% {
		opacity: 0;
		visibility: hidden;
		display: none;
	}

	1% {
		display: block;
		visibility: visible;
	}

	100% {
		opacity: 1;
		visibility: visible;
	}
}

@keyframes fadeOut {

	0% {
		opacity: 1;
		visibility: visible;
		display: block;
	}

	99% {
		opacity: 0;
		visibility: hidden;
	}

	100% {
		display: none;
	}
}

.anchor-nav {
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	display: none;
	transition:
		opacity 150ms ease-out,
		visibility 150ms ease-out;
}

.anchor-nav.is-open {
	opacity: 1;
	visibility: visible;
	display: block;
}

.is-submenu-open .anchor-nav {
	display: none;
}

.is-submenu-hidden .anchor-nav {
	transform: translateY(100%);
}

.anchor-nav-list {
	width: 980px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.anchor-nav-list::-webkit-scrollbar {
	display: none;
}

.anchor-nav-link {
	color: #676767;
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 1.5;
	text-decoration: none;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.anchor-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	transition: height 150ms ease-out;
}

.anchor-nav-link.current {
	color: #005ce2;
}

.anchor-nav-link.current::after {
	height: 2px;
	background-color: #005ce2;
}

.anchor-nav-link:hover {
	color: #005ce2;
	text-decoration: none;
}

.anchor-nav-link:hover::after {
	height: 2px;
	background-color: #005ce2;
}

.anchor-nav-link:focus-visible {
	outline: none;
}

.anchor-nav-link:focus-visible::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 2px;
	border: 2px solid #8fc4ff;
	border-radius: 2px;
}

.anchor-nav-link a {
	text-decoration: none;
}

.anchor-nav-link a:hover {
	text-decoration: none;
}

.anchor-nav-scrollbar {
	width: 1280px;
	height: 2px;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.anchor-nav-scrollbar span {
	position: absolute;
	bottom: 0;
	height: 2px;
	background-color: #005ce2;
	transition: all 0.3s ease;
}
