@charset "utf-8";
body {
  font-family: "Hind","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333;
  color:#fff;
  background-color:#000;
}

a {color:#fff;}
a:visited {color: #fff;}
a:hover {opacity:0.7;}

@media screen and (max-width: 767px) {
}


.action{
  opacity: 0;
  }
@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
    transform: translate3d(0, 25px, 0);
	}
	to {
    opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fadeInUp {
	from {
    opacity: 0;
    transform: translate3d(0, 25px, 0);
	}
	to {
    opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.fadeInUp{
  -webkit-animation: fadeInUp .8s ease-in-out forwards;
  animation: fadeInUp .8s ease-in-out forwards;
}