@charset "UTF-8";
/*-------------------------------------------------------------------
    파일정의 : 컴포넌트
-------------------------------------------------------------------*/
.ico {
  display: inline-flex;
  position: relative;
  vertical-align: middle;
}
.ico.ico-file {
  width: 1.65rem;
  height: 1.8rem;
  background: url("../img/icon/ico_file.png") no-repeat center;
  background-size: contain;
}
.ico.ico-new {
  width: 2.25rem;
  height: 2.2rem;
  background: url("../img/icon/ico_new.png") no-repeat center;
  background-size: contain;
}

.btn-wrap {
  display: flex;
  gap: 4.4rem;
}
@media (max-width: 767px) {
  .btn-wrap {
    gap: 2.2rem 1rem;
    flex-wrap: wrap;
  }
}
.btn-wrap.center {
  justify-content: center;
  gap: 1rem 1.6rem;
}
.btn-wrap.right {
  justify-content: flex-end;
}
.btn-wrap.v2 {
  gap: 1rem;
}
@media (max-width: 480px) {
  .btn-wrap.v2 {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .btn-wrap.v2.no-col {
    flex-direction: row;
  }
}
.btn-wrap.v2 .btn {
  justify-content: center;
}
.btn-wrap.jc-sb {
  justify-content: space-between;
}
.btn-wrap.jc-fe {
  justify-content: flex-end;
}
.btn-wrap.column {
  flex-direction: column;
  align-items: flex-start;
}
.btn-wrap.column.center {
  align-items: center;
}
@media (max-width: 767px) {
  .btn-wrap.column .btn {
    width: 100%;
    min-height: 5rem;
  }
}

.btn {
  border: 1px solid transparent;
  text-align: center;
  display: flex;
  align-items: center;
}
.btn.size1 {
  height: 6rem;
  padding: 0 4rem;
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  min-width: 13.5rem;
}
@media (max-width: 767px) {
  .btn.size1 {
    font-size: 1.8rem;
    height: 5.2rem;
    padding: 0 3.2rem;
  }
}
.btn.size2 {
  height: 4rem;
  padding: 0 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .btn.size2 {
    font-size: 1.4rem;
    height: 3.3rem;
    padding: 0 0.8rem;
  }
}
.btn.xxl {
  height: 7.3rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 500;
  border: none;
}
@media (max-width: 767px) {
  .btn.xxl {
    height: 6rem;
    font-size: 1.8rem;
  }
}
.btn.xl {
  padding: 0 1rem;
  height: 6rem;
  width: 21.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #FFFFFF;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .btn.xl {
    font-size: 1.8rem;
    height: 4.8rem;
    flex: 1 0;
    max-width: 21.3rem;
  }
}
.btn.lg {
  padding: 0 1.5rem;
  height: 6rem;
  min-width: 17.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #FFFFFF;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .btn.lg {
    font-size: 1.8rem;
    height: 5.4rem;
    max-width: 17.2rem;
  }
}
.btn.md {
  padding: 1.5rem 4rem;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .btn.md {
    font-size: 1.6rem;
    padding: 1rem 3rem;
    height: 5.4rem;
  }
}
.btn.sm {
  padding: 0 3rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .btn.sm {
    font-size: 1.4rem;
    padding: 1rem 3rem;
    height: 5.4rem;
  }
}
.btn.xs {
  height: 4.5rem;
  padding: 0 3rem;
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 1.5;
  letter-spacing: -0.04em;
  border-radius: 8px;
}
.btn.fill-blue {
  background: var(--navy-color);
  color: #fff;
}
.btn.fill-gray {
  background: #E4E4E4;
  border: 1px solid #F0F0F0;
}
.btn.fill-red {
  background: var(--red-color) !important;
  border: 1px solid var(--red-color) !important;
  color: #ffffff !important;
}
.btn.fill-green {
  background: var(--deep-green) !important;
  border: 1px solid var(--deep-green) !important;
  color: #ffffff !important;
}
.btn.line-gray {
  border: 1px solid #BFBFBF;
  background: #fff;
  color: #878787;
}
.btn.line-gray2 {
  border: 1px solid #606060;
  background: #fff;
  color: #606060;
}
.btn.line-blue {
  border: 1px solid var(--navy-color);
  background: #fff;
  color: var(--navy-color);
}
.btn.gradient {
  background: linear-gradient(90deg, var(--blue-gradient-color), var(--green-gradient-color));
}
.btn.line-red {
  border: 1px solid var(--red-color) !important;
  color: var(--red-color) !important;
  background-color: #fff !important;
}
.btn.btn-file-down {
  font-size: 2rem;
  font-weight: 500;
  min-height: 5.6rem;
  color: #1D1D1D;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4.8rem;
}
@media (max-width: 767px) {
  .btn.btn-file-down {
    font-size: 1.6rem;
    min-height: 5.1rem;
  }
}
.btn.btn-file-down.fill-blue {
  color: #fff;
}
.btn.direct-link {
  font-size: 2rem;
  font-weight: 500;
  min-height: 5.6rem;
  padding: 0 3.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .btn.direct-link {
    font-size: 1.6rem;
    padding: 0 2.4rem;
  }
}
.btn.direct-link:after {
  content: "";
  width: 0.8rem;
  height: 1.4rem;
  display: inline-block;
  margin-left: 3rem;
  background: url(../img/icon/ico_root_arr_wh.png) no-repeat center;
  background-size: contain;
  opacity: 0.5;
}
.btn.btn-change {
  font-size: 2rem;
  color: #878787;
  font-weight: 500;
  height: 4.5rem;
  padding: 0 2.4rem 0 4.5rem;
  border: 1px solid #BFBFBF;
  border-radius: 8px;
  background: url("../img/icon/ico_change.png") no-repeat left 2.4rem center;
  background-size: 1.8rem auto;
}
.btn.print-btn {
  padding-left: 5.8rem;
  background: url("../img/icon/ico_print2.png") no-repeat left 3rem center;
  background-size: 1.8rem auto;
}

.btn-txt {
  font-size: 1.8rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #323232;
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .btn-txt {
    font-size: 1.4rem;
  }
}

.btn-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 4.6rem;
  border-radius: 40px;
  font-size: 2rem;
  font-weight: 600;
}
.btn-direct.wh {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-direct.blue {
  color: #1C5294;
  border: 1px solid #1C5294;
}

.write-btn {
  padding: 0.8rem 2rem 0.8rem 4.3rem;
  background-color: var(--navy-color);
  background-image: url("../img/icon/ico_write.png");
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1.8rem auto;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .write-btn {
    font-size: 1.4rem;
    background-size: 1.5rem auto;
  }
}

.btn-link {
  width: 2.5rem;
  height: 2.6rem;
  display: block;
}
@media (max-width: 767px) {
  .btn-link {
    width: 1.5rem;
    height: 1.6rem;
  }
}

.btn-link:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("../img/common/btn_link.png") no-repeat center;
  background-size: contain;
}

.btn-link:hover:before {
  animation: btnLinkAni 0.25s ease-in-out forwards;
}

