/*NAVIGATION*/
/*---------------------------------------*/
.__lang-en {
	font-family: 'Anton', sans-serif;
	font-size: 1.46rem;
	color: #fff;
	text-shadow: none;
	transition: 0.3s all;
}
/*nav a:hover .__lang-en {
	text-shadow: 0 0 20px #fefcc9, 10px -10px 30px #feec85, -20px -20px 40px #ffae34, 20px -40px 50px #ec760c, -20px -60px 60px #cd4606, 0 -80px 70px #973716, 10px -90px 80px #451b0e;
}*/

.__lang-en span {
	font-size: 75%;
	display: inline !important;
}
.__lang-ja {
	font-family: 'Noto Sans Japanese', "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 0.86rem;
	letter-spacing: -0.1em;
	font-weight: 700;
	color: #fac031;
}
@media screen and (max-width:768px) {
	.__lang-en {
		font-size: 1.5rem;
	}
	.__lang-ja {
		font-size: 0.8rem;
	}
}

nav {
	width: 100%;
	opacity: 1;
	transition: 0.15s linear;
	font-size: 1.33rem;
	margin-bottom: 50px;
}
nav a {
	display: block;
	text-decoration: none;
	padding-left: 5px;
}
nav > div {
	width: 100%;
	margin: 0 0 15px;
}
nav > div span {
	display: block;
}
nav > div span:last-child {
	margin-top: -5px;
}

@media screen and (max-width:768px) {
	/*HUMBUGER MENU*/
	/*nav-sp {
		display: block;
		width: 100%;
		height: 48px;
		background: rgba(160,193,210,1.0);
		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;
	}
	
}


.button {
	/*flex: 1 1 auto;*/
	/*text-align: center;*/
	/*text-transform: uppercase;*/
	position: relative;
	overflow: hidden;
	transition: .3s;
}
.button:after {
	position: absolute;
	transition: .3s;
	content: '';
	width: 0;
	left: 50%;
	bottom: 0;
	height: 3px;
	background: #000;
}

.button:after {
	height: 120%;
	left: -10%;
	-webkit-transform: skewX(15deg);
	transform: skewX(15deg);
	z-index: -1;
}
.button:hover {
	cursor: pointer;
	color: #5bcaff;
}
.button:hover:after {
	width: 100%;
	left: -10%;
	width: 120%;
}
.button.__here:after {
	width: 100%;
	left: -10%;
	width: 120%;
}



