@charset "UTF-8";

/* アニメーション発生時のZ軸ズレ対応のため←サイトエディタに悪影響が発生したため無効化 */
/*
#area-side {
  position: relative;
  z-index: 1;
}
*/

.init-block_animation {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}
.init-block_animation.-infinite { animation-iteration-count: infinite; }
.init-block_animation.-hinge { animation-duration: 2s; }
.init-block_animation.-flipOutX,
.init-block_animation.-flipOutY,
.init-block_animation.-bounceIn,
.init-block_animation.-bounceOut { animation-duration: .75s; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.-shake {
  animation-name: shake;
}


@keyframes rotateIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3) rotate(-60deg);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1) rotate(0deg);
  }
}

.-rotateIn {
  animation-name: rotateIn;
}


@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
    opacity: 1;
  }
}

.-flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.-fadeInUp {
  animation-name: fadeInUp;
}


@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.-fadeInRight {
  animation-name: fadeInRight;
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.-fadeInLeft {
  animation-name: fadeInLeft;
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.-fadeInDown {
  animation-name: fadeInDown;
}



@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.-fadeIn {
  animation-name: fadeIn;
}


@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.-bounceIn {
  animation-name: bounceIn;
}


@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }
}

.-zoomIn {
  animation-name: zoomIn;
}