@keyframes btnLinkAni {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0.8rem, -0.8rem);
  }
}
/* btn sns */
.btn-sns {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-block;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .btn-sns {
    width: 3rem;
    height: 3rem;
  }
}
.btn-sns.btn-insta {
  background: url("../img/icon/ico_insta_line.png") no-repeat center;
  background-size: contain;
}
.btn-sns.btn-kakao {
  background: url("../img/icon/ico_kakao_line.png") no-repeat center;
  background-size: contain;
}
.btn-sns.btn-blog {
  background: url("../img/icon/ico_blog_line.png") no-repeat center;
  background-size: contain;
}
.btn-sns.btn-facebook {
  background: url("../img/icon/ico_facebook_line.png") no-repeat center;
  background-size: contain;
}
.btn-sns.btn-youtube {
  background: url("../img/icon/ico_youtube_line.png") no-repeat center;
  background-size: contain;
}
.btn-sns.btn-tweeter {
  background: url("../img/icon/ico_tweeter_line.png") no-repeat center;
  background-size: contain;
}
.btn-sns.btn-kakao-chat {
  width: 9.3rem;
  height: 3rem;
  border-radius: inherit;
  background: url("../img/icon/ico_kakao_chat.png") no-repeat center;
  background-size: contain;
}
.btn-sns.link.btn-insta {
  background: url("../img/icon/ico_insta.png") no-repeat center;
  background-size: 2.2rem auto;
}
.btn-sns.link.btn-kakao {
  background: url("../img/icon/ico_kakao.png") no-repeat center;
  background-size: 2.3rem auto;
}
.btn-sns.link.btn-blog {
  background: url("../img/icon/ico_blog.png") no-repeat center;
  background-size: 1.7rem auto;
}
.btn-sns.link.btn-facebook {
  background: url("../img/icon/ico_facebook.png") no-repeat center;
  background-size: 1.5rem auto;
}
.btn-sns.link.btn-youtube {
  background: url("../img/icon/ico_youtube.png") no-repeat center;
  background-size: 2.2rem auto;
}
.btn-sns.link.btn-tweeter {
  background: url("../img/icon/ico_tweeter.png") no-repeat center;
  background-size: 2rem auto;
}
.btn-sns.color {
  width: 19.2rem;
  height: 6.1rem;
}
@media (max-width: 767px) {
  .btn-sns.color {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.btn-sns.color.btn-insta {
  background: url("../img/icon/ico_insta_color.png") no-repeat center;
  background-size: contain;
}
.btn-sns.color.btn-kakao {
  background: url("../img/icon/ico_kakao_color.png") no-repeat center;
  background-size: contain;
}
.btn-sns.color.btn-blog {
  background: url("../img/icon/ico_blog_color.png") no-repeat center;
  background-size: contain;
}
.btn-sns.color.btn-facebook {
  background: url("../img/icon/ico_facebook_color.png") no-repeat center;
  background-size: contain;
}
.btn-sns.color.btn-youtube {
  background: url("../img/icon/ico_youtube_color.png") no-repeat center;
  background-size: contain;
}
.btn-sns.color.btn-tweeter {
  background: url("../img/icon/ico_tweeter_color.png") no-repeat center;
  background-size: contain;
}

.btn-ic {
  padding: 0 1rem;
  box-sizing: border-box;
}
.btn-ic.btn-search {
  width: 2.2rem;
  height: 2.2rem;
  display: block;
  background: url("../img/common/btn_search_bk.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 1199px) {
  .btn-ic.btn-search {
    padding: 2rem;
    background-size: 2.6rem 2.6rem;
    box-sizing: content-box;
  }
}
@media (max-width: 767px) {
  .btn-ic.btn-search {
    background-size: 1.6rem auto;
    padding: 2rem 1.2rem;
  }
}
.btn-ic.btn-login {
  width: 2.2rem;
  height: 2.5rem;
  padding: 0;
  background: url("../img/icon/ico_login_bk.png") no-repeat center;
  background-size: contain;
  display: block;
}
@media (max-width: 767px) {
  .btn-ic.btn-login {
    background-size: auto 1.8rem;
    padding: 2rem 1.2rem;
    width: 2rem;
    height: 2rem;
    box-sizing: content-box;
  }
}
.btn-ic.btn-menu_open {
  width: 2.2rem;
  height: 2rem;
  display: block;
  background: url("../img/common/btn_menu_open.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 1199px) {
  .btn-ic.btn-menu_open {
    padding: 2rem;
    background-size: 2.6rem 2.3rem;
    box-sizing: content-box;
  }
}
@media (max-width: 767px) {
  .btn-ic.btn-menu_open {
    background-size: 1.7rem auto;
    padding: 2rem 1.2rem;
  }
}
.btn-ic.btn-menu-close {
  width: 3rem;
  height: 3rem;
  display: block;
  padding: 0;
}
.btn-ic.btn-menu-close.wh {
  background: url("../img/common/btn_menu_all_close.png") no-repeat center;
  background-size: contain;
}
.btn-ic.btn-menu-close.bk {
  background: url("../img/common/btn_menu_all_close_bk.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 1199px) {
  .btn-ic.btn-menu-close.btn-menu-close, .btn-ic.btn-menu-close.wh, .btn-ic.btn-menu-close.bk {
    padding: 1rem 1rem;
    background-size: auto 3rem;
    box-sizing: content-box;
  }
}
@media (max-width: 1023px) {
  .btn-ic.btn-menu-close.btn-menu-close, .btn-ic.btn-menu-close.wh, .btn-ic.btn-menu-close.bk {
    width: 3.7rem;
    height: 5.6rem;
    background-size: auto 1.3rem;
    background-position: center 60%;
    padding: 0;
  }
}
.btn-ic.btn-share {
  padding: 0;
  padding-left: 2rem;
  background: url("../img/icon/ico_share.png") no-repeat left center;
  background-size: contain;
}
@media (max-width: 1199px) {
  .btn-ic.btn-share {
    height: 2rem;
  }
}
@media (max-width: 767px) {
  .btn-ic.btn-share {
    height: 1.6rem;
  }
}
.btn-ic.btn-print {
  padding: 0;
  padding-left: 2rem;
  background: url("../img/icon/ico_print.png") no-repeat left center;
  background-size: contain;
}
@media (max-width: 1199px) {
  .btn-ic.btn-print {
    height: 2rem;
  }
}
@media (max-width: 767px) {
  .btn-ic.btn-print {
    height: 1.6rem;
  }
}
.btn-ic.btn-search-blue {
  background: url("../img/common/btn_search_blue.png") no-repeat center;
  padding: 2rem;
  height: 100%;
  background-size: 2rem auto;
}
.btn-ic.btn-down-gray {
  padding: 0.7rem 1.6rem 0.7rem 4rem;
  background: url("../img/common/btn_down_gray.png") no-repeat left 1.6rem center, #DEDEDE;
  background-size: 1.6rem auto;
  font-size: 1.6rem;
  display: block;
  font-weight: 600;
  color: #606060;
  border-radius: 4px;
}
.btn-ic.btn-notice-link {
  width: 4.8rem;
  height: 4.8rem;
  background: url("../img/common/btn_arrow_right_blue.png") no-repeat center;
  background-size: contain;
}
.btn-ic.btn-email {
  display: inline-block;
  width: 2.75rem;
  height: 2.15rem;
  background: url("../img/icon/ico_email02.png") no-repeat center;
  background-size: contain;
  margin: 0 auto;
}
.btn-ic.btn-email:hover {
  background: url("../img/icon/ico_email02_on.png") no-repeat center;
  background-size: contain;
}
.btn-ic.pw-confirm {
  display: block;
  background: url("../img/icon/ico_view_gray.png") no-repeat center;
  background-size: auto 1.65rem;
}
@media (max-width: 767px) {
  .btn-ic.pw-confirm {
    background-size: auto 1.4rem;
  }
}
.btn-ic.pw-confirm.active {
  background: url("../img/icon/ico_view_blue.png") no-repeat center;
  background-size: auto 1.65rem;
}
@media (max-width: 767px) {
  .btn-ic.pw-confirm.active {
    background-size: auto 1.4rem;
  }
}
.btn-ic.btn-delete {
  display: block;
  width: 1.5rem;
  height: 1.7rem;
  background: url("../img/icon/ico_delete.png") no-repeat center;
  background-size: 1.5rem auto;
}
.btn-ic.btn-img-down {
  display: flex;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 4px;
  background: url("../img/common/btn_down_wh.png") no-repeat center, rgba(0, 0, 0, 0.67);
  background-size: 1.6rem auto;
}
.btn-ic.btn-file-down {
  background: url("../img/common/btn_down_gray.png") no-repeat left center;
  background-size: 1.6rem auto;
  font-size: 1.6rem;
  display: block;
  font-weight: 600;
  color: #606060;
  width: 2rem;
  height: 2rem;
}

.btn-txt.txt-gray {
  text-decoration: underline;
  color: #8E8E8E;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}
.btn-txt.txt-gray:hover {
  color: var(--navy-color) !important;
}

.flex {
  display: flex;
}
.flex.center {
  justify-content: center;
}
.flex.between {
  justify-content: space-between;
}

.tab-wrap.v1 .tab-btn-wrap {
  display: flex;
  gap: 1rem 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-wrap.v1 .tab-btn-wrap .btn-tab {
  font-size: 1.8rem;
  font-weight: 500;
  color: #8E8E8E;
  line-height: 1.5;
  background: #F6F6F6;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3.2rem;
  border-radius: 70px;
  border: 1px solid #fff;
}
.tab-wrap.v1 .tab-btn-wrap .btn-tab.active {
  background: var(--navy-color);
  color: #fff;
  font-weight: 700;
}
.tab-wrap.v1 .tab-btn-wrap.left {
  justify-content: flex-start;
}
.tab-wrap.v1 .tab-btn-wrap .open-tab-btn {
  padding-right: 5.8rem;
  background: url("../img/common/btn_lnb_down_arr.png") no-repeat right 2.8rem center, #F6F6F6;
  background-size: 1.4rem 0.788rem;
}
.tab-wrap.v1 .tab-btn-wrap .open-tab-btn ~ .btn-tab {
  display: none;
}
.tab-wrap.v1 .tab-btn-wrap .open-tab-btn.active {
  background: url("../img/common/btn_menu_all_down_on.png") no-repeat right 2.8rem center, var(--navy-color);
  background-size: 1.4rem 0.788rem;
}
.tab-wrap.v1 .tab-btn-wrap .open-tab-btn.active ~ .btn-tab {
  display: block;
}
.tab-wrap.v1 .tab-btn-wrap .open-tab {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem 0.8rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .tab-wrap.v1 .tab-btn-wrap .btn-tab {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
  }
}
.tab-wrap.v2 .tab-btn-wrap .tit {
  color: var(--navy-color);
  font-size: 2.2rem;
  font-weight: 600;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .tab-wrap.v2 .tab-btn-wrap .tit {
    font-size: 1.8rem;
    text-align: left;
    align-items: flex-start;
  }
}
.tab-wrap.v2 .tab-btn-wrap .tit:after {
  content: "";
  width: 3.3rem;
  height: 1.9rem;
  background: url("../img/common/btn_view_nav_next.png") no-repeat right center;
  background-size: contain;
  display: block;
}
@media (max-width: 767px) {
  .tab-wrap.v2 .tab-btn-wrap .tit:after {
    width: 2.5rem;
    height: 1.4rem;
    margin-left: 1rem;
    margin-top: 0.5rem;
  }
}
.tab-wrap.v2 .tab-cont.active .tit:after {
  transform: rotate(180deg);
}
.tab-wrap.v2 .tab-cont + .tab-cont {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .tab-wrap.v2 .tab-cont + .tab-cont {
    margin-top: 4rem;
  }
}
.tab-wrap.v3 .tab-btn-wrap {
  padding: 3rem 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 767px) {
  .tab-wrap.v3 .tab-btn-wrap {
    padding: 1.5rem 0;
  }
}
.tab-wrap.v3 .tab-btn-wrap .tit {
  color: #1D1D1D;
  font-size: 2.8rem;
  font-weight: 700;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .tab-wrap.v3 .tab-btn-wrap .tit {
    font-size: 1.8rem;
    text-align: left;
    align-items: flex-start;
  }
}
.tab-wrap.v3 .tab-btn-wrap .tit:after {
  content: "";
  width: 3.3rem;
  height: 1.9rem;
  background: url("../img/common/btn_view_nav_next.png") no-repeat right center;
  background-size: contain;
  display: block;
}
@media (max-width: 767px) {
  .tab-wrap.v3 .tab-btn-wrap .tit:after {
    width: 2.5rem;
    height: 1.4rem;
    margin-left: 1rem;
    margin-top: 0.5rem;
  }
}
.tab-wrap.v3 .tab-cont.active .tit:after {
  transform: rotate(180deg);
}
.tab-wrap.v3 .tab-cont + .tab-cont {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .tab-wrap.v3 .tab-cont + .tab-cont {
    margin-top: 2.4rem;
  }
}
.tab-wrap.v5 .tab-btn-wrap .btn-tab {
  font-size: 2.4rem;
  font-weight: 500;
  color: #8E8E8E;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .tab-wrap.v5 .tab-btn-wrap .btn-tab {
    font-size: 2rem;
  }
}
.tab-wrap.v5 .tab-btn-wrap .btn-tab:before {
  content: "";
  width: 0.1rem;
  height: 1.3rem;
  background: #DEDEDE;
  margin: 0 1.6rem;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .tab-wrap.v5 .tab-btn-wrap .btn-tab:before {
    margin: 0 1rem;
  }
}
.tab-wrap.v5 .tab-btn-wrap .btn-tab:nth-of-type(1):before {
  display: none;
}
.tab-wrap.v5 .tab-btn-wrap .btn-tab.active {
  color: var(--navy-color);
  font-weight: 700;
}
.tab-wrap.v5 .scroll-x table {
  min-width: 53rem;
}
.tab-wrap.v5 .tbl-wrap.v5 table th,
.tab-wrap.v5 .tbl-wrap.v5 table td {
  word-break: break-word;
  padding: 1rem 0.5rem;
}
@media (max-width: 767px) {
  .tab-wrap.v5 .tbl-wrap.v5 table th,
  .tab-wrap.v5 .tbl-wrap.v5 table td {
    font-size: 1.4rem;
  }
}

.tab-content .tab-cont {
  display: none;
  margin-top: 0;
}
.tab-content .tab-cont:first-of-type {
  display: block;
}
.tab-content .tab-cont.active {
  display: block;
}

@media (max-width: 767px) {
  .mobile-tab-wrap .tab-cont {
    display: none !important;
  }
  .mobile-tab-wrap .tab-cont.active {
    display: block !important;
  }
}
.tag.v1 {
  padding: 0.5rem 1.3rem 0.4rem 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
}
.tag.v1.sky {
  background: var(--sky-color);
}
.tag.v1.green {
  background: var(--green-color);
}
.tag.v2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  padding: 0.5rem 1.75rem;
  display: inline-block;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .tag.v2 {
    font-size: 1.2rem;
  }
}
.tag.v2.blue {
  background: var(--navy-color);
}
.tag.v2.green {
  background: var(--green-color);
}
.tag.v2.gray {
  background: #8E8E8E;
}
.tag.v2.black {
  background: #404756;
}
.tag.v3 {
  padding: 0.2rem 1.4rem;
  border-radius: 500px;
  font-size: 1.4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .tag.v3 {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.2rem 0.8rem;
  }
}
.tag.v3.black {
  border: 1px solid #323232;
  color: #323232;
}
.tag.v4 {
  min-width: 6.6rem;
  padding: 0.45rem 0.95rem;
  font-weight: 700;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .tag.v4 {
    font-size: 1.2rem;
    padding: 0.25rem 0.55rem;
    font-weight: 500;
  }
}
.tag.v4.blue {
  background: rgba(45, 109, 178, 0.1);
  color: var(--navy-color);
}
.tag.v4.green {
  background: rgba(98, 174, 25, 0.1);
  color: var(--green-color2);
}
.tag.v4.gray {
  background: #F8F8F8;
  color: #8E8E8E;
}

/* select */
select {
  background: url("../img/common/btn_select_arrow.png") no-repeat right 15px center;
}

.select-wrap.v2 select {
  border: 1px solid transparent;
}

/* 흐르는텍스트 */
.flow-txt-wrap.v1 {
  overflow: hidden;
}
@media (max-width: 1023px) {
  .flow-txt-wrap.v1 {
    display: none;
  }
}
.flow-txt-wrap.v1 .flow-txt {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.5s;
  width: 200%;
}
.flow-txt-wrap.v1 .flow-txt .txt {
  text-align: right;
  width: 100%;
}
.flow-txt-wrap.left .txt {
  animation: textLoop1 15s linear infinite;
}
.flow-txt-wrap.rigth .txt {
  animation: textLoop2 15s linear infinite;
}

@keyframes textLoop1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes textLoop2 {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.tit-wrap.v1 {
  max-width: 160rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tit-wrap.v1 h2 {
  font-size: 3.4rem;
  color: #1D1D1D;
  font-weight: 700;
}
@media (max-width: 767px) {
  .tit-wrap.v1 h2 {
    font-size: 2.2rem;
  }
}
.tit-wrap.v2 h2 {
  text-align: center;
  font-size: 4rem;
  color: #1D1D1D;
  font-weight: 700;
}
.tit-wrap h2.wh {
  color: #fff;
}
.tit-wrap.v3 .tit {
  font-size: 4rem;
  color: #000000;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .tit-wrap.v3 .tit {
    font-size: 4.6rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .tit-wrap.v3 .tit {
    font-size: 2.4rem;
  }
}
.tit-wrap.v3 .sub-tit {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-color);
  display: none;
}
@media (max-width: 1199px) {
  .tit-wrap.v3 .sub-tit {
    display: block;
  }
}
@media (max-width: 767px) {
  .tit-wrap.v3 .sub-tit {
    font-size: 1.6rem;
  }
}
.tit-wrap.v4 .tit {
  background: url("../img/icon/ico_tit.png") no-repeat left top 0.5rem;
  background-size: 2.3rem auto;
  padding: 0 0 1.6rem 3.5rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  display: block;
}
@media (max-width: 1199px) {
  .tit-wrap.v4 .tit {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .tit-wrap.v4 .tit {
    background-size: 1.3rem auto;
    font-size: 2rem;
    padding-left: 2rem;
  }
}
.tit-wrap.v4 .tit.flex {
  display: flex;
}
.tit-wrap.v5 .tit {
  font-size: 2.2rem;
  color: var(--navy-color);
  font-weight: 600;
}
@media (max-width: 767px) {
  .tit-wrap.v5 .tit {
    font-size: 1.8rem;
  }
}
.tit-wrap.v5 .txt {
  font-size: 2rem;
  color: #323232;
  margin-top: 0.4rem;
  display: block;
}
@media (max-width: 767px) {
  .tit-wrap.v5 .txt {
    font-size: 1.6rem;
  }
}
.tit-wrap.v5 .txt .txt-inner {
  margin-left: 1rem;
  display: block;
}
.tit-wrap.v6 .tit {
  font-size: 2rem;
  color: #1D1D1D;
  font-weight: 600;
}
@media (max-width: 767px) {
  .tit-wrap.v6 .tit {
    font-size: 1.8rem;
  }
}
.tit-wrap.v7 {
  text-align: center;
  width: 100%;
}
.tit-wrap.v7 .tit {
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  color: #000000;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .tit-wrap.v7 .tit {
    font-size: 3.2rem;
  }
}
.tit-wrap.join-tit {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.tit-wrap.join-tit .tit {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1D1D1D;
  text-align: center;
}
@media (max-width: 767px) {
  .tit-wrap.join-tit .tit {
    font-size: 2.4rem;
  }
}
.tit-wrap.join-tit .txt {
  font-size: 2rem;
  color: #606060;
  font-weight: 500;
  display: block;
  margin-top: 2.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .tit-wrap.join-tit .txt {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}
.tit-wrap.join-tit .txt.txt-red {
  flex: none;
}
.tit-wrap.join-tit .required {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  margin-left: 1rem;
  margin-bottom: 0.7rem;
}

.tit-wrap.v1 + *,
.tit-wrap.v2 + * {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .tit-wrap.v1 + *,
  .tit-wrap.v2 + * {
    margin-top: 1.6rem;
  }
}

.tit-wrap.v5 + * {
  margin-top: 0.4rem;
}

.tit-wrap.v5 + .tit-wrap.v5,
.tit-wrap.v5 + * + .tit-wrap.v5 {
  margin-top: 3.2rem;
}

/* 게시판-목록 */
.list-top {
  padding: 2rem 0 1.6rem 0;
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .list-top {
    margin-top: 0;
  }
}
.list-top:has(.btn-wrap) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-top .page_all {
  font-size: 1.8rem;
  color: #1D1D1D;
}

.list-wrap + .no-data {
  border-bottom: 1px solid var(--border-color);
}
.list-wrap + .no-data .txt {
  padding: 6rem 2rem;
  font-size: 1.8rem;
  color: #8E8E8E;
  text-align: center;
  display: block;
}
.list-wrap.v1 table {
  border-top: 2px solid var(--navy-color);
  text-align: center;
  /*min-width: 100rem;*/
  /*@include MOBILE {
    min-width:90rem;
  }*/
}
.list-wrap.v1 table th,
.list-wrap.v1 table td {
  vertical-align: middle;
  color: #323232;
}
@media (max-width: 767px) {
  .list-wrap.v1 table th:nth-child(4),
  .list-wrap.v1 table td:nth-child(4) {
    display: none;
  }
}
@media (max-width: 767px) {
  .list-wrap.v1 table col:nth-child(1) {
    width: 5rem !important;
  }
  .list-wrap.v1 table col:nth-child(2) {
    width: 6.5rem !important;
  }
  .list-wrap.v1 table col:nth-child(3) {
    width: auto;
  }
  .list-wrap.v1 table col:nth-child(4) {
    display: none;
  }
  .list-wrap.v1 table col:nth-child(5) {
    width: 6rem !important;
  }
}
.list-wrap.v1 table thead {
  border-bottom: 1px solid var(--border-color);
}
.list-wrap.v1 table thead th {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.8rem 1rem;
}
@media (max-width: 767px) {
  .list-wrap.v1 table thead th {
    font-size: 1.4rem;
    padding: 1.8rem 0.3rem;
  }
}
.list-wrap.v1 table tbody tr {
  border-bottom: 1px solid var(--border-color);
}
.list-wrap.v1 table tbody tr td {
  padding: 2.8rem 0.5rem;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .list-wrap.v1 table tbody tr td {
    font-size: 1.4rem;
    vertical-align: text-top;
    word-break: break-word;
  }
}
.list-wrap.v1 table tbody tr td .tit-wrap {
  display: flex;
  gap: 0 1rem;
  align-items: center;
}
@media (max-width: 767px) {
  .list-wrap.v1 table tbody tr td .tit-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem 0;
  }
}
.list-wrap.v1 table tbody tr td .tit-wrap .ico-area {
  display: flex;
  gap: 0 0.5rem;
}
@media (max-width: 767px) {
  .list-wrap.v1 table tbody tr td .tit-wrap .ico-area {
    flex-direction: column;
  }
}
.list-wrap.v1 table tbody tr td .tit-wrap .tit {
  font-size: 2rem;
  color: #1D1D1D;
  text-align: left;
  width: auto;
}
@media (max-width: 767px) {
  .list-wrap.v1 table tbody tr td .tit-wrap .tit {
    font-size: 1.5rem;
    width: 100%;
    white-space: normal;
    overflow: visible;
  }
}
.list-wrap.v1 table tbody tr td .tit-wrap .ico {
  flex: none;
}
@media (max-width: 767px) {
  .list-wrap.v1.col3 table col:nth-child(1) {
    width: 5rem !important;
  }
  .list-wrap.v1.col3 table col:nth-child(2) {
    display: none;
  }
  .list-wrap.v1.col3 table col:nth-child(6) {
    width: 6rem !important;
  }
}
@media (max-width: 767px) {
  .list-wrap.v1.col3 table th:nth-child(2),
  .list-wrap.v1.col3 table td:nth-child(2) {
    display: none;
  }
}
@media (max-width: 767px) {
  .list-wrap.v1.col-no table {
    /*col:nth-child(5) {
      width:6rem !important;
    }*/
  }
  .list-wrap.v1.col-no table col:nth-child(2) {
    width: auto !important;
  }
  .list-wrap.v1.col-no table col:nth-child(3) {
    width: 4rem !important;
  }
  .list-wrap.v1.col-no table col:nth-child(4) {
    display: table-column;
    width: 6rem !important;
  }
}
@media (max-width: 767px) {
  .list-wrap.v1.col-no table th:nth-child(3) {
    display: table-cell;
  }
  .list-wrap.v1.col-no table th:nth-child(4) {
    display: table-cell;
  }
}
@media (max-width: 767px) {
  .list-wrap.v1.col-no table td:nth-child(3) {
    display: table-cell;
  }
  .list-wrap.v1.col-no table td:nth-child(4) {
    display: table-cell;
  }
}
.list-wrap.v2 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 1.6rem;
}
@media (max-width: 1199px) {
  .list-wrap.v2 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .list-wrap.v2 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.list-wrap.v2 .list li {
  border: 1px solid #E4E4E4;
  border-radius: 16px;
  padding: 2.4rem;
  background: url("../img/common/logo_gray.png") no-repeat right top;
  background-size: 7.7rem auto;
}
.list-wrap.v2 .list li span {
  display: block;
}
.list-wrap.v2 .list li .name {
  font-size: 2.2rem;
  font-weight: 600;
  color: #323232;
}
@media (max-width: 767px) {
  .list-wrap.v2 .list li .name {
    font-size: 1.8rem;
  }
}
.list-wrap.v2 .list li .contact {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list-wrap.v2 .list li .contact span {
  padding-left: 4.5rem;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .list-wrap.v2 .list li .contact span {
    font-size: 1.6rem;
    padding-left: 3rem;
  }
}
.list-wrap.v2 .list li .contact .phone {
  background: url("../img/icon/ico_phone.png") no-repeat left center;
  background-size: 2.2rem auto;
}
@media (max-width: 767px) {
  .list-wrap.v2 .list li .contact .phone {
    background-size: 1.8rem auto;
  }
}
.list-wrap.v2 .list li .contact .email {
  background: url("../img/icon/ico_email.png") no-repeat left center;
  background-size: 2.55rem auto;
}
@media (max-width: 767px) {
  .list-wrap.v2 .list li .contact .email {
    background-size: 1.95rem auto;
  }
}
.list-wrap.v3 {
  margin-top: 1.6rem;
}
.list-wrap.v3 .dl-wrap {
  display: flex;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .list-wrap.v3 .dl-wrap {
    flex-wrap: wrap;
  }
}
.list-wrap.v3 .dl-wrap dl {
  width: 25%;
  min-height: 45.6rem;
  border-right: 1px solid #DEDEDE;
}
@media (max-width: 1199px) {
  .list-wrap.v3 .dl-wrap dl {
    width: 50%;
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .list-wrap.v3 .dl-wrap dl {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #DEDEDE;
  }
}
.list-wrap.v3 .dl-wrap dl dt {
  background: #F8F8F8;
  color: #323232;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 1rem;
}
@media (max-width: 767px) {
  .list-wrap.v3 .dl-wrap dl dt {
    font-size: 1.6rem;
  }
}
.list-wrap.v3 .dl-wrap dl dd {
  text-align: center;
}
.list-wrap.v3 .dl-wrap dl dd img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
}
.list-wrap.v3 .dl-wrap dl dd .txt {
  padding: 0 2.5rem;
  font-size: 2rem;
  color: #000000;
  line-height: 1.5;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .list-wrap.v3 .dl-wrap dl dd .txt {
    font-size: 1.4rem;
  }
}
@media (max-width: 1199px) {
  .list-wrap.v3 .dl-wrap dl dd {
    padding-bottom: 3.2rem;
  }
}
.list-wrap.v3 .dl-wrap dl:last-of-type {
  border-right: none;
}
.list-wrap.v4 {
  margin-top: 4rem;
}
.list-wrap.v4 .list li .btn-radio {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
  padding: 2.4rem;
  border-radius: 16px;
  background-color: #F8F8F8;
  border: 1px solid #F8F8F8;
  width: 100%;
}
.list-wrap.v4 .list li .btn-radio .cont dl {
  margin-top: 1.6rem;
  display: flex;
  gap: 0 4.8rem;
}
@media (max-width: 767px) {
  .list-wrap.v4 .list li .btn-radio .cont dl {
    margin-top: 0.5rem;
    gap: 0 2.4rem;
  }
}
.list-wrap.v4 .list li .btn-radio .cont dl:first-of-type {
  margin-top: 0;
}
.list-wrap.v4 .list li .btn-radio .cont dl dt {
  font-size: 1.8rem;
  font-weight: 700;
  width: 12rem;
  flex: none;
  text-align: right;
}
@media (max-width: 767px) {
  .list-wrap.v4 .list li .btn-radio .cont dl dt {
    font-size: 1.4rem;
    width: 8.3rem;
  }
}
.list-wrap.v4 .list li .btn-radio .cont dl dd {
  font-size: 1.8rem;
  color: #323232;
  text-align: left;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .list-wrap.v4 .list li .btn-radio .cont dl dd {
    font-size: 1.4rem;
  }
}
.list-wrap.v4 .list li .btn-radio + button {
  margin-top: 0.8rem;
}
.list-wrap.v4 .list li .btn-radio:has(input[type=radio]:checked) {
  border: 1px solid var(--navy-color);
  background-color: #fff;
}
.list-wrap.v4 .list li .btn-radio:has(input[type=radio]:checked) .cont dl dt {
  color: var(--navy-color);
}

.paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 3rem;
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .paging {
    gap: 0 2rem;
  }
}
@media (max-width: 480px) {
  .paging {
    gap: 0 1rem;
  }
}
.paging button {
  width: 1.4rem;
  height: 1.4rem;
  flex: none;
}
.paging button.first {
  background: url("../img/common/btn_paging_first.png") no-repeat center;
  background-size: contain;
}
.paging button.prev {
  background: url("../img/common/btn_paging_prev.png") no-repeat center;
  background-size: contain;
}
.paging button.next {
  background: url("../img/common/btn_paging_next.png") no-repeat center;
  background-size: contain;
}
.paging button.last {
  background: url("../img/common/btn_paging_last.png") no-repeat center;
  background-size: contain;
}
.paging ul {
  display: flex;
  gap: 0 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.paging ul li a {
  font-size: 1.8rem;
  color: #9E9E9E;
  width: 3rem;
  height: 3rem;
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .paging ul li a {
    font-size: 1.6rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.paging ul li.active a {
  border: 1px solid var(--navy-color);
  color: var(--navy-color);
  border-radius: 50%;
}

/* 게시판-상세 */
.view-wrap.v1 {
  margin-top: 0;
}
.view-wrap.v1 .view-head .tit-wrap {
  padding: 2.4rem 2rem;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-head .tit-wrap {
    padding: 0 0 2.4rem 0;
  }
}
.view-wrap.v1 .view-head .tit-wrap .tit {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-head .tit-wrap .tit {
    font-size: 1.8rem;
  }
}
.view-wrap.v1 .view-head .file-area {
  background: #F6F6F6;
  border-bottom: 1px solid #DEDEDE;
  padding: 1.6rem 2.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-head .file-area {
    padding: 1.4rem 1.6rem;
  }
}
.view-wrap.v1 .view-head .file-area .tit {
  padding-right: 4.1rem;
  padding-left: 2.5rem;
  background: url("../img/icon/ico_file_bk.png") no-repeat left center;
  background-size: 1.8rem auto;
  flex: none;
  font-weight: 600;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-head .file-area .tit {
    font-size: 1.64rem;
    padding-right: 2rem;
    padding-left: 2rem;
    background-size: 1.4rem auto;
  }
}
.view-wrap.v1 .view-head .file-area .file-list {
  flex: 1 0;
}
.view-wrap.v1 .view-head .file-area .file-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
}
.view-wrap.v1 .view-head .file-area .file-list li .type {
  font-size: 1.2rem;
  text-align: center;
  padding: 0.2rem 0.3rem;
  max-width: 5rem;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
}
.view-wrap.v1 .view-head .file-area .file-list li .type.hwpx {
  border: 1px solid #1C5294;
  background: #1C5294;
  color: #fff;
}
.view-wrap.v1 .view-head .file-area .file-list li .type.pdf {
  border: 1px solid #BD3A65;
  color: #BD3A65;
}
.view-wrap.v1 .view-head .file-area .file-list li .file-tit {
  margin-left: 0.8rem;
  font-size: 1.6rem;
  color: #6E6E6E;
  cursor: pointer;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-head .file-area .file-list li .file-tit {
    font-size: 1.4rem;
  }
}
.view-wrap.v1 .view-head .file-area .file-list li .file-tit:hover {
  color: #1D1D1D;
}
.view-wrap.v1 .view-head .file-area .no-data .txt {
  font-size: 1.8rem;
  color: #8E8E8E;
  text-align: center;
  display: block;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-head .file-area .no-data .txt {
    font-size: 1.4rem;
  }
}
.view-wrap.v1 .view-body {
  padding: 4.8rem 4rem;
  border-bottom: 1px solid #1D1D1D;
}
@media (max-width: 1199px) {
  .view-wrap.v1 .view-body {
    padding: 2.4rem 1.6rem;
  }
}
.view-wrap.v1 .view-body .img-wrap + .txt {
  margin-top: 3.2rem;
}
.view-wrap.v1 .view-body .txt-list {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 2rem;
  color: #323232;
}
.view-wrap.v1 .view-body .txt-list li {
  display: flex;
  gap: 1.6rem 1rem;
}
.view-wrap.v1 .view-body .txt-list li .tit {
  width: 10rem;
  font-size: 2rem;
  flex: none;
  display: inline-block;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-body .txt-list li .tit {
    font-size: 1.6rem;
    width: 9rem;
  }
}
.view-wrap.v1 .view-body .txt-list li .txt {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-body .txt-list li .txt {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-body .txt-list {
    font-size: 1.6rem;
  }
}
.view-wrap.v1 .view-body .txt-area {
  font-size: 2rem;
  color: #323232;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-body .txt-area {
    font-size: 1.4rem;
  }
}
.view-wrap.v1 .view-body textarea.txt-area {
  resize: none;
  background: #fff;
  outline: none;
  padding: 0;
}
.view-wrap.v1 .view-body textarea.txt-area:focus {
  outline: none;
  border: none;
}
.view-wrap.v1 .view-body .iframe {
  position: relative;
  height: 0;
  padding-top: 38.5%;
  max-width: 68.3%;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-body .iframe {
    max-width: 100%;
    padding-top: 56.5%;
  }
}
.view-wrap.v1 .view-body .iframe iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.view-wrap.v1 .view-body .iframe + .txt {
  margin-top: 3.2rem;
}
.view-wrap.v1 .view-body.answer {
  background-color: #F8F8F8;
  padding: 4rem;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-body.answer {
    padding: 2.4rem 1.6rem;
  }
}
.view-wrap.v1 .view-body.answer .answer-tit {
  border-radius: 24px;
  background-color: #fff;
}
.view-wrap.v1 .view-body.answer .answer-tit .tit {
  font-size: 2.4rem;
  color: #323232;
  text-align: center;
  font-weight: 700;
  display: block;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-body.answer .answer-tit .tit {
    font-size: 1.8rem;
    padding: 0.5rem 0;
  }
}
.view-wrap.v1 .view-body.answer .answer-tit + * {
  margin-top: 2.4rem;
}
.view-wrap.v1 .view-body.answer textarea.txt-area {
  resize: none;
  outline: none;
  padding: 0;
}
.view-wrap.v1 .view-body.answer textarea.txt-area:focus {
  outline: none;
  border: none;
}
.view-wrap.v1 .view-nav .nav-area {
  padding: 1.75rem 4rem;
  border-bottom: 1px solid #DEDEDE;
}
@media (max-width: 1199px) {
  .view-wrap.v1 .view-nav .nav-area {
    padding: 1.75rem 2rem;
  }
}
.view-wrap.v1 .view-nav .nav-area a {
  display: flex;
}
.view-wrap.v1 .view-nav .nav-area a .txt {
  padding-left: 3rem;
  font-size: 1.8rem;
  color: #8E8E8E;
  font-weight: 500;
  flex: none;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-nav .nav-area a .txt {
    font-size: 1.4rem;
  }
}
.view-wrap.v1 .view-nav .nav-area a .tit {
  font-size: 2rem;
  color: #323232;
  margin-left: 6rem;
}
@media (max-width: 767px) {
  .view-wrap.v1 .view-nav .nav-area a .tit {
    font-size: 1.6rem;
    margin-left: 4rem;
  }
}
.view-wrap.v1 .view-nav .nav-area.prev .txt {
  background: url("../img/common/btn_view_nav_prev.png") no-repeat left center;
  background-size: auto 0.8rem;
}
.view-wrap.v1 .view-nav .nav-area.next .txt {
  background: url("../img/common/btn_view_nav_next.png") no-repeat left center;
  background-size: auto 0.8rem;
}

.info-area {
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding: 1.25rem 1rem;
}
.info-area ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  gap: 1rem 0;
}
@media (max-width: 1199px) {
  .info-area ul {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .info-area ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
.info-area ul li {
  flex: none;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 25%;
}
@media (max-width: 767px) {
  .info-area ul li {
    width: 100%;
    justify-content: flex-start;
    max-width: 100%;
  }
}
.info-area ul li .tit {
  padding-left: 3rem;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  flex: none;
}
@media (max-width: 767px) {
  .info-area ul li .tit {
    min-width: 11rem;
    font-size: 1.4rem;
  }
}
.info-area ul li .tit:after {
  content: "";
  width: 0.1rem;
  height: 1.3rem;
  display: inline-block;
  background: #F0F0F0;
  margin: 0 1.6rem;
}
@media (max-width: 767px) {
  .info-area ul li .tit:after {
    display: none;
  }
}
.info-area ul li .tit.ico_team {
  background: url("../img/icon/ico_team.png") no-repeat left center;
  background-size: auto 1.6rem;
}
.info-area ul li .tit.ico_manager {
  background: url("../img/icon/ico_login_bk.png") no-repeat left center;
  background-size: auto 1.8rem;
}
.info-area ul li .tit.ico_view {
  background: url("../img/icon/ico_view.png") no-repeat left center;
  background-size: auto 1.5rem;
}
.info-area ul li .tit.ico_date {
  background: url("../img/icon/ico_date.png") no-repeat left center;
  background-size: auto 1.8rem;
}
.info-area ul li .txt {
  font-size: 1.8rem;
  color: #323232;
}
@media (max-width: 767px) {
  .info-area ul li .txt {
    font-size: 1.4rem;
  }
}

/* 첨부파일 리스트 */
.file-area {
  background: #F6F6F6;
  padding: 1.6rem 2.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .file-area {
    padding: 1.4rem 1.6rem;
  }
}
.file-area .tit {
  padding-right: 4.1rem;
  padding-left: 2.5rem;
  background: url("../img/icon/ico_file_bk.png") no-repeat left center;
  background-size: 1.8rem auto;
  flex: none;
  font-weight: 600;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .file-area .tit {
    font-size: 1.64rem;
    padding-right: 2rem;
    padding-left: 2rem;
    background-size: 1.4rem auto;
  }
}
.file-area .file-list {
  flex: 1 0;
}
.file-area .file-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
}
.file-area .file-list li .type {
  font-size: 1.2rem;
  text-align: center;
  padding: 0.2rem 0.3rem;
  max-width: 5rem;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
}
.file-area .file-list li .type.hwpx {
  border: 1px solid #1C5294;
  background: #1C5294;
  color: #fff;
}
.file-area .file-list li .type.pdf {
  border: 1px solid #BD3A65;
  color: #BD3A65;
}
.file-area .file-list li .file-tit {
  margin-left: 0.8rem;
  font-size: 1.6rem;
  color: #6E6E6E;
  cursor: pointer;
}
@media (max-width: 767px) {
  .file-area .file-list li .file-tit {
    font-size: 1.4rem;
  }
}
.file-area .file-list li .file-tit:hover {
  color: #1D1D1D;
}
.file-area .no-data .txt {
  font-size: 1.8rem;
  color: #8E8E8E;
  text-align: center;
  display: block;
}
@media (max-width: 767px) {
  .file-area .no-data .txt {
    font-size: 1.4rem;
  }
}

/* 이미지리스트-목록 */
.img-list + .no-data .txt {
  padding: 6rem 2rem;
  font-size: 1.8rem;
  color: #8E8E8E;
  text-align: center;
  display: block;
}
.img-list.v1 {
  border-top: 1px solid var(--navy-color);
  padding-top: 3.2rem;
}
.img-list.v1 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 5rem;
}
.img-list.v1 .list li a .img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding-top: 56.5%;
  width: 100%;
}
.img-list.v1 .list li a .img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0D4C8F, #09863A);
  opacity: 0;
}
.img-list.v1 .list li a .img:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url("../img/icon/ico_play_wh.png") no-repeat center;
  opacity: 0;
}
.img-list.v1 .list li a .img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.img-list.v1 .list li a .cont {
  margin-top: 1rem;
}
.img-list.v1 .list li a .cont .tit {
  font-size: 2rem;
  color: #1D1D1D;
  line-height: 1.4;
}
.img-list.v1 .list li a .cont .date {
  display: block;
  font-size: 1.6rem;
  color: #AFAFAF;
  margin-top: 1rem;
}
.img-list.v1 .list li a .num {
  padding: 0.9rem 2.4rem;
  background: rgba(0, 0, 0, 0.67);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: -0.02em;
}
@media (max-width: 1199px) {
  .img-list.v1 .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .img-list.v1 .list li a .cont .tit {
    font-size: 1.6rem;
  }
  .img-list.v1 .list li a .cont .date {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .img-list.v1 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.img-list.v2 {
  border-top: 1px solid var(--navy-color);
  padding-top: 3.2rem;
}
.img-list.v2 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 5rem;
}
.img-list.v2 .list li a .img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.img-list.v2 .list li a .img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0D4C8F, #09863A);
  opacity: 0;
}
.img-list.v2 .list li a .img:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url("../img/icon/ico_play_wh.png") no-repeat center;
  opacity: 0;
}
.img-list.v2 .list li a .img img {
  max-width: 100%;
}
.img-list.v2 .list li a .cont {
  margin-top: 1rem;
}
.img-list.v2 .list li a .cont .tit {
  font-size: 2rem;
  color: #1D1D1D;
  line-height: 1.4;
}
.img-list.v2 .list li a .cont .date {
  display: block;
  font-size: 1.6rem;
  color: #AFAFAF;
  margin-top: 1rem;
}
.img-list.v2 .list li:hover .img:before {
  opacity: 0.75;
  transition: opacity 0.25s;
}
.img-list.v2 .list li:hover .img:after {
  opacity: 1;
  transition: opacity 0.25s;
}
@media (max-width: 1199px) {
  .img-list.v2 .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .img-list.v2 .list li a .cont .tit {
    font-size: 1.6rem;
  }
  .img-list.v2 .list li a .cont .date {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .img-list.v2 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.img-list.v3 {
  border-top: 1px solid var(--navy-color);
  padding-top: 3.2rem;
}
@media (max-width: 767px) {
  .img-list.v3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.img-list.v3 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 5rem;
}
@media (max-width: 1023px) {
  .img-list.v3 .list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.6rem;
  }
}
@media (max-width: 767px) {
  .img-list.v3 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6rem;
  }
}
.img-list.v3 .list li a .img {
  overflow: hidden;
  position: relative;
  padding-top: 144%;
  width: 100%;
  border: 1px solid #DEDEDE;
}
.img-list.v3 .list li a .img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0D4C8F, #09863A);
  opacity: 0;
}
.img-list.v3 .list li a .img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.img-list.v3 .list li a .cont {
  margin-top: 1rem;
}
.img-list.v3 .list li a .cont .tit {
  font-size: 2rem;
  color: #1D1D1D;
  line-height: 1.4;
}
.img-list.v3 .list li a .cont .date {
  display: block;
  font-size: 1.6rem;
  color: #AFAFAF;
  margin-top: 1rem;
}
.img-list.v3 .list li a .num {
  padding: 0.9rem 2.4rem;
  background: rgba(0, 0, 0, 0.67);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: -0.02em;
}
@media (max-width: 1199px) {
  .img-list.v3 .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .img-list.v3 .list li a .cont .tit {
    font-size: 1.6rem;
  }
  .img-list.v3 .list li a .cont .date {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .img-list.v3 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* 이미지리스트-상세 */
/* 테이블-table */
table {
  table-layout: fixed;
}

.tbl-wrap + .no-data {
  border-bottom: 1px solid var(--border-color);
}
.tbl-wrap + .no-data .txt {
  padding: 6rem 2rem;
  font-size: 1.8rem;
  color: #8E8E8E;
  text-align: center;
  display: block;
}
.tbl-wrap.v1 table {
  border-top: 1px solid #000000;
}
.tbl-wrap.v1 table tr {
  border-bottom: 1px solid #DEDEDE;
  vertical-align: middle;
  min-height: 8rem;
}
.tbl-wrap.v1 table tr th,
.tbl-wrap.v1 table tr td {
  padding: 2.4rem 1rem;
}
.tbl-wrap.v1 table tr td {
  color: #323232;
  font-size: 2rem;
}
@media (max-width: 1199px) {
  .tbl-wrap.v1 table tr td {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v2 .tbl-tit {
  display: flex;
  justify-content: space-between;
  padding: 1.6rem 0;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .tbl-wrap.v2 .tbl-tit {
    flex-direction: column;
  }
}
.tbl-wrap.v2 .tbl-tit .tit {
  font-size: 1.8rem;
  color: #323232;
  font-weight: 600;
}
@media (max-width: 767px) {
  .tbl-wrap.v2 .tbl-tit .tit {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v2 .tbl-tit .txt {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  color: var(--navy-color);
}
.tbl-wrap.v2 .tbl-tit .txt:before {
  content: "•";
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .tbl-wrap.v2 .tbl-tit .txt {
    font-size: 1.6rem;
    margin-left: auto;
  }
}
.tbl-wrap.v2 table {
  border-top: 2px solid var(--navy-color);
}
.tbl-wrap.v2 table td,
.tbl-wrap.v2 table th {
  border-right: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.35rem 1rem;
  text-align: center;
  vertical-align: middle;
}
.tbl-wrap.v2 table td:first-child,
.tbl-wrap.v2 table th:first-child {
  border-left: 0;
}
.tbl-wrap.v2 table td:last-child,
.tbl-wrap.v2 table th:last-child {
  border-right: 0;
}
.tbl-wrap.v2 table thead {
  background: #F8F8F8;
}
.tbl-wrap.v2 table thead th {
  font-size: 2rem;
  font-weight: 700;
  color: #323232;
}
@media (max-width: 767px) {
  .tbl-wrap.v2 table thead th {
    font-size: 1.4rem;
  }
}
.tbl-wrap.v2 table tbody td {
  font-size: 2rem;
  color: #323232;
}
@media (max-width: 767px) {
  .tbl-wrap.v2 table tbody td {
    font-size: 1.4rem;
  }
}
.tbl-wrap.v2 table tbody td dl {
  text-align: left;
}
.tbl-wrap.v2 table tbody td dl dt {
  font-weight: 600;
}
.tbl-wrap.v2 table tbody td dl dt .txt-gray {
  color: #909090;
  font-weight: 400;
}
.tbl-wrap.v2 table tbody td dl + dl {
  margin-top: 2.5rem;
}
.tbl-wrap.v3 .tbl-tit {
  display: flex;
  justify-content: space-between;
  padding: 1.6rem 0;
  margin-top: 1.6rem;
}
.tbl-wrap.v3 .tbl-tit .tit {
  font-size: 2rem;
  color: #323232;
  font-weight: 600;
}
@media (max-width: 767px) {
  .tbl-wrap.v3 .tbl-tit .tit {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v3 table {
  border-top: 2px solid var(--navy-color);
}
.tbl-wrap.v3 table td,
.tbl-wrap.v3 table th {
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  vertical-align: middle;
}
.tbl-wrap.v3 table thead {
  background: #F8F8F8;
}
.tbl-wrap.v3 table thead th {
  padding: 2.4rem 1rem;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .tbl-wrap.v3 table thead th {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v3 table tbody td {
  padding: 2.6rem 1rem;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .tbl-wrap.v3 table tbody td {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v3 .tb-blue {
  padding: 3.2rem;
}
@media (max-width: 767px) {
  .tbl-wrap.v3 .tb-blue {
    padding: 1.6rem;
  }
}
.tbl-wrap.v3 .tb-blue ul {
  margin-left: 2.2rem;
}
.tbl-wrap.v3 .tb-blue ul li {
  list-style: disc;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #0A3563;
}
@media (max-width: 767px) {
  .tbl-wrap.v3 .tb-blue ul li {
    font-size: 1.8rem;
  }
}
.tbl-wrap.v3 .tb-blue + * {
  margin-top: 1.2rem;
}
.tbl-wrap.v4 table {
  border-top: 2px solid var(--navy-color);
}
.tbl-wrap.v4 table tr {
  border-bottom: 1px solid var(--border-color);
}
.tbl-wrap.v4 table td,
.tbl-wrap.v4 table th {
  text-align: center;
  vertical-align: middle;
  padding: 1.6rem 1rem;
}
.tbl-wrap.v4 table thead th {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .tbl-wrap.v4 table thead th {
    font-size: 1.6rem;
  }
  .tbl-wrap.v4 table thead th:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 1;
  }
}
.tbl-wrap.v4 table tbody td {
  padding: 1.6rem 1rem;
  font-size: 2rem;
  color: #323232;
}
@media (max-width: 767px) {
  .tbl-wrap.v4 table tbody td {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v4 table .tb-gray {
  background: #F8F8F8;
}
.tbl-wrap.v4 table .tb-gray th {
  font-weight: 400;
  font-size: 2rem;
  color: #323223;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .tbl-wrap.v4 table .tb-gray th {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v5 table {
  border-top: 2px solid var(--navy-color);
}
.tbl-wrap.v5 table td,
.tbl-wrap.v5 table th {
  border-right: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1rem;
  text-align: center;
  vertical-align: middle;
}
.tbl-wrap.v5 table td:first-child,
.tbl-wrap.v5 table th:first-child {
  border-left: 0;
}
.tbl-wrap.v5 table td:last-child,
.tbl-wrap.v5 table th:last-child {
  border-right: 0;
}
.tbl-wrap.v5 table thead {
  background: #F8F8F8;
}
.tbl-wrap.v5 table thead th {
  font-size: 2rem;
  font-weight: 700;
  color: #323232;
}
@media (max-width: 767px) {
  .tbl-wrap.v5 table thead th {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v5 table tbody td {
  font-size: 2rem;
  color: #323232;
}
@media (max-width: 767px) {
  .tbl-wrap.v5 table tbody td {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v5 table tbody td dl {
  text-align: left;
}
.tbl-wrap.v5 table tbody td dl dt {
  font-weight: 600;
}
.tbl-wrap.v5 table tbody td dl dt .txt-gray {
  color: #909090;
  font-weight: 400;
}
.tbl-wrap.v5 table tbody td dl + dl {
  margin-top: 2.5rem;
}
.tbl-wrap.v6 table {
  border-top: 1px solid var(--border-color);
}
.tbl-wrap.v6 table td,
.tbl-wrap.v6 table th {
  border-right: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  vertical-align: middle;
  word-break: break-all;
}
.tbl-wrap.v6 table td:first-child,
.tbl-wrap.v6 table th:first-child {
  border-left: 0;
}
.tbl-wrap.v6 table td:last-child,
.tbl-wrap.v6 table th:last-child {
  border-right: 0;
}
.tbl-wrap.v6 table thead {
  background: #F8F8F8;
}
.tbl-wrap.v6 table thead th {
  font-size: 1.8rem;
  font-weight: 700;
  color: #323232;
  border-bottom: 1px solid #000000;
  padding: 1.6rem 1rem;
}
@media (max-width: 767px) {
  .tbl-wrap.v6 table thead th {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v6 table tbody td {
  padding: 0.9rem 1rem;
  font-size: 1.8rem;
  color: #323232;
}
@media (max-width: 767px) {
  .tbl-wrap.v6 table tbody td {
    font-size: 1.6rem;
  }
}
.tbl-wrap.v6 table tbody td dl {
  text-align: left;
}
.tbl-wrap.v6 table tbody td dl dt {
  font-weight: 600;
}
.tbl-wrap.v6 table tbody td dl dt .txt-gray {
  color: #909090;
  font-weight: 400;
}
.tbl-wrap.v6 table tbody td dl + dl {
  margin-top: 2.5rem;
}
.tbl-wrap .tb-blue {
  background: #F6F9FF;
  color: var(--navy-color);
}

.tbl-wrap.v4 + .tbl-wrap.v4 {
  margin-top: 6rem;
}

/* 스크롤 커스텀 */
.scroll-x.mCustomScrollbar .mCSB_horizontal .mCSB_container {
  margin-bottom: 0;
}

.scroll-x .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  height: 0.8rem;
}

.scroll-x .mCSB_scrollTools_horizontal .mCSB_draggerContainer {
  width: calc(100% - 1rem);
  left: 0.5rem;
}

.scroll-x .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.scroll-x .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.scroll-x .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.scroll-x .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.scroll-x .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-color: #ddd;
  height: 0.5rem;
  border-radius: 1rem;
  margin: 0 0;
  opacity: 1;
}

.scroll-x .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 0;
  margin: 0;
}

.scroll-y .mCSB_inside > .mCSB_container {
  margin-right: 0;
}

.scroll-y .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #999;
  border-radius: 1rem;
}

.scroll-y .mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.scroll-y .mCSB_inside > .mCSB_container {
  margin-right: 0;
}

/* form 요소 */
.form-bar {
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #D4D4D4;
  margin: 6.2rem auto;
  max-width: 68rem;
}

.search-wrap {
  padding: 0.3rem 2rem;
  border: 2px solid var(--navy-color);
  border-radius: 60px;
  overflow: hidden;
  margin: 3.4rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 73.7rem;
}
@media (max-width: 767px) {
  .search-wrap {
    width: 100%;
    margin: 1.6rem auto 0;
    padding: 0.2rem 2rem;
  }
}
.search-wrap input[type=text] {
  width: calc(100% - 4rem);
  font-size: 1.6rem;
  padding: 1rem;
  border: 1px solid transparent;
}

.notice-area {
  background: #F6F9FF;
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 0.8rem 6rem 0.8rem 3rem;
}
@media (max-width: 767px) {
  .notice-area {
    padding: 3.2rem;
  }
}
@media (max-width: 767px) {
  .notice-area .icon-area {
    display: none;
  }
}
@media (max-width: 767px) {
  .notice-area .icon-area img {
    width: 10rem;
    height: auto;
  }
}
.notice-area .txt {
  font-size: 2rem;
  font-weight: 400;
  color: #1D1D1D;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .notice-area .txt {
    font-size: 1.6rem;
  }
}
.notice-area .txt span {
  font-weight: 500;
}
.notice-area .btn-notice-link {
  margin-left: auto;
}

.notice-area + section {
  margin-top: 3.2rem;
}

/* 공통 레이어 팝업 */
/* dim 처리 */
.dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  pointer-events: none;
}
.dim.dim-header {
  z-index: 9998; /* 헤더보다 낮게 */
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 0 172px 0 rgba(0, 0, 0, 0.35);
  max-height: 80%;
  max-width: calc(100% - 4rem);
  /* 개별 팝업 스타일 */
  /* 포토갤러리 */
}
.popup.on {
  display: block;
}
.popup .popup-wrap {
  padding: 6rem 3rem 6rem 4rem;
}
@media (max-width: 767px) {
  .popup .popup-wrap {
    padding: 3rem 1.6rem 6rem 1.6rem;
  }
}
.popup .popup-head {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.popup .popup-head .pop-tit.v1 .tit {
  font-size: 2.4rem;
  font-weight: 700;
  color: #323232;
}
@media (max-width: 767px) {
  .popup .popup-head .pop-tit.v1 .tit {
    font-size: 2rem;
  }
}
.popup .popup-head .pop-tit.v2 {
  width: 100%;
}
.popup .popup-head .pop-tit.v2 .tit {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .popup .popup-head .pop-tit.v2 .tit {
    font-size: 2.8rem;
  }
}
.popup .popup-head .pop-tit.v2 .txt {
  margin-left: auto;
  text-align: right;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .popup .popup-head .pop-tit.v2 .txt {
    font-size: 1.4rem;
  }
}
.popup .popup-head .popup-close {
  background: url("../img/common/btn_close_bk.png") no-repeat center;
  background-size: contain;
  width: 3.2rem;
  height: 3.2rem;
}
@media (max-width: 767px) {
  .popup .popup-head .popup-close {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.popup .popup-head + .popup-body {
  margin-top: 1.6rem;
}
.popup .popup-body {
  max-height: 50vh;
}
.popup .popup-body .scroll-wrap {
  padding-right: 1.7rem;
  padding-bottom: 2rem;
}
.popup .popup-foot {
  margin-top: 3.2rem;
}
.popup.pop_photo {
  width: 118rem;
  max-height: none;
}
.popup.pop_photo .popup-wrap {
  padding: 2.4rem 4.8rem 4.8rem 4.8rem;
}
@media (max-width: 767px) {
  .popup.pop_photo .popup-wrap {
    padding: 1.6rem 2.8rem 6.5rem 2.8rem;
  }
}
.popup.pop_photo .popup-wrap .popup-head {
  padding: 2.4rem 0;
}
.popup.pop_photo .popup-wrap .popup-body {
  margin-top: 0;
  max-height: 55vh;
}
.popup.pop_photo .popup-wrap .popup-body .scroll-wrap {
  padding: 0;
  margin-right: 2rem;
}
.popup.pop_photo .photoSd2 .swiper-slide,
.popup.pop_photo .photoSd .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
}
.popup.pop_photo .photoSd2 .swiper-slide img,
.popup.pop_photo .photoSd .swiper-slide img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.popup.pop_photo .photoSd2 {
  position: relative;
  padding-bottom: 4.2rem;
  /* 기본 Bullet 스타일 */
  /* 활성화된 Bullet 스타일 */
}
.popup.pop_photo .photoSd2 .swiper-slide {
  background-size: cover;
  padding-top: 25%;
  border-radius: 8px;
  opacity: 1;
}
@media (max-width: 767px) {
  .popup.pop_photo .photoSd2 .swiper-slide {
    padding-top: 53%;
  }
}
.popup.pop_photo .photoSd2 .swiper-slide .btn-img-down {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 5;
}
.popup.pop_photo .photoSd2 .swiper-button-next,
.popup.pop_photo .photoSd2 .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.8rem;
  height: 4.8rem;
}
@media (max-width: 767px) {
  .popup.pop_photo .photoSd2 .swiper-button-next,
  .popup.pop_photo .photoSd2 .swiper-button-prev {
    width: 4rem;
    height: 4rem;
  }
}
.popup.pop_photo .photoSd2 .swiper-button-next {
  background: url("../img/common/btn_next_gray.png") no-repeat center;
  background-size: contain;
  right: 0;
}
.popup.pop_photo .photoSd2 .swiper-button-prev {
  background: url("../img/common/btn_prev_gray.png") no-repeat center;
  background-size: contain;
  left: 0;
}
.popup.pop_photo .photoSd2 .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: #e8e8e8;
  opacity: 1;
}
.popup.pop_photo .photoSd2 .swiper-pagination-bullet-active {
  background-color: var(--navy-color);
}
.popup.pop_photo .photoSd .swiper-button-next,
.popup.pop_photo .photoSd .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8rem;
  height: 8rem;
}
@media (max-width: 1199px) {
  .popup.pop_photo .photoSd .swiper-button-next,
  .popup.pop_photo .photoSd .swiper-button-prev {
    width: 6rem;
    height: 6rem;
  }
}
@media (max-width: 767px) {
  .popup.pop_photo .photoSd .swiper-button-next,
  .popup.pop_photo .photoSd .swiper-button-prev {
    width: 4rem;
    height: 4rem;
  }
}
.popup.pop_photo .photoSd .swiper-button-next {
  background: url("../img/common/btn_next_gray.png") no-repeat center;
  background-size: contain;
  right: 0;
}
.popup.pop_photo .photoSd .swiper-button-prev {
  background: url("../img/common/btn_prev_gray.png") no-repeat center;
  background-size: contain;
  left: 0;
}
.popup.pop_photo .photo-pop_cont {
  width: 100%;
  margin-top: 0;
}
.popup.pop_photo .photo-pop_cont .info-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}
@media (max-width: 1199px) {
  .popup.pop_photo .photo-pop_cont .info-wrap {
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .popup.pop_photo .photo-pop_cont .info-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
}
.popup.pop_photo .photo-pop_cont .info-wrap .info-area {
  border: none;
  padding: 0;
  width: calc(100% - 11.5rem);
}
.popup.pop_photo .photo-pop_cont .info-wrap .info-area ul {
  max-width: 100%;
  justify-content: flex-start;
}
@media (max-width: 1199px) {
  .popup.pop_photo .photo-pop_cont .info-wrap .info-area ul {
    flex-direction: column;
    gap: 1rem 0;
    align-items: flex-start;
  }
}
.popup.pop_photo .photo-pop_cont .info-wrap .info-area ul li {
  width: auto;
  min-width: 26rem;
}
@media (max-width: 1199px) {
  .popup.pop_photo .photo-pop_cont .info-wrap .info-area ul li {
    justify-content: flex-start;
  }
}
.popup.pop_photo .photo-pop_cont .info-wrap .btn-down-gray {
  flex: none;
}
.popup.pop_photo .photo-pop_cont .popup-cont {
  padding: 4.8rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 767px) {
  .popup.pop_photo .photo-pop_cont .popup-cont {
    padding: 2.4rem 0;
  }
}
.popup.pop_photo .photo-pop_cont .popup-cont .txt {
  font-size: 2rem;
  color: #323232;
}
@media (max-width: 767px) {
  .popup.pop_photo .photo-pop_cont .popup-cont .txt {
    font-size: 1.6rem;
  }
}

/* 팝업 - 기업 기관검색 */
.organ_search_popup {
  width: 116rem;
}
.organ_search_popup .popup-wrap .tbl-wrap.v2.scroll-x table {
  min-width: 100rem;
}
.organ_search_popup .popup-wrap .tbl-wrap.v2 .link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.organ_search_popup .popup-wrap .tbl-wrap.v2 .link:hover {
  color: var(--navy-color);
  font-weight: 500;
}

/* 팝업 - 기업 기관검색 */
.organ_popup {
  width: 116.2rem;
}
.organ_popup .form-wrap {
  padding: 1.2rem 0;
  background: #F7F7F7;
  border-radius: 16px;
}
.organ_popup .form-wrap .form-area .form {
  padding: 2.4rem 3.2rem;
  border-top: 1px solid #E1E1E1;
}
@media (max-width: 767px) {
  .organ_popup .form-wrap .form-area .form {
    padding: 1.2rem 1.6rem;
  }
}
.organ_popup .form-wrap .form-area .form:nth-of-type(1) {
  border: none;
}
@media (max-width: 767px) {
  .organ_popup .form-wrap .form-area .form .radio-group {
    flex-direction: column;
    gap: 1rem;
  }
}
.organ_popup .form-wrap .form-area .form .radio-group .radio input[type=radio] + label {
  padding-left: 3rem;
}
.organ_popup .form-wrap .form-area .form .radio-group .radio input[type=radio] + label::before {
  width: 2rem;
  height: 2.1rem;
  background-size: contain;
}
.organ_popup .form-wrap .form-area .form.row + .form.row {
  margin-top: 0;
}

/* 비밀번호 변경- 팝업 */
.change_password_popup {
  width: 87.2rem;
}
.change_password_popup .popup-head + .popup-body {
  margin-top: 3.2rem;
}
.change_password_popup .popup-body .form-wrap {
  padding: 4rem;
  background-color: #F7F7F7;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .change_password_popup .popup-body .form-wrap {
    padding: 2.4rem;
  }
}
@media (max-width: 767px) {
  .change_password_popup .btn-wrap .xl {
    height: 5.4rem;
  }
}

/* 사업자번호 찾기 - 사업자번호 2개이상일때 팝업 */
.organ_lst_popup {
  width: 75.4rem;
}
.organ_lst_popup .organ-lst-tit .tit {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1D1D1D;
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: center;
}
@media (max-width: 767px) {
  .organ_lst_popup .organ-lst-tit .tit {
    font-size: 1.8rem;
  }
}
.organ_lst_popup .organ-lst-tit .txt {
  font-size: 2.2rem;
  color: #606060;
  text-align: center;
}
@media (max-width: 767px) {
  .organ_lst_popup .organ-lst-tit .txt {
    font-size: 1.8rem;
  }
}

.required {
  color: var(--navy-color);
  display: flex;
  align-items: center;
  letter-spacing: -0.04em;
}
.required .tit {
  color: #000000;
}
.required:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.5rem;
  display: block;
  background: url("../img/icon/required.png") no-repeat center;
  background-size: contain;
}

.required-red {
  color: var(--red-color);
  font-size: 1.6rem;
  display: flex;
  align-items: flex-start;
  letter-spacing: -0.04em;
}
.required-red:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.5rem;
  margin-top: 0.7rem;
  background: url("../img/icon/required_red.png") no-repeat center;
}

.required-gray {
  color: #8E8E8E;
  font-size: 1.6rem;
  display: flex;
  align-items: flex-start;
  letter-spacing: -0.04em;
}
.required-gray:before {
  content: "*";
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3rem;
}

/* 폼레이아웃 */
.form-wrap .form-area .form input[type=text],
.form-wrap .form-area .form input[type=password],
.form-wrap .form-area .form input[type=email],
.form-wrap .form-area .form input[type=number],
.form-wrap .form-area .form input[type=tel] {
  height: 6rem;
}
@media (max-width: 767px) {
  .form-wrap .form-area .form input[type=text],
  .form-wrap .form-area .form input[type=password],
  .form-wrap .form-area .form input[type=email],
  .form-wrap .form-area .form input[type=number],
  .form-wrap .form-area .form input[type=tel] {
    height: 5.4rem;
  }
}
.form-wrap .form-area .form .form-tit.required:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.5rem;
  display: inline-block;
  background: url("../img/icon/required.png") no-repeat center;
  background-size: contain;
}
.form-wrap .form-area .form .form-tit.required {
  display: flex;
  align-items: center;
}
.form-wrap .form-area .form.col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.form-wrap .form-area .form.col .form-tit {
  flex: none;
  width: 12rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 0.5rem;
  min-height: 5.4rem;
}
.form-wrap .form-area .form.col .form-tit .tit {
  font-size: 1.8rem;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.form-wrap .form-area .form.col .form-cont {
  flex: 1 0;
}
.form-wrap .form-area .form.row {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.form-wrap .form-area .form.row .form-tit .tit {
  font-size: 1.8rem;
  font-weight: 500;
  color: #000000;
}
.form-wrap .form-area .form input[type=file] {
  display: block;
  width: 100%;
  height: 5.4rem;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
  padding: 0 3.2rem;
  letter-spacing: -0.02em;
  background: #fff;
  font-size: 1.8rem;
  color: #1D1D1D;
}
.form-wrap .form-area .form input[type=file]::placeholder {
  color: rgba(142, 142, 142, 0.53);
}
.form-wrap .form-area .form.row + .form.row {
  margin-top: 3.4rem;
}
@media (max-width: 767px) {
  .form-wrap .form-area .form.row + .form.row {
    margin-top: 1.6rem;
  }
}
.form-wrap .form-area .form-flex {
  display: flex;
  border-bottom: 1px solid #E1E1E1;
}
.form-wrap .form-area .form-flex .form {
  border-bottom: none;
  flex: 1 0;
}
.form-wrap .form-area .form-flex.v2 {
  display: flex;
  gap: 2.4rem;
  border-bottom: none;
}
@media (max-width: 1023px) {
  .form-wrap .form-area .form-flex.v2 {
    flex-direction: column;
    gap: 1.2rem;
  }
}
@media (max-width: 767px) {
  .form-wrap .form-area .form-flex.v2 {
    gap: 2.4rem;
  }
}
.form-wrap .form-area .form-flex.v2 .form {
  border-bottom: none;
  flex: 1 0;
}
@media (max-width: 767px) {
  .form-wrap .form-area .form-flex.v2 .form {
    flex-direction: column;
    gap: 1rem;
  }
}
.form-wrap .form-area .form-flex.v2 .form .select {
  width: 100%;
}
@media (max-width: 767px) {
  .form-wrap .form-area .form-flex.v2 .form .form-tit {
    min-height: auto;
  }
}
.form-wrap .form-area .form-flex.v2 .form .form-cont {
  width: 100%;
}
.form-wrap .form-area .form-flex.v2 .form.row + .form.row {
  margin-top: 0;
}
.form-wrap .form-area .form-flex.v2 + .form-flex {
  margin-top: 1.6rem;
}

.txt-error {
  color: var(--red-color);
  font-size: 1.4rem;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
}
.txt-error:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.5rem;
  background: url("../img/icon/required_red.png") no-repeat center;
}

.txt-succeed {
  color: var(--red-color);
  font-size: 1.4rem;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
}
.txt-succeed:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.5rem;
  background: url("../img/icon/required_red.png") no-repeat center;
}

input[type=text],
input[type=number],
input[type=password],
input[type=email],
input[type=tel] {
  display: block;
  width: 100%;
  height: 5.4rem;
  border-radius: 8px;
  padding: 0 3.2rem;
  letter-spacing: -0.02em;
  background: #fff;
  font-size: 1.8rem;
  color: #1D1D1D;
}
@media (max-width: 767px) {
  input[type=text],
  input[type=number],
  input[type=password],
  input[type=email],
  input[type=tel] {
    padding: 0 1.6rem;
    font-size: 1.4rem;
  }
}
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  color: rgba(142, 142, 142, 0.53);
}
@media (max-width: 767px) {
  input[type=text]::placeholder,
  input[type=number]::placeholder,
  input[type=password]::placeholder,
  input[type=email]::placeholder,
  input[type=tel]::placeholder {
    font-size: 1.4rem;
  }
}
input[type=text]:disabled, input[type=text]:read-only,
input[type=number]:disabled,
input[type=number]:read-only,
input[type=password]:disabled,
input[type=password]:read-only,
input[type=email]:disabled,
input[type=email]:read-only,
input[type=tel]:disabled,
input[type=tel]:read-only {
  background-color: #EBEBEB;
  color: #909090;
}
@media (max-width: 767px) {
  input[type=text]:disabled, input[type=text]:read-only,
  input[type=number]:disabled,
  input[type=number]:read-only,
  input[type=password]:disabled,
  input[type=password]:read-only,
  input[type=email]:disabled,
  input[type=email]:read-only,
  input[type=tel]:disabled,
  input[type=tel]:read-only {
    font-size: 1.4rem;
  }
}

input[type=text]:focus-visible,
input[type=number]:focus-visible,
input[type=password]:focus-visible,
input[type=email]:focus-visible,
input[type=tel]:focus-visible {
  outline: 1px solid var(--navy-color);
}

input[type=text]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus {
  outline: 1px solid var(--navy-color);
}

input[type=text]:focus-within,
input[type=number]:focus-within,
input[type=password]:focus-within,
input[type=email]:focus-within,
input[type=tel]:focus-within {
  outline: 1px solid var(--navy-color);
}

select {
  display: block;
  width: 100%;
  height: 5.4rem;
  padding: 1.6rem 3.2rem;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  background: #ffffff url("../img/common/btn_lnb_down_arr.png") no-repeat right 2rem center;
  background-size: 1.4rem;
}

textarea {
  display: block;
  padding: 1.6rem;
  width: 100%;
  resize: none;
  border-radius: 8px;
  min-height: 30rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  textarea {
    font-size: 1.4rem;
    min-height: 26rem;
  }
}

/* 라디오버튼 */
input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

input[type=radio] + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  color: #000000;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  input[type=radio] + label {
    font-size: 1.6rem;
    padding-left: 3rem;
  }
}

input[type=radio] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: url("../img/icon/ico_check.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 767px) {
  input[type=radio] + label::before {
    width: 2rem;
    height: 2rem;
  }
}

input[type=radio]:checked + label::before {
  background: url("../img/icon/ico_check_on.png") no-repeat center;
  background-size: contain;
}

.radio-group.v1 {
  display: flex;
  gap: 0 4rem;
}
@media (max-width: 767px) {
  .radio-group.v1 {
    gap: 1.5rem 3rem;
    flex-wrap: wrap;
  }
}

/*  체크박스 */
input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  color: #000000;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  input[type=checkbox] + label {
    font-size: 1.6rem;
    padding-left: 3rem;
  }
}

input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: url("../img/icon/ico_check.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 767px) {
  input[type=checkbox] + label::before {
    width: 2rem;
    height: 2rem;
  }
}

input[type=checkbox]:checked + label::before {
  background: url("../img/icon/ico_check_on.png") no-repeat center;
  background-size: contain;
}

/*
!*  체크박스 *!
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

input[type="checkbox"] + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 1.4rem;
  color: #000;
  padding-left: 2.2rem;

  @include MOBILE {
    font-size: 1.6rem;
    padding-left: 3rem;
  }
}

input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/icon/ico_pop_check.png") no-repeat center, #fff;
  background-size: contain;

}

input[type="checkbox"]:checked + label::before {
  background: url("../img/icon/ico_pop_check_on.png") no-repeat center, #fff;
  background-size: contain;
}*/
/* input 기본 스타일 제거 */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* 비밀번호 */
.password {
  position: relative;
}
.password input {
  padding-right: 8.5rem;
}
@media (max-width: 767px) {
  .password input {
    padding-right: 6rem;
  }
}
.password .pw-confirm {
  position: absolute;
  right: 0;
  top: 0;
  height: 6rem;
  width: 8.3rem;
}
@media (max-width: 767px) {
  .password .pw-confirm {
    height: 5.4rem;
    width: 6rem;
  }
}

/* 확인 */
.check-confirm {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-color);
  padding-left: 3rem;
  background: url("../img/icon/ico_check_on.png") no-repeat left center;
  background-size: 2.1rem auto;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .check-confirm {
    font-size: 1.4rem;
    background-size: 1.5rem auto;
    padding-left: 2.2rem;
  }
}

/* 비활성화 */
.disable {
  display: flex;
  position: relative;
  border-radius: 8px;
  background: #EBEBEB;
  color: #909090;
  padding: 0 3.2rem 0 0;
}
@media (max-width: 767px) {
  .disable {
    padding: 0 1.6rem 0 0;
  }
}
.disable input[type=text],
.disable input[type=password],
.disable input[type=number],
.disable input[type=email],
.disable input[type=tel] {
  flex: 1 0;
  border: none;
}

/* 이메일 */
.email {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .email {
    flex-wrap: wrap;
  }
}
@media (max-width: 1023px) {
  .email .split {
    font-size: 1.6rem;
  }
}
.email input[type=text]:nth-of-type(1),
.email input[type=email]:nth-of-type(1) {
  width: calc(100% - 18rem);
}
@media (max-width: 1023px) {
  .email input[type=text]:nth-of-type(1),
  .email input[type=email]:nth-of-type(1) {
    width: 100%;
  }
}
.email input[type=text]:nth-of-type(2),
.email input[type=email]:nth-of-type(2) {
  width: calc(100% - 18rem);
}
@media (max-width: 1023px) {
  .email input[type=text]:nth-of-type(2),
  .email input[type=email]:nth-of-type(2) {
    width: calc(100% - 2.4rem);
    margin-left: auto;
  }
}
.email .select.v1 {
  height: 6rem;
  width: 17rem;
  flex: none;
}
@media (max-width: 1023px) {
  .email .select.v1 {
    width: calc(100% - 13.5rem);
  }
}
@media (max-width: 767px) {
  .email .select.v1 {
    width: 100%;
  }
}
.email .email-check {
  width: 12.5rem;
  flex: none;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .email .email-check {
    width: 100%;
  }
}

/* 이메일 다시 */
.email-again {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.email-again .email-again-input {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  padding-right: 3.2rem;
  align-items: center;
  flex: 1 0;
}
.email-again .email-again-input:has(input:read-only) {
  padding-right: 0;
}
.email-again .email-again-input:focus {
  outline: 1px solid var(--navy-color);
}
.email-again .email-again-input:focus-within {
  outline: 1px solid var(--navy-color);
}
@media (max-width: 767px) {
  .email-again .email-again-input {
    padding-right: 1.6rem;
  }
}
.email-again .email-again-input input[type=text],
.email-again .email-again-input input[type=email] {
  flex: 1 0;
}
.email-again .email-again-input input[type=text]:focus, .email-again .email-again-input input[type=text]:focus-within,
.email-again .email-again-input input[type=email]:focus,
.email-again .email-again-input input[type=email]:focus-within {
  outline: none;
  border: none;
}
@media (max-width: 767px) {
  .email-again .email-again-input input[type=text],
  .email-again .email-again-input input[type=email] {
    width: 100%;
  }
}
.email-again .email-again-input .time {
  color: var(--red-color);
  font-size: 1.6rem;
  display: block;
  font-weight: 500;
}
@media (max-width: 767px) {
  .email-again .email-again-input .time {
    font-size: 1.4rem;
  }
}
.email-again .email-check {
  width: 12.5rem;
  flex: none;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .email-again .email-check {
    width: 100%;
  }
}

/* 이메일 확인 */
.email-confirm {
  display: flex;
  margin-top: 1rem;
}

/* 현재이메일 */
.email-before {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .email-before {
    flex-direction: column;
  }
}
.email-before input {
  width: calc(100% - 13.5rem);
}
@media (max-width: 767px) {
  .email-before input {
    width: 100%;
  }
}
.email-before .btn {
  width: 12.5rem;
  padding: 1rem;
}
@media (max-width: 767px) {
  .email-before .btn {
    width: 100%;
  }
}
.email-before + * {
  margin-top: 1rem;
}

/* 아이디 */
.id {
  display: flex;
  gap: 0 1rem;
}
.id .btn {
  flex: none;
}

/* 셀렉트 */
.select {
  border-radius: 8px;
}
.select.v1 {
  width: 17rem;
  height: 100%;
  position: relative;
  z-index: 5;
}
.select.v1.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select.v1.active .btn-active {
  border: 1px solid var(--border-color);
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select.v1.active ul {
  border: 1px solid var(--border-color);
  border-top: none;
}
.select.v1 .btn-active {
  height: 6rem;
  width: 100%;
  display: block;
  border-radius: 8px;
  font-size: 1.8rem;
  color: #606060;
  text-align: left;
  padding: 0 4rem 0 1.6rem;
  background: url("../img/common/btn_search_select.png") no-repeat right 2rem center #fff;
  background-size: auto 1rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .select.v1 .btn-active {
    font-size: 1.4rem;
  }
}
.select.v1 ul {
  position: absolute;
  top: 6rem;
  width: 100%;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
  display: none;
}
.select.v1 ul li {
  font-size: 1.8rem;
  color: #606060;
  background: #fff;
  width: 100%;
}
@media (max-width: 767px) {
  .select.v1 ul li {
    font-size: 1.4rem;
  }
}
.select.v1 ul li:hover {
  background: #F8F8F8;
  color: #1D1D1D;
}
.select.v1 ul li button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1.6rem 1.2rem;
}
.select.v1.active ul {
  display: block;
}

/* 사업자 등록번호 */
.business_number {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .business_number {
    flex-direction: column;
  }
}
.business_number input[type=number],
.business_number input[type=text] {
  flex: 1 0;
}
@media (max-width: 767px) {
  .business_number input[type=number],
  .business_number input[type=text] {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .business_number .btn {
    width: 100%;
  }
}

/* 구분자 */
.split {
  font-size: 2rem;
  line-height: 0.5;
}

/* 주소 */
.address {
  display: flex;
  align-items: center;
}
.address.address1 {
  gap: 1rem;
}
@media (max-width: 480px) {
  .address.address1 {
    flex-direction: column;
  }
}
.address.address1 input[type=text] {
  width: calc(100% - 18rem);
}
@media (max-width: 767px) {
  .address.address1 input[type=text] {
    width: calc(100% - 14rem);
  }
}
@media (max-width: 480px) {
  .address.address1 input[type=text] {
    width: 100%;
  }
}
.address.address1 .btn {
  width: 17rem;
}
@media (max-width: 767px) {
  .address.address1 .btn {
    width: 13rem;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .address.address1 .btn {
    width: 100%;
  }
}
.address + .address {
  margin-top: 1rem;
}

/* 전화번호 */
.phone {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .phone {
    flex-wrap: wrap;
  }
}
.phone input[type=number],
.phone input[type=text] {
  flex: 1 0;
}
@media (max-width: 767px) {
  .phone input[type=number],
  .phone input[type=text] {
    width: calc(100% - 2rem);
    flex: none;
  }
}
.phone .select {
  width: 13rem;
}
@media (max-width: 767px) {
  .phone .select {
    width: 100%;
  }
}
.phone .btn {
  padding: 1rem 1.7rem;
}
@media (max-width: 767px) {
  .phone .btn {
    width: 100%;
  }
}

/* 이메일 인증 코드 */
.code {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .code {
    flex-direction: column;
  }
}
.code input[type=number],
.code input[type=text] {
  width: calc(100% - 13.5rem);
}
@media (max-width: 767px) {
  .code input[type=number],
  .code input[type=text] {
    width: 100%;
  }
}
.code .btn {
  width: 12.5rem;
}
@media (max-width: 767px) {
  .code .btn {
    width: 100%;
  }
}

/* 검색창 */
.search.v1 .search-wrap {
  background: #fff;
  border-radius: 50px;
  border: none;
  padding: 0;
}
.search.v1 .search-wrap input {
  padding: 0 0 0 4rem;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .search.v1 .search-wrap input {
    padding: 0 0 0 1.6rem;
  }
}
.search.v1 .search-wrap .btn-search-blue {
  width: 9rem;
  height: 6.3rem;
}
.search.v2 {
  display: flex;
  background: #F8F8F8;
  padding: 3.2rem 6rem;
  gap: 1rem;
}
@media (max-width: 767px) {
  .search.v2 {
    padding: 1.6rem 2rem;
    flex-direction: column;
  }
}
.search.v2 .select {
  width: 21.5rem;
}
@media (max-width: 767px) {
  .search.v2 .select {
    width: 100%;
  }
}
.search.v2 .input-wrap {
  width: calc(100% - 22.5rem);
  height: 6.3rem;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .search.v2 .input-wrap {
    width: 100%;
  }
}
.search.v2 .input-wrap input[type=text] {
  width: calc(100% - 9rem);
  border-radius: 50px;
  padding-right: 0;
}
.search.v2 .input-wrap .btn-ic {
  display: block;
  width: 9rem;
  height: 6.3rem;
  padding: 0;
  background-size: 2.6rem auto;
}
.search.v3 {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .search.v3 {
    flex-wrap: wrap;
  }
}
.search.v3 .search-wrap {
  margin: 0;
  flex: 1 0;
  border: none;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .search.v3 .search-wrap {
    flex: none;
    width: 100%;
  }
}
.search.v3 .search-wrap input[type=text] {
  padding: 0.8rem 0 0.8rem 3.2rem;
  border-radius: 8px;
  background-color: #fff;
  height: 6.3rem;
  width: 100%;
}
@media (max-width: 767px) {
  .search.v3 .search-wrap input[type=text] {
    height: 5.4rem;
  }
}
.search.v3 .btn-wrap {
  gap: 0 1rem;
}
@media (max-width: 767px) {
  .search.v3 .btn-wrap {
    justify-content: flex-end;
    width: 100%;
  }
}
.search.v3 .btn-wrap .btn {
  flex: none;
  padding: 0 1.8rem;
  height: 6.3rem;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .search.v3 .btn-wrap .btn {
    height: 5.4rem;
    font-size: 1.6rem;
  }
}

/* 파일 업로드 */
.file-upload {
  /*&.v3 {
    .upload-top-wrap {
      align-items: center;
      justify-content: flex-end;
      gap: 1rem;
    }

    .upload-tit-wrap {
      margin-right:auto;

      .tit {
        font-size: 1.4rem;
        color: #1D1D1D;
        font-weight: 600;
      }
    }

    .upload-top {
      display: flex;
      align-items: center;
      gap: 1rem;
      justify-content: flex-end;

      @include MOBILE {
        display: none;
      }

      .upload-info {
        display: flex;

        .tit {
          font-size: 1.2rem;
          line-height: 1.2;
          color: #606060;
          letter-spacing: -0.04em;

          @include MOBILE {
            font-size: 1.4rem;
          }
        }

        .num {

          .now {
            font-size: 1.2rem;
            line-height: 1.2;
            letter-spacing: -0.04em;
            color: var(--navy-color);
            font-weight: 500;
          }

          .total {
            font-size: 1.2rem;
            line-height: 1.2;
            letter-spacing: -0.04em;
            color: #606060;

            @include MOBILE {
              font-size: 1.4rem;
            }
          }
        }
      }
    }

    .file-list {
      background-color: #fff;


      .file-list-wrap {
        margin-top: 0.8rem;

        border-radius: 8px;
        padding: 1.2rem;



        .file-ul {
          overflow-y: auto;
          height: 12rem;
          background: #F8F8F8;
          border: none;
          p

          .file-li {
            gap: 0.6rem;
            padding: 0.4rem 0;

            .file-wrap {
              display: flex;
              flex-wrap: wrap;
            }

            .txt {
              font-size: 1.2rem;
              color: #323232;
            }

            .btn-delete {
              margin-left: 0.6rem;
              background: none;
              width: auto;
              height: auto;
              padding: 0;


              .ico--trash-can {
                width: 1.6rem;
                height: 1.6rem;
                background: url('../img/icon/ico_delete.png') no-repeat center;
                background-size: 1.5rem auto;
              }
            }
          }
        }
      }
    }

    input[type="file"] {
      position: absolute;
      width: 0;
      height: 0;
      padding: 0;
      margin: 0;
      border: none;
      clip: rect(0, 0, 0, 0); // 화면에서 보이지 않게 설정
      overflow: hidden;
      white-space: nowrap;
    }
  }*/
}
.file-upload.v1 .upload-top {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}
.file-upload.v1 .upload-top .upload-info {
  display: flex;
}
.file-upload.v1 .upload-top .upload-info .tit {
  font-size: 1.6rem;
  color: #606060;
}
@media (max-width: 767px) {
  .file-upload.v1 .upload-top .upload-info .tit {
    font-size: 1.4rem;
  }
}
.file-upload.v1 .upload-top .upload-info .num .now {
  color: var(--navy-color);
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .file-upload.v1 .upload-top .upload-info .num .now {
    font-size: 1.4rem;
  }
}
.file-upload.v1 .upload-top .upload-info .num .total {
  font-size: 1.6rem;
  color: #606060;
}
@media (max-width: 767px) {
  .file-upload.v1 .upload-top .upload-info .num .total {
    font-size: 1.4rem;
  }
}
.file-upload.v1 .file-list {
  background-color: #EBEBEB;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 1rem;
}
.file-upload.v1 .file-list .file-list-wrap ul {
  background-color: #fff;
  padding: 2.4rem 0 2.4rem 2.4rem;
  border: 1px solid var(--border-color);
  max-height: 15rem;
}
.file-upload.v1 .file-list .file-list-wrap ul li {
  padding-right: 1.6rem;
}
.file-upload.v1 .file-list .file-list-wrap ul li .txt {
  font-size: 1.8rem;
  color: #909090;
}
@media (max-width: 767px) {
  .file-upload.v1 .file-list .file-list-wrap ul li .txt {
    font-size: 1.4rem;
  }
}
.file-upload.v1 .file-list .file-list-wrap ul li .btn-ic {
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}
.file-upload.v1 .file-list .file-list-wrap .upload-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.8rem;
  /* 파일 업로드 버튼 포커스 시 스타일 */
}
.file-upload.v1 .file-list .file-list-wrap .upload-btn input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.file-upload.v1 .file-list .file-list-wrap .upload-btn input[type=file] + label {
  font-size: 2rem;
  background-color: #fff;
  border: 1px solid #BFBFBF;
  color: #878787;
  height: 4.5rem;
  padding: 0 3rem;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .file-upload.v1 .file-list .file-list-wrap .upload-btn input[type=file] + label {
    font-size: 1.6rem;
  }
}
.file-upload.v1 .file-list .file-list-wrap .upload-btn input[type=file] + label:focus {
  outline: 2px solid #0056b3;
  outline-offset: -2px;
}
.file-upload.v2 .upload-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}
.file-upload.v2 .upload-top .upload-info {
  display: flex;
}
.file-upload.v2 .upload-top .upload-info .tit {
  font-size: 1.6rem;
  color: #606060;
}
@media (max-width: 767px) {
  .file-upload.v2 .upload-top .upload-info .tit {
    font-size: 1.4rem;
  }
}
.file-upload.v2 .upload-top .upload-info .num .now {
  color: var(--navy-color);
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .file-upload.v2 .upload-top .upload-info .num .now {
    font-size: 1.4rem;
  }
}
.file-upload.v2 .upload-top .upload-info .num .total {
  font-size: 1.6rem;
  color: #606060;
}
@media (max-width: 767px) {
  .file-upload.v2 .upload-top .upload-info .num .total {
    font-size: 1.4rem;
  }
}
.file-upload.v2 .file-list {
  background-color: #EBEBEB;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 1rem;
}
.file-upload.v2 .file-list .file-list-wrap ul {
  background-color: #fff;
  padding: 2.4rem;
  border: 1px solid var(--border-color);
}
.file-upload.v2 .file-list .file-list-wrap ul li .txt {
  font-size: 1.8rem;
  color: #909090;
}
@media (max-width: 767px) {
  .file-upload.v2 .file-list .file-list-wrap ul li .txt {
    font-size: 1.4rem;
  }
}
.file-upload.v2 .file-list .file-list-wrap ul li .btn-ic {
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}
.file-upload.v2 .file-list .file-list-wrap .upload-btn {
  display: flex;
  justify-content: flex-end;
  /* 파일 업로드 버튼 포커스 시 스타일 */
}
.file-upload.v2 .file-list .file-list-wrap .upload-btn input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.file-upload.v2 .file-list .file-list-wrap .upload-btn input[type=file] + label {
  font-size: 2rem;
  background-color: #fff;
  border: 1px solid #BFBFBF;
  color: #878787;
  height: 4.5rem;
  padding: 0 3rem;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .file-upload.v2 .file-list .file-list-wrap .upload-btn input[type=file] + label {
    font-size: 1.6rem;
  }
}
.file-upload.v2 .file-list .file-list-wrap .upload-btn input[type=file] + label:focus {
  outline: 2px solid #0056b3;
  outline-offset: -2px;
}
.file-upload.v2 .file-list .file-list-wrap .flex-wrap {
  margin-top: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* 준비중입니다. */
.prepare {
  padding: 6rem 8rem;
  background-color: #F8F8F8;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .prepare {
    padding: 3rem 2.4rem;
  }
}
.prepare .prepare-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .prepare .prepare-wrap {
    flex-direction: column-reverse;
  }
}
.prepare .prepare-wrap .cont-wrap {
  width: 70%;
}
@media (max-width: 767px) {
  .prepare .prepare-wrap .cont-wrap {
    width: 100%;
    margin-top: 2.4rem;
    text-align: center;
  }
}
.prepare .prepare-wrap .cont-wrap .tit-wrap .tit {
  font-size: 3.9rem;
  font-weight: 800;
  color: #1D1D1D;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .prepare .prepare-wrap .cont-wrap .tit-wrap .tit {
    font-size: 2.8rem;
  }
}
.prepare .prepare-wrap .cont-wrap .tit-wrap .txt {
  font-size: 2.2rem;
  color: #606060;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .prepare .prepare-wrap .cont-wrap .tit-wrap .txt {
    font-size: 1.8rem;
  }
}
.prepare .prepare-wrap .cont-wrap .btn-wrap {
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .prepare .prepare-wrap .cont-wrap .btn-wrap {
    justify-content: center;
  }
}
.prepare .prepare-wrap .img-wrap {
  width: 26%;
}
@media (max-width: 767px) {
  .prepare .prepare-wrap .img-wrap {
    max-width: 25rem;
    width: 100%;
    margin: 0 auto;
  }
}

/* 검색결과 */
.search_result {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
}
.search_result .search-area {
  height: auto;
}
.search_result .search-area .search-wrap {
  max-width: 100%;
  padding: 0 0 0 2rem;
  height: 8.3rem;
  margin: 0;
}
@media (max-width: 767px) {
  .search_result .search-area .search-wrap {
    height: 6.4rem;
  }
}
.search_result .search-area .search-wrap .btn-ic {
  background-size: 3.5rem auto;
  width: 10.2rem;
  height: 8.3rem;
  padding: 0;
}
@media (max-width: 767px) {
  .search_result .search-area .search-wrap .btn-ic {
    height: 6.4rem;
    width: 6.4rem;
    background-size: 2.4rem auto;
  }
}
.search_result .search-area .search-wrap input[type=text] {
  width: calc(100% - 10.5rem);
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .search_result .search-area .search-wrap input[type=text] {
    font-size: 1.6rem;
    width: calc(100% - 6.4rem);
  }
}
.search_result .search-area .search-words {
  max-width: 100%;
}
.search_result .search-area .search-words .words-wrap .word {
  font-size: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .search_result .search-area .search-words .words-wrap .word {
    font-size: 1.4rem;
  }
}
.search_result .search-area .search-words .words-wrap .word:before {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .search_result .search-area .search-words .words-wrap .word:before {
    font-size: 1.4rem;
  }
}
.search_result .result_area {
  padding: 3.6rem 2.4rem;
  background-color: #F8F8F8;
  border-radius: 16px;
  margin-top: 4.8rem;
}
.search_result .result_area .txt-area .txt {
  font-size: 2.4rem;
  color: #1D1D1D;
  text-align: center;
}
@media (max-width: 767px) {
  .search_result .result_area .txt-area .txt {
    font-size: 2rem;
  }
}
.search_result .search-type {
  margin-top: 4.8rem;
}
.search_result .search-type .tit-area {
  padding-bottom: 1rem;
  border-bottom: 1px solid #8E8E8E;
  display: flex;
  justify-content: space-between;
}
.search_result .search-type .tit-area .direct-link-area .link {
  font-size: 1.8rem;
  color: #ACACAC;
}
@media (max-width: 767px) {
  .search_result .search-type .tit-area .direct-link-area .link {
    font-size: 1.4rem;
  }
}
.search_result .search-type .tit-wrap .tit {
  font-size: 2rem;
  font-weight: 600;
  color: #1D1D1D;
}
@media (max-width: 767px) {
  .search_result .search-type .tit-wrap .tit {
    font-size: 1.8rem;
  }
}
.search_result .search-type .tit-wrap .num {
  font-size: 2rem;
  font-weight: 600;
  color: #2D6DB2;
}
@media (max-width: 767px) {
  .search_result .search-type .tit-wrap .num {
    font-size: 1.8rem;
  }
}
.search_result .search-type.search-manu .result_list ul li {
  margin-top: 0.7rem;
}
@media (max-width: 767px) {
  .search_result .search-type.search-manu .result_list ul li {
    margin-top: 0.5rem;
  }
}
.search_result .search-type.search-manu .result_list ul li:first-of-type {
  margin-top: 1rem;
}
.search_result .search-type.search-manu .result_list ul li .txt {
  font-size: 1.8rem;
  color: #606060;
}
@media (max-width: 767px) {
  .search_result .search-type.search-manu .result_list ul li .txt {
    font-size: 1.6rem;
  }
}
.search_result .search-type.search-manu .result_list ul li .txt:after {
  content: ">";
  color: #606060;
  font-size: 1.8rem;
  margin: 0 0.5rem;
  display: inline-block;
}
.search_result .search-type.search-manu .result_list ul li .link {
  text-decoration: underline;
  font-size: 1.8rem;
  color: #606060;
}
@media (max-width: 767px) {
  .search_result .search-type.search-manu .result_list ul li .link {
    font-size: 1.6rem;
  }
}
.search_result .search-type.search-manu .result_list ul li .link:hover {
  color: var(--navy-color);
}
.search_result .search-type.search-document .result_list {
  margin-top: 0;
}
.search_result .search-type.search-document .result_list .result-wrap .document-cont {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 1.6rem;
  padding-top: 2.6rem;
}
.search_result .search-type.search-document .result_list .result-wrap .document-cont dt .link {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 2rem;
  color: #323232;
  font-weight: 500;
}
@media (max-width: 767px) {
  .search_result .search-type.search-document .result_list .result-wrap .document-cont dt .link {
    font-size: 1.6rem;
  }
}
.search_result .search-type.search-document .result_list .result-wrap .document-cont dt .link:hover {
  color: var(--navy-color);
}
.search_result .search-type.search-document .result_list .result-wrap .document-cont dd {
  margin-top: 1rem;
}
.search_result .search-type.search-document .result_list .result-wrap .document-cont dd .txt {
  font-size: 1.8rem;
  color: #606060;
}
@media (max-width: 767px) {
  .search_result .search-type.search-document .result_list .result-wrap .document-cont dd .txt {
    font-size: 1.4rem;
  }
}
.search_result .search-type.search-document .result_list .result-wrap .document-cont dd .txt-info {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  color: #909090;
  line-height: 1.3;
  display: block;
}
@media (max-width: 767px) {
  .search_result .search-type.search-document .result_list .result-wrap .document-cont dd .txt-info {
    font-size: 1.2rem;
  }
}

.agree-cont .terms-area {
  background: #fff;
  padding: 3.2rem 0 3.2rem 3.2rem;
  border: 1px solid #DEDEDE;
  margin-top: 1.2rem;
  max-height: 30rem;
  overflow-y: auto;
  width: 96%;
  font-size: 1.6rem;
  color: #606060;
}
@media (max-width: 767px) {
  .agree-cont .terms-area {
    padding: 1.6rem 0 1.6rem 1.6rem;
  }
}
.agree-cont .terms-area + p {
  width: 96%;
}
.agree-cont .terms-area .tit {
  font-weight: 700;
  color: #000000;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .agree-cont .terms-area .tit {
    font-size: 1.6rem;
  }
}
.agree-cont .terms-area .txt {
  width: 96%;
  font-size: 1.6rem;
  color: #606060;
}
.agree-cont .terms-area .txt .sub-tit {
  font-size: 1.6rem;
  color: #000000;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  margin-top: 1.6rem;
}
.agree-cont .terms-area .txt .sub-tit:first-of-type {
  margin-top: 0;
}
@media (max-width: 767px) {
  .agree-cont .terms-area .txt .sub-tit {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .agree-cont .terms-area .txt {
    font-size: 1.4rem;
  }
}
.agree-cont .terms-area .txt:first-of-type {
  margin-top: 0;
}
.agree-cont .terms-area p {
  width: 96%;
}

.all-agree {
  padding: 2.4rem 1.6rem;
  background: #fff;
}
@media (max-width: 767px) {
  .all-agree {
    padding: 1.8rem 1.6rem;
  }
}
.all-agree .check.v1 {
  display: flex;
  justify-content: center;
}
.all-agree .check.v1 label {
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .all-agree .check.v1 label {
    font-size: 1.6rem;
  }
}

/* 포토슬라이드 게시판 상세 */
.view-imgSd {
  position: relative;
  overflow: hidden;
}

.photoSd2,
.photoSd {
  position: relative;
}
.photoSd2 .swiper-slide,
.photoSd .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
}
.photoSd2 .swiper-slide img,
.photoSd .swiper-slide img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.photoSd .swiper-slide {
  padding-top: 62.5%;
  border-radius: 8px;
  opacity: 1;
}
.photoSd .swiper-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.photoSd .btn-img-down {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 5;
}
.photoSd .swiper-button-next,
.photoSd .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 8rem;
  height: 8rem;
}
@media (max-width: 1199px) {
  .photoSd .swiper-button-next,
  .photoSd .swiper-button-prev {
    width: 6rem;
    height: 6rem;
  }
}
@media (max-width: 767px) {
  .photoSd .swiper-button-next,
  .photoSd .swiper-button-prev {
    width: 4rem;
    height: 4rem;
  }
}
.photoSd .swiper-button-next {
  background: url("../img/common/btn_next_gray.png") no-repeat center;
  background-size: contain;
  right: 0;
}
.photoSd .swiper-button-prev {
  background: url("../img/common/btn_prev_gray.png") no-repeat center;
  background-size: contain;
  left: 0;
}

.photoSd2 {
  position: relative;
  margin-top: 3.2rem;
  /* 기본 Bullet 스타일 */
  /* 활성화된 Bullet 스타일 */
}
@media (max-width: 767px) {
  .photoSd2 {
    margin-top: 1.6rem;
  }
}
.photoSd2 .swiper-slide {
  background-size: cover;
  padding-top: 12%;
  border-radius: 8px;
  opacity: 1;
  cursor: pointer;
}
@media (max-width: 767px) {
  .photoSd2 .swiper-slide {
    padding-top: 25%;
  }
}
.photoSd2 .swiper-slide .btn-img-down {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 5;
}
.photoSd2 .swiper-button-next,
.photoSd2 .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 4rem;
  height: 4rem;
}
@media (max-width: 767px) {
  .photoSd2 .swiper-button-next,
  .photoSd2 .swiper-button-prev {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (max-width: 480px) {
  .photoSd2 .swiper-button-next,
  .photoSd2 .swiper-button-prev {
    display: none;
  }
}
.photoSd2 .swiper-button-next {
  background: url("../img/common/btn_next_gray.png") no-repeat center;
  background-size: contain;
  right: 0;
}
.photoSd2 .swiper-button-prev {
  background: url("../img/common/btn_prev_gray.png") no-repeat center;
  background-size: contain;
  left: 0;
}
.photoSd2 .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: #e8e8e8;
  opacity: 1;
}
.photoSd2 .swiper-pagination-bullet-active {
  background-color: var(--navy-color);
}

.view-imgSd.v2 .photoSd .swiper-slide {
  background: #F4F4F4;
}
@media (max-width: 767px) {
  .view-imgSd.v2 .photoSd .swiper-slide {
    padding-top: 144%;
    border: 1px solid #DEDEDE;
  }
}
.view-imgSd.v2 .photoSd .swiper-slide img {
  height: 100%;
  width: auto;
}
.view-imgSd.v2 .photoSd2 .swiper-slide {
  border: 1px solid #DEDEDE;
}

.pw-check-qna {
  margin: 0 auto;
}
.pw-check-qna .pw-check-wrap {
  padding: 2.4rem 3.6rem;
  border-radius: 16px;
  background: #F8F8F8;
}
@media (max-width: 767px) {
  .pw-check-qna .pw-check-wrap {
    padding: 2.4rem;
  }
}
.pw-check-qna .pw-check-wrap .tit-wrap .tit {
  font-size: 2.2rem;
  text-align: center;
  color: #1D1D1D;
  display: block;
  font-weight: 700;
}
@media (max-width: 767px) {
  .pw-check-qna .pw-check-wrap .tit-wrap .tit {
    font-size: 1.8rem;
  }
}
.pw-check-qna .pw-check-wrap .cont-wrap {
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .pw-check-qna .pw-check-wrap .cont-wrap {
    margin-top: 0.8rem;
  }
}
.pw-check-qna .pw-check-wrap .cont-wrap .txt {
  font-size: 1.6rem;
  color: #1D1D1D;
  text-align: center;
}
@media (max-width: 767px) {
  .pw-check-qna .pw-check-wrap .cont-wrap .txt {
    font-size: 1.4rem;
  }
}
.pw-check-qna .pw-check-wrap .cont-wrap .password {
  margin: 2.4rem auto 0;
  width: 100%;
}
.pw-check-qna .pw-check-wrap .cont-wrap .password input[type=password] {
  font-size: 1.6rem;
  color: #1d1d1d;
}
.pw-check-qna .pw-check-wrap .cont-wrap .password input[type=password]::placeholder {
  font-weight: 400;
  font-size: 1.6rem;
}
.pw-check-qna .pw-check-wrap .cont-wrap .password .pw-confirm {
  height: 5.4rem;
}
.pw-check-qna .pw-check-wrap .btn-wrap {
  gap: 1rem;
}
.pw-check-qna .pw-check-wrap .btn-wrap .btn {
  /*flex:1 0;*/
  height: 5.2rem;
}

.jq-datepicker {
  color: #1D1D1D !important;
  padding-right: 35px !important;
  background: url("../img/icon/jq-datepicker.png") no-repeat right 19px center !important;
  /*background-repeat: no-repeat;
  background-position: right 19px center;*/
}
.jq-datepicker:focus {
  border-color: #5e83d3;
  outline: none;
}

.ui-datepicker {
  margin-top: 5px;
  padding: 19px;
  border-radius: 5px;
  font-family: inherit;
}
.ui-datepicker.ui-widget-content {
  border: 1px solid #141516;
}

.ui-datepicker {
  width: 300px;
  font-size: 14px;
}
.ui-datepicker .ui-datepicker-header {
  display: flex;
  align-items: center;
  height: 35px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 0;
  width: 35px;
  height: 35px;
  border: none;
  background: transparent;
  transform: rotate(-90deg);
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 4px;
  margin-top: 0;
  margin-left: 0;
  background: transparent;
  background-image: url("../img/icon/arrow-icon--up.png");
  transform: translate(-50%, -50%);
}
.ui-datepicker .ui-datepicker-prev {
  left: 105px;
}
.ui-datepicker .ui-datepicker-next {
  right: 0;
  transform: rotate(90deg);
}
.ui-datepicker .ui-datepicker-title {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  position: relative;
  width: 105px;
  height: 35px;
  padding: 0 30px 0 15px;
  border: 1px solid #dedede;
  border-radius: 5px;
  background-image: url(../img/icon/arrow-icon--down.png);
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.ui-datepicker .ui-datepicker-month {
  width: calc(100% - 105px);
}
.ui-datepicker table {
  margin: 0;
}
.ui-datepicker th,
.ui-datepicker td {
  vertical-align: middle;
  width: 37px;
  height: 37px;
  padding: 0;
}
.ui-datepicker th a,
.ui-datepicker td a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.ui-datepicker th.ui-datepicker-week-end:first-child,
.ui-datepicker td.ui-datepicker-week-end:first-child {
  color: #ef2323;
}
.ui-datepicker th.ui-datepicker-week-end:last-child,
.ui-datepicker td.ui-datepicker-week-end:last-child {
  color: #5e83d3;
}
.ui-datepicker th.ui-datepicker-week-end a,
.ui-datepicker td.ui-datepicker-week-end a {
  color: inherit;
}
.ui-datepicker th.ui-datepicker-today a,
.ui-datepicker td.ui-datepicker-today a {
  border: 1px solid #e2e2e2;
}
.ui-datepicker th.ui-datepicker-current-day a,
.ui-datepicker td.ui-datepicker-current-day a {
  color: #fff;
  background-color: #5e83d3;
}
.ui-datepicker th.ui-datepicker-current-day a:hover, .ui-datepicker th.ui-datepicker-current-day a:focus,
.ui-datepicker td.ui-datepicker-current-day a:hover,
.ui-datepicker td.ui-datepicker-current-day a:focus {
  background-color: #5e83d3;
}
.ui-datepicker th {
  height: 44px;
}
.ui-datepicker .ui-state-default {
  border: none;
  text-align: center;
  background-color: transparent;
}
.ui-datepicker .ui-state-default:hover, .ui-datepicker .ui-state-default:focus {
  background-color: #f7f9fd;
}

/* 동반성장지수 태그 */
.tag-index.v1 {
  padding: 0.4rem;
  font-size: 1rem;
  text-align: center;
  display: inline-block;
  font-weight: 800;
  border-radius: 2px;
  line-height: 1.2;
}
.tag-index.v1.red {
  color: #fff;
  background: #BD3A65;
}
.tag-index.v1.blue {
  color: #fff;
  background: #2D6DB2;
}

input[type=text].cont-input {
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  font-size: 1.4rem;
  height: 3.5rem;
  padding: 0 0.5rem;
}

/* 첨부파일 */
.index-file-area .tit-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-file-area .tit-wrap .file-info-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.index-file-area .tit-wrap .file-info-wrap .info-wrap {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .index-file-area .tit-wrap .file-info-wrap .info-wrap {
    display: none;
  }
}
.index-file-area .tit-wrap .file-info-wrap .info {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #606060;
  letter-spacing: -0.04em;
}
.index-file-area .tit-wrap .file-info-wrap .upload-info-tit {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #606060;
  letter-spacing: -0.04em;
}
.index-file-area .file-list-wrap {
  margin-top: 0.8rem;
  background: #F8F8F8;
  border-radius: 8px;
  padding: 1.2rem;
}
.index-file-area .file-list-wrap .file-ul {
  overflow-y: auto;
  height: 12rem;
}
.index-file-area .file-list-wrap .file-ul .file-li {
  gap: 0.6rem;
  padding: 0.4rem 0;
}
.index-file-area .file-list-wrap .file-ul .file-li .progress-wrap {
  display: none;
}
.index-file-area .file-list-wrap .file-ul .file-li .file-wrap {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
}
.index-file-area .file-list-wrap .file-ul .file-li .txt {
  font-size: 1.2rem;
  color: #323232;
}
.index-file-area .file-list-wrap .file-ul .file-li .btn-delete {
  margin-left: 0.6rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/icon/ico_delete.png") no-repeat center;
  background-size: 1.5rem auto;
  padding: 0;
  /*          .ico--trash-can {
              width: 1.6rem;
              height: 1.6rem;
              background: url("../img/icon/ico_delete.png") no-repeat center;
              background-size: 1.5rem auto;
            }*/
}

.index-file-upload {
  height: 3.6rem;
  padding: 0 1rem;
  font-size: 1.4rem;
  color: #878787;
  border-radius: 4px;
  border: 1px solid #BFBFBF;
  text-align: center;
  flex: none;
}
.index-file-upload input[type=file] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

/* 동반성장지수 테이블 */
@media (max-width: 767px) {
  .index-table-top {
    margin-top: 0;
  }
}
.index-table-top:has(.btn-wrap) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-table-top:has(.select-wrap) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-table-top .page_all {
  font-size: 1.6rem;
  color: #1D1D1D;
}
.index-table-top .select-wrap {
  height: 4rem;
  padding: 0;
  flex: none;
}
.index-table-top .select-wrap select {
  height: 100%;
  padding: 0 1.6rem;
  background-position: right 1.6rem center;
}

.index-table {
  border-top: 1px solid #1D1D1D;
}
.index-table.scrollX-table {
  overflow-x: auto;
}
.index-table table .link {
  text-decoration: underline;
}
.index-table.v1 table th,
.index-table.v1 table td {
  border: 1px solid #DEDEDE;
  vertical-align: middle;
}
.index-table.v1 table th:first-child,
.index-table.v1 table td:first-child {
  border-left: none;
}
.index-table.v1 table th:last-child,
.index-table.v1 table td:last-child {
  border-right: none;
}
.index-table.v1 table thead {
  background: #F8F8F8;
}
.index-table.v1 table thead th {
  height: 6.4rem;
  font-weight: 700;
  font-size: 1.6rem;
  color: #323232;
  border-top: none;
}
.index-table.v1 table tbody td {
  height: 6.4rem;
  text-align: center;
  font-size: 1.6rem;
  color: #323232;
}
.index-table.v2 table th,
.index-table.v2 table td {
  border: 1px solid #DEDEDE;
  vertical-align: middle;
  text-align: left;
  padding: 0 1.6rem;
}
.index-table.v2 table th:first-child,
.index-table.v2 table td:first-child {
  border-left: none;
}
.index-table.v2 table th:last-child,
.index-table.v2 table td:last-child {
  border-right: none;
}
.index-table.v2 table tbody th {
  height: 6.4rem;
  font-size: 1.6rem;
  color: #1D1D1D;
  background: #F8F8F8;
  font-weight: 400;
}
.index-table.v2 table tbody td {
  height: 6.4rem;
  font-size: 1.6rem;
  color: #606060;
}
.index-table.v2 .mobile-v {
  display: none;
}
@media (max-width: 767px) {
  .index-table.v2 .pc-v {
    display: none;
  }
  .index-table.v2 .mobile-v {
    display: block;
  }
  .index-table.v2 .mobile-v th, .index-table.v2 .mobile-v td {
    font-size: 1.4rem;
    height: 5.7rem;
  }
}

.index-detail-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.6rem;
  height: 57.6rem;
  overflow: visible;
}
.index-detail-wrap .index-write-area {
  display: none;
}
.index-detail-wrap.on {
  height: auto;
}
.index-detail-wrap.on .beginning {
  display: none;
}
.index-detail-wrap.on .index-write-area {
  display: block;
}
.index-detail-wrap.on .index-table-detail {
  height: 80rem;
}
@media (max-width: 1023px) {
  .index-detail-wrap.on .index-table-detail {
    height: auto;
  }
}
@media (max-width: 1023px) {
  .index-detail-wrap {
    height: auto;
    display: block;
  }
}
@media (max-width: 1023px) {
  .index-detail-wrap .index-table-detail {
    max-width: 100%;
    width: 100%;
    position: initial;
    top: 0;
  }
}

.dragging-major .major-table-tit td {
  background-color: #CDD7F1;
}

.dragging-mid {
  border: 2px solid var(--green-gradient-color);
}

.dragging-minor {
  border: 2px solid var(--green-gradient-color);
}

.index-table-detail {
  max-width: 51rem;
  width: 40%;
  border-top: 1px solid #1D1D1D;
  background: #F8F8F8;
  padding: 0 0.8rem 1.6rem 0.8rem;
  overflow-y: auto;
  position: sticky;
  top: 147px;
  height: 100%;
}
.index-table-detail.active {
  height: 100%;
}
.index-table-detail table th,
.index-table-detail table td {
  vertical-align: middle;
  text-align: center;
}
.index-table-detail table thead th {
  height: 6.4rem;
  background: #F8F8F8;
  text-align: center;
  font-size: 1.4rem;
  color: #1D1D1D;
  font-weight: 400;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .index-table-detail table thead th {
    height: 5.7rem;
  }
}
.index-table-detail table tbody tr {
  border-radius: 8px;
}
.index-table-detail table tbody td {
  font-size: 1.4rem;
  color: #606060;
  height: 6.4rem;
  background: #fff;
  line-height: 1.2;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .index-table-detail table tbody td {
    word-break: break-all;
    height: 5.7rem;
  }
}
.index-table-detail table tbody td .tit-wrap {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.index-table-detail table tbody td .tit-wrap .tit {
  color: #1D1D1D;
}
.index-table-detail table tbody td:first-child:not(.mid-class-wrap td, .minor-class-wrap td) {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.index-table-detail table tbody td:last-of-type:not(.mid-class-wrap td, .minor-class-wrap td) {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.index-table-detail table tbody td:not(.minor-class-wrap td, .mid-class-wrap td) {
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .index-table-detail table tbody td:not(.minor-class-wrap td, .mid-class-wrap td) {
    padding: 0 0.5rem;
  }
}
.index-table-detail table .class-group + .class-group {
  margin-top: 1.2rem;
}
.index-table-detail table .link:hover {
  cursor: pointer;
}
.index-table-detail table .sub-tit {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy-color);
  text-align: left;
  display: block;
}
.index-table-detail table .sub-tit:before {
  content: "";
  display: inline-block;
  margin-right: 0.6rem;
  width: 0.85rem;
  height: 1.15rem;
  background: url("../img/icon/ico_index_sub-tit.png") no-repeat center;
  background-size: contain;
}
.index-table-detail table .major-table-tit:hover td {
  background-color: #CDD7F1;
}
.index-table-detail table .major-table-tit .tit-wrap {
  display: flex;
  text-align: left;
}
.index-table-detail table .major-table-tit .tag-index {
  flex: none;
  margin-left: 0.3rem;
  margin-top: 0.3rem;
}
.index-table-detail table .major-table-tit.active td {
  background: #CDD7F1;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-color);
}
.index-table-detail table .major-table-tit.active td .tit {
  color: var(--navy-color);
}
.index-table-detail table .major-table-tit.active td:first-child {
  border-bottom-left-radius: 0;
}
.index-table-detail table .major-table-tit.active td:last-of-type {
  border-bottom-right-radius: 0;
}
.index-table-detail table .mid-class-wrap {
  display: none;
  border-top: 1px solid #fff;
}
.index-table-detail table .mid-class-wrap.open {
  display: table-row;
}
.index-table-detail table .mid-class-wrap > td {
  background: rgba(206, 213, 233, 0.65);
  width: 100%;
  padding: 1.6rem;
  border-radius: 0 !important;
}
.index-table-detail table .mid-class-wrap .mid-class {
  border-top: 1px solid #1D1D1D;
}
.index-table-detail table .mid-class-wrap .mid-class thead {
  border-bottom: 1px solid #B6D3F6;
}
.index-table-detail table .mid-class-wrap .mid-class tbody {
  border-bottom: 1px solid #B6D3F6;
}
.index-table-detail table .mid-class-wrap .mid-class tbody td {
  color: #1D1D1D;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .index-table-detail table .mid-class-wrap .mid-class tbody td {
    padding: 0 0.5rem;
  }
}
.index-table-detail table .mid-class-wrap .mid-class tbody td:nth-child(1) {
  text-align: left;
}
.index-table-detail table .mid-class-wrap .mid-class tbody .link.active td {
  color: var(--navy-color);
  font-weight: 700;
}
.index-table-detail table .minor-class-wrap {
  display: none;
}
.index-table-detail table .minor-class-wrap.open {
  display: table-row;
}
.index-table-detail table .minor-class-wrap > td {
  background: rgba(206, 213, 233, 0.4);
  width: 100%;
  padding: 1.6rem;
  border-radius: 0 !important;
}
.index-table-detail table .minor-class-wrap .minor-class {
  border-top: 1px solid #1D1D1D;
}
.index-table-detail table .minor-class-wrap .minor-class thead {
  border-bottom: 1px solid #B6D3F6;
}
.index-table-detail table .minor-class-wrap .minor-class tbody {
  border-bottom: 1px solid #B6D3F6;
}
.index-table-detail table .minor-class-wrap .minor-class tbody td {
  color: #1D1D1D;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 0 1rem;
}
.index-table-detail table .minor-class-wrap .minor-class tbody td:nth-child(1) {
  text-align: left;
}
.index-table-detail table .minor-class-wrap .minor-class tbody td.active {
  color: var(--navy-color);
  font-weight: 700;
}
.index-table-detail table .minor-class-wrap .minor-class tbody .link.active td {
  color: var(--navy-color);
  font-weight: 700;
}

.index-detail-write {
  max-width: 74.4rem;
  width: 60%;
  height: 100%;
  border: 1px solid #DEDEDE;
  border-top: 1px solid #1D1D1D;
}
@media (max-width: 1023px) {
  .index-detail-write {
    margin-top: 3.2rem;
    max-width: 100%;
    width: 100%;
    border-top: 1px solid #DEDEDE;
  }
}
.index-detail-write .beginning {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .index-detail-write .beginning {
    height: 45rem;
  }
}
.index-detail-write .beginning .icon-area {
  margin: 0 auto;
  width: 10.9rem;
  height: 10.9rem;
  background: url("../img/icon/ico_index_detail.png") no-repeat center;
  background-size: contain;
}
.index-detail-write .beginning .txt {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 1.6rem;
  color: #1D1D1D;
}

.index-write-area {
  padding-bottom: 1.6rem;
}
.index-write-area .main-tit-wrap {
  min-height: 6.4rem;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-write-area .main-tit-wrap .tit {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy-color);
}
@media (max-width: 767px) {
  .index-write-area .main-tit-wrap .tit {
    font-size: 1.4rem;
  }
}
.index-write-area .sub-tit-wrap {
  display: flex;
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
}
@media (max-width: 767px) {
  .index-write-area .sub-tit-wrap {
    flex-wrap: wrap;
    border-bottom: none;
  }
}
.index-write-area .sub-tit-wrap .sub-tit-table {
  flex: 1 0;
  display: flex;
  align-items: center;
  min-height: 5rem;
}
@media (max-width: 767px) {
  .index-write-area .sub-tit-wrap .sub-tit-table {
    flex: 1 0 auto;
    min-height: 5.7rem;
    width: 50%;
    border-bottom: 1px solid #DEDEDE;
  }
}
.index-write-area .sub-tit-wrap .sub-tit-table .tit-wrap {
  background: #F8F8F8;
  width: 45%;
  height: 100%;
  border-left: 1px solid #DEDEDE;
  border-right: 1px solid #DEDEDE;
}
@media (max-width: 767px) {
  .index-write-area .sub-tit-wrap .sub-tit-table .tit-wrap {
    width: 47%;
  }
}
.index-write-area .sub-tit-wrap .sub-tit-table .tit-wrap .required:before {
  margin-right: 0;
}
.index-write-area .sub-tit-wrap .sub-tit-table .tit-wrap .tit {
  font-size: 1.4rem;
  color: #111111;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  letter-spacing: -0.05em;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .index-write-area .sub-tit-wrap .sub-tit-table .tit-wrap .tit {
    font-weight: 400;
  }
}
.index-write-area .sub-tit-wrap .sub-tit-table:nth-of-type(1) .tit-wrap {
  border-left: none;
}
.index-write-area .sub-tit-wrap .sub-tit-table .cont-wrap {
  background: #ffffff;
  width: 55%;
  padding: 0.75rem 1rem;
}
@media (max-width: 767px) {
  .index-write-area .sub-tit-wrap .sub-tit-table .cont-wrap {
    width: 53%;
  }
}
.index-write-area .sub-tit-wrap .sub-tit-table .cont-wrap .txt {
  /*height: 100%;*/
  color: #606060;
  font-size: 1.4rem;
  text-align: center;
  display: inline-block;
  width: 100%;
}
.index-write-area .application-cont-wrap {
  border-bottom: 1px solid #DEDEDE;
}
.index-write-area .application-cont-wrap .cont-inner {
  padding: 3rem 1.6rem;
}
.index-write-area .application-cont-wrap .cont-inner .txt {
  display: block;
  font-size: 1.4rem;
  color: #606060;
  line-height: 1.4;
  letter-spacing: -0.04em;
  word-break: break-all;
}
.index-write-area .application-cont-wrap .cont-inner .txt p {
  word-break: break-all;
}
.index-write-area .application-cont-wrap + .sub-tit-wrap, .index-write-area .application-cont-wrap + .admin-info {
  border-top: none;
}
.index-write-area .application-cont-wrap .pre-write {
  background: #ECECEC;
  min-height: 12rem;
  border-top: 1px solid #DEDEDE;
}

.index-box-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem auto 0;
  width: calc(100% - 2.4rem);
  border: 1px solid #DEDEDE;
}
.index-box-wrap .box-tit-wrap {
  background: rgba(206, 213, 233, 0.4);
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-box-wrap .box-tit-wrap .tit {
  font-size: 1.4rem;
  color: var(--navy-color);
  display: block;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
}
.index-box-wrap .box-inner {
  padding: 1.2rem;
}
.index-box-wrap .box-sub-tit-wrap {
  min-height: 3.6rem;
}
.index-box-wrap .box-sub-tit-wrap .tit {
  font-size: 1.4rem;
  color: #1D1D1D;
  font-weight: 600;
}

.admin-info {
  border-top: 1px solid #DEDEDE;
}
.admin-info .pop_link {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .admin-info .sub-tit-wrap .sub-tit-table {
    width: 100%;
  }
  .admin-info .sub-tit-wrap .sub-tit-table .tit-wrap {
    width: 40%;
    border-left: none;
  }
  .admin-info .sub-tit-wrap .sub-tit-table .tit-wrap .tit {
    text-align: center;
  }
  .admin-info .sub-tit-wrap .sub-tit-table .cont-wrap {
    width: 60%;
  }
}

/* 상단으로 이동 버튼 */
.btn-top-area {
  position: fixed;
  width: 6.8rem;
  height: 6.8rem;
  bottom: 2.5rem;
  margin-left: auto;
  right: 0;
  z-index: 99999;
  display: none;
}
@media (max-width: 1023px) {
  .btn-top-area {
    display: block;
  }
}
.btn-top-area .btn-top {
  display: none;
  width: 100%;
  height: 100%;
  background: url("../img/common/btn_top.png") no-repeat center;
  background-size: contain;
}
.btn-top-area .btn-top.active {
  display: block;
}

/* 팝업 */
.index-common-pop {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 1rem 0 4rem 0;
  max-height: 80vh;
  height: 100%;
  width: 95%;
  z-index: 99999;
  border-radius: 16px;
  box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.1);
  font-size: 30%;
  min-width: 30rem;
}
@media (max-width: 1023px) {
  .index-common-pop {
    padding: 0 0 3.2rem 0;
    width: 97%;
    box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.3);
  }
}
.index-common-pop.on {
  display: block;
}
.index-common-pop .index-popup-inner {
  height: 100%;
}
.index-common-pop .index-pop-body {
  padding: 1.6rem 1.5rem 0 1.5rem;
}
@media (max-width: 767px) {
  .index-common-pop .index-pop-body {
    padding: 1.6rem 0.5rem 0 0.5rem;
  }
}

