@charset "UTF-8";
@-webkit-keyframes flash {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

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

.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 p, .promotion strong, .promotion span, .promotion dl, .promotion dt, .promotion dd {
  line-height: 100%;
  margin: 0;
  padding: 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 input::-webkit-input-placeholder {
  color: #999999;
  font-size: 18px;
}

.promotion input:-ms-input-placeholder {
  color: #999999;
  font-size: 18px;
}

.promotion textarea::-webkit-input-placeholder {
  color: #999999;
  font-size: 18px;
}

.promotion textarea:-ms-input-placeholder {
  color: #999999;
  font-size: 18px;
}

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

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

@-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);
  }
}

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

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

/* 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: 30000;
  background-color: rgba(0, 0, 0, 0.6);
}

.popup {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 40000;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #393939;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  max-width: 594px;
}

@media screen and (max-width: 768px) {
  .popup {
    width: 88.88889%;
  }
}

.popup .popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
}

.popup .popup-close a:before, .popup .popup-close a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 1px;
  margin-left: -15px;
  background-color: #aaa;
}

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

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

.popup .text-box {
  color: #000;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 16px;
  text-align: center;
  margin-bottom: 5%;
}

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

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

.popup .text-box a {
  display: inline-block;
  background-color: #ffd500;
  margin-left: 8px;
  display: inline-block;
  color: #000;
  padding: 0 5px;
}

.popup .popup-title {
  padding: 40px 0 28px;
  font-weight: 400;
  font-size: 23px;
  text-align: center;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
  background-color: #393939;
}

.popup .popup-title strong {
  letter-spacing: -2px;
  font-weight: 900;
}

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

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

@media screen and (max-width: 720px) {
  .popup .popup-title {
    letter-spacing: 0;
    padding: 20px 0 20px;
  }
  .popup .popup-title strong {
    letter-spacing: 0;
  }
}

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

.popup .popup-cont .label {
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

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

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

.popup .popup-cont .label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  background-color: #000;
}

.popup .popup-cont .label .highlight {
  color: #fe0000;
}

.popup .popup-cont .input-box {
  width: 90%;
  margin: 0 auto;
}

.popup .popup-cont .input-box dl {
  margin-top: 10px;
}

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

.popup .popup-cont .input-box dl dt {
  width: 20%;
  height: 45px;
  float: left;
  text-align: left;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

@media screen and (max-width: 720px) {
  .popup .popup-cont .input-box dl dt {
    height: auto;
    padding-top: 10px;
  }
  .popup .popup-cont .input-box dl dt:after {
    margin-top: 4px;
  }
}

.popup .popup-cont .input-box dl dd {
  position: relative;
  float: left;
  width: 80%;
}

.popup .popup-cont .input-box dl dd .ipt {
  width: 100%;
  height: 45px;
  padding: 0 10px;
  border: 1px solid #dddddd;
  color: #000;
  font-size: 14px;
  font-family: 'Noto Sans KR';
  font-weight: 300;
}

@media screen and (max-width: 720px) {
  .popup .popup-cont .input-box dl dd .ipt {
    height: 35px;
  }
}

@media screen and (max-width: 720px) and (min-width: 720px) {
  .popup .popup-cont .input-box dl dd .ipt {
    font-size: 21px;
  }
}

@media screen and (max-width: 720px) and (max-width: 719px) {
  .popup .popup-cont .input-box dl dd .ipt {
    font-size: 2.91667vw;
  }
}

.popup .popup-cont .input-box dl dd .ipt.disable {
  background-color: #efefef;
  color: #aaa;
}

.popup .popup-cont .input-box dl dd .ipt_s {
  width: 71%;
}

@media screen and (max-width: 720px) {
  .popup .popup-cont .input-box dl dd .ipt_s {
    width: 80%;
  }
}

.popup .popup-cont .input-box dl dd .btn {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  vertical-align: top;
  width: 120px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  font-size: 16px;
  background-color: #666;
  font-family: 'Noto Sans KR';
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 720px) {
  .popup .popup-cont .input-box dl dd .btn {
    height: 35px;
    line-height: 35px;
    width: 60px;
  }
}

@media screen and (max-width: 720px) and (min-width: 720px) {
  .popup .popup-cont .input-box dl dd .btn {
    font-size: 23px;
  }
}

@media screen and (max-width: 720px) and (max-width: 719px) {
  .popup .popup-cont .input-box dl dd .btn {
    font-size: 3.19444vw;
  }
}

.popup .popup-cont .input-box dl dd .btn:hover {
  background-color: #333333;
}

.popup .popup-cont .input-box dl dd .btn.disable {
  background-color: #ccc;
}

.popup .popup-cont .input-box dl.certification {
  display: none;
}

.popup .popup-cont .input-box dl.certification .timer {
  position: absolute;
  right: 130px;
  top: 13px;
  display: inline-block;
  color: #ff0000;
  font-size: 14px;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

@media screen and (max-width: 720px) {
  .popup .popup-cont .input-box dl.certification .timer {
    right: 32%;
    top: 10px;
  }
}

@media screen and (max-width: 720px) and (min-width: 720px) {
  .popup .popup-cont .input-box dl.certification .timer {
    font-size: 21px;
  }
}

@media screen and (max-width: 720px) and (max-width: 719px) {
  .popup .popup-cont .input-box dl.certification .timer {
    font-size: 2.91667vw;
  }
}

.popup .popup-cont .ta-box {
  width: 90%;
  margin: 20px auto 0;
}

.popup .popup-cont .ta-box .label {
  padding-left: 10px;
}

.popup .popup-cont .ta-box textarea {
  resize: none;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100px;
  font-size: 13px;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  padding: 15px;
  line-height: 130%;
  text-align: left;
  border: 1px solid #dddddd;
  color: #686868;
}

@media screen and (max-width: 720px) {
  .popup .popup-cont .ta-box textarea {
    padding: 10px;
  }
}

@media screen and (max-width: 720px) and (min-width: 720px) {
  .popup .popup-cont .ta-box textarea {
    font-size: 20px;
  }
}

@media screen and (max-width: 720px) and (max-width: 719px) {
  .popup .popup-cont .ta-box textarea {
    font-size: 2.77778vw;
  }
}

.popup .popup-cont .check-box {
  width: 90%;
  margin: 20px auto 0;
  color: #686868;
}

@media screen and (max-width: 720px) {
  .popup .popup-cont .check-box {
    margin-top: 5%;
  }
}

.popup .popup-cont .check-box .label {
  padding-left: 10px;
}

.popup .popup-cont .check-box .table-box .text {
  font-size: 14px;
  line-height: 130%;
  color: #585858;
  margin-bottom: 10px;
}

.popup .popup-cont .check-box .table-box table {
  width: 100%;
  margin-bottom: 20px;
}

.popup .popup-cont .check-box .table-box table th,
.popup .popup-cont .check-box .table-box table td {
  font-size: 14px;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  color: #585858;
  text-align: left;
  border: 1px solid #dcdcdc;
  padding: 10px 5px;
}

.popup .popup-cont .check-box .table-box table th {
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 720px) {
  .popup .popup-cont .check-box .table-box .text {
    margin-bottom: 3%;
  }
}

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

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

@media screen and (max-width: 720px) {
  .popup .popup-cont .check-box .table-box table {
    margin-bottom: 5%;
  }
}

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

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

.popup .popup-cont .check-box .scroll-box {
  padding: 20px;
  background: #eee;
  height: 100px;
  overflow-y: auto;
}

.popup .popup-cont .check-box .scroll-box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.popup .popup-cont .check-box .scroll-box strong {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.popup .popup-cont .check-box .scroll-box em {
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

@media screen and (max-width: 720px) {
  .popup .popup-cont .check-box .scroll-box {
    padding: 10px;
  }
}

@media screen and (max-width: 720px) and (min-width: 720px) {
  .popup .popup-cont .check-box .scroll-box p {
    font-size: 20px;
  }
}

@media screen and (max-width: 720px) and (max-width: 719px) {
  .popup .popup-cont .check-box .scroll-box p {
    font-size: 2.77778vw;
  }
}

@media screen and (max-width: 720px) and (min-width: 720px) {
  .popup .popup-cont .check-box .scroll-box strong {
    font-size: 20px;
  }
}

@media screen and (max-width: 720px) and (max-width: 719px) {
  .popup .popup-cont .check-box .scroll-box strong {
    font-size: 2.77778vw;
  }
}

@media screen and (max-width: 720px) and (min-width: 720px) {
  .popup .popup-cont .check-box .scroll-box em {
    font-size: 21px;
  }
}

@media screen and (max-width: 720px) and (max-width: 719px) {
  .popup .popup-cont .check-box .scroll-box em {
    font-size: 2.91667vw;
  }
}

.popup .popup-cont .check-box .agree-check {
  margin: 10px 0 30px 0;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 14px;
}

@media screen and (max-width: 720px) {
  .popup .popup-cont .check-box .agree-check {
    margin-bottom: 7%;
  }
}

@media screen and (max-width: 720px) and (min-width: 720px) {
  .popup .popup-cont .check-box .agree-check {
    font-size: 21px;
  }
}

@media screen and (max-width: 720px) and (max-width: 719px) {
  .popup .popup-cont .check-box .agree-check {
    font-size: 2.91667vw;
  }
}

.popup .popup-cont .check-box .agree-check input {
  vertical-align: middle;
  margin-right: 3px;
  width: 15px;
  height: 15px;
}

.popup .popup-btn {
  margin-top: 5%;
  margin-bottom: 10%;
  text-align: center;
}

.popup .popup-btn a {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  width: 180px;
  height: 52px;
  text-align: center;
  -webkit-transition: all 0.9s, color 0.3;
  transition: all 0.9s, color 0.3;
  border-radius: 5px;
  -webkit-box-shadow: inset 3px 3px 2px 0px rgba(255, 255, 255, 0.18);
  box-shadow: inset 3px 3px 2px 0px rgba(255, 255, 255, 0.18);
  background: #ffd500;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffd500), color-stop(89%, #ffd500), color-stop(96%, #e9c200), color-stop(100%, #e9c200));
  background: -webkit-gradient(linear, left top, left bottom, from(#ffd500), color-stop(89%, #ffd500), color-stop(96%, #e9c200), to(#e9c200));
  background: linear-gradient(to bottom, #ffd500 0%, #ffd500 89%, #e9c200 96%, #e9c200 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffd500', endColorstr='#e9c200', GradientType=0 );
}

.popup .popup-btn a span {
  line-height: 52px;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  letter-spacing: -2px;
}

@media screen and (max-width: 720px) {
  .popup .popup-btn a {
    width: 40%;
    height: 42px;
  }
  .popup .popup-btn a span {
    line-height: 42px;
  }
}

@media screen and (max-width: 720px) and (min-width: 720px) {
  .popup .popup-btn a span {
    font-size: 27px;
  }
}

@media screen and (max-width: 720px) and (max-width: 719px) {
  .popup .popup-btn a span {
    font-size: 3.75vw;
  }
}

.popup .popup-btn a:hover {
  background: #db3725;
}

.popup .popup-btn a:hover span {
  color: #fff;
}

.popup .popup-btn a.btn-cancle {
  margin-left: 5px;
  background: #434343;
}

.popup .popup-btn a.btn-cancle span {
  color: #bebebe;
}

.popup .popup-btn a.btn-cancle:after, .popup .popup-btn a.btn-cancle:before {
  display: none;
}

#zipcode-layer {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 40000;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100005;
  border: 6px solid #000;
}

#zipcode-layer > div {
  width: 500px !important;
}

@media screen and (max-width: 720px) {
  #zipcode-layer > div {
    width: auto !important;
  }
}

#zipcode-layer .zipcode-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  display: block;
  background-color: #000;
  z-index: 100005;
}

#zipcode-layer .zipcode-close:before, #zipcode-layer .zipcode-close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 3px;
  margin-left: -15px;
  background-color: #fff;
}

#zipcode-layer .zipcode-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#zipcode-layer .zipcode-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.common_slogan {
  display: none;
}

.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: 0px;
  bottom: -30px;
  -webkit-animation: 0.5s slideUpY ease-in-out infinite alternate;
          animation: 0.5s slideUpY ease-in-out infinite alternate;
  z-index: 5;
  width: 80px;
}

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

.promotion .fix-right {
  position: fixed;
  left: 50%;
  top: 400px;
  z-index: 3;
  margin-left: 700px;
}

.promotion .fix-right .pointer {
  right: 0px;
  bottom: 60px;
  width: 50px;
}

.promotion .fix-bottom {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  height: 100px;
}

.promotion .fix-bottom .pointer {
  width: 50px;
  bottom: 10px;
  right: 200px;
}

.promotion .notice {
  margin-top: 18px;
  text-align: right;
  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;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

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

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

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

.promotion .notice-box dl dd {
  font-size: 18px;
}

.promotion .notice-box dl dd span {
  padding-left: 210px;
}

.promotion .section-title {
  position: relative;
  z-index: 1;
  background: url("//img.eduwill.net/resources/img/admin/event/201104/pc/bg_title.jpg") no-repeat 50% 0;
  background-size: cover;
}

.promotion .section-prove {
  position: relative;
  height: 688px;
}

.promotion .section-prove .img-box {
  position: absolute;
  left: -13px;
  top: -230px;
  z-index: 2;
}

.promotion .section-prove .flash {
  position: absolute;
  left: 770px;
  top: 50px;
  background: url("//img.eduwill.net/resources/img/admin/event/201104/pc/flash_off.png") no-repeat 50% 0;
  background-size: 100% 100%;
}

.promotion .section-prove .flash img {
  opacity: 0;
  -webkit-animation: flash 1s step-start infinite;
  animation: flash 1s step-start infinite;
}

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

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

.promotion .section-prove .count-box {
  position: absolute;
  left: 742px;
  top: 407px;
  z-index: 2;
  width: 210px;
  color: #fcc800;
  font-size: 52px;
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 900;
}

.promotion .section-prove .count-box .sparkle {
  position: absolute;
  right: 62px;
  top: 0px;
  z-index: 3;
  opacity: 0;
}

.promotion .section-prove .btn-box {
  position: absolute;
  left: 146px;
  top: 655px;
  width: 100%;
  text-align: left;
}

.promotion .section-prove .btn-box a {
  margin-left: 305px;
  text-align: center;
}

.promotion .section-prove .btn-box a:first-child {
  margin-left: 0;
}

.promotion .section-prove .hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border: 2px solid #222;
  width: 265px;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  font-weight: 700;
}

.promotion .section-prove .hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #222222;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.promotion .section-prove .hvr-sweep-to-right:after {
  content: '';
  position: absolute;
  right: 17px;
  top: 19px;
  z-index: 2;
  width: 33px;
  height: 7px;
  background: url("//img.eduwill.net/resources/img/admin/event/201104/pc/ico_arrow_off.png") no-repeat 0 0;
}

.promotion .section-prove .hvr-sweep-to-right:hover {
  color: #fff;
}

.promotion .section-prove .hvr-sweep-to-right:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.promotion .section-prove .hvr-sweep-to-right:hover:after {
  background-image: url("//img.eduwill.net/resources/img/admin/event/201104/pc/ico_arrow_on.png");
}

.promotion .section-tab-title {
  background: url("//img.eduwill.net/resources/img/admin/event/201104/pc/bg_tab.jpg") no-repeat 50% 0;
  background-size: cover;
}

.promotion .section-tab-title .tab-box {
  text-align: center;
}

.promotion .section-tab-title .tab-box .tab-list {
  font-size: 0;
}

.promotion .section-tab-title .tab-box .tab-list li {
  display: inline-block;
  background-color: #7b7b7b;
  color: #5e5e5e;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 30px;
  width: 269px;
  margin-left: 7px;
  height: 95px;
  line-height: 95px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -2px;
}

.promotion .section-tab-title .tab-box .tab-list li:first-child {
  margin-left: 0;
}

.promotion .section-tab-title .tab-box .tab-list li.on {
  background-color: #fff;
  color: #222;
}

.promotion .section-tab {
  padding: 110px 0 220px;
}

.promotion .section-event {
  padding: 180px 0 220px;
  background: #fcc800 url("//img.eduwill.net/resources/img/admin/event/201104/pc/bg_event.jpg") no-repeat 50% 0;
}

.promotion .section-event .box1 {
  position: relative;
  margin-top: 96px;
}

.promotion .section-event .box1 .event-box {
  position: absolute;
  left: 50%;
  top: 398px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 810px;
}

.promotion .section-event .box1 .event-box .input-box {
  width: 500px;
  height: 180px;
  background: url("//img.eduwill.net/resources/img/admin/event/201104/pc/bg_input.png") no-repeat 50% 0;
  float: left;
  padding: 60px 0 60px 70px;
  background-size: 100% 100%;
  text-align: left;
}

.promotion .section-event .box1 .event-box .input-box input::-webkit-input-placeholder {
  color: #a2a2a2;
  font-size: 33px;
}

.promotion .section-event .box1 .event-box .input-box input:-ms-input-placeholder {
  color: #a2a2a2;
  font-size: 33px;
}

.promotion .section-event .box1 .event-box .input-box input {
  width: 70%;
  height: 60px;
  line-height: 60px;
  color: #a2a2a2;
  font-size: 33px;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  border: none;
}

.promotion .section-event .box1 .event-box .btn-apply {
  float: right;
}
/*# sourceMappingURL=web.css.map */