#overlay{
    width: 100%;
    height: 100vh;
    display: block;
    background: #000000c9;
    position: fixed;
    top:0;
    left: 0;
    z-index: 9999999999999;
}
.modalBox{
    width: 69vw;
    height: 80vh;
    position: fixed;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 99999999999999;
    /* overflow-y: auto; */
}
.modalBox iframe{
    width: 100%;
    height: 100%;
}
#overlay::after{
    position: fixed;
    top: 2vw;
    right: 4vw;
    display: block;
    content: '';
    width: 5px;
    height: 50px;
    background: #ffffff;
    z-index: 999999999999999;
    transform: rotate(-45deg);
    cursor: pointer;
}
#overlay::before{
    position: fixed;
    top: 2vw;
    right: 4vw;
    display: block;
    content: '';
    width: 5px;
    height: 50px;
    background: #ffffff;
    z-index: 999999999999999;
    transform: rotate(45deg);
    cursor: pointer;
}
.details_area{
    margin-top: 2em;
}
.details_area >dt{
    border-left: 6px solid #ccf1f0;
    padding-left: 1em;
    margin-bottom: 1em;
}
.details_area dd li dl{
    display: flex;
}
.details_area dd li dl dt{
    min-width: 3.5em;
}
@media only screen and (max-width: 847px) {
    .modalBox{
    width: 100%;
    height: 54vw;
    }
}