/* --------- */
/* 공통 Start*/
.pc-only {
  display: block;
}

.mb-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .mb-only {
    display: block;
  }
}

input[type='checkbox'] {
  width: 20px;
  height: 20px;
}

input::placeholder {
  color: #a9a9a9 !important;
}

input {
  color: #000000 !important;
}

.breadcrumb-section {
  margin-bottom: 50px;
}

/* 체크박스 */
.checkbox-group {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  min-height: 50px;
  flex-wrap: wrap;
}

.checkbox-item {
  display: flex;
  align-items: center;
  width: calc(50% - 10px);
}

.checkbox-item input[type='checkbox'] {
  width: 20px;
  height: 20px;
}

.checkbox-item label {
  font-size: 1.2em;
  margin-left: 5px;
}

@media (min-width: 769px) {
  .checkbox-item {
    width: auto;
  }
}

.sound_only {
  display: none;
}

/* 모바일 메뉴 */

.dgf-nav-mobile {
  position: fixed;
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 1000;
}

.dgf-nav-icon {
  width: 30px;
  height: 3px;
  background-color: #333;
  display: block;
  margin: 5px 0;
}

.dgf-menu-mobile-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transform: translateX(-100%);
  transition: transform 0s ease;
  z-index: 99999;
}

.dgf-menu-mobile-popup.active {
  transform: translateX(0);
}

