@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, textarea, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
}

fieldset, img {
  border: 0;
}

dl, ul, ol, li {
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
  vertical-align: middle;
}

button {
  font-size: inherit;
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

a {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
}

address, caption, cite, code, dfn, em, var {
  font-style: normal;
  font-weight: inherit;
}

img {
  vertical-align: top;
}

body {
  -webkit-text-size-adjust: none;
}

.hide {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

@font-face {
  font-family: "OneShinhan";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local(※), url("../fonts/OneShinhanLight.woff") format("woff");
}
@font-face {
  font-family: "OneShinhan";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(※), url("../fonts/OneShinhanMedium.woff") format("woff");
}
@font-face {
  font-family: "OneShinhan";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(※), url("../fonts/OneShinhanBold.woff") format("woff");
}
body {
  color: #000;
  font-size: 14px;
  font-family: "Noto Sans KR", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 1;
  background: #20212c;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

#wrap {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
#wrap .cont {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 1220px) {
  #wrap .cont {
    margin: 0 20px;
  }
}
@media (max-width: 960px) {
  #wrap .cont {
    margin: 0 16px;
  }
}

#main_header {
  position: absolute;
  width: 100%;
  height: 90px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  border-bottom: 1px solid #eaeaea;
  background: #fff;
  z-index: 2000;
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  #main_header {
    position: fixed;
    height: 56px;
    border: 0;
  }
}
#main_header .logo {
  margin-left: 33px;
}
#main_header .logo a {
  display: block;
  width: 107px;
  height: 36px;
  background-image: url("../images/logo_pc.png");
  background-size: 107px 36px;
  background-repeat: no-repeat;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
@media (max-width: 960px) {
  #main_header .logo {
    margin-left: 12px;
  }
  #main_header .logo a {
    width: 86px;
    height: 29px;
    background-image: url("../images/logo_mobile.png");
    background-size: 86px 29px;
  }
}
#main_header .header_menu .btn_header_menu_toggle {
  display: none;
}
@media (max-width: 960px) {
  #main_header .header_menu {
    --bar-color: #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 2000;
  }
  #main_header .header_menu .btn_header_menu_toggle span::after, #main_header .header_menu .btn_header_menu_toggle span::before, #main_header .header_menu .btn_header_menu_toggle::after, #main_header .header_menu .btn_header_menu_toggle::before {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--bar-color);
    content: "";
  }
  #main_header .header_menu .gnb,
#main_header .header_menu .user {
    display: none;
  }
  #main_header .header_menu .btn_header_menu_toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    overflow: hidden;
    font-size: 1px;
    text-indent: -999px;
  }
  #main_header .header_menu .btn_header_menu_toggle::before {
    top: 4px;
  }
  #main_header .header_menu .btn_header_menu_toggle::after {
    bottom: 4px;
  }
  #main_header .header_menu .btn_header_menu_toggle span::before {
    top: 11px;
    transition: transform 0.3s;
  }
  #main_header .header_menu .btn_header_menu_toggle span::after {
    top: 11px;
    transition: transform 0.3s;
  }
  #main_header .header_menu.menu-on {
    --bar-color: #fff;
    bottom: 0;
  }
  #main_header .header_menu.menu-on .gnb,
#main_header .header_menu.menu-on .user {
    display: block;
  }
  #main_header .header_menu.menu-on .btn_header_menu_toggle::before, #main_header .header_menu.menu-on .btn_header_menu_toggle::after {
    display: none;
  }
  #main_header .header_menu.menu-on .btn_header_menu_toggle span::before {
    left: 1px;
    width: 22px;
    transform: rotate(45deg);
  }
  #main_header .header_menu.menu-on .btn_header_menu_toggle span::after {
    left: 1px;
    width: 22px;
    transform: rotate(-45deg);
  }
  #main_header .header_menu.menu-on .btn_history_back {
    display: none;
  }
}
#main_header .gnb {
  margin-left: 146px;
}
#main_header .gnb ul {
  display: flex;
}
#main_header .gnb ul li {
  line-height: 40px;
  margin-left: 26px;
}
#main_header .gnb ul li:first-child {
  display: none;
}
#main_header .gnb ul li:nth-child(2) {
  margin-left: 0;
}
#main_header .gnb ul li a {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 960px) {
  #main_header .gnb ul li a:hover {
    text-decoration: underline;
  }
}
#main_header .gnb ul li.selected a {
  color: rgba(0, 0, 0, 0.4);
  text-decoration: underline;
}
@media (max-width: 960px) {
  #main_header .gnb {
    position: absolute;
    top: 174px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    margin-left: 0;
    padding: 0 16px;
  }
  #main_header .gnb ul {
    position: relative;
    flex-direction: column;
  }
  #main_header .gnb ul::before {
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    content: "";
  }
  #main_header .gnb ul li {
    line-height: 33px;
    margin-left: 0;
    padding: 12px 0;
  }
  #main_header .gnb ul li:first-child {
    display: block;
    margin-bottom: 24px;
  }
  #main_header .gnb ul li a {
    color: #dbdbdb !important;
    font-size: 22px;
    font-weight: 500;
  }
  #main_header .gnb ul li.selected a {
    color: #fff !important;
  }
}
#main_header .user {
  position: absolute;
  top: 30px;
  right: 72px;
  line-height: 30px;
}
#main_header .user button {
  line-height: 30px;
  vertical-align: top;
}
#main_header .user .login {
  font-size: 13px;
  font-weight: 300;
}
#main_header .user .login strong {
  font-weight: 700;
  text-decoration: underline;
}
#main_header .user .login button {
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
}
#main_header .user .login strong ~ button {
  color: #757575;
  margin-left: 7px;
}
#main_header .user .info {
  font-size: 13px;
  font-weight: 300;
}
#main_header .user .info strong {
  font-weight: 700;
  text-decoration: underline;
}
#main_header .user .info button {
  color: #757575;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 7px;
}
@media (max-width: 960px) {
  #main_header .user .info button {
    float: right;
  }
}
@media (max-width: 960px) {
  #main_header .user {
    top: 75px;
    left: 16px;
    right: 16px;
    padding-top: 47px;
  }
  #main_header .user .login button {
    font-size: 20px;
  }
  #main_header .user .info {
    font-size: 14px;
    font-weight: 500;
  }
  #main_header .user .info strong {
    font-size: 20px;
    margin-right: 7px;
  }
  #main_header .user .info::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url("../images/icon_user_mobile.png");
    background-size: 32px 32px;
    background-repeat: no-repeat;
    content: "";
  }
}
#main_header.header_black {
  border-color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
}
#main_header.header_black .logo a {
  background-image: url("../images/logo_pc_white.png");
}
@media (max-width: 960px) {
  #main_header.header_black .logo a {
    background-image: url("../images/logo_mobile_white.png");
  }
}
#main_header.header_black .gnb a {
  color: #fff;
}
#main_header.header_black .gnb .selected a {
  color: rgba(255, 255, 255, 0.6);
}
#main_header.header_black .user {
  color: #fff;
}
#main_header.header_black .user button {
  color: #fff;
}
#main_header.header_black .user strong ~ button {
  color: #ddd;
}
#main_header.header_black .btn_header_menu_toggle {
  --bar-color: #fff;
}
#main_header.header-fixed {
  position: fixed;
}
#main_header.header-fixed.header_black {
  background-color: rgb(0, 0, 0);
  transition: background-color 0.3s;
}
#main_header .btn_history_back {
  display: none;
}
@media (max-width: 960px) {
  #main_header .btn_history_back {
    display: flex;
    position: absolute;
    top: 15px;
    left: 16px;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
  }
  #main_header .btn_history_back::before {
    width: 18px;
    height: 18px;
    background-image: url("../images/spr_common_pc.png");
    background-repeat: no-repeat;
    background-position: -70px -40px;
    margin: 4px 11px 0 0;
    content: "";
  }
}
@media (max-width: 960px) and (max-width: 960px) {
  #main_header .btn_history_back::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  #main_header .btn_history_back.blank {
    font-size: 0;
    color: rgba(0, 0, 0, 0);
  }
}

#main_footer {
  position: relative;
  height: 328px;
  color: #757575;
  background-color: #20212c;
  padding: 101px 0 0 359px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  #main_footer {
    height: auto;
    padding: 52px 16px 83px;
  }
}
#main_footer .logo {
  position: absolute;
  top: 95px;
  left: 72px;
}
#main_footer .logo a {
  display: block;
  width: 139px;
  height: 47px;
  background-image: url("../images/logo_footer_pc.png");
  background-size: 139px 47px;
  background-repeat: no-repeat;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
@media (max-width: 960px) {
  #main_footer .logo {
    position: static;
    margin-bottom: 37px;
  }
  #main_footer .logo a {
    width: 118px;
    height: 40px;
    background-image: url("../images/logo_footer_mobile.png");
    background-size: 118px 40px;
  }
}
#main_footer .menu ul {
  display: flex;
}
#main_footer .menu ul li {
  line-height: 20px;
  margin-left: 20px;
}
#main_footer .menu ul li:first-child {
  margin-left: 0;
}
#main_footer .menu ul li a {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 960px) {
  #main_footer .menu ul li {
    margin-left: 16px;
  }
}
#main_footer .links {
  position: fixed;
  bottom: 92px;
  right: 26px;
  z-index: 1000;
}
#main_footer .links ul {
  display: flex;
  flex-direction: column;
}
#main_footer .links ul li {
  padding: 5px;
}
#main_footer .links ul li a {
  display: block;
  padding: 4px;
}
#main_footer .links ul li span {
  display: block;
  width: 22px;
  height: 22px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  #main_footer .links ul li span {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
#main_footer .links ul li span.facebook {
  background-position: 0 0;
}
#main_footer .links ul li span.instagram {
  background-position: -30px 0;
}
#main_footer .links ul li span.youtube {
  background-position: -60px 0;
}
@media (max-width: 960px) {
  #main_footer .links {
    position: absolute;
    bottom: 20px;
    left: 2px;
    right: auto;
  }
  #main_footer .links ul {
    flex-direction: row;
  }
  #main_footer .links ul li {
    padding: 0;
  }
  #main_footer .links ul li a {
    padding: 0;
  }
  #main_footer .links ul li span {
    width: 40px;
    height: 40px;
  }
  #main_footer .links ul li span.facebook {
    background-position: 0 0;
  }
  #main_footer .links ul li span.instagram {
    background-position: -40px 0;
  }
  #main_footer .links ul li span.youtube {
    background-position: -80px 0;
  }
}
#main_footer address {
  font-size: 10px;
  line-height: 15px;
  margin-top: 30px;
}
#main_footer address p {
  margin-top: 4px;
}
#main_footer address p:first-child {
  margin: 0 0 12px;
}
#main_footer address p > span ~ span {
  margin-left: 20px;
}
@media (max-width: 960px) {
  #main_footer address {
    margin-top: 17px;
  }
}
#main_footer .copy {
  line-height: 20px;
  margin-top: 17px;
}
@media (max-width: 960px) {
  #main_footer .copy {
    margin-top: 26px;
  }
}

#content_wrapper {
  position: relative;
  box-sizing: border-box;
  min-height: calc(100vh - 366px);
  padding-top: 91px;
}
.header_black ~ #content_wrapper {
  padding-top: 0;
}
@media (max-width: 960px) {
  #content_wrapper {
    min-height: 100vh;
    padding-top: 56px;
  }
}
#content_wrapper .content_header {
  position: relative;
  z-index: 1;
  height: 436px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
}
@media (max-width: 960px) {
  #content_wrapper .content_header {
    height: 360px;
    overflow: hidden;
  }
}
#content_wrapper .content_header .cont {
  padding: 185px 0 0 13px;
}
@media (max-width: 960px) {
  #content_wrapper .content_header .cont {
    height: 100%;
    padding: 0 16px;
    margin: 0;
  }
}
#content_wrapper .content_header .title {
  font-size: 54px;
  line-height: 1;
}
@media (max-width: 960px) {
  #content_wrapper .content_header .title {
    display: none;
  }
}
#content_wrapper .content_header .sub_title {
  font-size: 21px;
  line-height: 40px;
  margin-top: 13px;
}
@media (max-width: 960px) {
  #content_wrapper .content_header .sub_title {
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 89px;
    font-size: 32px;
    line-height: 47px;
    margin-top: 0;
  }
}
#content_wrapper .content_header .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -196px;
  width: 1746px;
  height: 436px;
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  #content_wrapper .content_header .bg {
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 0;
  }
}
#content_wrapper .common_page .cont {
  padding: 185px 0 340px;
}
@media (max-width: 960px) {
  #content_wrapper .common_page .cont {
    padding: 24px 0 85px;
  }
}
#content_wrapper .common_page .title {
  color: #192a4f;
  font-size: 60px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
}
@media (max-width: 960px) {
  #content_wrapper .common_page .title {
    font-size: 24px;
    line-height: 36px;
  }
}
#content_wrapper .common_page .small_title {
  font-size: 21px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 40px;
  margin-top: 13px;
}
@media (max-width: 960px) {
  #content_wrapper .common_page .small_title {
    display: none;
  }
}
#content_wrapper .loader {
  background-image: url(../images/img_loader.gif);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 32px 32px;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  background-color: rgba(255, 255, 255, 0.8);
}

.layer-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}
@media (max-height: 839px) and (min-width: 961px) {
  .layer-wrap {
    position: absolute;
  }
}
@media (max-width: 960px) and (max-height: 839px) {
  .layer-wrap {
    position: absolute;
  }
}
.layer-wrap .layer-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.layer-wrap .layer {
  position: absolute;
  z-index: 5000;
}
.layer-wrap .layer.startup-presentation-2023 {
  top: 50%;
  left: 50%;
  margin: -420px 0 0 -472px;
  width: 944px;
  height: 840px;
  background: url("../images/layer/layer_startup_presentation_2023.jpg") no-repeat;
}
@media (max-height: 839px) and (min-width: 961px) {
  .layer-wrap .layer.startup-presentation-2023 {
    top: 100px;
    margin-top: 0;
  }
}
@media (max-width: 960px) {
  .layer-wrap .layer.startup-presentation-2023 {
    left: 10px;
    right: 10px;
    margin: 0;
    width: auto;
    height: auto;
    background-size: cover;
    aspect-ratio: 944/840;
    transform: translateY(-50%);
  }
}
@media (max-width: 960px) and (max-height: 839px) {
  .layer-wrap .layer.startup-presentation-2023 {
    top: 100px;
    left: 30px;
    right: 30px;
    transform: none;
  }
}
.layer-wrap .layer.startup-presentation-2023 .btn-registration {
  position: absolute;
  top: 657px;
  left: 247px;
  width: 451px;
  height: 78px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
@media (max-width: 960px) {
  .layer-wrap .layer.startup-presentation-2023 .btn-registration {
    top: 78%;
    left: 26%;
    width: 48%;
    height: auto;
    aspect-ratio: 451/78;
  }
}
.layer-wrap .layer.startup-presentation-2023 .hide-oneday {
  position: absolute;
  top: 794px;
  left: 717px;
}
.layer-wrap .layer.startup-presentation-2023 .hide-oneday input {
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 27px;
  opacity: 0;
  z-index: -1;
}
.layer-wrap .layer.startup-presentation-2023 .hide-oneday label {
  display: block;
  width: 209px;
  height: 27px;
  cursor: pointer;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
.layer-wrap .layer.startup-presentation-2023 .hide-oneday input:checked + label::before {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background-color: #fff;
  content: "";
}
@media (max-width: 960px) {
  .layer-wrap .layer.startup-presentation-2023 .hide-oneday {
    top: 94%;
    left: 76%;
    width: 23%;
    height: 5%;
  }
  .layer-wrap .layer.startup-presentation-2023 .hide-oneday input {
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
  }
  .layer-wrap .layer.startup-presentation-2023 .hide-oneday label {
    width: 100%;
    height: 100%;
  }
  .layer-wrap .layer.startup-presentation-2023 .hide-oneday input:checked + label::before {
    top: 26%;
    left: 3%;
    width: auto;
    height: 34%;
    aspect-ratio: 1/1;
  }
}
.layer-wrap .layer.startup-presentation-2023 .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 49px;
  height: 49px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
@media (max-width: 960px) {
  .layer-wrap .layer.startup-presentation-2023 .btn-close {
    width: 6%;
    height: 7%;
  }
}

.skip_navigation {
  position: absolute;
  top: -30px;
  left: 0;
  color: #fff;
  background: #000;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  padding: 5px;
  z-index: 100000;
}
.skip_navigation:focus {
  top: 0;
}

.btn_go_to_top {
  position: fixed;
  z-index: 1000;
  bottom: 24px;
  right: 24px;
}
.btn_go_to_top button {
  width: 44px;
  height: 44px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: 0 -30px;
}
@media (max-width: 960px) {
  .btn_go_to_top button {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .btn_go_to_top {
    display: none;
  }
}

.news_letter_wrap {
  position: relative;
}
.news_letter_wrap .cont {
  text-align: center;
  padding: 142px 0 107px;
}
@media (max-width: 960px) {
  .news_letter_wrap .cont {
    padding: 56px 0 65px;
  }
}
.news_letter_wrap .title {
  font-size: 33px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 49px;
}
@media (max-width: 960px) {
  .news_letter_wrap .title {
    color: #192a4f;
    font-size: 20px;
    line-height: 30px;
  }
}
.news_letter_wrap .text {
  color: #757575;
  font-size: 12px;
  line-height: 18px;
  margin-top: 12px;
}
@media (max-width: 960px) {
  .news_letter_wrap .text {
    color: #333;
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
  }
}
.news_letter_wrap .subscribe_form {
  position: relative;
  width: 426px;
  margin: 48px auto 0;
}
@media (max-width: 960px) {
  .news_letter_wrap .subscribe_form {
    width: auto;
    margin-top: 24px;
  }
}
.news_letter_wrap .subscribe_form legend {
  display: none;
}
.news_letter_wrap .subscribe_form .input_email {
  width: 100%;
  height: 56px;
  font-size: 14px;
  line-height: 26px;
  border: 1px solid #d5d9e1;
  background-color: #fff;
  padding: 13px 19px 15px;
  box-sizing: border-box;
  outline: 0;
}
.news_letter_wrap .subscribe_form .input_email:-ms-input-placeholder {
  color: #9797a2;
}
.news_letter_wrap .subscribe_form .input_email::-moz-placeholder {
  color: #9797a2;
}
.news_letter_wrap .subscribe_form .input_email::placeholder {
  color: #9797a2;
}
.news_letter_wrap .subscribe_form .checks {
  display: flex;
  justify-content: space-between;
  padding: 0 3px;
  margin-top: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 960px) {
  .news_letter_wrap .subscribe_form .checks {
    justify-content: start;
    flex-direction: column;
    text-align: left;
    border-top: 1px solid #dbdbdc;
    padding-top: 23px;
    margin-top: 24px;
  }
}
.news_letter_wrap .subscribe_form .checks li {
  position: relative;
  color: #757575;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.5px;
  padding-left: 28px;
}
@media (max-width: 960px) {
  .news_letter_wrap .subscribe_form .checks li {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
  }
  .news_letter_wrap .subscribe_form .checks li:first-child ~ li {
    margin-top: 26px;
  }
}
.news_letter_wrap .subscribe_form .checks input {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  opacity: 0;
  z-index: -1;
}
.news_letter_wrap .subscribe_form .checks a {
  text-decoration: underline;
}
.news_letter_wrap .subscribe_form .checks label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  content: "";
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: 0 -130px;
  background-color: #e9e9e9;
}
@media (max-width: 960px) {
  .news_letter_wrap .subscribe_form .checks label::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .news_letter_wrap .subscribe_form .checks label::before {
    top: 4px;
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #a8a8a8;
  }
}
.news_letter_wrap .subscribe_form .checks input:checked ~ label::before {
  background-position: -25px -130px;
  background-color: #192a4f;
}
@media (max-width: 960px) {
  .news_letter_wrap .subscribe_form .checks input:checked ~ label::before {
    background-position: 0 -40px;
    box-shadow: none;
  }
}
.news_letter_wrap .subscribe_form .btn_subscribe {
  width: 180px;
  height: 56px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  background-color: #192a4f;
  padding: 21px 0 23px;
  margin-top: 36px;
}
@media (max-width: 960px) {
  .news_letter_wrap .subscribe_form .btn_subscribe {
    height: 52px;
    font-size: 14px;
    padding: 0;
  }
}

.modal_textbox, .modal_confirm, .modal_notice {
  position: absolute;
  z-index: 1000;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1);
}
.modal_textbox .title, .modal_confirm .title, .modal_notice .title {
  display: block;
  color: #132b52;
  font-size: 18px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 1;
  margin-bottom: 16px;
}
@media (max-width: 960px) {
  .modal_textbox .title, .modal_confirm .title, .modal_notice .title {
    font-size: 16px;
  }
}
.modal_textbox .text, .modal_confirm .text, .modal_notice .text {
  min-height: 48px;
  line-height: 24px;
}
@media (max-width: 960px) {
  .modal_textbox .text, .modal_confirm .text, .modal_notice .text {
    font-size: 13px;
  }
}
.modal_textbox .textbox, .modal_confirm .textbox, .modal_notice .textbox {
  position: relative;
  height: 343px;
  overflow: hidden;
  overflow-y: auto;
  background-color: #fafafa;
  padding: 16px 32px;
  margin-top: 24px;
  box-sizing: border-box;
}
.modal_textbox .textbox .text, .modal_confirm .textbox .text, .modal_notice .textbox .text {
  color: #757575;
}
@media (max-width: 960px) {
  .modal_textbox .textbox, .modal_confirm .textbox, .modal_notice .textbox {
    font-size: 12px;
    padding: 16px;
  }
}
.modal_textbox .btns, .modal_confirm .btns, .modal_notice .btns {
  display: flex;
  margin-top: 16px;
}
.modal_textbox .btns button, .modal_confirm .btns button, .modal_notice .btns button {
  width: 89px;
  height: 40px;
  text-align: center;
  margin-left: 8px;
}
.modal_textbox .btns button.btn_confirm, .modal_confirm .btns button.btn_confirm, .modal_notice .btns button.btn_confirm {
  color: #fff;
  font-weight: 700;
  background-color: #192a4f;
}
.modal_textbox .btns button.btn_cancel, .modal_confirm .btns button.btn_cancel, .modal_notice .btns button.btn_cancel {
  color: #333;
  font-weight: 700;
  background-color: #fafafa;
}
.modal_textbox .btns button:disabled, .modal_confirm .btns button:disabled, .modal_notice .btns button:disabled {
  background-color: #dbdbdb;
  cursor: default;
}
@media (max-width: 960px) {
  .modal_textbox .btns button, .modal_confirm .btns button, .modal_notice .btns button {
    font-size: 13px;
  }
}
.modal_textbox .btn_modal_close, .modal_confirm .btn_modal_close, .modal_notice .btn_modal_close {
  position: absolute;
  top: 34px;
  right: 37px;
  width: 14px;
  height: 14px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -50px -230px;
}
@media (max-width: 960px) {
  .modal_textbox .btn_modal_close, .modal_confirm .btn_modal_close, .modal_notice .btn_modal_close {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .modal_textbox .btn_modal_close, .modal_confirm .btn_modal_close, .modal_notice .btn_modal_close {
    top: 20px;
    right: 16px;
    width: 18px;
    height: 18px;
    background-position: -95px -60px;
  }
}

.modal_notice {
  width: 380px;
  padding: 32px 32px 28px;
}
.modal_notice .btns {
  justify-content: right;
}
@media (max-width: 960px) {
  .modal_notice {
    width: 320px;
    padding: 20px 16px;
  }
}

.modal_confirm {
  padding: 32px 32px 28px;
}
.modal_confirm .btns {
  justify-content: right;
}

.modal_textbox {
  padding: 32px;
}
.modal_textbox .btns {
  margin-top: 24px;
  justify-content: center;
}
.modal_textbox .btns button {
  width: 272px;
  margin: 0;
}
@media (max-width: 960px) {
  .modal_textbox {
    padding: 20px 16px;
  }
}

.modals_wrap_fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20000;
}
.modals_wrap_fixed div[class^=modal] {
  width: 480px;
  box-shadow: none;
}
@media (max-width: 960px) {
  .modals_wrap_fixed div[class^=modal] {
    width: 320px;
  }
}
.modals_wrap_fixed div.modal_notice {
  top: 50%;
  left: 50%;
  margin-left: -240px;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .modals_wrap_fixed div.modal_notice {
    margin-left: -160px;
  }
}
.modals_wrap_fixed div.modal_confirm {
  top: 50%;
  left: 50%;
  margin-left: -240px;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .modals_wrap_fixed div.modal_confirm {
    margin-left: -160px;
  }
}
.modals_wrap_fixed div.modal_textbox {
  top: 50%;
  left: 50%;
  width: 800px;
  margin-left: -400px;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .modals_wrap_fixed div.modal_textbox {
    width: 320px;
    margin-left: -160px;
  }
}

.modal_textbox .textbox .text {
  font-size: 1em;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 300;
  line-height: 2em;
  word-break: break-all;
}
@media (max-width: 960px) {
  .modal_textbox .textbox .text {
    font-size: 0.857em;
  }
}
.modal_textbox .textbox .text h3 {
  font-size: 1.286em;
  line-height: 1em;
  margin-top: 2.222em;
  margin-bottom: 1.333em;
}
.modal_textbox .textbox .text h3:first-child {
  margin-top: 0;
}
.modal_textbox .textbox .text .tab_1 {
  padding-left: 1em;
}
.modal_textbox .textbox .text dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.857em;
}
@media (max-width: 960px) {
  .modal_textbox .textbox .text dl {
    border-top: 1px solid #082c55;
  }
}
.modal_textbox .textbox .text dl dt,
.modal_textbox .textbox .text dl dd {
  width: 27%;
  padding-left: 2%;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .modal_textbox .textbox .text dl dt,
.modal_textbox .textbox .text dl dd {
    display: flex;
    align-items: center;
    width: auto;
    padding: 10px;
    line-height: 1.5em;
  }
}
.modal_textbox .textbox .text dl dt {
  color: #192a4f;
  font-weight: 700;
  font-family: "Noto Sans KR", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 1em;
  border-bottom: 2px solid #082c55;
  padding-bottom: 1.214em;
}
.modal_textbox .textbox .text dl dt br {
  display: none;
}
@media (max-width: 960px) {
  .modal_textbox .textbox .text dl dt {
    width: 35%;
    line-height: 1.5em;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 10px;
  }
  .modal_textbox .textbox .text dl dt br {
    display: block;
  }
}
.modal_textbox .textbox .text dl dd {
  font-family: "Noto Sans KR", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 400;
  line-height: 1em;
  border-bottom: 1px solid #dbdbdb;
  padding-top: 1.143em;
  padding-bottom: 1.143em;
}
@media (max-width: 960px) {
  .modal_textbox .textbox .text dl dd {
    width: 65%;
  }
}
.modal_textbox .textbox .text dl dt:nth-child(1) {
  width: 19%;
  order: 1;
}
.modal_textbox .textbox .text dl dt:nth-child(3) {
  order: 2;
}
.modal_textbox .textbox .text dl dt:nth-child(5) {
  order: 3;
}
.modal_textbox .textbox .text dl dt:nth-child(7) {
  order: 4;
}
.modal_textbox .textbox .text dl dd:nth-child(2) {
  width: 19%;
  order: 5;
}
.modal_textbox .textbox .text dl dd:nth-child(4) {
  order: 6;
}
.modal_textbox .textbox .text dl dd:nth-child(6) {
  order: 7;
}
.modal_textbox .textbox .text dl dd:nth-child(8) {
  order: 8;
}
@media (max-width: 960px) {
  .modal_textbox .textbox .text dl dt:nth-child(1) {
    width: 35%;
    order: 1;
  }
  .modal_textbox .textbox .text dl dt:nth-child(3) {
    order: 3;
  }
  .modal_textbox .textbox .text dl dt:nth-child(5) {
    order: 5;
  }
  .modal_textbox .textbox .text dl dt:nth-child(7) {
    order: 7;
  }
  .modal_textbox .textbox .text dl dd:nth-child(2) {
    width: 65%;
    order: 2;
  }
  .modal_textbox .textbox .text dl dd:nth-child(4) {
    order: 4;
  }
  .modal_textbox .textbox .text dl dd:nth-child(6) {
    order: 6;
  }
  .modal_textbox .textbox .text dl dd:nth-child(8) {
    order: 8;
  }
}

