@charset "UTF-8";
/**
	* Computes a CSS calc function that betweens a value from
	* A to B over viewport-width A to viewport-width B.
	* Requires a media query to cap the value at B.
	* vw 단위를 활용하여 미디어쿼리 분기의 중간 상태값을
	* 계산해주는 SASS 함수.
	* 간격이나 폰트사이즈에 적용하면 자연스러운
	* 반응형 사이즈 처리가 가능 함.
	* 참고사이트 http://dohoons.com/blog/1364
	*/
/**
	* Read the article: http://sassbreak.com/viewport-relative-headings-with-sass
	* px 를 vw 로 자동으로 바꿔 줌.
	* max-breakpoint 를 설정하면 미디어쿼리 브레이크 포인트가 됨.
	* 그래서 미디어쿼리 브레이크 포인트에 맞춰 px 가 vw 로 변환됨.
	* 100% 보다 더 크게 적용 하고 싶으면 return 부분을 수정하면됨.
	* 참고사이트 http://sassbreak.com/viewport-relative-headings-with-sass/
	*/
.main-visual-wrap {
  width: 100%;
  height: 590px;
  background: url(../../image/main-v-bg.jpg) center no-repeat;
  background-size: cover;
}
.main-visual-wrap .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  padding: 110px 0 10px 0;
}
.main-visual-wrap .tit {
  font-size: 56px;
  margin-bottom: 25px;
}
.main-visual-wrap .tit em {
  font-weight: 700;
}
.main-visual-wrap .desc {
  font-size: 24px;
  text-align: center;
}
.main-visual-wrap .desc em {
  font-weight: 700;
}

.visual-swiper-wrap {
  margin-left: 18%;
}
.visual-swiper-wrap .visual-swiper .swiper-wrapper {
  position: relative;
  padding-top: 76px;
}
.visual-swiper-wrap .visual-swiper .swiper-slide {
  width: 280px;
  height: 190px;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  background-color: #fff;
}
.visual-swiper-wrap .visual-swiper .swiper-slide a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
}
.visual-swiper-wrap .visual-swiper .swiper-slide a .text-box {
  font-size: 18px;
  font-weight: 500;
  margin-top: 25px;
  text-align: center;
}
.visual-swiper-wrap .visual-swiper .swiper-slide:nth-last-child(1) {
  margin-right: 20px;
}
.visual-swiper-wrap .visual-swiper .pagination-wrap {
  position: absolute;
  top: 0;
  z-index: 11;
}
.visual-swiper-wrap .visual-swiper .pagination-wrap button {
  position: absolute;
  display: inline-block;
  background: url(../../image/swiper-pagination-btn.png) no-repeat;
  background-size: contain;
  width: 46px;
  height: 46px;
}
.visual-swiper-wrap .visual-swiper .pagination-wrap .prev {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.visual-swiper-wrap .visual-swiper .pagination-wrap .next {
  left: 60px;
}

.section01 {
  width: 100%;
  padding: 100px 0;
  background-color: #2b2b2b;
}
.section01 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
}
.section01 .left-cnt .tit {
  font-size: 44px;
  color: #fff;
  margin-bottom: 60px;
}
.section01 .left-cnt .tit em {
  font-weight: 700;
}
.section01 .right-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}
.section01 .right-cnt .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 610px;
  height: 200px;
  padding: 50px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border-radius: 20px;
}
.section01 .right-cnt .card .card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.section01 .right-cnt .card .card-text .desc {
  font-size: 20px;
}
.section01 .right-cnt .card .card-text .desc em {
  font-weight: 700;
}
.section01 .right-cnt .card .label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}
.section01 .right-cnt .card .label-wrap .label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  height: 34px;
  border-radius: 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffe9f2;
  color: #f11975;
  font-weight: 500;
}
.section01 .right-cnt .image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 230px;
  gap: 10px;
}
.section01 .right-cnt .image-box img {
  -o-object-fit: contain;
     object-fit: contain;
}
.section01 .pop-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 300px;
  height: 60px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  background-color: #fff;
}
.section01 .pop-btn:hover {
  background-color: #f11975;
  color: #fff;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.section01 .pop-btn:hover .ic-file {
  background: url(../../image/ic-file-on.png) center no-repeat;
}
.section01 .pop-btn:hover .ic-arrow {
  background: url(../../image/ic-arrow-on.png) center no-repeat;
}
.section01 .ic-file {
  width: 14px;
  height: 18px;
  background: url(../../image/ic-file.png) center no-repeat;
}
.section01 .ic-arrow {
  width: 9px;
  height: 15px;
  background: url(../../image/ic-arrow.png) center no-repeat;
}

