@charset "UTF-8";

.animation {
  animation: fade-in 2s;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*
.video-btn {
    top:0;
    left:0;
    right:0;
    bottom:20px;
    cursor: pointer;
}
.finished .video-btn {
    position: absolute;
}
*/


@media screen and (max-width: 767px) {

.mv_wrap {
width: 100%;
aspect-ratio: 768 / 768;
position: relative;
margin: 0 auto;
overflow: hidden;
}

#video_sp {
width: 100%;
aspect-ratio: 768 / 768;
object-fit: cover;
}
#video{
	display: none!important;
	}
.btn_replay {
position: absolute;
right: 20px;
bottom: 10px;
font-size: 11px;
font-family: "Montserrat", sans-serif;
font-weight: 200;
background:rgba(255,255,255,0.8);
padding: 5px 20px;
line-height: 1;
z-index: 2;
color: #000;
border-radius: 11px;
box-shadow: 2px 2px 8px #666;
border:1px solid #fff;
}
.btn_skip {
position: absolute;
right: 20px;
bottom: 10px;
font-size: 11px;
font-family: "Montserrat", sans-serif;
font-weight: 200;
background:rgba(0,0,0,0.7);
padding: 5px 20px;
line-height: 1;
z-index: 3;
color: #fff;
border-radius: 11px;
box-shadow: 2px 2px 8px #666;
border:1px solid #000;
}


}


@media screen and (min-width: 768px) {
.mv_wrap {
width: 100%;
aspect-ratio: 1920 / 1080;
position: relative;
margin: 0 auto;
overflow: hidden;
}
#video {
width: 100%;
aspect-ratio: 1920 / 1080;
object-fit: cover;
}
#video_sp{
	display: none!important;
	}
.btn_replay {
position: absolute;
right: 20px;
bottom: 20px;
font-size: 12px;
font-family: "Montserrat", sans-serif;
font-weight: 200;
background:rgba(255,255,255,0.8);
padding: 5px 20px;
line-height: 1;
z-index: 2;
color: #000;
border-radius: 11px;
box-shadow: 2px 2px 8px #666;
border:1px solid #fff;
}


.btn_skip {
position: absolute;
right: 20px;
bottom: 20px;
font-size: 12px;
font-family: "Montserrat", sans-serif;
font-weight: 200;
background:rgba(0,0,0,0.7);
padding: 5px 20px;
line-height: 1;
z-index: 3;
color: #fff;
border-radius: 11px;
box-shadow: 2px 2px 8px #666;
border:1px solid #000;
}

}
/**/
.btn_replay{
	display: none;
}
.btn_skip{
	display: block;
    cursor: pointer; 
}

.finished .btn_replay{
	display: block;
    cursor: pointer; 
}
.finished .btn_skip{
	display: none;
}



.mv_wrap span {
width:100vw;
height: 100vh;
position: absolute;
background-color: transparent;
}
.mv_block video {
position: absolute;
left:50%;
top:0;
transform: translateX(-50%);
}


.mv_block.finished:after {
content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		background: #000;
		top: 0;
		left:0;
        animation: fadeOut 3s;
        animation-fill-mode: both;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
