@charset "UTF-8";
/* 페이지 타이틀 영역 */
@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1.1);
            transform: translateX(-50%) scale(1.1);
  }
}
@keyframes zoom-out {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1.1);
            transform: translateX(-50%) scale(1.1);
  }
}
.page-title-wrap {
  position: relative;
  min-height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
}
.page-title-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  width: 100vw;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-animation: zoom-out 3s linear;
          animation: zoom-out 3s linear;
}
.page-title-wrap.community-bg::before {
  background-image: url("../img/community/bn_bg.webp");
}
.page-title-wrap.apply-bg-01::before {
  background-image: url("../img/apply/bak_apply_01.webp");
}
.page-title-wrap.apply-bg-02::before {
  background-image: url("../img/apply/bak_apply_02.webp");
}
.page-title-wrap.apply-bg-03::before {
  background-image: url("../img/apply/bak_apply_03.webp");
}
.page-title-wrap.exploration-bg::before {
  background-image: url("../img/exploration/bn_bg.webp");
}
.page-title-wrap.support-bg::before {
  background-image: url("../img/support-space/bn_bg.webp");
}
.page-title-wrap.education-bg::before {
  background-image: url("../img/education/bn_bg.webp");
}
.page-title-wrap.startup-bg::before {
  background-image: url("../img/startup/bn_bg.webp");
}
.page-title-wrap .page-title {
  position: relative;
  padding: 0 0 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  /* 상단 경로 */
  /* 페이지 타이틀 */
}
.page-title-wrap .page-title .s-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-title-wrap .page-title .s-tit .img-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;
  opacity: 0, 8;
}
.page-title-wrap .page-title .s-tit .img-area.home {
  width: 25px;
  height: 25px;
  opacity: 1;
}
.page-title-wrap .page-title .s-tit .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.page-title-wrap .page-title .s-tit .breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-title-wrap .page-title .s-tit .breadcrumb-text {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
}
.page-title-wrap .page-title .s-tit .breadcrumb-text:hover {
  opacity: 0.8;
}
.page-title-wrap .page-title .page-heading .sub {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  padding: 3px 15px;
  border-radius: 100px;
}
.page-title-wrap .page-title .page-heading .tit {
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1200px) {
  .page-title-wrap {
    min-height: 330px;
  }
  .page-title-wrap .page-title {
    padding: 0 0 30px 0;
  }
  .page-title-wrap .page-title .s-tit .breadcrumb-text {
    font-size: 1.4rem;
  }
  .page-title-wrap .page-title .page-heading .sub {
    font-size: 1.4rem;
    padding: 2px 8px;
  }
  .page-title-wrap .page-title .page-heading .tit {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .page-title-wrap {
    min-height: auto;
  }
  .page-title-wrap .page-title {
    padding: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-title-wrap .page-title .s-tit {
    gap: 6px;
    margin-bottom: 0;
  }
  .page-title-wrap .page-title .s-tit .img-area.home {
    width: 14px;
    height: 14px;
  }
  .page-title-wrap .page-title .s-tit .breadcrumb-text {
    font-size: 1.4rem;
  }
  .page-title-wrap .page-title .page-heading {
    text-align: center;
  }
  .page-title-wrap .page-title .page-heading .sub {
    display: none;
  }
  .page-title-wrap .page-title .page-heading .tit {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .page-title-wrap .page-title {
    padding: 20px 0 10px;
  }
  .page-title-wrap .page-title .s-tit {
    margin-bottom: 15px;
    gap: 5px;
  }
  .page-title-wrap .page-title .s-tit .img-area.home {
    width: 12px;
    height: 12px;
  }
  .page-title-wrap .page-title .s-tit .breadcrumb-text {
    font-size: 1.4rem;
  }
  .page-title-wrap .page-title .page-heading .sub {
    font-size: 1.4rem;
    padding: 2px 6px;
  }
  .page-title-wrap .page-title .page-heading .tit {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

.body-container {
  position: relative;
  width: 100%;
}

.sub-com-container {
  width: 100%;
  max-width: 1300px;
  min-height: calc(100vh - 468px);
  padding: 0 0 160px;
  margin: 0 auto;
}

/* 컨텐츠 래퍼 */
.contents-wrap {
  padding: 70px 0;
}
.contents-wrap .content-group {
  padding-bottom: 50px;
}

.cont-title1 {
  position: relative;
  border-bottom: 1px solid #aaa;
  margin-bottom: 20px;
  padding-left: 45px;
  padding-bottom: 10px;
}
.cont-title1:after, .cont-title1:before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border-radius: 100px;
  border: 2px solid #fff;
  top: 10px;
}
.cont-title1:after {
  left: 0;
  background: var(--theme);
}
.cont-title1:before {
  left: 14px;
  background: #192775;
}
.cont-title1 .tit {
  font-size: 2.7rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.cont-title2 {
  position: relative;
  padding-bottom: 10px;
}
.cont-title2 .tit {
  position: relative;
  font-size: 2.1rem;
  font-weight: 800;
  padding-left: 22px;
}
.cont-title2 .tit:after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 45px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 10px;
  border: 3px solid #192775;
}
.cont-title2.non-dot .tit {
  padding-left: 0;
}
.cont-title2.non-dot .tit:after {
  display: none;
}

.cont-title3 {
  position: relative;
  padding-bottom: 12px;
}
.cont-title3 .tit {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 13px;
}
.cont-title3 .tit:after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 20px;
  background: #000;
  position: absolute;
  left: 0;
  top: 12px;
}

.cont-text {
  margin-bottom: 15px;
  line-height: 1.5;
}
.cont-text.dot .txt {
  padding-left: 10px;
}
.cont-text.dot .txt:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 10px;
  background: #555;
  position: absolute;
  top: 12px;
  left: 0;
}
.cont-text.type-box {
  border: 1px solid var(--line);
  padding: 8px 20px;
  border-radius: 3px;
  background: #f3f3f3;
}
.cont-text.type-box:not(:last-child) {
  margin-bottom: 10px;
}
.cont-text .box .tit {
  font-weight: 800;
  padding-bottom: 10px;
}
.cont-text .box .txt strong {
  font-weight: 600;
}
.cont-text .box .inner-txt {
  padding-bottom: 10px;
}
.cont-text .box .inner-txt .txt {
  font-weight: 300;
}
.cont-text .txt {
  position: relative;
  font-size: 1.7rem;
  padding: 0 0 7px 0;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}
.cont-text .txt:last-child {
  padding-bottom: 0;
}
.cont-text .txt strong {
  font-weight: 800;
}
.cont-text .inner-txt {
  padding-left: 15px;
}

.cont-img-box {
  margin-bottom: 15px;
}
.cont-img-box.layout-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cont-img-box.layout-2 img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cont-img-box img {
  max-width: 100%;
  height: auto;
  width: auto;
}

@media (max-width: 1024px) {
  .contents-wrap .content-group {
    padding-bottom: 30px;
  }

  .cont-title1 {
    margin-bottom: 15px;
  }
  .cont-title1:after, .cont-title1:before {
    top: 8px;
  }
  .cont-title1 .tit {
    font-size: 2.3rem;
  }

  .cont-title2 {
    padding-bottom: 15px;
  }
  .cont-title2 .tit {
    font-size: 1.8rem;
    padding-left: 17px;
  }
  .cont-title2 .tit:after {
    width: 12px;
    height: 12px;
    top: 9px;
  }

  .cont-title3 .tit {
    font-size: 1.6rem;
    padding-left: 10px;
  }
  .cont-title3 .tit:after {
    width: 4px;
    height: 4px;
    top: 12px;
  }

  .cont-text {
    padding-left: 15px;
  }
  .cont-text .txt {
    font-size: 1.5rem;
    padding: 0 0 5px 0;
  }
  .cont-text.dot {
    padding-left: 10px;
  }
  .cont-text.dot .txt:after {
    left: 3px;
    width: 3px;
    height: 3px;
  }

  .cont-img-box.layout-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .cont-img-box.layout-2 img {
    height: auto;
  }
}
@media (max-width: 768px) {
  .contents-wrap {
    padding: 50px 0;
  }
}
@media (max-width: 580px) {
  .cont-title1 {
    padding-left: 35px;
  }
  .cont-title1:after, .cont-title1:before {
    width: 18px;
    height: 18px;
    top: 7px;
  }
  .cont-title1::before {
    left: 10px;
  }
  .cont-title1 .tit {
    font-size: 2.1rem;
  }

  .cont-title2 {
    padding-bottom: 10px;
  }
  .cont-title2 .tit {
    font-size: 1.6rem;
  }
  .cont-title2 .tit:after {
    top: 7px;
  }

  .cont-title3 {
    padding-bottom: 10px;
  }
  .cont-title3 .tit {
    font-size: 1.5rem;
  }
  .cont-title3 .tit:after {
    top: 9px;
  }

  .cont-text {
    margin-bottom: 10px;
    padding-left: 10px;
  }
  .cont-text .txt {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .cont-text.dot {
    padding-left: 6px;
  }
}/*# sourceMappingURL=sub-com.css.map */