@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: #39f7af;
}

@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: #000;
  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 #000;
  border-right: 2px solid #000;
  -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;
  cursor: pointer;
  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 .user_info .agree-box {
  margin-top: 5px;
}

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

.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;
  }
}

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

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

.popup#popupProduct .popup_cont {
  padding: 15px;
  text-align: left;
}

.popup#popupProduct .popup_cont dl dt {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.popup#popupProduct .popup_cont dl dd {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
}

@media screen and (min-width: 720px) {
  .popup#popupProduct .popup_cont {
    padding: 30px;
  }
  .popup#popupProduct .popup_cont dl dt {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .popup#popupProduct .popup_cont dl dd {
    margin-bottom: 24px;
    font-size: 14px;
  }
}

.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 .icon-hand {
  position: absolute;
  top: 40%;
  right: 6.5%;
  -webkit-animation-name: moving;
          animation-name: moving;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -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 moving {
  0%, 100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes moving {
  0%, 100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.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 {
  position: relative;
  background: url("//img.eduwill.net/Img2/common/promotion/200623_2/pc/bg_section1.jpg") 50% 0 no-repeat;
}

.promotion .section1 .student {
  position: absolute;
  top: 345px;
  left: 230px;
  z-index: 10;
}

.promotion .section2 {
  padding: 195px 0 95px;
  background: #fff0b8;
}

.promotion .section2 .coupon {
  position: absolute;
  top: -237px;
  left: 196px;
  width: 711px;
  height: 220px;
  background: url("//img.eduwill.net/Img2/common/promotion/200623_2/pc/bg_coupon.png") 0 0 no-repeat;
}

.promotion .section2 .coupon .discount {
  position: absolute;
  top: -23px;
  right: 55px;
  z-index: 10;
}

.promotion .section2 ul {
  position: absolute;
  left: 137px;
  top: 42px;
}

.promotion .section2 ul li {
  margin-bottom: 10px;
}

.promotion .section2 ul li .subject {
  width: 150px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  border-radius: 50px;
  background: #11d389;
}

.promotion .section2 ul li .desc {
  width: 270px;
  padding-left: 20px;
  line-height: 30px;
  text-align: left;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #3a3a3a;
}

.promotion .section2 ul li .desc span {
  font-family: "Montserrat", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 500;
}

.promotion .section2 .benefit {
  margin-bottom: 54px;
  text-align: center;
}

.promotion .section2 .benefit .desc {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}

.promotion .section2 .benefit .desc strong {
  display: block;
  color: #0bc67f;
  letter-spacing: -2px;
}

.promotion .section2 .benefit .desc span {
  display: block;
  color: #fd6b00;
}

.promotion .section2 .action a {
  display: inline-block;
  position: relative;
}

.promotion .section3 {
  background: #fff;
}

.promotion .section4 {
  background: #f7f7f7;
}

.promotion .section5 {
  background: #39f7af;
}

.promotion .section5 .id-card {
  position: relative;
}

.promotion .section5 .id-card .action {
  position: absolute;
  top: 457px;
  left: 50%;
  margin-left: -296px;
}

.promotion .section5 .id-card .action a {
  display: block;
}

.promotion .section5 .id-card .action a .icon-hand {
  right: 11.5%;
}

.promotion .section5 .id-card .tip {
  position: absolute;
  top: 612px;
  left: 305px;
  text-align: left;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 1.5;
}

.promotion .section6 {
  background: #dfdfdf;
}

.promotion .section6 dl {
  padding: 74px 0 74px 190px;
  text-align: left;
}

.promotion .section6 dl dt {
  font-size: 16px;
  font-weight: 500;
  color: #3a3a3a;
  line-height: 1.8;
}

.promotion .section6 dl dd {
  font-size: 16px;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.8;
}

.promotion .section6 dl dd strong {
  font-weight: 500;
}

.promotion .section7 {
  padding-bottom: 100px;
}

.promotion .section7 .interview ul li {
  margin-left: 10px;
}

.promotion .section7 .interview ul li:first-child {
  margin-left: 0;
}

.promotion .section7 .interview ul li .mov_box {
  position: relative;
  width: 360px;
  height: 202px;
}

.promotion .section7 .interview ul li .mov_box a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.promotion .section7 .interview ul li .mov_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.promotion .section7 .interview ul li p {
  padding: 0;
  margin: 20px 0 0;
  font-size: 18px;
  color: #353535;
  font-weight: 400;
  letter-spacing: -1px;
}

.promotion .section7 .interview ul li p strong {
  font-weight: 700;
  font-size: 21px;
}

.promotion .section8 {
  padding-bottom: 109px;
  background: #fef9e5;
}

.promotion .section8 .action a {
  position: relative;
  display: inline-block;
}

.promotion .section8 .action a:first-child {
  margin-right: 15px;
}

.promotion .section8 .action a .flag {
  position: absolute;
  top: -44px;
  left: 22px;
  width: 232px;
  height: 67px;
  text-align: center;
  background: url("//img.eduwill.net/Img2/common/promotion/200623_2/pc/bg_flag.png") 0 0 no-repeat;
}

.promotion .section8 .action a .flag em {
  display: block;
  margin-top: 2px;
  line-height: 48px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -1px;
}
/*# sourceMappingURL=web.css.map */