#kento-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.2rem;
}
#kento-title-img {
    width: 100%;
    height: auto;
}

#readDiv1 {
    background-image: url('/image/content/kento/knopka_matches.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}
#readDiv2 {
    background-image: url('/image/content/kento/knopka_izumi.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}
#readDiv3 {
    background-image: url('/image/content/kento/knopka_ume.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}
#readDiv4 {
    background-image: url('/image/content/kento/knopka_keys.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}
#readDiv5 {
    background-image: url('/image/content/kento/knopka_yasuo.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}

.continue-card {
    margin: 2rem 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.continue-card p {
    margin: 0;
    padding: 0 1rem 0 0.5rem;
    text-align: left;
    /* text-indent: 0; */
    color: #f7ebb9;
}

.continue-icon {
    height: 4.5rem;
    margin-left: 0.75rem;
}

#sesh {
    position: fixed;
    width: 70vmin;
    /* height: calc(80vw / 6); */
    display: block;
    bottom: 0;
    left: -100vw;
    transform-origin: 50% 50%;
    /* animation-play-state: paused; */
    animation-direction: normal;
    animation-iteration-count: 1;
    background-image: url("../image/content/kento/sesh.png");
    background-repeat: no-repeat;
    background-size: cover;
    animation: sashAniMobile 2.5s ease-out;
}


@media only screen and (min-width: 1280px) {
    #sesh {
        width: 16vmax;
        animation: sashAniDesktop 4s ease-out;
    }    
    #kento-title {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0.1rem;
    }
    #kento-title-img {
        width: 40%;
        height: auto;
    }
    .continue-icon {
        height: 4.5rem;
        margin-left: 3rem;
    }
}

@keyframes sashAniMobile {
    0% {
        transform: rotate(0deg);
    }
    100% { 
        bottom: 0;
        left: 100vw;
    }
}

@keyframes sashAniDesktop {
    0% {
        transform: rotate(0deg);
    }
    100% { 
        bottom: 0;
        left: 100vw;
    }
}

