@charset "UTF-8";

/* 共通 */

div [id^="Vimeo"].vertical iframe {
    width: 100%;
    min-height: 50vh;

}

/* PC用 */
@media screen and (min-width: 1025px) {
    div[id^="Vimeo"] iframe {
        width: 100%;
        height: calc(30vw / 16 * 9);
    }
}

/* SP用 */
@media screen and (max-width: 1024px) {
    div [id^="Vimeo"].horizontal iframe {
        width: 100%;
        height: calc((100vw - 30px) / 16 * 9);
    }

}



