@charset "UTF-8";

/* Cubic Bezier
easeOutSine: cubic-bezier(0.39,0.575,0.565,1)
easeOutQuart:cubic-bezier(0.165,0.84,0.44,1)
easeExpo:    cubic-bezier(0.19,1,0.22,1)
easeOutBack: cubic-bezier(0.68,-0.55,0.265,1.55)
*/

@keyframes elastic-scale {
  0% { transform: scale(0.1); }
 20% { transform: scale(1.30); }
 40% { transform: scale(0.75); }
 60% { transform: scale(1.15); }
 80% { transform: scale(0.85); }
100% { transform: scale(1); }
}

a.move-type-01 img {
animation-duration: 0s;
}

a.move-type-01:hover img {
animation-name: elastic-scale;
animation-delay: 0.2s;
animation-duration: 0.6s;
animation-timing-function: cubic-bezier(0.39,0.575,0.565,1);
animation-fill-mode: forwards;
animation-iteration-count: 1;
}

/*  ---------------------------------------------------------  */

