@charset "UTF-8";
.grid {
  *zoom: 1;
}

.grid:before, .grid:after {
  content: '';
  display: table;
}

.grid:after {
  clear: both;
}

.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 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

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

.control {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  line-height: 1.3;
  cursor: pointer;
  color: #666;
}

@media screen and (min-width: 720px) {
  .control {
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.5;
  }
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control-indicator {
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #bcbcbc;
}

@media screen and (min-width: 720px) {
  .control-indicator {
    width: 22px;
    height: 22px;
  }
}

.control-radio .control-indicator {
  border-radius: 50%;
}

.control:hover input ~ .control-indicator,
.control input:focus ~ .control-indicator {
  background: #fff;
}

.control input:checked ~ .control-indicator {
  background: #fff;
}

.control:hover input:not([disabled]):checked ~ .control-indicator,
.control input:checked:focus ~ .control-indicator {
  background: #fff;
}

.control input:disabled ~ .control-indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.control-indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.control input:checked ~ .control-indicator:after {
  display: block;
}

.control input:hover ~ .control-indicator,
.control input:focus ~ .control-indicator {
  border-color: #000;
}

/* radio */
.control-radio .control-indicator:after {
  left: 4px;
  top: 4px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #000;
}

@media screen and (min-width: 720px) {
  .control-radio .control-indicator:after {
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
  }
}

.control-radio input:disabled ~ .control-indicator:after {
  background: #7b7b7b;
}

/* checkbox */
.control-checkbox .control-indicator:after {
  left: 4px;
  top: 2px;
  width: 5px;
  height: 7px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 720px) {
  .control-checkbox .control-indicator:after {
    left: 5px;
    top: 1px;
    width: 10px;
    height: 12px;
    border-width: 0 3px 3px 0;
  }
}

.control-checkbox input:disabled ~ .control-indicator:after {
  border-color: #7b7b7b;
}

.popup {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 40000;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-family: "Noto Sans KR", Sans-Serif;
  letter-spacing: -1px;
  background-color: #fff;
}

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

.popup .popup_tit {
  padding: 23px 0 7px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

@media screen and (min-width: 720px) {
  .popup .popup_tit {
    padding: 46px 0 15px;
    font-size: 20px;
  }
}

.popup .popup_cont {
  margin-top: 5%;
}

@media screen and (min-width: 720px) {
  .popup .popup_cont {
    margin-top: 20px;
  }
}

.popup .popup_cont .btn_box {
  margin-top: 12px;
  text-align: center;
}

@media screen and (min-width: 720px) {
  .popup .popup_cont .btn_box {
    margin-top: 24px;
  }
}

.popup .popup_cont .btn_box a {
  position: relative;
  margin: 0 auto;
  display: table;
  width: 180px;
  height: 30px;
  border-radius: 50px;
  background: #4c2176;
}

@media screen and (min-width: 720px) {
  .popup .popup_cont .btn_box a {
    width: 280px;
    height: 50px;
  }
}

.popup .popup_cont .btn_box a span {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.popup .popup_cont .btn_box a span:after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 720px) {
  .popup .popup_cont .btn_box a span {
    font-size: 20px;
  }
  .popup .popup_cont .btn_box a span:after {
    right: 24px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
  }
}

.popup .popup_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #fff;
}

.popup .popup_close:before, .popup .popup_close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background-color: #000;
}

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

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

@media screen and (min-width: 720px) {
  .popup .popup_close {
    width: 60px;
    height: 60px;
  }
  .popup .popup_close:before, .popup .popup_close:after {
    width: 30px;
    margin-left: -15px;
  }
}

.popup#popupPost {
  width: 91.66667%;
  padding: 0 5% 22px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup#popupPost {
    padding: 0 28px 45px;
    width: 690px;
  }
}

.popup#popupPost .popup_tit {
  padding: 19px 0 15px;
  font-size: 1.1rem;
  letter-spacing: -2px;
  border-bottom: 2px solid #000;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_tit {
    padding: 38px 0 29px;
    font-size: 30px;
    border-bottom: 3px solid #000;
  }
}

.popup#popupPost .popup_cont {
  background-color: #fff;
}

.popup#popupPost .popup_cont .user_info .input_box:after {
  content: '';
  display: block;
  clear: both;
}

.popup#popupPost .popup_cont .user_info .input_box dt {
  margin-top: 5px;
  width: 25%;
  float: left;
  font-size: 14px;
  color: #000;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .user_info .input_box dt {
    font-size: 16px;
    line-height: 30px;
  }
}

.popup#popupPost .popup_cont .user_info .input_box dd {
  margin-top: 5px;
  width: 75%;
  float: left;
  font-size: 14px;
  color: #000;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .user_info .input_box dd {
    font-size: 18px;
  }
}

.popup#popupPost .popup_cont .user_info .input_box dd:after {
  content: '';
  display: block;
  clear: both;
}

