/*NAVIGATION*/
.__nav {
	width: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 10px;
	left: 0;
	font-family: 'Anton', sans-serif;
}
.__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	letter-spacing: -.4em;
	text-align: center;
	font-size: 1.1rem;
}
.__nav ul li {

	/*-webkit-box-shadow: 0 0 3px 2px rgba(200,200,200,1);
	box-shadow: 0 0 3px 2px rgba(200,200,200,1);*/
	transition: 0.2s linear;
	width: calc(100% / 8);
	width: calc(100% / 8);
	letter-spacing: normal;
	display: inline-block;
	padding: 0 .25%;
	margin: 0 0 1%;
	text-align: center;
}
.__nav li a:hover {
	animation: flash 0.12s linear 2;
}
.__nav ul li a {
	display: block;
	padding: 7px;
	color: rgba(0,0,0,1.0);
	background: rgba(255,255,0,1.0);
	border-radius: 5px;
}
@media screen and (max-width:1100px) {
	.__nav ul li {
		font-size: 0.82rem;
	}
	.__nav ul li a {
		padding: 5px 2px;
	}
}
/*@media screen and (max-width:1080px) {
	.__nav ul li {
		width: calc(100% / 5);
		max-width: calc(100% / 5);
	}
}*/
@media screen and (max-width:800px) {
	.__nav ul li {
		width: calc(100% / 4);
		max-width: calc(100% / 4);
	}
}
@media screen and (max-width:768px) {
	.__nav ul li {
		width: calc(100% / 4);
		max-width: calc(100% / 4);
		padding: 0 .7%;
	}
}
@media screen and (max-width:480px) {
	.__nav ul li {
		width: calc(100% / 2);
		max-width:  calc(100% / 2);
		padding: 0 1.5% 1.5%;
	}
}

/*humbuger menu*/
.__nav-sp {
	display: none;
}

@media screen and (max-width:640px) {
	/*HUMBUGER MENU*/
	.__nav-sp {
		display: block;
		width: 100%;
		height: 48px;
		background: rgba(0,0,0,0.85);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 899;
	}
	.menu-trigger {
		display: block;
		cursor: pointer;
		position: fixed;
		width: 30px;
		height: 27px;
		top: 10px;
		right: 10px;
		z-index: 900;
	}
	.menu-trigger,
	.menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.menu-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: rgba(255,255,255,1.0);
		border-radius: 4px;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 12px;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 0;
	}
	.menu-trigger.active {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	.menu-trigger.active span {
		background-color: rgba(255,255,0,1.0);
	}
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(12px) rotate(-45deg);
		transform: translateY(12px) rotate(-45deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
	.menu-trigger.active span:nth-of-type(3) {
		opacity: 0;
	}
	
	
	.__nav {
		width: 100%;
		background: rgba(0,0,0,0.85);
		margin: 0;
		padding: 0;
		position: fixed;
		bottom: inherit;
		left: 0;
		top: -100%;
		font-family: 'Anton', sans-serif;
		z-index: 900;
		transition: 0.2s linear;
	}
	.__nav.__open {
		top: 48px;
	}
	.__nav ul {
		text-align: left;
	}
}




