/**
 * Fonts
 */
.mv {
  background: url(../img/index/mv__bg.webp) no-repeat center top/cover;
  width: 100%;
  height: 864px;
}

@media screen and (max-width: 1440px) {
  .mv {
    height: 60vw;
  }
}

@media screen and (max-width: 828px) {
  .mv {
    height: 127.8985507246vw;
  }
}

.mv__container {
  flex-direction: column;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
}

@media screen and (max-width: 1440px) {
  .mv__container {
    width: 94.4444444444vw;
  }
}

@media screen and (max-width: 828px) {
  .mv__container {
    width: 90%;
  }
}

.mv__msg {
  position: absolute;
  top: 140px;
  left: 0;
  margin-top: 13px;
  letter-spacing: 0.12em;
  color: #fff;
}

@media screen and (max-width: 1440px) {
  .mv__msg {
    top: 9.7222222222vw;
    margin-top: 0.9027777778vw;
    font-size: 1.3888888889vw;
  }
}

@media screen and (max-width: 828px) {
  .mv__msg {
    top: 22.9468599034vw;
    font-size: 2.8985507246vw;
    letter-spacing: 0.04em;
    font-weight: bold;
  }
}

.mv__msg span {
  margin-left: 15px;
}

@media screen and (max-width: 1440px) {
  .mv__msg span {
    margin-left: 1.0416666667vw;
  }
}

@media screen and (max-width: 828px) {
  .mv__msg span {
    margin-left: 1.8115942029vw;
  }
}

.mv__logo {
  padding-top: 340px;
  width: 500px;
}

@media screen and (max-width: 1440px) {
  .mv__logo {
    padding-top: 150px;
    width: 34.7222222222vw;
  }
}

@media screen and (max-width: 828px) {
  .mv__logo {
    padding-top: 100px;
    width: 70%;
  }
}

.mv__logo img {
  width: 100%;

}

/*.mv_live_promo {
  padding-top: 40px;
  width: 700px;
}

@media screen and (max-width: 1440px) {
  .mv_live_promo {
    padding-top: 50px;
    width: 50vw;
  }
}

@media screen and (max-width: 828px) {
  .mv_live_promo {
    padding-top: 50px;
    width: 90%;
  }
}

.mv_live_promo img {
  width: 100%;

}*/

.mv__scrollBtn {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: 1px solid #fff;
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-animation: ball 1s alternate infinite;
  animation: ball 1s alternate infinite;
}

@media screen and (max-width: 1440px) {
  .mv__scrollBtn {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
}

@media screen and (max-width: 828px) {
  .mv__scrollBtn {
    width: 7.2463768116vw;
    height: 7.2463768116vw;
  }
}


.mv__scrollBtn::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 0px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 6px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 0;
}

@media screen and (max-width: 1440px) {
  .mv__scrollBtn::before {
    width: 0.9722222222vw;
    height: 0.9722222222vw;
    bottom: 0.4166666667vw;
  }
}

@media screen and (max-width: 828px) {
  .mv__scrollBtn::before {
    width: 1.690821256vw;
    height: 1.690821256vw;
    bottom: 0.7246376812vw;
  }
}

.mv .mvAnim {
  -webkit-transform: translate(0, -5%) scale(1.1);
  -ms-transform: translate(0, -5%) scale(1.1);
  transform: translate(0, -5%) scale(1.1);
  opacity: 0;
}

.mv .mvAnim.show {
  -webkit-transform: translate(0, 0) scale(1);
  -ms-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
  opacity: 1;
  -webkit-transition: all 6s 0.4s ease;
  -o-transition: all 6s 0.4s ease;
  transition: all 6s 0.4s ease;
}

@-webkit-keyframes ball {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

  100% {
    -webkit-transform: translate(0%, -20px);
    transform: translate(0%, -20px);
  }
}

@keyframes ball {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

  100% {
    -webkit-transform: translate(0%, -20px);
    transform: translate(0%, -20px);
  }
}

@media screen and (max-width: 828px) {
  @-webkit-keyframes ball {
    0% {
      -webkit-transform: translate(0%, 0%);
      transform: translate(0%, 0%);
    }

    100% {
      -webkit-transform: translate(0%, -30%);
      transform: translate(0%, -30%);
    }
  }

  @keyframes ball {
    0% {
      -webkit-transform: translate(0%, 0%);
      transform: translate(0%, 0%);
    }

    100% {
      -webkit-transform: translate(0%, -30%);
      transform: translate(0%, -30%);
    }
  }
}

