@charset "UTF-8";
@-webkit-keyframes flash {
  0%, 100% {
    color: #f44747;
  }
  50% {
    color: #ab4ec1;
  }
}

@keyframes flash {
  0%, 100% {
    color: #f44747;
  }
  50% {
    color: #ab4ec1;
  }
}

.promotion {
  position: relative;
  text-align: center;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  /* input 기본 스타일 초기화 
    input {
        -webkit-appearance: none;
        -moz-appearance: none;
                appearance: none;
    }
    */
  /* IE10 이상에서 input box 에 추가된 지우기 버튼 제거 */
  /* input type number 에서 화살표 제거 */
  /* Select box 스타일 초기화 */
  /* IE 에서 Select box 화살표 제거 */
}

.promotion *, .promotion *:before, .promotion *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion img {
  border: 0;
  vertical-align: top;
  line-height: 0;
  font-size: 0;
}

.promotion .clearfix {
  zoom: 1;
}

.promotion .clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.promotion input::-ms-clear {
  display: none;
}

.promotion input[type=number]::-webkit-inner-spin-button,
.promotion input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.promotion select {
  border-radius: 0;
  /* 아이폰 사파리 보더 없애기 */
  -webkit-appearance: none;
  /* 화살표 없애기 for chrome*/
  -moz-appearance: none;
  /* 화살표 없애기 for firefox*/
  appearance: none;
}

.promotion select::-ms-expand {
  display: none;
}

