/**
 * Homepage Video Preload Fix
 * 動画プリロードの警告を修正
 */

/* 動画コンテナのスタイル最適化 */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    /* プリロードの最適化 */
    will-change: transform;
}

/* フォールバック画像は完全に非表示 */
.hero-fallback {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}