@charset "utf-8";
/* CSS Document */
/*----------------------------------------


fv


----------------------------------------*/
.fv {
	position: relative;
	background:#ffe100;
  height: 100vh;
}
.fv img{
  min-height: 630px;
  width: auto;
  height: 80vh;
  display: block;
  margin: 0 auto;
  padding: 150px 0 50px;
  padding: min(150px,15vw) 0 min(50px,5vw);
}
/*----------------------------------------


bnr


----------------------------------------*/
.bnr_area {
	position: relative;
  display: flex;
  justify-content: space-between;
}
.bnr_area .movie_area {
  max-width: 420px;
  width: 47%;
}
.bnr_area .movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%; 
  /*aspect-ratio: 16 / 9;*/
}
.bnr_area .movie iframe,
.bnr_area .movie #player,
.bnr_area .movie .ph{
  width: 100%;
  height: 100%;
}
.bnr_area .movie .ph{
  position: absolute;
  left: 0;
  top:0;
  cursor: pointer;
}
.bnr_area .movie .ph::after{
  position: absolute;
  content: "";
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s;
}
.bnr_area .movie .ph:hover:after{
  opacity: 0.5;
}
.bnr_area .movie .ph img{
  object-fit: cover;
  height: 100%;
}
.bnr_area h2{
  margin-top: 8px;
  letter-spacing: 0.1rem;
}
.work .more_btn{
  text-align: right;
}
.work .more_btn a{
  position: relative;
  display: inline-block;
  width: 76px;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-align: left;
  padding-bottom: 4px;
}
.work .more_btn a::before,
.work .more_btn a::after{
  position: absolute;
  content: "";
  transition: 0.3s;
}
.work .more_btn a::before{
  border-bottom: 1px solid #000;
  bottom: 2px;
  left: 0;
  width: 100%;
}
.work .more_btn a::after{
  border-right: 1px solid #000;
  bottom: 0;
  right: 6px;
  width: 0;
  height: 15px;
  transform: rotate(-45deg);
}
.work .more_btn:hover a:before{
  width: calc(100% + 15px);
}
.work .more_btn:hover a:after{
  right: -11px;
}
@media screen and (max-width:750px) {
  /*----------------------------------------


  fv


  ----------------------------------------*/
  .fv {
    height: 129.6875vw;
  }
  .fv img{
    min-height: auto;
    width: 85.9375vw;
    height: auto;
    padding: 18.75vw 0 8.59375vw;
  }
  /*----------------------------------------


  bnr


  ----------------------------------------*/
  .bnr_area {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .bnr_area .movie_area {
    width: 47%;
  }
  .bnr_area h2{
    margin-top: 1.6666vw;
    font-size: 2.96875vw;
    text-align: left;
  }
}