@charset "UTF-8";
.popup.popup-lecture .lecture-text, .grid {
  *zoom: 1;
}
.popup.popup-lecture .lecture-text:before, .grid:before, .popup.popup-lecture .lecture-text:after, .grid:after {
  content: "";
  display: table;
}
.popup.popup-lecture .lecture-text:after, .grid:after {
  clear: both;
}

.hidden,
.sr_only,
.sr-only,
.popup .popup-close span {
  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;
  box-sizing: border-box;
}
.grid .col {
  position: relative;
  float: left;
  box-sizing: border-box;
}

.table {
  display: table;
}
.table .table-cell {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.effect-bounce-diagonal {
  animation-name: effectBounceDiagonal;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes effectBounceDiagonal {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}

.effect-bounce-updown {
  animation-name: effectBounceUpDown;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes effectBounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.effect-extend {
  animation-name: effectExtend;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes effectExtend {
  0%, 100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
}

.effect-blink {
  animation-name: effectBlink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: step-start;
  animation-direction: normal;
}
@keyframes effectBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.popup-dim {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9990;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 9999;
  display: none;
  width: 90%;
  max-width: 720px;
  letter-spacing: -1px;
  transform: translateX(-50%);
  box-sizing: border-box;
}
@media screen and (min-width: 1100px) {
  .popup {
    max-width: 1000px;
    transform: translate(-50%, 0);
    top: 50%;
  }
}
.popup * {
  font-family: "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
}
.popup .popup-close {
  position: absolute;
  top: 0vw;
  right: 1.3888888889vw;
  background-color: #000;
  cursor: pointer;
}
@media screen and (min-width: 720px) {
  .popup .popup-close {
    top: 0px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-close {
    right: 10px;
  }
}
.popup .popup-close {
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 10px;
  cursor: pointer;
}
.popup .popup-close:before, .popup .popup-close:after {
  content: "";
  display: block;
  width: 140%;
  height: 2px;
  background: #fff;
}
.popup .popup-close:before {
  margin-top: -0.5px;
  margin-left: 1px;
  transform: rotate(45deg);
  transform-origin: 0 0;
}
.popup .popup-close:after {
  margin-left: -41%;
  margin-top: -2px;
  transform: rotate(-45deg);
  transform-origin: 100% 0;
}
@media screen and (min-width: 1100px) {
  .popup .popup-close {
    top: 15px;
    right: 15px;
  }
}
.popup .popup-title {
  padding: 0.625rem;
  text-align: left;
  border-radius: 0;
  background-color: #000;
}
@media screen and (min-width: 720px) {
  .popup .popup-title {
    padding: 20px;
  }
}
.popup .popup-title p {
  font-size: 3.3333333333vw;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 720px) {
  .popup .popup-title p {
    font-size: 24px;
  }
}
.popup .popup-body {
  padding: 0.78125rem;
  text-align: left;
  line-height: 1.4;
  font-size: 2.5vw;
  font-weight: 400;
  color: #222;
  border: 2px solid #000;
  border-radius: 0;
  background-color: #fff;
}
@media screen and (min-width: 720px) {
  .popup .popup-body {
    padding: 25px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body {
    font-size: 18px;
  }
}
.popup .popup-body > div {
  margin-top: 20px;
}
.popup .popup-body > div:first-child {
  margin-top: 0;
}
.popup .popup-body div:first-child strong {
  margin-top: 0;
}
.popup .popup-body p {
  font-size: 2.2222222222vw;
}
@media screen and (min-width: 720px) {
  .popup .popup-body p {
    font-size: 16px;
  }
}
.popup .popup-body p.popup-notice {
  margin-top: 0.3125rem;
  text-align: left;
  font-size: 1.9444444444vw;
}
@media screen and (min-width: 720px) {
  .popup .popup-body p.popup-notice {
    margin-top: 10px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body p.popup-notice {
    font-size: 14px;
  }
}
.popup .popup-body strong {
  display: block;
  margin-top: 0.625rem;
  font-size: 2.5vw;
}
@media screen and (min-width: 720px) {
  .popup .popup-body strong {
    margin-top: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup .popup-body strong {
    font-size: 18px;
  }
}
.popup .popup-table .table-row {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.popup .popup-table .table-row th,
.popup .popup-table .table-row td {
  padding: 0.3125rem;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}
@media screen and (min-width: 720px) {
  .popup .popup-table .table-row th,
  .popup .popup-table .table-row td {
    padding: 10px;
  }
}
.popup .popup-table .table-row th {
  font-size: 2.2222222222vw;
  background-color: #ddd;
}
@media screen and (min-width: 720px) {
  .popup .popup-table .table-row th {
    font-size: 16px;
  }
}
.popup .popup-table .table-row td {
  font-size: 1.9444444444vw;
  background-color: #fff;
}
@media screen and (min-width: 720px) {
  .popup .popup-table .table-row td {
    font-size: 14px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-base {
    max-width: 1000px;
  }
}
.popup.popup-base .popup-body {
  max-height: 18.75rem;
  overflow-y: auto;
}
@media screen and (min-width: 720px) {
  .popup.popup-base .popup-body {
    max-height: 600px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-teacher {
    max-width: 500px;
  }
}
.popup.popup-teacher .popup-body {
  padding: 9.7222222222vw 2.7777777778vw 2.7777777778vw;
  max-height: 18.75rem;
  overflow-y: auto;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body {
    padding: 70px 20px 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body {
    max-height: 600px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-teacher .popup-body {
    padding: 70px 20px 20px !important;
  }
}
.popup.popup-teacher .popup-body .teacher-core {
  margin-top: 1.25rem;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-core {
    margin-top: 40px;
  }
}
.popup.popup-teacher .popup-body .teacher-ace,
.popup.popup-teacher .popup-body .teacher-core {
  color: #222;
}
@media screen and (min-width: 1100px) {
  .popup.popup-teacher .popup-body .teacher-ace,
  .popup.popup-teacher .popup-body .teacher-core {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    vertical-align: top;
  }
}
.popup.popup-teacher .popup-body .teacher-title {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.625rem;
  font-size: 3.3333333333vw;
  font-weight: 700;
  color: #fff;
  text-align: left;
  border-radius: 0;
  background-color: #000;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-title {
    padding: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-title {
    font-size: 24px;
  }
}
.popup.popup-teacher .popup-body .teacher-title span {
  color: #FFD800;
}
.popup.popup-teacher .popup-body .teacher-name {
  margin-top: 0.625rem;
  font-size: 2.9166666667vw;
  font-weight: 700;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-name {
    margin-top: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-name {
    font-size: 21px;
  }
}
.popup.popup-teacher .popup-body .teacher-profile {
  margin-top: 0.625rem;
  font-size: 2.7777777778vw;
  font-weight: 500;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-profile {
    margin-top: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-profile {
    font-size: 20px;
  }
}
.popup.popup-teacher .popup-body .teacher-profile-list {
  margin-top: 0.3125rem;
  font-size: 2.5vw;
  font-weight: 300;
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-profile-list {
    margin-top: 10px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-teacher .popup-body .teacher-profile-list {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-lecture {
    max-width: 500px;
  }
}
.popup.popup-lecture .popup-body {
  padding: 0;
}
.popup.popup-lecture .lecture-title {
  padding: 0.625rem;
  font-size: 3.3333333333vw;
  font-weight: 700;
  color: #fff;
  text-align: left;
  border-radius: 0;
  background-color: #000;
}
@media screen and (min-width: 720px) {
  .popup.popup-lecture .lecture-title {
    padding: 20px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-lecture .lecture-title {
    font-size: 24px;
  }
}
.popup.popup-lecture .lecture-title span {
  color: #FFD800;
}
.popup.popup-lecture .lecture-text {
  max-height: 18.75rem;
  overflow-y: auto;
  padding: 0.78125rem;
}
@media screen and (min-width: 720px) {
  .popup.popup-lecture .lecture-text {
    max-height: 600px;
  }
}
@media screen and (min-width: 720px) {
  .popup.popup-lecture .lecture-text {
    padding: 25px;
  }
}
@media screen and (min-width: 1100px) {
  .popup.popup-lecture .lecture-text > div {
    float: left;
    width: 50%;
  }
}
.popup.popup-curriculum .lecture-title span {
  color: #FFD800;
}

.eco-base-text, .eco-3222 p, .eco-1718 p {
  display: none;
  line-height: 1.5;
  font-size: 2.7777777778vw;
  font-weight: 400;
  color: #222;
  letter-spacing: -1px;
}
@media screen and (min-width: 720px) {
  .eco-base-text, .eco-3222 p, .eco-1718 p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .eco-base-text, .eco-3222 p, .eco-1718 p {
    font-size: 14px;
  }
}

.eco-base-text, .eco-1718 p, .eco-3222 p {
  display: none;
  line-height: 1.5;
  font-size: 2.7777777778vw;
  font-weight: 400;
  color: #222;
  letter-spacing: -1px;
}
@media screen and (min-width: 720px) {
  .eco-base-text, .eco-1718 p, .eco-3222 p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .eco-base-text, .eco-1718 p, .eco-3222 p {
    font-size: 14px;
  }
}

.promotion {
  font-family: "Pretendard", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "Dotum", "돋움", "Gulim", "굴림", "굴림체", Sans-Serif;
  letter-spacing: -0.5px;
}
.promotion .motion-1 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: translateY(50px);
}
.promotion .motion-extend-1 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: scale(1.5, 1.5);
}
.promotion .motion-2 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: translateY(50px);
}
.promotion .motion-extend-2 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: scale(1.5, 1.5);
}
.promotion .motion-3 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: translateY(50px);
}
.promotion .motion-extend-3 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: scale(1.5, 1.5);
}
.promotion .motion-4 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: translateY(50px);
}
.promotion .motion-extend-4 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: scale(1.5, 1.5);
}
.promotion .motion-5 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: translateY(50px);
}
.promotion .motion-extend-5 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: scale(1.5, 1.5);
}
.promotion .motion-6 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: translateY(50px);
}
.promotion .motion-extend-6 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: scale(1.5, 1.5);
}
.promotion .motion-7 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: translateY(50px);
}
.promotion .motion-extend-7 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: scale(1.5, 1.5);
}
.promotion .motion-8 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: translateY(50px);
}
.promotion .motion-extend-8 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: scale(1.5, 1.5);
}
.promotion .motion-9 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: translateY(50px);
}
.promotion .motion-extend-9 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: scale(1.5, 1.5);
}
.promotion .motion-10 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: translateY(50px);
}
.promotion .motion-extend-10 {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: ease-out;
  transform: scale(1.5, 1.5);
}
.promotion .promotion .motion-box-1 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .promotion .motion-box-2 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .promotion .motion-box-3 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .promotion .motion-box-4 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .promotion .motion-box-5 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .promotion .motion-box-6 {
  opacity: 0;
  transform: scale(0.1, 0.1);
  transition: all 0.5s;
  transition-timing-function: ease-out;
}
.promotion .active .motion-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.promotion .active .motion-extend-1 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.2s;
}
.promotion .active .motion-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.promotion .active .motion-extend-2 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.4s;
}
.promotion .active .motion-3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.promotion .active .motion-extend-3 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.6s;
}
.promotion .active .motion-4 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.promotion .active .motion-extend-4 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.8s;
}
.promotion .active .motion-5 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.promotion .active .motion-extend-5 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 1s;
}
.promotion .active .motion-6 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}
.promotion .active .motion-extend-6 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 1.2s;
}
.promotion .active .motion-7 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}
.promotion .active .motion-extend-7 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 1.4s;
}
.promotion .active .motion-8 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.6s;
}
.promotion .active .motion-extend-8 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 1.6s;
}
.promotion .active .motion-9 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
}
.promotion .active .motion-extend-9 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 1.8s;
}
.promotion .active .motion-10 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s;
}
.promotion .active .motion-extend-10 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 2s;
}
.promotion .active .motion-box-1 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.1s;
}
.promotion .active .motion-box-2 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.2s;
}
.promotion .active .motion-box-3 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.3s;
}
.promotion .active .motion-box-4 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.4s;
}
.promotion .active .motion-box-5 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.5s;
}
.promotion .active .motion-box-6 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.6s;
}
.promotion .only-pc {
  position: relative;
  display: block;
}
.promotion .only-mobile {
  display: none !important;
}
.promotion [class^=sector-] {
  position: relative;
}
.promotion .wrap {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}
.promotion .wrap-full {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.promotion .fix-wing {
  z-index: 5;
  position: fixed;
  bottom: 150px;
  right: 50px;
}
.promotion .fix-wing a {
  display: block;
  margin: 4px 0;
}
.promotion .fix-bottom {
  z-index: 5;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: rgba(0, 0, 0, 0.8);
}
.promotion .fix-bottom .wrap {
  height: 100px;
}
.promotion .fix-bottom .wrap a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.promotion .sector-title {
  background-image: url("//img.eduwill.net/eduwill/img/2025/_128/lecture/250616/pc/bg_title.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}
.promotion .sector-title:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffd102;
  background: linear-gradient(to right, #ffd102 50%, #f9f9f7 50%);
}
.promotion .sector-title [class^=title-] {
  position: absolute;
  left: 50%;
  opacity: 0;
}
.promotion .sector-title .title-teacher {
  position: static;
}
.promotion .sector-title .title-1 {
  top: 140px;
  margin-left: 14px;
}
.promotion .sector-title .title-2 {
  top: 218px;
  margin-left: 72px;
}
.promotion .sector-title .title-3 {
  top: 410px;
  margin-left: 72px;
}
.promotion .sector-title .btn-action {
  position: absolute;
  top: 561px;
  left: 50%;
  transform: translateX(-50%);
}
.promotion .sector-why {
  background: #FFFAEB;
}
.promotion .sector-why .stamp {
  position: absolute;
  top: 385px;
  left: 50%;
  margin-left: -480px;
}
.promotion .sector-need {
  padding-bottom: 100px;
  background: #FFF;
}
.promotion .sector-need .motion-box {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.promotion .sector-point {
  padding-bottom: 100px;
  background: #222;
  background: linear-gradient(180deg, #222 0%, #000 100%);
}
.promotion .sector-point .motion-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.promotion .sector-hero {
  background: #FFBF00;
}
.promotion .sector-hero .video-box {
  position: absolute;
  top: 433px;
  left: 100px;
  width: 522px;
  border-radius: 10px;
  overflow: hidden;
}
.promotion .sector-hero .video-box img {
  width: 100%;
}
.promotion .sector-hero .review-slider {
  position: absolute;
  top: 750px;
  left: 50%;
  width: 1000px;
  transform: translateX(-50%);
}
.promotion .sector-hero .review-slider .slick-slide {
  width: 324px;
  margin: 0 6px;
}
.promotion .sector-hero .review-slider .slick-slide img {
  width: 100%;
}
.promotion .sector-apply {
  padding: 100px 0;
  background-image: url("//img.eduwill.net/eduwill/img/2025/_128/lecture/250616/pc/bg_apply.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}
.promotion .sector-apply:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF0C2;
  background: linear-gradient(180deg, #FFF0C2 0%, #FFF 100%);
}
.promotion .sector-apply .title-content {
  margin-bottom: 60px;
}
.promotion .sector-apply .title-content p {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.4;
  color: #1D1400;
}
.promotion .sector-apply .title-content p strong {
  z-index: 2;
  position: relative;
  font-weight: 700;
}
.promotion .sector-apply .title-content p strong:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  bottom: 0;
  display: block;
  background: rgba(255, 191, 0, 0.5);
  transition: all 0.3s;
}
.promotion .sector-apply table {
  width: 1000px;
  margin: 10px auto 20px;
}
.promotion .sector-apply table tr th {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid #FFF;
  background: #FFE493;
}
.promotion .sector-apply table tr td {
  font-synthesis: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  border-top: 1px solid #EEE;
  background: #FFF;
}
.promotion .sector-apply table tr td span {
  font-weight: 400;
}
.promotion .sector-apply table tr:last-child th {
  border-bottom: 1px solid #FFF;
}
.promotion .sector-apply table tr:last-child td {
  border-bottom: 1px solid #EEE;
}
.promotion .sector-apply .agree-box {
  width: 1000px;
  text-align: left;
  margin: 0 auto 60px;
  padding: 40px;
  border: 1px solid #DBDBDB;
  background: #fff;
  box-sizing: border-box;
}
.promotion .sector-apply .agree-box .agree-wrap {
  display: flex;
  gap: 46px;
}
.promotion .sector-apply .agree-box .agree-wrap label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.promotion .sector-apply .agree-box .agree-wrap label input {
  width: 20px;
  height: 20px;
  margin: 0;
}
.promotion .sector-apply .agree-box .agree-wrap label span {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.promotion .sector-apply .agree-box p {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 20px 0;
}
.promotion .sector-apply .agree-box p span {
  color: #F00000;
}
.promotion .sector-apply .agree-box ul li {
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}
.promotion .sector-apply .agree-box ul li strong {
  font-weight: 700;
}
.promotion .sector-apply.active .title-content p strong:before {
  width: 100%;
}/*# sourceMappingURL=web.css.map */