.mv-wrap {
    position: fixed;
    width: calc(100% - 128px);
    height: calc(100vh - 128px);
    z-index: 1;
    border-radius: 16px;
    top: 88px;
    left: 64px;
}
@media screen and (max-width:768px){
    .mv-wrap {
        width: calc(100% - 32px);
        left: 50%;
        top: 64px;
        transform: translate(-50%, 0px);
        height: auto;
        padding: 0;
    }
}

.title {
    position:relative;
    height:100vh;
}

.top-ttl{
    position:absolute;
    width: 620px;
    height: auto;
    top: 90px;
    left: 40px;
    z-index: 1;
}

.top-ttl_pc{
    display: inline-block;
}

.top-ttl_sp{
    display: none;
}

@media screen and (min-width:769px) and (max-width:1280px){
    .top-ttl{
        width: 540px;
    }
}

@media screen and (max-width:768px){
    .top-ttl{
        width: 270px;
        height: auto;
        top: 32px;
        left: 16px;
    }
    .top-ttl_pc{
        display: none;
    }
    
    .top-ttl_sp{
        display: inline-block;
    }
}

.top-ttl img{
    width: 100%;
}

.video_wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    line-height: 1;
    z-index: 1;
}

.video_wrapper video{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: auto;
    height: auto;
    border-radius: 16px;
}

.video_pc{
    display: inline-block;
}

.video_sp{
    display: none;
}

@media screen and (max-width:768px){
    .video_pc{
        display: none;
    }
    
    .video_sp{
        display: inline-block;
    }
    .video_wrapper video{
        width: 100%;
        top: 0;
        left: 0;
        transform: translate(0,0);
        height: auto;
    }
}
.sns-nav {
    display: inline-block;
    position: absolute;
    left: 32px;
    width: 14px;
    top: calc(100vh - 240px);
    z-index: 20;
}

@media screen and (max-width:768px){
    .sns-nav{
        display: none;
    }
}


.sns-nav-list li+li {
    margin-top: 20px;
}

.sns-nav-list a{
    display: inline-block;
}

.scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100vh - 254px);
    width: 32px;
    animation: fuwa 1s ease-in infinite alternate;
    z-index: 1;
}

@media screen and (max-width:768px){
    .scroll{
        width: 16px;
        top: calc(100% + 24px);
    }
}

@keyframes fuwa {
    0% {
        transform: translateY(-6px)
    }

    70% {
        transform: translateY(0px)
    }

    100% {
        transform: translateY(6px)
    }
}
