#header,
#footer{
  display: none;
}

/* ----------------------------------------
   出現アニメーション（共通）
---------------------------------------- */

/* 1. 下からフェードイン */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 2. その場でフェードイン */
.anim-fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.anim-fade-in.is-visible {
  opacity: 1;
}

/* 3. 左からスライドイン */
.anim-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.ttl_en{
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

#mv,
#message,
#movie {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#mv{
  position: relative;
  height: 100vh;
  z-index: 1;
}
#mv video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
#mv .scroll{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #FFF;
}
#mv .scroll .txt{
  font-size: 15px;
  line-height: 1;
  margin-bottom: .8em;
}
#mv .scroll .icon{
  width: 27px;
  margin-left: auto;
  margin-right: auto;
  animation: scroll-updown 2.6s infinite normal;
}

@keyframes scroll-updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}

#message{
  position: relative;
  background: url(../img/bg_message.webp);
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
#message .inner{
  color: #FFF;
}
#message .inner .ttl_en{
  margin-bottom: 2em;
}
#message .inner .head{
  font-size: 50px;
  line-height: 1;
  margin-bottom: 1em;
}
#message .inner .txt{
  font-size: 18px;
  line-height: 2.5;
  letter-spacing: 0.06em;
}

#movie{
  position: relative;
  background: url(../img/bg_movie.webp);
  background-size: cover;
  background-position: left top;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
#movie .inner{
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 1085px;
  margin-left: auto;
  margin-right: auto;
}
#movie .inner .txt_conte{
  color: #FFF;
}
#movie .inner .txt_conte .wrap .ttl{
  letter-spacing: 0.06em;
}
#movie .inner .txt_conte .wrap:nth-child(n+2) .ttl{
  margin-top: 2em;
}
#movie .inner .txt_conte .wrap .txt{
  font-size: 14px;
  line-height: 2;
  margin-top: 1.5em;
}
#movie .inner .movie_conte .ttl{
  color: #FFF;
  font-size: 19px;
  border-bottom: 1px solid #FFF;
  letter-spacing: 0.06em;
  padding-bottom: 0.2em;
  margin-bottom: 1.5em;
}
#movie .inner .movie_conte .lists{
  width: 638px;
}
#movie .inner .movie_conte .lists li{
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  z-index: 1;
}
#movie .inner .movie_conte .lists li::after{
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #FFF;
  z-index: -1;
}
#movie .inner .movie_conte .lists li .play_btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  background: rgba(188, 188, 188, 0.5);
  border-radius: 1000px;
}

/* Modal */
.movie_modal_overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.movie_modal_overlay.is-active{
  opacity: 1;
  visibility: visible;
}
.movie_modal_inner{
  position: relative;
  width: 80%;
  max-width: 960px;
}
.movie_modal_close{
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.movie_modal_close::before,
.movie_modal_close::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #FFF;
}
.movie_modal_close::before{
  transform: translate(-50%, -50%) rotate(45deg);
}
.movie_modal_close::after{
  transform: translate(-50%, -50%) rotate(-45deg);
}
.movie_modal_overlay .movie_iframe{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie_modal_overlay .movie_iframe iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#staff{
  position: relative;
  background: url(../img/bg_staff.webp);
  background-size: cover;
  background-position: left top;
  padding-top: 105px;
  padding-bottom: 70px;
  z-index: 4;
}
#staff .bnr_youtube{
  display: block;
  width: 677px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 140px;
  background: #FFF;
}
#staff .inner{
  width: 910px;
  margin-left: auto;
  margin-right: auto;
}
#staff .inner .ttl{
  color: #ff8d00;
  margin-bottom: 2em;
}
#staff .inner .lists li .sub_ttl{
  font-size: 16px;
  line-height: 1;
  margin-bottom: 1em;
  letter-spacing: 0.02em;
}
#staff .inner .lists li .name{
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: .6em;
}
#staff .inner .lists li .txt{
  font-size: 14px;
  line-height: 2;
}
#staff .inner .lists li:nth-child(n+2){
  margin-top: 60px;
}
#staff .top_btn{
  width: 470px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 134px;
  text-align: center;
  color: #ff8d00;
  font-size: 18px;
  border: 1px solid #ff8d00;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#staff .logo_btn{
  display: block;
  width: 260px;
  margin-top: 89px;
  margin-left: auto;
  margin-right: auto;
}


