.movie {
  margin-top: 20px;
}
.movie__area {
  width: 100%;
  height: calc(100vh - 136px);
  position: -webkit-sticky;
  position: sticky;
  top: 136px;
  left: 0;
  z-index: 2;
  overflow: hidden;
}
.movie__area video {
  min-width: 100vw;
  min-height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.movie__shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.6;
  z-index: 2;
  display: none;
}
.movie__content {
  width: 100%;
  position: relative;
  z-index: 3;
  color: #fff;
  padding-bottom: 300px;
  margin-top: calc(136px - 100vh);
  padding: 240px 60px 40vh;
}
.movie__content h2 {
  font-size: 36px;
  line-height: 1.5;
  text-align: center;
  font-weight: 600;
  margin-bottom: 36px;
  opacity: 0;
  transition: 0.5s;
  letter-spacing: 0.15em;
}
.movie__content h2.show {
  opacity: 1;
}
.movie__content p {
  font-size: 20px;
  line-height: 2em;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
  text-align: center;
  opacity: 0;
  transition: 0.5s;
}
.movie__content p:last-child {
  margin-bottom: 0;
}
.movie__content p.show {
  opacity: 1;
}

.feature {
  margin-top: 80px;
  margin-bottom: 120px;
}
.feature__list {
  display: flex;
  justify-content: space-between;
}
.feature__list li {
  width: calc(33.33% - 26.66px);
}
.feature__list li img {
  width: 100%;
  margin-bottom: 24px;
}
.feature__list li p {
  font-size: 20px;
  line-height: 1.6;
  color: #008060;
  font-weight: 600;
  text-align: center;
}

.message {
  background-color: #E5F2EF;
  padding: 80px 60px;
}
.message__content {
  width: 100%;
  max-width: 680px;
  margin: auto;
}
.message__content p {
  color: 8060;
  font-size: 16px;
  line-height: 2em;
  margin-bottom: 2em;
  color: #008060;
}
.message__content p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width:767px) {
  .movie__area {
    height: calc(100vh - 118px);
    top: 118px;
  }
  .movie__content {
    padding-bottom: 200px;
    margin-top: calc(118px - 100vh);
    padding: 160px 4vw 40vh;
  }
  .movie__content h2 {
    font-size: 23px;
    line-height: 44px;
    margin-bottom: 40px;
  }
  .movie__content p {
    font-size: 16px;
  }
  .feature {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .feature__list {
    display: block;
  }
  .feature__list li {
    width: 100%;
    max-width: 400px;
    margin: auto;
    margin-bottom: 45px;
  }
  .feature__list li:last-child {
    margin-bottom: 0;
  }
  .feature__list li img {
    margin-bottom: 16px;
  }
  .feature__list li p {
    font-size: 18px;
  }
  .message {
    padding: 40px 4vw;
  }
  .message__content p {
    font-size: 14px;
    line-height: 2em;
  }
}