@charset "UTF-8";
.under_mv{
  background: url("../img/mv.png") no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}

.video_stand{
  background: url(../img/bg_01.png) no-repeat center/cover;
}
.vs_inner{
  max-width: 1024px;
  width: 100%;
  margin: auto;
  padding: 50px 0 100px;
}
.video_name{
  font-weight: bold;
}
.video_box_list{
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.video_name{
  color: #FFF;
  background: #EB5C02;
  border-radius: 20px;
  padding: 5px 0;
  text-align: center;
}
.video_list{
  max-width: 725px;
  width: 100%;
  margin: 35px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.video_list_box{
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and ( max-width: 767px ){
  .video_stand{
    background-position: right;
  }
  .vs_inner{
    padding: 40px 5%;
  }
  .video_list{
    margin-top: 20px;
  }
  .video_box_list{
    gap: 30px;
  }
  .video_name{
    font-size: 2rem;
  }
}