@charset "UTF-8";
/*애니메이션*/
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes padding-up {
  from {
    padding: 0.5rem 1rem;
  }
  to {
    padding: 0.875rem 1rem;
  }
}
@keyframes border-move {
  from {
    opacity: 0;
    width: 0;
    height: 0;
  }
  to {
    opacity: 0.6;
    width: 30%;
    height: 24px;
  }
}
@keyframes change-y {
  0% {
    transform: translateY(-40px);
  }
  60% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes shaking {
  25% {
    transform: rotateZ(5deg);
  }
  50% {
    transform: rotateZ(0);
  }
  75% {
    transform: rotateZ(-5deg);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes slide-right {
  to {
    left: 0;
  }
}
@keyframes box-slide {
  from {
    opacity: 0.4;
    transform: translateY(-25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes skeleton_load {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
._laptop {
  display: none !important;
}
@media screen and (max-width: 992px) {
  ._laptop {
    display: block !important;
  }
}

._tablet {
  display: none !important;
}
@media screen and (max-width: 768px) {
  ._tablet {
    display: block !important;
  }
}

._mobile {
  display: none !important;
}
@media screen and (max-width: 576px) {
  ._mobile {
    display: block !important;
  }
}

._not_laptop {
  display: block !important;
}
@media screen and (max-width: 992px) {
  ._not_laptop {
    display: none !important;
  }
}

._not_tablet {
  display: block !important;
}
@media screen and (max-width: 768px) {
  ._not_tablet {
    display: none !important;
  }
}

._not_mobile {
  display: block !important;
}
@media screen and (max-width: 576px) {
  ._not_mobile {
    display: none !important;
  }
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

html {
  overflow: auto;
}
html * {
  letter-spacing: -0.05px;
}

body {
  color: #313131 !important;
  font-size: 13px !important;
  font-family: "Inter", "nanumsquareotfregular", sans-serif !important;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  body .row {
    margin-left: 0;
    margin-right: 0;
  }
}

main {
  position: relative;
}

select, input {
  height: 40px !important;
  font-size: 1.1rem !important;
}

textarea {
  font-size: 1rem !important;
}

/* 테이블 */
.table th, .table td {
  vertical-align: middle !important;
}

table > thead > tr {
  border-top: 3px solid rgba(63, 75, 153, 0.9);
}
table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
table th {
  padding: 0.4rem 0.2rem;
  font-size: 1rem;
  height: 0.5rem;
  border-bottom: none;
  line-height: 1;
  vertical-align: middle;
}
table td {
  padding: 0.1rem 0.2rem;
  vertical-align: middle;
  font-size: 0.875rem;
  height: 50px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

._word-break {
  white-space: normal;
  word-break: keep-all;
  display: inline-block;
}

.post tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.post tr:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.post .title {
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #333333;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 1.25rem 1rem;
  text-align: left;
  border-top: 4px solid rgb(72, 94, 208);
  white-space: normal;
  word-break: keep-all;
}
.post .item {
  background-color: rgba(0, 0, 0, 0.05);
  width: 150px;
  padding: 0.5rem;
  max-width: 200px;
  text-align: center;
  text-indent: unset;
  line-height: 1.2;
}
.post .item_content {
  text-align: left;
  text-indent: 10px;
  width: 400px;
  max-width: 400px;
}
.post .item_small {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0;
  min-width: 60px;
}
.post .item_small_content {
  padding: 0;
  min-width: 60px;
}
.post .content {
  padding: 50px 10px;
}
.post #target {
  padding: 10px;
}
.post #notice {
  text-align: initial;
  max-width: 992px;
}
.post #notice > p {
  word-break: break-all;
  white-space: pre-line;
}
.post #notice > p:empty {
  padding-bottom: 24px;
}
.post #notice span {
  font-family: serif, sans-serif;
}
.post #content {
  min-height: 400px;
  height: 400px;
  text-align: initial;
  max-width: 992px;
}
.post #content > p {
  word-break: break-all;
  white-space: pre-line;
}
.post #content > p:empty {
  padding-bottom: 24px;
}
.post #content span {
  font-family: serif, sans-serif;
}
.post .upload-file-list {
  text-overflow: unset;
  overflow: unset;
  white-space: normal;
  vertical-align: middle;
  text-indent: 0;
  text-align: left;
}
.post .upload-file-list:empty {
  height: 26px;
}
.post .upload-file-list.item_content:empty {
  height: 60px;
}
@media screen and (max-width: 576px) {
  .post th,
  .post td {
    line-height: 1;
  }
  .post .title {
    font-size: 18px;
    padding: 1rem;
  }
}

span.new {
  background-color: #ffa500;
  color: white;
  padding: 2px 4px;
  font-size: 8px;
  vertical-align: top;
  margin-right: 4px;
}

/* 테이블 끝 */
/* 버튼 커스텀 */
.btn:not(.btn-list-link) {
  font-size: 1rem;
  padding: 10px 16px;
  line-height: 1;
}
.btn + .btn {
  margin-left: 8px;
}
.btn.btn-primary {
  color: #ffffff;
  background-color: rgb(72, 94, 208);
  border-color: rgb(72, 94, 208);
}
.btn.btn-primary:active, .btn.btn-primary:hover {
  background-color: rgb(51, 69, 159) !important;
  border-color: rgb(51, 69, 159) !important;
}
.btn.btn-accent {
  color: #ffffff;
  background-color: rgb(29, 194, 180);
  border-color: rgb(29, 194, 180);
}
.btn.btn-accent:active, .btn.btn-accent:hover {
  background-color: rgb(22.3677130045, 149.6322869955, 138.8340807175) !important;
  border-color: rgb(22.3677130045, 149.6322869955, 138.8340807175) !important;
}
.btn.btn-warn {
  color: #ffffff;
  background-color: rgb(255, 185, 34);
  border-color: rgb(255, 185, 34);
}
.btn.btn-warn:active, .btn.btn-warn:hover {
  background-color: rgb(238, 162.6153846154, 0) !important;
  border-color: rgb(238, 162.6153846154, 0) !important;
}
.btn.btn-default {
  color: black;
  background-color: rgb(238, 238, 238);
  border-color: rgb(238, 238, 238);
}
.btn.btn-default:active, .btn.btn-default:hover {
  background-color: rgb(220.15, 220.15, 220.15) !important;
  border-color: rgb(220.15, 220.15, 220.15) !important;
}
.btn.btn-outline {
  border-color: #ced4da;
  background-color: #e9ecef;
  color: #495057;
  padding: 10px 8px;
  line-height: 1rem;
  font-size: 14px;
}
.btn.btn-outline:hover {
  background-color: rgb(218.2368421053, 223.25, 228.2631578947);
}
.btn-list-link {
  border-radius: 2rem;
  padding: 0 1rem;
  background-color: rgb(72, 94, 208);
  color: white;
}
.btn-list-link:hover {
  color: white;
  background-color: rgb(51, 69, 159);
}
@media screen and (max-width: 768px) {
  .btn-list-link {
    font-size: 0.875rem;
  }
}

#container {
  flex: 1;
  display: block;
  position: relative;
  /*button:not([class^=gm-]):not(.btn-list-link) {
  	height: 40px !important;
  	font-size: 1rem !important;
  	line-height: 1.2 !important;
  	background-color: rgba(251, 181, 69, 1) !important;
  	color: white !important;

  	&:hover {
  		background-color: #FF9819 !important;
  	}
  }*/
}
#container .buttonIndex,
#container .buttonClose {
  font-size: 1.1rem;
  border: none;
  height: 40px;
  line-height: 1.5;
  padding: 5px 15px;
}
#container .buttonIndex {
  background-color: rgb(29, 194, 180);
  color: white !important;
}
#container .buttonIndex:hover {
  background-color: rgb(22.3677130045, 149.6322869955, 138.8340807175);
  color: white !important;
  cursor: pointer;
  border: none;
}
#container .buttonClose {
  background-color: rgb(238, 238, 238);
  color: black;
}
#container .buttonClose:hover {
  background-color: rgb(22.3677130045, 149.6322869955, 138.8340807175);
  color: white;
  cursor: pointer;
  border: none;
}
#container button.t2 {
  padding: 5px 27px;
}
#container button.t4 {
  padding: 5px 11px;
}
#container button.tn {
  background-color: white !important;
  color: black !important;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
#container button.tn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* 버튼 커스텀 끝 */
/* 라벨 */
label {
  font-size: 1rem !important;
  padding: 0 !important;
}

span.dotInLabel {
  color: orange !important;
  font-size: 0.9rem !important;
  vertical-align: baseline !important;
}

label.remember {
  font-size: 0.9rem !important;
  vertical-align: baseline !important;
}

span.findId {
  font-size: 0.9rem !important;
  vertical-align: baseline !important;
}

label.descInLabel {
  font-size: 0.8rem !important;
  text-indent: 10px !important;
}

.labelTbl {
  font-size: 0.875rem !important;
  color: white;
  border: none;
  width: 70px;
  border-radius: 15px;
  text-indent: 0;
  text-align: center;
}

.labelTblPrepare {
  /* 사전접수 */
  background-color: #4b4ba4;
  border: 1px solid rgb(66.9979079498, 66.9979079498, 146.5020920502);
}