.aboutIndex {
  padding: 80px 0 70px;
}

@media screen and (max-width: 1440px) {
  .aboutIndex {
    padding: 5.5555555556vw 0 4.8611111111vw;
  }
}

@media screen and (max-width: 828px) {
  .aboutIndex {
    padding: 9.6618357488vw 0 8.4541062802vw;
  }
}
.questionnaire {
  text-align: center;
  margin: 40px auto 10px;
  max-width: 350px;
  width: 100%;
  background: #1B1B1B;
}

.questionnaire a {
  width: 100%;
  line-height: 100px;
  font-size: 2rem;
  color: #FFFFFF;
  text-align: center;
}
/* live information
------------------------------ */
.mv_live_promo {
  margin:auto;
  text-align: center;
}

.mv_live_promo img{
  width: 45%;
  margin: 80px auto 10px;

}
@media screen and (max-width: 828px) {
  .mv_live_promo img {
  width: 90%;
  margin-top:28.000000000000004vw auto 80vw;
  }
}
/* information
------------------------------ */
.information {
  margin-top:auto;
  padding: 30px 80px 30px;
  color: #222;
  text-align: center;
  background-color:#ffcccc;
}
@media screen and (max-width: 828px) {
  .information {
  margin-top:auto;
  padding: 20px 10px 10px 20px;
  color: #222;
  text-align: center;
  background-color:#ffcccc;
  }
}
.information .wrapper {
  width: 100%;
  max-width: 1440px;
}
@media screen and (max-width: 828px) {
  .information .wrapper {
  width: 100%;
  margin-top:28.000000000000004vw auto 80vw;
  }
}
.information h1 {
  display: inline-block;
  margin: 10px auto 10px;
  padding-bottom: 10px;
  font-size: 3.25rem;
  font-weight: 0;
}
@media screen and (max-width: 828px) {
  .information h1 {
  display: inline-block;
  margin:auto;
  padding-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 200;
 }
}
.information article {
  margin-bottom: 40px;
  padding: 20px;
  text-align: left;
  background-color: #fff;
}
@media screen and (max-width: 828px) {
.information article  {
  display: inline-block;
  margin: 5px auto 5px;
  padding-bottom: 30px;
  font-size: 0.95rem;
  font-weight: 0;
 }
}
.information article  {
  font-size: 2rem;
}
@media screen and (max-width: 828px) {
.information article   {
   font-size: 1.3rem;
 }
}
.information article h2 {
  margin-bottom: 30px;
  padding-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.8em;
  border-bottom: 2px solid #ffcccc;
}
@media screen and (max-width: 828px) {
.information article h2   {
  margin-bottom: 10px;
  padding-bottom: 8px;
  font-size: 1.3rem;
  line-height: 1.8em;
  border-bottom: 1px solid #ffcccc;
 }
}
.information article .text_content {
  line-height: 2.0em;
  font-size: 1.45rem;
}

@media screen and (max-width: 828px) {
.information article .text_content  {
  line-height: 2.0em;
  font-size: 0.95rem;
 }
}
.aboutIndex__ttl {
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0.14em;
  margin: 0 auto 38px;
}

@media screen and (max-width: 1440px) {
  .aboutIndex__ttl {
    margin: 0 auto 2.6388888889vw;
    font-size: 2.7777777778vw;
  }
}

@media screen and (max-width: 828px) {
  .aboutIndex__ttl {
    display: none;
  }
}

.aboutIndex__txt {
  display: table;
  margin: auto;
  font-size: 2.2rem;
  line-height: 2;
}

@media screen and (max-width: 1440px) {
  .aboutIndex__txt {
    font-size: 1.5277777778vw;
  }
}

@media screen and (max-width: 828px) {
  .aboutIndex__txt {
    display: block;
    font-size: 3.6231884058vw;
  }
}


.sessionIndex {
  padding: 40px 0 70px;
  position: relative;
}

@media screen and (max-width: 1440px) {
  .sessionIndex {
    padding: 2.7777777778vw 0 4.8611111111vw;
  }
}

@media screen and (max-width: 828px) {
  .sessionIndex {
    padding: 0vw 0 8.4541062802vw;
  }
}

.sessionIndex {
  position: relative;
  display: table;
  margin: auto;
}

