*{
    margin: 0;
    padding: 0;
}


/* モーダル画面の枠など調整 */
.modalInner{
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
    border-color: #fff;
    border-radius: 5px;
    border-width: 10px;
}

/* xボタン */
.modalClose{
    position: absolute;
    width: 34px;
    height: 34px;
    top: -17px;
    right: -17px;
    border-radius: 50%;
    box-shadow: -3px 3px 10px 0px rgba(0,0,0,.4);
    display: none;
    background-color: #000;
    cursor: pointer;
}

.modalClose:hover{
    background-color: #333;
}

.modalArea{
    background-color: #fff;
    overflow-y: auto;
}

.modalTgt{
    cursor: pointer;
}

/*
新動画プレイヤーのサイズ調整
高さは動画の形状に応じてJSで調整されます
*/
.playerWrapper{
    width: 100%;
    overflow: hidden;
}

/* モーダル画面のサイズ */
.modalFrame{
    width: 80%;
}


/*
medeiaクエリで
モーダル画面のサイズの振り分け
モーダルの高さが90％以上になると
はみ出る部分はスクロール表示
*/
@media screen and (max-width: 599px){

    .modalFrame{
        width: 90%;
    }

}

@media screen and (min-width: 960px){

    .modalFrame{
        width: 700px;
    }

}
