#modal-overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#modal-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: 0.6s;
}

#player{
    width: 90%;
    aspect-ratio: 560/315;
    position: relative;
    z-index: 0;
}

@media screen and (min-width: 769px) {
    #player {
        width: min(80%,1400px);
    }
}

#player iframe,
#player video{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 0;
}

#btn-play{
    width: min(124px, 100vw*(124/750));
    height: auto;
    aspect-ratio: 1/1;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}

.modal-close{
    display: block;
    width: min(55px, 100vw*(55/750));
    height: min(55px, 100vw*(55/750));
    overflow: hidden;
    color: transparent;
    background: url(../img/close.png) no-repeat center/contain;
    position: absolute;
    top: min(30px, 100vw*(30/750));
    right: min(30px, 100vw*(30/750));
    cursor: pointer;
}

.mfp-close{
    font-size: 50px;
}

.btn-mangapark {
    margin-top: min(40px, 100vw*(40/750));
}
@media screen and (min-width: 769px) {
    .btn-mangapark{
        margin-top: 30px;
    }
}