@charset "UTF-8";
/****************************************
* CSSアニメーション
*****************************************/
/* フェードアップ */
.anim-box.fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* フェードダウン */
.anim-box.fadedown.is-animated {
  animation: fadedown 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadedown {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スライドイン右から */
.anim-box.slideinR.is-animated {
  animation: slideInR 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInR {
  0% {
    transform: translateX(120px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* スライドイン左から */
.anim-box.slideinL.is-animated {
  animation: slideInL 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInL {
  0% {
    transform: translateX(-120px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ぽよぽよ */
.anim-box.poyopoyo {
  animation: poyopoyo 4.5s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  /*0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }*/
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(0.95);
  }
  10% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.95);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.anim-box.grow-underline {
  position: relative;
  display: block; /* コンテンツの幅に合わせる */
  padding-bottom: 0.5em; /* ボーダー分のスペースを確保 */
  text-align: center;
}

.anim-box.grow-underline.is-animated::after {
  content: ""; /* 疑似要素には content が必須 */
  position: absolute; /* 親要素 .container を基準に配置 */
  bottom: 0; /* 下端に配置 */
  left: 50%; /* 中央揃えの開始点 */
  width: 0; /* 初期幅をゼロに設定 */
  height: 3px; /* ボーダーの太さ */
  background-color: #222; /* ボーダーの色 */
  transform: translateX(-50%); /* 中央に配置するための調整 */
  animation: grow-underline-anime 2s ease-out forwards; /* アニメーションの適用 */
}

/* keyframesアニメーション */
@keyframes grow-underline-anime {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}/*# sourceMappingURL=animation.css.map */