@import url(https://fonts.googleapis.com/earlyaccess/cwtexyen.css);
@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&family=Nanum+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap");
.main {
  margin: 150px auto;
}

.top {
  position: relative;
  width: 100%;
  height: 40vw;
  margin: auto;
  overflow: hidden;
}
.top .pic {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.top-slogan {
  position: sticky;
  top: calc(50vh - 40px);
  color: #fff;
  font-size: 26px;
  line-height: 1.5em;
  text-align: center;
  z-index: 2;
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.top-slogan.show {
  -moz-transform: translateY(-75px);
  -ms-transform: translateY(-75px);
  -webkit-transform: translateY(-75px);
  transform: translateY(-75px);
}

.bn-back {
  cursor: pointer;
  position: fixed;
  display: inline-block;
  width: 40px;
  margin-left: 10px;
  bottom: 17px;
  right: 60px;
  z-index: 5;
}
.bn-back img {
  width: 100%;
}
.bn-back:hover img {
  opacity: 0.6;
}

@-moz-keyframes showHide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes showHide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes showHide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.info {
  position: relative;
  width: 500px;
  margin: 0 auto;
}
.info-name {
  position: relative;
  margin: 0 auto 60px;
  font-size: 20px;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.info-name.show {
  opacity: 1;
}
.info-name.show:before {
  -moz-animation: showHide 2s ease-in-out;
  -webkit-animation: showHide 2s ease-in-out;
  animation: showHide 2s ease-in-out;
}
.info-name:before {
  content: "";
  position: absolute;
  height: 100%;
  right: 0;
  background: #191919;
  z-index: 1;
}
.info-name:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  right: 0;
  bottom: 8px;
  background: #666;
  z-index: -1;
}
.info-name p {
  position: relative;
  width: fit-content;
  padding: 0 10px 0 0;
  background: #191919;
}
.info-name .type {
  color: #aaa;
}
.info-text {
  color: #aaa;
  margin: auto;
  text-align: justify;
}
.info-text:after {
  content: "";
  position: relative;
  display: block;
  width: calc(100% + 60px);
  height: 30px;
  left: -30px;
  border: solid 1px #444;
  border-top: unset;
  z-index: -1;
  opacity: 0;
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -moz-transition: opacity 0.8s ease-in-out 0.3s;
  -o-transition: opacity 0.8s ease-in-out 0.3s;
  -webkit-transition: opacity 0.8s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition: opacity 0.8s ease-in-out 0.3s;
}
.info-text.show:after {
  opacity: 1;
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.info-text p {
  margin-bottom: 20px;
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.info-text p:last-child {
  margin-bottom: 0;
}
.info-text .title {
  color: #a99166;
}
.info-source {
  position: absolute;
  width: 100%;
  bottom: -10px;
  text-align: center;
  opacity: 0;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.info-source:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: #191919;
  z-index: 1;
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.info-source.show {
  opacity: 1;
}
.info-source.show:before {
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.info-source a {
  position: relative;
  padding: 0 13px 0 10px;
  background: #191919;
  color: #aaa;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.info-source a:before, .info-source a:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 6px;
  background: #666;
  -moz-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.info-source a:before {
  left: -5px;
}
.info-source a:after {
  right: -5px;
}
.info-source a:hover {
  color: #eee;
}
.info-source a i {
  font-size: 10px;
  margin: 0 5px 0 8px;
}

.content {
  position: relative;
  width: 100%;
  margin: 60px auto 0;
}

.swiper-container, .media-container {
  position: relative;
  width: 50%;
  height: 100%;
  margin: auto;
  overflow: hidden;
}
.swiper-container .content-play, .media-container .content-play {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.swiper-container .content-play iframe, .swiper-container .content-play object, .swiper-container .content-play embed, .media-container .content-play iframe, .media-container .content-play object, .media-container .content-play embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swiper-slide img, .media-slide img {
  width: 100%;
}
.swiper-button-prev, .swiper-button-next, .media-button-prev, .media-button-next {
  color: #fff;
  padding: 10px;
}

.mo {
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s 0.1s;
  -o-transition: opacity 0.6s, -o-transform 0.6s 0.1s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  -webkit-transition-delay: 0s, 0.1s;
  transition: opacity 0.6s, transform 0.6s 0.1s;
}
.mo.mov {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 1200px) {
  header {
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  .scrolltop {
    bottom: 19px;
    right: 20px;
  }

  .bn-back {
    bottom: 60px;
    right: 14px;
  }

  .nav-box li:before {
    display: block;
  }

  .top {
    height: 60vw;
  }

  .swiper-container, .media-container {
    width: calc(500px + 60px);
  }
}
@media screen and (max-width: 800px) {
  .top {
    height: 70vw;
  }

  .main {
    margin: 150px auto 50px;
  }

  .info {
    width: calc(100% - 150px);
  }

  .swiper-container, .media-container {
    width: calc(100% - 90px);
  }
}
@media screen and (max-width: 640px) {
  .top {
    height: 80vw;
  }

  .main {
    margin: 100px auto 50px;
  }

  .info {
    width: calc(100% - 100px);
  }

  .swiper-container, .media-container {
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  .top {
    height: 90vw;
  }

  .info {
    width: calc(100% - 40px);
  }
}
