@charset "utf-8";
/*-----------------------------------------------
    youtube_popup
-----------------------------------------------*/
#youtube_popup{
    display: none;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    left: 0;
}
#youtube_popup .popupContainer{
    display: table;
    width: 100%;
    height: 100%;
}
#youtube_popup .popupContents{
    display: table-cell;
    vertical-align: middle;
}
#youtube_popup .popupMain{
    padding: 3rem;
}
@media only screen and (max-width:1215px){
    #youtube_popup .popupMain{
        width: 100%;
        margin: 0 auto;
        padding: 1.5rem;
    }
}

/* secPopup */
#youtube_popup .popup{
    margin: 0 auto;
    position: relative;
}
#youtube_popup .btnClose{
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    background: #000;
    border: 0.2rem solid #fff;
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    z-index: 9999;
    box-shadow: 0 0 0.3rem 0.3rem rgba(0,0,0,0.2);
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
#youtube_popup .boxYouTube{
    position: relative;
    background: #000;
}
#youtube_popup .boxYouTube iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media only screen and (max-width:1215px){
    #youtube_popup .btnClose{
        width: 2rem;
        height: 2rem;
        top: -1rem;
        right: -1rem;
        font-size: 10px;
    }
}