/*--------------------------------------------------------
ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³
--------------------------------------------------------*/
/* 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;
}

/*--------------------------------------------------------
//ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³
--------------------------------------------------------*/