.sessionIndex::before {
  content: "";
  background: #F8F8F8;
  width: 50%;
  height: 956px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1440px) {
  .sessionIndex::before {
    height: 66.3888888889vw;
  }
}

@media screen and (max-width: 828px) {
  .sessionIndex::before {
    height: 97.8260869565vw;
  }
}

.sessionIndex__30__ttl {
  position: relative;
  display: table;
  margin: auto;
}

.sessionIndex__30__ttl b {
  font-family: expo-serif-pro, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 5rem;
  font-style: italic;
}

@media screen and (max-width: 1440px) {
  .sessionIndex__30__ttl b {
    font-size: 4vw;
  }
}

@media screen and (max-width: 828px) {
  .sessionIndex__30__ttl b {
    font-size: 6.7922705314vw;
  }
}

.sessionIndex__30__ttl span {
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  margin-left: 10px;
}

@media screen and (max-width: 1440px) {
  .sessionIndex__30__ttl span {
    font-size: 1vw;
    margin-left: 0.6944444444vw;
  }
}

@media screen and (max-width: 828px) {
  .sessionIndex__30__ttl span {
    font-size: 3.3140096618vw;
    margin-left: 1.2077294686vw;
  }
}

.sessionIndex__30__ttl_2 {
  position: relative;
  display: table;
  margin: auto;
}

.sessionIndex__30__ttl_2 b {
  font-family: expo-serif-pro, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 4rem;
  font-style: italic;
}

@media screen and (max-width: 1440px) {
  .sessionIndex__30__ttl_2 b {
    font-size: 3vw;
  }
}

@media screen and (max-width: 828px) {
  .sessionIndex__30__ttl_2 b {
    font-size: 8vw;
  }
}

.sessionIndex__30__ttl_2 span {
  font-size: 3rem;
  margin-left: 10px;
}

@media screen and (max-width: 1440px) {
  .sessionIndex__30__ttl_2 span {
    font-size: 3vw;
    margin-left: 0.6944444444vw;
  }
}

@media screen and (max-width: 828px) {
  .sessionIndex__30__ttl_2 span {
    font-size: 3.5140096618vw;
    margin-left: 1.2077294686vw;
  }
}

.storyIndex {
  padding: 40px 0 70px;
  position: relative;
}

