@charset "UTF-8";
/* * * * ベースセット * * * */
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  border: none;
}
#main-container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
#main-container img {
  width: 100%;
  height: auto;
  display: block;
}

/**** LP ****/
.relative-wrap {
  position: relative;
  width: 100%;
}
.animation-bg {
  width: 100%;
  display: block;
}
.voice-maga-txt {
  position: absolute;
  top: 29%;
}
/* 拡大縮小 */
.animation {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1s;
}
.keyframe5 {
  animation: anim_sc 2s infinite;
  display: block;
  transition: transform 0.3s ease;
}
@keyframes anim_sc {
  0% {
    transform: scale(0.9, 0.9);
  }
  50% {
    transform: scale(1.13, 1.13);
  }
  100% {
    transform: scale(0.9, 0.9);
  }
}
/* フェードイン */
.fadeIn {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 0.5s;
}
.fadeIn.active {
  opacity: 1;
  transform: translate(0, 0);
}
/* スライドアップ */
.slideUp {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease-out;
}
.slideUp.active {
  opacity: 1;
  transform: translateY(0);
}
/* バウンス */
.bounce {
  animation: bounce 2s infinite ease-in-out;
}
@keyframes bounce {
  0% {
    transform: scale(1, 1) translate3d(0, 0, 0);
  }
  10% {
    transform: scale(1.05, 0.95) translate3d(0, 0, 0);
  }
  30% {
    transform: scale(0.95, 1.05) translate3d(0, -8%, 0);
  }
  50% {
    transform: scale(1.02, 0.97) translate3d(0, 0, 0);
  }
  57% {
    transform: scale(1, 1) translate3d(0, -2%, 0);
  }
  64% {
    transform: scale(1, 1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1, 1) translate3d(0, 0, 0);
  }
}

/* * * * SP * * * */
@media screen and (max-width: 968px) {
  /* アニメーション */
  .relative-wrap {
    overflow: hidden;
  }
}
