@charset "UTF-8";
.popup .popup-body, .grid {
  *zoom: 1;
}
.popup .popup-body:before, .grid:before, .popup .popup-body:after, .grid:after {
  content: "";
  display: table;
}
.popup .popup-body:after, .grid:after {
  clear: both;
}

.hidden,
.sr_only,
.sr-only {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 0px;
  height: 0px;
  margin: -1px;
  padding: 0;
  word-break: keep-all;
  white-space: nowrap;
  color: transparent;
  border: 0;
  text-indent: -9999px;
}

.grid {
  position: relative;
  box-sizing: border-box;
}
.grid .col {
  position: relative;
  float: left;
  box-sizing: border-box;
}

.table {
  display: table;
}
.table .table-cell {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.effect-bounce-diagonal {
  animation-name: effectBounceDiagonal;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes effectBounceDiagonal {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}

.effect-bounce-updown {
  animation-name: effectBounceUpDown;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes effectBounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.effect-extend {
  animation-name: effectExtend;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes effectExtend {
  0%, 100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
}

.effect-blink {
  animation-name: effectBlink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: step-end;
  animation-direction: normal;
}
@keyframes effectBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.popup-dim {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 400;
  width: 100%;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  transform: translateX(-50%);
}
.popup .popup-body {
  position: relative;
  background-color: #fff;
}
.popup .popup-body .video-box {
  position: relative;
  width: 100%;
  height: 50vw;
  box-sizing: border-box;
}
@media screen and (min-width: 720px) {
  .popup .popup-body .video-box {
    height: 360px;
  }
}
.popup .popup-body .video-box video,
.popup .popup-body .video-box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.popup .popup-body .coupon-action {
  margin: 0 8.3333333333vw 4.1666666667vw;
}
@media screen and (min-width: 720px) {
  .popup .popup-body .coupon-action {
    margin: 0 60px 30px;
  }
}
.popup .popup-body .coupon-action a {
  position: relative;
  display: block;
  margin-top: 1.3888888889vw;
  padding: 2.5vw 0;
  text-align: center;
  font-size: 4.1666666667vw;
  font-weight: 700;
  color: #fff;
  border-radius: 11.1111111111vw;
  background-color: #fc5c7d;
}
@media screen and (min-width: 720px) {
  .popup .popup-body .coupon-action a {
    margin-top: 10px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body .coupon-action a {
    padding: 18px 0;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body .coupon-action a {
    font-size: 30px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body .coupon-action a {
    border-radius: 80px;
  }
}
.popup .popup-body .coupon-action a:first-child {
  margin-top: 0;
}
.popup .popup-body .coupon-action a:after {
  right: 5%;
}
.popup .popup-body .coupon-action a:after {
  position: relative;
  display: inline-block;
}
.popup .popup-body .coupon-action a:after:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 1.3888888889vw;
  height: 1.3888888889vw;
  margin-top: -0.6944444444vw;
  border-width: 0;
  border-style: solid;
  border-color: #fff;
  transform: rotate(45deg);
  right: 2.7777777778vw;
  border-top-width: 2px;
  border-right-width: 2px;
}
@media screen and (min-width: 720px) {
  .popup .popup-body .coupon-action a:after:before {
    width: 10px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body .coupon-action a:after:before {
    height: 10px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body .coupon-action a:after:before {
    margin-top: -5px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body .coupon-action a:after:before {
    right: 20px;
  }
}
.popup .popup-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 8.3333333333vw;
  height: 8.3333333333vw;
  top: 0;
  right: 0;
}
@media screen and (min-width: 720px) {
  .popup .popup-close {
    width: 60px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-close {
    height: 60px;
  }
}
.popup .popup-close:before, .popup .popup-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 1px;
  margin-left: -15px;
  background-color: #000;
}
.popup .popup-close:before {
  transform: rotate(45deg);
}
.popup .popup-close:after {
  transform: rotate(315deg);
}
.popup .popup-close span {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 0px;
  height: 0px;
  margin: -1px;
  padding: 0;
  word-break: keep-all;
  white-space: nowrap;
  color: transparent;
  border: 0;
  text-indent: -9999px;
}
.popup.popup-video {
  max-width: 640px;
}
.popup.popup-video .popup-body {
  background: none;
}
.popup.popup-video .popup-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 8.3333333333vw;
  height: 8.3333333333vw;
  top: -8.3333333333vw;
}
@media screen and (min-width: 720px) {
  .popup.popup-video .popup-close {
    width: 60px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-video .popup-close {
    height: 60px;
  }
}
.popup.popup-video .popup-close:before, .popup.popup-video .popup-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 1px;
  margin-left: -15px;
  background-color: #fff;
}
.popup.popup-video .popup-close:before {
  transform: rotate(45deg);
}
.popup.popup-video .popup-close:after {
  transform: rotate(315deg);
}
.popup.popup-video .popup-close span {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 0px;
  height: 0px;
  margin: -1px;
  padding: 0;
  word-break: keep-all;
  white-space: nowrap;
  color: transparent;
  border: 0;
  text-indent: -9999px;
}
@media screen and (min-width: 720px) {
  .popup.popup-video .popup-close {
    top: -60px;
  }
}
.popup.popup-coupon {
  max-width: 600px;
}
.popup.popup-coupon .popup-body:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 142.2222222222vw;
  height: 118.75vw;
  background-image: url("//img.eduwill.net/eduwill/img/2022/_101/freebook/221017/pc/bg_popup.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 720px) {
  .popup.popup-coupon .popup-body:before {
    width: 1024px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-coupon .popup-body:before {
    height: 855px;
  }
}
.popup.popup-coupon.product-single .coupon-action {
  margin: 0;
}
.popup.popup-coupon.product-single .coupon-action a {
  width: 100%;
  border-radius: 0;
}
.popup.popup-coupon.product-single .coupon-action a.btn-product-2 {
  display: none;
}

.promotion .motion-1 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-2 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-3 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-4 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-5 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-6 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-7 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-8 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-9 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-10 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-11 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-12 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-1 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-2 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-3 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-4 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-5 {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-6 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-7 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-8 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-9 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-10 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-11 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-12 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-13 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-14 {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-r-1 {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-r-2 {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-r-3 {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-r-4 {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-r-5 {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-r-6 {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-r-7 {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-r-8 {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-r-9 {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-x-r-10 {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-box-1 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-box-2 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-box-3 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-box-4 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-box-5 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-box-6 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-box-7 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-box-8 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-box-9 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-box-10 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .motion-scale-y-1 {
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform-origin: center bottom;
}
.promotion .motion-scale-y-2 {
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform-origin: center bottom;
}
.promotion .motion-scale-y-3 {
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform-origin: center bottom;
}
.promotion .active .motion-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.promotion .active .motion-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.promotion .active .motion-3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.promotion .active .motion-4 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.promotion .active .motion-5 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.promotion .active .motion-6 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}
.promotion .active .motion-7 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}
.promotion .active .motion-8 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.6s;
}
.promotion .active .motion-9 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
}
.promotion .active .motion-10 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s;
}
.promotion .active .motion-11 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.2s;
}
.promotion .active .motion-12 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.4s;
}
.promotion .active .motion-x-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.promotion .active .motion-x-2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}
.promotion .active .motion-x-3 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
.promotion .active .motion-x-4 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s;
}
.promotion .active .motion-x-5 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1s;
}
.promotion .active .motion-x-6 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.promotion .active .motion-x-7 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}
.promotion .active .motion-x-8 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
.promotion .active .motion-x-9 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s;
}
.promotion .active .motion-x-10 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1s;
}
.promotion .active .motion-x-11 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.2s;
}
.promotion .active .motion-x-12 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.4s;
}
.promotion .active .motion-x-13 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.6s;
}
.promotion .active .motion-x-14 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.8s;
}
.promotion .active .motion-x-r-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.promotion .active .motion-x-r-2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}
.promotion .active .motion-x-r-3 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
.promotion .active .motion-x-r-4 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s;
}
.promotion .active .motion-x-r-5 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1s;
}
.promotion .active .motion-x-r-6 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.2s;
}
.promotion .active .motion-x-r-7 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.4s;
}
.promotion .active .motion-x-r-8 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.6s;
}
.promotion .active .motion-x-r-9 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.8s;
}
.promotion .active .motion-x-r-10 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 2s;
}
.promotion .active .motion-box-1 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.1s;
}
.promotion .active .motion-box-2 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.2s;
}
.promotion .active .motion-box-3 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.3s;
}
.promotion .active .motion-box-4 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.4s;
}
.promotion .active .motion-box-5 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.5s;
}
.promotion .active .motion-box-6 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.6s;
}
.promotion .active .motion-box-7 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.7s;
}
.promotion .active .motion-box-8 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.8s;
}
.promotion .active .motion-box-9 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.9s;
}
.promotion .active .motion-box-10 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 1s;
}
.promotion .active .motion-scale-y-1 {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.1s;
  transform-origin: center bottom;
}
.promotion .active .motion-scale-y-2 {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.2s;
  transform-origin: center bottom;
}
.promotion .active .motion-scale-y-3 {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.3s;
  transform-origin: center bottom;
}

