/*----------------------------------------
** footer
----------------------------------------*/
footer {
	background: rgba(16,16,16,1.0);
	color: #fff;
	padding: 50px 0;
	position: relative;
	/*z-index: 3;*/
	margin-top: -2%;
}
footer .__nav {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	font-size: 0.93rem;
}
footer .__nav a {
	color: #fff;
	text-decoration: none;display: block;
	padding: 0 1em;
}
footer .__nav a span {
	display: inline-block;
	position: relative;
	z-index: 1;
}
footer .__nav a span::after {
	content: '';
	width: 0;
	height: 100%;
	background: #00ffff;
	background: -moz-linear-gradient(left, #00ffff 1%, #ff00ff 100%);
	background: -webkit-linear-gradient(left, #00ffff 1%,#ff00ff 100%);
	background: linear-gradient(to right, #00ffff 1%,#ff00ff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffff', endColorstr='#ff00ff',GradientType=1 );
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: 0.3s all;
}
footer .__nav a:hover span::after {
	content: '';
	width: 100%;
	height: 100%;
	background: #00ffff;
	background: -moz-linear-gradient(left, #00ffff 1%, #ff00ff 100%);
	background: -webkit-linear-gradient(left, #00ffff 1%,#ff00ff 100%);
	background: linear-gradient(to right, #00ffff 1%,#ff00ff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffff', endColorstr='#ff00ff',GradientType=1 );
	position: absolute;
	top: 0;
	left: 0;
}
footer .__sns {
	display: flex;
	justify-content: space-between;
	width: 200px;
	margin: 0 auto 30px;
}
footer .__sns > div {
	width: 45px;
}
footer .__copyrights {
	font-size: 0.73rem;
	text-align: center;
	margin: 0;
}

@media screen and (max-width:768px) {
	footer {
		background: rgba(16,16,16,1.0);
		color: #fff;
		padding: 0 0 50px;
		position: relative;
		/*z-index: 3;*/
		margin-top: -2%;
	}
	footer .__inner {
		width: 100%;
	}
	footer .__nav {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		margin-bottom: 30px;
		font-size: 0.93rem;
		background: rgba(39,39,39,1.0);
	}
	footer .__nav > div {
		width: 50%;
		text-align: center;
		border-bottom: 1px solid rgba(16,16,16,1.0);
	}
	footer .__nav > div:nth-child(odd) {
		border-right: 1px solid rgba(16,16,16,1.0);
	}
	footer .__nav a {
		color: #fff;
		text-decoration: none;display: block;
		padding: 0.5em 1em;
	}
}
