@charset "UTF-8";
.grid {
  *zoom: 1;
}
.grid::before, .grid::after {
  content: "";
  display: table;
}
.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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.grid .col {
  position: relative;
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.product-eco .wide {
  position: relative;
  left: 50%;
  display: block;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

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

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

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

.effect-blink {
  -webkit-animation-name: effectBlink;
          animation-name: effectBlink;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: step-end;
          animation-timing-function: step-end;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@-webkit-keyframes effectBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@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: 200;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup {
  display: none;
  max-width: 100vw;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 10000;
  width: 100vw;
  letter-spacing: -1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}
@media screen and (min-width: 720px) {
  .popup {
    max-width: 720px;
  }
}
@media screen and (min-width: 720px) {
  .popup {
    width: 720px;
  }
}

.popup-close:after, .popup-close:before {
  display: none !important;
}

.popup .popup-close a {
  position: absolute;
  top: 1.3888888889vw;
  right: 2.7777777778vw;
  width: 6.9444444444vw;
  height: 6.9444444444vw;
  display: block;
}
@media screen and (min-width: 720px) {
  .popup .popup-close a {
    top: 10px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-close a {
    right: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-close a {
    width: 50px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-close a {
    height: 50px;
  }
}

.popup .popup-close a:before,
.popup .popup-close a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 6.25vw;
  height: 0.1388888889vw;
  margin-left: -1.0416666667vw;
  background-color: #fff;
}
@media screen and (min-width: 720px) {
  .popup .popup-close a:before,
  .popup .popup-close a:after {
    width: 45px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-close a:before,
  .popup .popup-close a:after {
    height: 1px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-close a:before,
  .popup .popup-close a:after {
    margin-left: -7.5px;
  }
}

.popup .popup-close a:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup .popup-close a:after {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.popup .popup-title {
  background-color: #144741;
  color: #fff;
  height: auto;
  padding: 2.7777777778vw;
  font-size: 4.1666666667vw;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 0 !important;
}
@media screen and (min-width: 720px) {
  .popup .popup-title {
    padding: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-title {
    font-size: 30px;
  }
}

.popup .popup-content {
  height: auto;
  max-height: 69.4444444444vw;
  overflow-y: auto !important;
  padding: 3.4722222222vw;
  text-align: left;
  font-size: 2.3611111111vw;
  border: 2px solid #282828;
  background-color: #fff;
}
@media screen and (min-width: 720px) {
  .popup .popup-content {
    max-height: 500px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-content {
    padding: 25px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-content {
    font-size: 17px;
  }
}
.popup .popup-content p {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 2.3611111111vw;
}
@media screen and (min-width: 720px) {
  .popup .popup-content p {
    font-size: 17px;
  }
}

.popup .popup-content dl {
  display: table;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.popup .popup-content dt,
.popup .popup-content dd {
  display: table-cell;
  vertical-align: middle;
  font-size: 2.3611111111vw;
  color: #000;
  padding: 2.7777777778vw 0;
}
@media screen and (min-width: 720px) {
  .popup .popup-content dt,
  .popup .popup-content dd {
    font-size: 17px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-content dt,
  .popup .popup-content dd {
    padding: 20px 0;
  }
}

.popup .popup-content dt {
  width: 20%;
  text-align: center;
}

.popup .popup-content dd {
  width: 80%;
  text-align: left;
}

.popup .popup-content .text-box {
  font-size: 2.3611111111vw;
  line-height: 4.1666666667vw;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  color: #000;
}
@media screen and (min-width: 720px) {
  .popup .popup-content .text-box {
    font-size: 17px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-content .text-box {
    line-height: 30px;
  }
}

.popup-base .popup-content,
.popup-text .popup-content {
  height: auto;
}

.popup .popup-title .highlight {
  display: block;
  color: #e2c17e;
  font-size: 21px;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.product-eco .motion-1 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-2 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-3 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-4 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-5 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-6 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-7 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-8 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-9 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-10 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-11 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-12 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-box-1 {
  opacity: 0;
  -webkit-transform: scale(0.1, 0.1);
  transform: scale(0.1, 0.1);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-box-2 {
  opacity: 0;
  -webkit-transform: scale(0.1, 0.1);
  transform: scale(0.1, 0.1);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-box-3 {
  opacity: 0;
  -webkit-transform: scale(0.1, 0.1);
  transform: scale(0.1, 0.1);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .motion-box-4 {
  opacity: 0;
  -webkit-transform: scale(0.1, 0.1);
  transform: scale(0.1, 0.1);
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.product-eco .active .motion-1 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.product-eco .active .motion-2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.product-eco .active .motion-3 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.product-eco .active .motion-4 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.product-eco .active .motion-5 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.product-eco .active .motion-6 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.product-eco .active .motion-7 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.product-eco .active .motion-8 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.product-eco .active .motion-9 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}
.product-eco .active .motion-10 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.product-eco .active .motion-11 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 2.2s;
  transition-delay: 2.2s;
}
.product-eco .active .motion-12 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s;
}
.product-eco .active .motion-box-1 {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.product-eco .active .motion-box-2 {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.product-eco .active .motion-box-3 {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.product-eco .active .motion-box-4 {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.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-900,
.product .wrap-900,
.product-eco .wrap-900,
.fullservice .wrap-900 {
  width: 900px;
}
.promotion .wrap-1000,
.product .wrap-1000,
.product-eco .wrap-1000,
.fullservice .wrap-1000 {
  width: 1000px;
}
.promotion .wrap-1100,
.product .wrap-1100,
.product-eco .wrap-1100,
.fullservice .wrap-1100 {
  width: 1100px;
}
.promotion .wrap-1200,
.product .wrap-1200,
.product-eco .wrap-1200,
.fullservice .wrap-1200 {
  width: 1200px;
}
.promotion .wrap-full,
.product .wrap-full,
.product-eco .wrap-full,
.fullservice .wrap-full {
  width: 100%;
}

.fix-apply#fixApply {
  display: none !important;
}

.product-eco {
  overflow: hidden;
  color: #000;
}
.product-eco * {
  line-height: normal;
  font-family: Pretendard, "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  letter-spacing: -1px;
}
.product-eco button {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  font-family: inherit;
  text-decoration: none;
  border: none;
  background: transparent;
  outline: 0;
  cursor: pointer;
}
.product-eco p {
  margin: 0;
  padding: 0;
  line-height: 1;
  color: inherit;
}
.product-eco .wrap {
  width: 1200px;
}
.product-eco .only-pc {
  display: block;
}
.product-eco .only-mobile {
  display: none;
}
.product-eco .icon-pointer {
  position: relative;
  display: inline-block;
}
.product-eco .icon-pointer::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 0;
  z-index: 1;
  display: block;
  width: 8.3333333333vw;
  height: 7.7777777778vw;
  background: url("//img.eduwill.net/Img2/Common/icon/pointer/icon_pointer_23.png") no-repeat 0 0;
  background-size: 100% auto;
  -webkit-animation-name: pointerBounceDiagonal;
          animation-name: pointerBounceDiagonal;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@media screen and (min-width: 720px) {
  .product-eco .icon-pointer::after {
    width: 60px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .icon-pointer::after {
    height: 56px;
  }
}
@-webkit-keyframes pointerBounceDiagonal {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10px, -10px);
    transform: translate(-10px, -10px);
  }
}
@keyframes pointerBounceDiagonal {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10px, -10px);
    transform: translate(-10px, -10px);
  }
}
.product-eco .btn-text, .product-eco .btn-grounds {
  display: inline-block !important;
  padding: 5px 22px 5px 7px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  letter-spacing: -1px;
  line-height: 1;
  vertical-align: top;
  font-weight: 400;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}
.product-eco .btn-text, .product-eco .btn-grounds {
  position: relative;
  display: inline-block;
}
.product-eco .btn-text::before, .product-eco .btn-grounds::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: rgba(0, 0, 0, 0.6);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 1.6666666667vw;
  border-top-width: 1px;
  border-right-width: 1px;
}
@media screen and (min-width: 720px) {
  .product-eco .btn-text::before, .product-eco .btn-grounds::before {
    width: 6px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .btn-text::before, .product-eco .btn-grounds::before {
    height: 6px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .btn-text::before, .product-eco .btn-grounds::before {
    margin-top: -3px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .btn-text::before, .product-eco .btn-grounds::before {
    right: 12px;
  }
}
.product-eco .btn-text span, .product-eco .btn-grounds span {
  line-height: 1;
}
.product-eco .btn-text.color-fff, .product-eco .btn-grounds.color-fff {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}
.product-eco .btn-text.color-fff:before, .product-eco .btn-grounds.color-fff:before {
  border-color: rgba(255, 255, 255, 0.6);
}
.product-eco .btn-text.line, .product-eco .btn-grounds.line {
  padding: 5px 2px;
  color: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
.product-eco .btn-text.line span:before, .product-eco .btn-grounds.line span:before {
  border-color: rgba(0, 0, 0, 0.8);
}
.product-eco .fix-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  height: 100px;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.product-eco .fix-bottom .wrap {
  height: 100%;
}
.product-eco .fix-bottom .wrap a {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.product-eco .fix-bottom .wrap a:after {
  top: 70%;
  right: 5%;
}
.product-eco .slick-dots {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
.product-eco .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}
.product-eco .slick-dots li button {
  width: 14px;
  height: 14px;
  text-indent: -9999em;
  border: none;
  border-radius: 50%;
  background-color: #b2b2b2;
  outline: none;
  cursor: pointer;
}
.product-eco .slick-dots li.slick-active button {
  width: 38px;
  border-radius: 15px;
  background-color: #0095fe;
}
.product-eco .grounds-text {
  position: relative;
  text-align: right;
  margin-top: 20px;
  color: rgba(167, 166, 166, 0.6);
  font-weight: 400;
  font-size: 16px;
}
.product-eco .fix-banner {
  z-index: 100;
}
.product-eco .fix-banner.fix-right {
  position: fixed;
  right: 0;
  top: 20%;
}
.product-eco .sector-title {
  background-image: url("https://img.eduwill.net/eduwill/img/2025/V/product/250901_2/pc/bg_title.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  overflow: hidden;
}
.product-eco .sector-title:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF67B;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF67B), to(#FFECB9));
  background: linear-gradient(180deg, #FFF67B 0%, #FFECB9 100%);
}
.product-eco .sector-title .wrap {
  width: 1300px;
}
.product-eco .sector-item {
  background: #FAFAFA;
}
.product-eco .sector-item .wrap {
  padding: 100px 0;
}
.product-eco .sector-item * {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}
.product-eco .sector-item .title-box {
  margin-bottom: 60px;
}
.product-eco .sector-item .title-box p {
  font-size: 35px;
  line-height: 135%;
  color: #000;
  letter-spacing: -1.05px;
}
.product-eco .sector-item .box-list {
  padding: 0 20px;
}
.product-eco .sector-item .box-item {
  text-align: left;
  padding: 28px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #FFF;
}
.product-eco .sector-item .title-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.product-eco .sector-item .title-label p {
  font-size: 18px;
  font-weight: 700;
  line-height: 240%;
  color: #000;
  letter-spacing: -0.72px;
}
.product-eco .sector-item .title-label .title-1 {
  color: #ED1010;
}
.product-eco .sector-item .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-eco .sector-item .box-title p {
  font-size: 28px;
  line-height: 130%;
  color: #000;
  letter-spacing: -1px;
}
.product-eco .sector-item .price-after p {
  font-size: 36px;
  line-height: 120%;
  color: #000;
  letter-spacing: -1px;
}
.product-eco .sector-item .price-after p span {
  font-weight: 900;
}
.product-eco .sector-item .box-benefit {
  margin: 20px 0 32px;
  padding-top: 32px;
  border-top: 1px solid #CFCFCF;
}
.product-eco .sector-item .box-benefit ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-eco .sector-item .box-benefit ul li {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  color: #171717;
  letter-spacing: -0.84px;
  padding: 10px 30px;
  border-right: 1px solid #CFCFCF;
}
.product-eco .sector-item .box-benefit ul li:last-child {
  border-right: 0;
}
.product-eco .sector-item .price-action a {
  width: 100%;
  font-size: 20px;
  font-weight: 900;
  color: #FFF;
  letter-spacing: -1px;
  padding: 24px 32px;
  border-radius: 6px;
  background: #646464;
  background: -webkit-gradient(linear, left top, left bottom, from(#646464), to(#000));
  background: linear-gradient(180deg, #646464 0%, #000 100%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.product-eco .sector-item .price-action a {
  position: relative;
  display: inline-block;
}
.product-eco .sector-item .price-action a::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;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 2.7777777778vw;
  border-top-width: 2px;
  border-right-width: 2px;
}
@media screen and (min-width: 720px) {
  .product-eco .sector-item .price-action a::before {
    width: 10px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .sector-item .price-action a::before {
    height: 10px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .sector-item .price-action a::before {
    margin-top: -5px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .sector-item .price-action a::before {
    right: 20px;
  }
}
.product-eco .sector-benefit {
  background-color: #FFF;
  background-image: url("https://img.eduwill.net/eduwill/img/2025/V/product/250901_2/pc/bg_benefit.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}
.product-eco .sector-plus {
  background-image: url("https://img.eduwill.net/eduwill/img/2025/V/product/250901_2/pc/bg_benefit_plus.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}
.product-eco .sector-plus:before {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  top: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: url("https://img.eduwill.net/eduwill/img/2025/V/product/250901_2/pc/icon_plus.png") 0 0 no-repeat;
  background-size: cover;
}
.product-eco .sector-why {
  background: #F8F8F8;
}
.product-eco .sector-up {
  background-color: #FFF;
  background-image: url("https://img.eduwill.net/eduwill/img/2025/V/product/250901_2/pc/bg_up.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}
.product-eco .sector-frame {
  background: #F3F3F3;
}
.product-eco .sector-frame .wrap {
  padding: 100px 0;
}
.product-eco .sector-frame .frame {
  position: relative;
  margin: 0 20px 24px;
  padding: 60px 0;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #FFF;
}
.product-eco .sector-frame .frame-1 .btn-text {
  top: 147px;
  margin-left: 148px;
}
.product-eco .sector-frame .frame-2 .btn-text {
  top: 148px;
  margin-left: 198px;
}
.product-eco .sector-frame .frame-2 .flag {
  top: 94px;
  margin-left: -294px;
}
.product-eco .sector-frame .btn-text {
  position: absolute;
  left: 50%;
}
.product-eco .sector-frame .flag {
  position: absolute;
  left: 50%;
}
.product-eco .sector-frame .title-box {
  margin-bottom: 40px;
}
.product-eco .sector-frame .title-box .num-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: #000;
  line-height: 120%;
  letter-spacing: -0.48px;
  margin-bottom: 12px;
  padding: 12px 36px;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  background: #FFF;
}
.product-eco .sector-frame .title-box .sub-title {
  font-size: 22px;
  line-height: 140%;
  color: #444;
  letter-spacing: -0.88px;
}
.product-eco .sector-frame .title-box .sub-title strong {
  font-weight: 700;
  color: #000;
  margin-top: 4px;
}
.product-eco .sector-frame .title-box .sub-title em {
  display: inline-block;
  font-size: 14px;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.product-eco .sector-frame .book-slide .slick-slide {
  margin: 0 12px;
}
.product-eco .sector-frame .book-slide .slick-slide .best {
  position: relative;
  padding-top: 32px;
}
.product-eco .sector-frame .book-slide .slick-slide .best:before {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 50px;
  height: 63px;
  background-image: url("https://img.eduwill.net/eduwill/img/2025/V/product/250901_2/pc/icon_best.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}
.product-eco .sector-frame .notice {
  font-size: 14px;
  line-height: 130%;
  color: rgba(68, 68, 68, 0.5);
  letter-spacing: -0.56px;
  margin-top: 20px;
}
.product-eco .sector-frame .video-box {
  position: relative;
}
.product-eco .sector-frame .video-box .video-wrap {
  position: absolute;
  top: 216px;
  left: 120px;
}
.product-eco .sector-review {
  background: #FFF;
}
.product-eco .sector-review .wrap {
  padding: 80px 0;
}
.product-eco .sector-review .tab-group {
  position: relative;
}
.product-eco .sector-review .tab-group .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.product-eco .sector-review .tab-group .tab-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80px;
  font-size: 24px;
  color: #aaa;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #F8F8F8;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.product-eco .sector-review .tab-group .tab-list li.active {
  font-weight: 700;
  color: #FFF;
  border-color: #000;
  background: #000;
}
.product-eco .sector-review .tab-group .tab-view {
  display: none;
}
.product-eco .sector-review .tab-group .tab-view.active {
  display: block;
}
.product-eco .sector-review .tab-group .tab-view .slide-list {
  padding: 60px 0;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #F8F8F8;
}
.product-eco .sector-review .tab-group .tab-view .slick-slide {
  margin: 0 10px;
}
.product-eco .sector-review .tab-group .tab-view .slick-arrow {
  left: 50% !important;
}
.product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-next {
  margin-left: 550px !important;
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  width: 11.1111111111vw;
  height: 11.1111111111vw;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 50%;
  background: none;
}
@media screen and (min-width: 720px) {
  .product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-next {
    width: 80px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-next {
    height: 80px;
  }
}
.product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2.7777777778vw;
  height: 2.7777777778vw;
  border-width: 0;
  border-style: solid;
  border-color: #000;
  border-top-width: 2px;
  border-right-width: 2px;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
  transform: translate(-75%, -50%) rotate(45deg);
}
@media screen and (min-width: 720px) {
  .product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-next::before {
    width: 20px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-next::before {
    height: 20px;
  }
}
.product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-prev {
  margin-left: -600px !important;
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  width: 11.1111111111vw;
  height: 11.1111111111vw;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50%;
  background: none;
}
@media screen and (min-width: 720px) {
  .product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-prev {
    width: 80px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-prev {
    height: 80px;
  }
}
.product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2.7777777778vw;
  height: 2.7777777778vw;
  border-width: 0;
  border-style: solid;
  border-color: #000;
  border-bottom-width: 2px;
  border-left-width: 2px;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
  transform: translate(-25%, -50%) rotate(45deg);
}
@media screen and (min-width: 720px) {
  .product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-prev::before {
    width: 20px;
  }
}
@media screen and (min-width: 720px) {
  .product-eco .sector-review .tab-group .tab-view .slick-arrow.slick-prev::before {
    height: 20px;
  }
}
.product-eco .sector-review .action {
  margin-top: 40px;
}
.product-eco .sector-review .support-message {
  color: rgba(68, 68, 68, 0.5);
}
.product-eco .sector-search {
  background: #FFD900;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFD900), to(#FFBF00));
  background: linear-gradient(180deg, #FFD900 0%, #FFBF00 100%);
}
.product-eco .sector-branding {
  background-image: url("https://img.eduwill.net/eduwill/img/2025/V/product/250901_2/pc/bg_branding.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}/*# sourceMappingURL=web.css.map */