@charset "UTF-8";

/* wijimot */

/* POPUP */
/* フェードインおよびフェードアウト用CSSアニメーション */
.custom-animation {
    opacity: 0;
    transform: rotate3d(1, .5, .5, 180deg) scale(0.5);
    transition: all ease-out 0.4s;
}
.custom-animation-visible {
    opacity: 1;
    transform: none;
    transition: all ease-in 0.3s;
}
