/* =========================================================
    Clicked Animation
========================================================= */
a:not(.clicked) > div:not(.button-ishikari):not(.item-card) {
  -webkit-transition: all 0.15s cubic-bezier(0.25, 0.35, 0.5, 1.6);
  transition: all 0.15s cubic-bezier(0.25, 0.35, 0.5, 1.6);
}

a.clicked > div:not(.button-ishikari):not(.item-card) {
  -webkit-transition: all 0.15s cubic-bezier(0.25, 0.35, 0.5, 1.6);
  transition: all 0.15s cubic-bezier(0.25, 0.35, 0.5, 1.6);
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}