/* 横型動画専用ラッパー */
.wrapper-horizontal {
width: 100%;       /* スマホは幅100% */
margin: 0 auto;    /* 中央寄せ */
}
@media (min-width: 768px) {
.wrapper-horizontal {
width: 70%;      /* PCは幅70% */
}
}
/* 動画コンテナ */
.video-container-horizontal {
position: relative;
width: 100%;
overflow: hidden;
padding-top: 56.25%; /* 横型比率 16:9 */
}
.video-container-horizontal iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}

@media screen and (max-width: 640px) {
.scroll {
overflow-x: auto;
}
.tbl-r07 {
min-width: 640px;
margin: 0 10px 50px;
}
.tbl-r07 td {
border-top: solid 1px #ccc;
border-bottom: solid 1px #ccc;
}
}

/* 縦型動画専用ラッパー */
.wrapper-vertical {
width: 70%;       /* スマホデフォルト */
margin: 0 auto;   /* 中央寄せ */
}
@media (min-width: 768px) {
.wrapper-vertical {
width: 50%;     /* PCは幅50% */
}
}
/* 動画コンテナ */
.video-container-vertical {
position: relative;
width: 100%;
overflow: hidden;
padding-top: 177.78%; /* 縦型比率 9:16 */
}
.video-container-vertical iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}