.video_slider_wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 960px) {
  .video_slider_wrap {
    height: auto !important;
    padding-top: 56px;
  }
}
@media (max-width: 960px) {
  .video_slider_wrap[style*=background] {
    height: auto !important;
    aspect-ratio: 1/1;
  }
}
.video_slider_wrap .video_item {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.video_slider_wrap .video_item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 10;
  content: "";
}
.video_slider_wrap .video_item video {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: 100%;
  transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .video_slider_wrap .video_item video {
    left: 0;
    width: 100%;
    transform: none;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.video_slider_wrap .swiper-container {
  height: 100%;
}
.video_slider_wrap .swiper-button-next,
.video_slider_wrap .swiper-button-prev {
  color: #fff;
}
@media (max-width: 960px) {
.video_slider_wrap .swiper-container {
  aspect-ratio: 16/9;
  height: auto;
}
  .video_slider_wrap .swiper-button-next::after,
.video_slider_wrap .swiper-button-prev::after {
    font-size: 24px;
  }
}

.visual_slider_wrap {
  position: relative;
  height: 1012px;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 960px) {
  .visual_slider_wrap {
    height: auto !important;
    aspect-ratio: 1/1;
  }
}
.visual_slider_wrap .visual_item {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.visual_slider_wrap .visual_item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
}
.visual_slider_wrap .visual_item .cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 40px;
  box-sizing: border-box;
  z-index: 1;
}
@media (max-width: 1220px) {
  .visual_slider_wrap .visual_item .cont {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 960px) {
  .visual_slider_wrap .visual_item .cont {
    padding-bottom: 0;
  }
}
.visual_slider_wrap .visual_item .cont .small_title {
  color: #fff;
  font-size: 34px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 46px;
}
@media (max-width: 960px) {
  .visual_slider_wrap .visual_item .cont .small_title {
    font-size: 17px;
    line-height: 23px;
  }
}
.visual_slider_wrap .visual_item .cont h2 {
  color: #fff;
  font-size: 50px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 74px;
}
@media (max-width: 960px) {
  .visual_slider_wrap .visual_item .cont h2 {
    font-size: 25px;
    line-height: 37px;
  }
}
.visual_slider_wrap .visual_item .cont .text {
  color: #fff;
  font-size: 28px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 37px;
  margin-top: 40px;
}
@media (max-width: 960px) {
  .visual_slider_wrap .visual_item .cont .text {
    font-size: 14px;
    line-height: 19px;
    margin-top: 20px;
  }
}
.visual_slider_wrap .swiper-container {
  height: 100%;
}
.visual_slider_wrap .swiper-button-next,
.visual_slider_wrap .swiper-button-prev {
  color: #fff;
}
@media (max-width: 960px) {
  .visual_slider_wrap .swiper-button-next::after,
.visual_slider_wrap .swiper-button-prev::after {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .visual_slider_wrap .swiper-button-next {
    right: 0;
  }
}
@media (max-width: 960px) {
  .visual_slider_wrap .swiper-button-prev {
    left: 0;
  }
}

.map_module_wrap {
  height: 1482px;
  overflow: hidden;
  color: #fff;
  background-color: #192a4f;
}
@media (max-width: 960px) {
  .map_module_wrap {
    position: relative;
    height: auto;
  }
  .map_module_wrap::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 91px;
    background-color: #000;
    content: "";
  }
}
.map_module_wrap .cont {
  padding-top: 189px;
}
@media (max-width: 960px) {
  .map_module_wrap .cont {
    padding-top: 64px;
  }
}
.map_module_wrap h2 {
  font-size: 50px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 69px;
  text-align: center;
}
@media (max-width: 960px) {
  .map_module_wrap h2 {
    font-size: 24px;
    line-height: 33px;
    text-align: left;
  }
}
.map_module_wrap .tabs {
  margin-top: 61px;
}
@media (max-width: 960px) {
  .map_module_wrap .tabs {
    overflow: hidden;
    overflow-x: auto;
    padding-top: 15px;
    margin-top: 26px;
    margin-left: -16px;
    margin-right: -16px;
    -webkit-overflow-scrolling: touch;
  }
  .map_module_wrap .tabs::-webkit-scrollbar {
    display: none;
  }
}
.map_module_wrap .tabs ul {
  display: flex;
  justify-content: center;
  gap: 0 8px;
}
@media (max-width: 1220px) {
  .map_module_wrap .tabs ul {
    flex-wrap: wrap;
    gap: 0 16px;
  }
}
@media (max-width: 960px) {
  .map_module_wrap .tabs ul {
    flex-wrap: nowrap;
    gap: 0 6px;
  }
}
.map_module_wrap .tabs ul li {
  position: relative;
}
@media (max-width: 1220px) {
  .map_module_wrap .tabs ul li {
    margin-bottom: 16px;
  }
}
@media (max-width: 960px) {
  .map_module_wrap .tabs ul li:first-child {
    padding-left: 16px;
  }
  .map_module_wrap .tabs ul li:last-child {
    padding-right: 16px;
  }
}
.map_module_wrap .tabs ul button {
  height: 44px;
  color: #fff;
  font-size: 14px;
  line-height: 42px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  padding: 0 21px;
}
@media (max-width: 960px) {
  .map_module_wrap .tabs ul button {
    height: 34px;
    font-size: 11px;
    line-height: 32px;
    border-radius: 18px;
    padding: 0 18px;
  }
}
.map_module_wrap .tabs ul .noti {
  display: none;
  position: absolute;
  top: -11px;
  right: -11px;
  color: #192a4f;
  font-size: 10px;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
  border: 1px solid #1e2f5b;
  border-radius: 2px;
  background-color: #fff;
  padding: 0 4px;
  z-index: 5;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.map_module_wrap .tabs ul .selected button {
  color: #081f60;
  border-color: #fff;
  background-color: #fff;
  font-weight: 700;
  letter-spacing: -0.4px;
}
.map_module_wrap .tabs ul .inactive span:not(.noti),
.map_module_wrap .tabs ul .inactive button {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  background-clip: padding-box;
}
.map_module_wrap .tabs ul .inactive .noti {
  display: block;
}
@media (max-width: 960px) {
  .map_module_wrap .tabs ul .inactive .noti {
    display: none;
  }
}
.map_module_wrap .map_cont {
  position: relative;
  width: 658px;
  height: 620px;
  margin: 73px auto 0;
}
@media (max-width: 1220px) {
  .map_module_wrap .map_cont {
    margin-left: 90px;
  }
}
@media (max-width: 990px) {
  .map_module_wrap .map_cont {
    margin-left: 50px;
  }
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont {
    width: 360px;
    height: auto;
    padding-bottom: 124px;
    margin: 15px auto 0;
  }
}
@media (max-width: 960px) and (max-width: 392px) {
  .map_module_wrap .map_cont {
    margin-left: -16px;
  }
}
.map_module_wrap .map_cont .position_seoul {
  top: 119px;
  left: 300px;
  z-index: 1;
}
.map_module_wrap .map_cont .position_seoul .notice,
.map_module_wrap .map_cont .position_seoul .detail {
  left: 312px;
  bottom: 113px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_seoul .notice,
.map_module_wrap .map_cont .position_seoul .detail {
    bottom: -328px;
    left: -164px;
  }
}
.map_module_wrap .map_cont .position_seoul.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  height: 0;
  transform: skewX(-30deg);
  transform-origin: bottom;
}
.map_module_wrap .map_cont .position_seoul.pin.selected::before {
  width: 197px;
  height: 145px;
  transition: height 0.3s, width 0.3s 0.3s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_seoul {
    top: 62px;
    left: 164px;
  }
}
.map_module_wrap .map_cont .position_youth {
  top: 119px;
  left: 300px;
}
.map_module_wrap .map_cont .position_youth .notice,
.map_module_wrap .map_cont .position_youth .detail {
  left: 312px;
  bottom: 113px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_youth .notice,
.map_module_wrap .map_cont .position_youth .detail {
    bottom: -328px;
    left: -164px;
  }
}
.map_module_wrap .map_cont .position_youth.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  height: 0;
  transform: skewX(-30deg);
  transform-origin: bottom;
}
.map_module_wrap .map_cont .position_youth.pin.selected::before {
  width: 197px;
  height: 145px;
  transition: height 0.3s, width 0.3s 0.3s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_youth {
    top: 62px;
    left: 164px;
  }
}
.map_module_wrap .map_cont .position_lab {
  top: 119px;
  left: 300px;
}
.map_module_wrap .map_cont .position_lab .notice,
.map_module_wrap .map_cont .position_lab .detail {
  left: 312px;
  bottom: 77px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_lab .notice,
.map_module_wrap .map_cont .position_lab .detail {
    bottom: -328px;
    left: -164px;
  }
}
.map_module_wrap .map_cont .position_lab.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  height: 0;
  transform: skewX(-30deg);
  transform-origin: bottom;
}
.map_module_wrap .map_cont .position_lab.pin.selected::before {
  width: 197px;
  height: 145px;
  transition: height 0.3s, width 0.3s 0.3s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_lab {
    top: 62px;
    left: 164px;
  }
}
.map_module_wrap .map_cont .position_incheon {
  top: 105px;
  left: 243px;
}
.map_module_wrap .map_cont .position_incheon .notice,
.map_module_wrap .map_cont .position_incheon .detail {
  bottom: 97px;
  left: 369px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_incheon .notice,
.map_module_wrap .map_cont .position_incheon .detail {
    bottom: -335px;
    left: -139px;
  }
}
.map_module_wrap .map_cont .position_incheon.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  height: 0;
  transform: skewX(-30deg);
  transform-origin: bottom;
}
.map_module_wrap .map_cont .position_incheon.pin.selected::before {
  width: 262px;
  height: 131px;
  transition: height 0.3s, width 0.3s 0.3s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_incheon {
    top: 55px;
    left: 139px;
  }
}
.map_module_wrap .map_cont .position_daegu {
  top: 292px;
  left: 408px;
}
.map_module_wrap .map_cont .position_daegu .notice,
.map_module_wrap .map_cont .position_daegu .detail {
  bottom: 62px;
  left: 203px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_daegu .notice,
.map_module_wrap .map_cont .position_daegu .detail {
    bottom: -242px;
    left: -216px;
  }
}
.map_module_wrap .map_cont .position_daegu.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  height: 0;
  transform: skewX(-35deg);
  transform-origin: bottom;
}
.map_module_wrap .map_cont .position_daegu.pin.selected::before {
  width: 104px;
  height: 97px;
  transition: height 0.3s, width 0.3s 0.3s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_daegu {
    top: 148px;
    left: 216px;
  }
}
.map_module_wrap .map_cont .position_daejeon {
  top: 251px;
  left: 318px;
}
.map_module_wrap .map_cont .position_daejeon .notice,
.map_module_wrap .map_cont .position_daejeon .detail {
  bottom: 62px;
  left: 294px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_daejeon .notice,
.map_module_wrap .map_cont .position_daejeon .detail {
    bottom: -263px;
    left: -172px;
  }
}
.map_module_wrap .map_cont .position_daejeon.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  height: 0;
  transform: skewX(-30deg);
  transform-origin: bottom;
}
.map_module_wrap .map_cont .position_daejeon.pin.selected::before {
  width: 207px;
  height: 97px;
  transition: height 0.3s, width 0.3s 0.3s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_daejeon {
    top: 127px;
    left: 172px;
  }
}
.map_module_wrap .map_cont .position_jeju {
  top: 581px;
  left: 229px;
}
.map_module_wrap .map_cont .position_jeju .notice,
.map_module_wrap .map_cont .position_jeju .detail {
  bottom: 92px;
  left: 383px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_jeju .notice,
.map_module_wrap .map_cont .position_jeju .detail {
    bottom: -100px;
    left: -126px;
  }
}
.map_module_wrap .map_cont .position_jeju.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  height: 0;
  transform: skewX(-51deg);
  transform-origin: bottom;
}
.map_module_wrap .map_cont .position_jeju.pin.selected::before {
  width: 197px;
  height: 126px;
  transition: height 0.3s, width 0.3s 0.3s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_jeju {
    top: 290px;
    left: 126px;
  }
}
.map_module_wrap .map_cont .position_vietnam {
  top: 347px;
  left: 64px;
}
.map_module_wrap .map_cont .position_vietnam .notice,
.map_module_wrap .map_cont .position_vietnam .detail {
  bottom: -33px;
  left: 548px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_vietnam .notice,
.map_module_wrap .map_cont .position_vietnam .detail {
    bottom: -214px;
    left: -47px;
  }
}
.map_module_wrap .map_cont .position_vietnam.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  border-left: 0;
}
.map_module_wrap .map_cont .position_vietnam.pin.selected::before {
  width: 516px;
  transition: width 0.6s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_vietnam {
    top: 176px;
    left: 47px;
  }
}
.map_module_wrap .map_cont .position_busan {
  top: 361px;
  left: 461px;
}
.map_module_wrap .map_cont .position_busan .notice,
.map_module_wrap .map_cont .position_busan .detail {
  bottom: -30px;
  left: 117px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_busan .notice,
.map_module_wrap .map_cont .position_busan .detail {
    bottom: -210px;
    left: -245px;
  }
}
.map_module_wrap .map_cont .position_busan.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  border-left: 0;
}
.map_module_wrap .map_cont .position_busan.pin.selected::before {
  width: 85px;
  transition: width 0.6s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_busan {
    top: 179px;
    left: 245px;
  }
}
.map_module_wrap .map_cont .position_gwangju {
  top: 407px;
  left: 250px;
}
.map_module_wrap .map_cont .position_gwangju .notice,
.map_module_wrap .map_cont .position_gwangju .detail {
  bottom: -30px;
  left: 304px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_gwangju .notice,
.map_module_wrap .map_cont .position_gwangju .detail {
    bottom: -183px;
    left: -138px;
  }
}
.map_module_wrap .map_cont .position_gwangju.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  border-left: 0;
}
.map_module_wrap .map_cont .position_gwangju.pin.selected::before {
  width: 273px;
  transition: width 0.6s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_gwangju {
    top: 205px;
    left: 138px;
  }
}
.map_module_wrap .map_cont .position_seoul-total {
  top: 119px;
  left: 300px;
}
.map_module_wrap .map_cont .position_seoul-total .detail_wrap {
  position: absolute;
  bottom: -91px;
  left: 312px;
}
.map_module_wrap .map_cont .position_seoul-total .detail_wrap .notice,
.map_module_wrap .map_cont .position_seoul-total .detail_wrap .detail {
  position: static;
  margin-top: 16px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_seoul-total .detail_wrap {
    bottom: -328px;
    left: -164px;
  }
  .map_module_wrap .map_cont .position_seoul-total .detail_wrap .detail {
    display: none;
  }
  .map_module_wrap .map_cont .position_seoul-total .detail_wrap .detail:first-child {
    display: block;
  }
}
.map_module_wrap .map_cont .position_seoul-total.map_item {
  z-index: 10;
}
.map_module_wrap .map_cont .position_seoul-total.pin::before {
  bottom: 16px;
  left: 16px;
  width: 0;
  height: 0;
  transform: skewX(-50deg);
  transform-origin: bottom;
}
.map_module_wrap .map_cont .position_seoul-total.pin::after {
  bottom: 16px;
  left: 16px;
  width: 0 !important;
  height: 0 !important;
  transform: skewX(50deg) rotateX(180deg);
  transform-origin: bottom;
}
.map_module_wrap .map_cont .position_seoul-total.pin.selected::before {
  width: 205px;
  height: 63px;
  transition: height 0.3s, width 0.3s 0.3s;
}
.map_module_wrap .map_cont .position_seoul-total.pin.selected::after {
  width: 252px !important;
  height: 24px !important;
  transition: height 0.3s, width 0.3s 0.3s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .position_seoul-total {
    top: 62px;
    left: 164px;
  }
}
.map_module_wrap .map_cont .map_area {
  position: relative;
  width: 690px;
  height: 100%;
  background-image: url("../images/map_module/bg_map_cont_pc.png");
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .map_area {
    width: 100%;
    aspect-ratio: 360/325;
    background-image: url("../images/map_module/bg_map_cont_mobile.png");
    background-size: 100% auto;
  }
}
.map_module_wrap .map_cont .map_area .pin {
  position: absolute;
  width: 33px;
  height: 33px;
}
.map_module_wrap .map_cont .map_area .pin::before {
  position: absolute;
  border: solid rgba(255, 255, 255, 0.6);
  border-width: 2px 0 0 2px;
  box-sizing: border-box;
  content: "";
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .map_area .pin::before {
    display: none;
  }
}
.map_module_wrap .map_cont .map_area .pin::after {
  display: block;
  position: relative;
  width: 90px;
  height: 90px;
  background-image: url("../images/map_module/bg_logo_pin_default_20230115.png");
  background-repeat: no-repeat;
  margin: -29px 0 0 -29px;
  content: "";
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .map_area .pin::after {
    transform: scale(0.55);
  }
}
.map_module_wrap .map_cont .map_area .pin.selected::after {
  width: 120px;
  height: 120px;
  background-image: url("../images/map_module/bg_logo_pin_selected_20230115.png");
  background-size: 120px 120px;
  margin: -42px 0 0 -42px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .map_area .pin.selected::after {
    transform: scale(0.5);
  }
}
.map_module_wrap .map_cont .map_area .pin.position_seoul-total::after {
  position: absolute;
  border: solid rgba(255, 255, 255, 0.6);
  border-width: 2px 0 0 2px;
  background-image: none;
  box-sizing: border-box;
  margin: 0;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .map_area .pin.position_seoul-total::after {
    display: none;
  }
}
.map_module_wrap .map_cont .map_item {
  position: absolute;
  width: 33px;
  height: 33px;
  z-index: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.map_module_wrap .map_cont .map_item.position_seoul {
  z-index: 10;
}
.map_module_wrap .map_cont .map_item .detail {
  width: 0;
  height: 0;
  position: absolute;
  white-space: nowrap;
  cursor: auto;
}
.map_module_wrap .map_cont .map_item .detail dt {
  font-size: 24px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 8px;
}
.map_module_wrap .map_cont .map_item .detail dd {
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .map_item .detail {
    text-align: center;
  }
  .map_module_wrap .map_cont .map_item .detail dt {
    font-size: 13px;
    line-height: 19px;
  }
  .map_module_wrap .map_cont .map_item .detail dt br {
    display: none;
  }
  .map_module_wrap .map_cont .map_item .detail dd {
    font-size: 11px;
    line-height: 16px;
  }
}
.map_module_wrap .map_cont .map_item .notice {
  width: 0;
  height: 0;
  position: absolute;
  white-space: nowrap;
  cursor: auto;
  font-size: 24px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 36px;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .map_item .notice {
    font-size: 13px;
    line-height: 19px;
    text-align: center;
  }
}
.map_module_wrap .map_cont .map_item .notice,
.map_module_wrap .map_cont .map_item .detail {
  -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
          clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 0.6s;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .map_item .notice,
.map_module_wrap .map_cont .map_item .detail {
    transition-delay: 0.1s;
  }
}
.map_module_wrap .map_cont .map_item.selected {
  z-index: 11;
}
.map_module_wrap .map_cont .map_item.selected .notice,
.map_module_wrap .map_cont .map_item.selected .detail {
  width: auto;
  height: auto;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  opacity: 1;
}
@media (max-width: 960px) {
  .map_module_wrap .map_cont .map_item.selected .notice,
.map_module_wrap .map_cont .map_item.selected .detail {
    width: 360px;
  }
}
.map_module_wrap .map_cont .btn_view {
  display: none;
}
.map_module_wrap.s2bridge_map_module_wrap {
  height: 1453px;
}
@media (max-width: 960px) {
  .map_module_wrap.s2bridge_map_module_wrap {
    height: auto;
  }
}
.map_module_wrap.s2bridge_map_module_wrap::after {
  height: 173px;
}
.map_module_wrap.s2bridge_map_module_wrap .cont {
  padding-top: 182px;
}
@media (max-width: 960px) {
  .map_module_wrap.s2bridge_map_module_wrap .cont {
    padding-top: 30px;
  }
}
.map_module_wrap.s2bridge_map_module_wrap h2 {
  font-size: 36px;
  line-height: 69px;
  text-align: center;
}
@media (max-width: 960px) {
  .map_module_wrap.s2bridge_map_module_wrap h2 {
    font-size: 28px;
    line-height: 41px;
    text-align: left;
  }
}
.map_module_wrap.s2bridge_map_module_wrap .text {
  font-size: 22px;
  font-weight: 500;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 44px;
  text-align: center;
  margin-top: 22px;
}
@media (max-width: 960px) {
  .map_module_wrap.s2bridge_map_module_wrap .text {
    font-size: 13px;
    line-height: 21px;
    text-align: left;
    margin-top: 16px;
  }
}
.map_module_wrap.s2bridge_map_module_wrap .tabs {
  text-align: center;
  margin-top: 109px;
}
@media (max-width: 960px) {
  .map_module_wrap.s2bridge_map_module_wrap .tabs {
    margin-top: 51px;
  }
}
.map_module_wrap.s2bridge_map_module_wrap .tabs ul {
  display: inline-flex;
}
@media (max-width: 960px) {
  .map_module_wrap.s2bridge_map_module_wrap .map_cont {
    padding-bottom: 206px;
  }
}
.map_module_wrap.s2bridge_map_module_wrap .map_cont .map_item:not(.position_lab, .position_busan, .position_gwangju, .position_seoul-total) .detail {
  margin-bottom: -68px;
}
@media (max-width: 960px) {
  .map_module_wrap.s2bridge_map_module_wrap .map_cont .map_item:not(.position_lab, .position_busan, .position_gwangju, .position_seoul-total) .detail {
    margin-bottom: -91px;
  }
  .map_module_wrap.s2bridge_map_module_wrap .map_cont .map_item:not(.position_lab, .position_busan, .position_gwangju, .position_seoul-total) .detail dd ~ dd {
    padding: 0 16px;
  }
}
.map_module_wrap.s2bridge_map_module_wrap .map_cont .map_item:not(.position_lab, .position_busan, .position_gwangju, .position_seoul-total) .btn_view {
  display: block;
  width: 180px;
  height: 56px;
  color: #fff;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: #192a4f;
  box-sizing: border-box;
  margin-top: 12px;
}
@media (max-width: 960px) {
  .map_module_wrap.s2bridge_map_module_wrap .map_cont .map_item:not(.position_lab, .position_busan, .position_gwangju, .position_seoul-total) .btn_view {
    width: 100%;
    background-color: #000;
    margin-top: 42px;
  }
}

.counter_module_wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 1220px) {
  .counter_module_wrap {
    width: 626px;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}
@media (max-width: 960px) {
  .counter_module_wrap {
    width: 100%;
    gap: 10px;
  }
}
.counter_module_wrap .counter_item {
  flex-shrink: 0;
  position: relative;
  width: 313px;
  height: 313px;
  text-align: center;
  background-image: url("../images/counter_module/spr_counter_circle_pc.png");
  background-repeat: no-repeat;
  background-size: 313px 943px;
  background-position: 0 -315px;
  padding-top: 76px;
  margin-left: -33px;
  box-sizing: border-box;
}
.counter_module_wrap .counter_item:first-child {
  background-position: 0 0;
  margin-left: 0;
}
.counter_module_wrap .counter_item:last-child {
  background-position: 0 -630px;
}
@media (max-width: 1220px) {
  .counter_module_wrap .counter_item:nth-child(2) {
    background-position: 0 -630px;
  }
  .counter_module_wrap .counter_item:nth-child(2) ~ .counter_item {
    margin-top: -33px;
  }
  .counter_module_wrap .counter_item:nth-child(3) {
    background-position: 0 0;
    margin-left: 0;
  }
}
.counter_module_wrap .counter_item i[class^=icon] {
  display: block;
  width: 64px;
  height: 64px;
  background-image: url("../images/counter_module/spr_counter_icon_pc.png");
  background-repeat: no-repeat;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .counter_module_wrap .counter_item i[class^=icon] {
    transform: scale(0.35);
  }
}
.counter_module_wrap .counter_item .title {
  display: block;
  color: rgba(30, 47, 91, 0.7);
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  margin-top: 27px;
}
@media (max-width: 960px) {
  .counter_module_wrap .counter_item .title {
    color: #828282;
    font-size: 12px;
    line-height: 18px;
    margin-top: -8px;
  }
}
.counter_module_wrap .counter_item .count {
  display: block;
  color: #192a4f;
  font-size: 28px;
  font-weight: 700;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 41px;
  margin-top: 2px;
}
@media (max-width: 960px) {
  .counter_module_wrap .counter_item .count {
    font-size: 14px;
    line-height: 21px;
    margin-top: 5px;
  }
}
.counter_module_wrap .counter_item .icon_company {
  background-position: 0 0px;
}
.counter_module_wrap .counter_item .icon_money {
  background-position: 0 -70px;
}
.counter_module_wrap .counter_item .icon_graph {
  background-position: 0 -140px;
}
.counter_module_wrap .counter_item .icon_people {
  background-position: 0 -210px;
}
.counter_module_wrap .counter_item .icon_star {
  background-position: 0 -280px;
}
.counter_module_wrap .counter_item .icon_global {
  background-position: 0 -350px;
}
.counter_module_wrap .counter_item .icon_growth {
  background-position: 0 -420px;
}
.counter_module_wrap .counter_item .icon_value {
  background-position: 0 -490px;
}
.counter_module_wrap .counter_item .icon_hand {
  background-position: 0 -560px;
}
@media (max-width: 960px) {
  .counter_module_wrap:not(.type_small) .counter_item {
    width: calc(50% - 5px);
    height: auto;
    background-color: #f9f9f9;
    padding-top: 3px;
    padding-bottom: 21px;
    background-image: none !important;
    margin: 0 !important;
  }
}
@media (max-width: 960px) {
  .counter_module_wrap.type_small {
    flex-wrap: nowrap;
  }
}
.counter_module_wrap.type_small .counter_item {
  width: 267px;
  height: 267px;
  background-image: url("../images/counter_module/spr_counter_circle_small_pc.png");
  background-size: 267px 827px;
  background-position: 0 -280px;
  padding-top: 58px;
  margin-left: -25px;
  box-sizing: border-box;
}
.counter_module_wrap.type_small .counter_item:first-child {
  background-position: 0 0;
  margin-left: 0;
}
.counter_module_wrap.type_small .counter_item:last-child {
  background-position: 0 -560px;
}
.counter_module_wrap.type_small .counter_item .title {
  margin-top: 13px;
}
@media (max-width: 960px) {
  .counter_module_wrap.type_small .counter_item {
    width: 117px;
    height: 117px;
    background-size: 117px auto;
    background-position: 0 -122.5px;
    padding-top: 5px;
  }
  .counter_module_wrap.type_small .counter_item:last-child {
    background-position: 0 100%;
    margin: 0 0 0 -25px;
  }
  .counter_module_wrap.type_small .counter_item .title {
    margin-top: -12px;
  }
  .counter_module_wrap.type_small .counter_item .count {
    margin-top: 0;
  }
}

.selectbox_module {
  position: relative;
  z-index: 100;
}
.selectbox_module .placeholder,
.selectbox_module .selected_option {
  display: block;
  width: 210px;
  height: 48px;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background: #fff;
  padding: 10px 47px 12px 15px;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .selectbox_module .placeholder,
.selectbox_module .selected_option {
    width: 100%;
  }
}
.selectbox_module .btn_toggle_options {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
.selectbox_module .btn_toggle_options::after {
  position: absolute;
  top: 21px;
  right: 22px;
  width: 10px;
  height: 5px;
  content: "";
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -50px -130px;
}
@media (max-width: 960px) {
  .selectbox_module .btn_toggle_options::after {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .selectbox_module .btn_toggle_options::after {
    width: 10px;
    height: 6px;
    background-position: -20px -40px;
  }
}
.selectbox_module .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #dbdbdb;
  border-top: 0;
  background: #fff;
  padding: 5px 0;
}
.selectbox_module .options li {
  position: relative;
}
.selectbox_module .options li input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
.selectbox_module .options li label {
  display: block;
  height: 36px;
  line-height: 24px;
  padding: 6px 15px;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.selectbox_module .options li input:checked + label,
.selectbox_module .options li label:hover {
  font-weight: 700;
}
.selectbox_module .options li span {
  display: block;
  height: 36px;
  line-height: 24px;
  padding: 6px 15px;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.selectbox_module .options li span.active {
  font-weight: 700;
}
.selectbox_module.unfold {
  z-index: 1000;
}
.selectbox_module.unfold .btn_toggle_options::after {
  transform: rotateX(180deg);
}
.selectbox_module.unfold .options {
  display: block;
}

.selected_preview {
  display: flex;
  flex-wrap: wrap;
}
.selected_preview li {
  position: relative;
  margin-right: 8px;
  margin-top: 8px;
}
.selected_preview li .item {
  display: block;
  height: 36px;
  color: #fff;
  font-size: 12px;
  line-height: 36px;
  border-radius: 24px;
  background-color: #192a4f;
  padding: 0 32px 0 16px;
}
.selected_preview li .btn_remove {
  position: absolute;
  top: 12px;
  right: 13px;
  width: 12px;
  height: 12px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -45px -260px;
}
@media (max-width: 960px) {
  .selected_preview li .btn_remove {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}

#wrap section[class^=home_] .cont {
  max-width: 1154px;
}

section[class^=home_] {
  position: relative;
}
section[class^=home_] .sec_keyword {
  position: relative;
  display: block;
  color: #1e2f5b;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-size: 21px;
  line-height: 31px;
  margin-bottom: 3px;
}
@media (max-width: 960px) {
  section[class^=home_] .sec_keyword {
    color: #192a4f;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 32px;
    text-transform: uppercase;
  }
}
section[class^=home_] .sec_title {
  position: relative;
  font-size: 50px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 69px;
}
@media (max-width: 960px) {
  section[class^=home_] .sec_title {
    display: none;
  }
}
section[class^=home_] .sec_text {
  color: #757575;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 36px;
  margin-top: 54px;
}
@media (max-width: 960px) {
  section[class^=home_] .sec_text {
    display: none;
  }
}
section[class^=home_] .sec_visual {
  position: absolute;
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  section[class^=home_] .sec_visual {
    display: none;
  }
}
section[class^=home_] .list_top {
  display: flex;
  line-height: 19px;
}
section[class^=home_] .list_top h3 {
  position: relative;
  color: #333;
  font-size: 14px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  padding-right: 9px;
  margin-right: 8px;
}
section[class^=home_] .list_top h3::after {
  position: absolute;
  top: 5px;
  right: 0;
  height: 12px;
  border-right: 1px solid #d3d3d3;
  content: "";
}
@media (max-width: 960px) {
  section[class^=home_] .list_top h3 {
    display: none;
  }
}
section[class^=home_] .list_top .link_total {
  color: #333;
  font-size: 13px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width: 960px) {
  section[class^=home_] .list_top .link_total {
    position: absolute;
    font-size: 11px;
  }
}

.home_performance_wrap .cont {
  padding: 237px 0 232px;
  z-index: 1;
}
@media (max-width: 960px) {
  .home_performance_wrap .cont {
    padding: 80px 0 56px;
  }
}
.home_performance_wrap .sec_visual {
  top: -138px;
  right: -175px;
  width: 1715px;
  height: 411px;
  background-image: url("../images/home/bg_home_sec_visual_perfomance.png");
  z-index: -1;
}
@media (max-width: 1715px) {
  .home_performance_wrap .sec_visual {
    right: -280.5px;
  }
}
@media (max-width: 1580px) {
  .home_performance_wrap .sec_visual {
    aspect-ratio: 1715/411;
    width: 1550px;
    height: auto;
    background-size: 100% auto;
    right: -198px;
  }
}
@media (max-width: 1440px) {
  .home_performance_wrap .sec_visual {
    width: 1400px;
    background-size: 100% auto;
    right: -123px;
  }
}
@media (max-width: 1320px) {
  .home_performance_wrap .sec_visual {
    width: 1300px;
    background-size: 100% auto;
    right: -73px;
  }
}
.home_performance_wrap .counter_module_wrap {
  margin-top: 77px;
}
@media (max-width: 960px) {
  .home_performance_wrap .counter_module_wrap {
    margin-top: 0;
  }
}

.home_program_list_wrap {
  background-color: #fbfbfb;
}
.home_program_list_wrap .cont {
  padding: 78px 0 112px;
}
@media (max-width: 960px) {
  .home_program_list_wrap .cont {
    padding: 60px 0;
  }
}
.home_program_list_wrap .sec_title {
  color: #192a4f;
}
.home_program_list_wrap .program_list_swiper {
  position: relative;
  padding-bottom: 70px;
  margin-top: 72px;
}
@media (max-width: 960px) {
  .home_program_list_wrap .program_list_swiper {
    padding-bottom: 0;
    margin-top: 0;
  }
}
.home_program_list_wrap .program_list_swiper .list_top {
  margin-bottom: 30px;
}
@media (max-width: 960px) {
  .home_program_list_wrap .program_list_swiper .list_top {
    margin-bottom: 0;
  }
  .home_program_list_wrap .program_list_swiper .list_top .link_total {
    top: -53px;
    right: 7px;
  }
}
.home_program_list_wrap .program_list_swiper .swiper {
  overflow: visible;
}
.home_program_list_wrap .program_list_swiper .swiper-wrapper {
  display: flex;
}
.home_program_list_wrap .program_list_swiper .swiper-slide {
  flex-shrink: 0;
  width: 243px;
}
@media (max-width: 960px) {
  .home_program_list_wrap .program_list_swiper .swiper-slide {
    width: 194px;
  }
}
.home_program_list_wrap .program_list_swiper .item {
  display: block;
  position: relative;
}
@media (min-width: 960px) {
  .home_program_list_wrap .program_list_swiper .item:hover .title {
    text-decoration: underline;
  }
}
.home_program_list_wrap .program_list_swiper .item .label {
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
}
.home_program_list_wrap .program_list_swiper .item .label.in_progress {
  background-color: #0060fb;
}
.home_program_list_wrap .program_list_swiper .item .label.scheduled {
  background-color: #333;
}
.home_program_list_wrap .program_list_swiper .item .label.ended {
  color: #757575;
  background-color: #dbdbdb;
}
@media (max-width: 960px) {
  .home_program_list_wrap .program_list_swiper .item .label {
    top: 8px;
    left: 8px;
    width: 38px;
    height: 38px;
  }
}
.home_program_list_wrap .program_list_swiper .item .thumb {
  overflow: hidden;
  aspect-ratio: 243/307;
}
.home_program_list_wrap .program_list_swiper .item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home_program_list_wrap .program_list_swiper .item .title {
  max-height: 54px;
  font-size: 18px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 27px;
  margin-top: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media (max-width: 960px) {
  .home_program_list_wrap .program_list_swiper .item .title {
    max-height: 42px;
    font-size: 14px;
    line-height: 21px;
    margin-top: 23px;
  }
}
.home_program_list_wrap .program_list_swiper .item .text {
  height: 38px;
  color: #757575;
  font-size: 13px;
  line-height: 19px;
  margin-top: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media (max-width: 960px) {
  .home_program_list_wrap .program_list_swiper .item .text {
    height: 40px;
    font-size: 12px;
    line-height: 20px;
    margin-top: 6px;
  }
}
.home_program_list_wrap .program_list_swiper .item .date {
  display: block;
  font-size: 12px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 18px;
  margin-top: 17px;
}
@media (max-width: 960px) {
  .home_program_list_wrap .program_list_swiper .item .date {
    margin-top: 11px;
  }
}
.home_program_list_wrap .program-swiper-button-prev,
.home_program_list_wrap .program-swiper-button-next {
  position: absolute;
  bottom: 0;
  width: 44px;
  height: 44px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .home_program_list_wrap .program-swiper-button-prev,
.home_program_list_wrap .program-swiper-button-next {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .home_program_list_wrap .program-swiper-button-prev,
.home_program_list_wrap .program-swiper-button-next {
    display: none;
  }
}
.home_program_list_wrap .program-swiper-button-prev.swiper-button-disabled::after,
.home_program_list_wrap .program-swiper-button-next.swiper-button-disabled::after {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  content: "";
}
.home_program_list_wrap .program-swiper-button-prev {
  right: 43px;
  background-position: 0 -80px;
}
.home_program_list_wrap .program-swiper-button-next {
  right: 0;
  background-position: -43px -80px;
}

@media (max-width: 960px) {
  .home_visual_wrap {
    display: none;
  }
}
.home_visual_wrap .cont .sec_keyword {
  position: absolute;
  top: 68px;
  left: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
  z-index: 1;
}
.home_visual_wrap .cont .sec_title {
  position: absolute;
  top: 134px;
  left: 0;
  color: #fff;
  font-size: 44px;
  line-height: 56px;
  z-index: 1;
}
.home_visual_wrap .main_visual {
  width: 1746px;
  height: 580px;
  background-image: url("../images/home/bg_home_main_visual.jpg");
  background-repeat: no-repeat;
  margin-left: -370px;
}
.home_visual_wrap .sub_visual {
  position: absolute;
  top: 260px;
  right: -287px;
  width: 574px;
  height: 382px;
  background-image: url("../images/home/bg_home_sub_visual.jpg");
  background-repeat: no-repeat;
}

.home_news_list_wrap .cont {
  padding: 110px 0 204px;
  z-index: 1;
}
@media (max-width: 960px) {
  .home_news_list_wrap .cont {
    padding: 56px 0 100px;
  }
}
.home_news_list_wrap .news_list_column {
  margin-top: 150px;
}
@media (max-width: 960px) {
  .home_news_list_wrap .news_list_column {
    position: relative;
    margin-top: 0;
  }
}
.home_news_list_wrap .news_list_column .list_top {
  margin-bottom: 49px;
}
@media (max-width: 960px) {
  .home_news_list_wrap .news_list_column .list_top {
    margin-bottom: 0;
  }
  .home_news_list_wrap .news_list_column .list_top .link_total {
    top: -53px;
    right: 7px;
  }
}
.home_news_list_wrap .news_list_column .list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .home_news_list_wrap .news_list_column .list {
    flex-direction: column;
    justify-content: stretch;
  }
}
@media (max-width: 960px) {
  .home_news_list_wrap .news_list_column .list li {
    border: solid #dcdcdc;
    border-width: 1px 0;
    padding: 20px 0;
  }
  .home_news_list_wrap .news_list_column .list li:first-child {
    border-top-width: 0;
    padding-top: 10px;
  }
}
.home_news_list_wrap .news_list_column .list li .item {
  position: relative;
  display: block;
}
@media (min-width: 960px) {
  .home_news_list_wrap .news_list_column .list li .item:hover .title {
    text-decoration: underline;
  }
}
@media (max-width: 960px) {
  .home_news_list_wrap .news_list_column .list li .item {
    height: 64px;
    padding-left: 106px;
  }
}
.home_news_list_wrap .news_list_column .list li .item .label {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  color: #fff;
  height: 28px;
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
  border-radius: 22px;
  background-color: #0060fb;
  padding: 0 8px;
}
@media (max-width: 960px) {
  .home_news_list_wrap .news_list_column .list li .item .label {
    top: -1px;
    left: 106px;
    height: 18px;
    font-size: 10px;
    line-height: 18px;
    border-radius: 10px;
    padding: 0 6px;
  }
}
.home_news_list_wrap .news_list_column .list li .item .thumb {
  overflow: hidden;
  aspect-ratio: 360/244;
}
@media (max-width: 960px) {
  .home_news_list_wrap .news_list_column .list li .item .thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 94px;
  }
}
.home_news_list_wrap .news_list_column .list li .item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home_news_list_wrap .news_list_column .list li .item .title {
  height: 54px;
  font-size: 18px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 27px;
  margin-top: 29px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media (max-width: 960px) {
  .home_news_list_wrap .news_list_column .list li .item .title {
    height: 40px;
    color: #192a4f;
    font-size: 14px;
    line-height: 20px;
    padding-top: 23px;
    margin-top: 0;
  }
}
@media (max-width: 1220px) {
  .home_news_list_wrap .news_list_column .list.col_3 {
    gap: 0 30px;
  }
  .home_news_list_wrap .news_list_column .list.col_3 li {
    width: calc(33.33% - 10px);
  }
}
@media (max-width: 960px) {
  .home_news_list_wrap .news_list_column .list.col_3 {
    gap: 0;
  }
  .home_news_list_wrap .news_list_column .list.col_3 li {
    width: auto;
  }
}
.home_news_list_wrap .news_list_column .list.col_3 .item {
  width: 360px;
}
@media (max-width: 1220px) {
  .home_news_list_wrap .news_list_column .list.col_3 .item {
    width: auto;
  }
}
@media (max-width: 960px) {
  .home_news_list_wrap .news_list_column .list.col_3 .item {
    width: auto;
  }
}
.home_news_list_wrap .sec_visual {
  top: -20px;
  right: 875px;
  width: 654px;
  height: 186px;
  background-image: url("../images/home/bg_home_sec_visual_news.png");
  z-index: -1;
}

.home_youtube_wrap {
  background-color: #192a4f;
}
.home_youtube_wrap .cont {
  display: flex;
  height: 811px;
  align-items: center;
}
@media (max-width: 960px) {
  .home_youtube_wrap .cont {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 36px 0 37px;
  }
  .home_youtube_wrap .cont::before {
    color: #fff;
    font-size: 28px;
    font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 32px;
    content: "VIDEO";
  }
}
.home_youtube_wrap .text_block {
  padding-right: 66px;
}
@media (max-width: 960px) {
  .home_youtube_wrap .text_block {
    position: relative;
    padding-right: 0;
  }
}
.home_youtube_wrap .text_block .sec_title {
  color: #fff;
  font-size: 40px;
  line-height: 54px;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  .home_youtube_wrap .text_block .sec_title {
    display: none;
  }
}
.home_youtube_wrap .text_block .link_total {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 18px;
  text-decoration: underline;
}
.home_youtube_wrap .text_block .link_total::after {
  display: inline-block;
  vertical-align: -1px;
  width: 7px;
  height: 10px;
  background-image: url("../images/home/bg_youtube_link_arrow.png");
  background-repeat: no-repeat;
  margin-left: 4px;
  content: "";
}
@media (max-width: 960px) {
  .home_youtube_wrap .text_block .link_total {
    position: absolute;
    top: -47px;
    right: 0;
    font-size: 11px;
    line-height: 15px;
  }
}
.home_youtube_wrap .media_block {
  flex-shrink: 0;
  width: 681px;
}
@media (max-width: 960px) {
  .home_youtube_wrap .media_block {
    width: auto;
    margin-left: -16px;
    margin-right: -16px;
  }
}
.home_youtube_wrap .media_block .youtube_wrap {
  aspect-ratio: 16/9;
}
.home_youtube_wrap .media_block .youtube_wrap iframe {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.apply_program_information {
  position: relative;
  background-color: #192a4f;
}
@media (max-width: 960px) {
  .apply_program_information {
    background-color: #fff;
  }
}
.apply_program_information .cont {
  padding: 90px 0 92px;
}
@media (max-width: 960px) {
  .apply_program_information .cont {
    padding: 16px 0 28px;
  }
}
.apply_program_information::before {
  position: absolute;
  top: -221px;
  left: 0;
  right: 0;
  height: 221px;
  background-color: #192a4f;
  content: "";
}
@media (max-width: 960px) {
  .apply_program_information::before {
    display: none;
  }
}
.apply_program_information h3 {
  color: #fff;
  font-size: 32px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 1;
  margin-bottom: 44px;
}
@media (max-width: 960px) {
  .apply_program_information h3 {
    display: none;
  }
}
.apply_program_information .filter_wrap {
  display: flex;
  margin-bottom: 24px;
}
.apply_program_information .filter_wrap .selectbox_module {
  margin-right: 8px;
}
.apply_program_information .filter_wrap .selectbox_module .selected_option {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #192a4f;
}
.apply_program_information .filter_wrap .selectbox_module .options {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #192a4f;
}
.apply_program_information .filter_wrap .btn_total_schedule {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #192a4f;
  padding: 0 15px 2px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .apply_program_information .filter_wrap {
    gap: 0 10px;
    margin-bottom: 46px;
  }
  .apply_program_information .filter_wrap .selectbox_module {
    width: calc(50% - 5px);
    margin: 0;
  }
  .apply_program_information .filter_wrap .selectbox_module .selected_option {
    color: #000;
    border-color: #dbdbdb;
    background-color: #fff;
  }
  .apply_program_information .filter_wrap .selectbox_module .options {
    color: #000;
    border-color: #dbdbdb;
    background-color: #fff;
  }
  .apply_program_information .filter_wrap .btn_total_schedule {
    display: none;
  }
}
.apply_program_information .program_wrap .schedule_table {
  border-top: 3px solid #fff;
}
@media (max-width: 960px) {
  .apply_program_information .program_wrap .schedule_table {
    display: none;
  }
}
.apply_program_information .program_wrap .schedule_table .row {
  --bar-color: #44bdf4;
  display: flex;
  height: 50px;
  font-size: 13px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 50px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.apply_program_information .program_wrap .schedule_table .row.title {
  height: 46px;
  line-height: 46px;
}
.apply_program_information .program_wrap .schedule_table .row .label {
  flex-shrink: 0;
  width: 129px;
  font-weight: 700;
  text-indent: 20px;
  background: rgba(255, 255, 255, 0.05);
}
.apply_program_information .program_wrap .schedule_table .row .grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  font-weight: 500;
  padding: 0 20px 0 22px;
  box-sizing: border-box;
}
.apply_program_information .program_wrap .schedule_table .row .grid span {
  position: relative;
  box-sizing: border-box;
}
.apply_program_information .program_wrap .schedule_table .row:not(.title) .grid span::before {
  display: none;
  height: 8px;
  background-color: var(--bar-color);
  margin-top: 21px;
  content: "";
}
.apply_program_information .program_wrap .schedule_table .row:not(.title) .grid span.start::before {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.apply_program_information .program_wrap .schedule_table .row:not(.title) .grid span.end::before {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.apply_program_information .program_wrap .schedule_table .row:not(.title) .grid span.start::before, .apply_program_information .program_wrap .schedule_table .row:not(.title) .grid span.start ~ span::before {
  display: block;
}
.apply_program_information .program_wrap .schedule_table .row:not(.title) .grid span.end ~ span::before {
  display: none;
}
.apply_program_information .program_wrap .schedule_table .row:nth-child(3) {
  --bar-color: #396ce3;
}
.apply_program_information .program_wrap .schedule_table .row:nth-child(4) {
  --bar-color: #1acdc2;
}
.apply_program_information .program_wrap .information {
  display: none;
}
@media (max-width: 960px) {
  .apply_program_information .program_wrap .information {
    display: block;
  }
  .apply_program_information .program_wrap .information .progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 1;
  }
  .apply_program_information .program_wrap .information .progress::before {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dbdbdb;
    z-index: -1;
    content: "";
  }
  .apply_program_information .program_wrap .information .progress span {
    display: flex;
    flex-direction: column;
    color: #828282;
    line-height: 20px;
  }
  .apply_program_information .program_wrap .information .progress span::before {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d8d8d8;
    margin-bottom: 8px;
    content: "";
  }
  .apply_program_information .program_wrap .information .progress span:nth-child(2) {
    align-items: center;
  }
  .apply_program_information .program_wrap .information .progress span:nth-child(3) {
    align-items: flex-end;
  }
  .apply_program_information .program_wrap .information dl {
    text-align: center;
    margin-top: 39px;
  }
  .apply_program_information .program_wrap .information dl dt {
    display: none;
    color: #192a4f;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }
  .apply_program_information .program_wrap .information dl dd {
    display: none;
    color: #828282;
    margin-top: 8px;
  }
}
.apply_program_information .program_wrap .information.step_1 .progress::before {
  background-image: linear-gradient(to left, #dbdbdb 65%, #192a4f 100%);
}
.apply_program_information .program_wrap .information.step_1 .progress span:nth-child(1) {
  color: #192a4f;
}
.apply_program_information .program_wrap .information.step_1 .progress span:nth-child(1)::before {
  background-color: #192a4f;
}
.apply_program_information .program_wrap .information.step_1 dl dt:nth-child(1),
.apply_program_information .program_wrap .information.step_1 dl dt:nth-child(1) + dd {
  display: block;
}
.apply_program_information .program_wrap .information.step_2 .progress::before {
  background-image: linear-gradient(to right, #dbdbdb 32%, #192a4f 50%, #dbdbdb 68%);
}
.apply_program_information .program_wrap .information.step_2 .progress span:nth-child(2) {
  color: #192a4f;
}
.apply_program_information .program_wrap .information.step_2 .progress span:nth-child(2)::before {
  background-color: #192a4f;
}
.apply_program_information .program_wrap .information.step_2 dl dt:nth-child(3),
.apply_program_information .program_wrap .information.step_2 dl dt:nth-child(3) + dd {
  display: block;
}
.apply_program_information .program_wrap .information.step_3 .progress::before {
  background-image: linear-gradient(to right, #dbdbdb 65%, #192a4f 100%);
}
.apply_program_information .program_wrap .information.step_3 .progress span:nth-child(3) {
  color: #192a4f;
}
.apply_program_information .program_wrap .information.step_3 .progress span:nth-child(3)::before {
  background-color: #192a4f;
}
.apply_program_information .program_wrap .information.step_3 dl dt:nth-child(5),
.apply_program_information .program_wrap .information.step_3 dl dt:nth-child(5) + dd {
  display: block;
}

@media (max-width: 960px) {
  .apply_program_list {
    border-top: 5px solid #ececec;
  }
}
.apply_program_list .cont {
  padding: 88px 0 168px;
}
@media (max-width: 960px) {
  .apply_program_list .cont {
    padding: 17px 0 40px;
  }
}
.apply_program_list .list_top {
  margin-bottom: 60px;
}
@media (max-width: 960px) {
  .apply_program_list .list_top {
    margin-bottom: 46px;
  }
}
.apply_program_list .list_top .filter_tab {
  display: flex;
}
@media (max-width: 960px) {
  .apply_program_list .list_top .filter_tab {
    border-bottom: 1px solid #dbdbdb;
  }
}
.apply_program_list .list_top .filter_tab li {
  margin-right: 8px;
}
.apply_program_list .list_top .filter_tab button {
  height: 44px;
  color: #4a5568;
  line-height: 42px;
  border: 1px solid #cbd5e0;
  border-radius: 22px;
  background-color: #fff;
  padding: 0 19px;
}
.apply_program_list .list_top .filter_tab .selected button {
  color: #fff;
  font-weight: 700;
  border-color: #192a4f;
  background-color: #192a4f;
}
@media (max-width: 960px) {
  .apply_program_list .list_top .filter_tab li {
    position: relative;
    width: 25%;
    margin-right: 0;
  }
  .apply_program_list .list_top .filter_tab button {
    width: 100%;
    height: auto;
    color: #dbdbdb;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    text-align: center;
    border-radius: 0;
    border-width: 0;
    padding: 11px 0;
  }
  .apply_program_list .list_top .filter_tab button span {
    display: none;
  }
  .apply_program_list .list_top .filter_tab .selected::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    border-bottom: 1px solid #192a4f;
    z-index: 1;
    content: "";
  }
  .apply_program_list .list_top .filter_tab .selected button {
    color: #192a4f;
    font-weight: 500;
    background-color: #fff;
  }
}
.apply_program_list .list_top .filter_search {
  display: flex;
}
@media (max-width: 960px) {
  .apply_program_list .list_top .filter_search {
    flex-direction: column;
  }
}
.apply_program_list .list_top .filter_search .selectbox_module {
  width: 210px;
  margin-right: 8px;
}
@media (max-width: 960px) {
  .apply_program_list .list_top .filter_search .selectbox_module {
    width: calc(50% - 4px);
    margin: 0 0 8px;
  }
}
.apply_program_list .list_top .filter_search .search_box {
  position: relative;
  width: 348px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .apply_program_list .list_top .filter_search .search_box {
    width: 100%;
    box-sizing: border-box;
  }
}
.apply_program_list .list_top .filter_search .search_box input {
  width: 100%;
  height: 48px;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 10px 0 12px 15px;
  box-sizing: border-box;
  outline: 0;
}
.apply_program_list .list_top .filter_search .search_box input:-ms-input-placeholder {
  color: #757575;
}
.apply_program_list .list_top .filter_search .search_box input::-moz-placeholder {
  color: #757575;
}
.apply_program_list .list_top .filter_search .search_box input::placeholder {
  color: #757575;
}
.apply_program_list .list_top .filter_search .search_box .btn_search {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 46px;
  height: 46px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
.apply_program_list .list_top .filter_search .search_box .btn_search::after {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 18px;
  height: 18px;
  content: "";
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: 0 -155px;
}
@media (max-width: 960px) {
  .apply_program_list .list_top .filter_search .search_box .btn_search::after {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .apply_program_list .list_top .filter_search .search_box .btn_search::after {
    background-position: -35px -40px;
  }
}
.apply_program_list .list_top .filter_tab + .filter_search {
  margin-top: 32px;
}
@media (max-width: 960px) {
  .apply_program_list .list_top .filter_tab + .filter_search {
    margin-top: 20px;
  }
}
.apply_program_list .list_wrap ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1220px) {
  .apply_program_list .list_wrap ul {
    gap: 0 32px;
  }
}
@media (max-width: 960px) {
  .apply_program_list .list_wrap ul {
    gap: 0 8px;
  }
}
.apply_program_list .list_wrap ul li {
  width: 243px;
  margin-left: 69px;
}
.apply_program_list .list_wrap ul li:nth-child(4n+1) {
  margin-left: 0;
}
.apply_program_list .list_wrap ul li:nth-child(4) ~ li {
  margin-top: 72px;
}
.apply_program_list .list_wrap ul li .item {
  display: block;
  position: relative;
}
@media (min-width: 960px) {
  .apply_program_list .list_wrap ul li .item:hover .title {
    text-decoration: underline;
  }
}
.apply_program_list .list_wrap ul li .item .label {
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
}
.apply_program_list .list_wrap ul li .item .label.in_progress {
  background-color: #0060fb;
}
.apply_program_list .list_wrap ul li .item .label.scheduled {
  background-color: #333;
}
.apply_program_list .list_wrap ul li .item .label.ended {
  color: #757575;
  background-color: #dbdbdb;
}
@media (max-width: 960px) {
  .apply_program_list .list_wrap ul li .item .label {
    top: 8px;
    left: 8px;
    width: 38px;
    height: 38px;
  }
}
.apply_program_list .list_wrap ul li .item .thumb {
  overflow: hidden;
  aspect-ratio: 243/307;
}
.apply_program_list .list_wrap ul li .item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.apply_program_list .list_wrap ul li .item .title {
  max-height: 54px;
  font-size: 18px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 27px;
  margin-top: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media (max-width: 960px) {
  .apply_program_list .list_wrap ul li .item .title {
    max-height: 42px;
    font-size: 14px;
    line-height: 21px;
    margin-top: 23px;
  }
}
.apply_program_list .list_wrap ul li .item .text {
  height: 38px;
  color: #757575;
  font-size: 13px;
  line-height: 19px;
  margin-top: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media (max-width: 960px) {
  .apply_program_list .list_wrap ul li .item .text {
    height: 40px;
    font-size: 12px;
    line-height: 20px;
    margin-top: 6px;
  }
}
.apply_program_list .list_wrap ul li .item .date {
  display: block;
  font-size: 12px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 18px;
  margin-top: 17px;
}
@media (max-width: 960px) {
  .apply_program_list .list_wrap ul li .item .date {
    margin-top: 11px;
  }
}
@media (max-width: 1220px) {
  .apply_program_list .list_wrap ul li {
    width: calc(25% - 24px);
    margin-left: 0;
  }
}
@media (max-width: 960px) {
  .apply_program_list .list_wrap ul li {
    width: calc(50% - 4px);
  }
  .apply_program_list .list_wrap ul li:nth-child(2) ~ li {
    margin-top: 40px;
  }
  .apply_program_list .list_wrap ul li .item .title {
    max-height: 38px;
    font-size: 13px;
    line-height: 19px;
    margin-top: 14px;
  }
  .apply_program_list .list_wrap ul li .item .text {
    font-size: 11px;
    margin-top: 6px;
  }
  .apply_program_list .list_wrap ul li .item .date {
    font-size: 11px;
    line-height: 17px;
    margin-top: 13px;
  }
}
.apply_program_list .list_pagination {
  margin-top: 88px;
}
@media (max-width: 960px) {
  .apply_program_list .list_pagination {
    margin-top: 40px;
  }
}
.apply_program_list .list_pagination {
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .apply_program_list .list_pagination {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.apply_program_list .list_pagination .btn_nav {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 4px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
.apply_program_list .list_pagination .btn_nav::after {
  position: absolute;
  top: 6px;
  height: 12px;
  content: "";
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .apply_program_list .list_pagination .btn_nav::after {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .apply_program_list .list_pagination .btn_nav {
    margin: 0;
  }
}
.apply_program_list .list_pagination .btn_nav.prev_p::after, .apply_program_list .list_pagination .btn_nav.next_p::after {
  left: 6px;
  width: 13px;
  background-position: -65px -130px;
}
@media (max-width: 960px) {
  .apply_program_list .list_pagination .btn_nav.prev_p::after, .apply_program_list .list_pagination .btn_nav.next_p::after {
    background-position: -55px -40px;
  }
}
.apply_program_list .list_pagination .btn_nav.prev::after, .apply_program_list .list_pagination .btn_nav.next::after {
  left: 9px;
  width: 8px;
  background-position: -65px -130px;
}
@media (max-width: 960px) {
  .apply_program_list .list_pagination .btn_nav.prev::after, .apply_program_list .list_pagination .btn_nav.next::after {
    background-position: -55px -40px;
  }
}
.apply_program_list .list_pagination .btn_nav.prev_p, .apply_program_list .list_pagination .btn_nav.prev {
  transform: rotateY(180deg);
}
.apply_program_list .list_pagination .btn_nav:disabled {
  opacity: 0.7;
  cursor: default;
}
.apply_program_list .list_pagination .page {
  display: flex;
  line-height: 24px;
  margin: 0 4px;
}
@media (max-width: 960px) {
  .apply_program_list .list_pagination .page {
    margin: 0;
  }
}
.apply_program_list .list_pagination .page > * {
  min-width: 24px;
  height: 24px;
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 0 7px;
  margin: 0 8px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .apply_program_list .list_pagination .page > * {
    letter-spacing: -1px;
    padding: 0 5px;
    margin: 0;
  }
}
.apply_program_list .list_pagination .page .selected {
  color: #192a4f;
  font-weight: 700;
}
@media (min-width: 960px) {
  .apply_program_list .list_pagination .page a:hover {
    text-decoration: underline;
  }
}

.apply_program_page {
  padding: 125px 0 160px;
}
.apply_program_page .program_article .program_contents .content_bottom .apply, .apply_program_page .program_article .program_information .information_wrap .details .list_bottom .apply {
  color: #fff;
  font-weight: 700;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 52px;
  text-align: center;
}
.apply_program_page .program_article .program_contents .content_bottom .apply > *, .apply_program_page .program_article .program_information .information_wrap .details .list_bottom .apply > * {
  display: block;
  width: 272px;
  height: 52px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_bottom .apply > *, .apply_program_page .program_article .program_information .information_wrap .details .list_bottom .apply > * {
    width: 100%;
  }
}
.apply_program_page .program_article .program_contents .content_bottom .apply a, .apply_program_page .program_article .program_information .information_wrap .details .list_bottom .apply a {
  background-color: #192a4f;
}
.apply_program_page .program_article .program_contents .content_bottom .apply .info, .apply_program_page .program_article .program_information .information_wrap .details .list_bottom .apply .info {
  background-color: #dbdbdb;
}
@media (max-width: 960px) {
  .apply_program_page {
    padding: 0 0 21px;
  }
}
.apply_program_page .program_article {
  position: relative;
}
@media (max-width: 960px) {
  .apply_program_page .program_article {
    padding-top: 26px;
    padding-bottom: 52px;
  }
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information {
    margin-top: 16px;
  }
  .apply_program_page .program_article .program_information .cont {
    position: static !important;
  }
}
.apply_program_page .program_article .program_information .label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
}
.apply_program_page .program_article .program_information .label.in_progress {
  background-color: #0060fb;
}
.apply_program_page .program_article .program_information .label.scheduled {
  background-color: #333;
}
.apply_program_page .program_article .program_information .label.ended {
  color: #757575;
  background-color: #dbdbdb;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .label {
    width: 38px;
    height: 38px;
  }
}
.apply_program_page .program_article .program_information h3 {
  font-size: 60px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 80px;
  word-break: break-all;
  margin: 6px 0 3px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information h3 {
    color: #192a4f;
    font-size: 24px;
    line-height: 34px;
    margin: 14px 0 24px;
  }
}
.apply_program_page .program_article .program_information .top_text {
  font-size: 21px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 40px;
  word-break: break-all;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .top_text {
    display: none;
  }
}
.apply_program_page .program_article .program_information .information_wrap {
  display: flex;
  margin-top: 52px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .information_wrap {
    margin-top: 0;
  }
}
.apply_program_page .program_article .program_information .information_wrap .picture {
  flex-shrink: 0;
  width: 380px;
  height: 480px;
  margin-right: 60px;
}
.apply_program_page .program_article .program_information .information_wrap .picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .information_wrap .picture {
    display: none;
  }
}
.apply_program_page .program_article .program_information .information_wrap .details {
  width: 100%;
}
.apply_program_page .program_article .program_information .information_wrap .details .list {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-top: 2px solid #192a4f;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .information_wrap .details .list {
    display: block;
  }
}
.apply_program_page .program_article .program_information .information_wrap .details .list dt,
.apply_program_page .program_article .program_information .information_wrap .details .list dd {
  line-height: 21px;
  border-bottom: 1px solid #dbdbdb;
  padding-top: 14px;
  padding-bottom: 15px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .information_wrap .details .list dt,
.apply_program_page .program_article .program_information .information_wrap .details .list dd {
    line-height: 1;
    border-bottom-width: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.apply_program_page .program_article .program_information .information_wrap .details .list dt {
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  padding-left: 20px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .information_wrap .details .list dt {
    padding-top: 18px;
    padding-left: 0;
    margin-bottom: 16px;
  }
}
.apply_program_page .program_article .program_information .information_wrap .details .list dd {
  padding-right: 20px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .information_wrap .details .list dd {
    border-bottom-width: 1px;
    padding-bottom: 18px;
    padding-left: 0;
  }
  .apply_program_page .program_article .program_information .information_wrap .details .list dd:last-child {
    border-bottom-width: 0;
  }
}
.apply_program_page .program_article .program_information .information_wrap .details .list_bottom {
  display: flex;
  margin-top: 23px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .information_wrap .details .list_bottom {
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
  }
  .apply_program_page .program_article .program_information .information_wrap .details .list_bottom .apply {
    width: calc(100% - 52px - 8px);
  }
}
.apply_program_page .program_article .program_information .information_wrap .details .list_bottom .share {
  position: relative;
  margin-left: 16px;
}
.apply_program_page .program_article .program_information .information_wrap .details .list_bottom .share > button {
  position: relative;
  width: 52px;
  height: 52px;
  background-color: #fafafa;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
.apply_program_page .program_article .program_information .information_wrap .details .list_bottom .share > button::after {
  position: absolute;
  top: 18px;
  left: 19px;
  width: 14px;
  height: 16px;
  content: "";
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -25px -155px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .information_wrap .details .list_bottom .share > button::after {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
.apply_program_page .program_article .program_information .information_wrap .details .list_bottom .share .modal_notice {
  top: 36px;
  left: 35px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_information .information_wrap .details .list_bottom .share {
    margin-left: 8px;
  }
  .apply_program_page .program_article .program_information .information_wrap .details .list_bottom .share > button::after {
    top: 17px;
    left: 17px;
    width: 18px;
    height: 18px;
    background-position: -90px -40px;
  }
  .apply_program_page .program_article .program_information .information_wrap .details .list_bottom .share .modal_notice {
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -99px 0 0 -160px;
  }
}
.apply_program_page .program_article .program_contents {
  position: relative;
  margin-top: 58px;
  z-index: 1;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents {
    margin-top: 63px;
  }
}
.apply_program_page .program_article .program_contents::before {
  position: absolute;
  z-index: -1;
  top: 42px;
  left: 0;
  right: 0;
  border-top: 1px solid #dbdbdb;
  content: "";
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents::before {
    top: 26px;
  }
}
.apply_program_page .program_article .program_contents .content_tab ul {
  display: flex;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_tab ul {
    justify-content: center;
  }
}
.apply_program_page .program_article .program_contents .content_tab ul li a {
  position: relative;
  display: block;
  color: #757575;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 300;
  line-height: 42px;
  padding: 0 16px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_tab ul li a {
    color: #dbdbdb;
    font-weight: 500;
    line-height: 26px;
    padding: 0 14px;
  }
}
.apply_program_page .program_article .program_contents .content_tab ul li.selected a {
  color: #000;
  font-weight: 700;
}
.apply_program_page .program_article .program_contents .content_tab ul li.selected a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  border-bottom: 3px solid #192a4f;
  content: "";
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_tab ul li.selected a {
    color: #192a4f;
  }
  .apply_program_page .program_article .program_contents .content_tab ul li.selected a::after {
    border-bottom: 1px solid #192a4f;
  }
}
.apply_program_page .program_article .program_contents .content_body .inner {
  color: #000;
  line-height: 1.5;
  text-align: center;
  padding: 80px 0;
}
.apply_program_page .program_article .program_contents .content_body .inner img {
  max-width: 100%;
  height: auto;
}
.apply_program_page .program_article .program_contents .content_body .inner iframe {
  max-width: 100%;
  height: auto !important;
  aspect-ratio: 16/9;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_body .inner {
    padding: 40px 0;
  }
  .apply_program_page .program_article .program_contents .content_body .inner img {
    width: 100%;
  }
}
.apply_program_page .program_article .program_contents .content_body .inner .notice .notice_text {
  text-align: left;
  line-height: 28px;
  border-top: 2px solid #082c55;
  border-bottom: 1px solid #dbdbdb;
  padding: 14px 0;
}
.apply_program_page .program_article .program_contents .content_body .inner .faq {
  text-align: left;
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul {
  border-top: 2px solid #082c55;
  border-bottom: 1px solid #dbdbdb;
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul li {
  position: relative;
  line-height: 28px;
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul li:first-child ~ li {
  border-top: 1px solid #dbdbdb;
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul .sec_q {
  position: relative;
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul .sec_q .text {
  padding: 14px 100px 14px 0;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_body .inner .faq ul .sec_q .text {
    padding-right: 40px;
  }
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul .sec_a {
  height: 0;
  overflow: hidden;
  background-color: #fbfbfb;
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul .sec_a .text {
  padding: 21px 100px 21px 28px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_body .inner .faq ul .sec_a .text {
    padding: 16px;
  }
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul .btn_fold {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_body .inner .faq ul .btn_fold {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul .btn_fold::before {
  position: absolute;
  top: 5px;
  left: 11px;
  width: 2px;
  height: 14px;
  background-color: #262626;
  content: "";
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_body .inner .faq ul .btn_fold::before {
    top: 50%;
    left: auto;
    right: 10px;
    margin-top: -7px;
  }
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul .btn_fold::after {
  position: absolute;
  top: 11px;
  left: 5px;
  width: 14px;
  height: 2px;
  background-color: #262626;
  content: "";
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_body .inner .faq ul .btn_fold::after {
    top: 50%;
    left: auto;
    right: 4px;
    margin-top: -1px;
  }
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul .unfold .sec_a {
  height: auto;
}
.apply_program_page .program_article .program_contents .content_body .inner .faq ul .unfold .btn_fold::before {
  display: none;
}
.apply_program_page .program_article .program_contents .content_body .inner .contact dl {
  display: grid;
  grid-template-columns: 120px 1fr 120px 1fr;
  border-top: 2px solid #192a4f;
  border-bottom: 1px solid #dbdbdb;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_body .inner .contact dl {
    grid-template-columns: 100px 1fr;
  }
}
.apply_program_page .program_article .program_contents .content_body .inner .contact dl dt,
.apply_program_page .program_article .program_contents .content_body .inner .contact dl dd {
  line-height: 20px;
  padding: 15px 0;
}
.apply_program_page .program_article .program_contents .content_body .inner .contact dl dt {
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
}
.apply_program_page .program_article .program_contents .content_body .inner .contact dl dd {
  text-align: left;
  padding-right: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.apply_program_page .program_article .program_contents .content_body .inner .contact dl dt:nth-child(3) ~ dt,
.apply_program_page .program_article .program_contents .content_body .inner .contact dl dd:nth-child(4) ~ dd {
  border-top: 1px solid #dbdbdb;
}
.apply_program_page .program_article .program_contents .content_body .inner .contact dl ~ dl {
  border-top-width: 0;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_body .inner .contact dl dt:nth-child(1) ~ dt,
.apply_program_page .program_article .program_contents .content_body .inner .contact dl dd:nth-child(2) ~ dd {
    border-top: 1px solid #dbdbdb;
  }
}
.apply_program_page .program_article .program_contents .content_bottom {
  display: flex;
  justify-content: center;
}
.apply_program_page .program_article .program_contents .content_bottom .apply {
  margin-left: -28px;
}
@media (max-width: 960px) {
  .apply_program_page .program_article .program_contents .content_bottom {
    display: none;
  }
}

.apply_form_wrap {
  max-width: 906px;
  padding: 125px 0 160px;
  margin: 0 auto;
}
.apply_form_wrap .program_information .label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
}
.apply_form_wrap .program_information .label.in_progress {
  background-color: #0060fb;
}
.apply_form_wrap .program_information .label.scheduled {
  background-color: #333;
}
.apply_form_wrap .program_information .label.ended {
  color: #757575;
  background-color: #dbdbdb;
}
.apply_form_wrap .program_information h3 {
  font-size: 60px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 80px;
  word-break: break-all;
  margin: 6px 0 3px;
}
.apply_form_wrap .program_information .top_text {
  font-size: 21px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 40px;
  word-break: break-all;
}
.apply_form_wrap .program_apply {
  display: flex;
  margin-top: 52px;
}
.apply_form_wrap .program_apply .picture {
  flex-shrink: 0;
  width: 345px;
  height: 436px;
  margin-right: 81px;
}
.apply_form_wrap .program_apply .picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.apply_form_wrap .program_apply .apply_form {
  width: 100%;
}
.apply_form_wrap .program_apply .apply_form .form_header {
  margin-bottom: 32px;
}
.apply_form_wrap .program_apply .apply_form .form_header .steps {
  position: relative;
  display: flex;
  overflow: hidden;
  padding-top: 3px;
  margin-bottom: 56px;
  z-index: 1;
}
.apply_form_wrap .program_apply .apply_form .form_header .steps::before {
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  border-top: 3px solid #d8d8d8;
  z-index: -1;
  content: "";
}
.apply_form_wrap .program_apply .apply_form .form_header .steps span {
  position: relative;
  flex-grow: 1;
}
.apply_form_wrap .program_apply .apply_form .form_header .steps span:last-child {
  flex-grow: 0;
}
.apply_form_wrap .program_apply .apply_form .form_header .steps span strong {
  display: block;
  width: 25px;
  color: #132b52;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  text-align: center;
}
.apply_form_wrap .program_apply .apply_form .form_header .steps span strong::before {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 3px solid #d8d8d8;
  background-color: #d8d8d8;
  margin-bottom: 12px;
  box-sizing: border-box;
  content: "";
}
.apply_form_wrap .program_apply .apply_form .form_header .steps span.active strong::before {
  border-color: #132b52;
  background-color: #fff;
}
.apply_form_wrap .program_apply .apply_form .form_header .steps span.complete::before {
  position: absolute;
  top: 11px;
  left: 12px;
  right: -12px;
  border-top: 3px solid #132b52;
  z-index: -1;
  content: "";
}
.apply_form_wrap .program_apply .apply_form .form_header .steps span.complete strong::before {
  border-width: 0;
  background-color: #132b52;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -50px -155px;
}
@media (max-width: 960px) {
  .apply_form_wrap .program_apply .apply_form .form_header .steps span.complete strong::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
.apply_form_wrap .program_apply .apply_form .form_header h4 {
  color: #132b52;
  font-size: 18px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
}
.apply_form_wrap .program_apply .apply_form legend {
  display: none;
}
.apply_form_wrap .program_apply .apply_form .input_slot {
  max-width: 480px;
}
.apply_form_wrap .program_apply .apply_form .form_bottom {
  border-top: 1px solid #f2f2f2;
  padding-top: 29px;
  margin-top: 30px;
}
.apply_form_wrap .program_apply .apply_form .input_slot {
  display: flex;
  flex-direction: column;
}
.apply_form_wrap .program_apply .apply_form .input_slot ~ .input_slot {
  margin-top: 34px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_name {
  color: #192a4f;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5em;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type * {
  box-sizing: border-box;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type input[type=text] {
  width: 100%;
  height: 52px;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px 15px 14px;
  outline: 0;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type input[type=text]:-ms-input-placeholder {
  color: #757575;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type input[type=text]::-moz-placeholder {
  color: #757575;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type input[type=text]::placeholder {
  color: #757575;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type textarea {
  width: 100%;
  height: 192px;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px 15px 14px;
  outline: 0;
  resize: none;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type textarea:-ms-input-placeholder {
  color: #757575;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type textarea::-moz-placeholder {
  color: #757575;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type textarea::placeholder {
  color: #757575;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .file {
  display: flex;
  position: relative;
  width: 100%;
  height: 52px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .file input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 117px;
  height: 52px;
  opacity: 0;
  cursor: pointer;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .file label {
  flex-shrink: 0;
  width: 109px;
  height: 52px;
  color: #132b52;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  border: 1px solid #132b52;
  margin-left: 8px;
  cursor: pointer;
  box-sizing: border-box;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .file .file_name {
  width: 100%;
  height: 52px;
  color: #757575;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px 15px 14px;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .file .loader {
  width: 361px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .radio {
  position: relative;
  line-height: 24px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  z-index: -1;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .radio label {
  display: block;
  color: #757575;
  white-space: nowrap;
  padding-left: 32px;
  cursor: pointer;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .radio label::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #a8a8a8;
  border-radius: 9px;
  background-color: #fff;
  box-sizing: border-box;
  content: "";
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .radio input:checked + label::before {
  border-color: #132b52;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .radio input:checked + label::after {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #132b52;
  box-sizing: border-box;
  content: "";
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .checkbox {
  display: flex;
  position: relative;
  line-height: 24px;
  white-space: nowrap;
  padding-left: 30px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  z-index: -1;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .checkbox a {
  color: #757575;
  text-decoration: underline;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .checkbox label {
  color: #757575;
  cursor: pointer;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .checkbox label::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #a8a8a8;
  background-color: #fff;
  box-sizing: border-box;
  content: "";
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type .checkbox input:checked ~ label::before {
  border-width: 0;
  background-color: #192a4f;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -25px -130px;
}
@media (max-width: 960px) {
  .apply_form_wrap .program_apply .apply_form .input_slot .slot_type .checkbox input:checked ~ label::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type input.invalid,
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type textarea.invalid {
  border-color: #df322f;
}
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type input.invalid + .file_name,
.apply_form_wrap .program_apply .apply_form .input_slot .slot_type textarea.invalid + .file_name {
  border-color: #df322f;
}
.apply_form_wrap .program_apply .apply_form .input_slot .notice {
  color: #757575;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .alert {
  color: #df322f;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .upload_list {
  margin-top: 16px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .upload_list li {
  display: flex;
  justify-content: space-between;
  line-height: 24px;
  background-color: #fafafa;
  padding: 5px 11px 7px 16px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .upload_list li:first-child {
  padding-top: 13px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .upload_list li:last-child {
  padding-bottom: 15px;
}
.apply_form_wrap .program_apply .apply_form .input_slot .upload_list li .name {
  width: calc(100% - 45px - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.apply_form_wrap .program_apply .apply_form .input_slot .upload_list li button {
  flex-shrink: 0;
  color: #132b52;
  font-weight: 700;
  text-decoration: underline;
  padding: 0 10px;
}
.apply_form_wrap .program_apply .apply_form .btn_area {
  display: flex;
  margin-top: 44px;
  gap: 0 7px;
}
.apply_form_wrap .program_apply .apply_form .btn_area button {
  min-width: 155px;
  flex-shrink: 0;
  flex-grow: 1;
  height: 52px;
  color: #fff;
  font-weight: 700;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 52px;
  text-align: center;
  box-sizing: border-box;
}
.apply_form_wrap .program_apply .apply_form .btn_area button:only-child {
  width: 100%;
}
.apply_form_wrap .program_apply .apply_form .btn_area .btn_apply {
  background-color: #192a4f;
}
.apply_form_wrap .program_apply .apply_form .btn_area .btn_save_temp {
  background-color: #192a4f;
}
.apply_form_wrap .program_apply .apply_form .btn_area .btn_nav {
  color: #192a4f;
  line-height: 50px;
  border: 1px solid #192a4f;
  background-color: #fff;
}
.apply_form_wrap .program_apply .apply_form .btn_area .inactive {
  color: #fff;
  border-color: #dbdbdb;
  background-color: #dbdbdb;
  cursor: default;
}
.apply_form_wrap .program_apply .apply_form .btn_area .btn_modify {
  flex-grow: 1;
  background-color: #192a4f;
}

.apply_complete_wrap .cont {
  padding: 123px 0 163px;
}
.apply_complete_wrap .cont::before {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: 0 -180px;
  content: "";
}
@media (max-width: 960px) {
  .apply_complete_wrap .cont::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
.apply_complete_wrap h2 {
  color: #192a4f;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 52px;
  margin-bottom: 40px;
}
.apply_complete_wrap .apply_information dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-top: 2px solid #192a4f;
}
.apply_complete_wrap .apply_information dl dt,
.apply_complete_wrap .apply_information dl dd {
  line-height: 21px;
  border-bottom: 1px solid #dbdbdb;
  padding-top: 14px;
  padding-bottom: 15px;
  box-sizing: border-box;
}
.apply_complete_wrap .apply_information dl dt {
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  padding-left: 20px;
}
.apply_complete_wrap .apply_information dl dd {
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.apply_complete_wrap .btns_bottom {
  display: flex;
  justify-content: center;
  margin-top: 55px;
}
.apply_complete_wrap .btns_bottom a,
.apply_complete_wrap .btns_bottom button {
  width: 272px;
  height: 52px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  box-sizing: border-box;
  margin: 0 5px;
}
.apply_complete_wrap .btns_bottom .btn_white {
  color: #192a4f;
  border: 1px solid #192a4f;
  background-color: #fff;
}
.apply_complete_wrap .btns_bottom .btn_navy {
  color: #fff;
  border: 1px solid #192a4f;
  background-color: #192a4f;
}

.startups_company_list {
  position: relative;
}
.startups_company_list::before {
  position: absolute;
  top: -219px;
  left: 0;
  right: 0;
  height: 465px;
  background-color: rgba(216, 216, 216, 0.1);
  content: "";
}
@media (max-width: 960px) {
  .startups_company_list::before {
    display: none;
  }
}
.startups_company_list .cont {
  padding: 136px 0 171px;
}
@media (max-width: 960px) {
  .startups_company_list .cont {
    padding: 19px 0 40px;
  }
}
.startups_company_list .filter_wrap {
  position: relative;
  margin-bottom: 74px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_wrap {
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 21px;
    margin-bottom: 21px;
  }
}
.startups_company_list .filter_tab {
  display: flex;
}
.startups_company_list .filter_tab li {
  margin-right: 10px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_tab li {
    margin-right: 5px;
  }
}
.startups_company_list .filter_tab li button {
  height: 36px;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 34px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 24px;
  background-color: rgba(242, 242, 242, 0.5);
  padding: 0 23px;
}
.startups_company_list .filter_tab li button.btn_filter::before {
  display: inline-block;
  width: 19px;
  height: 18px;
  margin-right: 9px;
  vertical-align: -4px;
  content: "";
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -50px -185px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_tab li button.btn_filter::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .startups_company_list .filter_tab li button {
    height: 32px;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    background-color: #fff;
    padding: 0 15px;
  }
  .startups_company_list .filter_tab li button.btn_filter {
    position: relative;
    width: 57px;
    overflow: hidden;
    font-size: 1px;
    text-indent: -999px;
  }
  .startups_company_list .filter_tab li button.btn_filter::before {
    position: absolute;
    top: 7px;
    left: 19px;
    width: 17px;
    height: 16px;
    margin-right: 0;
    vertical-align: 0;
    background-position: 0 -60px;
  }
}
.startups_company_list .filter_tab li.selected button {
  color: #fff;
  border-color: #192a4f;
  background-color: #192a4f;
}
.startups_company_list .filter_tab li.selected button.btn_filter::before {
  background-position: -50px -208px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_tab li.selected button.btn_filter::before {
    background-position: -20px -60px;
  }
}
.startups_company_list .filter_layer {
  position: absolute;
  top: 51px;
  left: 0;
  width: 100%;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 100;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer {
    position: fixed;
    top: 0;
    bottom: 0;
    border-width: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
  }
}
.startups_company_list .filter_layer .layer_inner {
  margin: 0 70px 0 57px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    margin: 0;
  }
}
.startups_company_list .filter_layer .layer_header {
  padding: 23px 7px 13px;
  border-bottom: 1px solid #f0f0f0;
}
.startups_company_list .filter_layer .layer_header .tab {
  display: none;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_header {
    padding: 47px 0 0;
    border-width: 0;
  }
  .startups_company_list .filter_layer .layer_header .tab {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #dbdbdb;
  }
  .startups_company_list .filter_layer .layer_header .tab li button {
    position: relative;
    min-width: 86px;
    color: #dbdbdb;
    font-size: 14px;
    font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    padding: 7px 8px;
  }
  .startups_company_list .filter_layer .layer_header .tab li.selected button {
    color: #192a4f;
  }
  .startups_company_list .filter_layer .layer_header .tab li.selected button::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    border-bottom: 1px solid #192a4f;
    content: "";
  }
}
.startups_company_list .filter_layer .layer_body {
  padding: 18px 0 53px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_body {
    padding: 58px 0 16px;
  }
}
.startups_company_list .filter_layer .layer_body .filter_option {
  display: grid;
  grid-template-columns: 128px 1fr;
  line-height: 34px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_body .filter_option {
    display: none;
  }
  .startups_company_list .filter_layer .layer_body .filter_option.selected {
    display: block;
  }
}
.startups_company_list .filter_layer .layer_body .filter_option ~ .filter_option {
  margin-top: 38px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_body .filter_option ~ .filter_option {
    margin-top: 0;
  }
}
.startups_company_list .filter_layer .layer_body .filter_option .option_name {
  text-align: center;
  white-space: nowrap;
  padding-right: 38px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_body .filter_option .option_name {
    display: none;
  }
}
.startups_company_list .filter_layer .layer_body .filter_option .option_list {
  color: #dbdbdb;
  font-weight: 500;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_body .filter_option .option_list {
    max-height: 45vh;
    overflow: hidden;
    overflow-y: auto;
  }
}
.startups_company_list .filter_layer .layer_body .filter_option .option_list ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_body .filter_option .option_list ul {
    gap: 12px 8px;
    padding: 0 16px;
  }
}
.startups_company_list .filter_layer .layer_body .filter_option .option_list li {
  position: relative;
  margin-right: 45px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_body .filter_option .option_list li {
    width: calc(50% - 4px);
    margin-right: 0;
  }
}
.startups_company_list .filter_layer .layer_body .filter_option .option_list input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.startups_company_list .filter_layer .layer_body .filter_option .option_list label {
  cursor: pointer;
}
@media (min-width: 960px) {
  .startups_company_list .filter_layer .layer_body .filter_option .option_list label:hover {
    text-decoration: underline;
    text-decoration: underline;
  }
}
.startups_company_list .filter_layer .layer_body .filter_option .option_list input:checked + label {
  color: #081f60;
  text-decoration: underline;
}
.startups_company_list .filter_layer .layer_body .filter_option .option_list span {
  cursor: pointer;
}
@media (min-width: 960px) {
  .startups_company_list .filter_layer .layer_body .filter_option .option_list span:hover {
    text-decoration: underline;
    text-decoration: underline;
  }
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_body .filter_option .option_list span {
    display: block;
    height: 48px;
    color: #828282;
    font-size: 14px;
    line-height: 46px;
    text-align: center;
    border: 1px solid #d8d8d8;
    box-sizing: border-box;
  }
}
.startups_company_list .filter_layer .layer_body .filter_option .option_list span.active {
  color: #081f60;
  text-decoration: underline;
}
.startups_company_list .filter_layer .layer_body .filter_option .list_bottom {
  display: none;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .layer_body .filter_option .list_bottom {
    display: block;
    padding: 16px 16px 0;
  }
  .startups_company_list .filter_layer .layer_body .filter_option .list_bottom button {
    width: 100%;
    height: 56px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    background-color: #192a4f;
  }
}
.startups_company_list .filter_layer .btn_filter_clear {
  color: #828282;
  line-height: 24px;
  text-decoration: underline;
  padding: 4px 5px;
}
.startups_company_list .filter_layer .btn_filter_clear::after {
  display: inline-block;
  width: 21px;
  height: 24px;
  margin-left: 6px;
  vertical-align: top;
  content: "";
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -25px -230px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .btn_filter_clear::after {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .btn_filter_clear {
    position: absolute;
    top: 98px;
    right: 16px;
    font-size: 12px;
    padding: 0;
  }
  .startups_company_list .filter_layer .btn_filter_clear::after {
    width: 12px;
    height: 15px;
    vertical-align: -3px;
    background-position: -40px -60px;
  }
}
.startups_company_list .filter_layer .btn_filter_close {
  position: absolute;
  top: 18px;
  right: 23px;
  width: 21px;
  height: 20px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: 0 -230px;
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .btn_filter_close {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .startups_company_list .filter_layer .btn_filter_close {
    top: 21px;
    left: 50%;
    width: 74px;
    height: 3px;
    border-radius: 2px;
    background-image: none;
    background-color: #d8d8d8;
    margin-left: -37px;
  }
  .startups_company_list .filter_layer .btn_filter_close::after {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
    content: "";
  }
}
.startups_company_list .list_wrap ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1220px) {
  .startups_company_list .list_wrap ul {
    gap: 0 24px;
  }
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap ul {
    gap: 0 8px;
  }
}
@media (max-width: 640px) {
  .startups_company_list .list_wrap ul {
    gap: 16px 0;
  }
}
.startups_company_list .list_wrap li {
  margin-right: 50px;
}
.startups_company_list .list_wrap li:nth-child(3n) {
  margin-right: 0;
}
.startups_company_list .list_wrap li:nth-child(3n) ~ li {
  margin-top: 52px;
}
@media (max-width: 1220px) {
  .startups_company_list .list_wrap li {
    width: calc(33.33% - 16px);
    margin-right: 0;
  }
  .startups_company_list .list_wrap li:nth-child(3n) ~ li {
    margin-top: 24px;
  }
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap li {
    width: calc(50% - 4px);
  }
  .startups_company_list .list_wrap li:nth-child(2) ~ li {
    margin-top: 24px;
  }
}
@media (max-width: 640px) {
  .startups_company_list .list_wrap li {
    width: 100%;
    max-width: 480px;
    margin: 0 auto !important;
  }
}
.startups_company_list .list_wrap .item {
  display: block;
  position: relative;
  width: 360px;
  background-color: #fff;
}
@media (max-width: 1220px) {
  .startups_company_list .list_wrap .item {
    width: auto;
  }
}
.startups_company_list .list_wrap .item .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 244px;
  overflow: hidden;
  border: 1px solid #c3c3c3;
  box-sizing: border-box;
}
.startups_company_list .list_wrap .item .logo img {
  width: 50%;
  height: auto;
  max-height: 100%;
}
@media (max-width: 1220px) {
  .startups_company_list .list_wrap .item .logo {
    height: auto;
    aspect-ratio: 160/94;
  }
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .item .logo {
    border-color: #e1e1e1;
  }
}
.startups_company_list .list_wrap .item .information {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 224px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #dbdbdb;
  padding-top: 36px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .item .information {
    height: 162px;
    padding-top: 17px;
  }
}
@media (max-width: 640px) {
  .startups_company_list .list_wrap .item .information {
    height: auto;
    padding-bottom: 20px;
  }
}
.startups_company_list .list_wrap .item .information .label {
  height: 24px;
  overflow: hidden;
  color: #fff;
  font-weight: 400;
  line-height: 22px;
  border-radius: 2px;
  background-color: #192a4f;
  padding: 0 8px;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .item .information .label {
    height: 19px;
    font-size: 11px;
    line-height: 17px;
  }
}
.startups_company_list .list_wrap .item .information .name {
  width: 80%;
  font-size: 20px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 30px;
  margin-top: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .item .information .name {
    font-size: 16px;
    line-height: 1;
    margin-top: 19px;
  }
}
.startups_company_list .list_wrap .item .information .features {
  flex-wrap: wrap;
  gap: 10px 4px;
  justify-content: center;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  margin-top: 24px;
}
@media (max-width: 1220px) {
  .startups_company_list .list_wrap .item .information .features {
    padding: 0;
  }
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .item .information .features {
    padding: 0 16px;
    margin-top: 21px;
    flex-wrap: wrap;
  }
}
.startups_company_list .list_wrap .item .information .features li {
  margin: 0 2px;
}
@media (max-width: 1220px) {
  .startups_company_list .list_wrap .item .information .features li {
    width: auto;
  }
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .item .information .features li {
    margin: 0 !important;
  }
}
.startups_company_list .list_wrap .item .information .features li span {
  height: 24px;
  display: block;
  color: #333;
  font-size: 11px;
  line-height: 22px;
  white-space: nowrap;
  border-radius: 12px;
  background-color: rgba(242, 242, 242, 0.5);
  padding: 0 12px;
  box-sizing: border-box;
}
.startups_company_list .list_wrap .item .information .features li span.main {
  color: #192a4f;
  line-height: 20px;
  border: 1px solid #192a4f;
  background-color: #fff;
  padding: 0 11px;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .item .information .features li span.main {
    padding: 0 9px;
  }
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .item .information .features li span {
    font-size: 10px;
    text-align: center;
    padding: 0 10px;
  }
}
.startups_company_list .list_wrap .item .company_message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.2s;
}
.startups_company_list .list_wrap .item .company_message .name {
  width: 80%;
  font-size: 36px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .item .company_message .name {
    font-size: 20px;
  }
}
.startups_company_list .list_wrap .item .company_message .text {
  max-width: 80%;
  font-weight: 500;
  line-height: 24px;
  word-break: break-all;
  margin-top: 14px;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .item .company_message .text {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px;
  }
}
.startups_company_list .list_wrap .item:hover .company_message {
  opacity: 1;
}
.startups_company_list .list_wrap .list_pagination {
  margin-top: 88px;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .list_pagination {
    margin-top: 40px;
  }
}
.startups_company_list .list_wrap .list_pagination {
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .list_pagination {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.startups_company_list .list_wrap .list_pagination .btn_nav {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 4px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
.startups_company_list .list_wrap .list_pagination .btn_nav::after {
  position: absolute;
  top: 6px;
  height: 12px;
  content: "";
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .list_pagination .btn_nav::after {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .list_pagination .btn_nav {
    margin: 0;
  }
}
.startups_company_list .list_wrap .list_pagination .btn_nav.prev_p::after, .startups_company_list .list_wrap .list_pagination .btn_nav.next_p::after {
  left: 6px;
  width: 13px;
  background-position: -65px -130px;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .list_pagination .btn_nav.prev_p::after, .startups_company_list .list_wrap .list_pagination .btn_nav.next_p::after {
    background-position: -55px -40px;
  }
}
.startups_company_list .list_wrap .list_pagination .btn_nav.prev::after, .startups_company_list .list_wrap .list_pagination .btn_nav.next::after {
  left: 9px;
  width: 8px;
  background-position: -65px -130px;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .list_pagination .btn_nav.prev::after, .startups_company_list .list_wrap .list_pagination .btn_nav.next::after {
    background-position: -55px -40px;
  }
}
.startups_company_list .list_wrap .list_pagination .btn_nav.prev_p, .startups_company_list .list_wrap .list_pagination .btn_nav.prev {
  transform: rotateY(180deg);
}
.startups_company_list .list_wrap .list_pagination .btn_nav:disabled {
  opacity: 0.7;
  cursor: default;
}
.startups_company_list .list_wrap .list_pagination .page {
  display: flex;
  line-height: 24px;
  margin: 0 4px;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .list_pagination .page {
    margin: 0;
  }
}
.startups_company_list .list_wrap .list_pagination .page > * {
  min-width: 24px;
  height: 24px;
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 0 7px;
  margin: 0 8px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .startups_company_list .list_wrap .list_pagination .page > * {
    letter-spacing: -1px;
    padding: 0 5px;
    margin: 0;
  }
}
.startups_company_list .list_wrap .list_pagination .page .selected {
  color: #192a4f;
  font-weight: 700;
}
@media (min-width: 960px) {
  .startups_company_list .list_wrap .list_pagination .page a:hover {
    text-decoration: underline;
  }
}

.member_page .cont {
  padding-top: 121px;
}
@media (max-width: 960px) {
  .member_page .cont {
    padding-top: 40px;
  }
}
.member_page .common_title {
  color: #192a4f;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 52px;
}
.member_page .common_title em {
  position: relative;
  top: 10px;
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  vertical-align: top;
}
@media (max-width: 960px) {
  .member_page .common_title em {
    top: 5px;
  }
}
@media (max-width: 960px) {
  .member_page .common_title {
    font-size: 24px;
    line-height: 34px;
  }
}
.member_page .common_sub_text {
  color: #757575;
  font-size: 13px;
  line-height: 19px;
  margin-top: 16px;
}

@media (max-width: 960px) {
  .login_wrap {
    padding: 0 16px;
  }
}
.login_wrap .cont {
  padding-bottom: 213px;
}
#wrap .login_wrap .cont {
  max-width: 480px;
}
@media (max-width: 1220px) {
  #wrap .login_wrap .cont {
    margin: 0 auto;
  }
}
.login_wrap .common_title {
  margin-bottom: 56px;
}
@media (max-width: 960px) {
  .login_wrap .common_title {
    margin-bottom: 38px;
  }
}
.login_wrap .login_form legend {
  display: none;
}
.login_wrap .login_form .input_slot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.login_wrap .login_form .input_slot ~ .input_slot {
  margin-top: 37px;
}
@media (max-width: 960px) {
  .login_wrap .login_form .input_slot ~ .input_slot {
    margin-top: 24px;
  }
}
.login_wrap .login_form .input_slot label {
  color: #132b52;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  margin-bottom: 19px;
}
@media (max-width: 960px) {
  .login_wrap .login_form .input_slot label {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.login_wrap .login_form .input_slot input {
  width: 100%;
  height: 52px;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px 15px 14px;
  box-sizing: border-box;
  outline: 0;
}
.login_wrap .login_form .input_slot input:-ms-input-placeholder {
  color: #757575;
}
.login_wrap .login_form .input_slot input::-moz-placeholder {
  color: #757575;
}
.login_wrap .login_form .input_slot input::placeholder {
  color: #757575;
}
.login_wrap .login_form .btn_login {
  width: 100%;
  height: 52px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  background-color: #192a4f;
  margin-top: 41px;
}
@media (max-width: 960px) {
  .login_wrap .login_form .btn_login {
    font-size: 13px;
    margin-top: 32px;
  }
}
.login_wrap .bottom_menu {
  position: relative;
  height: 0;
  z-index: 1;
}
.login_wrap .bottom_menu ul {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 37px;
  left: 0;
  width: 100%;
}
@media (max-width: 960px) {
  .login_wrap .bottom_menu ul {
    top: 133px;
  }
}
.login_wrap .bottom_menu li {
  position: relative;
}
.login_wrap .bottom_menu li:first-child ~ li {
  padding-left: 24px;
  margin-left: 23px;
}
@media (max-width: 960px) {
  .login_wrap .bottom_menu li:first-child ~ li {
    padding-left: 12px;
    margin-left: 11px;
  }
}
.login_wrap .bottom_menu li:first-child ~ li::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  border-left: 1px solid #f2f2f2;
  content: "";
}
.login_wrap .bottom_menu li a {
  color: #757575;
}
@media (min-width: 960px) {
  .login_wrap .bottom_menu li a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 960px) {
  .login_wrap .bottom_menu li a {
    color: #828282;
  }
}
.login_wrap .bottom_menu li strong a {
  color: #000;
  font-weight: 500;
}
@media (max-width: 960px) {
  .login_wrap .bottom_menu li strong a {
    color: #828282;
    font-weight: 400;
  }
}

@media (max-width: 960px) {
  .find_id_wrap {
    padding: 0 16px;
  }
}
.find_id_wrap .cont {
  padding-bottom: 107px;
}
#wrap .find_id_wrap .cont {
  max-width: 480px;
}
@media (max-width: 1220px) {
  #wrap .find_id_wrap .cont {
    margin: 0 auto;
  }
}
.find_id_wrap .common_sub_text {
  margin-bottom: 56px;
}
@media (max-width: 960px) {
  .find_id_wrap .common_sub_text {
    margin-bottom: 46px;
  }
}
.find_id_wrap .find_id_form legend {
  display: none;
}
.find_id_wrap .find_id_form .input_slot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.find_id_wrap .find_id_form .input_slot ~ .input_slot {
  margin-top: 37px;
}
@media (max-width: 960px) {
  .find_id_wrap .find_id_form .input_slot ~ .input_slot {
    margin-top: 24px;
  }
}
.find_id_wrap .find_id_form .input_slot label {
  color: #132b52;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  margin-bottom: 19px;
}
@media (max-width: 960px) {
  .find_id_wrap .find_id_form .input_slot label {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.find_id_wrap .find_id_form .input_slot input {
  width: 100%;
  height: 52px;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px 15px 14px;
  box-sizing: border-box;
  outline: 0;
}
.find_id_wrap .find_id_form .input_slot input:-ms-input-placeholder {
  color: #757575;
}
.find_id_wrap .find_id_form .input_slot input::-moz-placeholder {
  color: #757575;
}
.find_id_wrap .find_id_form .input_slot input::placeholder {
  color: #757575;
}
.find_id_wrap .find_id_form .input_slot .inner_slot {
  position: relative;
  display: flex;
  width: 100%;
}
.find_id_wrap .find_id_form .input_slot .inner_slot .btn_cert {
  flex-shrink: 0;
  width: 109px;
  height: 52px;
  color: #192a4f;
  font-weight: 700;
  border: 1px solid #192a4f;
  box-sizing: border-box;
  margin-left: 8px;
}
.find_id_wrap .find_id_form .input_slot .inner_slot .btn_cert:disabled {
  color: #fff;
  line-height: 48px;
  text-align: center;
  border-color: #dbdbdb;
  background-color: #dbdbdb;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 960px) {
  .find_id_wrap .find_id_form .input_slot .inner_slot .btn_cert {
    width: 83px;
  }
}
.find_id_wrap .find_id_form .input_slot .inner_slot .icon_cert_complete {
  position: absolute;
  top: 18px;
  right: 134px;
  width: 19px;
  height: 19px;
  z-index: 5;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: 0 -260px;
}
@media (max-width: 960px) {
  .find_id_wrap .find_id_form .input_slot .inner_slot .icon_cert_complete {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .find_id_wrap .find_id_form .input_slot .inner_slot .icon_cert_complete {
    right: 105px;
    width: 18px;
    height: 18px;
    background-position: -55px -60px;
  }
}
.find_id_wrap .find_id_form .input_slot .notice {
  color: #757575;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.find_id_wrap .find_id_form .input_slot .alert {
  color: #df322f;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.find_id_wrap .find_id_form .btn_find_id {
  width: 100%;
  height: 52px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  background-color: #192a4f;
  margin-top: 41px;
}
@media (max-width: 960px) {
  .find_id_wrap .find_id_form .btn_find_id {
    font-size: 13px;
    margin-top: 56px;
  }
}
.find_id_wrap .find_id_result {
  padding-bottom: 70px;
  margin-top: 40px;
}
@media (max-width: 960px) {
  .find_id_wrap .find_id_result {
    margin-top: 34px;
  }
}
.find_id_wrap .find_id_result .user_id {
  display: block;
  font-weight: 400;
  border-top: 2px solid #082c55;
  border-bottom: 1px solid #dbdbdb;
  line-height: 24px;
  padding: 11px 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.find_id_wrap .find_id_result .btn_login {
  display: block;
  width: 272px;
  height: 52px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  background-color: #192a4f;
  margin: 40px auto 0;
}
@media (max-width: 960px) {
  .find_id_wrap .find_id_result .btn_login {
    margin-top: 83px;
  }
}
.find_id_wrap .find_id_result .btn_bottom {
  line-height: 24px;
  text-align: center;
  margin-top: 27px;
}
.find_id_wrap .find_id_result .btn_bottom a {
  color: #757575;
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 960px) {
  .find_password_wrap {
    padding: 0 16px;
  }
}
.find_password_wrap .cont {
  padding-bottom: 250px;
}
#wrap .find_password_wrap .cont {
  max-width: 480px;
}
@media (max-width: 1220px) {
  #wrap .find_password_wrap .cont {
    margin: 0 auto;
  }
}
.find_password_wrap .common_sub_text {
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .find_password_wrap .common_sub_text {
    margin-bottom: 46px;
  }
}
.find_password_wrap .find_password_form {
  position: relative;
}
.find_password_wrap .find_password_form legend {
  display: none;
}
.find_password_wrap .find_password_form .input_slot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.find_password_wrap .find_password_form .input_slot label {
  color: #132b52;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  margin-bottom: 19px;
}
@media (max-width: 960px) {
  .find_password_wrap .find_password_form .input_slot label {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.find_password_wrap .find_password_form .input_slot input {
  width: 100%;
  height: 52px;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px 15px 14px;
  box-sizing: border-box;
  outline: 0;
}
.find_password_wrap .find_password_form .input_slot input:-ms-input-placeholder {
  color: #757575;
}
.find_password_wrap .find_password_form .input_slot input::-moz-placeholder {
  color: #757575;
}
.find_password_wrap .find_password_form .input_slot input::placeholder {
  color: #757575;
}
.find_password_wrap .find_password_form .input_slot .notice {
  color: #757575;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.find_password_wrap .find_password_form .input_slot .alert {
  color: #df322f;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.find_password_wrap .find_password_form .btn_find_password {
  width: 100%;
  height: 52px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  background-color: #192a4f;
  margin-top: 41px;
}
@media (max-width: 960px) {
  .find_password_wrap .find_password_form .btn_find_password {
    font-size: 13px;
    margin-top: 56px;
  }
}
.find_password_wrap .find_password_form .btn_view_modal {
  position: absolute;
  top: -1px;
  left: 50px;
  width: 16px;
  height: 16px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -25px -260px;
}
@media (max-width: 960px) {
  .find_password_wrap .find_password_form .btn_view_modal {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .find_password_wrap .find_password_form .btn_view_modal {
    top: 0;
    left: 46px;
    width: 15px;
    height: 15px;
    background-position: -75px -60px;
  }
}
.find_password_wrap .find_password_form .modal_notice {
  top: -10px;
  left: 74px;
}
@media (max-width: 960px) {
  .find_password_wrap .find_password_form .modal_notice {
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -135px 0 0 -160px;
  }
}

@media (max-width: 960px) {
  .join_wrap {
    padding: 0 16px;
  }
}
.join_wrap .cont {
  padding-bottom: 283px;
}
@media (max-width: 960px) {
  .join_wrap .cont {
    padding-bottom: 100px;
  }
}
@media (max-width: 1220px) {
  #wrap .join_wrap .cont {
    max-width: 980px;
    margin: 0 auto;
  }
}
.join_wrap .common_sub_text {
  margin-bottom: 92px;
}
@media (max-width: 960px) {
  .join_wrap .common_sub_text {
    margin-bottom: 46px;
  }
}
.join_wrap .join_form {
  position: relative;
  padding: 0 100px 41px;
}
@media (max-width: 1220px) {
  .join_wrap .join_form {
    padding-left: 0;
    padding-right: 0;
  }
}
.join_wrap .join_form::after {
  position: absolute;
  bottom: 0;
  left: 100px;
  right: 100px;
  border-bottom: 1px solid #f2f2f2;
  content: "";
}
@media (max-width: 960px) {
  .join_wrap .join_form::after {
    left: 0;
    right: 0;
    border-color: #dbdbdb;
  }
}
.join_wrap .join_form + .common_title {
  margin-top: 80px;
}
@media (max-width: 960px) {
  .join_wrap .join_form + .common_title {
    margin-top: 24px;
  }
}
.join_wrap .join_form legend {
  display: none;
}
.join_wrap .join_form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 37px 20px;
}
@media (max-width: 960px) {
  .join_wrap .join_form fieldset {
    gap: 24px 0;
  }
}
.join_wrap .join_form .input_slot {
  position: relative;
  display: flex;
  width: calc(50% - 10px);
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot {
    width: 100%;
  }
}
.join_wrap .join_form .input_slot > label {
  position: relative;
  color: #132b52;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  margin-bottom: 19px;
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot > label {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.join_wrap .join_form .input_slot input[type=text],
.join_wrap .join_form .input_slot input[type=password],
.join_wrap .join_form .input_slot textarea {
  width: 100%;
  height: 52px;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px 15px 14px;
  box-sizing: border-box;
  outline: 0;
}
.join_wrap .join_form .input_slot input[type=text]:-ms-input-placeholder,
.join_wrap .join_form .input_slot input[type=password]:-ms-input-placeholder,
.join_wrap .join_form .input_slot textarea:-ms-input-placeholder {
  color: #757575;
}
.join_wrap .join_form .input_slot input[type=text]::-moz-placeholder, .join_wrap .join_form .input_slot input[type=password]::-moz-placeholder, .join_wrap .join_form .input_slot textarea::-moz-placeholder {
  color: #757575;
}
.join_wrap .join_form .input_slot input[type=text]:-ms-input-placeholder, .join_wrap .join_form .input_slot input[type=password]:-ms-input-placeholder, .join_wrap .join_form .input_slot textarea:-ms-input-placeholder {
  color: #757575;
}
.join_wrap .join_form .input_slot input[type=text]::placeholder,
.join_wrap .join_form .input_slot input[type=password]::placeholder,
.join_wrap .join_form .input_slot textarea::placeholder {
  color: #757575;
}
.join_wrap .join_form .input_slot textarea {
  height: 76px;
  resize: none;
}
.join_wrap .join_form .input_slot input.invalid,
.join_wrap .join_form .input_slot textarea.invalid {
  border-color: #df322f;
}
.join_wrap .join_form .input_slot input.invalid + .file_name,
.join_wrap .join_form .input_slot textarea.invalid + .file_name {
  border-color: #df322f;
}
.join_wrap .join_form .input_slot input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 117px;
  height: 52px;
  opacity: 0;
  cursor: pointer;
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot input[type=file] {
    right: 91px;
  }
}
.join_wrap .join_form .input_slot input[type=file] ~ label {
  position: absolute;
  top: 0;
  right: 0;
  width: 109px;
  height: 52px;
  color: #192a4f;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  border: 1px solid #192a4f;
  margin-left: 8px;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot input[type=file] ~ label {
    width: 83px;
  }
}
.join_wrap .join_form .input_slot input[type=file] ~ .file_name {
  width: calc(100% - 109px - 8px);
  height: 52px;
  color: #757575;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px 15px 14px;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot input[type=file] ~ .file_name {
    width: calc(100% - 83px - 8px);
  }
}
.join_wrap .join_form .input_slot input[type=file] ~ .loader {
  width: calc(100% - 109px - 10px);
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot input[type=file] ~ .loader {
    width: calc(100% - 83px - 10px);
  }
}
.join_wrap .join_form .input_slot .inner_slot {
  position: relative;
  display: flex;
  width: 100%;
}
.join_wrap .join_form .input_slot .inner_slot.half {
  width: calc(50% - 10px);
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot .inner_slot.half {
    width: 100%;
  }
}
.join_wrap .join_form .input_slot .inner_slot ~ .inner_slot {
  margin-top: 12px;
}
.join_wrap .join_form .input_slot .inner_slot button {
  flex-shrink: 0;
  width: 109px;
  height: 52px;
  color: #192a4f;
  font-weight: 700;
  border: 1px solid #192a4f;
  box-sizing: border-box;
  margin-left: 8px;
}
.join_wrap .join_form .input_slot .inner_slot button:disabled {
  color: #fff;
  line-height: 48px;
  text-align: center;
  border-color: #dbdbdb;
  background-color: #dbdbdb;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot .inner_slot button {
    width: 83px;
    font-size: 13px;
  }
}
.join_wrap .join_form .input_slot .inner_slot .icon_cert_complete {
  position: absolute;
  top: 18px;
  right: 134px;
  width: 19px;
  height: 19px;
  z-index: 5;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: 0 -260px;
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot .inner_slot .icon_cert_complete {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot .inner_slot .icon_cert_complete {
    right: 105px;
    width: 18px;
    height: 18px;
    background-position: -55px -60px;
  }
}
.join_wrap .join_form .input_slot .select_filter {
  width: 100%;
  margin-bottom: -4px;
}
.join_wrap .join_form .input_slot .select_filter .selectbox_module .placeholder {
  width: 100%;
}
.join_wrap .join_form .input_slot .select_filter .selectbox_module .options {
  max-height: 268px;
  overflow: auto;
}
.join_wrap .join_form .input_slot .select_filter .selected_preview {
  padding-top: 4px;
}
.join_wrap .join_form .input_slot .notice {
  color: #757575;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.join_wrap .join_form .input_slot .alert {
  color: #df322f;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.join_wrap .join_form .input_slot .check_visible {
  position: absolute;
  top: -4px;
  right: 0px;
  line-height: 24px;
  padding-left: 30px;
}
.join_wrap .join_form .input_slot .check_visible input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  z-index: -1;
}
.join_wrap .join_form .input_slot .check_visible label {
  color: #757575;
  cursor: pointer;
}
.join_wrap .join_form .input_slot .check_visible label::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #a8a8a8;
  background-color: #fff;
  box-sizing: border-box;
  content: "";
}
.join_wrap .join_form .input_slot .check_visible input:checked ~ label::before {
  border-width: 0;
  background-color: #192a4f;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -25px -130px;
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot .check_visible input:checked ~ label::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot .check_visible input:checked ~ label::before {
    background-position: 0 -40px;
  }
}
.join_wrap .join_form .input_slot.full {
  width: 100%;
}
.join_wrap .join_form .input_slot.single_line {
  margin-right: 50%;
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot.single_line {
    margin-right: 0;
  }
}
.join_wrap .join_form .input_slot.required > label::after {
  position: absolute;
  top: -2px;
  left: 100%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #132b52;
  margin-left: 4px;
  content: "";
}
@media (max-width: 960px) {
  .join_wrap .join_form .input_slot.required > label::after {
    top: 0;
  }
}
.join_wrap .form_bottom {
  padding: 0 100px;
  margin-top: 70px;
}
@media (max-width: 960px) {
  .join_wrap .form_bottom {
    padding: 0;
    margin-top: 34px;
  }
}
.join_wrap .form_bottom .check_policy .checkbox {
  display: flex;
  position: relative;
  line-height: 24px;
  white-space: nowrap;
  padding-left: 30px;
  margin-right: 16px;
}
.join_wrap .form_bottom .check_policy .checkbox ~ .checkbox {
  margin-top: 20px;
}
.join_wrap .form_bottom .check_policy .checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  z-index: -1;
}
.join_wrap .form_bottom .check_policy .checkbox a {
  color: #757575;
  text-decoration: underline;
}
.join_wrap .form_bottom .check_policy .checkbox label {
  color: #757575;
  cursor: pointer;
}
.join_wrap .form_bottom .check_policy .checkbox label::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #a8a8a8;
  background-color: #fff;
  box-sizing: border-box;
  content: "";
}
.join_wrap .form_bottom .check_policy .checkbox input:checked ~ label::before {
  border-width: 0;
  background-color: #192a4f;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -25px -130px;
}
@media (max-width: 960px) {
  .join_wrap .form_bottom .check_policy .checkbox input:checked ~ label::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .join_wrap .form_bottom .check_policy .checkbox input:checked ~ label::before {
    background-position: 0 -40px;
  }
}
.join_wrap .form_bottom .check_policy .notice {
  color: #757575;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.join_wrap .form_bottom .check_policy .alert {
  color: #df322f;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.join_wrap .form_bottom .btn_area {
  display: flex;
  justify-content: center;
  margin-top: 133px;
}
@media (max-width: 960px) {
  .join_wrap .form_bottom .btn_area {
    margin-top: 48px;
  }
}
.join_wrap .form_bottom .btn_area button {
  flex-shrink: 0;
  height: 52px;
  color: #fff;
  font-weight: 700;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 52px;
  text-align: center;
  box-sizing: border-box;
}
.join_wrap .form_bottom .btn_area .btn_join_complete {
  width: 340px;
  background-color: #192a4f;
}
@media (max-width: 960px) {
  .join_wrap .form_bottom .btn_area .btn_join_complete {
    width: 100%;
    max-width: 358px;
  }
}

.join_complete_wrap .cont {
  padding: 123px 0 259px;
}
@media (max-width: 960px) {
  .join_complete_wrap .cont {
    padding-top: 62px;
  }
}
.join_complete_wrap .cont::before {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 15px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: 0 -180px;
  content: "";
}
@media (max-width: 960px) {
  .join_complete_wrap .cont::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .join_complete_wrap .cont::before {
    background-position: 0 -80px;
    margin-bottom: 20px;
  }
}
.join_complete_wrap .common_title {
  text-align: center;
}
.join_complete_wrap .join_complete {
  margin-top: 40px;
}
@media (max-width: 960px) {
  .join_complete_wrap .join_complete {
    margin-top: 77px;
  }
}
.join_complete_wrap .join_complete .btn_login {
  display: block;
  width: 272px;
  height: 52px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  background-color: #192a4f;
  margin: 40px auto 0;
}
@media (max-width: 960px) {
  .join_complete_wrap .join_complete .btn_login {
    width: 100%;
    max-width: 358px;
  }
}
.join_complete_wrap .join_complete .btn_bottom {
  line-height: 24px;
  text-align: center;
  margin-top: 27px;
}
.join_complete_wrap .join_complete .btn_bottom a {
  color: #757575;
  font-weight: 500;
  text-decoration: underline;
}

.my_page .common_title {
  font-size: 32px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  margin-bottom: 52px;
}
.my_page .common_title em {
  position: relative;
  top: 15px;
  color: #757575;
  font-size: 12px;
  font-weight: 400;
  margin-left: 16px;
  vertical-align: top;
}
@media (max-width: 960px) {
  .my_page .common_title {
    font-size: 14px;
    line-height: 32px;
    margin-bottom: 23px;
  }
}
.my_page .program_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 44px;
}
@media (max-width: 1220px) {
  .my_page .program_list ul {
    gap: 24px 24px;
  }
}
@media (max-width: 960px) {
  .my_page .program_list ul {
    gap: 25px 0;
  }
}
.my_page .program_list li {
  width: calc(50% - 22px);
  box-sizing: border-box;
}
@media (max-width: 1220px) {
  .my_page .program_list li {
    width: calc(50% - 12px);
  }
}
@media (max-width: 960px) {
  .my_page .program_list li {
    width: 100%;
  }
}
.my_page .program_list .item {
  display: flex;
  position: relative;
  background-color: #fff;
}
@media (max-width: 960px) {
  .my_page .program_list .item {
    margin-bottom: 57px;
  }
}
.my_page .program_list .item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #dbdbdb;
  content: "";
}
.my_page .program_list .item .label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 10px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 14px;
  z-index: 5;
}
.my_page .program_list .item .label.blue {
  background-color: #0060fb;
}
.my_page .program_list .item .label.black {
  background-color: #333;
}
.my_page .program_list .item .label.gray {
  background-color: #dbdbdb;
}
@media (max-width: 960px) {
  .my_page .program_list .item .label {
    top: 8px;
    left: 8px;
    width: 38px;
    height: 38px;
  }
}
.my_page .program_list .item .thumb {
  position: relative;
  flex-shrink: 0;
  width: 243px;
  aspect-ratio: 243/307;
}
.my_page .program_list .item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .my_page .program_list .item .thumb {
    width: 35%;
  }
}
.my_page .program_list .item .info {
  position: relative;
  width: 100%;
  padding: 32px 43px 0 28px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .my_page .program_list .item .info {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px 0 14px;
  }
}
.my_page .program_list .item .info .title {
  max-height: 54px;
  font-size: 18px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 27px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media (max-width: 960px) {
  .my_page .program_list .item .info .title {
    max-height: 42px;
    font-size: 14px;
    line-height: 21px;
  }
}
.my_page .program_list .item .info .text {
  max-height: 38px;
  color: #757575;
  font-size: 13px;
  line-height: 19px;
  margin-top: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media (max-width: 960px) {
  .my_page .program_list .item .info .text {
    max-height: 34px;
    font-size: 11px;
    line-height: 17px;
    margin-top: 10px;
  }
}
.my_page .program_list .item .info .details {
  display: flex;
  font-size: 12px;
  line-height: 18px;
  margin-top: 17px;
}
@media (max-width: 960px) {
  .my_page .program_list .item .info .details {
    font-size: 11px;
    line-height: 17px;
    margin-top: 14px;
  }
}
.my_page .program_list .item .info .details dt {
  position: relative;
  padding-right: 11px;
  margin-right: 10px;
}
.my_page .program_list .item .info .details dt::after {
  position: absolute;
  top: 3px;
  right: 0;
  height: 13px;
  border-right: 1px solid #ccc;
  content: "";
}
.my_page .program_list .item .info .details dd {
  color: #192a4f;
}
.my_page .program_list .item .info .btns {
  display: flex;
  gap: 0 8px;
  position: absolute;
  bottom: 32px;
  left: 28px;
  right: 43px;
}
@media (max-width: 960px) {
  .my_page .program_list .item .info .btns {
    bottom: -57px;
    left: 0;
    right: 0;
  }
}
.my_page .program_list .item .info .btns button {
  width: 100%;
  height: 46px;
  font-size: 11px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  border-width: 1px;
  border-style: solid;
}
.my_page .program_list .item .info .btns button.btn_navy {
  color: #fff;
  border-color: #192a4f;
  background-color: #192a4f;
}
.my_page .program_list .item .info .btns button.btn_white {
  color: #192a4f;
  border-color: #192a4f;
  background-color: #fff;
}
.my_page .program_list .item .info .btns button:disabled {
  border-color: #dbdbdb;
  background-color: #dbdbdb;
  cursor: default;
}
@media (max-width: 960px) {
  .my_page .program_list .item .info .btns button {
    height: 48px;
    font-size: 11px;
  }
}
.my_page .program_list .item .info .judge_message {
  position: absolute;
  bottom: 96px;
  left: 28px;
  right: 43px;
  font-size: 12px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.my_page .program_list .item .info .judge_message strong {
  font-weight: 500;
}
.my_page .program_list .list_bottom {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
@media (max-width: 960px) {
  .my_page .program_list .list_bottom {
    margin-top: 39px;
  }
}
.my_page .program_list .list_bottom .btn_more {
  width: 272px;
  height: 52px;
  color: #192a4f;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  border: 1px solid #192a4f;
  background-color: #fff;
  box-sizing: border-box;
}
.my_page .my_company {
  padding-top: 100px;
  margin-bottom: 130px;
}
@media (max-width: 960px) {
  .my_page .my_company {
    padding-top: 40px;
    margin-bottom: 54px;
  }
  .my_page .my_company .cont {
    padding-bottom: 19px;
    border-bottom: 1px solid #dbdbdb;
  }
}
.my_page .my_company .company_info {
  position: relative;
  display: flex;
  height: 244px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .my_page .my_company .company_info {
    flex-direction: column;
    height: auto;
    border-width: 0;
  }
}
.my_page .my_company .company_info .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 358px;
  border-right: 1px solid #dbdbdb;
  background-color: #d8d8d8;
}
.my_page .my_company .company_info .logo img {
  width: 50%;
  height: auto;
  max-height: 100%;
}
@media (max-width: 960px) {
  .my_page .my_company .company_info .logo {
    width: 100%;
    max-width: 480px;
    border-right-width: 0;
    aspect-ratio: 328/98;
    margin: 0 auto;
  }
}
.my_page .my_company .company_info .information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .my_page .my_company .company_info .information {
    align-items: center;
    padding: 39px 16px 0;
  }
}
.my_page .my_company .company_info .information .name {
  font-size: 24px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 36px;
}
.my_page .my_company .company_info .information .message {
  color: #333;
  font-weight: 500;
  line-height: 24px;
  word-wrap: break-word;
  margin-top: 6px;
}
@media (max-width: 960px) {
  .my_page .my_company .company_info .information .message {
    display: none;
  }
}
.my_page .my_company .company_info .information .features {
  display: flex;
  margin-top: 38px;
}
@media (max-width: 960px) {
  .my_page .my_company .company_info .information .features {
    margin-top: 20px;
  }
}
.my_page .my_company .company_info .information .features + .features {
  margin-top: 8px;
}
.my_page .my_company .company_info .information .features li {
  margin-right: 4px;
}
@media (max-width: 960px) {
  .my_page .my_company .company_info .information .features li {
    margin: 0 2px;
  }
}
.my_page .my_company .company_info .information .features li span {
  display: block;
  height: 24px;
  color: #192a4f;
  font-size: 11px;
  line-height: 20px;
  border: 1px solid #192a4f;
  border-radius: 12px;
  background-color: #fff;
  padding: 0 11px;
  box-sizing: border-box;
}
.my_page .my_company .company_info .information .features.sub li span {
  color: #333;
  border-color: #f2f2f2;
  background-color: #f2f2f2;
}
.my_page .my_company .company_info .btn_modify {
  position: absolute;
  top: 25px;
  right: 32px;
  color: #757575;
  font-size: 13px;
  line-height: 21px;
}
@media (min-width: 960px) {
  .my_page .my_company .company_info .btn_modify:hover {
    text-decoration: underline;
  }
}
@media (max-width: 960px) {
  .my_page .my_company .company_info .btn_modify {
    position: static;
    width: 100%;
    max-width: 358px;
    height: 48px;
    text-align: center;
    color: #192a4f;
    font-size: 11px;
    font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
    font-weight: 700;
    line-height: 46px;
    border: 1px solid #192a4f;
    background-color: #fff;
    box-sizing: border-box;
    margin: 30px auto;
  }
}
.my_page .my_company .company_info .btn_logout {
  position: absolute;
  bottom: 40px;
  right: 32px;
  height: 24px;
  color: #757575;
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 960px) {
  .my_page .my_company .company_info .btn_logout {
    bottom: 222px;
    right: 20px;
    font-size: 11px;
  }
}
.my_page .my_programs {
  padding-top: 100px;
  margin-bottom: 160px;
}
@media (max-width: 960px) {
  .my_page .my_programs {
    padding-top: 54px;
    margin-bottom: 59px;
  }
}
.my_page .my_company ~ .my_programs {
  padding-top: 0;
  margin-top: 100px;
}
@media (max-width: 960px) {
  .my_page .my_company ~ .my_programs {
    padding-top: 0;
    margin-top: 54px;
  }
}
.my_page .program_tabs {
  border-bottom: 1px solid #dbdbdb;
  margin-top: -15px;
  margin-bottom: 60px;
}
.my_page .program_tabs ul {
  display: flex;
  margin-bottom: -1px;
}
.my_page .program_tabs li a {
  display: block;
  position: relative;
  color: #757575;
  font-weight: 300;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 42px;
  padding: 0 16px;
}
.my_page .program_tabs li.selected a {
  color: #000;
  font-weight: 700;
}
.my_page .program_tabs li.selected a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 3px solid #192a4f;
  content: "";
}
.my_page.judge_complete_wrap .cont {
  padding: 123px 0 259px;
}
.my_page.judge_complete_wrap .cont::before {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 15px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: 0 -180px;
  content: "";
}
@media (max-width: 960px) {
  .my_page.judge_complete_wrap .cont::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
.my_page.judge_complete_wrap .common_title {
  color: #192a4f;
  font-size: 40px;
  line-height: 52px;
  text-align: center;
}
.my_page.judge_complete_wrap .judge_complete {
  margin-top: 40px;
}
.my_page.judge_complete_wrap .judge_complete .btn_back {
  display: block;
  width: 272px;
  height: 52px;
  color: #fff;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  background-color: #192a4f;
  margin: 40px auto 0;
}
.my_page.judge_complete_wrap .judge_complete .btn_bottom {
  line-height: 24px;
  text-align: center;
  margin-top: 27px;
}
.my_page.judge_complete_wrap .judge_complete .btn_bottom a {
  color: #757575;
  font-weight: 500;
  text-decoration: underline;
}

.modify_info_wrap .cont {
  padding: 100px 0 382px;
}
@media (max-width: 960px) {
  .modify_info_wrap .cont {
    padding: 40px 0 60px;
  }
}
.modify_info_wrap .modify_form {
  background-color: #fcfcfc;
  padding: 52px 100px 83px;
}
@media (max-width: 960px) {
  .modify_info_wrap .modify_form {
    background-color: #fff;
    padding: 0;
  }
}
.modify_info_wrap .modify_form ~ .common_title {
  margin-top: 124px;
}
@media (max-width: 960px) {
  .modify_info_wrap .modify_form ~ .common_title {
    display: none;
  }
  .modify_info_wrap .modify_form ~ .common_title + .modify_form {
    margin-top: 24px;
  }
}
.modify_info_wrap .modify_form .info_slot {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .modify_info_wrap .modify_form .info_slot {
    flex-direction: column;
    align-items: flex-start;
  }
}
.modify_info_wrap .modify_form .info_slot.full {
  width: 100%;
}
.modify_info_wrap .modify_form .info_slot .title {
  position: relative;
  color: #132b52;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  margin-right: 32px;
}
@media (max-width: 960px) {
  .modify_info_wrap .modify_form .info_slot .title {
    font-size: 13px;
    margin-right: 0;
    margin-bottom: 12px;
  }
}
.modify_info_wrap .modify_form .info_slot input {
  width: 128px;
  height: 40px;
  line-height: 40px;
  border-width: 0;
  background-color: rgba(0, 0, 0, 0);
  margin-right: 20px;
  outline: 0;
}
.modify_info_wrap .modify_form .info_slot input:-moz-read-only {
  cursor: default;
}
.modify_info_wrap .modify_form .info_slot input:read-only {
  cursor: default;
}
@media (max-width: 960px) {
  .modify_info_wrap .modify_form .info_slot input {
    width: 100%;
    height: 52px;
    line-height: 24px;
    background-color: #dbdbdb;
    padding: 12px 15px 14px;
    box-sizing: border-box;
  }
}
.modify_info_wrap .modify_form .info_slot .btn_change_password {
  width: 109px;
  height: 40px;
  color: #132b52;
  font-size: 13px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  text-decoration: underline;
  background-color: #f3f3f3;
}
@media (max-width: 960px) {
  .modify_info_wrap .modify_form .info_slot .btn_change_password {
    width: 100%;
    height: 52px;
    font-size: 14px;
    line-height: 50px;
    text-decoration: none;
    border: 1px solid #132b52;
    background-color: #fff;
    margin-top: 8px;
    box-sizing: border-box;
  }
}
.modify_info_wrap .form_bottom {
  margin-top: 82px;
}
@media (max-width: 960px) {
  .modify_info_wrap .form_bottom {
    margin-top: 33px;
  }
}
.modify_info_wrap .form_bottom .btn_area {
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .modify_info_wrap .form_bottom .btn_area {
    flex-direction: column-reverse;
    gap: 8px 0;
  }
}
.modify_info_wrap .form_bottom .btn_area button {
  flex-shrink: 0;
  width: 272px;
  height: 52px;
  color: #fff;
  font-weight: 700;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 52px;
  text-align: center;
  margin: 0 4px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .modify_info_wrap .form_bottom .btn_area button {
    width: 100%;
    max-width: 358px;
    margin: 0 auto;
  }
}
.modify_info_wrap .form_bottom .btn_area .btn_save,
.modify_info_wrap .form_bottom .btn_area .btn_confirm {
  background-color: #192a4f;
}
.modify_info_wrap .form_bottom .btn_area .btn_cancel {
  color: #192a4f;
  line-height: 50px;
  border: 1px solid #192a4f;
  background-color: #fff;
}
.modify_info_wrap legend {
  display: none;
}
.modify_info_wrap fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 37px 20px;
}
@media (max-width: 960px) {
  .modify_info_wrap fieldset {
    gap: 24px 0;
  }
}
.modify_info_wrap .input_slot {
  position: relative;
  display: flex;
  width: calc(50% - 10px);
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot {
    width: 100%;
  }
}
.modify_info_wrap .input_slot > label {
  position: relative;
  color: #132b52;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  margin-bottom: 19px;
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot > label {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.modify_info_wrap .input_slot input[type=text],
.modify_info_wrap .input_slot input[type=password],
.modify_info_wrap .input_slot textarea {
  width: 100%;
  height: 52px;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px 15px 14px;
  box-sizing: border-box;
  outline: 0;
}
.modify_info_wrap .input_slot input[type=text]:-ms-input-placeholder,
.modify_info_wrap .input_slot input[type=password]:-ms-input-placeholder,
.modify_info_wrap .input_slot textarea:-ms-input-placeholder {
  color: #757575;
}
.modify_info_wrap .input_slot input[type=text]::-moz-placeholder, .modify_info_wrap .input_slot input[type=password]::-moz-placeholder, .modify_info_wrap .input_slot textarea::-moz-placeholder {
  color: #757575;
}
.modify_info_wrap .input_slot input[type=text]:-ms-input-placeholder, .modify_info_wrap .input_slot input[type=password]:-ms-input-placeholder, .modify_info_wrap .input_slot textarea:-ms-input-placeholder {
  color: #757575;
}
.modify_info_wrap .input_slot input[type=text]::placeholder,
.modify_info_wrap .input_slot input[type=password]::placeholder,
.modify_info_wrap .input_slot textarea::placeholder {
  color: #757575;
}
.modify_info_wrap .input_slot textarea {
  height: 76px;
  resize: none;
}
.modify_info_wrap .input_slot input.invalid,
.modify_info_wrap .input_slot textarea.invalid {
  border-color: #df322f;
}
.modify_info_wrap .input_slot input.invalid + .file_name,
.modify_info_wrap .input_slot textarea.invalid + .file_name {
  border-color: #df322f;
}
.modify_info_wrap .input_slot input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 117px;
  height: 52px;
  opacity: 0;
  cursor: pointer;
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot input[type=file] {
    right: 91px;
  }
}
.modify_info_wrap .input_slot input[type=file] ~ label {
  position: absolute;
  top: 0;
  right: 0;
  width: 109px;
  height: 52px;
  color: #192a4f;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  border: 1px solid #192a4f;
  margin-left: 8px;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot input[type=file] ~ label {
    width: 83px;
  }
}
.modify_info_wrap .input_slot input[type=file] ~ .file_name {
  width: calc(100% - 109px - 8px);
  height: 52px;
  color: #757575;
  line-height: 24px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 12px 15px 14px;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot input[type=file] ~ .file_name {
    width: calc(100% - 83px - 8px);
  }
}
.modify_info_wrap .input_slot input[type=file] ~ .loader {
  width: calc(100% - 109px - 10px);
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot input[type=file] ~ .loader {
    width: calc(100% - 83px - 10px);
  }
}
.modify_info_wrap .input_slot .inner_slot {
  position: relative;
  display: flex;
  width: 100%;
}
.modify_info_wrap .input_slot .inner_slot.half {
  width: calc(50% - 10px);
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot .inner_slot.half {
    width: 100%;
  }
}
.modify_info_wrap .input_slot .inner_slot ~ .inner_slot {
  margin-top: 12px;
}
.modify_info_wrap .input_slot .inner_slot button {
  flex-shrink: 0;
  width: 109px;
  height: 52px;
  color: #192a4f;
  font-weight: 700;
  border: 1px solid #192a4f;
  box-sizing: border-box;
  margin-left: 8px;
}
.modify_info_wrap .input_slot .inner_slot button:disabled {
  color: #fff;
  line-height: 48px;
  text-align: center;
  border-color: #dbdbdb;
  background-color: #dbdbdb;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot .inner_slot button {
    width: 83px;
    font-size: 13px;
  }
}
.modify_info_wrap .input_slot .inner_slot .icon_cert_complete {
  position: absolute;
  top: 18px;
  right: 134px;
  width: 19px;
  height: 19px;
  z-index: 5;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: 0 -260px;
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot .inner_slot .icon_cert_complete {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot .inner_slot .icon_cert_complete {
    right: 105px;
    width: 18px;
    height: 18px;
    background-position: -55px -60px;
  }
}
.modify_info_wrap .input_slot .select_filter {
  width: 100%;
  margin-bottom: -4px;
}
.modify_info_wrap .input_slot .select_filter .selectbox_module .placeholder {
  width: 100%;
}
.modify_info_wrap .input_slot .select_filter .selectbox_module .options {
  max-height: 268px;
  overflow: auto;
}
.modify_info_wrap .input_slot .select_filter .selected_preview {
  padding-top: 4px;
}
.modify_info_wrap .input_slot .notice {
  color: #757575;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.modify_info_wrap .input_slot .alert {
  color: #df322f;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  margin-top: 8px;
}
.modify_info_wrap .input_slot .check_visible {
  position: absolute;
  top: -4px;
  right: 0px;
  line-height: 24px;
  padding-left: 30px;
}
.modify_info_wrap .input_slot .check_visible input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  z-index: -1;
}
.modify_info_wrap .input_slot .check_visible label {
  color: #757575;
  cursor: pointer;
}
.modify_info_wrap .input_slot .check_visible label::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #a8a8a8;
  background-color: #fff;
  box-sizing: border-box;
  content: "";
}
.modify_info_wrap .input_slot .check_visible input:checked ~ label::before {
  border-width: 0;
  background-color: #192a4f;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
  background-position: -25px -130px;
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot .check_visible input:checked ~ label::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot .check_visible input:checked ~ label::before {
    background-position: 0 -40px;
  }
}
.modify_info_wrap .input_slot.full {
  width: 100%;
}
.modify_info_wrap .input_slot.single_line {
  margin-right: 50%;
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot.single_line {
    margin-right: 0;
  }
}
.modify_info_wrap .input_slot.required > label::after {
  position: absolute;
  top: -2px;
  left: 100%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #132b52;
  margin-left: 4px;
  content: "";
}
@media (max-width: 960px) {
  .modify_info_wrap .input_slot.required > label::after {
    top: 0;
  }
}

.judge_page_wrap {
  position: fixed;
  top: 91px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  box-sizing: border-box;
}
.judge_page_wrap .cont {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#wrap .judge_page_wrap .cont {
  max-width: 100%;
  margin: 0 30px;
}
.judge_page_wrap .judge_header {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 30px 0 40px;
}
.judge_page_wrap .judge_header .program_title {
  max-width: calc(100% - 100px);
  color: #082c55;
  font-size: 50px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
}
.judge_page_wrap .judge_header .link_more {
  color: #757575;
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
  text-decoration: underline;
  margin-left: 16px;
}
.judge_page_wrap .judge_cont {
  position: relative;
  height: 100%;
}
.judge_page_wrap .judge_cont .cont_right .judge_tables_wrap, .judge_page_wrap .judge_cont .cont_left .viewer {
  overflow: hidden;
  overflow-y: auto;
}
.judge_page_wrap .judge_cont .cont_right .judge_tables_wrap::-webkit-scrollbar, .judge_page_wrap .judge_cont .cont_left .viewer::-webkit-scrollbar {
  width: 6px;
}
.judge_page_wrap .judge_cont .cont_right .judge_tables_wrap::-webkit-scrollbar-track, .judge_page_wrap .judge_cont .cont_left .viewer::-webkit-scrollbar-track {
  background-color: transparent;
}
.judge_page_wrap .judge_cont .cont_right .judge_tables_wrap::-webkit-scrollbar-thumb, .judge_page_wrap .judge_cont .cont_left .viewer::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #dbdbdb;
}
.judge_page_wrap .judge_cont .cont_right .judge_tables_wrap::-webkit-scrollbar-button, .judge_page_wrap .judge_cont .cont_left .viewer::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.judge_page_wrap .judge_cont .cont_left {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  padding-right: 10px;
  box-sizing: border-box;
}
.judge_page_wrap .judge_cont .cont_left .viewer {
  position: relative;
  height: 100%;
}
.judge_page_wrap .judge_cont .cont_left .viewer .pdf_view {
  overflow: hidden;
  margin: 0 10px 30px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.judge_page_wrap .judge_cont .cont_left .viewer .pdf_view iframe {
  width: 100%;
  height: 450px;
  box-sizing: border-box;
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view {
  background-color: #fcfcfc;
  padding: 0 40px 44px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view .company {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 38px 0 30px;
  height: 45px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view .company .logo {
  flex-shrink: 0;
  display: flex;
  height: 45px;
  align-items: center;
  margin-right: 20px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view .company .logo img {
  width: auto;
  height: 23px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view .company .name {
  max-width: 100%;
  height: 45px;
  font-size: 21px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 43px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view .file_list {
  counter-reset: list;
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view .file_list li {
  position: relative;
  line-height: 52px;
  padding-left: 57px;
  counter-increment: list;
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view .file_list li:first-child ~ li {
  margin-top: 16px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view .file_list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #132b52;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  content: counter(list);
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view .file_list li .file_name {
  display: block;
  font-weight: 500;
  background-color: #f3f3f3;
  padding: 0 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.judge_page_wrap .judge_cont .cont_left .viewer .file_view .file_list li button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 16px;
  background-image: url("../images/mypage/icon_view.png");
  background-repeat: no-repeat;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view {
  border-top: 1px solid #f2f2f2;
  padding-bottom: 6px;
  margin-top: 22px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block {
  padding-top: 25px;
  margin-bottom: 10px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block h4 {
  font-size: 24px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  margin-bottom: 28px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block dl {
  background-color: #fcfcfc;
  padding: 41px 40px 19px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block dl dt,
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block dl dd {
  line-height: 24px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block dl dt {
  color: #132b52;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  word-break: break-all;
  margin-bottom: 14px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block dl dd {
  word-break: break-all;
  padding-left: 1em;
  margin-bottom: 37px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block .info_radio {
  display: flex;
  flex-wrap: wrap;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block .info_radio .item {
  position: relative;
  margin-right: 24px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block .info_radio .item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  z-index: -1;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block .info_radio .item label {
  position: relative;
  display: block;
  color: #757575;
  padding-left: 32px;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block .info_radio .item label::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #a8a8a8;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block .info_radio .item input:checked + label::before {
  border-color: #132b52;
}
.judge_page_wrap .judge_cont .cont_left .viewer .info_view .info_block .info_radio .item input:checked + label::after {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #132b52;
  content: "";
}
.judge_page_wrap .judge_cont .cont_right {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  border-left: 1px solid #727272;
  padding-left: 25px;
  box-sizing: border-box;
}
.judge_page_wrap .judge_cont .cont_right .step_title {
  font-size: 21px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 32px;
  padding-left: 14px;
  margin-bottom: 22px;
}
.judge_page_wrap .judge_cont .cont_right .col_title {
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 24px;
  margin-right: 16px;
  margin-bottom: 7px;
}
.judge_page_wrap .judge_cont .cont_right .col_title ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.judge_page_wrap .judge_cont .cont_right .col_title ul li {
  display: flex;
  flex-direction: column;
  border: 1px solid #979797;
  border-right-width: 0;
}
.judge_page_wrap .judge_cont .cont_right .col_title ul li:last-child {
  border-right-width: 1px;
}
.judge_page_wrap .judge_cont .cont_right .col_title ul li:last-child .title {
  font-weight: 700;
}
.judge_page_wrap .judge_cont .cont_right .col_title .title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  background-color: #f3f3f3;
}
.judge_page_wrap .judge_cont .cont_right .judge_tables_wrap {
  height: calc(100% - 32px - 22px - 52px - 24px - 7px - 1px);
}
.judge_page_wrap .judge_cont .cont_right .table_item {
  position: relative;
  padding-right: 10px;
  margin: 10px 0;
}
.judge_page_wrap .judge_cont .cont_right .table_item .header {
  position: relative;
  max-width: 360px;
  display: inline-flex;
  margin-bottom: 2px;
}
.judge_page_wrap .judge_cont .cont_right .table_item .header .name {
  width: 100%;
  height: 21px;
  font-size: 13px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 21px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.judge_page_wrap .judge_cont .cont_right .table_item .header button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
.judge_page_wrap .judge_cont .cont_right .table_item .table {
  position: relative;
}
.judge_page_wrap .judge_cont .cont_right .table_item .table ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.judge_page_wrap .judge_cont .cont_right .table_item .table ul li {
  display: flex;
  flex-direction: column;
  border: 1px solid #979797;
  border-right-width: 0;
}
.judge_page_wrap .judge_cont .cont_right .table_item .table ul li:last-child {
  border-right-width: 1px;
}
.judge_page_wrap .judge_cont .cont_right .table_item .table ul li:last-child .slot input {
  font-weight: 700;
}
.judge_page_wrap .judge_cont .cont_right .table_item .table .slot input {
  display: block;
  width: 100%;
  height: 33px;
  font-size: 14px;
  text-align: center;
  border: 0;
  outline: 0;
}
.judge_page_wrap .judge_cont .cont_right .table_item .table .slot input.empty {
  background-color: #fff0f0;
}
.judge_page_wrap .judge_cont .cont_right .table_item .table .slot input.invalid {
  color: #f00;
}
.judge_page_wrap .judge_cont .cont_right .table_item .table .alert {
  position: absolute;
  bottom: 100%;
  right: 0;
  color: #df322f;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 5px;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom {
  display: flex;
  margin-top: 6px;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .message {
  position: relative;
  width: 100%;
  z-index: 1;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .message input {
  width: 100%;
  height: 32px;
  color: #2a2a2a;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #dbdbdb;
  background-color: rgba(255, 255, 255, 0);
  padding: 4px 45px 6px 15px;
  box-sizing: border-box;
  outline: 0;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .message input:-ms-input-placeholder {
  color: #757575;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .message input::-moz-placeholder {
  color: #757575;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .message input::placeholder {
  color: #757575;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .btn_edit {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 17px;
  height: 21px;
  background-image: url("../images/mypage/icon_edit.png");
  background-repeat: no-repeat;
  transform: scale(0.8);
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom input:focus + .btn_edit {
  opacity: 0.3;
  z-index: -1;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .btns {
  flex-shrink: 0;
  width: 85px;
  margin-left: 3px;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .btns button {
  width: 100%;
  height: 32px;
  font-size: 13px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  border: 1px solid;
  box-sizing: border-box;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .btns button.btn_navy {
  color: #fff;
  border-color: #192a4f;
  background-color: #192a4f;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .btns button.btn_white {
  color: #192a4f;
  border-color: #192a4f;
  background-color: #fff;
}
.judge_page_wrap .judge_cont .cont_right .table_item .bottom .btns button.btn_inactive {
  color: #fff;
  border-color: #dbdbdb;
  background-color: #dbdbdb;
}

.newsroom_list_wrap .cont {
  padding: 72px 0 168px;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .cont {
    padding: 0 0 40px;
  }
}
.newsroom_list_wrap .list_top {
  margin-bottom: 64px;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_top {
    position: relative;
    overflow: hidden;
    overflow-x: auto;
    padding: 19px 0 21px;
    margin: 0 -16px;
    -webkit-overflow-scrolling: touch;
  }
  .newsroom_list_wrap .list_top::-webkit-scrollbar {
    display: none;
  }
}
.newsroom_list_wrap .list_top .filter_tab {
  display: flex;
}
.newsroom_list_wrap .list_top .filter_tab li {
  white-space: nowrap;
  margin-right: 8px;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_top .filter_tab li:first-child {
    padding-left: 16px;
  }
  .newsroom_list_wrap .list_top .filter_tab li:last-child {
    padding-right: 16px;
  }
}
.newsroom_list_wrap .list_top .filter_tab button {
  height: 44px;
  color: #4a5568;
  line-height: 42px;
  border: 1px solid #cbd5e0;
  border-radius: 22px;
  background-color: #fff;
  padding: 0 19px;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_top .filter_tab button {
    height: 32px;
    line-height: 30px;
    border-radius: 16px;
    padding: 0 15px;
  }
}
.newsroom_list_wrap .list_top .filter_tab .selected button {
  color: #fff;
  font-weight: 700;
  border-color: #192a4f;
  background-color: #192a4f;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_top .filter_tab .selected button {
    font-weight: 400;
  }
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_wrap {
    border-top: 1px solid #dbdbdb;
    padding-top: 21px;
  }
}
.newsroom_list_wrap .list_wrap ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1220px) {
  .newsroom_list_wrap .list_wrap ul {
    gap: 0 24px;
  }
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_wrap ul {
    gap: 0 8px;
  }
}
.newsroom_list_wrap .list_wrap ul li {
  width: 360px;
  margin-left: 50px;
}
.newsroom_list_wrap .list_wrap ul li:nth-child(3n+1) {
  margin-left: 0;
}
.newsroom_list_wrap .list_wrap ul li:nth-child(3) ~ li {
  margin-top: 72px;
}
@media (max-width: 1220px) {
  .newsroom_list_wrap .list_wrap ul li {
    width: calc(33.33% - 16px);
    margin-left: 0;
  }
  .newsroom_list_wrap .list_wrap ul li:nth-child(3n) ~ li {
    margin-top: 24px;
  }
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_wrap ul li {
    width: calc(50% - 4px);
  }
  .newsroom_list_wrap .list_wrap ul li:nth-child(2) ~ li {
    margin-top: 28px;
  }
}
.newsroom_list_wrap .list_wrap ul li .item {
  display: block;
  position: relative;
}
@media (min-width: 960px) {
  .newsroom_list_wrap .list_wrap ul li .item:hover .title {
    text-decoration: underline;
  }
}
.newsroom_list_wrap .list_wrap ul li .item .label {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  border-radius: 22px;
  background-color: #0060fb;
  padding: 0 8px;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_wrap ul li .item .label {
    top: 8px;
    left: 8px;
    height: 18px;
    font-size: 10px;
    line-height: 16px;
    border-radius: 15px;
    padding: 0 6px;
  }
}
.newsroom_list_wrap .list_wrap ul li .item .thumb {
  overflow: hidden;
  aspect-ratio: 360/244;
}
.newsroom_list_wrap .list_wrap ul li .item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsroom_list_wrap .list_wrap ul li .item .title {
  max-height: 54px;
  font-size: 18px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 27px;
  margin-top: 29px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_wrap ul li .item .title {
    max-height: 40px;
    color: #192a4f;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-top: 16px;
  }
}
.newsroom_list_wrap .list_wrap ul li .item .date {
  display: block;
  color: #757575;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  margin-top: 25px;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_wrap ul li .item .date {
    color: #828282;
    font-size: 12px;
    line-height: 18px;
    margin-top: 12px;
  }
}
.newsroom_list_wrap .list_pagination {
  margin-top: 80px;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_pagination {
    margin-top: 40px;
  }
}
.newsroom_list_wrap .list_pagination {
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_pagination {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.newsroom_list_wrap .list_pagination .btn_nav {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 4px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
.newsroom_list_wrap .list_pagination .btn_nav::after {
  position: absolute;
  top: 6px;
  height: 12px;
  content: "";
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_pagination .btn_nav::after {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_pagination .btn_nav {
    margin: 0;
  }
}
.newsroom_list_wrap .list_pagination .btn_nav.prev_p::after, .newsroom_list_wrap .list_pagination .btn_nav.next_p::after {
  left: 6px;
  width: 13px;
  background-position: -65px -130px;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_pagination .btn_nav.prev_p::after, .newsroom_list_wrap .list_pagination .btn_nav.next_p::after {
    background-position: -55px -40px;
  }
}
.newsroom_list_wrap .list_pagination .btn_nav.prev::after, .newsroom_list_wrap .list_pagination .btn_nav.next::after {
  left: 9px;
  width: 8px;
  background-position: -65px -130px;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_pagination .btn_nav.prev::after, .newsroom_list_wrap .list_pagination .btn_nav.next::after {
    background-position: -55px -40px;
  }
}
.newsroom_list_wrap .list_pagination .btn_nav.prev_p, .newsroom_list_wrap .list_pagination .btn_nav.prev {
  transform: rotateY(180deg);
}
.newsroom_list_wrap .list_pagination .btn_nav:disabled {
  opacity: 0.7;
  cursor: default;
}
.newsroom_list_wrap .list_pagination .page {
  display: flex;
  line-height: 24px;
  margin: 0 4px;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_pagination .page {
    margin: 0;
  }
}
.newsroom_list_wrap .list_pagination .page > * {
  min-width: 24px;
  height: 24px;
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 0 7px;
  margin: 0 8px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .newsroom_list_wrap .list_pagination .page > * {
    letter-spacing: -1px;
    padding: 0 5px;
    margin: 0;
  }
}
.newsroom_list_wrap .list_pagination .page .selected {
  color: #192a4f;
  font-weight: 700;
}
@media (min-width: 960px) {
  .newsroom_list_wrap .list_pagination .page a:hover {
    text-decoration: underline;
  }
}

.newsroom_view_wrap .cont {
  padding: 103px 0 160px;
}
@media (max-width: 960px) {
  .newsroom_view_wrap .cont {
    padding: 24px 0 20px;
  }
}
.newsroom_view_wrap article .article_header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 24px;
}
@media (max-width: 960px) {
  .newsroom_view_wrap article .article_header {
    padding-bottom: 16px;
  }
}
.newsroom_view_wrap article .article_header .label {
  height: 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  border-radius: 22px;
  background-color: #7f7f7f;
  padding: 0 8px;
  margin-bottom: 25px;
}
@media (max-width: 960px) {
  .newsroom_view_wrap article .article_header .label {
    height: 18px;
    font-size: 10px;
    line-height: 16px;
    border-radius: 15px;
    padding: 0 6px;
    margin-bottom: 11px;
  }
}
.newsroom_view_wrap article .article_header h4 {
  width: 100%;
  font-size: 28px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 38px;
  word-break: break-all;
  margin-bottom: 6px;
}
@media (max-width: 960px) {
  .newsroom_view_wrap article .article_header h4 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
  }
}
.newsroom_view_wrap article .article_header .header_bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .newsroom_view_wrap article .article_header .header_bottom {
    justify-content: start;
  }
}
.newsroom_view_wrap article .article_header .header_bottom .date {
  color: #757575;
  font-size: 13px;
  margin-right: 16px;
}
@media (max-width: 960px) {
  .newsroom_view_wrap article .article_header .header_bottom .date {
    line-height: 18px;
  }
}
.newsroom_view_wrap article .article_header .header_bottom .btn_share {
  width: 52px;
  height: 52px;
  background-image: url("../images/newsroom/icon_share.png");
  background-repeat: no-repeat;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
@media (max-width: 960px) {
  .newsroom_view_wrap article .article_header .header_bottom .btn_share {
    position: absolute;
    bottom: 20px;
    right: 0;
    background-image: url("../images/newsroom/icon_share_2x.png");
    background-size: 52px 52px;
  }
}
.newsroom_view_wrap article .article_body {
  padding: 48px 0 80px;
}
@media (max-width: 960px) {
  .newsroom_view_wrap article .article_body {
    padding: 24px 0 26px;
  }
}
.newsroom_view_wrap article .article_body .inner {
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 300;
  line-height: 2em;
}
.newsroom_view_wrap article .article_body .inner p {
  word-break: break-all;
}
.newsroom_view_wrap article .article_body .inner .img {
  text-align: center;
}
.newsroom_view_wrap article .article_body .inner img {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin: 2.857em auto;
}
.newsroom_view_wrap article .article_body .inner h1 {
  font-size: 1.5em;
}
.newsroom_view_wrap article .article_body .inner a {
  color: #00f;
  text-decoration: underline;
}
.newsroom_view_wrap article .article_body .inner iframe {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
@media (max-width: 960px) {
  .newsroom_view_wrap article .article_body .inner {
    color: #333;
    /* font-family: "Noto Sans KR", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif; */
    font-weight: 400;
    line-height: 1.571em;
  }
  .newsroom_view_wrap article .article_body .inner img {
    margin: 1.428em auto;
  }
  .newsroom_view_wrap article .article_body .inner > * {
    line-height: 1.571em;
  }
}
.newsroom_view_wrap article .article_footer .btns {
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .newsroom_view_wrap article .article_footer .btns {
    justify-content: start;
  }
}
.newsroom_view_wrap article .article_footer .btns .btn_go_to_list {
  width: 272px;
  height: 52px;
  color: #192a4f;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  border: 1px solid #192a4f;
  background-color: #fff;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .newsroom_view_wrap article .article_footer .btns .btn_go_to_list {
    width: calc(100% - 52px - 8px);
  }
}

.info_graphic_wrap .cont {
  max-width: 1154px;
}

.partner_list_wrap h2, .space_introduce_wrap h2, .program_graphic_wrap h2, .s2bridge_performance_wrap h2 {
  color: #081f60;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 59px;
}
@media (max-width: 960px) {
  .partner_list_wrap h2, .space_introduce_wrap h2, .program_graphic_wrap h2, .s2bridge_performance_wrap h2 {
    font-size: 28px;
    line-height: 30px;
  }
}
.partner_list_wrap p.text, .space_introduce_wrap p.text, .program_graphic_wrap p.text, .s2bridge_performance_wrap p.text {
  color: #757575;
  font-size: 18px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 27px;
  margin-top: 16px;
}
@media (max-width: 960px) {
  .partner_list_wrap p.text, .space_introduce_wrap p.text, .program_graphic_wrap p.text, .s2bridge_performance_wrap p.text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
}

.info_graphic_wrap {
  padding: 154px 0 114px;
}
@media (max-width: 960px) {
  .info_graphic_wrap {
    padding: 82px 0 62px;
    margin: 0 auto;
  }
}
.info_graphic_wrap .title {
  color: #081f60;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-size: 40px;
  line-height: 69px;
  text-align: center;
}
@media (max-width: 960px) {
  .info_graphic_wrap .title {
    font-size: 28px;
    line-height: 44px;
    text-align: left;
  }
}
.info_graphic_wrap .text {
  color: #757575;
  font-size: 18px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 27px;
  text-align: center;
  margin-top: 22px;
}
@media (max-width: 960px) {
  .info_graphic_wrap .text {
    font-size: 13px;
    line-height: 21px;
    text-align: left;
    margin-top: 16px;
  }
}
.info_graphic_wrap .graphic {
  position: relative;
  height: 509px;
  overflow: hidden;
  margin-top: 21px;
}
@media (max-width: 960px) {
  .info_graphic_wrap .graphic {
    max-width: none;
    height: auto;
    margin: 63px -16px 0;
  }
  .info_graphic_wrap .graphic::before {
    display: block;
    width: 77.22%;
    aspect-ratio: 278/186;
    content: "";
  }
}
.info_graphic_wrap .graphic .arrow {
  position: absolute;
  top: 51px;
  left: 0;
  width: 0;
  height: 407px;
  overflow: hidden;
  background-image: url("../images/s2bridge/img_graphic_1_arrow.jpg");
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media (max-width: 960px) {
  .info_graphic_wrap .graphic .arrow {
    top: 0;
    height: 100%;
  }
}
.info_graphic_wrap .graphic .logo {
  position: absolute;
  top: 161px;
  left: 696px;
  width: 367px;
  height: 187px;
  background-image: url("../images/s2bridge/img_graphic_1_logo_20230115.jpg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  opacity: 0;
}
@media (max-width: 1220px) {
  .info_graphic_wrap .graphic .logo {
    left: auto;
    right: 0;
    height: 156px;
    background-position: 100% 0;
  }
}
@media (max-width: 960px) {
  .info_graphic_wrap .graphic .logo {
    top: 13%;
    right: 2.5%;
    width: 17.78%;
    height: auto;
    aspect-ratio: 128/218;
    background-image: url("../images/s2bridge/img_graphic_1_logo_mobile_20230115.png");
  }
}
.info_graphic_wrap .graphic.active .arrow {
  width: 608px;
  transition-property: width;
  transition-duration: 1s;
  transition-timing-function: linear;
}
@media (max-width: 960px) {
  .info_graphic_wrap .graphic.active .arrow {
    width: 77.22%;
  }
}
.info_graphic_wrap .graphic.active .logo {
  opacity: 1;
  transition-property: opacity;
  transition-delay: 1.5s;
  transition-duration: 1s;
}

.visual_graphic_wrap {
  height: 980px;
}
@media (max-width: 960px) {
  .visual_graphic_wrap {
    height: 637px;
  }
}
.visual_graphic_wrap .cont {
  padding-top: 179px;
  z-index: 1;
}
@media (max-width: 960px) {
  .visual_graphic_wrap .cont {
    padding-top: 166px;
  }
}
#wrap .visual_graphic_wrap .cont {
  max-width: 1154px;
}
.visual_graphic_wrap .cont::before {
  position: absolute;
  top: 43px;
  left: 301px;
  width: 274px;
  height: 272px;
  background-image: url("../images/s2bridge/bg_visual_graphic.png");
  background-repeat: no-repeat;
  content: "";
  z-index: -1;
}
@media (max-width: 960px) {
  .visual_graphic_wrap .cont::before {
    top: 76px;
    left: 50px;
    width: 151px;
    height: 150px;
    background-size: 100% auto;
  }
}
.visual_graphic_wrap h2 {
  color: #081f60;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 44px;
  text-align: center;
  margin-bottom: 145px;
}
@media (max-width: 960px) {
  .visual_graphic_wrap h2 {
    height: 64px;
    font-size: 28px;
    line-height: 32px;
    text-align: left;
    margin-right: 50%;
    margin-bottom: 44px;
  }
}
.visual_graphic_wrap .graphic {
  position: relative;
  height: 612px;
  z-index: 1;
}
@media (max-width: 960px) {
  .visual_graphic_wrap .graphic {
    height: 363px;
  }
}
.visual_graphic_wrap .graphic .bg {
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  right: calc(50% - 5px);
  bottom: calc(50% - 5px);
  background-color: #192a4f;
  z-index: -1;
}
.visual_graphic_wrap .graphic .inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 100px;
  left: 0px;
  right: 0px;
  opacity: 0;
  transform: scale(0.8);
}
@media (max-width: 960px) {
  .visual_graphic_wrap .graphic .inner {
    top: 100px;
  }
}
.visual_graphic_wrap .graphic .logo {
  display: block;
  width: 673px;
  height: 225px;
  background-image: url("../images/s2bridge/img_visual_graphic_logo.png");
  background-repeat: no-repeat;
  margin-bottom: 49px;
}
@media (max-width: 960px) {
  .visual_graphic_wrap .graphic .logo {
    width: 224px;
    height: 75px;
    background-size: 100% auto;
    margin-bottom: 22px;
  }
}
.visual_graphic_wrap .graphic .text {
  color: #fff;
  font-size: 25px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 46px;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
}
.visual_graphic_wrap .graphic .text em {
  color: #fabe00;
}
@media (max-width: 960px) {
  .visual_graphic_wrap .graphic .text {
    font-size: 12px;
    line-height: 22px;
  }
}
.visual_graphic_wrap .graphic.active .bg {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-name: unfold;
          animation-name: unfold;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.visual_graphic_wrap .graphic.active .inner {
  opacity: 1;
  transform: scale(1);
  transition: transform 3s, opacity 3s;
  transition-delay: 2s;
}
.visual_graphic_wrap .graphic.active .inner .text {
  opacity: 1;
  transform: scale(1);
  transition: transform 3s, opacity 3s;
  transition-delay: 3s;
}
@-webkit-keyframes unfold {
  0% {
    left: calc(50% - 5px);
    right: calc(50% - 5px);
    top: calc(50% - 5px);
    bottom: calc(50% - 5px);
  }
  40% {
    left: 0;
    right: 0;
    top: calc(50% - 5px);
    bottom: calc(50% - 5px);
  }
  100% {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
}
@keyframes unfold {
  0% {
    left: calc(50% - 5px);
    right: calc(50% - 5px);
    top: calc(50% - 5px);
    bottom: calc(50% - 5px);
  }
  40% {
    left: 0;
    right: 0;
    top: calc(50% - 5px);
    bottom: calc(50% - 5px);
  }
  100% {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
}

.s2bridge_performance_wrap .cont {
  padding-top: 253px;
}
@media (max-width: 960px) {
  .s2bridge_performance_wrap .cont {
    padding-top: 48px;
  }
}
#wrap .s2bridge_performance_wrap .cont {
  max-width: 1154px;
}
.s2bridge_performance_wrap .counter_module_wrap {
  margin-top: 123px;
}
@media (max-width: 960px) {
  .s2bridge_performance_wrap .counter_module_wrap {
    margin-top: 14px;
  }
}

.program_graphic_wrap .cont {
  padding-top: 204px;
  padding-bottom: 88px;
}
#wrap .program_graphic_wrap .cont {
  max-width: 1154px;
}
@media (max-width: 960px) {
  .program_graphic_wrap .cont {
    padding-top: 56px;
    padding-bottom: 0;
  }
}
.program_graphic_wrap .graphic {
  position: relative;
  height: 789px;
  overflow: hidden;
  margin-top: 8px;
}
@media (max-width: 1220px) {
  .program_graphic_wrap .graphic {
    width: 1154px;
    margin-left: -200px;
  }
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic {
    width: 100%;
    height: auto;
    aspect-ratio: 340/339;
    margin: 35px auto 0;
  }
}
.program_graphic_wrap .graphic .arrow {
  position: absolute;
  top: 238px;
  left: 88px;
  width: 826px;
  height: 458px;
  background-image: url("../images/s2bridge/img_program_graphic_arrow_type_2.png");
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic .arrow {
    top: auto;
    bottom: 1px;
    left: 2.5%;
    width: 78.82%;
    height: auto;
    background-image: url("../images/s2bridge/img_program_graphic_arrow.png");
    background-size: 100% auto;
    aspect-ratio: 613/597;
  }
}
.program_graphic_wrap .graphic .step {
  position: absolute;
  width: 130px;
  z-index: 5;
  opacity: 0;
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic .step {
    width: 17.06%;
  }
}
.program_graphic_wrap .graphic .step.step_1 {
  top: 417px;
  left: 171px;
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic .step.step_1 {
    top: auto;
    bottom: 13%;
    left: 8.53%;
  }
}
.program_graphic_wrap .graphic .step.step_2 {
  top: 328px;
  left: 373px;
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic .step.step_2 {
    top: auto;
    bottom: 30%;
    left: 26.17%;
  }
}
.program_graphic_wrap .graphic .step.step_3 {
  top: 242px;
  left: 569px;
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic .step.step_3 {
    top: auto;
    bottom: 47%;
    left: 44.41%;
  }
  .program_graphic_wrap .graphic .step.step_3 strong {
    text-indent: -50px;
  }
}
.program_graphic_wrap .graphic .step strong {
  display: block;
  color: #081f60;
  font-size: 23px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 34px;
  text-align: center;
  margin: 0 -10px;
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic .step strong {
    font-size: 3.1vw;
    line-height: 1.636em;
    white-space: nowrap;
    margin: 0 -15px;
  }
}
.program_graphic_wrap .graphic .step .circle {
  display: block;
  height: 143px;
  background-image: url("../images/s2bridge/img_program_graphic_circle.png");
  background-repeat: no-repeat;
  padding-top: 36px;
  margin-top: 4px;
  box-sizing: border-box;
}
.program_graphic_wrap .graphic .step .circle i[class^=icon] {
  position: static;
  display: block;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic .step .circle {
    height: auto;
    background-size: 100% auto;
    aspect-ratio: 130/143;
    margin-top: 0.2em;
    padding-top: 0;
  }
  .program_graphic_wrap .graphic .step .circle i[class^=icon] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 2vw;
  }
}
@media (max-width: 960px) and (max-width: 700px) {
  .program_graphic_wrap .graphic .step .circle i[class^=icon] {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
@media (max-width: 960px) and (max-width: 590px) {
  .program_graphic_wrap .graphic .step .circle i[class^=icon] {
    transform: translate(-50%, -50%) scale(0.7);
  }
}
@media (max-width: 960px) and (max-width: 480px) {
  .program_graphic_wrap .graphic .step .circle i[class^=icon] {
    transform: translate(-50%, -50%) scale(0.5);
  }
}
.program_graphic_wrap .graphic .step .info {
  position: absolute;
  bottom: 203px;
  left: -62px;
  width: 254px;
  height: 38px;
  color: #081f60;
  font-size: 16px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 300;
  line-height: 32px;
  white-space: nowrap;
  text-align: center;
  border: 3px solid #081f60;
  border-radius: 19px;
  background-repeat: no-repeat;
  box-sizing: border-box;
  z-index: 1;
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic .step .info {
    bottom: 110%;
    left: auto;
    right: 40%;
    width: 112%;
    height: auto;
    font-size: 2vw;
    line-height: 1.2em;
    white-space: normal;
    word-break: break-all;
    border-width: 0;
    border-radius: 0;
    background-image: url("../images/s2bridge/img_program_graphic_info_mobile.png");
    background-size: 100% auto;
    padding-top: 2.3vw;
    padding-left: 7px;
    padding-right: 7px;
    aspect-ratio: 128/84;
  }
}
.program_graphic_wrap .graphic .goal {
  position: absolute;
  top: 112px;
  right: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 193px;
  height: 193px;
  color: #fff;
  font-size: 25px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 37px;
  text-align: center;
  border-radius: 50%;
  background: #192a4f;
  opacity: 0;
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic .goal {
    top: 0;
    right: 0;
    width: 24.7%;
    height: auto;
    font-size: 3.1vw;
    line-height: 1.54em;
    aspect-ratio: 1/1;
  }
}
.program_graphic_wrap .graphic .mask {
  position: absolute;
  top: 0;
  left: -50%;
  bottom: 0;
  right: -50%;
  background: #fff;
  content: "";
  transition: all 2s linear;
  transform: skewX(40deg);
}
@media (max-width: 960px) {
  .program_graphic_wrap .graphic .mask {
    transform: skewX(60deg);
  }
}
.program_graphic_wrap .graphic.active .mask {
  left: 150%;
}
.program_graphic_wrap .graphic.active .step {
  transition: opacity 0.5s;
  opacity: 1;
}
.program_graphic_wrap .graphic.active .step_1 {
  transition-delay: 0.4s;
}
.program_graphic_wrap .graphic.active .step_2 {
  transition-delay: 0.8s;
}
.program_graphic_wrap .graphic.active .step_3 {
  transition-delay: 1.2s;
}
.program_graphic_wrap .graphic.active .goal {
  transition: opacity 0.5s;
  transition-delay: 2s;
  opacity: 1;
}
.program_graphic_wrap .program_list {
  margin-top: 92px;
}
@media (max-width: 960px) {
  .program_graphic_wrap .program_list {
    margin-top: 34px;
    margin-left: -16px;
    margin-right: -16px;
  }
}
.program_graphic_wrap .program_list .item {
  position: relative;
  padding-left: 63px;
  margin-bottom: 62px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .program_graphic_wrap .program_list .item {
    border-top: 1px solid #082c55;
    padding-left: 53px;
    margin-bottom: 24px;
  }
}
.program_graphic_wrap .program_list .item .name {
  display: block;
  color: #081f60;
  font-size: 21px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  border-bottom: 2px solid #082c55;
  padding-bottom: 12px;
}
@media (max-width: 960px) {
  .program_graphic_wrap .program_list .item .name {
    font-size: 16px;
    line-height: 21px;
    border-width: 0;
    padding: 12px 0 8px;
  }
}
.program_graphic_wrap .program_list .item .summary {
  display: block;
  color: #757575;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  word-break: break-all;
  padding-top: 8px;
}
@media (max-width: 960px) {
  .program_graphic_wrap .program_list .item .summary {
    color: #333;
    font-size: 14px;
    line-height: 20px;
    padding: 0;
  }
}
@media (max-width: 960px) {
  .program_graphic_wrap .program_list .item i[class^=icon] {
    top: 2px;
    left: -8px;
    transform: scale(0.6);
  }
}
.program_graphic_wrap i[class^=icon] {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 55px;
  height: 55px;
  background-image: url("../images/s2bridge/spr_program_icons.png");
  background-repeat: no-repeat;
  background-size: 495px 55px;
}
.program_graphic_wrap .icon_incu {
  background-position: 0px 0;
}
.program_graphic_wrap .icon_excel {
  background-position: -55px 0;
}
.program_graphic_wrap .icon_open {
  background-position: -110px 0;
}
.program_graphic_wrap .icon_global {
  background-position: -165px 0;
}
.program_graphic_wrap .icon_social {
  background-position: -220px 0;
}
.program_graphic_wrap .icon_ign {
  background-position: -275px 0;
}
.program_graphic_wrap .icon_ir {
  background-position: -330px 0;
}
.program_graphic_wrap .icon_net {
  background-position: -385px 0;
}
.program_graphic_wrap .icon_con {
  background-position: -440px 0;
}
.program_graphic_wrap .swiper-slide {
  display: flex;
  gap: 0 28px;
}
@media (max-width: 960px) {
  .program_graphic_wrap .swiper-slide {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.program_graphic_wrap .swiper-slide .item {
  width: 33.33%;
}
@media (max-width: 960px) {
  .program_graphic_wrap .swiper-slide .item {
    width: 100%;
  }
}
.program_graphic_wrap .swiper-pagination {
  display: none;
}
@media (max-width: 960px) {
  .program_graphic_wrap .swiper-pagination {
    display: block;
    position: static;
    margin-top: 24px;
  }
  .program_graphic_wrap .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #192a4f;
  }
}

.space_introduce_wrap {
  position: relative;
  z-index: 1;
}
.space_introduce_wrap .cont {
  padding-top: 185px;
}
#wrap .space_introduce_wrap .cont {
  max-width: 1154px;
}
@media (max-width: 960px) {
  .space_introduce_wrap .cont {
    padding-top: 88px;
  }
}
.space_introduce_wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  background-color: #fbfbfb;
  content: "";
  z-index: -1;
}
@media (max-width: 960px) {
  .space_introduce_wrap::before {
    display: none;
  }
}
.space_introduce_wrap .space_list_swiper {
  position: relative;
  padding-bottom: 84px;
  margin-top: 84px;
}
@media (max-width: 960px) {
  .space_introduce_wrap .space_list_swiper {
    padding-bottom: 0;
    margin-top: 56px;
  }
}
.space_introduce_wrap .space_list_swiper .swiper-wrapper {
  overflow: visible;
}
.space_introduce_wrap .space_list_swiper .item {
  display: block;
  position: relative;
}
.space_introduce_wrap .space_list_swiper .item .thumb {
  overflow: hidden;
  aspect-ratio: 360/244;
}
.space_introduce_wrap .space_list_swiper .item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.space_introduce_wrap .space_list_swiper .item .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
}
.space_introduce_wrap .space_list_swiper .item .text .name {
  color: #fff;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 59px;
}
.space_introduce_wrap .space_list_swiper .item .text .noti {
  color: #fff;
  font-size: 18px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 27px;
}
@media (max-width: 960px) {
  .space_introduce_wrap .space_list_swiper .item .text .name {
    font-size: 14px;
    line-height: 21px;
  }
  .space_introduce_wrap .space_list_swiper .item .text .noti {
    font-size: 12px;
    line-height: 18px;
  }
}
.space_introduce_wrap .space_list_swiper .swiper-slide {
  width: 360px;
}
@media (max-width: 960px) {
  .space_introduce_wrap .space_list_swiper .swiper-slide {
    width: 160px;
  }
}
.space_introduce_wrap .space_list_swiper .space-swiper-button-prev,
.space_introduce_wrap .space_list_swiper .space-swiper-button-next {
  position: absolute;
  bottom: 0;
  width: 44px;
  height: 44px;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
  background-image: url("../images/spr_common_pc.png");
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .space_introduce_wrap .space_list_swiper .space-swiper-button-prev,
.space_introduce_wrap .space_list_swiper .space-swiper-button-next {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}
.space_introduce_wrap .space_list_swiper .space-swiper-button-prev.swiper-button-disabled::after,
.space_introduce_wrap .space_list_swiper .space-swiper-button-next.swiper-button-disabled::after {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  content: "";
}
@media (max-width: 960px) {
  .space_introduce_wrap .space_list_swiper .space-swiper-button-prev,
.space_introduce_wrap .space_list_swiper .space-swiper-button-next {
    display: none;
  }
}
.space_introduce_wrap .space_list_swiper .space-swiper-button-prev {
  right: 43px;
  background-position: 0 -80px;
}
.space_introduce_wrap .space_list_swiper .space-swiper-button-next {
  right: 0;
  background-position: -43px -80px;
}

.partner_list_wrap .cont {
  padding: 156px 0 200px;
}
#wrap .partner_list_wrap .cont {
  max-width: 1154px;
}
@media (max-width: 960px) {
  .partner_list_wrap .cont {
    padding: 56px 0 51px;
  }
}
.partner_list_wrap .partner_list {
  margin-top: 96px;
}
@media (max-width: 960px) {
  .partner_list_wrap .partner_list {
    margin-top: 32px;
  }
}
.partner_list_wrap .partner_list ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 59px;
}
@media (max-width: 960px) {
  .partner_list_wrap .partner_list ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
  }
}
.partner_list_wrap .partner_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
}
.partner_list_wrap .partner_list li img {
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 64px;
}
@media (max-width: 960px) {
  .partner_list_wrap .partner_list li {
    height: 32px;
  }
  .partner_list_wrap .partner_list li img {
    max-width: 90px;
    max-height: 40px;
  }
  .partner_list_wrap .partner_list li a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
}

.platform_layer_wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}
.platform_layer_wrap .platform_layer {
  position: absolute;
  top: 50px;
  left: 50%;
  bottom: 50px;
  width: 1180px;
  margin-left: -590px;
}
@media (max-width: 1220px) {
  .platform_layer_wrap .platform_layer {
    width: 960px;
    margin-left: -480px;
  }
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer {
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
  }
}
.platform_layer_wrap .platform_layer article {
  overflow: hidden;
  overflow-y: overlay;
  background-color: #fff;
  height: 100%;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  scroll-behavior: smooth;
}
.platform_layer_wrap .platform_layer article::-webkit-scrollbar {
  width: 6px;
}
.platform_layer_wrap .platform_layer article::-webkit-scrollbar-track {
  background-color: transparent;
}
.platform_layer_wrap .platform_layer article::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.2);
}
.platform_layer_wrap .platform_layer article::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner {
    padding-top: 50px;
  }
}
.platform_layer_wrap .platform_layer article .inner header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px 0 56px;
}
.platform_layer_wrap .platform_layer article .inner header .logo {
  margin-bottom: 30px;
}
.platform_layer_wrap .platform_layer article .inner header .logo img {
  width: 287px;
  height: auto;
}
.platform_layer_wrap .platform_layer article .inner header h2 {
  color: #081f60;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 69px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    align-items: flex-start;
    background-color: #fff;
    z-index: 10;
  }
  .platform_layer_wrap .platform_layer article .inner header .logo {
    display: none;
  }
  .platform_layer_wrap .platform_layer article .inner header h2 {
    height: 50px;
    font-size: 18px;
    line-height: 50px;
    padding-left: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner footer {
  background-color: #f5f5f5;
  padding: 48px 80px 78px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner footer {
    padding: 20px 17px 59px;
  }
}
.platform_layer_wrap .platform_layer article .inner footer .contact h5 {
  color: #081f60;
  font-size: 21px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner footer .contact h5 {
    font-size: 16px;
    line-height: 26px;
  }
}
.platform_layer_wrap .platform_layer article .inner footer .contact dl {
  width: 49%;
  border-top: 1px solid #192a4f;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 60px 1fr;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner footer .contact dl {
    width: 100%;
    grid-template-columns: 64px 1fr;
  }
}
.platform_layer_wrap .platform_layer article .inner footer .contact dl dt,
.platform_layer_wrap .platform_layer article .inner footer .contact dl dd {
  font-size: 12px;
  line-height: 18px;
  border-bottom: 1px solid #dbdbdb;
  padding: 8px 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner footer .contact dl dt,
.platform_layer_wrap .platform_layer article .inner footer .contact dl dd {
    font-size: 11px;
  }
}
.platform_layer_wrap .platform_layer article .inner footer .contact dl dt {
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
}
.platform_layer_wrap .platform_layer article .inner footer .contact dl dd {
  color: #757575;
}
.platform_layer_wrap .platform_layer article .inner footer .contact dl .line {
  display: flex;
  font-size: 11px;
  gap: 0 4px;
}
.platform_layer_wrap .platform_layer article .inner footer .contact dl .line + .line {
  margin-top: 6px;
}
.platform_layer_wrap .platform_layer article .inner footer .contact dl .btn_link {
  display: block;
  width: 58px;
  height: 18px;
  color: #fff;
  font-size: 10px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 300;
  line-height: 18px;
  text-align: center;
  background-color: #081f60;
  border-radius: 9px;
  margin-left: 4px;
}
.platform_layer_wrap .platform_layer article .inner .content .visual img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > .visual {
    height: 360px;
  }
  .platform_layer_wrap .platform_layer article .inner .content > .visual img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .sec_title {
  color: #081f60;
  font-size: 32px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 48px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .sec_title {
    font-size: 18px;
    line-height: 32px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs {
  margin-top: 36px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .programs {
    margin: 16px -16px 0;
  }
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .programs .program {
    padding: 0 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program .thumb {
  overflow: hidden;
  aspect-ratio: 500/340;
  margin-bottom: 16px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .programs .program .thumb {
    margin-bottom: 12px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program h5 {
  font-size: 20px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 30px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .programs .program h5 {
    font-size: 18px;
    line-height: 27px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program .info {
  font-size: 13px;
  line-height: 19px;
  margin-top: 8px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .programs .program .info {
    margin-top: 7px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program ul {
  border-top: 1px solid #192a4f;
  margin-top: 32px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .programs .program ul {
    margin-top: 43px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program ul li {
  color: #192a4f;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  border-bottom: 1px solid #dbdbdb;
  padding: 12px 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .programs .program ul li {
    font-size: 11px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program dl {
  border-top: 1px solid #192a4f;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 70px 1fr;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .programs .program dl {
    grid-template-columns: 57px 1fr;
    margin-top: 43px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program dl dt,
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program dl dd {
  font-size: 12px;
  line-height: 18px;
  border-bottom: 1px solid #dbdbdb;
  padding: 12px 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .programs .program dl dt,
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program dl dd {
    font-size: 11px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program dl dt {
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .program dl dd {
  color: #757575;
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .swiper-pagination {
  position: static;
  padding: 24px 0 33px;
}
.platform_layer_wrap .platform_layer article .inner .content > section .programs .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #192a4f;
}
@media (min-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .programs .swiper-wrapper {
    flex-wrap: wrap;
  }
  .platform_layer_wrap .platform_layer article .inner .content > section .programs.col_2 .swiper-wrapper {
    gap: 56px 20px;
  }
  .platform_layer_wrap .platform_layer article .inner .content > section .programs.col_2 .swiper-slide {
    width: calc(50% - 10px);
  }
  .platform_layer_wrap .platform_layer article .inner .content > section .programs.col_3 .swiper-wrapper {
    gap: 0 20px;
  }
  .platform_layer_wrap .platform_layer article .inner .content > section .programs.col_3 .swiper-slide {
    width: calc(33.33% - 15px);
  }
  .platform_layer_wrap .platform_layer article .inner .content > section .programs .swiper-pagination {
    display: none;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .space_info {
  margin-left: 49%;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .space_info {
    margin: 0 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .space_info li {
  border-top: 2px solid #082c55;
  padding: 16px 0 40px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .space_info li {
    border-top-width: 1px;
    padding: 12px 0 24px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .space_info strong {
  display: block;
  color: #081f60;
  font-size: 21px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .space_info strong {
    font-size: 16px;
    line-height: 21px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content > section .space_info p {
  color: #757575;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 10px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content > section .space_info p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content .swiper-button-next,
.platform_layer_wrap .platform_layer article .inner .content .swiper-button-prev {
  color: #192a4f;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content .swiper-button-next::after,
.platform_layer_wrap .platform_layer article .inner .content .swiper-button-prev::after {
    font-size: 24px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_1 {
  padding-top: 108px;
  padding-bottom: 41px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.seoul_1 {
    padding-top: 27px;
    padding-bottom: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_1 h4 {
  color: #081f60;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 56px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.seoul_1 h4 {
    font-size: 28px;
    line-height: 44px;
    margin-top: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_1 .text {
  font-size: 17px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 28px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.seoul_1 .text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 24px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_2 {
  background-image: linear-gradient(to bottom, #fff, #f5f5f5);
  padding-top: 92px;
  padding-bottom: 115px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.seoul_2 {
    background-image: none;
    padding-top: 56px;
    padding-bottom: 80px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_2 .counter_module_wrap {
  margin-top: 40px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.seoul_2 .counter_module_wrap {
    margin-top: 19px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_3 {
  padding-top: 123px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.seoul_3 {
    background-color: #f9f9f9;
    padding-top: 26px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_4 {
  padding: 120px 0 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.seoul_4 {
    padding: 64px 0 80px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_4 .sec_title {
  margin-left: 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.seoul_4 .sec_title {
    margin-left: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_4 .visual {
  margin: 36px 0 54px;
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_4 .visual .swiper-slide {
  aspect-ratio: 1180/348;
}
.platform_layer_wrap .platform_layer article .inner .content section.seoul_4 .visual .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.seoul_4 .visual {
    margin: 16px 0 21px;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.seoul_4 .visual .swiper-slide {
    aspect-ratio: 360/244;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_1 {
  padding-top: 94px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_1 {
    padding-top: 27px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_1 h4 {
  color: #081f60;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 56px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_1 h4 {
    font-size: 28px;
    line-height: 44px;
    margin-top: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_1 .text {
  font-size: 17px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 28px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_1 .text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 24px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_1 .visual {
  width: 952px;
  margin: 67px auto 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_1 .visual {
    width: 100%;
    aspect-ratio: 628/677;
    margin-top: 79px;
    background-image: url("../images/s2bridge/incheon/img_story_mobile_20230115.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_1 .visual img {
    display: none;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_2 {
  background-image: linear-gradient(to bottom, #fff, #f5f5f5);
  padding-top: 92px;
  padding-bottom: 115px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_2 {
    background-image: none;
    padding-top: 110px;
    padding-bottom: 80px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_2 .counter_module_wrap {
  margin-top: 40px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_2 .counter_module_wrap {
    margin-top: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_3 {
  padding-top: 123px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_3 {
    background-color: #f9f9f9;
    padding-top: 26px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_4 {
  padding-top: 70px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_4 {
    padding-top: 43px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_4 .common_list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 163px 1fr;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_4 .common_list {
    margin-top: 13px;
    grid-template-columns: 1fr;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_4 .common_list dt,
.platform_layer_wrap .platform_layer article .inner .content section.incheon_4 .common_list dd {
  border-top: 2px solid #082c55;
  padding: 16px 0 48px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_4 .common_list dt,
.platform_layer_wrap .platform_layer article .inner .content section.incheon_4 .common_list dd {
    border-top-width: 1px;
    padding: 12px 0 24px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_4 .common_list dt {
  color: #081f60;
  font-size: 21px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_4 .common_list dt {
    font-size: 16px;
    line-height: 21px;
    padding-bottom: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_4 .common_list dd {
  color: #757575;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_4 .common_list dd {
    font-size: 12px;
    line-height: 18px;
    border-top-width: 0;
    padding-top: 8px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_5 {
  padding: 120px 0 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_5 {
    padding: 40px 0 80px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_5 .sec_title {
  margin-left: 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_5 .sec_title {
    margin-left: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_5 .visual {
  margin: 36px 0 54px;
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_5 .visual .swiper-slide {
  aspect-ratio: 1180/348;
}
.platform_layer_wrap .platform_layer article .inner .content section.incheon_5 .visual .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_5 .visual {
    margin: 16px 0 21px;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.incheon_5 .visual .swiper-slide {
    aspect-ratio: 360/244;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_1 {
  padding-top: 94px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_1 {
    padding-top: 27px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_1 h4 {
  color: #081f60;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 56px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_1 h4 {
    font-size: 28px;
    line-height: 44px;
    margin-top: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .text {
  font-size: 17px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 28px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 24px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .visual_1 {
  width: 899px;
  margin: 103px auto 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .visual_1 {
    width: 100%;
    aspect-ratio: 663/899;
    margin-top: 55px;
    background-image: url("../images/s2bridge/jeju/img_story_1_mobile.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .visual_1 img {
    display: none;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .visual_2 {
  width: 1066px;
  margin-top: 98px;
  margin-left: -23px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .visual_2 {
    width: 100%;
    aspect-ratio: 592/1322;
    margin-top: 55px;
    margin-left: 0;
    background-image: url("../images/s2bridge/jeju/img_story_2_mobile.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .visual_2 img {
    display: none;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .visual_3 {
  width: 860px;
  margin: 148px auto 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .visual_3 {
    width: 100%;
    aspect-ratio: 657/456;
    margin-top: 55px;
    background-image: url("../images/s2bridge/jeju/img_story_3_mobile.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_1 .visual_3 img {
    display: none;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_2 {
  background-image: linear-gradient(to bottom, #fff, #f5f5f5);
  padding-top: 112px;
  padding-bottom: 107px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_2 {
    background-image: none;
    padding-top: 110px;
    padding-bottom: 93px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_2 .counter_module_wrap {
  margin-top: 40px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_2 .counter_module_wrap {
    margin-top: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_2 .notice {
  color: #1e2f5b;
  font-size: 10px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  text-align: center;
  margin-top: 23px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_2 .notice {
    line-height: 14px;
    margin-top: 19px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_2 .btn_download {
  display: block;
  width: 261px;
  height: 36px;
  color: #fff;
  font-size: 11px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  border-radius: 15px;
  background-color: #081f60;
  margin: 32px auto 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_2 .btn_download {
    font-size: 12px;
    margin: 23px auto 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_3 {
  padding-top: 156px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_3 {
    background-color: #f9f9f9;
    padding-top: 26px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_3 .common_list {
  border-top: 1px solid #192a4f;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 70px 1fr;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_3 .common_list {
    grid-template-columns: 57px 1fr;
    margin-top: 43px;
    background-color: #fff;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_3 .common_list dt,
.platform_layer_wrap .platform_layer article .inner .content section.jeju_3 .common_list dd {
  font-size: 12px;
  line-height: 18px;
  border-bottom: 1px solid #dbdbdb;
  padding: 12px 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_3 .common_list dt,
.platform_layer_wrap .platform_layer article .inner .content section.jeju_3 .common_list dd {
    font-size: 11px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_3 .common_list dt {
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_3 .common_list dd {
  color: #757575;
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_3 .common_list dd strong {
  display: block;
  color: #090909;
  font-weight: 500;
  margin-bottom: 7px;
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_4 {
  padding: 120px 0 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_4 {
    padding: 64px 0 80px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_4 .sec_title {
  margin-left: 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_4 .sec_title {
    margin-left: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_4 .visual {
  margin: 36px 0 54px;
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_4 .visual .swiper-slide {
  aspect-ratio: 1180/348;
}
.platform_layer_wrap .platform_layer article .inner .content section.jeju_4 .visual .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_4 .visual {
    margin: 16px 0 21px;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.jeju_4 .visual .swiper-slide {
    aspect-ratio: 360/244;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_1 {
  padding-top: 94px;
  padding-bottom: 72px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.vietnam_1 {
    padding-top: 27px;
    padding-bottom: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_1 h4 {
  color: #081f60;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 56px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.vietnam_1 h4 {
    font-size: 28px;
    line-height: 44px;
    margin-top: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_1 .text {
  font-size: 17px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 28px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.vietnam_1 .text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 24px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_1 .visual {
  width: 1058px;
  margin: 89px -19px 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.vietnam_1 .visual {
    width: 100%;
    aspect-ratio: 608/1648;
    margin-top: 41px;
    margin-left: 0;
    margin-right: 0;
    background-image: url("../images/s2bridge/vietnam/img_story_1_mobile.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.vietnam_1 .visual img {
    display: none;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_2 {
  background-image: linear-gradient(to bottom, #fff, #f5f5f5);
  padding-top: 112px;
  padding-bottom: 95px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.vietnam_2 {
    background-image: none;
    padding-top: 111px;
    padding-bottom: 78px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_2 .counter_module_wrap {
  margin-top: 40px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.vietnam_2 .counter_module_wrap {
    margin-top: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 {
  padding-top: 105px;
  padding-bottom: 200px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 {
    background-color: #f9f9f9;
    padding-top: 26px;
    padding-bottom: 128px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 .common_list {
  border-top: 1px solid #192a4f;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 70px 1fr;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 .common_list {
    grid-template-columns: 57px 1fr;
    margin-top: 43px;
    background-color: #fff;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 .common_list dt,
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 .common_list dd {
  font-size: 12px;
  line-height: 18px;
  border-bottom: 1px solid #dbdbdb;
  padding: 12px 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 .common_list dt,
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 .common_list dd {
    font-size: 11px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 .common_list dt {
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 .common_list dd {
  color: #757575;
}
.platform_layer_wrap .platform_layer article .inner .content section.vietnam_3 .common_list dd strong {
  display: block;
  color: #090909;
  font-weight: 500;
  margin-bottom: 7px;
}
.platform_layer_wrap .platform_layer article .inner .content section.youth_1 {
  padding-top: 94px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.youth_1 {
    padding-top: 27px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.youth_1 h4 {
  color: #081f60;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 56px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.youth_1 h4 {
    font-size: 28px;
    line-height: 44px;
    margin-top: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.youth_1 .text {
  font-size: 17px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 28px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.youth_1 .text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 24px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.youth_1 .visual {
  width: 940px;
  margin: 46px auto 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.youth_1 .visual {
    width: 100%;
    aspect-ratio: 598/1153;
    margin-top: 105px;
    margin-left: 0;
    margin-right: 0;
    background-image: url("../images/s2bridge/youth/img_story_1_mobile.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.youth_1 .visual img {
    display: none;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.youth_2 {
  background-image: linear-gradient(to bottom, #fff, #f5f5f5);
  padding-top: 85px;
  padding-bottom: 117px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.youth_2 {
    background-image: none;
    padding-top: 104px;
    padding-bottom: 80px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.youth_2 .counter_module_wrap {
  margin-top: 40px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.youth_2 .counter_module_wrap {
    margin-top: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.youth_3 {
  padding-top: 123px;
  padding-bottom: 204px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.youth_3 {
    background-color: #f9f9f9;
    padding-top: 26px;
    padding-bottom: 168px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daejeon_1 {
  padding-top: 93px;
  padding-bottom: 121px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daejeon_1 {
    padding-top: 27px;
    padding-bottom: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daejeon_1 h4 {
  color: #081f60;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 56px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daejeon_1 h4 {
    font-size: 28px;
    line-height: 44px;
    margin-top: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daejeon_1 .text {
  font-size: 17px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 28px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daejeon_1 .text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 24px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daejeon_1 .visual {
  width: 928px;
  margin: 146px auto 0;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daejeon_1 .visual {
    width: auto;
    aspect-ratio: 719/700;
    margin-top: 48px;
    margin-left: -16px;
    margin-right: -16px;
    background-image: url("../images/s2bridge/daejeon/img_story_1_mobile.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.daejeon_1 .visual img {
    display: none;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daejeon_2 {
  padding-top: 75px;
  background-image: linear-gradient(to bottom, #f5f5f5, #fff);
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daejeon_2 {
    background-image: none;
    background-color: #f9f9f9;
    padding-top: 26px;
    margin-top: 25px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daejeon_3 {
  padding: 120px 0 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daejeon_3 {
    padding: 64px 0 80px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daejeon_3 .sec_title {
  margin-left: 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daejeon_3 .sec_title {
    margin-left: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daejeon_3 .visual {
  margin: 36px 0 54px;
}
.platform_layer_wrap .platform_layer article .inner .content section.daejeon_3 .visual .swiper-slide {
  aspect-ratio: 1180/348;
}
.platform_layer_wrap .platform_layer article .inner .content section.daejeon_3 .visual .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daejeon_3 .visual {
    margin: 16px 0 21px;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.daejeon_3 .visual .swiper-slide {
    aspect-ratio: 360/244;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daegu_1 {
  padding-top: 93px;
  padding-bottom: 121px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_1 {
    padding-top: 27px;
    padding-bottom: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daegu_1 h4 {
  color: #081f60;
  font-size: 40px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 56px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_1 h4 {
    font-size: 28px;
    line-height: 44px;
    margin-top: 0;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daegu_1 .text {
  font-size: 17px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 500;
  line-height: 28px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_1 .text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 24px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daegu_1 .visual {
  width: 1048px;
  margin: 146px -14px 0;
}
@media (max-width: 1220px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_1 .visual {
    width: 828px;
  }
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_1 .visual {
    width: auto;
    aspect-ratio: 720/701;
    margin-top: 48px;
    margin-left: -16px;
    margin-right: -16px;
    background-image: url("../images/s2bridge/daegu/img_story_1_mobile.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_1 .visual img {
    display: none;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daegu_2 {
  padding-top: 75px;
  background-image: linear-gradient(to bottom, #f5f5f5, #fff);
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_2 {
    background-image: none;
    background-color: #f9f9f9;
    padding-top: 26px;
    margin-top: 25px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daegu_3 {
  padding: 120px 0 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_3 {
    padding: 64px 0 80px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daegu_3 .sec_title {
  margin-left: 80px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_3 .sec_title {
    margin-left: 16px;
  }
}
.platform_layer_wrap .platform_layer article .inner .content section.daegu_3 .visual {
  margin: 36px 0 54px;
}
.platform_layer_wrap .platform_layer article .inner .content section.daegu_3 .visual .swiper-slide {
  aspect-ratio: 1180/348;
}
.platform_layer_wrap .platform_layer article .inner .content section.daegu_3 .visual .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_3 .visual {
    margin: 16px 0 21px;
  }
  .platform_layer_wrap .platform_layer article .inner .content section.daegu_3 .visual .swiper-slide {
    aspect-ratio: 360/244;
  }
}
.platform_layer_wrap .platform_layer .btn_layer_close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  background: url("../images/s2bridge/btn_layer_close.png");
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  font-size: 1px;
  text-indent: -999px;
}
@media (max-width: 960px) {
  .platform_layer_wrap .platform_layer .btn_layer_close {
    width: 28px;
    height: 28px;
    background-image: none;
    padding: 5px;
    top: 11px;
    right: 11px;
    z-index: 16;
  }
  .platform_layer_wrap .platform_layer .btn_layer_close::before {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 18px;
    height: 18px;
    background-image: url("../images/spr_common_pc.png");
    background-repeat: no-repeat;
    background-position: -95px -60px;
    content: "";
  }
}
@media (max-width: 960px) and (max-width: 960px) {
  .platform_layer_wrap .platform_layer .btn_layer_close::before {
    background-image: url("../images/spr_common_mobile.png");
    background-size: 120px 122px;
  }
}

.wrap_contact_us {
  margin-top: 80px;
}
@media (max-width: 960px) {
  .wrap_contact_us {
    border-top: 1px solid #dbdbdb;
    padding-top: 40px;
    margin-top: 24px;
  }
}
.wrap_contact_us ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 98px 0;
}
@media (max-width: 960px) {
  .wrap_contact_us ul {
    justify-content: center;
    gap: 66px 0;
  }
}
.wrap_contact_us ul li {
  width: calc(50% - 25px);
  max-width: 550px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .wrap_contact_us ul li {
    width: 100%;
  }
}
.wrap_contact_us .item h3 {
  color: #081f60;
  font-size: 21px;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  padding-bottom: 24px;
}
@media (max-width: 960px) {
  .wrap_contact_us .item h3 {
    display: flex;
    flex-direction: column-reverse;
    font-size: 16px;
    line-height: 26px;
  }
}
.wrap_contact_us .item dl {
  display: grid;
  grid-template-columns: 65px 1fr;
  border-top: 1px solid #192a4f;
}
.wrap_contact_us .item dl dt,
.wrap_contact_us .item dl dd {
  font-size: 12px;
  line-height: 18px;
  border-bottom: 1px solid #dbdbdb;
  padding: 8px 0;
}
@media (max-width: 960px) {
  .wrap_contact_us .item dl dt,
.wrap_contact_us .item dl dd {
    font-size: 11px;
    line-height: 16px;
  }
}
.wrap_contact_us .item dl dt {
  font-weight: 500;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
}
.wrap_contact_us .item dl dd {
  color: #757575;
}
.wrap_contact_us .item .btn {
  display: block;
  width: 58px;
  height: 18px;
  color: #fff;
  font-size: 10px;
  font-weight: 300;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 18px;
  text-align: center;
  border-radius: 9px;
  background-color: #081f60;
}

.wrap_policy {
  margin-top: 72px;
}
@media (max-width: 960px) {
  .wrap_policy {
    margin-top: 20px;
  }
}
.wrap_policy .policy_select {
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .wrap_policy .policy_select {
    margin-bottom: 32px;
  }
}
.wrap_policy .policy_select .selectbox_module .selected_option {
  width: auto;
  padding-right: 104px;
}
@media (max-width: 960px) {
  .wrap_policy .policy_select .selectbox_module {
    width: 100%;
  }
  .wrap_policy .policy_select .selectbox_module .selected_option {
    width: 100%;
    padding-right: 0;
  }
}
.wrap_policy .policy_cont .text_block {
  font-size: 1em;
  font-family: "OneShinhan", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 300;
  line-height: 2em;
  word-break: break-all;
}
@media (max-width: 960px) {
  .wrap_policy .policy_cont .text_block {
    font-size: 0.857em;
  }
}
.wrap_policy .policy_cont .text_block h3 {
  font-size: 1.286em;
  line-height: 1em;
  margin-top: 2.222em;
  margin-bottom: 1.333em;
}
.wrap_policy .policy_cont .text_block h3:first-child {
  margin-top: 0;
}
.wrap_policy .policy_cont .text_block .tab_1 {
  padding-left: 1em;
}
.wrap_policy .policy_cont .text_block dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.857em;
}
@media (max-width: 960px) {
  .wrap_policy .policy_cont .text_block dl {
    border-top: 1px solid #082c55;
  }
}
.wrap_policy .policy_cont .text_block dl dt,
.wrap_policy .policy_cont .text_block dl dd {
  width: 27%;
  padding-left: 2%;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .wrap_policy .policy_cont .text_block dl dt,
.wrap_policy .policy_cont .text_block dl dd {
    display: flex;
    align-items: center;
    width: auto;
    padding: 10px;
    line-height: 1.5em;
  }
}
.wrap_policy .policy_cont .text_block dl dt {
  color: #192a4f;
  font-weight: 700;
  font-family: "Noto Sans KR", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  line-height: 1em;
  border-bottom: 2px solid #082c55;
  padding-bottom: 1.214em;
}
.wrap_policy .policy_cont .text_block dl dt br {
  display: none;
}
@media (max-width: 960px) {
  .wrap_policy .policy_cont .text_block dl dt {
    width: 35%;
    line-height: 1.5em;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 10px;
  }
  .wrap_policy .policy_cont .text_block dl dt br {
    display: block;
  }
}
.wrap_policy .policy_cont .text_block dl dd {
  font-family: "Noto Sans KR", "Malgun Gothic", "맑은 고딕", dotum, "돋움", sans-serif;
  font-weight: 400;
  line-height: 1em;
  border-bottom: 1px solid #dbdbdb;
  padding-top: 1.143em;
  padding-bottom: 1.143em;
}
@media (max-width: 960px) {
  .wrap_policy .policy_cont .text_block dl dd {
    width: 65%;
  }
}
.wrap_policy .policy_cont .text_block dl dt:first-child + dd {
  background-color: rgba(216, 216, 216, 0.2);
}
@media (max-width: 960px) {
  .wrap_policy .policy_cont .text_block dl dt:first-child + dd {
    background-color: #fff;
  }
}
.wrap_policy .policy_cont .text_block dl dt:nth-child(1) {
  width: 19%;
  order: 1;
}
.wrap_policy .policy_cont .text_block dl dt:nth-child(3) {
  order: 2;
}
.wrap_policy .policy_cont .text_block dl dt:nth-child(5) {
  order: 3;
}
.wrap_policy .policy_cont .text_block dl dt:nth-child(7) {
  order: 4;
}
.wrap_policy .policy_cont .text_block dl dd:nth-child(2) {
  width: 19%;
  order: 5;
}
.wrap_policy .policy_cont .text_block dl dd:nth-child(4) {
  order: 6;
}
.wrap_policy .policy_cont .text_block dl dd:nth-child(6) {
  order: 7;
}
.wrap_policy .policy_cont .text_block dl dd:nth-child(8) {
  order: 8;
}
@media (max-width: 960px) {
  .wrap_policy .policy_cont .text_block dl dt:nth-child(1) {
    width: 35%;
    order: 1;
  }
  .wrap_policy .policy_cont .text_block dl dt:nth-child(3) {
    order: 3;
  }
  .wrap_policy .policy_cont .text_block dl dt:nth-child(5) {
    order: 5;
  }
  .wrap_policy .policy_cont .text_block dl dt:nth-child(7) {
    order: 7;
  }
  .wrap_policy .policy_cont .text_block dl dd:nth-child(2) {
    width: 65%;
    order: 2;
  }
  .wrap_policy .policy_cont .text_block dl dd:nth-child(4) {
    order: 4;
  }
  .wrap_policy .policy_cont .text_block dl dd:nth-child(6) {
    order: 6;
  }
  .wrap_policy .policy_cont .text_block dl dd:nth-child(8) {
    order: 8;
  }
}