.header {
	z-index: 10;
}

.sticky-nav_wrapper * {
	font-family: "Segoe UI", "Open Sans", "Meiryo", "Microsoft JhengHei", "MS UI Gothic", "MS PGothic", Arial, Helvetica, sans-serif !important;
	line-height: 1;
	/* white-space: nowrap; */
}

.sticky-nav_wrapper {
	position: sticky;
	top: 0;
	z-index: 10;
	background: #333;
	color: #fff;
}

.sticky-nav_inner {
	max-width: 1366px;
	margin: 0 auto;
	padding: 0 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 52px;
	background: #333;
}

.sticky-nav_title {
	margin-right: 60px;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media(hover: hover) AND (pointer: fine)  {
	.sticky-nav_title:hover{
		color: #ffffff;
	}
}
.sticky-nav_title,
.sticky-nav_menu a {
	color: #ffffff;
}

.sticky-nav_logo {
	margin-right: 12px;
	width: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease;
}

.sticky-nav_menu {
	margin-right: auto;
	display: flex;
	align-items: center;
}

.sticky-nav_tab>a {
	display: block;
	padding: 19px 15px 16px;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	border-bottom: 3px solid transparent;
}

@media(hover: hover) AND (pointer: fine)  {
	.sticky-nav_tab>a:hover {
		color: #2eeeef;
		border-color: #2eeeef;
	}	
}

.sticky-nav_tab[data-active="true"]>a {
	color: #2eeeef;
	border-color: #2eeeef;
}

.sticky-nav_dropdown-menu_wrapper {
	position: absolute;
	display: flex;
	align-items: flex-start;
	padding: 12px 0 45px;
	transition: padding 0.3s ease;
	width: 100%;
}

.sticky-nav_inner::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 0;
	right: 0;
	width: 100vw;
	height: 340px;
	background: rgba(51, 51, 51, 0.9);
	opacity: 1;
}

.sticky-nav_dropdown-menu_wrapper.hide-menu {
	padding: 0;
	height: 0;
}

.sticky-nav_dropdown-menu_wrapper.hide-menu::after {
	height: 0;
	opacity: 0;
}
.sticky-nav_inner.hide-menu::after {
  height: 0;
  opacity: 0;
}
.sticky-nav_dropdown-menu_wrapper.hide-menu * {
	font-size: 0;
	display: none;
}

.sticky-nav_dropdown-menu {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	gap: 15px;
	padding: 20px;
}

.sticky-nav_dropdown-menu > li.title {
	color: #ffffff;
	font-weight:600;
}

.sticky-nav_dropdown-menu a {
	display: block;
	line-height: 1;
	font-size: 14px;
	font-weight: 400;
}

@media(hover: hover) AND (pointer: fine)  {
	.sticky-nav_dropdown-menu a:hover {
		color: #2eeeef;
	}
}

.sticky-nav_btn {
	display: block;
	padding: 10px 16px;
	font-size: 12px;
	line-height: 1;
	color: #fff;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.sticky-nav_btn_wrapper {
	display: flex;
	gap: 1em;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.sticky-nav_btn--download {
	border-color: #fff;
}

.sticky-nav_btn--buy {
	background: #2eeeef;
	color: #333;
	font-weight: 700;
}

@media(hover: hover) AND (pointer: fine)  {
	.sticky-nav_btn--buy:hover {
		background: rgba(46, 239, 239, 0.85);
	}
}


.sticky-nav_wrapper.sticky {
	position: sticky;
}

.sticky-nav_wrapper.sticky .sticky-nav_btn_wrapper {
	opacity: 1;
	visibility: visible;
}

.sticky-nav_wrapper.sticky .sticky-nav_logo {
	width: 30px;
	opacity: 1;
	visibility: visible;
	transition: all 0.6s ease;
}

.sticky-nav_wrapper.sticky .sticky-nav_dropdown-menu_wrapper::after {
	top: calc(52px - 5px);
}

.sticky-nav_tab > i.bi {
	display: none;
}

@media(max-width:1020px) {
	.sticky-nav_inner {
		width: 100%;
		display: flex;
		flex-direction: column;
		height: auto;
		padding: 0;
		background: none;
		align-items: flex-start;
	}

	.sticky-nav_menu {
		display: flex;
		align-items: center;
		flex-direction: column;
		align-content: center;
		width: 100%;

	}

	.sticky-nav_dropdown-menu_wrapper {
		position: relative;
		display: flex;
		justify-content: center;
		padding: 0;
		flex-direction: column;
	}

	.sticky-nav_logo {
		width: 30px;
		opacity: 1;
		visibility: visible;
		transition: all 0.6s ease;
	}

	.sticky-nav_btn_wrapper {
		opacity: 1;
		visibility: visible;
		padding: 12px 10%;
		background: #222;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.sticky-nav_tab>a {
		padding: 12px 10%;
		text-align: left;
		background: #222;
	}

	.sticky-nav_dropdown-menu {
		gap: 0px;
		padding: 0px;
		width: 100%;
	}

	ul.sticky-nav_dropdown-menu li {
		padding: 12px 10%;
		border-bottom: 1px solid #444343;
		width: 100%;
	}
	
	.sticky-nav_dropdown-menu > li.title {
		color: #ffffff;
		font-weight:700;
	}

	.sticky-nav_title {
		display: none;
	}

	.sticky-nav_tab {
		width: 100%;
		border-bottom: 1px solid #333333;
	}

	.sticky-nav_tab > i.bi.bi-chevron-compact-down {
		position: absolute;
		right: 20px;
		margin-top: 10px;
	}

	.sticky-nav_tab > i.bi.bi-chevron-compact-up {
		position: absolute;
		right: 20px;
	}

	.sticky-nav_tab > i.bi {
		font-size: 16px;
		display: block;
	}

	.sticky-nav_btn {
		width: 50%;
		min-width: 150px;
		max-width: 250px;
	}
}

@media(max-width:550px) {
	.sticky-nav_btn_wrapper {
		padding: 12px 20px;
	}

	.sticky-nav_tab>a {
		padding: 12px 20px;
	}

	ul.sticky-nav_dropdown-menu li {
		padding: 12px 20px;
	}

	.sticky-nav_title {
		padding: 12px 20px;
	}
}