/* CSS Document */

.video-wrapper {
    max-width: 960px;  /* PCでは最大幅640px */
    margin: 0 auto;    /* 中央寄せ */
    width: 100%;       /* スマホでは画面幅に合わせて拡大 */
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 アスペクト比 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*--- Tablet View ---------------------------------------------------------------------------------------------------------*/
@media (min-width: 768px){

}