@charset "UTF-8";
.header{
    z-index: 1;
}
.mp4_video_size{
    width: 100%;
    height: auto;
}
.video_text_title_content{
    display: flex;
    justify-content: space-between;
}
.video_text_title_box{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
    max-width: calc((728 / 1480)*(100%));
}

/* モーダル */
.mp4_modal {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    height: 100vh;
    width: 100vw;
    overflow: auto;
    z-index: 25;
}
.mp4_modal-content {
    overflow: auto;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-top: calc((50 / 750)* 100vw);
    margin-left: auto;
    margin-right: auto;
    width: 92%;
    max-width: fit-content;
}
.mp4_modal-top {
    display: flex;
    justify-content: flex-end;
}
.mp4_modal-close {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
}
.mp4_modal-close::before, .mp4_modal-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 30px;
    background: #fff;
}
.mp4_modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.mp4_modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mp4_modal-close:hover, .mp4_modal-close:focus {
    text-decoration: none;
    cursor: pointer;
}
.mp4_modal-container{
    background-color: #fff;
    margin-top: calc((18 / 750)* 100vw);
    opacity: 1;
    padding: 12px calc((30 / 750)* 100vw) 12px calc((30 / 750)* 100vw);;
}

.mp4_modal_area{
    display: none;
}

/* @media screen and (max-width:812px){
    .fr-video:before {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(27,27,27,.3);
        z-index: 1;
        z-index: var(--z-index-primary);
    }
    .fr-video:after{
        width: 80px;
        height: 80px;
        -webkit-mask-size: 80px;
        mask-size: 80px;
        margin: -40px 0 0 -40px;
    }
} */

@media screen and (min-width:813px){
    /* モーダル */
    .mp4_modal-content {
        width: calc(100% - 110px);
        max-width: fit-content;;
        margin-top: 41px;
        margin-left: auto;
        margin-right: auto;
    }
}


