/*
Theme Name: Oltana 002 Child
Template: oltana-002
Version: 1.0.0
Description: Oltana 002の子テーマ - ファーストビュー動画対応
*/

/* 動画用スタイル */
.ol-firstview__image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ol-firstview__image-inner.ol-firstview-video video {
    border-radius: var(--ol-radius-regular, 12px);
}

/* スマホ用動画とPC用動画の切り替え */
.ol-firstview-video-pc {
    display: block;
}

.ol-firstview-video-sp {
    display: none;
}

@media screen and (max-width: 540px) {
    .ol-firstview-video-pc {
        display: none;
    }
    
    .ol-firstview-video-sp {
        display: block;
    }
}
