@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
 
/*チラツキ防止*/
.fade-in,
.fade-in-bottom{ visibility:visible !important;}
.inview_fade-in,
.inview_fade-in-bottom{ visibility:hidden; }

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
.fade-in {
	-webkit-animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
.fade-in-bottom {
	-webkit-animation: fade-in-bottom 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-bottom 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * Delay / Iteration
 * ----------------------------------------
 */
.animeDelay-05s{
  -webkit-animation-delay:0.5s;
  animation-delay:0.5s;
  }
.animeDelay-1s{
  -webkit-animation-delay:1s;
  animation-delay:1s;
  }
.animeDelay-15s{
  -webkit-animation-delay:1.5s;
  animation-delay:1.5s;
  }
.animeDelay-2s{
  -webkit-animation-delay:2s;
  animation-delay:2s;
  }
.animeDelay-3s{
  -webkit-animation-delay:3s;
  animation-delay:3s;
  }
.animeDelay-4s{
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
}
.animeDelay-5s{
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
}
.animeIteration-5{  /* 5回繰り返す */
  -webkit-animation-iteration-count: 5;
  animation-iteration-count: 5;
}