.labelTblOpen {
  /* 프로그램 리스트 접수중 라벨 */
  background-color: #00bd97;
  border: 1px solid rgb(0, 189, 151);
}

.labelTblOpening {
  background-color: rgb(0, 189, 151);
  border: 1px solid rgb(0, 163.5, 130.626984127);
}

.labelTblPass {
  color: rgb(0, 189, 151);
}

.labelTblApplied {
  /* 프로그램 리스트 접수중 라벨 */
  color: rgb(0, 123, 255);
}

.labelTblProhibit {
  /* 신청 불가 */
  color: #999999;
}

.labelTblCancel,
.labelTblCancel2 {
  background-color: #e56874;
  border: 1px solid #e56874;
}

.labelTblClose {
  /* 마감 */
  border: 1px solid #d9d9d9;
  background-color: #fafafa;
  color: #666666;
}

.labelTblPreparing {
  color: #ed9d00;
  font-weight: bold;
}

.labelTblPass,
.labelTblApplied,
.labelTblProhibit {
  font-weight: bold;
}

.labelTblOpen,
.labelTblCancel,
.labelTblCancel2 {
  cursor: pointer !important;
  font-weight: bold;
}

/* 라벨 끝 */
#untactSubmenus {
  display: none;
}

/* 페이징바 */
ul#pageNavi {
  display: inherit;
  border-radius: 4px;
}
ul#pageNavi > li + li {
  margin-left: 4px;
}
ul#pageNavi > li > a {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding: 10px 0;
  color: rgb(255, 185, 34);
  text-decoration: none;
  background-color: transparent;
  min-width: 35px;
  text-align: center;
  cursor: pointer;
  border-radius: 2px;
}
ul#pageNavi > li > a:hover {
  background-color: rgba(255, 165, 0, 0.33);
  color: #666666;
}
ul#pageNavi > li > a.active {
  color: black;
  font-weight: bold;
  cursor: default;
  background-color: rgb(255, 185, 34);
  border-radius: 2px;
}
ul#pageNavi > li > a.inactive {
  cursor: not-allowed;
  color: #999999;
}
ul#pageNavi > li > a.inactive:hover {
  background-color: #ffffff;
  border-radius: 2px;
}
ul#pageNavi > li > a.activeSide {
  cursor: pointer;
}
ul#pageNavi > li > a .fa {
  font-size: 16px;
}

/* 페이징바 끝 */
/* 푸터 */
footer {
  width: 100%;
  min-height: 360px;
  text-align: center;
  background-color: #222843;
  position: relative;
}
@media screen and (max-width: 576px) {
  footer {
    height: unset;
  }
}
footer p, footer a {
  font-size: 0.875rem;
  color: #aaaaaa;
}
footer a:hover,
footer a:focus {
  color: white;
}
footer .container {
  position: relative;
}

.footer-top {
  padding: 3rem 0;
}
@media screen and (max-width: 768px) {
  .footer-top {
    padding: 1.5em 0 0;
  }
}
.footer-bottom .row {
  padding: 2rem 0;
  border-top: 1px solid rgba(170, 170, 170, 0.2);
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    position: unset;
  }
  .footer-bottom .row {
    margin-top: 1rem;
    display: block;
  }
}
.footer-logo {
  padding-top: 5.5%;
  background-repeat: no-repeat;
  background-image: url("../assets/images/cluster/logo.svg");
  background-size: contain;
  width: 300px;
  height: 0;
}
@media screen and (max-width: 992px) {
  .footer-logo {
    width: 200px;
    padding-top: 7.5%;
  }
}
@media screen and (max-width: 576px) {
  .footer-logo {
    width: 100%;
    height: 3rem;
    padding: unset;
    background-position: center;
  }
}
.footer-list {
  text-align: left;
  line-height: 1;
  color: #aaaaaa;
  font-size: 0.875rem;
}
.footer-list dt,
.footer-list dd {
  display: inline-block;
  line-height: 16px;
}
.footer-list dt:not(:first-child) {
  margin-left: 0.5rem;
}
.footer-link-list li {
  display: inline-block;
  padding: 0 1rem;
}
.footer-link-list li:last-child {
  padding-right: 0;
}
.footer-menus {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .footer-menus {
    margin-top: 1rem;
    flex: 1 100%;
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .footer-menus {
    display: none;
  }
}
.footer-menu-list {
  text-align: left;
}
.footer-menu-list:not(:first-child) {
  margin-left: 2rem;
}
.footer-menu-list li {
  padding: 0 1rem;
}
.footer-menu-list span {
  color: white;
  font-size: 14px;
}
.footer-menu-list a {
  font-size: 13px;
}
.row .footer-infos {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .row .footer-links {
    flex: none;
    text-align: center;
    display: block;
    width: 100%;
    padding: 2rem 0;
  }
}

/* 푸터 끝 */
/* 메뉴 */
div#r_nav {
  position: fixed;
  width: 100%;
  height: 95px;
  z-index: 999;
  background-color: rgba(63, 75, 153, 0.9);
  transition: all 0.2s linear;
}
._scrolling div#r_nav {
  background-color: rgba(63, 75, 153, 0.9);
}
div#k_nav1 {
  position: relative;
  height: 95px;
}
div#k_nav1 .nav-top {
  position: absolute;
  top: 10px;
  right: 0;
  text-align: right;
  display: inline-flex;
}
div#k_nav1 .nav-top > span {
  margin-left: 30px;
  margin-right: 15px;
}
div#k_nav1 .nav-top > span > a {
  width: 100%;
  color: white;
  font-size: 0.8rem;
}
div#k_nav1 .nav-top > span > a:hover {
  cursor: pointer;
  color: #FF9819;
}
div#k_nav1 .nav-menu {
  width: 100%;
}
div#k_nav1 .nav-menu .nav-logo {
  position: absolute;
  top: 18px;
}
div#k_nav1 .nav-menu .nav-logo img {
  height: 60px;
}
div#k_nav1 .nav-menu .nav-logo img:hover {
  cursor: pointer;
}
div#k_nav1 .nav-menu > ul#nav {
  display: inline;
  position: absolute;
  top: 42px;
  right: 0;
  padding-top: 10px;
  margin-right: 15px;
}
div#k_nav1 .nav-menu > ul#nav > li {
  display: inline;
  position: relative;
  padding-top: 10px;
  margin-left: 60px;
  padding-bottom: 20px;
}
div#k_nav1 .nav-menu > ul#nav > li > a {
  font-weight: 600;
  font-size: 1rem;
  color: white;
}
div#k_nav1 .nav-menu > ul#nav > li > a:hover {
  cursor: pointer;
  color: #FF9819;
}

ul#nav > li > ul {
  position: absolute;
  background-color: rgba(63, 75, 153, 0.7);
  top: 47px;
  left: -10px;
  width: max-content;
  min-width: 130px;
  padding: 5px 15px;
  border-radius: 0 0 3px 3px;
}
ul#nav > li > ul > li {
  padding: 5px 0;
}
ul#nav > li > ul > li > a {
  color: white;
  font-weight: bold;
}
ul#nav > li > ul > li > a:hover {
  cursor: pointer;
  color: #FF9819;
}

#k_nav1 > div > span:nth-child(n+1):nth-child(-n+5) {
  display: none;
}

/* 메뉴 끝 */
/* 유효성 및 타이틀 라벨 */
.invalid-data {
  border: 1px solid #dc3545 !important;
  border-radius: 3px;
  height: 44px;
}

.invalid-box {
  display: none;
  width: 100%;
  height: 20px;
  padding-left: 5px;
  margin-top: 0.25rem;
  font-size: 0.9rem !important;
  color: #dc3545;
  text-align: right;
  line-height: 1.4;
}

.is-invalid {
  display: block;
}

label.lb_title {
  font-size: 1.05rem;
  font-weight: 600;
}

/* 유효성 및 타이틀 라벨 */
label {
  vertical-align: middle;
}

input[type=checkbox] {
  vertical-align: middle;
}

/* 

/* 컴포넌트 텍스트 사이즈 */
.page_title {
  font-size: 2rem !important;
  font-weight: 600 !important;
}

.page_inner_group {
  display: block;
}
.page_inner_group + .page_inner_group {
  margin-top: 1rem;
}

.page_inner_title {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
}

.page_inner_headline {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  color: #333333;
}

.page_inner_sub_title {
  font-size: 1rem !important;
  color: #333333;
}

.page_inner_content {
  font-size: 0.875rem;
  color: #333333;
}

.page_content {
  font-size: 0.875rem;
}

.page_footer_content {
  font-size: 0.95rem;
  font-weight: bold;
}

/* 폼 */
.form-signin {
  width: 100%;
  max-width: 330px;
  margin: auto;
  padding: 200px 0;
}

