@charset "UTF-8";
/*ボタンキラキラ*/
.cv_btn {
  width: 83%;
  position: absolute;
  bottom: 9%;
  left: 10%;
}

@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.shiny-btn {
  position: relative;
  display: block;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
}

.shiny-btn::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.8) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media only screen and (max-width: 720px) {
  .cv_area {
    position: absolute;
  }
  .shiny-btn {
    position: relative;
    margin: auto;
    width: 90%;
    bottom: 20%;
  }
}
/*ボタンぽよぽよ*/
.poyo {
  height: auto;
  animation: poyo 2s linear 0.5s infinite forwards;
  transform-origin: 50% 50%;
}
@keyframes poyo {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
/*ふわふわ*/
.anime_fuwa {
  animation: fuwafuwa 2s infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(-5px);
  }
}
/*フェードイン*/
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fade-in {
  transition: all 0.3s ease-out;
}

.fade-in.active {
  opacity: 1;
}

/*順番フェードイン*/
.box {
  opacity: 0;
}

/*==================================================
ふわっ
===================================*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==================================================
横ふわっ
===================================*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*==================================================
拡大 → 縮小
===================================*/
.fadescale {
  animation-name: fadescaleAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadescaleAnime {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*==================================================
縮小 → 拡大
===================================*/
.fadescale_re {
  animation-name: fadescalreAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadescalreAnime {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*==================================================
回転
===================================*/
.faderot {
  animation-name: faderotAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes faderotAnime {
  from {
    opacity: 0;
    transform-origin: left top;
    transform: rotate(-15deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}
/*==================================================
回転 逆
===================================*/
.faderot_re {
  animation-name: faderotreAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes faderotreAnime {
  from {
    opacity: 0;
    transform-origin: right top;
    transform: rotate(15deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}
/*==================================================
右移動
===================================*/
.faderight {
  animation-name: faderightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes faderightAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*==================================================
左移動
===================================*/
.fadeleft {
  animation-name: fadeleftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeleftAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*==================================================
上下ふわっ 繰り返しアニメーション
===================================*/
/* アニメーションの基本設定 */
.updown {
  /* アニメーション用の基準位置を確保 */
  animation: float 2s ease-in-out infinite;
  /* アニメーションを適用 */
}

/* @keyframesでアニメーションの動きを定義 */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
    /* 元の位置 */
  }
  50% {
    transform: translateY(-10px);
    /* 上に移動 */
  }
}
/*==================================================
カクカク 繰り返しアニメーション
===================================*/
/* アニメーションの基本設定 */
.kaku {
  /* アニメーション用の基準位置を確保 */
  animation: kaku 1s ease-in-out infinite;
  /* アニメーションを適用 */
}

/* @keyframesでアニメーションの動きを定義 */
@keyframes kaku {
  0%, 100% {
    transform: rotate(5deg);
    /* 元の位置 */
  }
  50% {
    transform: rotate(-5deg);
    /* 上に移動 */
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  animation-delay: 0.4s;
}

.delay-time03 {
  animation-delay: 0.8s;
}

.delay-time04 {
  animation-delay: 1s;
}

/* 拡大 */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}
.anim-box.zoomin.is-animated {
  animation: zoomIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

.jerry_0 {
  animation: jerry_0 2s ease-out;
  animation-delay: 1.8s;
  opacity: 1;
}

@keyframes jerry_0 {
  0% {
    transform: scale(1);
  }
  20%, 40%, 60% {
    transform: scale(0.5);
  }
  30%, 50% {
    transform: scale(0.9);
  }
}
/* スクロールフェードイン*/
.fade {
  transition: all 2000ms;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 50px);
}

.fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}/*# sourceMappingURL=animation.css.map */