.promotion .layer {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.promotion .layer .box {
  display: table;
  width: 100%;
  height: 100%;
}

.promotion .layer .box .in {
  display: table-cell;
  vertical-align: middle;
}

.promotion .layer .box .in strong {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (min-width: 720px) {
  .promotion .layer .box .in strong {
    font-size: 40px;
  }
}

@media screen and (max-width: 719px) {
  .promotion .layer .box .in strong {
    font-size: 5.55556vw;
  }
}

.promotion .layer .box .in p {
  color: #fff;
  font-weight: 300;
}

@media screen and (min-width: 720px) {
  .promotion .layer .box .in p {
    font-size: 24px;
  }
}

@media screen and (max-width: 719px) {
  .promotion .layer .box .in p {
    font-size: 3.33333vw;
  }
}

.promotion .layer .box .in a {
  display: inline-block;
  padding: 10px 3%;
  margin-top: 5%;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  background: #c11414;
}

@media screen and (min-width: 720px) {
  .promotion .layer .box .in a {
    font-size: 24px;
  }
}

@media screen and (max-width: 719px) {
  .promotion .layer .box .in a {
    font-size: 3.33333vw;
  }
}

@-webkit-keyframes slideUpY {
  0% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(-10px, 0);
    transform: translate(-10px, 0);
  }
}

@keyframes slideUpY {
  0% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(-10px, 0);
    transform: translate(-10px, 0);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

/* layer */
.hidden,
.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;
}

.dimmed {
  display: none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup {
  font-family: "Noto Sans KR", Sans-Serif;
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2001;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  max-width: 620px;
  width: 100%;
  height: auto;
  background-color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.popup .popup-close {
  cursor: pointer;
  display: inline-block;
  width: 56px;
  height: 56px;
  position: absolute;
  top: -50px;
  right: -10px;
  z-index: 2002;
}

.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: #fff;
}

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

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

.popup .popup-title {
  background-color: #3e4c98;
  padding: 30px 0;
  text-align: center;
}

.popup .popup-title strong {
  color: #fff;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 700;
}

@media screen and (min-width: 720px) {
  .popup .popup-title strong {
    font-size: 36px;
  }
}

@media screen and (max-width: 719px) {
  .popup .popup-title strong {
    font-size: 5vw;
  }
}

.popup .popup-cont {
  padding: 5%;
}

.popup .popup-cont .text-box {
  color: #000;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  line-height: 1.5;
}

@media screen and (min-width: 720px) {
  .popup .popup-cont .text-box {
    font-size: 24px;
  }
}

@media screen and (max-width: 719px) {
  .popup .popup-cont .text-box {
    font-size: 3.33333vw;
  }
}

@media screen and (min-width: 720px) {
  .popup .popup-cont .text-box {
    font-size: 16px;
  }
}

.popup .popup-cont .tab-box .tab-list:after {
  content: '';
  display: block;
  clear: both;
}

.popup .popup-cont .tab-box .tab-list li {
  float: left;
  width: 50%;
  text-align: center;
  background-color: #dcdcdc;
  padding: 3% 0;
  border-bottom: 4px solid #ffbe00;
  border-left: 1px solid #c7c7c7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.popup .popup-cont .tab-box .tab-list li:first-child {
  border-left: 0;
}

.popup .popup-cont .tab-box .tab-list li a {
  color: #969696;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 500;
}

@media screen and (min-width: 720px) {
  .popup .popup-cont .tab-box .tab-list li a {
    font-size: 24px;
  }
}

@media screen and (max-width: 719px) {
  .popup .popup-cont .tab-box .tab-list li a {
    font-size: 3.33333vw;
  }
}

@media screen and (min-width: 720px) {
  .popup .popup-cont .tab-box .tab-list li {
    letter-spacing: -2px;
  }
}

.popup .popup-cont .tab-box .tab-list li.on {
  background-color: #ffbe00;
}

.popup .popup-cont .tab-box .tab-list li.on a {
  color: #000;
}

.popup .popup-cont .tab-box .tab-view {
  display: none;
}

.popup .popup-cont .tab-box .tab-view.tab-view1 {
  display: block;
}

.popup .popup-cont .table-box {
  width: 100%;
  margin: 5% auto;
}

.popup .popup-cont .table-box table {
  width: 100%;
  border: 2px solid #000;
}

.popup .popup-cont .table-box table tr th, .popup .popup-cont .table-box table tr td {
  color: #000;
  line-height: 1.3;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  padding: 10px;
  font-weight: 400;
}

@media screen and (min-width: 720px) {
  .popup .popup-cont .table-box table tr th, .popup .popup-cont .table-box table tr td {
    font-size: 24px;
  }
}

@media screen and (max-width: 719px) {
  .popup .popup-cont .table-box table tr th, .popup .popup-cont .table-box table tr td {
    font-size: 3.33333vw;
  }
}

@media screen and (min-width: 720px) {
  .popup .popup-cont .table-box table tr th, .popup .popup-cont .table-box table tr td {
    font-size: 20px;
  }
}

.popup .popup-cont .table-box table tr th {
  background-color: #efefef;
  font-weight: 700;
  border: 1px solid #787878;
  padding: 15px 0;
}

.popup .popup-cont .table-box table tr td {
  border: 1px solid #787878;
}

@media screen and (min-width: 720px) {
  .popup .popup-cont .table-box table tr td {
    font-size: 24px;
  }
}

@media screen and (max-width: 719px) {
  .popup .popup-cont .table-box table tr td {
    font-size: 3.33333vw;
  }
}

@media screen and (min-width: 720px) {
  .popup .popup-cont .table-box table tr td {
    font-size: 18px;
  }
}

.popup .popup-cont .table-box table tr td:nth-child(1) {
  text-align: left;
  padding-left: 10px;
}

@media screen and (min-width: 720px) {
  .popup .popup-cont .table-box table tr td:nth-child(1) {
    padding-left: 20px;
  }
}

.popup #popupEvent .popup-cont {
  padding: 0;
}

.promotion {
  position: relative;
  text-align: center;
  min-width: 1100px;
  overflow: hidden;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  letter-spacing: -1px;
  background-color: #fff;
}

.promotion *, .promotion *:before, .promotion *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion img {
  border: 0;
  vertical-align: top;
  line-height: 0;
  font-size: 0;
}

.promotion .clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.promotion .wrap {
  position: relative;
  width: 1100px;
  margin: 0 auto;
}

.promotion .pointer {
  position: absolute;
  right: 7%;
  bottom: 0px;
  -webkit-animation: 0.5s slideUpY ease-in-out infinite alternate;
          animation: 0.5s slideUpY ease-in-out infinite alternate;
  z-index: 5;
  width: 50px;
}

.promotion .pointer img {
  width: 100%;
}

.promotion .fix-right {
  position: fixed;
  right: 0;
  top: 300px;
  z-index: 3;
}

.promotion .fix-right .pointer {
  width: 37px;
  bottom: -10px;
  right: 0;
}

.promotion .fix-right > img {
  position: relative;
  top: 5px;
  z-index: 2;
}

.promotion .fix-right a {
  display: table;
  margin-bottom: 6px;
  background-color: #2f2d5c;
  border-radius: 5px;
  width: 200px;
  height: 91px;
  text-align: left;
  padding: 20px 15px;
}

.promotion .fix-right a:first-child {
  height: auto;
  padding: 0;
  background: none;
}

.promotion .fix-right a p {
  position: relative;
  display: table-cell;
  color: #fff;
  font-size: 18px;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 700;
  line-height: 1.3;
  vertical-align: middle;
}

.promotion .fix-right a p .icon-go {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -17px;
  display: inline-block;
  color: #2f2d5c;
  background-color: #fff;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  text-align: center;
  padding: 6px 0;
}

.promotion .fixed-timer {
  position: fixed;
  z-index: 11;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: rgba(28, 28, 28, 0.8);
  padding: 18px 0 31px 0;
}

.promotion .fixed-timer .link {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 77;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.promotion .fixed-timer .timer-inner {
  position: relative;
  width: 1100px;
  margin: 0 auto;
}

.promotion .fixed-timer .timer-inner .timer-box {
  float: left;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

.promotion .fixed-timer .timer-inner .timer-box .text {
  text-align: left;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 15px;
}

.promotion .fixed-timer .timer-inner .timer-box .text em {
  color: #ffc20e;
}

.promotion .fixed-timer .timer-inner .timer-box .day-box {
  display: inline-block;
}

.promotion .fixed-timer .timer-inner .timer-box .day-box p {
  position: relative;
  margin: 0;
  padding: 0;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  margin-right: 10px;
}

.promotion .fixed-timer .timer-inner .timer-box .day-box p:last-child {
  margin-right: 0;
}

.promotion .fixed-timer .timer-inner .timer-box .day-box p:after {
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -.5px;
  opacity: .3;
  font-family: 'Roboto', Sans-serif;
}

.promotion .fixed-timer .timer-inner .timer-box .day-box p:nth-child(1):after {
  content: 'Day';
}

.promotion .fixed-timer .timer-inner .timer-box .day-box p:nth-child(2):after {
  content: 'Hours';
}

.promotion .fixed-timer .timer-inner .timer-box .day-box p:nth-child(3):after {
  content: 'Min';
}

.promotion .fixed-timer .timer-inner .timer-box .day-box p:nth-child(4):after {
  content: 'Seconds';
}

.promotion .fixed-timer .timer-inner .timer-box .day-box p:nth-child(5):after {
  content: 'MS';
}

.promotion .fixed-timer .timer-inner .timer-box .day-box p span {
  display: inline-block;
  float: left;
  width: 117px;
  height: 78px;
  line-height: 78px;
  padding-left: 14px;
  color: #000;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -2.25px;
  font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
  background: url("//img.eduwill.net/resources/img/public/brief/201219/pc/fliptimer.png") no-repeat 50% top;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  text-align: left;
  letter-spacing: 33px;
}

.promotion .fixed-timer .timer-inner .btn-click {
  position: absolute;
  top: 22px;
  right: 10px;
  display: inline-block;
}

.promotion .fixed-timer .timer-inner .btn-click .pointer {
  width: 50px;
  bottom: -10px;
  right: 50px;
}

.promotion.promotion-210203 .fixed-timer {
  position: fixed;
  z-index: 11;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: rgba(28, 28, 28, 0.8);
  padding: 8px 0 7px;
}

.promotion.promotion-210203 .fixed-timer .link {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 77;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.promotion.promotion-210203 .fixed-timer .timer-inner {
  position: relative;
  width: 1100px;
  margin: 0 auto;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .timer-box {
  float: left;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .timer-box .text {
  text-align: left;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .timer-box .text em {
  color: #ffc20e;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .timer-box .day-box {
  display: inline-block;
  line-height: 1;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .timer-box .day-box:after {
  content: '';
  display: block;
  clear: both;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .timer-box .day-box p {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1;
  vertical-align: middle;
  margin-right: 10px;
  float: left;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .timer-box .day-box p:last-child {
  margin-right: 0;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .timer-box .day-box p span {
  display: inline-block;
  width: 113px;
  height: 60px;
  line-height: 60px;
  padding-left: 11px;
  color: #000;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -2.25px;
  font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
  background: url("//img.eduwill.net/eduwill/img/2021/0/event/210201/pc/fliptimer.png") no-repeat 50% top;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  text-align: left;
  letter-spacing: 33px;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .timer-box .day-box p strong {
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
  padding-top: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .timer-box .day-box p:first-child strong {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  padding-top: 30px;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .btn-click {
  position: absolute;
  top: 22px;
  right: 10px;
  display: inline-block;
}

.promotion.promotion-210203 .fixed-timer .timer-inner .btn-click .pointer {
  width: 50px;
  bottom: -10px;
  right: 50px;
}

.promotion .notice {
  margin-top: 10px;
  text-align: left;
  letter-spacing: -1px;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  color: #a2a2a2;
  font-size: 16px;
  line-height: 1.4;
}

.promotion .notice-box {
  width: 100%;
  text-align: left;
}

.promotion .notice-box dl dt, .promotion .notice-box dl dd {
  color: #222;
  font-size: 20px;
  line-height: 1.4;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 400;
}

.promotion .notice-box dl dt {
  margin-bottom: 20px;
  font-weight: 700;
}

.promotion .notice-box dl dd {
  padding-left: 18px;
  text-indent: -18px;
}

.promotion .notice-box p {
  color: #222;
  font-size: 16px;
  line-height: 1.4;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  padding-left: 17px;
  text-indent: -17px;
  color: #585858;
}

.promotion .btn-box {
  margin-top: 40px;
  font-size: 0;
}

.promotion .btn-box a {
  position: relative;
  display: inline-block;
}

.promotion .flash-box {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 310px;
  z-index: 2;
  margin-left: -550px;
}

.promotion .flash-box img.on {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: flash 1s step-start infinite;
  animation: flash 1s step-start infinite;
}

.promotion .btn-text {
  position: relative;
  background-color: #fff;
  border: 1px solid #cccccc;
  color: #222;
  font-size: 14px;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  line-height: 1;
  padding: 5px 30px 5px 20px;
}

.promotion .btn-text:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border: none;
  border-width: 0;
  border-style: solid;
  border-top-width: 1px;
  border-right-width: 1px;
  border-color: #222;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.promotion .holder {
  position: relative;
}

.promotion .section-top {
  background-color: #22223a;
}

.promotion .section-title {
  position: relative;
  z-index: 2;
  background-color: #faf1df;
  height: 1098px;
}

.promotion .section-title .btn-text {
  position: absolute;
  right: 0;
  top: 30px;
}

.promotion .section-title .money {
  position: absolute;
  left: 500px;
  top: 364px;
  opacity: 0;
  z-index: 1;
}

.promotion .section-title .cow {
  position: absolute;
  left: 550px;
  top: 330px;
  opacity: 0;
  z-index: 2;
}

.promotion .section-title .visual-box {
  text-align: left;
  position: relative;
  margin-top: 40px;
  z-index: 3;
}

.promotion .section-title .visual-box p {
  margin-bottom: 30px;
  opacity: 0;
}

.promotion .section-title .visual-box .date-box {
  position: relative;
  margin-top: 10px;
  font-size: 40px;
  letter-spacing: -2px;
  line-height: 1;
  color: #202020;
  font-weight: 700;
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  text-align: left;
}

.promotion .section-title .visual-box .date-box .period {
  position: relative;
  color: #f44747;
  margin-bottom: 14px;
  display: inline-block;
  -webkit-animation: flash 1s step-start infinite;
  animation: flash 1s step-start infinite;
}

.promotion .section-title .visual-box .date-box .mask {
  position: absolute;
  left: 0;
  top: -60px;
}

.promotion .section-title .gift-box {
  position: absolute;
  left: 0;
  top: 915px;
  z-index: 5;
}

.promotion .section-title .gift-box .item-slide {
  position: absolute;
  top: 56px;
  left: 473px;
  width: 189px;
  height: 106px;
  overflow: hidden;
}

.promotion .section-title .gift-box .item-slide div {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #000;
  letter-spacing: -1px;
}

.promotion .section-reason {
  background-color: #fff;
}

.promotion .section-reason .btn-text {
  position: absolute;
  right: 0;
  top: 116px;
}

.promotion .section-event {
  background-color: #1f1d4a;
  padding-bottom: 150px;
}

.promotion .section-event .quiz-box {
  position: relative;
}

.promotion .section-event .quiz-box .quiz {
  position: absolute;
  left: 50%;
  top: 368px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #efefef;
  width: 825px;
  padding: 20px 30px;
}

.promotion .section-event .quiz-box .quiz:after {
  content: '';
  display: block;
  clear: both;
}

.promotion .section-event .quiz-box .quiz li {
  position: relative;
  float: left;
  margin-left: 70px;
  height: 52px;
  line-height: 52px;
}

.promotion .section-event .quiz-box .quiz li a {
  display: inline-block;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  vertical-align: top;
}

.promotion .section-event .quiz-box .quiz li.on a {
  color: #ff0000;
  font-size: 60px;
}

.promotion .section-event .quiz-box .quiz li.on:after {
  content: '';
  position: absolute;
  left: 10px;
  top: -5px;
  background: url("//img.eduwill.net/eduwill/img/2021/0/event/210201/pc/ico_check.png") no-repeat 50% 0;
  width: 60px;
  height: 53px;
}

.promotion .section-best {
  padding-bottom: 120px;
}

.promotion .section-best .slide-box {
  position: relative;
}

.promotion .section-best .slide-box .bestSlide .slick-slide {
  position: relative;
  font-size: 0;
}

.promotion .section-best .slide-box .bestSlide .slick-slide a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 50%;
  height: 328px;
}

.promotion .section-best .slide-box .bestSlide .slick-slide a.btn-product1 {
  width: 100%;
  height: 280px;
}

.promotion .section-best .slide-box .bestSlide .slick-slide a.btn-product2 {
  left: 0;
  top: 280px;
}

.promotion .section-best .slide-box .bestSlide .slick-slide a.btn-product3 {
  left: 50%;
  top: 280px;
}

.promotion .section-best .slide-box .bestSlide .slick-slide a.btn-product4 {
  left: 0;
  top: 608px;
}

.promotion .section-best .slide-box .bestSlide .slick-slide a.btn-product5 {
  left: 50%;
  top: 608px;
}

.promotion .section-best .slide-box .bestSlide .slick-slide a .pointer {
  right: 5%;
  bottom: 10%;
}

.promotion .section-best .slide-box .bestSlide .slick-arrow {
  position: absolute;
  top: 50%;
  width: 65px;
  height: 123px;
  margin-top: -61px;
  font-size: 0;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.promotion .section-best .slide-box .bestSlide .slick-arrow.slick-prev {
  left: -3%;
  background: url("//img.eduwill.net/eduwill/img/2021/0/event/210201/pc/btn_prev.png") no-repeat 0 0;
}

.promotion .section-best .slide-box .bestSlide .slick-arrow.slick-next {
  right: -3%;
  background: url("//img.eduwill.net/eduwill/img/2021/0/event/210201/pc/btn_next.png") no-repeat 0 0;
}

.promotion .section-best .slide-box .bestSlide .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.promotion .section-best .slide-box .bestSlide .slick-dots li {
  margin: 0 3px;
  background: #acacac;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.promotion .section-best .slide-box .bestSlide .slick-dots li button {
  opacity: 0;
}

.promotion .section-best .slide-box .bestSlide .slick-dots li.slick-active {
  width: 50px;
  border-radius: 50px;
  background: #ffdd00;
}

.promotion .section-notice {
  background-color: #f5f5f5;
}

.promotion .section-notice .wrap {
  padding: 30px 50px 60px;
  text-align: left;
}

.promotion .section-notice .wrap dl dt, .promotion .section-notice .wrap dl dd {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion .section-notice .wrap dl dt {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #010101;
  font-size: 16px;
}

.promotion .section-notice .wrap dl dd {
  color: #aaaaaa;
  font-size: 14px;
}
/*# sourceMappingURL=web.css.map */