@media (min-width: 1000px) {
  .form-signin {
    max-width: 500px;
  }
}
.form-signin > h1 {
  text-align: center;
  color: black;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

/* 폼 끝 */
/* 커스텀 sd_checks */
.sd_checks {
  position: relative;
}

.sd_checks > input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sd_checks > input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.sd_checks > input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  margin: -2px 8px 0 0;
  text-align: center;
  vertical-align: middle;
  background-color: white;
  border: 1px solid gray;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sd_checks > input[type=checkbox] + label:active:before,
.sd_checks > input[type=checkbox]:checked + label:active:before {
  box-shadow: -2px 1px 1px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.sd_checks > input[type=checkbox]:checked + label:before {
  content: "✔";
  color: white;
  text-shadow: 0.5px 0.5px rgb(191, 222, 255);
  background-color: dodgerblue;
  border-color: grey;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset 0 -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
}

/* 커스텀 sd_checks */
.accent-text {
  color: rgb(29, 194, 180);
}

.map-title {
  font-size: 18px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 8px;
  color: #3f4b99;
}

.container-title {
  font-weight: bold;
  font-size: 2rem;
  padding-bottom: 16px;
  padding-left: 8px;
}

.program-slider.swiper-container {
  padding: 2rem 0.5rem;
  width: 100%;
}
.program-slider.swiper-container .not-searching {
  width: 100%;
  color: #666666;
  font-size: 1.25rem;
}
@media screen and (max-width: 576px) {
  .program-slider.swiper-container .not-searching {
    font-size: 1rem;
  }
}
.program-box {
  background-color: white;
  position: relative;
  border-radius: 0;
  transition: all 0.2s linear;
}
.program-box ._course {
  position: absolute;
  top: -1rem;
  left: 1.25rem;
  font-size: 12px;
  line-height: 1;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  background-color: rgb(72, 94, 208);
}
.program-box ._course:nth-child(2) {
  left: 6rem;
}
.program-box ._course._student {
  background-color: rgb(29, 194, 180);
}
.program-box ._course._employee {
  background-color: rgb(100.4047826087, 118.99, 215.2952173913);
}
.program-box ._period {
  font-size: 14px;
  display: block;
  color: rgb(72, 94, 208);
  margin: 1rem 0 0.25rem;
}
.program-box .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  min-height: 80px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  display: block;
}
.program-box .btn {
  border-radius: 0;
  font-size: 12px;
}
.program-box:hover {
  transform: translateY(-1rem);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 576px) {
  .program-row > div {
    max-width: 100%;
  }
}

.centers {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
}

.city-box:hover:before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: rgba(23, 162, 184, 0.14);
}