.popup#popupPost .popup_cont .user_info .input_box dd input {
  float: left;
  padding: 5px 10px;
  width: 60%;
  height: 30px;
  border: 1px solid #363636;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .user_info .input_box dd input {
    padding: 10px;
    width: 70%;
  }
}

.popup#popupPost .popup_cont .user_info .input_box dd input:disabled {
  background: #b7b7b7;
}

.popup#popupPost .popup_cont .user_info .input_box dd a {
  float: left;
  width: 38%;
  height: 30px;
  margin-left: 3px;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: #1b1b1b;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .user_info .input_box dd a {
    width: 120px;
  }
}

.popup#popupPost .popup_cont .user_info .input_box dd .filebox {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.popup#popupPost .popup_cont .user_info .input_box dd .filebox:after {
  content: '';
  display: block;
  clear: both;
}

.popup#popupPost .popup_cont .user_info .input_box dd .filebox input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.popup#popupPost .popup_cont .user_info .input_box dd .filebox label {
  float: left;
  margin-left: 3px;
  width: 38%;
  height: 30px;
  line-height: 30px;
  background: #1b1b1b;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .user_info .input_box dd .filebox label {
    width: 120px;
  }
}

.popup#popupPost .popup_cont .user_info .input_box dd .filebox .upload-name {
  float: left;
  width: 60%;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .user_info .input_box dd .filebox .upload-name {
    width: 70%;
  }
}

.popup#popupPost .popup_cont .user_info .notice {
  margin-top: 7px;
  color: #ff0000;
  font-size: 12px;
  text-align: left;
  letter-spacing: -1px;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .user_info .notice {
    margin-top: 14px;
    font-size: 15px;
  }
}

.popup#popupPost .popup_cont .privacy-box {
  margin-top: 10px;
  padding: 15px;
  background: #eee;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .privacy-box {
    margin-top: 20px;
    padding: 30px;
  }
}

.popup#popupPost .popup_cont .privacy-box .check-box:first-child {
  margin-bottom: 10px;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .privacy-box .check-box:first-child {
    margin-bottom: 20px;
  }
}

.popup#popupPost .popup_cont .privacy-box .check-box .scroll-box {
  color: #666;
  font-size: 12px;
  line-height: 1.4;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .privacy-box .check-box .scroll-box {
    font-size: 16px;
    line-height: 1.5;
  }
}

.popup#popupPost .popup_cont .privacy-box .check-box .scroll-box strong {
  font-size: 13px;
  color: #000;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .privacy-box .check-box .scroll-box strong {
    font-size: 16px;
  }
}

.popup#popupPost .popup_cont .privacy-box .check-box .scroll-box p {
  margin-top: 3px;
  padding-left: 8px;
  line-height: 1.4;
  font-size: 12px;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .privacy-box .check-box .scroll-box p {
    margin-top: 5px;
    padding-left: 15px;
    line-height: 1.5;
    font-size: 14px;
  }
}

.popup#popupPost .popup_cont .privacy-box .check-box .agree-box {
  margin: 5px 0 0 7px;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .privacy-box .check-box .agree-box {
    margin: 10px 0 0 15px;
  }
}

.popup#popupPost .popup_cont .privacy-box .check-box .agree-box .input-list {
  margin-right: 5px;
}

@media screen and (min-width: 720px) {
  .popup#popupPost .popup_cont .privacy-box .check-box .agree-box .input-list {
    margin-right: 10px;
  }
}

.popup#popupComplete {
  width: 91.66667%;
  padding: 0 5% 22px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup#popupComplete {
    padding: 0 28px 45px;
    width: 500px;
  }
}

.popup#popupComplete .popup_tit {
  padding: 19px 0 15px;
  font-size: 1.1rem;
  letter-spacing: -2px;
  border-bottom: 2px solid #000;
}

@media screen and (min-width: 720px) {
  .popup#popupComplete .popup_tit {
    padding: 38px 0 29px;
    font-size: 30px;
    border-bottom: 3px solid #000;
  }
}

.popup#popupComplete .popup_cont {
  text-align: center;
  font-size: 16px;
  color: #2d2d2d;
}

.popup#popupComplete .popup_cont .notice {
  margin-top: 20px;
  padding: 20px;
  text-align: left;
  background: #eaeaea;
}

.popup#popupComplete .popup_cont .notice p {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.popup#popupComplete .popup_cont .notice p:first-child {
  margin-top: 0;
}

@media screen and (min-width: 720px) {
  .popup#popupComplete .popup_cont {
    margin-top: 40px;
    font-size: 30px;
  }
  .popup#popupComplete .popup_cont .notice {
    padding: 40px;
  }
  .popup#popupComplete .popup_cont .notice p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.7;
  }
}