.promotion,
.product,
.product-eco,
.fullservice {
  text-align: center;
}
.promotion [class^=sector-],
.product [class^=sector-],
.product-eco [class^=sector-],
.fullservice [class^=sector-] {
  position: relative;
}
.promotion .wrap,
.product .wrap,
.product-eco .wrap,
.fullservice .wrap {
  position: relative;
  margin: 0 auto;
}
.promotion .wrap-full,
.product .wrap-full,
.product-eco .wrap-full,
.fullservice .wrap-full {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.promotion {
  overflow: hidden;
}
.promotion * {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  letter-spacing: -1px;
}
.promotion .only-mobile {
  display: none;
}
.promotion .only-pc {
  display: inline-block;
}
.promotion .only-pcbr {
  display: block;
}
.promotion .wrap {
  width: 1200px;
  box-sizing: border-box;
  position: relative;
}
.promotion .icon-pointer {
  position: relative;
  display: inline-block;
}
.promotion .icon-pointer:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  display: block;
  width: 6.9444444444vw;
  height: 7.6388888889vw;
  background: url("//img.eduwill.net/Img2/Common/icon/pointer/icon_pointer_12.png") no-repeat 0 0;
  background-size: 100% auto;
  animation-name: pointerBounceDiagonal;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@media screen and (min-width: 720px) {
  .promotion .icon-pointer:after {
    width: 50px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .icon-pointer:after {
    height: 55px;
  }
}
@keyframes pointerBounceDiagonal {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}
.promotion .slick-arrow {
  border-radius: 50%;
}
.promotion .slick-arrow.slick-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  border: none;
  outline: none;
  cursor: pointer;
  transform: translateY(-50%);
  left: 0;
  background: none;
  left: -20px;
}
@media screen and (min-width: 720px) {
  .promotion .slick-arrow.slick-prev {
    width: 40px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .slick-arrow.slick-prev {
    height: 40px;
  }
}
.promotion .slick-arrow.slick-prev:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.3888888889vw;
  height: 1.3888888889vw;
  border-width: 0;
  border-style: solid;
  border-color: #000;
  border-bottom-width: 2px;
  border-left-width: 2px;
  transform: translate(-25%, -50%) rotate(45deg);
}
@media screen and (min-width: 720px) {
  .promotion .slick-arrow.slick-prev:before {
    width: 10px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .slick-arrow.slick-prev:before {
    height: 10px;
  }
}
.promotion .slick-arrow.slick-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  border: none;
  outline: none;
  cursor: pointer;
  transform: translateY(-50%);
  right: 0;
  background: none;
  right: -20px;
}
@media screen and (min-width: 720px) {
  .promotion .slick-arrow.slick-next {
    width: 40px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .slick-arrow.slick-next {
    height: 40px;
  }
}
.promotion .slick-arrow.slick-next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.3888888889vw;
  height: 1.3888888889vw;
  border-width: 0;
  border-style: solid;
  border-color: #000;
  border-top-width: 2px;
  border-right-width: 2px;
  transform: translate(-75%, -50%) rotate(45deg);
}
@media screen and (min-width: 720px) {
  .promotion .slick-arrow.slick-next:before {
    width: 10px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .slick-arrow.slick-next:before {
    height: 10px;
  }
}
.promotion .btn-grounds {
  position: absolute;
}
.promotion .btn-grounds a {
  font-size: 14px;
  color: #bbbbbb;
}
.promotion .btn-grounds a span {
  padding-right: 10px;
}
.promotion .btn-grounds a span {
  position: relative;
  display: inline-block;
}
.promotion .btn-grounds a span:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  margin-top: -0.4166666667vw;
  border-width: 0;
  border-style: solid;
  border-color: #bbb;
  transform: rotate(45deg);
  right: 1.6666666667vw;
  border-top-width: 1px;
  border-right-width: 1px;
}
@media screen and (min-width: 720px) {
  .promotion .btn-grounds a span:before {
    width: 6px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .btn-grounds a span:before {
    height: 6px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .btn-grounds a span:before {
    margin-top: -3px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .btn-grounds a span:before {
    right: 12px;
  }
}
.promotion .btn-grounds a span:before {
  right: 0;
}
.promotion .right-banner {
  position: fixed;
  right: 10px;
  top: 350px;
  z-index: 3;
}
.promotion .right-banner a:after {
  width: 50px;
  height: 55px;
  top: 84%;
}
.promotion .bottom-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  z-index: 10;
}
.promotion .bottom-banner img {
  margin-top: -20px;
}
.promotion .bottom-banner a:after {
  width: 50px;
  height: 55px;
  top: 52%;
  right: 28px;
}
.promotion .bg {
  background-image: url("//img.eduwill.net/eduwill/img/2022/_101/freebook/221017/pc/bg_title.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  background-size: cover;
}
.promotion .sector-title .action {
  position: absolute;
  top: 120px;
  right: 50px;
  background-color: #0060c4;
  padding: 3px 10px;
  color: #fff;
  border-radius: 10px;
}
.promotion .sector-title .right {
  position: absolute;
  display: inline-block;
  right: 0;
  top: 315px;
  z-index: 2;
}
.promotion .sector-title .right .flag {
  position: absolute;
  right: -55px;
  top: -40px;
}
.promotion .sector-bar {
  background-color: #0060c4;
}
.promotion .sector-point2 {
  background-color: #fdf7eb;
}
.promotion .sector-point3 .target-slide {
  display: inline-block;
  position: absolute;
  top: 170px;
  right: 0;
  width: 558px;
}
.promotion .sector-point3 .slick-dots {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.promotion .sector-point3 .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}
.promotion .sector-point3 .slick-dots li button {
  width: 10px;
  height: 10px;
  text-indent: -9999em;
  border: none;
  border-radius: 50%;
  background-color: #cfcfcf;
  outline: none;
  cursor: pointer;
}
.promotion .sector-point3 .slick-dots li.slick-active button {
  border-radius: 15px;
  background-color: #0060c4;
}
.promotion .sector-tip {
  background-image: url("//img.eduwill.net/eduwill/img/2022/_101/freebook/221017/pc/bg_tip.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  background-size: cover;
}
.promotion .sector-no1 {
  background-color: #0060c4;
  padding-bottom: 70px;
}
.promotion .sector-no1 .title {
  margin-top: -80px;
}
.promotion .sector-no1 .slick-arrow {
  background-color: #000;
  width: 40px;
  height: 40px;
  border-radius: 0;
  color: #fff;
}
.promotion .sector-no1 .slick-arrow::before {
  border-color: #fff;
}
.promotion .sector-no1 .slick-arrow.slick-prev {
  left: 50px;
}
.promotion .sector-no1 .slick-arrow.slick-next {
  right: 6px;
}
.promotion .sector-event {
  padding-bottom: 150px;
}
.promotion .sector-event .notice-box {
  margin: 6.3888888889vw auto 0;
  background-color: #F6F7F8;
  padding: 5.5555555556vw 7.2222222222vw;
  box-sizing: border-box;
}
@media screen and (min-width: 720px) {
  .promotion .sector-event .notice-box {
    margin: 46px auto 0;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-event .notice-box {
    padding: 40px 52px;
  }
}
.promotion .sector-event .notice-box dl {
  text-align: left;
}
.promotion .sector-event .notice-box dl dt {
  color: #222;
  font-weight: 700;
  font-size: 3.3333333333vw;
  margin-bottom: 2.0833333333vw;
}
@media screen and (min-width: 720px) {
  .promotion .sector-event .notice-box dl dt {
    font-size: 24px;
  }
}
@media screen and (min-width: 720px) {
  .promotion .sector-event .notice-box dl dt {
    margin-bottom: 15px;
  }
}
.promotion .sector-event .notice-box dl dd {
  color: #222;
  font-weight: 400;
  font-size: 2.5vw;
  line-height: 170%;
}
@media screen and (min-width: 720px) {
  .promotion .sector-event .notice-box dl dd {
    font-size: 18px;
  }
}

.popup {
  width: 675px;
  border-radius: 20px;
  border: 2px solid #5b5b5b;
  background-color: #5b5b5b;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
  overflow: hidden;
}
.popup-title {
  position: relative;
  text-align: center;
  padding: 20px 0;
  background-color: #5b5b5b;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
.popup-title h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.popup-title .popup-close {
  top: 50%;
  transform: translateY(-50%);
}
.popup-title .popup-close::before, .popup-title .popup-close:after {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
.popup-cont {
  padding: 48px 30px 80px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
.popup-cont p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-align: left;
  letter-spacing: -1px;
}

#freebookApply {
  padding-bottom: 100px;
  border-top: none;
}
#freebookApply .wrap {
  width: 1200px;
}
#freebookApply .freebook-calendar {
  padding-bottom: 20px;
}
#freebookApply .freebook-calendar .calendar-table .day {
  box-shadow: 0px 0px 35px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 150px;
  height: 120px;
  margin-right: 9px;
  border-left: none;
}
#freebookApply .freebook-calendar .calendar-table .day:last-child {
  margin-right: 0;
}
#freebookApply .freebook-calendar .calendar-table .day .cover {
  background-color: #4e4e4e;
  color: #fff;
  font-size: 35px;
  width: 150px;
  height: 120px;
}
#freebookApply .freebook-calendar .calendar-table .day .day-body {
  height: 120px;
  padding-top: 25px;
  color: #000;
}
#freebookApply .freebook-calendar .calendar-table .day .day-body p {
  color: #0060c4;
  font-size: 19px;
}
#freebookApply .freebook-calendar .calendar-table .day .day-body strong {
  color: #000;
}
#freebookApply .freebook-calendar .calendar-table .day.none {
  background-color: #f5f5f5;
}
#freebookApply .freebook-calendar .calendar-table .week {
  margin-bottom: 9px;
  border-top: none;
  border-bottom: none;
}
#freebookApply .freebook-calendar .calendar-table .week:last-child {
  margin-bottom: 0;
}
#freebookApply .freebook-container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
#freebookApply .freebook-title .wrap {
  text-align: left;
}
#freebookApply .freebook-count .wrap {
  text-align: left;
}
#freebookApply .freebook-count .wrap .count-table {
  position: absolute;
  top: -238px;
  right: 320px;
  display: inline-block;
  margin: 0;
}
#freebookApply .freebook-count .wrap .count-table p {
  font-size: 25px;
  font-weight: 500;
}
#freebookApply .freebook-count .wrap .count-table .count-list {
  text-align: center;
}
#freebookApply .freebook-count .wrap .buttons {
  position: relative;
  text-align: center;
  margin-top: -87px;
}
#freebookApply .freebook-count .wrap .buttons p {
  position: absolute;
  top: 34px;
  left: 64.5%;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}
#freebookApply .freebook-count .wrap .notice {
  padding-left: 50px;
}
#freebookApply .freebook-count .wrap .notice p {
  font-weight: 700;
  font-size: 18px;
}
#freebookApply .freebook-count .wrap .notice ul {
  margin-top: 10px;
}
#freebookApply .freebook-count .wrap .notice ul li {
  font-size: 14px;
  line-height: 1.5;
}
#freebookApply .freebook-count .count-list .count {
  width: 120px;
  height: 162px;
  font-size: 108px;
  font-weight: 900;
  margin-left: 20px;
}
#freebookApply .freebook-count .count-list .count:first-child {
  margin-left: 0;
}/*# sourceMappingURL=web.css.map */