@charset "UTF-8";
/* CSS INFORMATION =====================================================
File name : movie.css
Description : 動画
===================================================================== */
@keyframes btnPlayAnime {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* ========================================================
    movie
======================================================== */
.movie {
  position: relative;
  width: 100%;
  padding: 20rem 0 16rem 0;
}
@media screen and (min-width: 768px) {
  .movie {
    padding: 15rem 0 12rem 0;
  }
}
.movie_column {
  position: relative;
  width: 100%;
}
.movie_ttl {
  position: relative;
  width: 100%;
  text-align: center;
}
.movie_ttl > h2 {
  position: relative;
  display: inline-block;
  width: auto;
  padding-top: 7rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .movie_ttl > h2 {
    padding-top: 0;
  }
}
.movie_ttl > h2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 18.6rem;
  aspect-ratio: 186/47;
  background-image: url(../images/common/common_bg03.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .movie_ttl > h2::before {
    content: "";
    position: absolute;
    left: -12.8rem;
    top: 1.6rem;
    display: block;
    width: 11.6rem;
    aspect-ratio: 182/63;
    background-image: url(../images/common/common_bg04.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transform: scale(1, 1);
    z-index: -1;
  }
}
.movie_ttl > h2::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .movie_ttl > h2::after {
    content: "";
    position: absolute;
    right: -12.8rem;
    top: 1.6rem;
    display: block;
    width: 11.6rem;
    aspect-ratio: 182/63;
    background-image: url(../images/common/common_bg04.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transform: scale(-1, 1);
    z-index: -1;
  }
}
.movie_ttl > h2 > em {
  position: relative;
  display: inline-block;
  color: transparent;
  font-family: "Cinzel Decorative", serif;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(-90deg, #004089 0%, #004089 5%, #1393d0 80%, #5ee1d9 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
@media screen and (min-width: 768px) {
  .movie_ttl > h2 > em {
    font-size: 7.2rem;
  }
}
.movie_ttl > h2 > em::before {
  content: "";
  position: absolute;
  left: -8rem;
  top: -10rem;
  display: block;
  width: 13.7rem;
  aspect-ratio: 137/209;
  background-image: url(../images/common/common_bg02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  mix-blend-mode: color-dodge;
  z-index: -1;
}
.movie_ttl > h2 > span {
  position: relative;
  display: block;
  margin-top: 0.4em;
  color: #1393d0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .movie_ttl > h2 > span {
    font-size: 2rem;
  }
}
.movie_wrap {
  position: relative;
  width: 100%;
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .movie_wrap {
    margin-top: 6rem;
  }
}
.movie_list {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-top: -6.4rem;
}
@media screen and (min-width: 768px) {
  .movie_list {
    margin-top: -4.8rem;
  }
}
.movie_list > li {
  width: 100%;
  margin: 6.4rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .movie_list > li {
    width: 46.6666666667%;
    margin: 4.8rem 0 0 6.6666666667% !important;
  }
}
@media screen and (min-width: 768px) {
  .movie_list > li:nth-child(2n+1) {
    margin-left: 0 !important;
  }
}
.movie_list > li > a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .movie_list > li > a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .movie_list > li > a:hover .movie_item > figure::after {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.movie_item {
  position: relative;
  width: 100%;
}
.movie_item > figure {
  position: relative;
  width: 100%;
  padding: 0.8rem;
  border: 0.2rem solid;
  -o-border-image: linear-gradient(90deg, #a0864e 0%, #f0d69e 20%, #a0864e 70%, #73571c 100%) 1;
     border-image: linear-gradient(90deg, #a0864e 0%, #f0d69e 20%, #a0864e 70%, #73571c 100%) 1;
}
.movie_item > figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 21.9219219219%;
  aspect-ratio: 1/1;
  background-image: url(../images/common/btn_play_rotate.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  z-index: 1;
  animation: btnPlayAnime 12s linear infinite;
}
@media screen and (min-width: 768px) {
  .movie_item > figure::before {
    width: 17.2661870504%;
  }
}
.movie_item > figure::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 21.9219219219%;
  aspect-ratio: 1/1;
  background-image: url(../images/common/btn_play_triangle.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .movie_item > figure::after {
    width: 17.2661870504%;
  }
}
.movie_item > h3 {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .movie_item > h3 {
    margin-top: 1.5rem;
  }
}
.movie_item > h3 > em {
  display: inline-block;
  color: #ffffff;
  margin-bottom: 0.2em;
  padding: 0.4em 0.8em 0.5em 0.8em;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 1em;
  background: linear-gradient(-90deg, #004089 0%, #004089 5%, #1393d0 80%, #5ee1d9 100%);
}
@media screen and (min-width: 768px) {
  .movie_item > h3 > em {
    font-size: 1.6rem;
  }
}
.movie_item > h3 > span {
  display: block;
  color: #004089;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .movie_item > h3 > span {
    font-size: 2.2rem;
  }
}/*# sourceMappingURL=movie.css.map */