@-webkit-keyframes hand {
  0%, 100% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes hand {
  0%, 100% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@-webkit-keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.promotion .bx-wrapper {
  margin: 0 auto !important;
}

.promotion .bx-wrapper .bx-viewport {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  left: 0;
}

.promotion .bx-wrapper .bx-wrapper img {
  display: inline;
}

.promotion .section {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .section .wrap {
  position: relative;
  width: 1100px;
  min-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  letter-spacing: -1px;
}

.promotion .section1 {
  background: url("//img.eduwill.net/Img2/common/promotion/200311/pc/bg_section1.jpg") 50% 0 no-repeat;
  background-size: cover;
}

.promotion .section1 .motion {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  line-height: 1;
  z-index: 2;
}

.promotion .section1 .motion.sub1 {
  top: 60px;
  font-size: 22px;
  color: #e55c12;
  font-weight: 700;
  letter-spacing: -1px;
}

.promotion .section1 .motion.sub2 {
  top: 102px;
}

.promotion .section1 .motion.sub3 {
  top: 194px;
}

.promotion .section1 .motion.sub4 {
  top: 344px;
  font-size: 55px;
  color: #3b2828;
  font-weight: 700;
  letter-spacing: -3px;
}

.promotion .section-benefit {
  height: 168px;
  background: #4c2176;
}

.promotion .section-benefit img {
  position: relative;
  top: -50px;
}

.promotion .section2 {
  background: url("//img.eduwill.net/Img2/common/promotion/200311/pc/bg_section2.gif") 0 0 repeat-x;
}

.promotion .section3 {
  background: url("//img.eduwill.net/Img2/common/promotion/200311/pc/bg_section3.gif") 0 0 repeat-x;
}

.promotion .section3 .action {
  position: absolute;
  top: 890px;
  left: 50%;
  margin-left: -296px;
}

.promotion .section3 .action a {
  display: block;
}

.promotion .section3 .action a:after {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  right: 79px;
  width: 59px;
  height: 102px;
  background: url("//img.eduwill.net/Img2/common/promotion/200311/pc/hand.png") 0 0 no-repeat;
  background-size: cover;
  -webkit-animation: flash 1s infinite both;
          animation: flash 1s infinite both;
}

.promotion .section3 .tip {
  position: absolute;
  top: 1043px;
  left: 310px;
  text-align: left;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.5;
}

.promotion .section4 {
  background: url("//img.eduwill.net/Img2/common/promotion/200311/pc/bg_section4.gif") 0 0 repeat-x;
}

.promotion .section4 .fly {
  position: absolute;
}

.promotion .section4 .fly-text1 {
  top: 298px;
  left: 33px;
  text-align: left;
  font-weight: 300;
  color: #000;
  font-size: 16px;
  line-height: 26px;
}

.promotion .section4 .fly-text2 {
  top: 1032px;
  left: 215px;
  font-weight: 400;
  color: #a1a1a1;
  line-height: 1;
}

.promotion .section-apply-title {
  background: #4c2176;
}

.promotion .section5 {
  background: #fff;
}

.promotion .section5 .notice-box {
  padding: 0 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .section5 .notice-box .box {
  padding: 40px 90px;
  border-radius: 0 30px 0 0;
  background: #f3f3f3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .section5 .notice-box .box dl dt {
  position: relative;
  padding-bottom: 20px;
  font-size: 23px;
  text-align: left;
  color: #000;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}

.promotion .section5 .notice-box .box dl dt:after {
  content: '';
  display: block;
  position: absolute;
  left: 22px;
  bottom: 0;
  width: 37px;
  height: 2px;
  background: #b7b7b7;
}

.promotion .section5 .notice-box .box dl dd {
  margin-top: 25px;
}

.promotion .section5 .notice-box .box dl dd .subject {
  width: 220px;
}

.promotion .section5 .notice-box .box dl dd .subject span {
  display: block;
  text-align: center;
  padding: 8px 0;
  line-height: 1;
  color: #4b4848;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -2px;
  border-radius: 100px;
  border: 1px solid #4b4848;
}

.promotion .section5 .notice-box .box dl dd .desc {
  padding-left: 48px;
  width: 520px;
  text-align: left;
  font-size: 16px;
  color: #4b4848;
  line-height: 30px;
}

.promotion .section5 .notice-box p {
  padding: 45px 0;
  font-size: 16px;
  color: #000;
  letter-spacing: -1px;
  font-weight: 400;
}

.promotion .section-notice {
  background: #dbe4e7;
}

.promotion .section-notice .wrap {
  padding: 50px 140px;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .section-notice .wrap dl dt {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #2d2d2d;
}

.promotion .section-notice .wrap dl dd {
  font-size: 16px;
  font-weight: 300;
  color: #777;
  line-height: 1.5;
}

.promotion .section-notice .wrap dl dd span {
  color: #2d2d2d;
}
/*# sourceMappingURL=web.css.map */