.dgf-widget-filter {
  background-color: #fff;
  width: 250px;
  height: 100%;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.dgf-mobile-nav {
  flex-grow: 1;
  overflow-y: auto;
  margin-top: 5px;
}

.dgf-widget-filter__footer {
  border-top: 1px solid #ddd;
  display: flex;
}

.dgf-widget-filter__footer a {
  flex: 1;
  text-align: center;
  padding: 15px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  border-right: 1px solid #ddd;
}

.dgf-widget-filter__footer a:last-child {
  border-right: none;
}

.dgf-menu-mobile-popup.active .dgf-widget-filter {
  transform: translateX(0);
}

.dgf-mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dgf-mobile-nav li {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.dgf-mobile-nav a {
  text-decoration: none;
  color: #333;
}

/* 모바일 메뉴 서브메뉴 토글 */
.dgf-mobile-nav .dgf-submenu,
.dgf-mobile-nav .dgf-nav-submenu {
  display: none;
  padding: 0;
  margin: 10px 0 0 0;
  list-style: none;
}

.dgf-mobile-nav li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 1단계 서브메뉴 */
.dgf-mobile-nav .dgf-submenu li {
  padding: 0;
  border-bottom: 1px solid #f0f0f0;
  margin-top: 2px;
}

.dgf-mobile-nav .dgf-submenu li > a {
  padding: 10px;
  font-size: 14px;
}

/* 2단계 서브메뉴 */
.dgf-mobile-nav .dgf-nav-submenu li {
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
}

.dgf-mobile-nav .dgf-nav-submenu li a {
  padding: 8px 15px 8px 15px;
  font-size: 13px;
}

.dgf-mobile-nav .dgf-submenu li:last-child,
.dgf-mobile-nav .dgf-nav-submenu li:last-child {
  border-bottom: none;
}

.dgf-mobile-nav li.active > a {
  color: #14a077;
  font-weight: bold;
}

.dgf-mobile-nav li.active > a .icon-keyboard_arrow_right {
  transform: rotate(90deg);
}

.dgf-mobile-nav li.active > .dgf-submenu,
.dgf-mobile-nav li.active > .dgf-nav-submenu {
  display: block;
}

.dgf-modal-menu__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.dgf-close-button {
  position: absolute;
  top: 0;
  right: -35px;
  background: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px 10px !important;
  /* 메뉴보다 위에 표시되도록 */
}

.dgf-close-button:focus {
  outline: none;
}

/* 공통 End*/
/* ------ */

/* 정보형 UI */

.list-infomation {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 10px;
  list-style: none;
  padding: 0;
}

.list-infomation li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 calc(33.33% - 20px);
  border-bottom: 1px solid #c0c0c0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.list-infomation .title {
  color: #555555;
  margin-right: 10px;
}

.list-infomation .detail {
  color: #000000;
  font-weight: bold;
}

/* 모바일 메인 */

/* 기본 스타일 숨기기 */

.mobile-main-menu {
  display: none;
  margin: 0 15px;
  border: 1px solid #e8e8e8;
}

@media (max-width: 991px) {
  .mobile-main-menu {
    margin-top: 50px;
    display: block;
  }
}

@media (max-width: 768px) {
  .mobile-main-menu {
    margin-top: 100px;
    display: block;
  }
}

@media (max-width: 551px) {
  .mobile-main-menu {
    margin-top: 20px;
    display: block;
  }
}

.mobile-main-menu ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-main-menu li {
  width: 33.33%;
  /* 가로 3줄 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
  padding: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.mobile-main-menu li:hover {
  background-color: #14a077;
  color: #ffffff;
  border-color: #14a077;
}

.mobile-main-menu img {
  margin-bottom: 5px;
  /* 이미지와 텍스트 사이 간격 */
  max-width: 70px;
}

/* 아이콘 */

.icon-custom-print {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M128 0C92.7 0 64 28.7 64 64l0 96 64 0 0-96 226.7 0L384 93.3l0 66.7 64 0 0-66.7c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0L128 0zM384 352l0 32 0 64-256 0 0-64 0-16 0-16 256 0zm64 32l32 0c17.7 0 32-14.3 32-32l0-96c0-35.3-28.7-64-64-64L64 192c-35.3 0-64 28.7-64 64l0 96c0 17.7 14.3 32 32 32l32 0 0 64c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-64zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>')
    no-repeat center center;
  background-size: contain;
}

.icon-custom-info {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/></svg>')
    no-repeat center center;
  background-size: contain;
}

/* 폰트 */

.font-color-point {
  color: #14a077 !important;
}

.font-color-warning {
  color: orange !important;
}

.font-color-gray {
  color: gray !important;
}

.font-color-midgray {
  color: #b0b0b0 !important;
}

.font-color-lightgray {
  color: lightgray !important;
}

.font-color-white {
  color: white !important;
}

.font-size-mini {
  font-size: 11px !important;
}

.font-size-sm {
  font-size: 12px !important;
}

.font-size-md {
  font-size: 16px !important;
}

.font-size-lg {
  font-size: 20px !important;
}

.font-size-xlg {
  font-size: 30px !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: 900 !important;
}

/* 탭메뉴 모바일 가로스크롤 */

@media (max-width: 768px) {
  .tf-container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .job-article.single-job .menu-tab {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .job-article.single-job .menu-tab::-webkit-scrollbar {
    display: none;
  }

  .job-article.single-job .menu-tab li {
    flex-shrink: 0;
  }
}

/* 버튼 */

.btn-mini {
  padding: 3px 8px;
  background: #f5f5f5;
  border-radius: 52px;
  font-size: 12px;
  line-height: 16px;
  color: #121212;
  font-weight: 500;
  align-items: center;
  justify-content: center;
}

.btn-sm {
  padding: 2px 7px;
  background: #ffffff;
  border: 1px solid #14a077;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: #14a077;
  display: inline-block;
  box-sizing: border-box;
}

.btn-sm:hover {
  background: #14a077;
  color: #fff;
}

.btn-sm-p {
  padding: 2px 7px;
  background: #14a077;
  border: 1px solid #14a077;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: #ffffff;
  display: inline-block;
  box-sizing: border-box;
}

.btn-sm-p:hover {
  background: #ffffff;
  color: #14a077;
}

.btn-yn-y {
  padding: 2px 7px;
  background: #3366cc;
  border: 1px solid #3366cc;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: #ffffff;
  display: inline-block;
  box-sizing: border-box;
}

.btn-yn-y:hover {
  background: #ffffff;
  color: #3366cc;
}

.btn-yn-n {
  padding: 2px 7px;
  background: #ffffff;
  border: 1px solid #909090;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: #909090;
  display: inline-block;
  box-sizing: border-box;
}

.job-button button {
  margin-bottom: 5px;
}

.btn-md-border {
  padding: 5px 10px;
  background: transparent;
  border: 1px solid #14a077;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  color: #404040;
  line-height: 26px;
}

.btn-md-border:hover {
  background: #14a077;
  color: #fff;
}

/* 기본 테이블 */
.table-default {
  border-top: 1px #d0d0d0 solid;
  border-left: 1px #d0d0d0 solid;
  width: 100%;
  white-space: nowrap;
}

.table-default th {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-bottom: 1px #d0d0d0 solid;
  border-right: 1px #d0d0d0 solid;
  width: 100px;
  text-align: center;
  vertical-align: middle;
}

.table-default td {
  padding: 10px 20px;
  border-bottom: 1px #d0d0d0 solid;
  border-right: 1px #d0d0d0 solid;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .table-default {
    display: block;
    overflow-x: auto;
  }

  .table-default::after {
    content: '우측으로 스크롤 하세요';
    display: block;
    text-align: center;
    padding: 3px 5px;
    color: gray;
    font-size: 12px;
  }
}

.table-small {
  border-top: 1px #dfdfdf solid;
  border-left: 1px #dfdfdf solid;
  width: 100%;
}

.table-small th {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-bottom: 1px #dfdfdf solid;
  border-right: 1px #dfdfdf solid;
  width: 150px;
  text-align: center;
  vertical-align: middle;
}

.table-small td {
  padding: 10px 20px;
  border-bottom: 1px #dfdfdf solid;
  border-right: 1px #dfdfdf solid;
  vertical-align: middle;
  text-align: center;
}

/* job 테이블 */
.job-table {
  border-top: 1px #d0d0d0 solid;
  border-left: 1px #d0d0d0 solid;
  border-right: 1px #d0d0d0 solid;
  width: 100%;
}

.job-table th {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-bottom: 1px #d0d0d0 solid;
  width: 100px;
  text-align: center;
  vertical-align: middle;
}

.job-table td {
  padding: 10px 20px;
  border-bottom: 1px #d0d0d0 solid;
  vertical-align: middle;
}

.job-table2 {
  border-top: 1px #dfdfdf solid;
  border-left: 1px #dfdfdf solid;
  width: 100%;
}

.job-table2 th {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-bottom: 1px #dfdfdf solid;
  border-right: 1px #dfdfdf solid;
  width: 150px;
  text-align: center;
  vertical-align: middle;
}

.job-table2 td {
  padding: 10px 20px;
  border-bottom: 1px #dfdfdf solid;
  border-right: 1px #dfdfdf solid;
  vertical-align: middle;
}

/* 메인 */

.dgf-menu-bar {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.main-contents-A {
  margin-top: 70px;
  width: 1434px;
  min-width: 1434px;
  margin: 70px auto 0 auto;
}

.main-contents-A p {
  font-size: 13px;
}

@media (max-width: 991px) {
  .main-contents-A {
    margin-top: 20px;
    width: 100%;
    min-width: 100%;
  }
}

.main-contents-A .jobA-wrap {
  border: 1px solid #e5e5e5;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  border-radius: 8px;
  padding: 24px 24px 24px 24px;
  text-align: left;
  height: 250px;
  background-image: url('../img/main/job-area-bg.png');
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.main-contents-A .jobA-wrap .title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 17px;
}

.main-contents-A .jobA-wrap .job-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
}

.main-contents-A .jobA-wrap .job-area a {
  width: calc(25% - 8px);
  text-align: center;
  padding: 0 5px;
}

@media (max-width: 991px) {
  .main-contents-A .jobA-wrap {
    border: 1px solid #e5e5e5;
    box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
    border-radius: 8px;
    padding: 24px 24px 24px 24px;
    text-align: left;
    height: auto;
    background-image: url('../img/main/job-area-bg.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
  }

  .main-contents-A .jobA-wrap .job-area a {
    width: calc(20% - 8px);
  }

  .main-contents-A .jobA-wrap .job-area {
    word-spacing: 20px;
    line-height: 30px;
    font-size: 18px;
  }
}

.main-contents-A .jobB-wrap {
  border: 1px solid #e5e5e5;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  border-radius: 8px;
  padding: 24px 24px 24px 24px;
  text-align: left;
  height: 250px;
}

.main-contents-A .jobB-wrap .title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.main-contents-A .jobB-wrap .caddy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.main-contents-A .jobB-wrap .caddy-item {
  width: 33%;
}

.main-contents-A .jobB-wrap .caddy-item img {
  display: block;
  margin: 5px auto;
  height: 50px;
}

.main-contents-A .jobC-wrap {
  border: 1px solid #e5e5e5;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  border-radius: 8px;
  padding: 24px 24px 24px 24px;
  text-align: left;
  height: 250px;
}

.main-contents-A .jobC-wrap .title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}

.main-contents-A .jobC-wrap .caddy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.main-contents-A .jobC-wrap .caddy-item {
  width: 50%;
  display: flex;
  align-items: center;
  margin: 10px 0 15px 0;
}

.main-contents-A .jobC-wrap .caddy-item img {
  display: inline-block;
  margin-right: 5px;
}

.main-contents-A .jobC-wrap .caddy-item a {
  display: flex;
  align-items: center;
}

.main-contents-A .jobC-wrap .caddy-item p {
  padding-left: 3px;
}

.main-contents-A .jobD-wrap {
  border: 1px solid #e5e5e5;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  border-radius: 8px;
  padding: 24px 24px 24px 24px;
  text-align: left;
  height: 250px;
}

.main-contents-A .jobD-wrap .title {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.main-contents-A .jobD-wrap .contents-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.main-contents-A .jobD-wrap .contents-item {
  width: 33%;
}

.main-contents-A .jobD-wrap .contents-inner {
  justify-content: left;
  cursor: pointer;
}

.main-contents-A .jobD-wrap .contents-inner strong {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.main-contents-A .jobD-wrap .contents-inner ul {
  list-style: none;
  padding: 0 0 5px 0;
  display: flex;
  flex-wrap: wrap;
}

.main-contents-A .jobD-wrap .contents-inner ul li {
  margin-right: 5px;
  color: gray;
  font-size: 14px;
  line-height: 22px;
}

.main-contents-A .jobD-wrap .contents-inner ul li a {
  color: gray;
}

.main-contents-A .jobD-wrap .contents-inner ul li::after {
  content: '|';
  color: #d3d3d3;
  margin-left: 5px;
}

.main-contents-A .jobD-wrap .contents-inner ul li:last-child::after {
  content: '';
}

@media (max-width: 768px) {
  .main-contents-A .jobD-wrap {
    height: auto;
  }
}

.main-contents-A .job-wrap .title {
  background-color: #a0a0a0;
  color: #ffffff;
  font-weight: bold;
  padding: 5px 10px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.main-contents-A .login-wrap {
  padding: 24px;
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  height: 250px;
}

.main-contents-A .login-wrap table {
  width: 100%;
}

.main-contents-A .login-wrap table td {
  background-color: #ffffff;
  padding: 10px 10px 5px 10px;
  line-height: 20px;
}

.main-cc-rank {
  border: 1px solid #e5e5e5;
  border-radius: 0.6rem;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  padding: 1rem 0 1rem 1rem;
  height: 602px;
  overflow: hidden;
}

.main-cc-rank ul {
  width: 100%;
  height: 600px;
  overflow: auto;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-arrow-color: transparent;
  scrollbar-color: #cccccc #ffffff;
}

.main-cc-rank strong {
  font-size: 20px;
}

.main-cc-rank ul {
  margin-top: 15px;
}

.main-cc-rank ul li {
  margin-bottom: 10px;
}

.main-cc-rank ul li:nth-child(-n + 5) .cc-rank {
  background-color: orange;
}

.main-cc-rank ul li:nth-child(n + 6):nth-child(-n + 10) .cc-rank {
  background-color: black;
}

.main-cc-rank ul li:nth-child(n + 11) .cc-rank {
  background-color: gray;
}

.main-cc-rank .cc-rank {
  display: inline-block;
  width: 40px;
  padding: 0 10px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  text-align: center;
  margin-right: 10px;
}

.main-keyvisual-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 40px;
  color: #ffffff;
  margin-bottom: 10px;
}

.main-keyvisual-subtitle {
  font-size: 17px;
  font-weight: 200;
  line-height: 25px;
  color: #ffffff;
  display: block;
}

@media (max-width: 768px) {
  .main-keyvisual-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .main-keyvisual-subtitle {
    display: none;
  }
}

/* Swiper */

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

/* 잡 리스트 목록형 */

.list-job:hover {
  border: 1px solid #14a077;
  transition: all 0.3s ease-in-out;
}

.list-job {
  border: 1px solid #e5e5e5;
  border-radius: 0.6rem;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.list-job .inner-box {
  display: grid;
  grid-template-columns: 250px 1fr 250px 100px;
  align-items: center;
  column-gap: 20px;
  row-gap: 5px;
}

@media (max-width: 900px) {
  .list-job .inner-box {
    display: grid;
    grid-template-columns: auto;
    flex-direction: row;
  }
}

.list-job .inner-box h2 {
  font-size: 16px;
  font-weight: 500;
  word-break: break-word;
}

.list-job .inner-box h3 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  word-break: break-word;
}

/* 잡 리스트 공통 */

.ad-info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}

.ad-info-box .ad-info-addr {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  /* 범위 제한을 위한 예시 값, 필요에 따라 조정 */
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
}

.ad-info-box .ad-info-addr::after {
  content: '…';
  display: inline-block;
  width: 0;
  height: 0;
  overflow: visible;
  vertical-align: middle;
  visibility: hidden;
}

.ad-info-box .ad-info-addr[title]:hover::after {
  visibility: visible;
}

.ad-info-box .ad-iofo-date {
  font-size: 13px;
}

/* 잡 리스트 광고형 - a */

.joblist-a {
  border: 1px solid #e5e5e5;
  border-radius: 0.6rem;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  background-size: 100% auto;
  background-position: center center;
}

.joblist-a:hover {
  border: 1px solid #14a077;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 4px rgba(28, 36, 51, 0.2);
}

.joblist-a .inner-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.joblist-a .inner-box .box-content {
  width: 100%;
}

.joblist-a .inner-box h2 {
  font-size: 16px;
  font-weight: 500;
  word-break: break-word;
}

.joblist-a .inner-box h3 {
  font-size: 16px;
  font-weight: 900;
  word-break: break-word;
  margin-top: 5px;
}

.joblist-a .inner-box h3 a {
}

.joblist-a .inner-box .logo-img {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  height: 60px;
}

.joblist-a .inner-box img {
  max-width: 130px;
  max-height: 50px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.joblist-a .inner-box .logo-img h4 {
  margin-bottom: 10px;
}

.joblist-a .inner-box .logo-img .logo-img-inner {
  display: flex;
  border-radius: 5px;
  margin-bottom: 15px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.joblist-a ul {
  margin-top: 4px;
}

.joblist-a ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: inline-block;
}

.joblist-a ul li:first-child {
  margin-right: 16px;
}

.joblist-a h4 {
  line-height: 24px;
  font-size: 14px;
  word-break: break-word;
}

.joblist-a h4 a {
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  color: #14a077;
}

.joblist-a h3 {
  line-height: 20px;
  font-size: 16px;
  word-break: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.joblist-a h3 a {
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  color: #121212;
  text-transform: capitalize;
}

/* 잡 리스트 광고형 - b */

.joblist-b {
  border: 1px solid #e5e5e5;
  border-radius: 0.6rem;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  background-image: url('/img/joblist/background-A1.jpg');
}

.joblist-b:hover {
  border: 1px solid #14a077;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 5px rgba(28, 36, 51, 0.3);
}

.joblist-b .inner-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.joblist-b .inner-box .box-content {
  width: 100%;
}

.joblist-b .inner-box h2 {
  font-size: 16px;
  font-weight: 500;
  word-break: break-word;
  color: #ffffff;
}

.joblist-b .inner-box h3 {
  font-size: 16px;
  font-weight: 900;
  word-break: break-word;
}

.joblist-b .inner-box h3 a {
  color: #ffffff;
}

.joblist-b .inner-box .logo-img {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}

.joblist-b .inner-box .logo-img img {
  max-width: 130px;
  max-height: 50px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.joblist-b .inner-box .logo-img h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

.joblist-b .inner-box .logo-img .logo-img-inner {
  display: flex;
  background-color: #ffffff;
  padding: 0px;
  border-radius: 5px;
  margin-bottom: 15px;
  height: auto;
  align-items: center;
  justify-content: center;
}

.joblist-b ul {
  margin-top: 4px;
}

.joblist-b ul li {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: inline-block;
}

.joblist-b ul li:first-child {
  margin-right: 16px;
}

.joblist-b h4 {
  line-height: 24px;
  font-size: 14px;
  word-break: break-word;
}

.joblist-b h4 a {
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  font-weight: 600;
}

.joblist-b h3 {
  line-height: 20px;
  font-size: 16px;
  word-break: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
}

.joblist-b h3 a {
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
}

/* 잡 리스트 로고형 */

.biglogo-job {
  margin-bottom: 20px;
  gap: 0;
  border: 1px solid #e5e5e5;
  border-radius: 0.6rem;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  padding: 24px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 1;
  flex: 1;
}

.biglogo-job:hover {
  border: 1px solid #14a077;
  transition: all 0.3s ease-in-out;
}

.biglogo-job .inner-box {
  position: relative;
  display: flex;
  align-items: center;
}

.biglogo-job .inner-box .logo-img {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}

.biglogo-job .inner-box .logo-img img {
  max-width: 160px;
  max-height: 50px;
}

.biglogo-job .inner-box .logo-img h4 {
  margin-bottom: 10px;
}

.biglogo-job .inner-box .logo-img .logo-img-inner {
  display: flex;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.biglogo-job .inner-box .logo-company {
  margin: 9px 16px 9px 0px;
}

.biglogo-job .inner-box .box-content {
  width: 100%;
}

.biglogo-job.style-2.stc-apply .inner-box .box-content {
  width: 50%;
}

.biglogo-job .inner-box .logo-company > img {
  max-width: 70px;
}

.biglogo-job .job-archive-header span.icon-heart {
  right: 0;
  top: 0;
  position: absolute;
  border-radius: 1000px;
  padding: 12px;
  color: #e5e5e5;
  font-size: 17.42px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.biglogo-job .job-archive-header span.icon-heart:active,
.biglogo-job .job-archive-header span.icon-heart:hover {
  color: #eb4d4d;
}

.biglogo-job .job-archive-header h4 {
  line-height: 24px;
  font-size: 14px;
  word-break: break-word;
}

.biglogo-job .job-archive-header h4 a {
  transition: all 0.3s ease-in-out;
  color: #14a077;
  font-weight: 600;
}

.biglogo-job .job-archive-header h3 {
  line-height: 20px;
  font-size: 16px;
  word-break: break-word;
  white-space: nowrap;
  /* 한 줄로 표시 */
  overflow: hidden;
  /* 넘치는 텍스트 숨기기 */
  text-overflow: ellipsis;
  /* 말줄임표 추가 */
}

.biglogo-job .job-archive-header h3 a {
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  color: #121212;
  text-transform: capitalize;
}

.home-box-item h2 a:not(.jobtex-link-item),
.biglogo-job .job-archive-header h3 a:not(.jobtex-link-item),
.biglogo-job.style-3 .box-content h3 a:not(.jobtex-link-item),
.biglogo-job .job-archive-footer .job-tag li a:not(.jobtex-link-item),
.biglogo-job.style-3 .category .job-tag li a:not(.jobtex-link-item),
.employer-block .box-content h3 a:not(.jobtex-link-item) {
  position: relative;
  z-index: 2;
}

.biglogo-job .job-archive-header span.icon-heart:not(.jobtex-link-item),
.biglogo-job.style-3 .group-btn span.icon-heart:not(.jobtex-link-item) {
  z-index: 2;
}

.biglogo-job .job-archive-header h3 a:hover,
.biglogo-job.style-3 .box-content h3 a:hover {
  color: #14a077;
}

h3 span.icon-bolt {
  font-size: 14px;
  background-color: #504cfe;
  border-radius: 50%;
  padding: 3px;
  color: #ffffff;
}

.biglogo-job .job-archive-header ul {
  margin-top: 4px;
}

.biglogo-job .job-archive-header ul li {
  color: #64666c;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: inline-block;
}

.biglogo-job .job-archive-header ul li:first-child {
  margin-right: 16px;
}

.biglogo-job .job-footer-left {
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  justify-content: space-between;
  padding: 16px 0px;
}

.biglogo-job .job-footer-right {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.biglogo-job .job-archive-footer .job-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.biglogo-job .job-archive-footer .job-tag li a {
  background-color: #f1f1f1;
  color: #121212;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 52px;
}

.biglogo-job .job-archive-footer .job-tag li a:hover {
  background: #148160;
  color: #fff;
}

.biglogo-job .star span,
.employer-block .star span {
  font-size: 12.8px;
  color: #ffb321;
  cursor: pointer;
}

.biglogo-job .star span:last-child,
.employer-block .star span:last-child {
  color: #e5e5e5;
}

.biglogo-job .job-footer-right .price {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #121212;
}

.biglogo-job span.icon-dolar1 {
  font-size: 20px;
  color: #121212;
  margin-right: 8px;
}

.biglogo-job span.year {
  font-weight: 400;
  color: #64666c;
}

.biglogo-job .job-footer-right .days {
  color: #64666c;
  font-size: 14px;
  line-height: 22px;
}

/* 인재정보 - 목록 */

@media (max-width: 768px) {
  .wd-meta-select-job {
    text-align: center;
  }
}

.person-box {
  padding: 7px 12px;
  background: rgba(20, 129, 96, 0.1);
  border-radius: 24px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #14a077;
  margin-right: 12px;
}

.person-list {
  border: solid 1px #f0f0f0;
  padding: 15px;
  margin: 0 0 20px 0;
}

.person-list .person-list-header {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #f0f0f0;
  padding: 10px;
}

.person-list .person-list-header h3 {
  color: #333333;
  font-size: 18px;
}

.person-list .person-list-header h4 {
  color: #14a077;
  font-size: 15px;
}

.person-list .person-list-header img {
  width: auto;
  height: 100px;
  margin-right: 15px;
}

.person-list .person-list-footer {
  display: flex;
  padding: 10px 0 0 10px;
}

.person-list .person-list-footer .person-box {
  padding: 5px 7px;
  background: rgba(20, 129, 96, 0.1);
  border-radius: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #14a077;
  margin-right: 2px;
  width: auto;
}

/* 채용정보 */

.job-info p {
  color: gray;
  margin: 0;
}

.job-info span {
  font-weight: 600;
  color: black;
}

.job-info .col-12 {
  border-bottom: solid 1px #f0f0f0;
  display: flex;
  padding: 15px 20px;
  flex-direction: row;
  /* 기본적으로 가로 정렬 */
}

.job-info .col-12 > p:first-child {
  width: 120px;
  /* 첫 번째 <div>의 너비를 100px로 고정 */
}

.job-info .col-12 > span:last-child {
  flex: 1;
  /* 두 번째 <div>가 남은 공간을 차지하도록 설정 */
}

.job-info2 .row {
  border-bottom: solid 1px #e5e5e5;
  padding: 15px 20px;
}

.job-info2 p {
  font-size: 14px;
  color: gray;
  margin: 0;
}

.job-info2 span {
  font-size: 16px;
  font-weight: 700;
  color: black;
}

@media (max-width: 768px) {
  .job-info .col-12 {
    flex-direction: column;
    /* 모바일에서는 세로 정렬 */
  }

  .job-info .col-12 > p:first-child {
    width: 100%;
    /* 모바일에서는 너비를 100%로 설정 */
  }

  .job-info .col-12 > span {
    text-align: left;
    /* 모바일에서는 왼쪽 정렬 */
  }
}

.job-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  /* 세로 중앙정렬 */
  margin-bottom: 20px;
  /* 하단 마진 20px */
}

@media (max-width: 768px) {
  .job-title {
    display: block;
    margin-bottom: 20px;
    /* 하단 마진 20px */
  }
}

.job-title .title {
  width: auto;
  color: #000000;
  font-size: 16px;
  font-weight: 900;
  margin-right: 5px;
}

.job-title .filter {
  width: 100px;
  margin-right: 5px;
}

.job-title p {
  font-size: 13px;
}

/* 사이드바 */

.categories {
  width: 100%;
}

.categories-wrap i {
  color: lightgray;
  margin-right: 10px;
}

.categories-wrap .categories-item:first-child {
  border-top: #e0e0e0 solid 1px;
}

.categories-wrap .categories-item {
  border-bottom: #e0e0e0 solid 1px;
  padding: 6px 0;
}

/* 로그인, 회원가입 */

.snslogo {
  width: 40px;
}

.join-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.join-form {
  min-width: 1171px;
}

@media (max-width: 768px) {
  .join-form {
    min-width: 100%;
  }
}

.join-form > .row {
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  margin: 25px 0;
  padding: 15px 10px;
  transition: box-shadow 0.3s ease;
  background-color: #f9f9f9;
}

.join-form > .row:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0;
}

.join-form .ip {
  padding: 15px 0;
}

.join-form .w-130 {
  width: 100%;
}

@media (min-width: 991px) {
  .join-form .w-130 {
    width: 130px;
  }
}

.join-form .w-300 {
  width: 100%;
}

@media (min-width: 991px) {
  .join-form .w-300 {
    width: 300px;
  }
}

.join-form input {
  padding: 10px;
}

.html-privacy {
  height: 300px;
  overflow-y: scroll;
}

.html-privacy h2 {
  font-size: 18px;
  margin: 10px 0;
}

.html-privacy h6 {
  font-size: 16px;
  margin: 0 0 5px 5px;
}

.html-privacy p,
.html-privacy li {
  font-size: 13px;
  margin: 0 0 0 10px;
}

.agree-wrap {
  display: flex;
  gap: 5px;
  justify-content: end;
  font-size: 16px;
  padding: 0 10px 10px 0;
}

.agree-wrap .agree-title {
  display: flex;
  gap: 5px;
  justify-content: end;
  align-items: center;
}

.agree-btn-wrap {
  text-align: center;
}

.agree-btn-wrap .agree-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.agree-btn-wrap .agree-title input {
  width: 18px;
  height: 18px;
}

.input-disabled {
  border: 0 !important;
}

.join-form .grade-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
  border-top: 1px solid #e0e0e0;
  padding: 15px 0 10px 0;
}

.join-form .grade-wrap .grade-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.join-form .grade-border {
  border-top: 1px solid #e0e0e0;
  margin: 20px 0 0 0;
}

.join-form .grade-wrap span {
  font-size: 12px;
}

/* 마이페이지 */

.my_topmenu {
  width: 100%;
}

.my_topmenu ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
  gap: 5px;
}

.my_topmenu li {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 컨텐츠 중앙 정렬 */
  justify-content: center;
  flex: 1 0 calc(20% - 5px);
  /* 간격을 고려한 너비 조정 */
  border: 1px solid #e0e0e0;
  background-color: #f5f5f5;
  box-sizing: border-box;
  text-align: center;
  padding: 15px 10px;
  /* 여백 추가 */
}

.my_topmenu p {
  font-size: 16px;
  /* 일반 텍스트 크기 */
}

.my_topmenu span {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  /* 여백 15px */
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  font-weight: bolder;
}

.my_topmenu li:nth-child(1) span {
  background-color: #006442;
  /* 첫 번째 숫자 배경색 */
}

.my_topmenu li:nth-child(2) span {
  background-color: #006442;
  /* 두 번째 숫자 배경색 */
}

.my_topmenu li:nth-child(3) span {
  background-color: #006442;
  /* 세 번째 숫자 배경색 */
}

.my_topmenu li:nth-child(4) span {
  background-color: #262161;
  /* 네 번째 숫자 배경색 */
}

.my_topmenu li:nth-child(5) span {
  background-color: #262161;
  /* 다섯 번째 숫자 배경색 */
}

@media (max-width: 768px) {
  .my_topmenu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .my_topmenu li {
    flex: 0 0 50%;
    width: 50%;
  }
}

.join-juso input,
.join-juso a {
  margin-bottom: 5px;
}

/*채용공고 등록 */

.inputs-check-area {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.inputs-check-area input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-right: 2px;
  margin-left: 15px;
  vertical-align: middle;
}

.inputs-text-area {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.inputs-text-area input[type='text'] {
  height: 35px !important;
  padding: 10px 10px !important;
  vertical-align: middle;
}

/* 약관 */
.agreepage-wrap {
  height: 750px;
  font-size: 13px;
  line-height: 1.4rem;
  padding: 10px;
  border: 1px solid #d7d7d7;
  overflow-y: scroll;
  margin: 20px 0;
}

.agreepage-wrap .tit-type2 {
  font-size: 16px;
  font-weight: 600;
}

.agreepage-wrap h6 {
  font-size: 14px;
  margin-top: 15px;
}

footer .copyright {
  color: gray;
}

/* 지원자 관리 */
.applicant-company {
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
}

/* 채용공고 상세 */
.detail-logo {
  display: inline-table;
  max-width: 200px;
  max-height: 100px;
  padding: 0 0 10px 0;
}

/* 채용공고 목록 (모바일) */
.job-list-mb-search-wrap {
  display: flex;
  justify-content: space-between;
  padding: 18px 24px 18px 24px;
  background-color: #f5f5f5;
  border-radius: 5px 5px 0 0;
}

.job-list-mb-search-wrap .title {
  font-size: 16px;
  font-weight: 700;
}

#job-list-mb-search-panel {
  display: none;
}

/* 기존 채용광고 border 색상 */
.border-color-B0101,
.border-color-B0102,
.border-color-B0103,
.border-color-B0104,
.border-color-B0105 {
  border-color: #8e44ad;
  background: linear-gradient(to bottom, f7e8ff 5%, #ffffff 0%);
}

.border-color-B0106,
.border-color-B0107,
.border-color-B0108,
.border-color-B0109,
.border-color-B0110 {
  border-color: navy;
  background: linear-gradient(to bottom, navy 5%, #ffffff 0%);
}

/* 페이지 */
.pg-wrap .pg_page {
  margin: 0 30px;
}

/* 직종 태그 */
.job-tag-wrap {
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

@media (max-width: 991px) {
  .job-tag-wrap {
    justify-content: flex-start;
  }
}
