introMovieWrapper {
  position: relative;
  z-index: 10;
}


.introMovie {
  /* position: relative; */
  z-index: 3;
  height: 100%;
  background: #000;
}

.introMovie__btn {
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .introMovie + .conceptSect {
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .introMovie + .conceptSect {
    margin-top: 35px;
  }
}

.thumnailArea {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /* transition: 1s 0.3s cubic-bezier(0.87, 0, 0.13, 1); */
  transition: .5s;
  z-index: 0;
}

.thumnailArea:hover {
  transform: scale(1.15);
}

.thumnailArea:before {
  background-color: rgba(0, 0, 0, 0.3);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .thumnailArea {
    /* width: 1000px; */
  }
}

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

@media screen and (max-width: 768px) {
  .thumnailArea .playSVG {
    width: 74px;
  }
}

.thumnailArea .movieFrame {
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .thumnailArea .movieFrame {
    /* -webkit-transform: scale(1.2);
            transform: scale(1.2); */
  }
}

@media screen and (max-width: 768px) {
  .thumnailArea .movieFrame {
    /* -webkit-transform: scale(1.5);
            transform: scale(1.5); */
  }
}

.modalFrame {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: .9s;
  transition: .9s;
  visibility: hidden;
  width: 100vw;
  z-index: 999999;
  -webkit-transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
          transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
}

.modalFrame__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

body.noscroll {
  overflow: hidden;
  height: 100vh;
}

.modalFrame .modalContent {
  position: relative;
}

@media screen and (max-width: 768px) {
  .modalFrame .modalContent {
    width: 100%;
  }
}

.modalFrame .modalContent__inner {
  overflow: scroll;
  position: relative;
  z-index: 9;
}

@media screen and (max-width: 768px) {
  .modalFrame .modalContent__inner {
    width: 100%;
  }
}

.modalFrame .modalContent__inner::-webkit-scrollbar {
  display: none;
}

.modalFrame .modalContent__close {
  cursor: pointer;
  position: absolute;
  right: 0;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .modalFrame .modalContent__close {
    bottom: calc(100% + 20px);
    height: 30px;
    width: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-height: 800px) {
  .modalFrame .modalContent__close {
    bottom: unset;
    right: -65px;
    top: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1385px) and (max-height: 800px) {
  .modalFrame .modalContent__close {
    bottom: unset;
    right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .modalFrame .modalContent__close {
    bottom: calc(100% + 10px);
    height: 15px;
    width: 25px;
  }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
  .modalFrame .modalContent__close {
    bottom: 100%;
  }
}

.modalFrame .modalContent__close:before, .modalFrame .modalContent__close:after {
  background-color: #ffffff;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  width: 110%;
}

@media screen and (max-width: 768px) {
  .modalFrame .modalContent__close:before, .modalFrame .modalContent__close:after {
    height: 1px;
  }
}

.modalFrame .modalContent__close:before {
  top: 0;
  -webkit-transform: rotate(30.6deg);
          transform: rotate(30.6deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.modalFrame .modalContent__close:after {
  bottom: 0;
  -webkit-transform: rotate(-30.6deg);
          transform: rotate(-30.6deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.modalFrame.is-visible {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 1200px) {
  .modalFrame .movieFrame {
    height: 56.25vw;
    width: 100vw;
  }
  .modalFrame .movieFrame.aspect4_3 {
    width:80vw;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media screen and (max-width: 768px) {
  .modalFrame .movieFrame {
    height: 56.25vw;
    width: 100vw;
  }
  .modalFrame .movieFrame.aspect4_3 {
    width:100vw;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media screen and (max-width: 768px) {
  .modalFrame .movieFrame--pcPlayer {
    display: none;
  }
}