@media screen and (max-width: 1440px) {
  .storyIndex {
    padding: 2.7777777778vw 0 4.8611111111vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex {
    padding: 0vw 0 8.4541062802vw;
  }
}

.storyIndex::before {
  content: "";
  background: #F8F8F8;
  width: 50%;
  height: 956px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1440px) {
  .storyIndex::before {
    height: 66.3888888889vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex::before {
    height: 97.8260869565vw;
  }
}

.storyIndex__30__ttl {
  position: relative;
  display: table;
  margin: auto;
}

.storyIndex__30__ttl b {
  font-family: expo-serif-pro, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12rem;
  font-style: italic;
}

@media screen and (max-width: 1440px) {
  .storyIndex__30__ttl b {
    font-size: 5.3333333333vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__30__ttl b {
    font-size: 23.7922705314vw;
  }
}

.storyIndex__30__ttl span {
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  margin-left: 10px;
}

@media screen and (max-width: 1440px) {
  .storyIndex__30__ttl span {
    font-size: 1.6666666667vw;
    margin-left: 0.6944444444vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__30__ttl span {
    font-size: 5.3140096618vw;
    margin-left: 1.2077294686vw;
  }
}

.storyIndex__30__slider {
  margin-top: 30px;
  position: relative;
}

@media screen and (max-width: 1440px) {
  .storyIndex__30__slider {
    margin-top: 2.0833333333vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__30__slider {
    margin-top: 3.6231884058vw;
  }
}


.storyIndex__30__list__item {
  width: 288px;
  max-width: 288px;
  min-width: 288px;
}

@media screen and (max-width: 1440px) {
  .storyIndex__30__list__item {
    width: 20vw;
    max-width: 20vw;
    min-width: 20vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__30__list__item {
    width: 70%;
    max-width: 70%;
    min-width: 70%;
  }
}

.storyIndex__30__list__item a {
  display: block;
  height: 100%;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
  position: relative;
}

@media screen and (max-width: 828px) {
  .storyIndex__30__list__item a {
    -webkit-box-shadow: 0 1.2077294686vw 2.4154589372vw 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1.2077294686vw 2.4154589372vw 0 rgba(0, 0, 0, 0.3);
  }
}

.storyIndex__30__list__item a img {
  width: 100%;
}

@media screen and (min-width: 829px) {
  .storyIndex__30__list__item a:hover .storyIndex__30__list__image::before {
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }

  .storyIndex__30__list__item a:hover .storyIndex__30__list__image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
}

.storyIndex__30__list__image {
  position: relative;
  overflow: hidden;
}

.storyIndex__30__list__image img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.storyIndex__30__list__image::before,
.storyIndex__30__list__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 829px) {
  .storyIndex__30__list__image::before {
    background: black;
    z-index: 1;
    opacity: 0.2;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
}

.storyIndex__30__list__image::after {
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.storyIndex__30__list__cont {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 15px 56px 15px;
  color: #fff;
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .storyIndex__30__list__cont {
    padding: 1.0416666667vw 1.0416666667vw 3.8888888889vw 1.0416666667vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__30__list__cont {
    padding: 1.8115942029vw 3.0193236715vw 6.038647343vw 3.0193236715vw;
  }
}

.storyIndex__30__list__num {
  font-family: expo-serif-pro, serif;
  font-weight: 300;
  font-style: normal;
  font-style: italic;
  font-size: 2.6rem;
}

@media screen and (max-width: 1440px) {
  .storyIndex__30__list__num {
    font-size: 1.8055555556vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__30__list__num {
    font-size: 5.3140096618vw;
  }
}

.storyIndex__30__list__txt {
  font-size: 2.1rem;
  line-height: 1.5;
}

@media screen and (max-width: 1440px) {
  .storyIndex__30__list__txt {
    font-size: 1.8055555556vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__30__list__txt {
    font-size: 5.7971014493vw;
  }
}

.storyIndex__30__arrow {
  height: 64px;
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 47px;
}

@media screen and (max-width: 1440px) {
  .storyIndex__30__arrow {
    height: 4.4444444444vw;
    margin-top: 3.2638888889vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__30__arrow {
    height: 13.2850241546vw;
    margin-top: 7.0048309179vw;
  }
}

.storyIndex__30__moreBtn {
  position: absolute;
  top: 180px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1440px) {
  .storyIndex__30__moreBtn {
    top: 12.5vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__30__moreBtn {
    position: relative;
    top: 0;
    margin-top: 3.6231884058vw;
  }
}

.storyIndex__30 .swiper-button-prev,
.storyIndex__30 .swiper-button-next {
  position: relative;
}

.storyIndex__30 .swiper-button-prev {
  right: 0;
  left: 0;
  left: -1px;
}

.storyIndex__30 .swiper-button-next {
  right: 0;
  left: 0;
}

.storyIndex__30 .swiper-button-prev,
.storyIndex__30 .swiper-container-rtl .swiper-button-next,
.storyIndex__30 .swiper-button-next,
.storyIndex__30 .swiper-container-rtl .swiper-button-prev {
  background-image: none;
  background: #000;
  width: 64px;
  height: 64px;
  top: 0;
  margin-top: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1440px) {

  .storyIndex__30 .swiper-button-prev,
  .storyIndex__30 .swiper-container-rtl .swiper-button-next,
  .storyIndex__30 .swiper-button-next,
  .storyIndex__30 .swiper-container-rtl .swiper-button-prev {
    width: 4.4444444444vw;
    height: 4.4444444444vw;
  }
}

@media screen and (max-width: 828px) {

  .storyIndex__30 .swiper-button-prev,
  .storyIndex__30 .swiper-container-rtl .swiper-button-next,
  .storyIndex__30 .swiper-button-next,
  .storyIndex__30 .swiper-container-rtl .swiper-button-prev {
    width: 13.2850241546vw;
    height: 13.2850241546vw;
  }
}

.storyIndex__30 .swiper-button-prev::before,
.storyIndex__30 .swiper-container-rtl .swiper-button-next::before,
.storyIndex__30 .swiper-button-next::before,
.storyIndex__30 .swiper-container-rtl .swiper-button-prev::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

@media screen and (max-width: 1440px) {

  .storyIndex__30 .swiper-button-prev::before,
  .storyIndex__30 .swiper-container-rtl .swiper-button-next::before,
  .storyIndex__30 .swiper-button-next::before,
  .storyIndex__30 .swiper-container-rtl .swiper-button-prev::before {
    width: 1.25vw;
    height: 1.25vw;
    border-top: solid 0.1388888889vw #fff;
    border-right: solid 0.1388888889vw #fff;
  }
}

@media screen and (max-width: 828px) {

  .storyIndex__30 .swiper-button-prev::before,
  .storyIndex__30 .swiper-container-rtl .swiper-button-next::before,
  .storyIndex__30 .swiper-button-next::before,
  .storyIndex__30 .swiper-container-rtl .swiper-button-prev::before {
    width: 2.1739130435vw;
    height: 2.1739130435vw;
    border-top: solid 0.2415458937vw #fff;
    border-right: solid 0.2415458937vw #fff;
  }
}

@media screen and (min-width: 829px) {

  .storyIndex__30 .swiper-button-prev:hover,
  .storyIndex__30 .swiper-container-rtl .swiper-button-next:hover,
  .storyIndex__30 .swiper-button-next:hover,
  .storyIndex__30 .swiper-container-rtl .swiper-button-prev:hover {
    background: #333;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
}

.storyIndex__30 .swiper-button-prev,
.storyIndex__30 .swiper-container-rtl .swiper-button-next {
  margin: 0;
}

.storyIndex__30 .swiper-button-prev::before,
.storyIndex__30 .swiper-container-rtl .swiper-button-next::before {
  left: 7px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

@media screen and (max-width: 1440px) {

  .storyIndex__30 .swiper-button-prev::before,
  .storyIndex__30 .swiper-container-rtl .swiper-button-next::before {
    left: 0.4861111111vw;
  }
}

@media screen and (max-width: 828px) {

  .storyIndex__30 .swiper-button-prev::before,
  .storyIndex__30 .swiper-container-rtl .swiper-button-next::before {
    left: 0.845410628vw;
  }
}

.storyIndex__30 .swiper-button-next,
.storyIndex__30 .swiper-container-rtl .swiper-button-prev {
  margin: 0;
}

.storyIndex__30 .swiper-button-next::before,
.storyIndex__30 .swiper-container-rtl .swiper-button-prev::before {
  right: 7px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 1440px) {

  .storyIndex__30 .swiper-button-next::before,
  .storyIndex__30 .swiper-container-rtl .swiper-button-prev::before {
    right: 0.4861111111vw;
  }
}

@media screen and (max-width: 828px) {

  .storyIndex__30 .swiper-button-next::before,
  .storyIndex__30 .swiper-container-rtl .swiper-button-prev::before {
    right: 0.845410628vw;
  }
}

.storyIndex__tour {
  margin-top: 80px;
}

@media screen and (max-width: 1440px) {
  .storyIndex__tour {
    margin-top: 5.5555555556vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__tour {
    margin-top: 9.6618357488vw;
  }
}

.storyIndex__tour__slider {
  margin-top: 70px;
  position: relative;
}

@media screen and (max-width: 1440px) {
  .storyIndex__tour__slider {
    margin-top: 4.8611111111vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__tour__slider {
    margin-top: 8.4541062802vw;
    width: 90%;
  }
}

.storyIndex__tour__list__item {
  width: 317px;
  max-width: 317px;
  min-width: 317px;
}

@media screen and (max-width: 1440px) {
  .storyIndex__tour__list__item {
    width: 22.0138888889vw;
    max-width: 22.0138888889vw;
    min-width: 22.0138888889vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__tour__list__item {
    width: 90%;
    max-width: 90%;
    min-width: 90%;
  }
}

.storyIndex__tour__list__item a {
  display: block;
  height: 100%;
  position: relative;
}

@media screen and (min-width: 829px) {
  .storyIndex__tour__list__item a:hover .storyIndex__tour__list__image::before {
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }

  .storyIndex__tour__list__item a:hover .storyIndex__tour__list__image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
}

.storyIndex__tour__list__image {
  position: relative;
  overflow: hidden;
}

.storyIndex__tour__list__image img {
  width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.storyIndex__tour__list__image::before,
.storyIndex__tour__list__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 829px) {
  .storyIndex__tour__list__image::before {
    z-index: 1;
    background: black;
    opacity: 0.2;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
}

.storyIndex__tour__list__image::after {
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
}

@media screen and (max-width: 828px) {
  .storyIndex__tour__list__image::after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(65%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.9) 100%);
  }
}

.storyIndex__tour__list__cont {
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 15px 30px 15px;
  color: #fff;
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .storyIndex__tour__list__cont {
    padding: 1.0416666667vw 1.0416666667vw 2.0833333333vw 1.0416666667vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__tour__list__cont {
    padding: 1.8115942029vw 3.0193236715vw 4.8309178744vw 3.0193236715vw;
  }
}

.storyIndex__tour__list__txt {
  font-size: 2.1rem;
  line-height: 1.5;
}

@media screen and (max-width: 1440px) {
  .storyIndex__tour__list__txt {
    font-size: 1.4583333333vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__tour__list__txt {
    font-size: 5.3140096618vw;
  }
}

.storyIndex__tour__pagination {
  position: relative;
  height: 14px;
  margin-top: 30px;
}

@media screen and (max-width: 1440px) {
  .storyIndex__tour__pagination {
    margin-top: 2.0833333333vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__tour__pagination {
    margin-top: 6.038647343vw;
  }
}

.storyIndex__tour .swiper-pagination {
  line-height: 0;
  width: 100%;
  height: 14px;
  margin: auto;
}

@media screen and (max-width: 828px) {
  .storyIndex__tour .swiper-pagination {
    height: 2.6570048309vw;
  }
}

.storyIndex__tour .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #333;
}

@media screen and (max-width: 828px) {
  .storyIndex__tour .swiper-pagination-bullet {
    width: 2.4154589372vw;
    height: 2.4154589372vw;
  }
}

.storyIndex__tour .swiper-pagination-bullet:not(:first-child) {
  margin-left: 5px;
}

@media screen and (max-width: 828px) {
  .storyIndex__tour .swiper-pagination-bullet:not(:first-child) {
    margin-left: 1.2077294686vw;
  }
}

.storyIndex__tour__moreBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 828px) {
  .storyIndex__tour__moreBtn {
    margin-top: 1.8115942029vw;
  }
}

.storyIndex__music__list {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1440px) {
  .storyIndex__music__list {
    margin-top: 4.8611111111vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__music__list {
    display: block;
    width: 90%;
    margin: 8.4541062802vw auto 0;
  }
}

.storyIndex__music__list__item {
  color: #fff;
  width: 32%;
}

@media screen and (max-width: 828px) {
  .storyIndex__music__list__item {
    width: 100%;
  }
}

@media screen and (min-width: 829px) {
  .storyIndex__music__list__item~.storyIndex__music__list__item {
    margin-left: 2%;
  }
}

.storyIndex__music__list__item:nth-child(n+4) {
  margin-top: 25px;
}

@media screen and (max-width: 1440px) {
  .storyIndex__music__list__item:nth-child(n+4) {
    margin-top: 1.7361111111vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__music__list__item:nth-child(n+4) {
    margin-top: 1.8115942029vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__music__list__item:nth-child(n+2) {
    margin-top: 3.6231884058vw;
  }
}

.storyIndex__music__list__item:nth-child(4),
.storyIndex__music__list__item:nth-child(7),
.storyIndex__music__list__item:nth-child(10),
.storyIndex__music__list__item:nth-child(13) {
  margin-left: 0;
}

@media screen and (max-width: 828px) {
  .storyIndex__music__list__item:nth-child(n+2) {
    margin-left: 0;
  }
}

.storyIndex__music__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #696969;
  height: 76px;
  border-radius: 8px;
  font-weight: bold;
  padding: 0 30px;
}

@media screen and (max-width: 1440px) {
  .storyIndex__music__list__item a {
    height: 5.2777777778vw;
    border-radius: 0.5555555556vw;
    padding: 0 2.0833333333vw;
  }
}

@media screen and (max-width: 828px) {
  .storyIndex__music__list__item a {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 10.8695652174vw;
    border-radius: 0.9661835749vw;
    font-size: 3.3816425121vw;
    padding: 0 3.6231884058vw;
  }
}

@media screen and (min-width: 829px) {
  .storyIndex__music__list__item a {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .storyIndex__music__list__item a:hover {
    background: #333;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
}

.storyIndex__music__moreBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 45px;
}

@media screen and (max-width: 828px) {
  .storyIndex__music__moreBtn {
    margin-top: 7.2463768116vw;
  }
}



/*---------------------------------------------------
	season5
---------------------------------------------------*/
.movie-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movie {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}