.newcomer-poster .img1,
.newcomer-poster .img2,
.newcomer-poster .img3,
.newcomer-poster .img4,
.newcomer-poster .img5 {
    animation-name: album;
    -webkit-animation-name: album;
    animation-duration: 10s;
    -webkit-animation-duration: 10s;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
}

.newcomer-poster .img2 {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.newcomer-poster .img3 {
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
}

.newcomer-poster .img4 {
    animation-delay: 3s;
    -webkit-animation-delay: 3s;
}

.newcomer-poster .img5 {
    animation-delay: 4s;
    -webkit-animation-delay: 4s;
}

.newcomer-poster .img6 {
    animation-name: album2;
    -webkit-animation-name: album2;
    animation-duration: 5s;
    -webkit-animation-duration: 5s;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-delay: 5s;
    -webkit-animation-delay: 5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes album {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    10% {
        opacity: 1;
    }
    15% {
        opacity: 0;
    }
}

@-webkit-keyframes album {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    10% {
        opacity: 1;
    }
    15% {
        opacity: 0;
    }
}

@keyframes album2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes album2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
