@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

:focus {
  outline: 0;
}

body, html {
  font-size: 62.5%;
  line-height: 1.6;
  color: #000;
  font-family: "Noto Sans JP", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1em;
}

main {
  display: block;
}

address, blockquote, caption, cite, code, dd, dt, em, h1, h2, h3, h4, h5, h6, input, li, p, pre, select, small, strong, td, textarea, th {
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}

li, ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

a:hover {
  text-decoration: none;
}

br {
  letter-spacing: 0;
}

button {
  border: none;
  background: initial;
  box-sizing: border-box;
}

/*----------  unit  ----------*/
#movie .fv-area .fv-img {
  background: url(/assets/img/special/movie/fv_movie.png) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
#movie .fv-area .fv-heading .title-group {
  display: flex;
  flex-direction: column;
}
#movie .box {
  padding: 50px 3.912% 15px;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #movie .box {
    padding: 32px 12px 40px;
    margin-bottom: 60px;
  }
}
#movie .box:not(:last-of-type) {
  margin-bottom: 40px;
}
#movie .box .title-group {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
#movie .box .title-group .num-group {
  display: flex;
  align-items: center;
}
#movie .box .title-group .num-group .num {
  font-size: 10rem;
  font-weight: 700;
  padding-top: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
}
#movie .box .title-group .num-group .cap {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.1em;
}
#movie .box .movie-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #movie .box .movie-list {
    flex-direction: column;
  }
}
#movie .box .movie-list .list-item {
  width: calc((100% - 100px) / 3);
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #movie .box .movie-list .list-item {
    width: 100%;
  }
  #movie .box .movie-list .list-item:not(:last-of-type) {
    margin-bottom: 100px;
  }
  #movie .box .movie-list .list-item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    width: calc(100% - 50px);
    height: 1px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deepgray);
  }
  #movie .box .movie-list .list-item:last-of-type {
    margin-bottom: 0;
  }
}
#movie .box .movie-list .list-item a {
  width: 100%;
  height: 100%;
  display: block;
}
#movie .box .movie-list .list-item .movie-container {
  position: relative;
  margin-bottom: 20px;
}
#movie .box .movie-list .list-item .movie-container iframe {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #movie .box .movie-list .list-item .movie-container iframe {
    width: 100%;
    height: auto;
  }
}
#movie .box .movie-list .list-item .img-container {
  position: relative;
  margin-bottom: 20px;
  transition: ease 300ms all;
  cursor: pointer;
}
#movie .box .movie-list .list-item .img-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  width: 68px;
  height: 48px;
  border-radius: 10px;
}
#movie .box .movie-list .list-item .img-container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(/assets/img/special/movie/movie_arrow.svg) no-repeat;
  max-width: 18px;
  max-height: 20px;
  width: 100%;
  height: 100%;
}
#movie .box .movie-list .list-item .img-container:hover {
  opacity: 0.7;
}
#movie .box .movie-list .list-item .title-group {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}
#movie .box .movie-list .list-item .text {
  font-size: 1.3rem;
  font-weight: 400;
}
#movie .box .movie-list .list-item .title + .text {
  margin-top: 10px;
}
#movie .link-container {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #movie .link-container {
    margin-bottom: 60px;
  }
}

.youtube-movie {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.movie-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  height: fit-content;
}

.movie-item {
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.movie-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.movie-item.is-show {
  display: block;
}

@media screen and (max-width: 768px) {
  .movie-item {
    display: none;
  }
}
.movie-item .video-close {
  position: absolute;
  top: 3px;
  right: -50px;
  width: 40px;
  height: 30px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .movie-item .video-close {
    top: -40px;
    right: 0;
  }
}
.movie-item .video-close span {
  position: relative;
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
}

.movie-item .video-close span:nth-of-type(1) {
  transform: rotate(45deg);
}

.movie-item .video-close span:nth-of-type(2) {
  transform: rotate(-45deg);
  top: -2px;
}

.movie-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .movie-modal {
    width: 80%;
  }
}
.movie-modal video {
  width: 100%;
  height: 100%;
}

.modal-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  height: fit-content;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 70%;
    height: auto;
  }
}

.modal-item {
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.modal-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modal-item.is-show {
  display: block;
}

@media screen and (max-width: 768px) {
  .modal-item {
    display: none;
  }
}
.modal-item .video-close {
  position: absolute;
  top: 3px;
  right: -50px;
  width: 40px;
  height: 30px;
}

.modal-item .video-close span {
  position: relative;
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
}

.modal-item .video-close span:nth-of-type(1) {
  transform: rotate(45deg);
}

.modal-item .video-close span:nth-of-type(2) {
  transform: rotate(-45deg);
  top: -2px;
}

.modal-movie {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .modal-movie {
    width: 80%;
  }
}
.modal-movie video {
  width: 100%;
  height: 100%;
}

.modal-video {
  width: 100%;
  height: 100%;
}

.movie-list .list-item .img-container img {
  aspect-ratio: 16/9;
}

.modal-container {
  position: relative;
}
.modal-container iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.modal-container.dummy {
  pointer-events: none;
  margin-bottom: 15px;
}
.modal-container.dummy::before {
  content: "";
  position: absolute;
  width: 101%;
  height: 100%;
  background: var(--lightgray);
  top: 0;
  left: 0;
  aspect-ratio: 16/9;
}

/*# sourceMappingURL=movie.css.map */