@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;
}

.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-start;
          animation-timing-function: step-start;
  -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;
  }
}

.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-full,
.product .wrap-full,
.product-eco .wrap-full,
.fullservice .wrap-full {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

html.pop {
  overflow: hidden;
}

.popup-wrap {
  z-index: 1004;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding: 4.16667vw;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
}

.popup-wrap * {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

@media screen and (min-width: 720px) {
  .popup-wrap {
    padding: 30px;
  }
}

.popup-wrap.open {
  display: block;
}

.popup-wrap.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-wrap .inside {
  z-index: 1104;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 4.16667vw;
  background: rgba(0, 0, 0, 0.7);
  overflow: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside {
    padding: 30px;
  }
}

.popup-wrap .inside .popup .title {
  padding: 4.16667vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .title {
    padding: 30px;
  }
}

.popup-wrap .inside .popup .title .close {
  top: 50%;
  right: 4.16667vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .title .close {
    right: 30px;
  }
}

.popup-wrap .inside.open {
  display: block;
}

.popup-wrap .inside.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-wrap .inside .popup .list-cont {
  padding: 4.16667vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .list-cont {
    padding: 30px;
  }
}

.popup-wrap .inside .popup .list-cont h3 {
  text-align: center;
  font-size: 5vw;
  margin-bottom: 4.16667vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .list-cont h3 {
    font-size: 36px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .list-cont h3 {
    margin-bottom: 30px;
  }
}

.popup-wrap .inside .popup .list-cont ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3.33333vw;
  line-height: 5vw;
  padding-left: 40.27778vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .list-cont ul li {
    font-size: 24px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .list-cont ul li {
    line-height: 36px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .list-cont ul li {
    padding-left: 290px;
  }
}

.popup-wrap .inside .popup .list-cont ul li em {
  position: absolute;
  left: 0;
  min-width: 5.55556vw;
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 700;
  text-align: left;
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .list-cont ul li em {
    min-width: 40px;
  }
}

.popup-wrap .inside .popup .list-cont ul li span {
  position: absolute;
  display: inline-block;
  max-width: 31.94444vw;
  min-width: 31.94444vw;
  text-align: justify;
  font-weight: 700;
  left: 5vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .list-cont ul li span {
    max-width: 230px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .list-cont ul li span {
    min-width: 230px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .inside .popup .list-cont ul li span {
    left: 36px;
  }
}

.popup-wrap .inside .popup .list-cont ul li span::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.popup-wrap .inside .popup .list-cont ul li p {
  display: inline-block;
}

.popup-wrap .popup {
  position: relative;
  display: none;
  margin: 0 auto;
  background: #fff;
  width: 100%;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup {
    max-width: 640px;
  }
}

.popup-wrap .popup.show {
  display: block;
}

.popup-wrap .popup.center {
  display: block;
}

.popup-wrap .popup .title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5vw 5.55556vw;
  background: #fff3ed;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .title {
    padding: 36px 40px;
  }
}

.popup-wrap .popup .title h3 {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 4.16667vw;
  color: #000;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .title h3 {
    font-size: 30px;
  }
}

.popup-wrap .popup .close {
  position: absolute;
  right: 2.77778vw;
  top: 2.77778vw;
  width: 3.88889vw;
  height: 3.75vw;
  border: none;
  background-image: url("//img.eduwill.net/eduwill/img/2021/L/event/211207/ico_close.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .close {
    right: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .close {
    top: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .close {
    width: 28px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .close {
    height: 27px;
  }
}

.popup-wrap .popup .contents {
  padding-top: 6.94444vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents {
    padding-top: 50px;
  }
}

.popup-wrap .popup .contents h4 {
  font-size: 3.47222vw;
  font-weight: 700;
  color: #000000;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents h4 {
    font-size: 25px;
  }
}

.popup-wrap .popup .contents h4 span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.popup-wrap .popup .contents .form {
  padding: 0 5.55556vw 9.72222vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form {
    padding: 0 40px 70px;
  }
}

.popup-wrap .popup .contents .form p {
  min-width: 17.77778vw;
  text-align: left;
  font-size: 3.47222vw;
  font-weight: 700;
  color: #000;
  margin-right: 2.77778vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form p {
    min-width: 128px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form p {
    font-size: 25px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form p {
    margin-right: 20px;
  }
}

.popup-wrap .popup .contents .form .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
  margin-bottom: 2.08333vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content {
    margin-bottom: 15px;
  }
}

.popup-wrap .popup .contents .form .content > div {
  width: 100%;
}

.popup-wrap .popup .contents .form .content > div input[type="text"] {
  width: 100%;
  height: 9.72222vw;
  font-size: 3.47222vw;
  font-weight: 500;
  color: #000;
  padding: 0 2.77778vw;
  border: 1px solid #c9c9c9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content > div input[type="text"] {
    height: 70px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content > div input[type="text"] {
    font-size: 25px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content > div input[type="text"] {
    padding: 0 20px;
  }
}

.popup-wrap .popup .contents .form .content > div input[type="text"]:focus {
  border-color: #fdc300;
}

.popup-wrap .popup .contents .form .content > div input[type="text"].tel {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.popup-wrap .popup .contents .form .content > div input[type="text"].tel::-webkit-input-placeholder {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.popup-wrap .popup .contents .form .content > div input[type="text"].tel:-ms-input-placeholder {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.popup-wrap .popup .contents .form .content > div input[type="text"].tel::-ms-input-placeholder {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.popup-wrap .popup .contents .form .content > div input[type="text"].tel::placeholder {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.popup-wrap .popup .contents .form .content > div ul {
  margin-top: 0.69444vw;
  margin-bottom: 2.08333vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content > div ul {
    margin-top: 5px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content > div ul {
    margin-bottom: 15px;
  }
}

.popup-wrap .popup .contents .form .content > div ul li {
  text-align: left;
  font-size: 2.22222vw;
  color: #bdbdbd;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content > div ul li {
    font-size: 16px;
  }
}

.popup-wrap .popup .contents .form .content.full {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 8.33333vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content.full {
    margin-top: 60px;
  }
}

.popup-wrap .popup .contents .form .content.full p {
  margin-bottom: 2.77778vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content.full p {
    margin-bottom: 20px;
  }
}

.popup-wrap .popup .contents .form .content.full.nomt p {
  margin-bottom: 0;
}

.popup-wrap .popup .contents .form .content .item {
  text-align: left;
}

.popup-wrap .popup .contents .form .content .item .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup-wrap .popup .contents .form .content .item .search .search-btn {
  min-width: 26.38889vw;
  text-align: center;
  font-size: 3.47222vw;
  color: #fff;
  margin-left: 1.38889vw;
  background: #000000;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item .search .search-btn {
    min-width: 190px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item .search .search-btn {
    font-size: 25px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item .search .search-btn {
    margin-left: 10px;
  }
}

.popup-wrap .popup .contents .form .content .item .select select {
  width: 100%;
  height: 9.72222vw;
  font-size: 3.47222vw;
  font-weight: 500;
  color: #000;
  padding: 0 2.77778vw;
  border: 1px solid #c9c9c9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url(https://img.eduwill.net/eduwill/img/2021/L/event/211207/icon_select_arrow.svg) no-repeat right 12px center;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item .select select {
    height: 70px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item .select select {
    font-size: 25px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item .select select {
    padding: 0 20px;
  }
}

.popup-wrap .popup .contents .form .content .item > input {
  margin-top: 2.08333vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item > input {
    margin-top: 15px;
  }
}

.popup-wrap .popup .contents .form .content .item ul {
  margin-top: 2.77778vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item ul {
    margin-top: 20px;
  }
}

.popup-wrap .popup .contents .form .content .item ul li {
  position: relative;
  font-size: 2.22222vw;
  color: #bdbdbd;
  padding-left: 2.5vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item ul li {
    font-size: 16px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item ul li {
    padding-left: 18px;
  }
}

.popup-wrap .popup .contents .form .content .item ul li::before {
  content: "※ ";
  position: absolute;
  left: 0;
}

.popup-wrap .popup .contents .form .content .item ul li.on {
  color: #ed6758;
}

.popup-wrap .popup .contents .form .content .item ul li > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #bdbdbd;
}

.popup-wrap .popup .contents .form .content .item ul li > div strong {
  display: block;
  min-width: 18.05556vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item ul li > div strong {
    min-width: 130px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .item ul li > div strong {
    min-width: 110px;
  }
}

.popup-wrap .popup .contents .form .content .btn-wrap {
  margin-top: 4.16667vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .btn-wrap {
    margin-top: 30px;
  }
}

.popup-wrap .popup .contents .form .content .btn-wrap a {
  position: relative;
  display: block;
  width: 100%;
  height: 9.72222vw;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 3.47222vw;
  text-align: center;
  line-height: 9.72222vw;
  color: #fff;
  border-radius: 0.83333vw;
  background: #aaaaaa;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .btn-wrap a {
    height: 70px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .btn-wrap a {
    font-size: 25px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .btn-wrap a {
    line-height: 70px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .btn-wrap a {
    border-radius: 6px;
  }
}

.popup-wrap .popup .contents .form .content .btn-wrap a i {
  top: 50%;
  position: absolute;
  right: 4.16667vw;
  width: 1.52778vw;
  height: 2.63889vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("//img.eduwill.net/eduwill/img/2021/L/event/211207/pc/ico_arrow_right_white.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .btn-wrap a i {
    right: 30px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .btn-wrap a i {
    width: 11px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .contents .form .content .btn-wrap a i {
    height: 19px;
  }
}

.popup-wrap .popup .check-wrap {
  text-align: left;
  padding: 8.33333vw 5.55556vw;
  background: #f6f6f6;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap {
    padding: 60px 40px;
  }
}

.popup-wrap .popup .check-wrap h3 {
  font-size: 3.47222vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap h3 {
    font-size: 25px;
  }
}

.popup-wrap .popup .check-wrap > p {
  font-size: 2.77778vw;
  color: #222222;
  line-height: 4.72222vw;
  margin: 4.44444vw 0 10vw;
  opacity: 0.7;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap > p {
    font-size: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap > p {
    line-height: 34px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap > p {
    margin: 32px 0 72px;
  }
}

.popup-wrap .popup .check-wrap > p span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.popup-wrap .popup .check-wrap ul li {
  margin-bottom: 11.11111vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li {
    margin-bottom: 80px;
  }
}

.popup-wrap .popup .check-wrap ul li h4 {
  font-size: 3.47222vw;
  font-weight: 500;
  color: #222;
  margin-bottom: 2.77778vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li h4 {
    font-size: 25px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li h4 {
    margin-bottom: 20px;
  }
}

.popup-wrap .popup .check-wrap ul li h4 strong {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 500;
}

.popup-wrap .popup .check-wrap ul li h4 span {
  color: #ed6758;
}

.popup-wrap .popup .check-wrap ul li table {
  width: 100%;
}

.popup-wrap .popup .check-wrap ul li table thead tr {
  background: #fff;
}

.popup-wrap .popup .check-wrap ul li table thead tr th {
  font-size: 2.77778vw;
  font-weight: 400;
  color: #222;
  text-align: center;
  padding: 2.77778vw 0;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li table thead tr th {
    font-size: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li table thead tr th {
    padding: 20px 0;
  }
}

.popup-wrap .popup .check-wrap ul li table tbody tr {
  border-bottom: 1px solid #dbdbdb;
}

.popup-wrap .popup .check-wrap ul li table tbody tr td {
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 4.16667vw;
  color: #222222;
  vertical-align: top;
  padding: 3.33333vw 2.77778vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li table tbody tr td {
    font-size: 18px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li table tbody tr td {
    line-height: 30px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li table tbody tr td {
    padding: 24px 20px;
  }
}

.popup-wrap .popup .check-wrap ul li table tbody tr td.tc {
  text-align: center;
}

.popup-wrap .popup .check-wrap ul li table tbody tr td strong {
  font-size: 3.33333vw;
  font-weight: 700;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li table tbody tr td strong {
    font-size: 24px;
  }
}

.popup-wrap .popup .check-wrap ul li table tbody tr.tc td {
  text-align: center;
}

.popup-wrap .popup .check-wrap ul li .sub {
  margin-top: 2.77778vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .sub {
    margin-top: 20px;
  }
}

.popup-wrap .popup .check-wrap ul li .sub ul li {
  position: relative;
  font-size: 2.22222vw;
  line-height: 3.33333vw;
  font-weight: 400;
  color: #bdbdbd;
  margin-bottom: 0;
  padding-left: 2.5vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .sub ul li {
    font-size: 16px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .sub ul li {
    line-height: 24px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .sub ul li {
    padding-left: 18px;
  }
}

.popup-wrap .popup .check-wrap ul li .sub ul li::before {
  content: "※ ";
  position: absolute;
  left: 0;
}

.popup-wrap .popup .check-wrap ul li .sub ul li.on {
  font-weight: 400;
  color: #222;
}

.popup-wrap .popup .check-wrap ul li .sub ul p {
  font-size: 2.5vw;
  line-height: 3.33333vw;
  font-weight: 700;
  color: #333;
  margin-top: 2.77778vw;
  padding-left: 2.5vw;
  letter-spacing: -0.05em;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .sub ul p {
    font-size: 18px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .sub ul p {
    line-height: 24px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .sub ul p {
    margin-top: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .sub ul p {
    padding-left: 18px;
  }
}

.popup-wrap .popup .check-wrap ul li .sub ul p.pd-0 {
  padding-left: 0;
}

.popup-wrap .popup .check-wrap ul li .input-wrap {
  margin: 2.77778vw 0 0;
  text-align: right;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .input-wrap {
    margin: 20px 0 0;
  }
}

.popup-wrap .popup .check-wrap ul li .input-wrap > div:last-child label {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 0;
}

.popup-wrap .popup .check-wrap ul li .list-wrap {
  margin-top: -1.38889vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .list-wrap {
    margin-top: -10px;
  }
}

.popup-wrap .popup .check-wrap ul li .list-wrap p {
  font-size: 2.77778vw;
  font-weight: 400;
  line-height: 4.72222vw;
  color: #222222;
  padding-left: 3.88889vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .list-wrap p {
    font-size: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .list-wrap p {
    line-height: 34px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .list-wrap p {
    padding-left: 28px;
  }
}

.popup-wrap .popup .check-wrap ul li .list-wrap ul {
  padding: 4.16667vw 3.33333vw;
  margin-top: 2.77778vw;
  background: #fff;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .list-wrap ul {
    padding: 30px 24px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .list-wrap ul {
    margin-top: 20px;
  }
}

.popup-wrap .popup .check-wrap ul li .list-wrap ul li {
  font-size: 2.77778vw;
  font-weight: 400;
  line-height: 5vw;
  color: #222;
  margin: 0;
  letter-spacing: -0.06em;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .list-wrap ul li {
    font-size: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li .list-wrap ul li {
    line-height: 36px;
  }
}

.popup-wrap .popup .check-wrap ul li .list-wrap ul li strong {
  font-weight: 700;
}

.popup-wrap .popup .check-wrap ul li:last-child {
  margin-bottom: 0;
}

.popup-wrap .popup .check-wrap ul li:last-child p {
  font-size: 2.77778vw;
  line-height: 4.72222vw;
  letter-spacing: -0.06em;
  color: #222;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li:last-child p {
    font-size: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li:last-child p {
    line-height: 34px;
  }
}

.popup-wrap .popup .check-wrap ul li:last-child .input-wrap {
  margin-bottom: 8.33333vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .check-wrap ul li:last-child .input-wrap {
    margin-bottom: 60px;
  }
}

.popup-wrap .popup .check-wrap.route-wrap ul li {
  margin-bottom: 0;
}

.popup-wrap .popup .foot-btn {
  padding: 0 5.55556vw 11.11111vw;
  background: #f6f6f6;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .foot-btn {
    padding: 0 40px 80px;
  }
}

.popup-wrap .popup .foot-btn a {
  display: block;
  width: 100%;
  height: 13.88889vw;
  line-height: 13.88889vw;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 5.55556vw;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.03em;
  color: #fff;
  background: #ed6758;
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .foot-btn a {
    height: 100px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .foot-btn a {
    line-height: 100px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .popup .foot-btn a {
    font-size: 40px;
  }
}

.popup-wrap .popup .foot-btn.small {
  padding: 0;
}

.popup-wrap .popup.atype .close {
  top: auto;
}

.popup-wrap .popup.atype .foot-btn {
  background: #f6f6f6;
}

.popup-wrap .popup#popupInvite .foot-btn {
  background: #fff3ed;
}

.popup-wrap .custom {
  text-align: left;
}

.popup-wrap .custom.input-wrap {
  margin-top: 3.47222vw;
  margin-bottom: 2.08333vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom.input-wrap {
    margin-top: 25px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom.input-wrap {
    margin-bottom: 15px;
  }
}

.popup-wrap .custom > div {
  position: relative;
  display: inline-block;
}

.popup-wrap .custom > div label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.77778vw;
  font-weight: 500;
  color: #000;
  margin-right: 6.94444vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom > div label {
    font-size: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom > div label {
    margin-right: 50px;
  }
}

.popup-wrap .custom > div label::before {
  content: "";
  display: inline-block;
  width: 4.16667vw;
  height: 4.16667vw;
  margin-right: 1.38889vw;
  border: 2px solid #bdbdbd;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom > div label::before {
    width: 30px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom > div label::before {
    height: 30px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom > div label::before {
    margin-right: 10px;
  }
}

.popup-wrap .custom > div input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.popup-wrap .custom > div input[type="radio"]:checked + label {
  position: relative;
}

.popup-wrap .custom > div input[type="radio"]:checked + label::before {
  border-color: #ed6758;
}

.popup-wrap .custom > div input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  left: 0.97222vw;
  top: 0.97222vw;
  display: block;
  width: 2.22222vw;
  height: 2.22222vw;
  border-radius: 100%;
  background: #ed6758;
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom > div input[type="radio"]:checked + label::after {
    left: 7px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom > div input[type="radio"]:checked + label::after {
    top: 7px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom > div input[type="radio"]:checked + label::after {
    width: 16px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .custom > div input[type="radio"]:checked + label::after {
    height: 16px;
  }
}

.popup-wrap .event-wrap {
  padding: 0 5.55556vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap {
    padding: 0 40px;
  }
}

.popup-wrap .event-wrap .event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 3.33333vw 0 8.88889vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event {
    margin: 24px 0 64px;
  }
}

.popup-wrap .event-wrap .event label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 2.77778vw;
  border-radius: 2.77778vw;
  background: #fff;
  -webkit-box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label {
    padding: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label {
    border-radius: 20px;
  }
}

.popup-wrap .event-wrap .event label:first-child {
  margin-right: 4.16667vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label:first-child {
    margin-right: 30px;
  }
}

.popup-wrap .event-wrap .event label input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.popup-wrap .event-wrap .event label input[type="radio"] + span {
  position: relative;
  display: block;
  width: 4.16667vw;
  height: 4.16667vw;
  border: 2px solid #bdbdbd;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label input[type="radio"] + span {
    width: 30px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label input[type="radio"] + span {
    height: 30px;
  }
}

.popup-wrap .event-wrap .event label input[type="radio"]:checked + span {
  border-color: #ed6758;
}

.popup-wrap .event-wrap .event label input[type="radio"]:checked + span::before {
  content: "";
  position: absolute;
  top: 0.55556vw;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 2.22222vw;
  height: 2.22222vw;
  border-radius: 100%;
  background: #ed6758;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label input[type="radio"]:checked + span::before {
    top: 4px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label input[type="radio"]:checked + span::before {
    top: 5px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label input[type="radio"]:checked + span::before {
    width: 16px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label input[type="radio"]:checked + span::before {
    height: 16px;
  }
}

.popup-wrap .event-wrap .event label .point {
  width: 19.44444vw;
  height: 5.55556vw;
  line-height: 5.83333vw;
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  text-align: center;
  font-size: 3.05556vw;
  margin: 4.16667vw 0 2.77778vw;
  color: #fff;
  border-radius: 4.16667vw;
  background: #ed6758;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label .point {
    width: 140px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label .point {
    height: 40px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label .point {
    line-height: 42px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label .point {
    font-size: 22px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label .point {
    margin: 30px 0 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label .point {
    border-radius: 30px;
  }
}

.popup-wrap .event-wrap .event label h5 {
  font-size: 4.16667vw;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.05em;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label h5 {
    font-size: 30px;
  }
}

.popup-wrap .event-wrap .event label p {
  font-size: 2.77778vw;
  color: #000;
  letter-spacing: -0.02em;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap .event label p {
    font-size: 20px;
  }
}

.popup-wrap .event-wrap .event label p span {
  display: initial;
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  color: #000;
}

.popup-wrap .event-wrap div {
  text-align: right;
  line-height: 1;
  margin-bottom: 4.44444vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div {
    margin-bottom: 32px;
  }
}

.popup-wrap .event-wrap div h4 {
  text-align: left;
  font-size: 3.47222vw;
  margin-bottom: 2.77778vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div h4 {
    font-size: 25px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div h4 {
    margin-bottom: 20px;
  }
}

.popup-wrap .event-wrap div h4 span {
  display: inline-block;
  color: #ed6758;
  font-size: 3.47222vw;
  margin: 0;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div h4 span {
    font-size: 25px;
  }
}

.popup-wrap .event-wrap div textarea {
  width: 100%;
  height: 16.66667vw;
  border: 1px solid #c9c9c9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div textarea {
    height: 120px;
  }
}

.popup-wrap .event-wrap div textarea.write {
  height: 27.77778vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div textarea.write {
    height: 200px;
  }
}

.popup-wrap .event-wrap div span {
  display: inline-block;
  font-size: 2.22222vw;
  color: #bdbdbd;
  margin-top: 2.22222vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div span {
    font-size: 16px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div span {
    margin-top: 16px;
  }
}

.popup-wrap .event-wrap div p {
  font-size: 2.77778vw;
  text-align: left;
  line-height: 4.72222vw;
  color: #222222;
  letter-spacing: -0.05em;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div p {
    font-size: 20px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div p {
    line-height: 34px;
  }
}

.popup-wrap .event-wrap div .input-wrap div label {
  margin-right: 3.33333vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .event-wrap div .input-wrap div label {
    margin-right: 24px;
  }
}

.popup-wrap .event-wrap div .input-wrap div:last-child label {
  margin-right: 0;
}

.popup-wrap .route-wrap {
  text-align: left;
  padding: 8.33333vw 5.55556vw;
  background: #f6f6f6;
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap {
    padding: 60px 40px;
  }
}

.popup-wrap .route-wrap ul {
  margin-top: 5.55556vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul {
    margin-top: 40px;
  }
}

.popup-wrap .route-wrap ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.77778vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul li {
    margin-bottom: 20px;
  }
}

.popup-wrap .route-wrap ul li input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.popup-wrap .route-wrap ul li label {
  position: relative;
  padding-left: 3.88889vw;
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul li label {
    padding-left: 28px;
  }
}

.popup-wrap .route-wrap ul li label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 2.5vw;
  height: 2.5vw;
  border: 1px solid #000;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul li label::before {
    width: 18px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul li label::before {
    height: 18px;
  }
}

.popup-wrap .route-wrap ul li input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.69444vw;
  display: block;
  width: 1.11111vw;
  height: 1.11111vw;
  border-radius: 100%;
  background-color: #000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul li input[type="radio"]:checked + label::after {
    left: 5px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul li input[type="radio"]:checked + label::after {
    width: 8px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul li input[type="radio"]:checked + label::after {
    height: 8px;
  }
}

.popup-wrap .route-wrap ul li input[type="text"] {
  width: 27.08333vw;
  height: 100%;
  margin-left: 0.55556vw;
  margin-top: -1.11111vw;
  border: none;
  border-bottom: 1px solid #000;
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul li input[type="text"] {
    width: 195px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul li input[type="text"] {
    margin-left: 4px;
  }
}

@media screen and (min-width: 720px) {
  .popup-wrap .route-wrap ul li input[type="text"] {
    margin-top: -8px;
  }
}

.roboto {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion * {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion .wrap {
  width: 1100px;
}

.promotion img {
  max-width: 100%;
}

.promotion .sector-intro {
  padding: 44px 0 136px;
  background-image: url("//img.eduwill.net/eduwill/img/2021/L/event/211207/pc/promotion_background.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.promotion .sector-intro .title-wrap {
  margin-top: 70px;
}

.promotion .sector-intro .comment {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 700;
  font-size: 50px;
  color: #fff;
  margin: 100px 0 90px;
  letter-spacing: -2px;
}

.promotion .sector-intro .comment span span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion .sector-intro .comment span span img {
  vertical-align: sub;
  margin-bottom: 4px;
}

.promotion .sector-intro .promotion-contents img {
  width: 100%;
}

.promotion .sector-intro .btn-wrap .btn-event {
  position: relative;
  display: inline-block;
}

.promotion .sector-intro .btn-wrap .btn-event:after {
  content: '';
  position: absolute;
  top: 40%;
  right: 54px;
  z-index: 1;
  display: block;
  width: 3.1875rem;
  height: 3.96875rem;
  background: url("//img.eduwill.net/Img2/Common/icon/pointer/icon_pointer_14.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) {
  .promotion .sector-intro .btn-wrap .btn-event:after {
    width: 102px;
  }
}

@media screen and (min-width: 720px) {
  .promotion .sector-intro .btn-wrap .btn-event:after {
    height: 127px;
  }
}

@-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);
  }
}

.promotion .sector-intro .btn-wrap .open-modal {
  display: table;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 20px;
  font-weight: 600;
  color: #874a48;
  margin: 24px auto 0;
}

.promotion .sector-intro .btn-wrap .open-modal img {
  vertical-align: middle;
  margin-left: 10px;
  margin-top: -2px;
}

.promotion .wrap {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .wrap h1 {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 900;
  font-size: 70px;
  line-height: 100px;
  color: #000;
}

.promotion .wrap table {
  border-top: 3px solid #000;
  letter-spacing: -1px;
}

.promotion .wrap table tr {
  border-bottom: 1px solid #e2e2e2;
}

.promotion .wrap table tr th {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  vertical-align: baseline;
  font-size: 25px;
  line-height: 45px;
  font-weight: 700;
  color: #000;
  padding: 30px 0 30px 40px;
}

.promotion .wrap table tr th em {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 700;
}

.promotion .wrap table tr td {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 25px;
  line-height: 40px;
  font-weight: 400;
  vertical-align: baseline;
  color: #000000;
  padding: 30px 0 30px 40px;
}

.promotion .wrap table tr td h2 {
  font-size: 25px;
  line-height: 40px;
  color: #000;
  margin-bottom: 12px;
}

.promotion .wrap table tr td p {
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: #000;
}

.promotion .wrap table tr td span {
  position: relative;
  display: block;
  text-align: left;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #b2b2b2;
}

.promotion .wrap table tr td span.sub {
  margin-left: 16px;
  padding-left: 24px;
}

.promotion .wrap table tr td span.sub::before {
  content: "※ ";
  position: absolute;
  left: 0;
}

.promotion .wrap table tr td em {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 400;
}

.promotion .sector-program {
  text-align: left;
  padding: 100px 0 120px;
  background-image: url("//img.eduwill.net/eduwill/img/2021/L/event/211207/pc/process_background.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.promotion .sector-benefit {
  text-align: left;
  padding: 120px 0 100px;
}

.promotion .sector-benefit .wrap img {
  max-width: 100%;
}

.promotion .sector-benefit .wrap .date {
  margin: 30px 0 90px;
}

.promotion .sector-benefit .wrap .benefit-contents .content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .sector-benefit .wrap .benefit-contents .content .text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 840px;
  margin: 60px auto 0;
}

.promotion .sector-benefit .wrap .benefit-contents .content .text-wrap .conts {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .sector-benefit .wrap .benefit-contents .content .text-wrap .conts span {
  font-size: 25px;
  font-weight: 700;
  color: #ed6758;
}

.promotion .sector-benefit .wrap .benefit-contents .content .text-wrap .conts h3 {
  position: relative;
  font-size: 45px;
  line-height: 66px;
  letter-spacing: -0.07em;
  color: #000;
}

.promotion .sector-benefit .wrap .benefit-contents .content .text-wrap .conts h3::after {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: super;
  width: 20px;
  height: 20px;
  margin-left: 18px;
  border-radius: 50%;
  background: #ed6758;
}

.promotion .sector-benefit .wrap .benefit-contents .content .text-wrap .conts h3 span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 45px;
  line-height: 66px;
  letter-spacing: -0.07em;
  color: #000;
}

.promotion .sector-benefit .wrap .benefit-contents .content .text-wrap .conts:first-child {
  padding-left: 40px;
}

.promotion .sector-benefit .wrap .benefit-contents .content .text-wrap .conts.full {
  width: 100%;
  padding-left: 0;
  margin: 0 auto;
  text-align: center;
}

.promotion .sector-benefit .wrap .benefit-contents .content .text-wrap.full-wrap {
  width: auto;
  margin: 48px auto 0;
}

.promotion .sector-benefit .wrap .benefit-contents .content .text-wrap.full-wrap img:last-child {
  margin: 64px 0 80px;
}

.promotion .sector-benefit .wrap .benefit-contents .content .date-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 840px;
  height: 130px;
  margin: 50px auto 0;
  border-radius: 64px;
  background: #f8f8f8;
}

.promotion .sector-benefit .wrap .benefit-contents .content .date-area h3 {
  font-size: 25px;
  line-height: 45px;
  margin-right: 66px;
  letter-spacing: -1px;
  color: #000;
}

.promotion .sector-benefit .wrap .benefit-contents .content .date-area p {
  font-size: 25px;
  line-height: 45px;
  margin: 0;
  color: #000000;
  letter-spacing: -1px;
}

.promotion .sector-benefit .wrap .benefit-contents .content .date-area p span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion .sector-benefit .wrap .benefit-contents .content > span {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
  color: #b2b2b2;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr.bdconts {
  border-bottom: none;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr.bdconts th {
  border-bottom: 1px solid #e2e2e2;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr.bdconts td:not(:last-child) {
  border-bottom: 1px solid #e2e2e2;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr th {
  padding: 36px 0 36px 22px;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td {
  padding-left: 27px;
  border-left: 1px solid #e2e2e2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.tc {
  text-align: center;
  padding-left: 0;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.user {
  font-weight: 700;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.user span {
  font-size: 20px;
  line-height: 40px;
  font-weight: 400;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td li {
  font-weight: 700;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td li span {
  display: inline-block;
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td li em {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-weight: 700;
  color: #000;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td strong {
  display: block;
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 20px;
  line-height: 40px;
  color: #ed6758;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list {
  position: relative;
  padding: 56px 30px 40px;
  border-left: none;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  border-top: 5px solid #ed6758;
  border-left: 5px solid #ed6758;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list::before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -1px;
  border-right: 5px solid #ed6758;
  border-bottom: 5px solid #ed6758;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list::after {
  content: "";
  position: absolute;
  top: 52px;
  left: -32px;
  display: block;
  width: 70px;
  height: 70px;
  background-image: url("//img.eduwill.net/eduwill/img/2021/L/event/211207/pc/ico_plus.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list h3 {
  position: relative;
  display: table;
  font-size: 25px;
  line-height: 40px;
  margin: 0 auto;
  color: #000;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list h3 span {
  display: inline-block;
  font-weight: 700;
  font-size: 25px;
  color: #ed6758;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list h3 span em {
  font-weight: 700;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list h3::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: -2%;
  display: block;
  width: 104%;
  height: 100%;
  background: #ffe5e1;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list > span {
  margin-left: 36px;
  text-align: left;
  font-size: 20px;
  line-height: 40px;
  font-weight: 200;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list > span span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  display: inline-block;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list > span.on {
  color: #ed6758;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list ul {
  margin-top: 40px;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list ul li p {
  position: relative;
  font-size: 20px;
  line-height: 35px;
  color: #484848;
  margin: 0;
  padding-left: 36px;
  letter-spacing: -1px;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list ul li p span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  font-size: 20px;
  line-height: 35px;
  color: #484848;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list ul li p > span:first-child {
  position: absolute;
  left: 0;
  min-width: 28px;
  text-align: right;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list ul li p em {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: #484848;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list ul li p em span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list ul li > span {
  display: inline-block;
  margin-left: 8px;
}

.promotion .sector-benefit .wrap .benefit-contents .content table tr td.benefit-list ul li > span span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion .sector-benefit .wrap .benefit-contents .content .guide-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -45px;
  padding: 48px;
  background-color: #f8f8f8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .sector-benefit .wrap .benefit-contents .content .guide-wrap h4 {
  display: inline-block;
  min-width: 15.27778vw;
  font-size: 25px;
  line-height: 45px;
  color: #000;
  margin-right: 40px;
}

@media screen and (min-width: 720px) {
  .promotion .sector-benefit .wrap .benefit-contents .content .guide-wrap h4 {
    min-width: 110px;
  }
}

.promotion .sector-benefit .wrap .benefit-contents .content .guide-wrap ul li {
  position: relative;
  font-size: 20px;
  line-height: 40px;
  color: #a5a5a5;
  padding-left: 24px;
}

.promotion .sector-benefit .wrap .benefit-contents .content .guide-wrap ul li::before {
  content: "※ ";
  position: absolute;
  left: 0;
  display: inline-block;
}

.promotion .sector-benefit .wrap .benefit-contents .content .guide-wrap ul li span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion .sector-benefit .btn-wrap {
  margin-top: 60px;
  text-align: center;
}

.promotion .sector-benefit .btn-wrap .btn-event {
  position: relative;
  display: inline-block;
}

.promotion .sector-benefit .btn-wrap .btn-event:after {
  content: '';
  position: absolute;
  top: 40%;
  right: 54px;
  z-index: 1;
  display: block;
  width: 3.1875rem;
  height: 3.96875rem;
  background: url("//img.eduwill.net/Img2/Common/icon/pointer/icon_pointer_14.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) {
  .promotion .sector-benefit .btn-wrap .btn-event:after {
    width: 102px;
  }
}

@media screen and (min-width: 720px) {
  .promotion .sector-benefit .btn-wrap .btn-event:after {
    height: 127px;
  }
}

@-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);
  }
}

.promotion .sector-benefit .btn-wrap .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  color: #b2b2b2;
  margin-top: 50px;
}

.promotion .sector-benefit .btn-wrap .cont a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
}

.promotion .sector-content {
  text-align: left;
  padding: 120px 0;
}

.promotion .sector-content .content-information {
  margin: 60px 0 100px;
}

.promotion .sector-comment {
  padding: 100px 0 120px;
  background: #f8f8f8;
}

.promotion .sector-member {
  text-align: left;
  padding: 100px 0 80px;
}

.promotion .sector-member .content {
  text-align: center;
  margin-top: 30px;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .sector-member .content .img-wrap {
  padding-top: 80px;
}

.promotion .sector-member .content .text-wrap {
  margin: 60px 0 70px;
  padding: 0 80px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

.promotion .sector-member .content .text-wrap div {
  min-width: 220px;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -0.05em;
}

.promotion .sector-member .content .text-wrap div p {
  display: inline-block;
  color: #ed6758;
}

.promotion .sector-member .content .text-wrap div span {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion .sector-member .content .text-wrap ul {
  margin-left: 40px;
}

.promotion .sector-member .content .text-wrap ul li {
  position: relative;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: -0.05em;
  color: #484848;
  padding-left: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .sector-member .content .text-wrap ul li::before {
  content: "·";
  position: absolute;
  font-size: 30px;
  left: 0;
}

.promotion .sector-member .content .text-wrap ul li span {
  color: #b2b2b2;
}

.promotion .sector-member .content .text-wrap ul li em {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion .sector-member .content .guide-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  padding: 50px 60px;
  background: #f8f8f8;
}

.promotion .sector-member .content .guide-wrap h4 {
  min-width: 96px;
  font-size: 25px;
  line-height: 45px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.promotion .sector-member .content .guide-wrap ul {
  margin-left: 40px;
}

.promotion .sector-member .content .guide-wrap ul li {
  position: relative;
  font-size: 20px;
  line-height: 40px;
  color: #a5a5a5;
  letter-spacing: -0.05em;
  padding-left: 20px;
}

.promotion .sector-member .content .guide-wrap ul li::before {
  content: "※";
  position: absolute;
  left: 0;
}

.promotion .sector-member .content .guide-wrap ul li em {
  font-family: "Roboto", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}

.promotion .fix-content {
  z-index: 150;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.promotion .fix-content .marker {
  margin-bottom: 10px;
}

.promotion .fix-content ul {
  padding: 10px;
  border-radius: 20px;
  background-image: url("//img.eduwill.net/eduwill/img/2021/L/event/211207/pc/fix_background.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .fix-content ul li {
  margin-bottom: 10px;
}

.promotion .fix-content ul li:last-child {
  margin-bottom: 0;
}

.promotion .fix-content ul a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 80px;
  text-align: left;
  padding: 18px 14px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.promotion .fix-content ul a span {
  display: block;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 4px;
  color: #000000;
}

.promotion .fix-content ul a p {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -2px;
  color: #000;
}

.promotion .fix-content ul i {
  position: absolute;
  right: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 6px;
  height: 11px;
  background-image: url("//img.eduwill.net/eduwill/img/2021/L/event/211207/pc/ico_arrow_right_black.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/*# sourceMappingURL=web.css.map */