.section02 {
  width: 100%;
  padding: 100px 0;
}
.section02 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.section02 .left-cnt .tit {
  font-size: 44px;
  font-weight: 700;
}
.section02 .right-cnt .card {
  width: 610px;
  padding: 60px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #e0e0e0;
}
.section02 .right-cnt .card .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-weight: 700;
  gap: 10px;
  margin-bottom: 25px;
}
.section02 .right-cnt .card .tit .label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  height: 30px;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #2b2b2b;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}
.section02 .right-cnt .card .desc {
  font-size: 18px;
}
.section02 .pop-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 300px;
  height: 60px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #2b2b2b;
}
.section02 .pop-btn:hover {
  background-color: #f11975;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.section02 .ic-file {
  width: 14px;
  height: 18px;
  background: url(../../image/ic-file-on.png) center no-repeat;
}
.section02 .ic-arrow {
  width: 9px;
  height: 15px;
  background: url(../../image/ic-arrow-on.png) center no-repeat;
}

.event-popup {
  display: none;
  position: fixed;
  z-index: 1;
  bottom: 20px;
  left: 20px;
}
.event-popup[aria-hidden=false] {
  display: block;
}
.event-popup__banner {
  position: relative;
}
.event-popup__banner > img {
  display: block;
  width: auto;
  height: auto;
}
.event-popup__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 48px;
  background-color: #222126;
  font-family: "S-CoreDream";
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.event-popup__link:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 6px;
  height: 12px;
  margin-left: 10px;
  background: url("../../image/event-popup__link--after.png") no-repeat center;
  background-size: contain;
}
.event-popup__button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 57px;
  height: 57px;
}

