@charset "utf-8";
.global-nav .global-menu{
	display: flex;
}
.global-nav .global-menu li{
	margin: 0 4px;
	font-size: 12px;
	display: flex;
	align-items: center;
}
.global-nav .global-menu li a{
	display: flex;
	align-items: center;
	background: #333;
	background: none;
	border-radius: 4px;
	padding: 0 8px;
	min-width: 80px;
	text-align: center;
	justify-content: center;
	color: var(--link-color);
	font-size: 14px;
}
.global-nav .global-menu li a > span{
	margin-right: 4px;
}
.global-nav .global-menu li a > .icon{
	font-size: 17px;
}
.global-nav {
	display: flex;
	justify-content: space-between;
	width: calc(100% - 220px);
}

.menu-btn {
	cursor: pointer;
	width: 40px;
	font-size: 18px;
	background: none;
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 500;
	position: relative;
/* 非表示 */
	display: none;
}
.side-menu{
	position: fixed;
	background: var(--side-bg-color);
	height: 100vh;
	width: 200px;
	left: -100%;
	top: 40px;
	box-shadow: var(--box-shadow);
	padding: 20px;
	transition: .5S;
}
.side-menu.side-menu-active{
	left: 0;
	z-index: 100;
}
/* SP */
@media screen and (max-width: 768px) {
	.global-nav {
		justify-content: end;
	}
	.global-nav .global-menu{
		display: none;
	}
}