@media(max-width:1440px){
  .ttl_en{
    font-size: 2.08vw;
  }

  #mv .scroll{
    bottom: 2.08vw;
  }
  #mv .scroll .txt{
    font-size: 1.04vw;
  }
  #mv .scroll .icon{
    width: 1.87vw;
  }
  
  @keyframes scroll-updown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(0.55vw);
    }
    100% {
      transform: translateY(0);
    }
  }

  #message .inner .head{
    font-size: 3.47vw;
  }
  #message .inner .txt{
    font-size: 1.25vw;
  }

  #movie .inner{
    width: 75.34vw;
  }
  #movie .inner .txt_conte .wrap .txt{
    font-size: 0.97vw;
  }
  #movie .inner .movie_conte .ttl{
    font-size: 1.31vw;
  }
  #movie .inner .movie_conte .lists{
    width: 44.30vw;
  }
  #movie .inner .movie_conte .lists li{
    padding-right: 0.69vw;
    padding-bottom: 0.69vw;
  }
  #movie .inner .movie_conte .lists li::after{
    top: 0.69vw;
    left: 0.69vw;
    width: calc(100% - 0.69vw);
    height: calc(100% - 0.69vw);
  }
  #staff{
    padding-top: 7.29vw;
    padding-bottom: 4.86vw;
  }
  #staff .bnr_youtube{
    width: 47.01vw;
    margin-bottom: 9.72vw;
  }
  #staff .inner{
    width: 63.19vw;
  }
  #staff .inner .lists li .sub_ttl{
    font-size: 1.11vw;
  }
  #staff .inner .lists li .name{
    font-size: 2.08vw;
  }
  #staff .inner .lists li .txt{
    font-size: 0.97vw;
  }
  #staff .inner .lists li:nth-child(n+2){
    margin-top: 4.16vw;
  }
  #staff .top_btn{
    width: 32.63vw;
    height: 4.16vw;
    margin-top: 9.3vw;
    font-size: 1.25vw;
  }
  #staff .logo_btn{
    width: 18.05vw;
    margin-top: 6.18vw;
}
}

@media(max-width:750px){
  .ttl_en{
    font-size: 4vw;
  }

  #mv{
    height: auto;
  }
  #mv .scroll{
    bottom: 1.5vw;
  }
  #mv .scroll .txt{
    font-size: 2.2vw;
  }
  #mv .scroll .icon{
    width: 5vw;
  }
  
  #message .inner .ttl_en {
    margin-bottom: 2.5em;
    margin-bottom: 1.3em;
  }
  #message .inner .head{
    font-size: 6.6vw;
  }
  #message .inner .txt{
    font-size: 3vw;
  }
  
  #movie{
    height: auto;
    padding-top: 13.33vw;
    padding-bottom: 13.33vw;
  }
  #movie .inner{
    flex-direction: column-reverse;
    width: 80%;
  }
  #movie .inner .txt_conte{
    margin-top: 9.88vw;
  }
  #movie .inner .txt_conte .wrap .txt{
    font-size: 3vw;
    line-height: 1.6;
    margin-top: 1.2em;
  }
  #movie .inner .movie_conte .ttl{
    font-size: 3.6vw;
  }
  #movie .inner .movie_conte .lists{
    width: 100%;
    display: block;
  }
  #movie .inner .movie_conte .lists li{
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    padding-right: 1.5vw;
    padding-bottom: 1.5vw;
  }
  #movie .inner .movie_conte .lists li::after{
    top: 1.5vw;
    left: 1.5vw;
    width: calc(100% - 1.5vw);
    height: calc(100% - 1.5vw);
  }
  /* #movie .inner .movie_conte .lists .txt_btn{
  
  } */
  #staff{
    padding-top: 16.33vw;
    padding-bottom: 11vw;
  }
  #staff .bnr_youtube{
    width: 90%;
    margin-bottom: 16.33vw;
  }
  #staff .inner{
    width: 80%;
  }
  #staff .inner .lists li .sub_ttl{
    font-size: 2.3vw;
    margin-bottom: 1.2em;
  }
  #staff .inner .lists li .name{
    font-size: 4.5vw;
  }
  #staff .inner .lists li .txt{
    font-size: 2.5vw;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-align: justify;
  }
  #staff .inner .lists li:nth-child(n+2){
    margin-top: 10vw;
  }
  #staff .top_btn{
    width: 60%;
    height: 10vw;
    margin-top: 15vw;
    font-size: 3vw;
  }
  #staff .logo_btn{
    width: 36.66vw;
    margin-top: 9.66vw;
  }
}