.main-title {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6rem;
  padding: 12px 0;
  line-height: 1;
  text-align: center;
  position: relative;
  color: rgb(34, 40, 67);
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.main-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background-color: black;
}
@media screen and (max-width: 576px) {
  .main-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
.main-container {
  min-height: calc(100vh - 360px);
  padding-top: 116px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-container {
    padding-top: 80px;
  }
}
@media screen and (max-width: 576px) {
  .main-container {
    min-height: calc(100vh - 396px);
    padding-top: 56px;
  }
}
.main-section {
  padding: 6rem 0;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media screen and (max-width: 992px) {
  .main-section {
    margin: 0;
    padding: 1rem 0;
  }
}
.main-section .container + .container {
  margin-top: 4rem;
}
.main-section .row {
  position: relative;
}
.main-section._news {
  background-image: url("../assets/images/pattern1.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-intro-list {
  display: flex;
}
.main-intro-list dt {
  width: 72px;
}
.main-intro-list dd {
  padding: 0.5rem 1rem;
}
.main-intro-list dd h3 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.main-intro-list dd p {
  font-size: 14px;
}
.main-intro-list + .main-intro-list {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .main-box {
    height: 240px;
    margin: 8px 0;
  }
  .main-box h3 {
    font-size: 1.5rem;
  }
  .main-box p {
    font-size: 1rem;
  }
}

.top-img {
  position: relative;
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top-img {
    height: 160px;
  }
}
.top-img-mypage {
  background-image: url("../assets/images/top/mypage.jpg");
}
.top-img-report {
  background-image: url("../assets/images/top/report.jpg");
}
.top-img-help {
  background-image: url("../assets/images/top/help.jpg");
}
.top-img-board {
  background-image: url("../assets/images/cluster/library.jpg");
}
.top-img-program {
  background-image: url("../assets/images/cluster/program.jpg");
}
.top-img-intro {
  background-image: url("../assets/images/cluster/jnu.jpg");
}
.top-img-sign {
  background-image: url("../assets/images/top/sign.png");
}
.top-img-untact {
  background-image: url("../assets/images/top/untact.png");
}
.top-img-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 0 6px black;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
@media screen and (max-width: 576px) {
  .top-img-title {
    font-size: 1.5rem;
  }
}

.row._block {
  display: block;
}

.contents-button {
  text-align: center;
  margin: 1rem 0 2rem;
}
.contents-cooperation {
  display: flex;
}
.contents-cooperation dt {
  margin-bottom: 2.5rem;
}
.contents-cooperation dt div {
  display: block;
  padding-top: 7rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s linear;
}
.contents-cooperation dt p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 2rem;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.contents-cooperation dt ._university {
  background-image: url("../assets/images/info/university.png");
}
.contents-cooperation dt ._government {
  background-image: url("../assets/images/info/government.png");
}
.contents-cooperation dt ._institution {
  background-image: url("../assets/images/info/institution.png");
}
.contents-cooperation dd {
  border-right: 1px solid #cccccc;
  padding: 0 1rem;
}
.contents-cooperation dd li {
  font-size: 1rem;
  line-height: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: bold;
  color: #444444;
  text-shadow: 0 0 4px white;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.contents-cooperation-item {
  flex: 1;
  text-align: center;
}
.contents-cooperation-item:last-child dd {
  border-right: none;
}
@media screen and (max-width: 576px) {
  .contents-cooperation {
    flex-direction: column;
  }
  .contents-cooperation dt {
    margin-bottom: 2rem;
  }
  .contents-cooperation dt div {
    padding-top: 5rem;
  }
  .contents-cooperation dd {
    border-right: none;
  }
  .contents-cooperation-item {
    margin-bottom: 2rem;
  }
}
.contents-news {
  display: flex;
  position: relative;
}
.contents-news-sub {
  flex: 1;
}
.contents-news-sub li {
  border-bottom: 1px solid rgba(29, 194, 180, 0.2);
  cursor: pointer;
  transition: all 0.2s linear;
}
.contents-news-sub li:hover {
  background-color: rgba(29, 194, 180, 0.1);
}
.contents-news-sub a {
  padding: 0.75rem 0.5rem;
  display: flex;
  color: #333333;
}
.contents-news-sub a:hover, .contents-news-sub a:active {
  color: #333333;
}
.contents-news-sub ._name {
  flex: 1;
  max-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contents-news-sub ._inserted {
  width: 90px;
  text-align: right;
}
.contents-news-sub:not(:empty) {
  border-bottom: 1px solid rgb(29, 194, 180);
}
.contents-news-main ._inserted {
  font-size: 1rem;
  color: #666666;
  display: inline-block;
  padding-top: 8px;
}
.contents-news-main ._title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 1rem);
  padding-bottom: 0.5rem;
  line-height: 1;
  display: block;
  cursor: pointer;
  transition: all 0.2s linear;
}
.contents-news-main ._title:hover {
  color: rgb(29, 194, 180);
}
.contents-news-main ._contents {
  font-size: 0.875rem;
  color: #666666;
  overflow: hidden;
  display: block;
  position: relative;
  height: 56px;
  line-height: 1rem;
  border-bottom: 2px solid rgb(29, 194, 180);
}
.contents-news-main-image {
  flex: 1;
  height: 320px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.contents-news-main-image img {
  height: 100%;
  width: 100%;
}
.contents-news-main-image .not-searching {
  background-image: url("../assets/images/index/library_background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.contents-news-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: white;
  margin-left: 1rem;
  position: relative;
}
.contents-news .not-searching {
  position: relative;
  height: 100%;
  color: #333333;
  font-size: 1rem;
  font-weight: bold;
  line-height: 320px;
  border: 1px solid rgb(238, 238, 238);
}
.contents-news .news-link {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #666666;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.contents-news .news-link:hover {
  color: rgb(22.3677130045, 149.6322869955, 138.8340807175);
}
.contents-news .news-link span {
  font-size: 1.375em;
  font-weight: normal;
  line-height: 1;
  margin-right: 4px;
}
@media screen and (max-width: 576px) {
  .contents-news {
    display: block;
  }
  .contents-news-main ._title {
    font-size: 1.25rem;
  }
  .contents-news-list {
    margin-left: 0;
  }
  .contents-news-main-image {
    height: 240px;
  }
}
.contents-board {
  padding: 1rem 2rem;
  flex: 1;
  width: 49%;
}
.contents-board-title {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 0 1.5rem;
  margin-bottom: 0.5rem;
}
.contents-board-title span {
  float: left;
}
.contents-board-title a {
  float: right;
  line-height: 1;
  padding-top: 12px;
}
.contents-board-title i {
  font-size: 1.5rem;
  color: rgb(72, 94, 208);
}
.contents-board:first-child {
  background-color: white;
}
.contents-board:first-child .contents-board-title {
  color: rgb(34, 40, 67);
  border-bottom: 1px solid rgb(34, 40, 67);
}
.contents-board:first-child a,
.contents-board:first-child span:not(._new) {
  color: rgb(34, 40, 67);
}
.contents-board:first-child .contents-list li:hover {
  background-color: rgba(34, 40, 67, 0.1);
}
.contents-board:first-child .contents-list:empty {
  text-align: center;
}
.contents-board:first-child .contents-list:empty::after {
  content: "등록된 게시글이 없습니다.";
  color: #666666;
}
.contents-board:last-child {
  margin-left: 1rem;
  background-color: rgb(34, 40, 67);
}
.contents-board:last-child .contents-board-title {
  border-bottom: 1px solid white;
  color: white;
}
.contents-board:last-child a,
.contents-board:last-child span {
  color: white;
}
.contents-board:last-child .contents-list li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.contents-board:last-child .contents-list:empty {
  text-align: center;
}
.contents-board:last-child .contents-list:empty::after {
  content: "등록된 온라인 강의가 없습니다.";
  color: #cccccc;
}
@media screen and (max-width: 992px) {
  .contents-board {
    flex: none;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
  }
  .contents-board:last-child {
    margin: 0;
  }
  .contents-board-title {
    font-size: 1.125rem;
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
.contents-list {
  margin-bottom: 1rem;
  min-height: 160px;
  padding-top: 8px;
}
.contents-list li {
  transition: all 0.2s linear;
  cursor: pointer;
  padding: 2px 8px;
}
.contents-list:empty {
  min-height: 160px;
}
.contents-list a {
  display: flex;
}
.contents-list span {
  font-size: 14px;
}
.contents-list ._name {
  flex: 1;
  max-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contents-list ._new {
  font-size: 12px;
}
.contents-list ._inserted,
.contents-list ._recruitDate {
  text-align: right;
  width: 90px;
}
.contents-list ._course {
  font-size: 0.875em;
  padding: 2px 6px;
  margin-right: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.48);
}
.contents-title {
  font-size: 1.875rem;
  padding: 0.5rem 0;
  margin-bottom: 3rem;
  font-weight: bold;
  text-align: center;
  color: rgb(34, 40, 67);
  position: relative;
  z-index: 1;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
@media screen and (max-width: 576px) {
  .contents-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
.contents-explanation {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #666666;
  letter-spacing: -1px;
  word-break: keep-all;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
@media screen and (max-width: 576px) {
  .contents-explanation {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.contents-promote {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 300px;
  background-image: url("../assets/images/info/business_pattern.jpg");
  position: relative;
}
.contents-promote-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  font-weight: bold;
  word-break: keep-all;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 6px rgb(22.3677130045, 149.6322869955, 138.8340807175);
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.contents-promote-text:before, .contents-promote-text:after {
  content: "//";
  position: absolute;
  opacity: 0.4;
  font-size: 1.5em;
}
.contents-promote-text:before {
  top: -1.5rem;
  left: -3rem;
}
.contents-promote-text:after {
  bottom: -1.5rem;
  right: -3rem;
}
@media screen and (max-width: 576px) {
  .contents-promote {
    padding-top: 240px;
  }
  .contents-promote-text {
    font-size: 1.5rem;
  }
}
.contents-subtitle {
  font-size: 1.125rem;
  padding: 0.5rem 0;
  margin: 1rem 0;
  font-weight: bold;
  border-bottom: 2px solid #f0f0f0;
}
.contents-subtitle:before {
  content: "▶";
  color: rgb(29, 194, 180);
  font-size: 1rem;
  margin-right: 0.5rem;
}
.contents-subtitle + .row {
  margin-bottom: 2rem;
}
.contents-wrap {
  margin: 5rem 0 6rem;
  min-height: 500px;
  width: 100%;
}
.contents-wrap._cooperation {
  padding-top: 3rem;
  background-color: rgb(244, 245, 248);
  margin-bottom: 0;
  background-image: url("../assets/images/info/cooperation_pattern.png");
  background-size: cover;
  background-position: center bottom;
}
@media screen and (max-width: 576px) {
  .contents-wrap {
    margin: 1rem 0;
    min-height: 360px;
  }
}
.contents-media {
  max-width: 768px;
  margin: 1rem auto 3rem;
}
.contents-media video {
  width: 100%;
}
.contents-menu {
  margin: 3rem 0;
}
.contents-menu ul {
  display: flex;
  flex-direction: row;
}
.contents-menu li {
  flex: 1;
  text-align: center;
}
.contents-menu li:first-child .contents-menu-item {
  border-left: 1px solid #eee;
}
.contents-menu-item {
  display: block;
  font-size: 1.125rem;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  position: relative;
  font-weight: bold;
  color: #666666;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.contents-menu-item:focus, .contents-menu-item:hover {
  color: white;
  background-color: rgb(100.4047826087, 118.99, 215.2952173913);
}
.contents-menu-item.active {
  color: white;
  background-color: rgb(72, 94, 208);
}
@media screen and (max-width: 576px) {
  .contents-menu {
    margin: 0.5rem 0;
  }
  .contents-menu-item {
    font-size: 14px;
  }
}
.contents-box {
  padding: 2rem 0;
  margin-bottom: 4rem;
  width: 100%;
}
.contents-box-greeting.contents-box {
  margin-bottom: 6rem;
}
.contents-box-greeting.contents-box .image img {
  width: 100%;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid rgb(230, 230, 230);
}
.contents-box-greeting.contents-box .last {
  text-align: right;
  margin-top: 4rem;
}
.contents-box-greeting.contents-box p {
  font-size: 20px;
}
.contents-box-greeting.contents-box p:not(.title) {
  letter-spacing: -0.5px;
  line-height: 30px;
}
.contents-box-greeting.contents-box .title {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333333;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.contents-box-greeting.contents-box .position {
  font-size: 1.25rem;
  letter-spacing: 0.5rem;
  vertical-align: top;
  margin-right: 0.5rem;
  font-weight: bold;
  color: #333333;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.contents-box-greeting.contents-box .sign {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "궁서", "궁서체", Roboto, Helvetica, Arial, sans-serif;
}
.contents-box p {
  margin-bottom: 1rem;
  font-size: 1rem;
  word-break: keep-all;
}
.contents-box p:last-child {
  margin-bottom: 0;
}
.contents-box em {
  color: rgb(29, 194, 180);
  font-weight: bold;
}
.contents-box .image img {
  width: 80%;
  margin: 0 auto;
  display: block;
}
.contents-box .image img._full {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contents-box .image img {
    width: 100%;
  }
}
.contents-box div[class^=col-md] {
  margin-bottom: 1rem;
}
.contents-description {
  color: #aaaaaa;
  font-size: 12px;
}
.contents-header {
  display: flex;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.contents-header .contents-title {
  flex: 1;
  text-align: left;
  margin-bottom: 0;
  font-size: 1.5rem;
}
.contents-header .contents-title + .btn {
  line-height: initial;
}
.contents-header .contents-select {
  width: 150px;
}
@media screen and (max-width: 576px) {
  .contents-header .contents-title {
    font-size: 1.25rem;
  }
}
.contents-table {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
}
.contents-table thead {
  text-align: center;
}
.contents-table thead tr {
  background-color: #f7f7f7;
  font-weight: bold;
}
.contents-table .wide {
  width: 100%;
}
.contents-table .wide > a {
  display: block;
  color: #333333;
  max-width: 700px;
  line-height: 18px;
  max-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contents-table .wide > a:active, .contents-table .wide > a:hover {
  color: #333333;
}
.contents-table .wide em {
  margin-right: 2px;
  font-weight: bold;
}
.contents-table .wide .course {
  font-size: 12px;
  color: white;
  padding: 1px 10px 2px;
  margin-right: 4px;
  font-weight: bold;
  border-radius: 10px;
}
.contents-table .wide .course.energy {
  background-color: #485ed0;
}
.contents-table .wide .course.city {
  background-color: #4a5f7b;
}
.contents-table .wide .course.multi {
  background-color: rgb(255, 185, 34);
  color: #222222;
}
.contents-table .wide .course.ict {
  background-color: rgb(34, 40, 67);
}
.contents-table .wide .course.life {
  background-color: #1dc2b4;
}
.contents-table tbody {
  text-align: center;
}
.contents-table tbody .wide {
  text-align: left;
  cursor: pointer;
}
.contents-table th,
.contents-table td {
  min-width: 80px;
  height: unset;
  padding: 1rem 0.5rem;
}
.contents-table td.td-small {
  padding: 0.5rem;
  line-height: 1;
}
.contents-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
}
.contents-table-wrap .contents-table {
  min-width: 768px;
}
.contents-table#programList .wide > a {
  max-width: 400px;
}
.contents-nav {
  text-align: right;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}
.contents-nav-list li {
  display: inline-block;
}
.contents-nav-list li:not(:last-child)::after {
  content: "\f105";
  vertical-align: middle;
  font-size: 1.25rem;
  margin: 0 4px 0 8px;
  font-family: FontAwesome, sans-serif !important;
}
.contents-nav-list a {
  font-size: 1rem;
  font-weight: bold;
  color: #333333;
  vertical-align: middle;
}
.contents-nav-list a:hover {
  color: #999;
}
.contents-nav-list i {
  font-size: 1.25em;
  color: rgb(72, 94, 208);
  vertical-align: inherit;
  margin-right: 6px;
}
@media screen and (max-width: 576px) {
  .contents-nav {
    margin-bottom: 0.5rem;
  }
  .contents-nav-list a {
    font-size: 14px;
  }
}

.bullet-list {
  margin-bottom: 1rem;
}
.bullet-list dt {
  font-size: 1rem;
}
.bullet-list dt:before {
  content: "▶";
  color: rgb(72, 94, 208);
  margin-right: 8px;
}
.bullet-list dd {
  font-size: 0.875rem;
  padding-left: 42px;
  position: relative;
  word-break: keep-all;
}
.bullet-list dd:before {
  content: "•";
  margin-left: -16px;
  position: absolute;
}
.bullet-list:last-child {
  margin-bottom: 0;
}
.bullet-item {
  margin-bottom: 0.5rem;
}
.bullet-item dt,
.bullet-item dd {
  font-size: 1rem;
  display: inline-block;
}
.bullet-item dt:before {
  content: "▶";
  color: rgb(72, 94, 208);
  margin-right: 8px;
}
.bullet-item:last-child {
  margin-bottom: 0;
}

#map {
  width: 100%;
  height: 500px;
}

.search-wrap {
  background-color: #f8f8f8;
  display: none;
}
.search-wrap label {
  font-weight: bold;
}
.search-title {
  font-size: 1.125rem;
  font-weight: bold;
}
.search-title:before {
  content: "";
  background: transparent url(../assets/images/list/detail.png) no-repeat center;
  height: 20px;
  width: 14px;
  vertical-align: top;
  margin-right: 8px;
  display: inline-block;
  background-size: contain;
}

.form-group label {
  margin-bottom: 0.5rem;
}

.nav-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.2s linear;
}
._scrolling .nav-header {
  box-shadow: 0 -1px 4px 0 black;
}
.nav-logo {
  display: inline-block;
  width: 220px;
  line-height: 80px;
}
@media screen and (max-width: 1200px) {
  .nav-logo {
    width: 200px;
  }
}
@media screen and (max-width: 576px) {
  .nav-logo {
    line-height: 56px;
    width: 180px;
  }
}
.nav-top {
  text-align: right;
}
.nav-top ul,
.nav-top li {
  line-height: 36px;
  display: inline-block;
}
.nav-top li {
  padding: 0 0.5rem;
}
.nav-top li a,
.nav-top li span {
  color: rgb(255, 255, 255);
  font-size: 14px;
  text-shadow: 0 0 0 #333333;
}
.nav-top li a:hover {
  color: rgb(29, 194, 180);
}
.nav-top-wrap {
  height: 36px;
  background-color: #222843;
  display: block !important;
}
@media screen and (max-width: 768px) {
  .nav-top-wrap {
    display: none !important;
  }
}
.nav-top-anchor {
  position: fixed;
  width: 48px;
  height: 48px;
  bottom: 3rem;
  right: 3rem;
  z-index: 999;
  background-color: white;
  font-size: 2.5rem;
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 2px;
  box-shadow: 0 0 6px 2px rgba(180, 180, 180, 0.2);
  opacity: 0;
}
.nav-top-anchor:active, .nav-top-anchor:focus, .nav-top-anchor:hover {
  background-color: #fafafa;
  color: #333333;
}
._scrolling .nav-top-anchor {
  animation: aEEAmdDz1YNG06nPizX5vWcxOLi6hdJr 0.2s ease-in both;
}
@keyframes aEEAmdDz1YNG06nPizX5vWcxOLi6hdJr {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.nav-menu {
  flex: 1;
  margin-left: 6rem;
  justify-content: center;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
@media screen and (max-width: 1200px) {
  .nav-menu {
    margin-left: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .nav-menu {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}
.nav-menu > li {
  position: relative;
  display: inline-block;
  line-height: 80px;
}
.nav-menu > li > a {
  /*display: inline-block;
  line-height: values.$nav-main;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: bold;
  color: values.$footer;
  transition: none;
  padding: 0 2rem;*/
  display: inline-block;
  line-height: 20px;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: bold;
  color: #222843;
  transition: none;
  padding: 20px 1.875rem;
  vertical-align: middle;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .nav-menu > li > a {
    padding: 0 1.75rem;
    font-size: 1rem;
  }
}
.nav-menu > li:hover {
  background: #1dc2b4;
  color: rgb(255, 255, 255);
}
.nav-menu > li:hover > a {
  color: rgb(255, 255, 255);
}
.nav-menu > li:hover .nav-menu-sub {
  display: block;
  animation: NqXufI0KRCQtfRRdyUlpJtSA5OyQz2mm 0.3s ease both;
}
@keyframes NqXufI0KRCQtfRRdyUlpJtSA5OyQz2mm {
  0% {
    opacity: 0.6;
    margin-top: -36px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
.nav-menu > li:hover .nav-menu-sub a {
  animation: Dxeyj0E7u76qsTMQSkEb5JkktlTFBAxC 0.3s ease both;
  display: block;
  color: rgb(255, 255, 255);
  word-break: keep-all;
  line-height: 1.1;
}
@keyframes Dxeyj0E7u76qsTMQSkEb5JkktlTFBAxC {
  from {
    padding: 0.5rem 1rem;
  }
  to {
    padding: 0.875rem 1rem;
  }
}
.nav-menu-wrap {
  display: flex;
  position: relative;
  flex-direction: column;
  height: 80px;
  background-color: white;
  border-bottom: 1px solid #eeeeee;
}
.nav-menu-wrap .row {
  width: 100%;
}
@media screen and (max-width: 576px) {
  .nav-menu-wrap {
    height: 56px;
  }
}
.nav-menu-dropdown {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0.5rem;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 2;
}
.nav-menu-dropdown.btn.nav-link {
  font-size: 2rem;
  border-radius: 0;
}
@media screen and (max-width: 576px) {
  .nav-menu-dropdown.btn.nav-link {
    font-size: 1rem;
    padding: unset;
  }
}
.nav-menu-dropdown._active + .nav-dropdown-wrap {
  display: block;
}
.nav-menu-dropdown._active + .nav-dropdown-wrap .nav-dropdown-menu {
  animation: Y5BZa6ZPfQ2Udsu5qEwoXSrfAYWU4NJN 0.3s ease both;
}
@keyframes Y5BZa6ZPfQ2Udsu5qEwoXSrfAYWU4NJN {
  to {
    left: 0;
  }
}
@media screen and (max-width: 576px) {
  .nav-menu-dropdown {
    line-height: 56px;
    width: 56px;
    height: 56px;
  }
}
.nav-menu-sub {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background: inherit;
  box-shadow: 0 4px 4px 0 rgba(66, 66, 66, 0.4);
  transition: all 0.2s linear;
}
.nav-menu-sub li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-menu-sub a {
  color: rgb(255, 255, 255);
  font-weight: bold;
  padding: 0.875rem 1rem;
  display: none;
  font-size: 1.125em;
}
.nav-menu-sub a:hover {
  background-color: rgb(94.0582959641, 230.9417040359, 219.3273542601);
  color: black;
}
@media screen and (max-width: 1200px) {
  .nav-menu-sub a {
    font-size: 1em;
  }
}
.nav-myinfo {
  height: 5rem;
  display: flex;
}
.nav-myinfo-image {
  width: 5rem;
  padding: 10px;
}
.nav-myinfo-id {
  flex: 1;
  padding: 2rem 8px 0 8px;
  font-weight: bold;
  line-height: 1;
}
.nav-myinfo .image-round {
  border-radius: 50%;
  overflow: hidden;
  background-color: white;
  border: 2px solid #cccccc;
  width: 100%;
  height: 100%;
  padding: 4px;
}
.nav-myinfo img {
  vertical-align: baseline;
}
.nav-dropdown {
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.nav-dropdown-wrap {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.nav-dropdown-menu {
  transition: all 0.2s linear;
  background-color: rgb(244, 245, 248);
  width: 280px;
  top: 0;
  left: -280px;
  bottom: 0;
  position: absolute;
}
.nav-dropdown-sub {
  display: none;
}
.nav-dropdown-sub a {
  display: block;
  padding: 12px;
  border-bottom: 1px solid rgb(230, 230, 230);
  font-weight: bold;
}
.nav-dropdown-sub a:hover, .nav-dropdown-sub a:active {
  color: rgb(72, 94, 208);
  background-color: white;
}
.nav-dropdown > li > a {
  display: block;
  font-size: 1rem;
  background-color: rgb(72, 94, 208);
  font-weight: bold;
  color: white;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-dropdown > li > a._active {
  background-color: rgb(51, 69, 159);
}
.nav-dropdown > li > a._active + ul {
  display: block;
}
.nav-login {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.nav-login .btn {
  margin: 0;
  border-radius: 0;
  line-height: 2rem;
}
.nav-university {
  display: flex;
  flex-direction: row;
}
.nav-university li + li {
  margin-left: 60px;
}
.nav-university a {
  vertical-align: middle;
}
.nav-university img {
  width: 100%;
}
@media (max-width: 768px) {
  .nav-university {
    flex-direction: column;
  }
  .nav-university li + li {
    margin-top: 8px;
    margin-left: 0;
  }
  .nav-university img {
    width: 200px;
  }
}

.image-section {
  height: 600px;
  background-image: url("../assets/images/index/main_top.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 576px) {
  .image-section {
    height: 180px;
  }
}
.image-text {
  padding-top: 12rem;
  text-shadow: 0 0 10px black;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.image-text em {
  font-size: 1.875rem;
  color: #affeff;
  line-height: 1;
}
.image-text p {
  font-size: 4rem;
  color: white;
  line-height: 1;
  margin-top: 8px;
}
@media screen and (max-width: 576px) {
  .image-text {
    padding-top: 3rem;
  }
  .image-text em {
    font-size: 1rem;
  }
  .image-text p {
    font-size: 1.5rem;
  }
}

.link-icons {
  margin-bottom: 4rem;
}
.link-icons ul {
  display: flex;
}
.link-icons li {
  flex: 1;
  text-align: center;
  margin-right: 1rem;
}
.link-icons li:last-child {
  margin-right: 0;
}
.link-icons a {
  display: block;
}
.link-icons a._mypage ._icon {
  background-image: url("../assets/images/index/links/mypage.png");
}
.link-icons a._apply ._icon {
  background-image: url("../assets/images/index/links/apply.png");
}
.link-icons a._print ._icon {
  background-image: url("../assets/images/index/links/print.png");
}
.link-icons a._applyprint ._icon {
  background-image: url("../assets/images/index/links/applyprint.png");
}
.link-icons a._report ._icon {
  background-image: url("../assets/images/index/links/report.png");
}
.link-icons a._satisfaction ._icon {
  background-image: url("../assets/images/index/links/satisfaction.png");
}
.link-icons a:hover span:not(._icon) {
  color: rgb(29, 194, 180);
}
.link-icons a:hover._mypage ._icon {
  background-image: url("../assets/images/index/links/mypage_hover.png");
}
.link-icons a:hover._apply ._icon {
  background-image: url("../assets/images/index/links/apply_hover.png");
}
.link-icons a:hover._print ._icon {
  background-image: url("../assets/images/index/links/print_hover.png");
}
.link-icons a:hover._applyprint ._icon {
  background-image: url("../assets/images/index/links/applyprint_hover.png");
}
.link-icons a:hover._report ._icon {
  background-image: url("../assets/images/index/links/report_hover.png");
}
.link-icons a:hover._satisfaction ._icon {
  background-image: url("../assets/images/index/links/satisfaction_hover.png");
}
.link-icons a:hover ._icon {
  transform: translateY(-10px);
}
.link-icons span:not(._icon) {
  color: #333333;
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1rem;
  white-space: pre-wrap;
  word-break: keep-all;
}
.link-icons ._icon {
  display: block;
  padding-top: 110px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s linear;
}
@media screen and (max-width: 576px) {
  .link-icons {
    margin-bottom: 0;
  }
  .link-icons ul {
    display: block;
    width: 100%;
  }
  .link-icons li {
    width: 49%;
    display: inline-block;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.link-content {
  display: flex;
  min-height: 220px;
  position: relative;
}
.link-content-title {
  width: 180px;
  position: relative;
  text-align: center;
  margin: 32px 0;
  padding: 8px 0;
  border-right: 1px solid #cccccc;
}
.link-content-title em {
  display: block;
  letter-spacing: -1.5px;
}
.link-content-title p {
  padding: 24px 0;
  margin-bottom: 16px;
  position: relative;
}
.link-content-title p:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 4px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #cccccc;
}
.link-content-title em,
.link-content-title p {
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1;
}
.link-content-title span {
  font-size: 1.25rem;
  font-weight: bold;
}
#linkLifeContent .link-content-title {
  color: rgb(36.3802690583, 222.3197309417, 206.5430493274);
}
#linkCityContent .link-content-title {
  color: rgb(104.1532994924, 129.9076142132, 164.2467005076);
}
#linkEnergyContent .link-content-title {
  color: rgb(100.4047826087, 118.99, 215.2952173913);
}
#linkIctContent .link-content-title {
  color: rgb(70.0534653465, 82.4158415842, 138.0465346535);
}
#linkMultiContent .link-content-title {
  color: rgb(255, 185, 34);
}
#linkMultiContent .link-content-title p {
  padding: 0 0 20px;
}
.link-content-items ul {
  padding: 4px 0;
}
.link-content-items li a:not(.not-searching) {
  display: flex;
  justify-content: center;
  padding: 2px 8px;
  cursor: pointer;
  transition: all 0.2s linear;
}
.link-content-items li a:not(.not-searching):hover {
  background-color: rgba(220, 220, 220, 0.4);
  color: #333333;
}
.link-content-items li a:not(.not-searching):hover ._new {
  background-color: rgb(248.0909090909, 128.0454545455, 100.4090909091);
}
.link-content-items span {
  font-size: 14px;
}
.link-content-items ._new {
  font-size: 12px;
}
.link-content-items ._name {
  flex: 1;
  max-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.link-content-items ._recruitDate {
  color: #999999;
  width: 90px;
  text-align: right;
}
.link-content-items:empty::after {
  content: "등록된 온라인 강의가 없습니다.";
  color: #666666;
}
.link-content-list {
  flex: 1;
  padding: 36px 48px;
  width: calc(100% - 180px);
}
@media screen and (max-width: 1200px) {
  .link-content-title {
    width: 120px;
  }
  .link-content-title p {
    font-size: 1.25rem;
  }
  .link-content-title span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 992px) {
  .link-content-title {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .link-content-list {
    padding: 1rem;
  }
}
.link-section {
  padding-bottom: 7rem;
  background-color: rgb(244, 245, 248);
}
.link-section .container {
  position: relative;
}
@media screen and (max-width: 576px) {
  .link-section {
    padding-top: 1rem;
    padding-bottom: 0;
  }
}
.link-tab {
  position: absolute;
  top: -110px;
  z-index: 999;
  display: flex;
  width: 100%;
}
.link-tab button {
  padding: 0;
  border: 0;
  border-radius: 0;
}
.link-tab-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 36%;
}
.link-tab-content {
  position: relative;
  background-color: white;
  width: 64%;
}
.link-tab-content small {
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .link-tab-content {
    box-shadow: -1px 0 white;
  }
}
@media screen and (max-width: 576px) {
  .link-tab {
    position: unset;
    display: block;
  }
  .link-tab-list {
    width: 100%;
  }
  .link-tab-content {
    width: 100%;
  }
}
.link-boxes {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
}
.link-boxes .link-box {
  flex-basis: 50%;
  line-height: 0;
}
.link-box._last {
  width: 20%;
  height: 100%;
}
.link-box._last button {
  height: 100%;
}
.link-box small {
  font-size: 0.875em;
  word-break: keep-all;
}
.link-box button {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  width: 100%;
  height: 110px;
  line-height: 1;
  color: white;
  font-weight: bold;
  transition: all 0.2s linear;
}
.link-box button ._text {
  display: block;
}
.link-box button ._icon {
  display: none;
  margin: auto;
  height: 60%;
}
.link-box button ._icon.fa {
  height: unset;
  font-size: 2.5rem;
}
.link-box button._active ._text {
  display: none;
}
.link-box button._active ._icon {
  display: block;
}
.link-box button._active::before, .link-box button._active::after {
  content: "";
  width: 30%;
  height: 24px;
  position: absolute;
  animation: SC8hm3RtZxYcucToN1568z62AOiIAU7p 0.2s ease-in-out;
}
@keyframes SC8hm3RtZxYcucToN1568z62AOiIAU7p {
  from {
    opacity: 0;
    width: 0;
    height: 0;
  }
  to {
    opacity: 0.6;
    width: 30%;
    height: 24px;
  }
}
.link-box button._active::before {
  border-left: 1px solid white;
  border-top: 1px solid white;
  top: 8px;
  left: 8px;
}
.link-box button._active::after {
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  bottom: 8px;
  right: 8px;
}
@media screen and (max-width: 1200px) {
  .link-boxes {
    width: 100%;
    height: 75%;
  }
  .link-boxes .link-box {
    flex-basis: 50%;
    line-height: 0;
  }
  .link-box._last {
    width: 100%;
    height: 25%;
  }
  .link-box button {
    font-size: 1.25rem;
    height: 82.5px;
  }
  .link-box button ._icon {
    height: 50%;
  }
  .link-box button ._icon.fa {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .link-box._last {
    height: 60px;
  }
  .link-box button {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 1.25rem;
  }
}
.link-button {
  height: 3rem;
  width: 3rem;
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 1;
  font-size: 2rem;
}
@media screen and (max-width: 576px) {
  .link-button {
    display: none;
  }
}

.link-all {
  background-color: rgb(248, 249, 250);
}
.link-all:hover {
  background-color: rgb(227.175, 231.15, 235.125);
}
.link-multi {
  background-color: rgb(255, 185, 34);
}
.link-multi:hover {
  background-color: rgb(255, 196.3076923077, 69.7);
}
.link-ict {
  background-color: rgb(34, 40, 67);
}
.link-ict:hover {
  background-color: rgb(70.0534653465, 82.4158415842, 138.0465346535);
}
.link-life {
  background-color: #1dc2b4;
}
.link-life:hover {
  background-color: rgb(36.3802690583, 222.3197309417, 206.5430493274);
}
.link-energy {
  background-color: #485ed0;
}
.link-energy:hover {
  background-color: rgb(100.4047826087, 118.99, 215.2952173913);
}
.link-city {
  background-color: #4a5f7b;
}
.link-city:hover {
  background-color: rgb(104.1532994924, 129.9076142132, 164.2467005076);
}

.university-section {
  margin: 0;
  padding: 0.5rem 0;
  background-image: url("../assets/images/index/university_background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.university-section .container {
  position: relative;
}
.university-slider {
  position: relative;
}
.university-box {
  height: 60px;
  line-height: 60px;
  padding: 0 1rem;
  text-align: center;
  position: relative;
}
.university-box a {
  display: inline-block;
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.university-box._gwangju img {
  max-width: 70%;
}
.university-box._dongsin img, .university-box._chonnam img {
  max-width: 95%;
}
.university-box._honam img, .university-box._chosun img, .university-box._sunchoen img {
  max-width: 90%;
}
@media screen and (max-width: 576px) {
  .university-box img {
    height: 40px;
  }
}

div.swiper-button-prev, div.swiper-button-next {
  transition: all 0.2s linear;
}
div.swiper-program-prev {
  left: -5rem;
}
div.swiper-program-prev:after {
  margin-right: 4px;
  content: "\f104";
}
div.swiper-program-next {
  right: -5rem;
}
div.swiper-program-next:after {
  margin-left: 4px;
  content: "\f105";
}
div.swiper-program-next, div.swiper-program-prev {
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: 0;
  color: rgb(72, 94, 208);
  border-radius: 36px;
  transform: translateY(-50%);
}
div.swiper-program-next:hover, div.swiper-program-prev:hover {
  color: rgb(100.4047826087, 118.99, 215.2952173913);
  background-color: rgba(72, 94, 208, 0.1);
}
div.swiper-program-next:after, div.swiper-program-prev:after {
  line-height: 1;
  font-size: 36px;
  font-weight: bold;
  font-family: FontAwesome, sans-serif !important;
}
div.swiper-university-prev {
  left: -5rem;
}
div.swiper-university-prev:after {
  margin-right: 4px;
  content: "\f104";
}
div.swiper-university-next {
  right: -5rem;
}
div.swiper-university-next:after {
  margin-left: 4px;
  content: "\f105";
}
div.swiper-university-next, div.swiper-university-prev {
  top: 6px;
  width: 48px;
  height: 48px;
  margin-top: 0;
  border-radius: 24px;
  border: 1px solid white;
  color: white;
}
div.swiper-university-next:hover, div.swiper-university-prev:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
div.swiper-university-next:after, div.swiper-university-prev:after {
  line-height: 1;
  font-size: 24px;
  font-weight: bold;
  font-family: FontAwesome, sans-serif !important;
}

@media screen and (max-width: 992px) {
  div.education-text {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  div.education-text {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 2rem;
    padding-top: 4rem;
  }
}

.job-box {
  height: 140px;
  width: 50%;
  background-color: white;
  position: relative;
}
.job-box a {
  padding: 2rem;
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.job-box img {
  height: inherit;
  width: auto;
}
.job-box:first-child, .job-box:nth-child(2) {
  border-bottom: 2px dashed #cccccc;
}
.job-box:first-child, .job-box:nth-child(3) {
  border-right: 2px dashed #cccccc;
}

.not-searching {
  height: 120px;
  line-height: 120px;
  font-size: 14px;
  color: #aaaaaa;
  text-align: center;
}

.login-wrap {
  max-width: 480px;
  margin: 10% auto;
  background-color: #fafafa;
}

.__hidden {
  visibility: hidden;
}

.__visible {
  visibility: visible;
}

.table-responsive-sm {
  overflow-x: auto;
}

._number,
._phone,
._fax,
._templateDate,
._scheduleDate,
._recruitDate,
._inserted {
  letter-spacing: -0.5px;
}

.modal .__title {
  font-weight: bold;
  font-size: 1.5rem;
  color: #333333;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
.modal .__content {
  color: black;
  font-size: 0.875rem;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  line-height: 1.5;
}
.modal[open].__alert, .modal[open].__confirm {
  display: block;
}
.modal .btn.close:focus {
  opacity: 1;
  color: #333333;
}

dl i {
  padding: 0 6px 0 4px;
}

._hide {
  display: none !important;
  visibility: hidden !important;
}

.flex-left {
  flex: 1;
  justify-content: flex-start;
  display: flex;
}

.flex-right {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.course-complete-list {
  margin-top: 1rem;
  color: #E91E63;
}
.course-complete-list p {
  font-size: 12px;
  font-weight: bold;
}
.course-complete-list ul {
  padding-left: 1rem;
}
.course-complete-list li {
  font-size: 12px;
}
.course-complete-list li::before {
  content: "-";
  margin-right: 0.5rem;
}
.course-boxes {
  display: flex;
  flex-flow: row wrap;
  overflow: hidden;
}
.course-box {
  flex: 1;
  margin-right: 1rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.course-box:last-child {
  margin-right: 0;
}
.course-box h3 {
  font-size: 1.75rem;
  padding: 0.5rem;
}
.course-box p {
  padding: 0.5rem;
  font-size: 0.875rem;
  white-space: pre-wrap;
}
.course-box ._image {
  height: 360px;
  background-repeat: no-repeat;
  background-size: cover;
}
.course-box ._image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.course-box ._wrap {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  transform: translateY(-30%);
}
.course-box-front {
  z-index: 1;
}
.course-box:hover .course-box-back {
  animation: rS6jsP16twgtWGSmQQQB98weExn66mfi 0.2s ease-in both;
}
@keyframes rS6jsP16twgtWGSmQQQB98weExn66mfi {
  from {
    opacity: 0.4;
    transform: translateY(-25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.course-box-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  transition: all 0.2s linear;
  transform: translateY(-100%);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}
.course-box-back h3, .course-box-back p {
  color: white;
  text-shadow: 0 0 4px #aaaaaa;
}
.course-box._ict .course-box-front h3 {
  color: rgb(34, 40, 67);
}
.course-box._ict .course-box-front ._image {
  background-image: url("../assets/images/info/ict_front.jpg");
}
.course-box._ict .course-box-front ._image:before {
  background-color: rgb(70.0534653465, 82.4158415842, 138.0465346535);
}
.course-box._ict .course-box-back {
  background-color: rgb(34, 40, 67);
  background-image: url("../assets/images/info/ict_back.png");
}
.course-box._energy .course-box-front h3 {
  color: #485ed0;
}
.course-box._energy .course-box-front ._image {
  background-image: url("../assets/images/info/energy_front.jpg");
}
.course-box._energy .course-box-front ._image:before {
  background-color: rgb(100.4047826087, 118.99, 215.2952173913);
}
.course-box._energy .course-box-back {
  background-color: #485ed0;
  background-image: url("../assets/images/info/energy_back.png");
}
.course-box._life .course-box-front h3 {
  color: #1dc2b4;
}
.course-box._life .course-box-front ._image {
  background-image: url("../assets/images/info/life_front.jpg");
}
.course-box._life .course-box-front ._image:before {
  background-color: rgb(36.3802690583, 222.3197309417, 206.5430493274);
}
.course-box._life .course-box-back {
  background-color: #1ebeb0;
  background-image: url("../assets/images/info/life_back.png");
}
.course-box._city .course-box-front h3 {
  color: #4a5f7b;
}
.course-box._city .course-box-front ._image {
  background-image: url("../assets/images/info/city_front.jpg");
}
.course-box._city .course-box-front ._image:before {
  background-color: rgb(104.1532994924, 129.9076142132, 164.2467005076);
}
.course-box._city .course-box-back {
  background-color: #4a5f7b;
  background-image: url("../assets/images/info/city_back.png");
}
@media screen and (max-width: 1200px) {
  .course-box {
    flex: none;
    width: calc(50% - 0.5rem);
  }
  .course-box:nth-child(2n) {
    margin-right: 0;
  }
  .course-box ._image {
    height: 280px;
  }
}
.course-tap-list ul {
  display: flex;
}
.course-tap-list li {
  flex: 1;
}
.course-tap-list li:last-child a {
  border-right: 1px solid #cccccc;
}
.course-tap-list li .course-item-all:hover {
  box-shadow: inset 0 4px 0 0 #cccccc;
}
.course-tap-list li .course-item-all._active {
  box-shadow: inset 0 6px 0 0 #aaaaaa;
}
.course-tap-list li .course-item-multi:hover {
  box-shadow: inset 0 4px 0 0 rgb(255, 196.3076923077, 69.7);
}
.course-tap-list li .course-item-multi._active {
  box-shadow: inset 0 6px 0 0 rgb(255, 185, 34);
}
.course-tap-list li .course-item-ict:hover {
  box-shadow: inset 0 4px 0 0 rgb(70.0534653465, 82.4158415842, 138.0465346535);
}
.course-tap-list li .course-item-ict._active {
  box-shadow: inset 0 6px 0 0 rgb(34, 40, 67);
}
.course-tap-list li .course-item-life:hover {
  box-shadow: inset 0 4px 0 0 rgb(36.3802690583, 222.3197309417, 206.5430493274);
}
.course-tap-list li .course-item-life._active {
  box-shadow: inset 0 6px 0 0 #1dc2b4;
}
.course-tap-list li .course-item-energy:hover {
  box-shadow: inset 0 4px 0 0 rgb(100.4047826087, 118.99, 215.2952173913);
}
.course-tap-list li .course-item-energy._active {
  box-shadow: inset 0 6px 0 0 #485ed0;
}
.course-tap-list li .course-item-city:hover {
  box-shadow: inset 0 4px 0 0 rgb(104.1532994924, 129.9076142132, 164.2467005076);
}
.course-tap-list li .course-item-city._active {
  box-shadow: inset 0 6px 0 0 #4a5f7b;
}
.course-tap-list a {
  display: block;
  position: relative;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  padding: 1.25rem 0;
  line-height: 1;
  border: 1px solid #cccccc;
  color: #666666;
  border-right: 0;
  font-weight: bold;
  transition: all 0.2s linear;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  background-color: #eee;
}
.course-tap-list a._active {
  border-bottom: none;
  background-color: #ffffff;
  color: #333333;
}
.course-tap-list a:hover {
  background-color: #ffffff;
}
@media screen and (max-width: 576px) {
  .course-tap-list a {
    font-size: 12px;
  }
}

.help-list {
  margin-bottom: 4rem;
}
.help-list dt {
  max-width: 768px;
  margin: 2rem auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .help-list dt {
    max-width: 576px;
  }
}
.help-list dd {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
}
.help-list dd ._warn {
  color: #e53935;
  font-size: 13px;
  display: block;
}
.help-list dd ._primary {
  color: rgb(72, 94, 208);
}
.help-list dd ._primary:hover {
  color: rgb(51, 69, 159);
}

._field {
  background-color: rgb(244, 245, 248);
}

a.files {
  background-color: cornflowerblue;
  padding: 5px 10px;
  border-radius: 5px;
  color: white !important;
  margin: 50px 0 !important;
  line-height: 1;
}
a.files:hover {
  cursor: pointer;
  background-color: #2e9ad0;
}

#impress-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 60%;
  background-color: white;
  overflow: hidden;
}
#impress-dialog table {
  width: 100%;
}
#impress-dialog table a {
  color: #333333;
}
#impress-dialog table a:active, #impress-dialog table a:hover, #impress-dialog table a:focus {
  color: #333333;
}
#impress-dialog table thead th {
  text-align: center;
}
#impress-dialog table tbody td {
  text-align: center;
}
#impress-dialog table tbody td.reviewName {
  font-weight: bold;
  text-align: left;
  max-width: 260px;
  min-width: 250px;
  cursor: pointer;
  max-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/** 배너 스타일 */
.banner-section .banner-slider {
  width: 335px;
  position: absolute;
}
.banner-section .banner-slider .swiper-banner-next, .banner-section .banner-slider .swiper-banner-prev {
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 0;
  z-index: 99;
  background-color: #222843;
  border: 1px solid #999999;
  text-align: center;
  cursor: pointer;
}
.banner-section .banner-slider .swiper-banner-next i, .banner-section .banner-slider .swiper-banner-prev i {
  font-size: 18px;
  color: white;
}
.banner-section .banner-slider .swiper-banner-next:hover, .banner-section .banner-slider .swiper-banner-prev:hover {
  background-color: #222843;
}
.banner-section .banner-slider .swiper-banner-next {
  left: 24px;
  border-left: none;
}
.banner-section .banner-slider .swiper-banner-next i {
  padding-left: 4px;
}
.banner-section .banner-slider .swiper-banner-prev {
  left: 0;
}
.banner-section .banner-slider .swiper-banner-prev i {
  padding-right: 4px;
}
.banner-section .banner-container {
  top: -90px;
  right: -20px;
  position: absolute;
}
.banner-section .swiper-slide {
  border-right: 1px solid #cccccc;
}

.division-tap-list ul {
  display: flex;
}
.division-tap-list li {
  flex: 1;
}
.division-tap-list li:last-child a {
  border-right: 1px solid #cccccc;
}
.division-tap-list li .course-item-all:hover {
  box-shadow: inset 0 4px 0 0 #cccccc;
}
.division-tap-list li .course-item-all._active {
  box-shadow: inset 0 6px 0 0 #aaaaaa;
}
.division-tap-list li .course-item-multi:hover {
  box-shadow: inset 0 4px 0 0 rgb(255, 196.3076923077, 69.7);
}
.division-tap-list li .course-item-multi._active {
  box-shadow: inset 0 6px 0 0 rgb(255, 185, 34);
}
.division-tap-list li .course-item-ict:hover {
  box-shadow: inset 0 4px 0 0 rgb(70.0534653465, 82.4158415842, 138.0465346535);
}
.division-tap-list li .course-item-ict._active {
  box-shadow: inset 0 6px 0 0 rgb(34, 40, 67);
}
.division-tap-list li .course-item-life:hover {
  box-shadow: inset 0 4px 0 0 rgb(36.3802690583, 222.3197309417, 206.5430493274);
}
.division-tap-list li .course-item-life._active {
  box-shadow: inset 0 6px 0 0 #1dc2b4;
}
.division-tap-list li .course-item-energy:hover {
  box-shadow: inset 0 4px 0 0 rgb(100.4047826087, 118.99, 215.2952173913);
}
.division-tap-list li .course-item-energy._active {
  box-shadow: inset 0 6px 0 0 #485ed0;
}
.division-tap-list li .course-item-city:hover {
  box-shadow: inset 0 4px 0 0 rgb(104.1532994924, 129.9076142132, 164.2467005076);
}
.division-tap-list li .course-item-city._active {
  box-shadow: inset 0 6px 0 0 #4a5f7b;
}
.division-tap-list a {
  display: block;
  position: relative;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  padding: 1.25rem 0;
  line-height: 1;
  border: 1px solid #cccccc;
  color: #666666;
  border-right: 0;
  font-weight: bold;
  transition: all 0.2s linear;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  background-color: #eeeeee;
}
.division-tap-list a._active {
  border-bottom: none;
  background-color: #ffffff;
  color: #333333;
}
.division-tap-list a:hover {
  background-color: #ffffff;
}
@media screen and (max-width: 576px) {
  .division-tap-list a {
    font-size: 12px;
  }
}

#quickmenus {
  position: fixed;
  top: 200px;
  z-index: 999;
  left: 0;
  right: 0;
  font-family: "Inter", "HangultuelGothic", "nanumsquareotfregular", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
#quickmenus h6 {
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 8px 0 6px;
  background: linear-gradient(to top, #17a2b8, #1dc2b4);
  position: relative;
  text-shadow: 0 0 white;
}
#quickmenus h6::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #17a2b8;
}
#quickmenus ._top {
  color: white;
  background: linear-gradient(to bottom, #17a2b8, #1dc2b4);
  font-size: 1.5rem;
  text-align: center;
  display: block;
  position: relative;
}
#quickmenus ._top i {
  vertical-align: text-top;
}
#quickmenus ._top::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #17a2b8;
}
#quickmenus ._top:active, #quickmenus ._top:focus {
  color: white;
  background: linear-gradient(to bottom, #17a2b8, #1dc2b4);
}
#quickmenus ._top:hover {
  color: white;
  background: linear-gradient(to bottom, rgb(20.1666666667, 142.0434782609, 161.3333333333), rgb(25.6838565022, 171.8161434978, 159.4170403587));
}
#quickmenus ._top:hover::before {
  border-bottom-color: rgb(20.1666666667, 142.0434782609, 161.3333333333);
}
#quickmenus ul {
  flex-direction: row;
  flex-flow: column;
  flex-wrap: wrap;
  justify-content: center;
  width: 70px;
  box-shadow: 0 0 6px 2px rgba(180, 180, 180, 0.2);
  position: absolute;
  right: -84px;
  border-radius: 2px;
}
#quickmenus li {
  transition: all 0.2s linear;
  border: 1px solid #dddddd;
  background: white;
}
#quickmenus li:not(:last-child) {
  border-bottom: 0;
}
#quickmenus li:first-child {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  border-color: rgb(29, 194, 180);
}
#quickmenus li:nth-child(2) a {
  padding-top: 6px;
}
#quickmenus li:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-color: rgb(29, 194, 180);
}
#quickmenus li:nth-last-child(2) a {
  padding-bottom: 6px;
}
#quickmenus figcaption {
  text-align: center;
  word-break: keep-all;
  line-height: 1;
  font-size: 12px;
  padding: 4px 4px 6px;
  font-weight: bold;
}
#quickmenus img {
  padding: 10px 14px 6px;
}
#quickmenus a {
  color: #222843;
  display: block;
  text-shadow: 0 0 #222843;
  transition: all 0.1s ease-in;
}
#quickmenus a:active, #quickmenus a:focus, #quickmenus a:hover {
  background: #f5f5f5;
  color: #222843;
}

._lock {
  padding: 1px 5px;
}
._lock .icon::before {
  content: "\f023";
  font: normal normal normal 13px/1 FontAwesome;
  text-rendering: auto;
}

.contents-waiting {
  padding: 4em 0;
  text-align: center;
}
.contents-waiting h1 {
  font-size: 3em;
  font-weight: bold;
}
/*# sourceMappingURL=global.css.map */
