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


.main {
  background-color: #000;
  /* xが横 */
  overflow-x: hidden;
  position: relative;
  padding-top: 100vh;
}

.slick-slider_position img {
  transform-origin: center top;
  transform: scale(1);
  /* transition: 1s ease-out 3s; */
}

.slick-slider_position .is-active img {
  /* transform: scale(1.0); */
  /* transition: 8s ease-out; */
  animation: scaleSlide 20s ease-out 0s 1 forwards;
}

@keyframes scaleSlide {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1.0);
  }
}

.slick-slider_position {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}


.full_background_img2 {
  object-fit: cover;
  width: 100%;
  height: 100vh;

}


.section-top {
  position: relative;
  /* height: calc(100vh - 40px); */
  height: 100vh;
}


.section-top_box_center {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}


.wrap {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 0 5% 200px;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s;

}

.wrap.active {
  background-color: rgba(0, 0, 0, 0.6);

}


/* top: calc(460px - 100vh); */
/* .center::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 100vh - 40px);
  position: absolute;
  top: calc(40px - 100vh);

  left: 0;
  background: linear-gradient(180deg,transparent 30%,rgba(0,0,0,0.9)80%);
} */

.flex_box {
  width: 60%;
  max-width: 640px;
}

.section-news {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-news_title img {
  margin-bottom: 40px;
  margin-top: 200px;
}

.section-announce_link {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.section-announce_contents {
  display: flex;
}

.section_news_topics {
  display: flex;
}

.section_news_topics li {
  display: inline-block;
  min-width: 60px;
  padding: 0.1rem 0.3rem;
  margin-left: 10px;
  border-radius: 2px;
  border: 0.3px solid #FFF;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  /* color: #9C4; */
  color: #FFF;
}

.section-news time {
  font-family: 'Alegreya SC', serif;
  font-size: 2.0rem;
}

.section_news_text {
  padding-top: 18px;
  /* padding-top: 13px;
    padding-bottom: 15px; */
  font-family: 'Alegreya SC', serif;
  font-size: 1.8rem;

}

.border_top {
  /* border-top: solid 1px #FFF; */
  padding-top: 13px;
}

.more_buttom {
  padding-top: 10px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.more_buttom a {
  transition: transform 0.5s;
  transform-origin: right;

}

.more_buttom a:hover {
  transform: scale(1.2);
  transform-origin: right;
}

.section-schedule {
  position: relative;
  width: 35%;
  max-width: 326px;
}

.item-photo img {

  max-width: 100%;
  height: auto;
  padding-top: 240px;
}

.section-schedule_buttom a {
  display: block;
  position: absolute;
  top: 80%;
  right: -15%;
  width: 50%;
  transition: transform 0.5s;
}

.section-schedule_buttom a:hover {
  transform: scale(1.2);
}

.schedule_buttom_fream {
  animation: rotate-anime 15s linear infinite;
  transform: rotateZ(45deg);
  width: 100%;
}

@keyframes rotate-anime {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.schedule_buttom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

.section-schedule_buttom img {
  display: block;
  width: 100%;
}



.section-movie {
  position: relative;
  margin: 0 auto 130px;
  max-width: 1200px;
}

.section_movie_title {
  margin-top: 180px;
  margin-bottom: 30px;
}

.section_movie_video {
  width: 100%;
  height: 290px;
  overflow: hidden;
  position: relative;
}

.section-movie video {
  height: auto;
  width: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-gallery-shop {
  display: flex;
  position: relative;
  overflow: hidden;
  gap: 40px;
  margin: 0 auto;
  max-width: 1200px;
}


.gallery_img {
  /*  width: 100%; */
  width: 50%;
  height: 50%;
  max-width: 720px;
  overflow: hidden;


}

.gallery_img img {
  max-width: 100%;
  height: auto;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  cursor: pointer;
  filter: grayscale(100%);
  transition-duration: 0.5s;
  perspective: 1000;
}

.gallery_link {
  display: block;
  position: relative;
}

.gallery_img a:hover,
.gallery_img a.active {
  opacity: 1;
}

.gallery_img a:hover img,
.gallery_img a.active img {
  filter: grayscale(0);
  /* backdrop-filter: hue-rotate(180deg); */
  transition-duration: 0.5s;
  transform: scale(1.25);
}

.gallery_title {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  /* backdrop-filter: hue-rotate(80deg);   0~360 */
}

.gallery_title .svg_gallery-text {
  transition: all 0.5s;
  font-size: 16px;
}

.gallery_img a svg {
  /* width: 30%;
    height: auto;
    transition: 0.5s; */
  background-color: rgba(0, 0, 0, 0.6);
  width: 30%;
  padding: 2%;
  height: auto;
  transition: 0.5s ease-in-out;
  font-size: 16px;
  perspective: 1000;
}

.gallery_img a:hover .svg_gallery-text,
.gallery_img a.active .svg_gallery-text {
  fill: #FFF;
  font-size: 16;

}

.gallery_img a:hover svg,
.gallery_img a.active svg {
  width: 60%;
  perspective: 1000;

}

.gradient {
  width: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9)80%);
  height: 210px;
  position: absolute;
  bottom: 0;
  left: 0;

}

.copy_lite {
  font-family: 'Outfit', sans-serif;
}

/* ローディングのCSS */
.start {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
  transition: background 3000ms ease-out;
}

.start.hidden {
  background: #00000000;

}

.start p {
  position: absolute;
  left: 50%;
  top: 49%;
  text-align: center;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 280px;
}

.start img {
  filter: drop-shadow(3px 3px 5px #000);
}

.overflow-hidden {
  overflow: hidden;
}

/* MB 780px以下に適用されるcss*/
@media screen and (max-width: 780px) {

  .section-news_title img {
    margin-bottom: 40px;
    margin-top: 130px;
  }

  .border_top {
    max-width: 555px;
    min-width: 0px;
  }

  .center {
    padding-top: 50px;
  }

  .flex_box {
    width: 100%;
    max-width: 555px;
    margin: 0 auto;
  }


  .section-news {
    display: block;
  }

  .section-schedule {
    display: flex;
    gap: 11%;
    justify-content: center;
    max-width: none;
    width: 100%;
  }

  .item-photo img {
    position: relative;
    width: 85%;
    padding-top: 100px;
  }

  .section-schedule_buttom a {
    position: relative;
    width: 100%;
    top: 62%;
    right: -2%;
  }

  .section-gallery-shop {
    display: block;
  }

  .gallery_link {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 50%;
  }

  .gallery_img img {
    max-width: 100%;
    height: auto;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    cursor: pointer;
    filter: grayscale(100%);
    transition-duration: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }

  .gallery_title {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .gallery_img {
    width: 100%;
    /* width: 50%; */
    height: 50%;
    max-width: 720px;
    overflow: hidden;
    margin: 0 -30px;
    width: calc(100% + 30px * 2);
  }


  .section-movie {
    max-width: 555px;
    justify-content: center;
    margin: 0 auto;
  }

  .section_movie_title {
    margin-top: 130px;
  }

  .section-movie video {
    transform: translateY(-80%);
  }

}

/* SP 423px以下の場合 */
@media screen and (max-width: 423px) {

  .section-schedule {
    gap: 0;
  }

  .section-schedule_buttom a {
    position: relative;
    width: 149%;
    top: 55%;
    right: 33%;
  }

  .item-photo img {
    width: 100%;
  }


  .schedule_buttom {
    width: 99px;
  }



  .section-top_box_center {
    top: 45%;
  }


  .section_news_topics {
    flex-wrap: wrap;
  }

  .section_news_topics li {
    font-size: 1.5rem;
    min-width: 50px;
    margin-bottom: 5px;
  }

  .section_news_text {
    font-size: 1.5rem;
  }

  .more_buttom {
    padding-top: 15px;
  }

  .more_buttom img {
    width: 70px;
  }

  .start p {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
    width: auto;
  }

}