@charset "utf-8";
#video .video-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 0.91vw;
}
#video .video-item {
    width: 49.55%;
    transition: 0.4s all;
    background: #000;
    position: relative;
    cursor: pointer;
    transition: 0.4s all;
}
#video .video-item img {
    transition: 0.4s all;
}
#video .video-item:hover img {
    -webkit-backdrop-filter: blur(2px);
    filter: blur(2px);
    opacity: .5;
}
#video .video-item .ttl {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: #fff;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 4px;
    pointer-events: none;
}
#video .video-item:hover .ttl {
    display: block;
}
#video .video-item img {
    width: 100%;
    cursor: pointer;
    display: block;
}
#video .modal {
    display: flex;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}
#video .modal.show {
    opacity: 1;
    pointer-events: auto;
}
#video .modal-content {
    position: relative;
    max-width: 80%;
    width: 800px;
}
#video .modal iframe {
    width: 100%;
    height: 450px;
}
#video .close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 40px;
    color: var(--bgColor-sub);
    cursor: pointer;
}
.open header,
.open footer {
    z-index: -1;
}
@media screen and (max-width: 768px) {
    #video .video-item {
        width: 100%;
    }
}
/* 250806 */
/*
@media screen and (max-width: 768px) {
#video .modal iframe{
height: auto;
}
}*/