/*--------------------------------------------------------
アニメーション
--------------------------------------------------------*/
/* animations.cssの記述に追加 */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* // animations.cssの記述に追加 // */
@keyframes pickup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pickup2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes swing_c {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(15deg);
  }
  80% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing_c.go {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: swing_c;
  animation-name: swing_c;
}
.pickup {
  display: block;
  animation-name: pickup;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}
.pickup2 {
  display: block;
  animation-name: pickup2;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}

/***********
* ddn *
************/
@keyframes ddn {
    0%{
        transform: scale(1.5);
    }
    50%{
        opacity: 1;
        transform: scale(1)
    }

    62.5%{
        transform: scale(1.2);
    }

    75%{
        transform: scale(1);
    }

    82.5%{
        transform: scale(1.05);
    }

    100%{
        opacity: 1;
        transform: scale(1);
    }
}  
.ddn {
    opacity: 0;
  }
.ddn.go {
  animation-name: ddn;
  transform-origin: center;
  animation-timing-function: ease-in;
}

/***********
* updown *
************/
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.updown {
    animation-name: updown;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite; 
}

/***********
* poyopoyo *
************/
@keyframes poyopoyo {
    0%, 40%, 60%, 80% {
        transform: scale(1.0);
    }
    50%, 70% {
        transform: scale(0.95);
    }
}
.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

/***********
* scroll *
************/
@keyframes scroll {
  0% {
    transform: translateY(-50%);
  }
  80% {
    transform: translateY(0);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.scroll {
    animation: scroll 2.5s infinite;;
}
/*--------------------------------------------------------
//アニメーション
--------------------------------------------------------*/