/* CSS Document */
/*スマホ以外の時*/
#bottom-sticky-nav {
	/*display: none;*/
	width:100%;
	height: 50px;
	display: block;
	background:#070066;
	position:fixed;
	top:0;
	left: 0;
	right: 0;
	z-index:9999;
	border: 2px solid;
	padding-top:0px;
	/*padding-top: env(safe-area-inset-top);*/
}
#bottom-sticky-nav ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: flex;
	justify-content: space-evenly;
}
#bottom-sticky-nav ul li {
	flex: 1;
}
#bottom-sticky-nav ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
	height: 50px;
	color: #FFFFFF;
}
#bottom-sticky-nav ul li a:hover,
#bottom-sticky-nav ul li a:focus {
	text-decoration: none;
	color:#FFF500;
}
#bottom-sticky-nav ul li a i {
	font-size: 18px;
}
#bottom-sticky-nav ul li a span {
	font-size: 12px;
	line-height: 1.2;
}
/*　下に下がる動き　*/
#bottom-sticky-nav.DownMove{
	animation: DownAnime 0.5s forwards;
}
#bottom-sticky-nav.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

/*スマホの時*/
/*@media (max-width: 720px) {
	#bottom-sticky-nav {
		width:100%;
		height: 50px;
		position: fixed;
		display: block;
		background:#070066;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 9999;
		padding-bottom: env(safe-area-inset-bottom);
		padding-top:0;
	}
	#bottom-sticky-nav ul {
		list-style: none;
		padding: 0;
		margin: 0;
		display: flex;
		justify-content: space-evenly;
	}
	@keyframes UpAnime{
	  to {
		opacity: 0;
		transform: translateY(100px);
	  }
	}
	@keyframes DownAnime{
	  from {
		opacity: 0;
		transform: translateY(100px);
	  }
	}
}*/