.window-popup {
  width: 100%;
  height: auto;
}
.window-popup__document {
  width: 100%;
  height: auto;
  padding: 46px 82px 54px 82px;
}
@media (max-width: 649px) {
  .window-popup__document {
    padding: 32px;
  }
}
.window-popup__heading {
  font-family: "Pretendard";
  font-size: 32px;
  font-weight: 400;
  color: #2b2b2b;
  text-align: center;
  line-height: 38px;
  letter-spacing: -0.025em;
}
.window-popup__heading .-emphasis {
  display: inline-block;
  vertical-align: top;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  text-align: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media (max-width: 649px) {
  .window-popup__heading {
    font-size: 24px;
    line-height: 32px;
  }
}
.window-popup__fieldset {
  width: 100%;
  height: auto;
  margin-top: 58px;
}
@media (max-width: 649px) {
  .window-popup__fieldset {
    margin-toP: 32px;
  }
}
.window-popup__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
}
.window-popup__field + .window-popup__field {
  margin-top: 20px;
}
@media (max-width: 649px) {
  .window-popup__field + .window-popup__field {
    margin-top: 16px;
  }
}
.window-popup__input-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: top;
  width: 125px;
  height: auto;
  font-family: "Pretendard";
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
  text-align: left;
  line-height: 40px;
  letter-spacing: -0.025em;
}
.window-popup__input-label:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 4px;
  height: 4px;
  margin: -20px 0 0 2px;
  border-radius: 100%;
  background-color: #f11975;
}
@media (max-width: 649px) {
  .window-popup__input-label {
    width: 110px;
    font-size: 16px;
  }
}
.window-popup__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1px;
  height: 45px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background-color: #fff;
  font-family: "Pretendard";
  font-size: 18px !important;
  font-weight: 400;
  color: #2b2b2b;
}
@media (max-width: 649px) {
  .window-popup__input {
    height: 44px !important;
    font-size: 16px !important;
  }
}
.window-popup__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  font-family: "Pretendard";
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
  text-align: left;
  line-height: 40px;
  letter-spacing: -0.025em;
}
.window-popup__title:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 4px;
  height: 4px;
  margin: -20px 0 0 2px;
  border-radius: 100%;
  background-color: #f11975;
}
@media (max-width: 649px) {
  .window-popup__title {
    font-size: 16px;
  }
}
.window-popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 20px;
}
@media (max-width: 649px) {
  .window-popup__form {
    margin-top: 8px;
  }
}
.window-popup__checkbox {
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}
.window-popup__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Pretendard";
  font-size: 16px !important;
  font-weight: 400;
  color: #2b2b2b;
  text-align: left;
  line-height: 22px;
  letter-spacing: -0.025em;
}
.window-popup__checkbox-label:before {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  top: 0 !important;
  left: 0 !important;
  width: 20px;
  height: 20px;
  margin: unset !important;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  background-color: #fff;
}
.window-popup__checkbox:checked ~ .window-popup__checkbox-label:before {
  border-color: #2b2b2b;
  background: #2b2b2b url("../../image/window-popup__checkbox-label--before.png") no-repeat center;
  background-size: auto;
}
@media (max-width: 649px) {
  .window-popup__checkbox-label {
    font-size: 14px !important;
  }
}
.window-popup__confirm-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 360px;
  max-width: 100%;
  height: 60px;
  margin: 25px auto 0 auto;
  border-radius: 60px;
  background-color: #2b2b2b;
  font-family: "Pretendard";
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 649px) {
  .window-popup__confirm-button {
    width: 100%;
    height: 44px;
    border-radius: 44px;
    font-size: 16px;
  }
}

/* 240326 css 추가 : start */
.main-visual-wrap {
  height: calc(100vh - 90px);
  background-image: url(../../image/main-visual-bg.jpg);
}
.main-visual-wrap .inner {
  position: relative;
  height: 100%;
  padding: 0 0 80px;
}
.main-visual-wrap .tit {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 41px;
  color: #fff;
}
.main-visual-wrap .desc {
  color: #fff;
}
.main-visual-wrap .scroll-down {
  position: absolute;
  bottom: 130px;
  left: 50%;
  width: 30px;
  height: 18px;
  background: url(../../image/ic-arrow-scroll.png) no-repeat center/contain;
  margin-left: -15px;
}

