.m-topKeyMovie{
    position:relative;
    top:0px;
    width:100%;
    height:100vh;
    overflow-y: hidden;
    max-height:767px;
  }
  
.m-topKeyMovieContents{
    box-sizing: border-box;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
  
.m-topKeyMovieSp{
    display:none;
    position:relative;
    top:0px;
    width:100%;
    height:100%;
}
  
.m-topKeyMovieSpContents{
    position:absolute;
    background-size: cover;
    height:100%;
    width:100%;
    z-index:1;
    transition: opacity 500ms ease;
}

.m-topKeyMovieSpContents:nth-child(1){
    background-image: url("/images/001.png");
}

.m-topKeyMovieSpContents:nth-child(2){
    background-image: url("/images/002.png");
}

.m-topKeyMovieSpContents.hide{
    opacity:0.0;
    z-index:2;
}

.m-topKeyMovieOverlay{
    position:absolute;
    top:0px;
    left:0px;
    right:0px;
    z-index:10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:100%;
    max-height:767px;
    background-color: rgba(255, 255, 255, 0.5);
}

.m-topKeyMovieOverlay h2{
    font-size: 4.0rem;
    font-weight: 400;
}
.m-topKeyMovieOverlay h3{
    font-size: 2.0rem;
    font-weight:400;
}

.m-topKeyMovieOverlayContents{
    text-align:center;
}

.m-topStoreLink{
    display: flex;
    justify-content: center;
    margin-top:30px;
}

.m-topStoreLink p{
    display:block;
    width:130px;
    margin: 0 15px;
}

.m-topPlayMovie{
    margin-top:50px;
}

.m-topPlayMovie img{
    width:72px;
    margin-bottom:5px;
}

@media screen and (max-width: 768px) {
    .m-topKeyMovieOverlay h2{
        font-size: 2.5rem;
    }
    .m-topKeyMovieOverlay h3{
        font-size: 1.6rem;
    }
    .m-topKeyMovieSp{
        display:block;
        
    }
    .m-topKeyMovieContents{
        display:none;
    }
    .m-topKeyMovie{
        height:100vw;
        overflow-y: hidden;
        max-height:auto;
        height:139vw;
    }
    .m-topPlayMovie{
        margin-top:20px;
    }

    .m-topPlayMovie img{
        width:50px;
    }
}