@charset "utf-8";
/* Opening */
.opening {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #1C1C1C url('../img/top/bg.png');
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s ease-in-out;
}

.seane0{opacity: 0;scale:1.2;}
.seane0.is-show{opacity: 1;transition: 1s ease-in-out;scale: 1;}
.opening.is-hide{opacity: 0;visibility: hidden;}
@media (max-width: 768px){
    .opening{padding: 20px;}
}