.section01 {
  padding: 80px 0;
  background-color: #fff;
}
.section01 .inner {
  display: block;
}
.section01 .about-edu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section01 .about-edu .text-box .tit {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #1e1e1e;
}
.section01 .about-edu .text-box .desc {
  font-size: 20px;
  font-weight: 500;
  color: #373737;
  line-height: 1.3;
  margin-top: 32px;
}
.section01 .pop-btn {
  width: 220px;
  height: 48px;
  color: #fff;
  background-color: #000;
  margin-top: 36px;
}
.section01 .pop-btn .ic-arrow {
  width: 14px;
  height: 11px;
  background: url(../../image/ic-arrow-wht.png) center no-repeat;
}
.section01 .pop-btn:hover .ic-arrow {
  background: url(../../image/ic-arrow-wht.png) center no-repeat;
}
.section01 .contents-item-box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px 0;
}
.section01 .contents-item-box .item .text-box .tit {
  display: block;
  font-size: 32px;
  font-weight: 700;
}
.section01 .contents-item-box .item .text-box .tag-box {
  margin-top: 16px;
}
.section01 .contents-item-box .item .text-box .tag-box .tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  background-color: #d9d9d9;
  padding: 0 12px;
  border-radius: 13px;
  margin-right: 7px;
}
.section01 .contents-item-box .item .text-box .desc {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
}
.section01 .contents-item-box .item .text-box .view-btn {
  margin-top: 40px;
}
.section01 .contents-item-box .item .text-box .view-btn a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 31px;
  padding: 0 12px 0 14px;
  border: 2px solid #000;
  border-radius: 18px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.section01 .contents-item-box .item .text-box .view-btn a .ic-arrow {
  display: inline-block;
  width: 15px;
  height: 11px;
  background: url(../../image/ic-arrow2.png) no-repeat center/contain;
  margin-left: 5px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.section01 .contents-item-box .item .text-box .view-btn a:hover {
  border-color: #f11975;
  color: #f11975;
}
.section01 .contents-item-box .item .text-box .view-btn a:hover .ic-arrow {
  background-image: url(../../image/ic-arrow2-on.png);
}
.section02 {
  padding: 80px 0;
  background-color: #EBF9FF;
}
.section02 .inner {
  display: block;
  background-color: #fff;
  border-radius: 30px;
  padding: 28px 210px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
.section02 .inner .inquiry-form .tit-wrap {
  text-align: center;
}
.section02 .inner .inquiry-form .tit-wrap .desc {
  display: block;
  font-size: 24px;
  font-weight: 700;
}
.section02 .inner .inquiry-form .tit-wrap .tit {
  display: block;
  font-size: 36px;
  font-weight: 700;
  margin-top: 7px;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
  margin-top: 7px;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box.pd-style {
  padding: 10px 0;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .label {
  width: 315px;
  font-size: 20px;
  font-weight: 600;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .label em {
  font-size: 16px;
  font-weight: 500;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .label .view-paper {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 500;
  color: #9b9b9b;
  text-decoration: underline;
  margin-left: 9px;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .input {
  width: calc(100% - 315px);
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .input input[type=text] {
  width: 100%;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  padding: 0 8px;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .input input[type=radio] + label,
.section02 .inner .inquiry-form .input-box-wrap .input-box .input input[type=checkbox] + label {
  font-size: 16px;
  font-weight: 500;
  padding-left: 26px;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .input .radio {
  margin-right: 24px;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .input .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .input .checkbox + .checkbox {
  margin-top: 15px;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .input textarea {
  height: 160px;
  font-size: 16px;
  font-weight: 500;
  padding: 8px;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .input .find-btn {
  width: 75px;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
}
.section02 .inner .inquiry-form .input-box-wrap .input-box .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section02 .inner .inquiry-form .btn-wrap {
  text-align: center;
  padding: 0;
  margin-top: 7px;
}
.section02 .inner .inquiry-form .btn-wrap .submit-btn {
  width: 189px;
  height: 51px;
  border-radius: 26px;
  background-color: #2b2b2b;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.privacy-popup .window-popup__document {
  padding: 50px 20px;
}
.privacy-popup .window-popup__document .window-popup__heading {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.privacy-popup .window-popup__document .window-popup__img {
  margin-top: 12px;
}

/* 240326 css 추가 : end */
/* 240328 css 추가 : start */
.section03 {
  padding: 80px 0;
}
.section03 .inner .tit-wrap {
  text-align: center;
}
.section03 .inner .tit-wrap .tit {
  font-size: 32px;
  font-weight: 700;
}
.section03 .inner .contact-table-wrap {
  border-top: 2px solid #000;
  margin-top: 39px;
}
.section03 .inner .contact-table-wrap table tr > * {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}
.section03 .inner .contact-table-wrap table tr > *:last-child {
  border-right: 0;
}
.section03 .inner .contact-table-wrap table tr > *.txt {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

/* 240328 css 추가 : end *//*# sourceMappingURL=main.css.map */