.index-pop-head {
  display: flex;
  justify-content: space-between;
  padding: 2rem 4rem;
  border-bottom: 1px solid #DEDEDE;
}
@media (max-width: 1023px) {
  .index-pop-head {
    padding: 2rem 0;
    margin: 0 2rem;
  }
}
.index-pop-head .tit-wrap .tit {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1D1D1D;
}
@media (max-width: 767px) {
  .index-pop-head .tit-wrap .tit {
    font-size: 1.8rem;
  }
}
.index-pop-head .pop_close {
  width: 2.4rem;
  height: 2.4rem;
  background: url("../img/common/btn_close_gray.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 767px) {
  .index-pop-head .pop_close {
    width: 2rem;
    height: 2rem;
  }
}

.index-popup-wrap * {
  font-size: inherit;
}

.index-pop-body-scroll {
  max-height: calc(100% - 6.8rem);
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .index-pop-body-scroll {
    padding: 0;
    margin: 0 1.5rem;
  }
}

/* 등록작 정보 테이블 */
.index-admin-table {
  background: #F8F8F8;
  border-top: 1px solid #1D1D1D;
  padding: 0 1.6rem 0.8rem 1.6rem;
}
.index-admin-table table th, .index-admin-table table td {
  vertical-align: middle;
}
.index-admin-table table thead th {
  height: 6.4rem;
  font-size: 1.4rem;
  color: #1D1D1D;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .index-admin-table table thead th {
    height: 5.7rem;
  }
}
.index-admin-table table tbody tr {
  background: #fff;
}
.index-admin-table table tbody td {
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  height: 6.4rem;
  text-align: center;
  color: #606060;
}
.index-admin-table table tbody td:first-of-type {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.index-admin-table table tbody td:nth-last-child(1) {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media (max-width: 767px) {
  .index-admin-table table tbody td {
    height: 5.7rem;
  }
}

/* 등록자 정보 */
.admin-info-popup .index-pop-body-scroll {
  height: 100%;
}
.admin-info-popup .scroll-xy {
  overflow: auto;
}
.admin-info-popup .index-pop-body {
  /*min-height:40rem;*/
  height: 100%;
  padding-top: 0;
  max-height: calc(100% - 10rem);
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .admin-info-popup .index-pop-body {
    width: 98%;
  }
}
.admin-info-popup .index-admin-table {
  border-top: 1px solid #1d1d1d;
}
.admin-info-popup .index-admin-table table {
  border-collapse: separate;
  border-spacing: 0;
}
.admin-info-popup .index-admin-table thead {
  background: #F8F8F8;
  position: sticky;
  top: 0;
  z-index: 10;
}
.admin-info-popup .mCSB_container {
  height: 100%;
}

/* 동반성장지수 버튼 */
.index-btn-wrap {
  display: flex;
  gap: 1.6rem 4rem;
  width: 100%;
  align-items: stretch;
}
@media (max-width: 767px) {
  .index-btn-wrap {
    flex-direction: column;
  }
}
.index-btn-wrap .index-btn-cont {
  flex: 1 0;
  display: flex;
  flex-direction: column;
}
.index-btn-wrap .index-btn-cont .index-btn {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 4rem;
  flex: 1 0;
}
@media (max-width: 767px) {
  .index-btn-wrap .index-btn-cont .index-btn {
    padding: 2.4rem 3.2rem;
  }
}
.index-btn-wrap .index-btn-cont .index-btn .cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
.index-btn-wrap .index-btn-cont .index-btn .cont .tit-wrap .tit {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.4;
  color: #1d1d1d;
}
@media (max-width: 767px) {
  .index-btn-wrap .index-btn-cont .index-btn .cont .tit-wrap .tit {
    font-size: 1.8rem;
  }
}
.index-btn-wrap .index-btn-cont .index-btn .cont .tit-wrap .txt {
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 400;
  color: #323232;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .index-btn-wrap .index-btn-cont .index-btn .cont .tit-wrap .txt {
    font-size: 1.4rem;
  }
}
.index-btn-wrap .index-btn-cont .index-btn .cont img {
  width: 11.5rem;
  height: auto;
}
.index-btn-wrap .index-btn-cont .index-btn .btn {
  margin-top: 2.4rem;
  display: inline-flex;
  height: 4.3rem;
  min-height: auto;
  font-size: 1.8rem;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .index-btn-wrap .index-btn-cont .index-btn .btn {
    height: 3.7rem;
    font-size: 1.4rem;
  }
}
.index-btn-wrap .index-btn-cont .index-btn .btn:after {
  margin-left: 1.2rem;
}
.index-btn-wrap .index-btn-cont .index-btn:hover {
  border: 1px solid var(--navy-color);
}
.index-btn-wrap .index-btn-cont .notice-txt {
  font-size: 1.8rem;
  text-indent: -1.3rem;
  margin-left: 1.3rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .index-btn-wrap .index-btn-cont .notice-txt {
    font-size: 1.4rem;
  }
}

.major-class thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
