/* 웹폰트 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

/* 변수 설정 */
:root {
  /* gray */
  --gray-50: #fbfbfc;
  --gray-100: #EFEFF2;
  --gray-200: #dbdbe1;
  --gray-300: #C0C0CA;
  --gray-400: #9C9CAD;
  --gray-500: #717188;
  --gray-600: #464654;
  --gray-700: #151519;
  --gray-800: #09090b;
  --gray-900: #020203;
  --gray-950: #000000; 
  --white: #ffffff;  
  /* primary */
  --primary-50: #fdfbff; 
  --primary-100: #f7efff; 
  --primary-200: #ecdbff; 
  --primary-300: #debfff; 
  --primary-400: #cc9bff; 
  --primary-500: #b570ff; 
  --primary-600: #9a3cff; 
  --primary-700: #7b00ff; 
  --primary-800: #44008e; 
  --primary-900: #24004a; 
  --primary-950: #190033; 
  /* etc */
  --line-gray1: #E7E7F2;
  --em-text-red: #FF5252;
  --em-text-blue: #486FF9;
  --bg-blue: #EDF1FE;
  --secondary-700: #F84820;
}

/* MyLoofit style */
html {
  font-size: 10px;
  overflow-x: hidden;
}
body {
  /* overflow-x: hidden; */
  color: var(--gray-800);
  font-family: "Pretendard", "Malgun Gothic", gulim, dotum, AppleGothic, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
}

.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}
.br-767 {
  display: none;
}

/* scroll */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track { 
  background-color: #F4F4F4; 
}
::-webkit-scrollbar-thumb { 
  background-color: var(--gray-300);
}

/* no scroll */
.no-scrollbar::-webkit-scrollbar {
  display: none; 
}
.no-scrollbar {
  scrollbar-width: none; 
}

/* form-input */
input:focus {
  outline: none;
}
.form-input {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  color: var(--gray-700);
  font-size: 1.4rem;
}
.form-input::placeholder {
  color: var(--gray-500);
}
.form-input:focus {
  border: 1.5px solid var(--primary-600);
}

/* form-textarea */
textarea:focus {
  outline: none;
}
.form-textarea {
  width: 100%;
  height: 160px;
  resize: none;
  padding: 8px 10px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  color: var(--gray-700);
  font-size: 1.4rem;
}
.form-textarea::placeholder {
  color: var(--gray-500);
}
.form-textarea:focus {
  border: 1.5px solid var(--primary-600);
}

/* checkbox */
.chk-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.custom-chk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.custom-chk input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.custom-chk .chk-box {
  display: inline-block;
  position: relative;  
  width: 16px;
  height: 16px;
  background-color: var(--primary-200); 
  border-radius: 2px;
  transition: background-color 0.1s ease;
}
.custom-chk .chk-box::after {
  content: '';
  position: absolute;
  top: 45%; 
  left: 50%;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2.5px 2.5px 0; 
  transform: translate(-50%, -50%) rotate(45deg);  
}
.custom-chk input[type="checkbox"]:checked + .chk-box {
  background-color: var(--primary-700); 
}
.custom-chk .chk-txt {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gray-600);
}


/* Button */
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

/* btn-square-black */
.btn-square-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;  
  background: var(--gray-700);
  border-radius: 4px;
  color: var(--white);  
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.56px;
  white-space: nowrap;
  transition: all 0.2s ease;  
}
.btn-square-black:hover {
  background:radial-gradient(167.5% 50% at 50% 50%, rgba(123, 0, 255, 0.80) 0%, rgba(123, 0, 255, 0.40) 100%), #151519;
}

/* btn-square-purple */
.btn-square-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;  
  background: #6900DA;
  border-radius: 4px;
  color: var(--white);  
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.56px;
  white-space: nowrap;
  transition: all 0.2s ease;    
}
.btn-square-purple:hover {
  background-color: var(--primary-700);
}

@media (max-width: 767px) {
  .btn-square-purple {
    height: 56px;
    padding: 0 20px;
    font-size: 1.8rem;
  }
}

/* btn-stroke */
.btn-stroke {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;  
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.56px;
  white-space: nowrap;
  transition: all 0.2s ease;  
  color: var(--gray-800);
}
.btn-stroke:hover {
  border-color: var(--gray-700);
}

/* btn-toggle-gray */
.btn-toggle-gray {
  height: 34px;
  padding: 0 16px;
  background-color: var(--gray-100);
  border: 1.5px solid var(--gray-100);
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 600;
}
.btn-toggle-gray.active {
  background-color: var(--white);
  border-color: var(--gray-600);
}

@media (max-width: 769px) {
  /* btn-toggle-gray */
  .btn-toggle-gray {
    height: 38px;
    padding: 0 14px;
  }
}

/* btn 전체보기 */
.btn-view-all {
  padding: 7px 14px;
  border: none;
  font-size: 1.4rem;
  font-weight: 500;
}
.btn-view-all .plus {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(/images/common/ico-plus.svg) no-repeat left top/100%;
  transform-origin: center;
}
.btn-view-all:hover .plus {
  animation: popScale 0.4s ease-in-out forwards;
}

@keyframes popScale {
  0% {
    transform: scale(1);  
  }
  40% {
    transform: scale(0);  
  }
  100% {
    transform: scale(1);
  }
}

/* btn-icon-text */
.btn-icon-text {
  display: inline-block;
  position: relative;
  height: 36px;
  padding: 0 10px 0 36px;
  border-radius: 999px;
  color: var(--gray-600);
  font-size: 1.4rem;
  font-weight: 500;
}
/* 필터 버튼 */
.btn-icon-text.btn-filter {
  background: url(/images/common/ico-setting.svg) no-repeat 10px 6px/24px;
}
.btn-icon-text.btn-filter:hover {
  background: var(--primary-100) url(/images/common/ico-setting-purple.svg) no-repeat 10px 6px/24px;
  color: var(--primary-700);
}
/* 정렬 버튼 */
.btn-icon-text.btn-sort {
  background: url(/images/common/ico-array.png) no-repeat 10px 6px/24px;
}
.btn-icon-text.btn-sort:hover {
  background: var(--primary-100) url(/images/common/ico-array-purple.png) no-repeat 10px 6px/24px;
  color: var(--primary-700);
}
/* 초기화 버튼 */
.btn-icon-text.btn-reset {
  background: url(/images/common/ico-reset.png) no-repeat 10px 6px/24px;
}
.btn-icon-text.btn-reset:hover {
  background: var(--primary-100) url(/images/common/ico-reset-purple.png) no-repeat 10px 6px/24px;
  color: var(--primary-700);
}

/* btn-icon-text-square */
.btn-icon-text-square {
  display: inline-block;
  position: relative;
  height: 36px;
  padding: 0 10px 0 36px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  color: var(--gray-600);
  font-size: 1.4rem;
  font-weight: 500;  
}
/* 오류신고 버튼 */
.btn-icon-text-square.btn-error {
  background: url(/images/common/ico-alarm.png) no-repeat 10px 6px/24px;
}
.btn-icon-text-square.btn-error:hover {
  background: var(--primary-100) url(/images/common/ico-alarm-purple.png) no-repeat 10px 6px/24px;
  color: var(--primary-700);
}

/* btn-icon */
.btn-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
}
.btn-icon:hover {
  background-color: var(--primary-100);
  border-color: var(--primary-200);
}
/* 공유 버튼 */
.btn-icon-share {
  background: url(/images/common/ico-share.png) no-repeat center center/24px;
}
.btn-icon-share:hover {
  background-image: url(/images/common/ico-share-purple.png);
}
/* 북마크 버튼 */
.btn-icon-bookmark {
  background: url(/images/common/ico-bookmark.png) no-repeat center center/24px;
}
.btn-icon-bookmark:hover {
  background-image: url(/images/common/ico-bookmark-purple.png);
}
/* 새창 버튼 */
.btn-icon-newtab {
  background: url(/images/common/ico-newtab.png) no-repeat center center/24px;
}
.btn-icon-newtab:hover {
  background-image: url(/images/common/ico-newtab-purple.png);
}

/* button 지원하기  */
.btn-apply {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  height: 54px;
  background-color: var(--secondary-700);
  border-radius: 4px;
  color: var(--white);
}
.btn-apply:hover {
  background-color: #ED3F18;
}
.btn-apply-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 400;
}
.btn-apply-view {
  position: relative;
  padding-left: 16px;
}
.btn-apply-view::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(/images/common/ico-eye.svg) no-repeat left top/100%;
}
.btn-apply-bookmark {
  position: relative;
  padding-left: 16px;
}
.btn-apply-bookmark::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(/images/common/ico-bookmark-white.svg) no-repeat left top/100%;
}
.btn-apply-txt {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
}
.btn-apply-txt::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 4px;
  left: -16px;
  width: 1px;
  height: 12px;
  background-color: var(--white);
}

/* 전체초기화 버튼 */
.btn-all-reset {
  position: relative;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 500;
}
.btn-all-reset span {
  position: relative;
  padding-left: 26px;
}
.btn-all-reset span::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: -3px;
  left: 0;
  width: 24px;
  height: 24px;
  background: url(/images/common/ico-reset.png) no-repeat left top/100%;
}
.btn-all-reset:hover {
  background-color: var(--primary-100);
  color: var(--primary-700);
}
.btn-all-reset:hover span::before {
  background-image: url(/images/common/ico-reset-purple.png);
}

@media (max-width: 767px) {
  .btn-all-reset {
    height: 56px;
    padding: 0 14px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1.7rem;
  }
}

/* btn-bottom-purple */
.btn-bottom-purple {
  width: 100%;
  height: 58px;
  background-color: var(--primary-800);
  border-radius: 0 0 8px 8px;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
}
.btn-bottom-purple:hover {
  background-color: var(--primary-700);
}



/* input */
.input-search {
  width: 100%;
  height: 40px;
  border: 0;
  border-bottom: 4px solid var(--gray-600);
  background: transparent;
  color: var(--gray-700);
  font-size: 1.4rem;
}
.input-search::placeholder {
  color: var(--gray-500);
}
.input-search:focus {
  height: 40px;
  border-bottom: 4px solid var(--gray-600);
}
.input-search:disabled {
  opacity: 0.5;
}
.btn-clear {
  display: none;
  position: absolute;
  top: 10px;
  right: 5px;
  width: 16px;
  height: 16px;
  background: url(/images/common/ico-close.svg) no-repeat left top/100%;
}

@media (max-width: 769px) { 
  /* input */
  .input-search {
    height: 48px;
    font-size: 1.6rem;
  }
  .input-search::placeholder {
    font-size: 1.6rem;
  }
}

/* tag */
.job-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--gray-700);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.48px;
}
.job-tag.blue {
  background: #D4F2FF;
  border: 1px solid #B9E0F1;
}
.job-tag.indigo {
border: 1px solid #C5D3F3;
background: #DEE8FF;
}
.job-tag.green {
border: 1px solid #D0E6BA;
background: #E5FBCE; 
}

.job-tag-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--gray-700);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.48px;
}
.job-tag-lg.blue {
  background: #D4F2FF;
  border: 1px solid #B9E0F1;
}
.job-tag-lg.indigo {
  border: 1px solid #C5D3F3;
  background: #DEE8FF;
}
.job-tag-lg.pink {
  border: 1px solid #EECFFE;
  background: #F6E4FF; 
}


/* =========================================================
  Header
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 72px;
  background: rgba(251, 251, 255, 0.72);
  backdrop-filter: blur(20px);
  z-index: 30;
}
.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1476px;
  height: 72px;
  margin: 0 auto;
  padding: 0 40px;
}
.mob-header {
  display: none;
}
.header-left {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
.gnb-logo {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 71px;
  height: 16px;
  transform: translateY(-50%);
}
.logo img {
  width: 71px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 60px;
  height: 40px;
}
.nav-list > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-list > li .nav-link-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gray-800);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.nav-list > li .nav-link-item:hover::after,
.nav-list > li .nav-link-item:focus-within::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 40px;
  color: var(--gray-800);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}
.has-arrow {
  gap: 8px;
}
.nav-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(36, 0, 74, 0.08);
}
.nav-arrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--gray-800);
  border-bottom: 1.5px solid var(--gray-800);
  transform: translateY(-2px) rotate(45deg);
}
.link-clvr img {
  width: 40px;
}
.gnb-dimmed {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0 40px;
  background-color: rgba(0, 0, 0, 0.1); 
  opacity: 0;
  visibility: hidden;
  z-index: 50; 
  transition: all 0.3s ease;  
}
.nav-submenu-wrap {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;  
  max-width: 1476px;  
  margin: 0 auto;
  padding: 0 40px;
  z-index: 60;
} 
.nav-submenu {
  display: flex;
  /* display: none; */
  gap: 20px;
  width: 100%;

  /* position: absolute;
  top: 58px;
  left: 0;
  width: calc(100vw - 27.2%);
  max-width: 1396px; */
  min-height: 142px;
  /* margin: 0 auto; */
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
}
.header.is-active .gnb-dimmed {
  opacity: 1;
  visibility: visible;
}
.header.is-active .nav-submenu-wrap {
  display: flex;
}
.submenu-left {
  display: flex;
  flex: 0 1 200px;
  flex-direction: column;
  justify-content: space-between;
  min-width: 140px;
  padding: 4px 0;
}
.submenu-left p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
}
.btn-tutorial {
  padding: 2px 16px 2px 2px;
  background: url(/images/common/ico-angle-right-top.png) no-repeat right 2px/14px;
  font-size: 1.4rem;
  font-weight: 600;
}
.submenu {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}
.submenu li {
  display: flex;
  gap: 10px;
}
.submenu-ico {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
  background: var(--gradation-gradation-gray, linear-gradient(135deg, #595963 15.97%, #09090B 84.72%));
  border-radius: 50%;
}
.submenu-ico::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FA7F62 0%, #FF77D8 50%, #A24DFF 100%);
  border-radius: 50%;
  opacity: 0; 
  z-index: 1;
  transition: opacity 0.2s;   
}
.submenu-ico img {
  width: 16px;
  z-index: 2;
}
.submenu li:hover .submenu-ico::before {
  opacity: 1;
}
.submenu li:hover .submenu-nm {
  text-decoration: underline;
}
.submenu-nm {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}
.submenu-desc {
  margin-top: 4px;
  color: var(--gray-600);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  word-break: keep-all;
}





.util-area,
.member-area,
.btn-area {
  display: flex;
  align-items: center;
}
.util-area {
  gap: 40px;
  position: absolute;
  top: 13px;
  right: 40px;
}
.member-area {
  gap: 20px;
  height: 48px;
}
.alarm-btn {
  width: 28px;
  height: 28px;
  background: url(/images/common/ico-alarm-setting.svg) no-repeat center center/20px;
  font-size: 0;
}
/* .alarm-btn img {
  width: 30px;
  height: 30px;
} */
/* .alarm-badge {
  position: absolute;
  top: 9px;
  right: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ff0000;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
} */
.util-divider {
  width: 1px;
  height: 12px;
  background: var(--gray-800);
}
.login-link {
  display: inline-flex;
  align-items: center;
  height: 48px;
  color: var(--gray-800);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
.btn-area {
  gap: 20px;
}







/* =========================================================
  Footer
   ========================================================= */
.footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 40px 0;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--gray-500);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer-logo img {
  width: 70px;
}
.footer-company {
  margin-top: 32px;
}
.footer-company-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
}
.footer-toggle-icon {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gray-500);
}
.footer-toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: translate(-50%, -65%) rotate(45deg);
}
.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  color: var(--gray-500);
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.56px;
  opacity: 0;
  transition: all 0.2s;
}
.footer-company.visible .footer-company-info {
  opacity: 1;
}
.footer-company.visible .footer-toggle-icon {
  transform: rotate(180deg);
}
.footer-company-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}
.footer-company-row p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links {
  display: flex;
  gap: 100px;
  flex: 0 0 auto;  
}
.footer-link-tit {
  margin-bottom: 32px;
  font-size: 1.6rem;
  font-weight: 700;
}
.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.file-link {
  display: inline-block;
  position: relative;
  padding-left: 18px;
}
.file-link::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url(/images/common/ico-clip.svg) no-repeat left top/100%; 
}
.file-link:hover {
  text-decoration: underline;
}
.family-site {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.family-site strong {
  width: 60px;
  font-weight: 600;
}
.family-site-link:hover {
  text-decoration: underline;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.btn-inquiry {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
.btn-inquiry-icon {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  background-color: var(--gray-500);
  border-radius: 50%;
  transition: all 0.2s;
}
.btn-inquiry-icon::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 11px;
  width: 8px;
  height: 8px;
  background: url(/images/common/ico-arrow-top-right.svg) no-repeat left top/100%;
}
.btn-inquiry:hover {
  text-decoration: underline;
}
.btn-inquiry:hover .btn-inquiry-icon {
  background-color:  var(--gray-700);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 40px;
}
.policy-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.policy-links li {
  position: relative;
}
.policy-links li::after {
  content: '';
  position: absolute;
  top: 5px;
  right: -20px;
  width: 1px;
  height: 10px;
  background-color: var(--gray-300);
}
.policy-links li:last-child:after {
  display: none;
}
.policy-links a {
  padding: 10px 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.policy-links a:hover {
  text-decoration: underline;
}
.copyright {
  font-size: 1.4rem;
}

/* =========================================================
  main page
   ========================================================= */

/* 상단 visual search */
.main-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  margin-top: 72px;
  height: calc(100vh - 72px);
  min-height: 650px;
  padding: 0 40px;
  background-color: #FBFBFF;
  overflow: hidden;
}
.bg-visual1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: url(/images/common/blur_red.png) no-repeat center center/contain;
  z-index: 0;
  animation: moveVisual1 7s ease-in-out infinite alternate;
}
.bg-visual2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: url(/images/common/blur_purple.png) no-repeat center center/contain;
  z-index: 0;
  
  animation: moveVisual2 7s ease-in-out infinite alternate;
}

/* 첫 번째 배경 (왼쪽 -> 중앙) */
@keyframes moveVisual1 {
  0% {
    width: 80%;
    left: 0;
    transform: translateX(0);
  }
  100% {
    width: 50%;
    left: 40%;
    transform: translateX(-50%); 
  }
}

/* 두 번째 배경 (오른쪽 -> 중앙) */
@keyframes moveVisual2 {
  0% {
    width: 80%;
    right: 0;
    transform: translateX(0);
  }
  100% {
    width: 50%;
    right: 40%;
    transform: translateX(50%); 
  }
}

.main-visual-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  width: 100%;
  /* margin-top: -100px; */
  transform: translateY(-70px);
}
.visual-loading {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  /* border-radius: 20px;
  background-color: #7b01ff; */
}
.visual-loading img {
  width: 100%;
}
.visual-title-group {
  text-align: center;
}
.visual-title {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: -1.92px;
}
.visual-description {
  margin-top: 20px;
  color: var(--gray-700);
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: -0.8px;
}
.visual-search-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  text-align: center;
}
.visual-search {
  width: 688px;
}
/* .visual-search-wrap {
  position: relative;
  width: 688px;
  border-radius: 30px;
  overflow: hidden;
} */






/* 전체 입력창을 감싸는 컨테이너 */
.chat-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 688px;
  min-height: 60px;
  background-color: #ffffff;
  border-radius: 30px; 
  padding: 16px 25px 8px 24px; 
  transition: border-radius 0.2s ease;
}
.chat-input-wrapper.long {
  padding-bottom: 52px;
}

/* 텍스트 입력창 */
.chat-textarea {
  width: 100%;
  height: 30px; /* 💡 한 줄일 때의 초기 기본 높이 */
  max-height: 98px; /* 💡 최대 이 높이까지만 늘어나고, 그 이후엔 내부 스크롤바 생성 */
  /* padding: 19px 40px 14px 24px; */
  border: none;
  /* border-radius: 30px; */
  resize: none; /* 사용자 임의 크기 조절창 비활성화 */
  outline: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray-700);
  overflow-y: auto; /* 최대 높이 초과 시 스크롤바 작동 */
  
  /* 스크롤바 스타일 커스텀 (제미나이 느낌의 투명하고 얇은 스크롤바) */
  /* scrollbar-width: thin; */
}
.chat-textarea::placeholder {
  background: linear-gradient(90deg, #F8481F 0%, #FF3CC7 13.89%, #7B01FF 27.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 우측 하단 전송 버튼 */
.btn-chat-send {
  display: inline-block;
  position: absolute;
  bottom: 15px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: url(/images/common/btn-search.png) no-repeat left top/100%;
  cursor: pointer;
}
.chat-input-wrapper.focus .btn-chat-send {
  background: url(/images/common/btn-search-gray.png) no-repeat left top/100%;
}











/* .visual-search-input {
  width: 100%;
  height: 60px;
  padding: 0 48px 0 24px;
  border: none;
  background: var(--white);
  color: var(--gray-700);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.64px;
}
.visual-search-input::placeholder {
  background: linear-gradient(90deg, #F8481F 0%, #FF3CC7 13.89%, #7B01FF 27.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */


.visual-search-button {
  display: inline-block;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: url(/images/common/btn-search.png) no-repeat left top/100%;
  cursor: pointer;
}
.visual-search-helper {
  display: inline-block;
  position: relative;
  margin-top: 22px;
  padding-left: 16px;
  color: var(--gray-600);
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.48px;
}
.visual-search-helper:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(/images/common/ico-info.svg) no-repeat left top/100%;
}
.suggestion-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.suggestion-chip {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid rgba(231, 231, 242, 0.80);
  border-radius: 999px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
  transition: all 0.2s ease;
}
.suggestion-chip:hover {
  border-color: var(--primary-300);
  color: var(--gray-700);
}
.suggestion-chip span {
  position: relative;
  padding-left: 26px;
}
.suggestion-chip span:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}
.suggestion-chip1 span:before {
  background-image: url(/images/common/ico-color-thumbs-up.svg);
}
.suggestion-chip2 span:before {
  background-image: url(/images/common/ico-color-building.svg);
}
.suggestion-chip3 span:before {
  background-image: url(/images/common/ico-color-book.svg);
}
.suggestion-chip4 span:before {
  background-image: url(/images/common/ico-color-chart.svg);
}

/* user 정보, 추천 공고 */
.section-inner {
  position: relative;
  width: 100%;
  max-width: 1476px;
  margin: 0 auto;
  padding: 0 40px;
}
.user-dashboard {
  padding: 160px 0 50px;
}
.main-user-area {
  /* display: flex;
  justify-content: center;
  align-items: center; */
  position: absolute;
  top: 0;
  left: 50%;
  height: 56px;
  transform: translateX(-50%);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--white);
}
.main-user-name {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(315deg, #5900B9 0%, #9343EB 83.48%);
  border-radius: 30px 30px 2px 30px;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 300;
}
.main-user-greeting {
  font-size: 2.4rem;
  font-weight: 500;
}
.main-user-greeting strong {
  background: var(--gradation-gradation_OtoP, linear-gradient(90deg, #F8481F 0%, #FF3CC7 50%, #7B01FF 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.main-user-area.on-visual {
  top: -280px;
  height: 64px;
}
.main-user-area.on-visual .main-user-badge {
  padding: 4px 28px 4px 4px;
}
.main-user-area.on-visual .main-user-greeting {
  font-size: 1.6rem;
}


.scroll-btn-wrap {
  position: absolute;
  top: -2px;
  right: -68px;
  width: 68px;
  height: 68px;
  padding: 13px;
  visibility: hidden;
  opacity: 0;
}
.scroll-btn-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FA7F62 0%, #FF77D8 50%, #A24DFF 100%);
  border-radius: 50%;
  z-index: 0;
  
  opacity: 0;
  transform: scale(0.36);
}

/* 2. 💡 마우스가 올라갔을 때 (Hover) */
.scroll-btn-wrap:hover::after {
  animation: bounce-in 0.42s ease-out 1 forwards;  
}

/* 3. 💡 [수정] 한 번이라도 마우스가 올라갔던 적이 있고(is-hovered) + 현재는 나갔을 때(:not(:hover)) */
.scroll-btn-wrap.is-hovered:not(:hover)::after {
  animation: submenu-bounce-out 0.3s ease-in 1 forwards;
}

/* ──────────────────────────────────────────────
 * 🎬 키프레임 (기존과 동일)
 * ────────────────────────────────────────────── */
@keyframes bounce-in {
  0% { 
    opacity: 0; 
    transform: scale(0.36); 
  }
  45% { 
    opacity: 1; 
    transform: scale(1.08); 
  }
  70% { 
    opacity: 1; 
    transform: scale(0.94); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1); 
  }
}

@keyframes submenu-bounce-out {
  0% { 
    opacity: 1; 
    transform: scale(1); 
  }
  100% { 
    opacity: 0; 
    transform: scale(0.36); 
  }
}


.main-user-area.on-visual .scroll-btn-wrap {
  visibility: visible;
  opacity: 1;
}



.scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-100);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 28px rgba(19, 19, 24, 0.08);
  z-index: 1;
}

/* 1. 💡 페이지 처음 로드되었을 때의 깨끗한 순정 상태 (절대 안 움직임) */
.scroll-btn-ico {
  width: 24px;
  transform: translateY(0);
  
  /* 💡 [핵심] 처음 진입 시엔 애니메이션 없이 기본 퇴장 애니메이션을 세팅해 둡니다.
     다만 이 상태에서는 is-hovered 클래스가 없어 로딩 시 실행되지 않습니다. */
  animation: arrow-bounce-out 0.35s ease-in 1 forwards;
}

/* 2. 💡 마우스가 올라갔을 때 (Hover) -> 2단 진동하며 위에서 멈춤 */
.scroll-btn-wrap:hover .scroll-btn-ico {
  animation: arrow-bounce-in 0.58s ease-out 1 forwards;  
}

/* 3. 💡 마우스가 나갔을 때 (Leave) -> 2단 진동하며 아래(제자리)로 리셋 */
.scroll-btn-wrap.is-hovered:not(:hover) .scroll-btn-ico {
  animation: arrow-bounce-out 0.45s ease-out 1 forwards;
}


/* ──────────────────────────────────────────────
 * 🎬 1. 화살표 들어올 때 (오버) 애니메이션 
 * ────────────────────────────────────────────── */
@keyframes arrow-bounce-in {
  0% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-8px); /* 1차: 목표치인 -5px을 뚫고 확 올라감 */
  }
  75% {
    transform: translateY(-4px); /* 2차: 살짝 쿵 내려앉으며 쿠션감 생성 */
  }
  100% {
    transform: translateY(-5px); /* 최종: -5px 지점에 쫀득하게 멈춰 대기 */
  }
}

/* ──────────────────────────────────────────────
 * 🎬 2. 화살표 나갈 때 (리브) 애니메이션
 * ────────────────────────────────────────────── */
@keyframes arrow-bounce-out {
  0% {
    transform: translateY(-5px); /* 올라가서 멈춰있던 상태에서 시작 */
  }
  45% {
    transform: translateY(3px);  /* 1차: 바닥인 0을 뚫고 밑으로 내려앉음 */
  }
  75% {
    transform: translateY(-1px); /* 2차: 반동으로 다시 살짝 위로 튀어오름 */
  }
  100% {
    transform: translateY(0);    /* 최종: 정중앙(0)에 완벽하게 안착 */
  }
}




@keyframes bounce-gradient {
  0% {
    opacity: 0;
    transform: scale(0.36);
  }

  45% {
    opacity: 1;
    transform: scale(1.08);
  }

  70% {
    opacity: 1;
    transform: scale(0.94);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* animtion bounce */
@keyframes bounce-scale {
  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(4px);
  }

  55% {
    transform: translateY(-2px);
  }

  75% {
    transform: translateY(2px);
  }
}





/* user overview */
.recommend-overview {
  display: flex; 
  justify-content: space-between; 
  align-items: stretch;
  gap: 1.7%;
  width: 100%;
  padding-top: 88px;
}
.record-board {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  border: 1px solid var(--line-gray1);
  border-radius: 8px;
  background: var(--white);  
  width: 14.7%;
}
.record-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.redcord-card-tit {
  position: relative;
  width: calc(100% - 48px);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.56px;  
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;  
  transition: all 0.2s;
}
.redcord-card-tit:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 6px;           
  height: 6px;          
  border-top: 1.5px solid var(--gray-800);
  border-right: 1.5px solid var(--gray-800);
  opacity: 0;
  transform: rotate(45deg); 
  transition: all 0.2s;
}
.record-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 48px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.48px;
  transition: all 0.2s;
}
.state-done {
  background: #e9f4ff;
  color: #333aff;
}
.state-pending {
  background: #ffecec;
  color: #ff0000;
}

.record-card:hover .redcord-card-tit {
  padding-left: 12px;
}
.record-card:hover .redcord-card-tit:before {
  opacity: 1;
}
.record-card:hover .state-done {
  background-color: rgba(51, 58, 255, 0.60);
  color: var(--white);
}
.record-card:hover .state-pending {
  background-color: rgba(255, 0, 0, 0.60);
  color: var(--white);
}
.link-board {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;  
  width: 23.2%;
}
.link-card {
  padding: 20px;
  border: 1px solid var(--line-gray1);
  border-radius: 8px;
  background: var(--white);    
  transition: all 0.3s;
}
.link-card:hover {
  background: linear-gradient(75deg, #151519 72.58%, #7B01FF 99.63%);
  color: var(--white);
}
.link-copy {
  position: relative;
}
.link-copy p.link-copy-tit {
  margin-bottom: 10px;
  color: var(--gray-800);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.6px;  
}
.link-copy p {
  color: var(--gray-500);
  font-size: 1.3rem;
  line-height: 1.5;
}
.record-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;  
  width: 20px;
  height: 20px;
  background: url(/images/common/ico-arrow-right.png) no-repeat center center/12px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
}
.link-card:hover .link-copy p.link-copy-tit {
  color: var(--white);
}
.link-card:hover .link-copy p {
  color: var(--white);
}
.link-card:hover .record-arrow {
  background-image: url(/images/common/ico-arrow-right-white.png);
}
.summary-board {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  width: 57.3%;
  padding: 16px;
  border: 1px solid var(--line-gray1);
  border-radius: 8px;
  background: var(--white);   
}
.summary-stats {
  display: flex;         
  gap: 16px;             
  width: 100%;           
  align-items: stretch;
}
.summary-stats>div {
  flex: 1;
}
.summary-card {
  text-align: center;
}
.summary-num {
  display: inline-block;
  position: relative;
  top: 0;
  margin-bottom: 10px;
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: -1.92px;  
  transition: transform 0.2s, top 0.2s;
}
.summary-num:after {
  content: '';
  position: absolute;
  top: 6;
  right: -10px;
  width: 6px;
  height: 6px;
  background-color: #ff0000;
  border-radius: 50%;
}
.summary-card p {
  font-size: 1.4rem;
  font-weight: 600;
}
.summary-card:hover .summary-num {
  top: -4px;
  background: linear-gradient(131deg, #F8481F 0.42%, #FF3CC7 47.5%, #7B01FF 94.58%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  
}
.summary-card:hover p {
  text-decoration: underline;
}
.job-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
/* .job-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--gray-700);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.48px;
}
.job-tag.blue {
  background: #D4F2FF;
  border: 1px solid #B9E0F1;
}
.job-tag.indigo {
border: 1px solid #C5D3F3;
background: #DEE8FF;
}
.job-tag.pink {
border: 1px solid #EECFFE;
background: #F6E4FF; 
} */

/* 추천 공고 */
.recommend-slider-area {
  margin-top: 80px;
  /* overflow: hidden; */
}
.recruit-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recruit-tit-wrap {
  display: flex;
  align-items: center;
}


/* 셀렉트 커스텀 디자인 */
.custom-select-wrap {
  display: inline-block;
  position: relative;
  min-width: 112px;
  margin-right: 10px;
}
.select-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 38px;
  padding: 4px 0 4px 10px;
  background-color: #F1F1F9;  
  border-radius: 4px;  
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gray-800);
}
.select-trigger.bg-white {
  background-color: var(--white);
}
.trigger-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.custom-select-wrap.is-active .select-trigger .trigger-arrow {
  transform: rotate(180deg);
}
.select-options-container {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 100%;
  width: max-content;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0 10px 10px 0 rgba(63, 63, 83, 0.16);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.1s ease, transform 0.1s ease, visibility 0.1s;
  overflow: hidden;
}
.custom-select-wrap.is-active .select-options-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-sheet-header,
.mobile-sheet-footer,
.select-dimmed {
  display: none;
}
.select-options-list {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 250px;
}
.option-item {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 6px 0 8px;
  color: var(--gray-600);
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.15s ease;
}
.option-item:hover {
  background-color: #F0F0F9;
}
.option-item.is-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;  
  background-color: #F0F0F9;  
  color: var(--primary-700);
  font-weight: 600;
}
.option-item.is-selected::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 9px;
  margin-left: 20px;
  background: url("/images/common/ico-check-purple.svg") no-repeat left top/100%;
}





.recruit-slider-tit {
  margin-right: 20px;
  font-size: 2rem;
  font-weight: 600;
}
.recruit-slider-txt {
  color: var(--gray-600);
  font-size: 1.6rem;
}
.recruit-slider-tools {
  display: flex;
  align-items: center;
  gap: 20px;
}
.slider-line {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: var(--gray-400);
}

.recommend-slider-nav {
  display: flex;
  gap: 8px; 
  align-items: center;
}
.slide-nav {
  position: relative; 
  width: 28px;        
  height: 28px;       
  background-color: #ffffff;
  border: 1px solid var(--line-gray1); 
  border-radius: 50%;        
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}
.slide-nav:hover {
  background-color: var(--gray-600);
  border-color: var(--gray-600); 
}
.slide-nav:hover:before {
  border-color: var(--white);
}
.slide-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;        
  height: 8px;       
  border-top: 1.5px solid #1a1a1a;  
  border-left: 1.5px solid #1a1a1a; 
  transform-origin: center;
}
.slide-nav-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg); 
}
.slide-nav-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}
.slide-nav.swiper-button-disabled {
  cursor: default;
  opacity: 1;
  pointer-events: none; 
}

/* .recommend-swiper-wrap {
  width: calc(100% + 10px);
  padding-left: 5px;
  padding-right: 5px;
  transform: translate(-5px);
} */

.recommend-swiper {
  overflow: hidden;
  margin-top: 20px;
}
.swiper {
  /* position: relative;
  left: -2px;*/
  padding-top: 2px;
  padding-left: 2px; 
  padding-right: 5px;
  /* padding-right: 10px; */
  padding-bottom: 30px;
}
.recruit-slide {
  height: auto;
  width: 400px;
}
.job-card {
  position: relative;
  border: 1px solid #DEDEED;
  border-radius: 8px;
  background: #F9F9FD;
  cursor: pointer;
  transition: all 0.3s;
}
.job-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 22px;
  height: 22px;
  background: url(/images/common/border-top-left.png) no-repeat left top/100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.job-card::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: url(/images/common/border-top-right.png) no-repeat left top/100%;
  opacity: 0;
  transition: opacity 0.3s;  
}
.job-card-inner {
  position: relative;
  width: 400px;
  min-height: 268px;
  padding: 20px;    
}
.job-card-inner::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 22px;
  height: 22px;
  background: url(/images/common/border-bottom-left.png) no-repeat left top/100%;  
  opacity: 0;
  transition: opacity 0.3s;    
}
.job-card-inner::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -1px;
  width: 22px;
  height: 22px;
  background: url(/images/common/border-bottom-right.png) no-repeat left top/100%;  
  opacity: 0;
  transition: opacity 0.3s;   
}
.recruit-slide:hover .job-card {
  box-shadow: 0 5px 10px 0 rgba(54, 43, 71, 0.12);
}
.recruit-slide:hover .job-card::before {
  opacity: 1;
}
.recruit-slide:hover .job-card::after {
  opacity: 1;
}
.recruit-slide:hover .job-card .job-card-inner::before {
  opacity: 1;
}
.recruit-slide:hover .job-card .job-card-inner::after {
  opacity: 1;
}

.job-bookmark {
  display: inline-block;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 30px;
  background: url(/images/common/ico-bookmark-add.png) no-repeat center center/24px;
  /* background-color: #B9E0F1; */
  z-index: 10;
  transition: all 0.2s;
}
.job-bookmark:hover {
  background-image: url(/images/common/ico-bookmark-add-purple.png);
}
.job-bookmark.selected {
  background-image: url(/images/common/ico-bookmark-delete.png);
}
.job-bookmark.selected:hover {
  background-image: url(/images/common/ico-bookmark-delete-purple.png);
}
.job-company-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 60px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
}
.job-company-logo img {
  object-fit: contain;
  width: 100%;
}
.job-company {
  display: flex;
  align-items: center;
  gap: 16px;
}
.job-company-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.job-company-nm {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}
.job-company-con {
  position: relative;
  padding-left: 16px;
  color: var(--gray-500);
  font-size: 1.2rem;
  line-height: 1.2;
  word-break: keep-all;
}
.job-company-con:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(/images/common/ico-pin.svg) no-repeat left top/100%;
}
.job-card-txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.4rem;  
}
.job-card-tit {
  width: 100%;
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;  
}
.job-match {
  margin-top: 24px;
}
.job-match-txt {
  display: flex;
  justify-content: end;
}
.job-match-txt span {
  margin-right: 4px;
  color: var(--gray-600);
  font-size: 1.3rem;
  transition: all 0.2s;
}
.match-num-wrap {
  display: flex;
  transition: all 0.2s;
}
.job-match-num {
  font-size: 1.3rem;
  font-weight: 700;
}
.job-match-txt small {
  color: var(--gray-600);
  font-size: 1rem;
  font-weight: 700;
}
.job-match-bar {
  position: relative;
  width: 100%;
  height: 4px;
  margin-top: 4px;
  background: #DDE;
  overflow: hidden;
}
.job-match-bar span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #7B00FF;
}
.recruit-slide:hover .job-card .job-match-txt span {
  transform: translate(-13px, -4px);
}
.recruit-slide:hover .job-card .match-num-wrap {
  color: var(--primary-700);
  transform: scale(1.5);
  transform-origin: right bottom;
}
.job-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.job-footer-tags {
  display: flex;
  gap: 6px;
}
.recommend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.recommend-tag {
  display: inline-block;
  position: relative;
  height: 28px;
  padding: 8px 10px 8px 26px;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
  background: #FFF;  
  font-size: 1.1rem;
  font-weight: 800;
}
.recommend-tag:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 10px;
  width: 12px;
  height: 12px;
  background: url(/images/common/ico-thumbs-up.svg) no-repeat left top/100%;
}
.job-date {
  flex-shrink: 0;
}
.job-date-item {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  padding: 4px 6px;
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: 1.2rem;
}

/* 업종별 공고 */
.job-group-sections {
  padding: 80px 0 50px;
  background-color:#F6F6FB;
}
.industry-swiper {
  margin-top: 20px;
}
.job-card.job-card-s {
  background-color: var(--white);
}
.job-card.job-card-s .job-card-inner {
  min-height: 214px;
}

/* 직무별 공고 */
.job-slider-area {
  margin-top: 80px;
}
.job-swiper {
  margin-top: 20px;
}


/* service link 배너 */
.service-link {
  background-color: #F6F6FB;
}
.banner-link-head {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--gray-700);
}
.banner-link-head h2 {
  font-size: 2.4rem;
  font-weight: 600;
}
.banner-link-head p {
  font-size: 1.8rem;
} 
.service-link-accordion {
  display: flex;
  gap: 1.1%;
  margin-top: 28px;
}
.service-link-card {
  position: relative;
  width: 15.9%;
  height: 300px;
  padding: 50px 2.2% 0;
  border-radius: 8px;
  color: var(--white);
  transition: all 0.4s;
}
.service-link-card1 {
  background: linear-gradient(151deg, #57B9FF 0%, #4385FF 100%);
}
.service-link-card2 {
  background: linear-gradient(151deg, #5789FF 0%, #4E45FC 100%);
}
.service-link-card3 {
  background: linear-gradient(151deg, #AA67F3 0%, #714ED4 100%);
}
.service-link-card4 {
  background: linear-gradient(151deg, #7477FB 0%, #442FE5 100%);
}
.service-link-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 314px;
  height: 300px;
  opacity: 0;
  transition: opacity 0.1s ease 0s;
}
.service-link-card1::after {
  background: url(/images/common/img-woman.png) no-repeat right bottom/100%;
}
.service-link-card2::after {
  background: url(/images/common/img-building.png) no-repeat right bottom/100%;
}
.service-link-card3::after {
  background: url(/images/common/img-man.png) no-repeat right bottom/100%;
}
.service-link-card4::after {
  background: url(/images/common/img-roket.png) no-repeat right bottom/100%;
}
.service-link-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 160px;
  height: 200px;
}
.service-link-desc1 {
  font-size: 1.8rem;
  font-weight: 600;
  word-break: keep-all;
  transition: all 0.1s;
}
.service-link-tit {
  margin-top: 20px;
  font-size: 2.4rem;
  word-break: keep-all;
  line-height: 1.2;
  transition: all 0.1s;
}
.service-link-desc2 {
  display: none;
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.5;
  transition: all 0.1s;
}
.service-link-card.active {
  width: 48.8%;
}
.service-link-card.active::after {
  opacity: 1;
  transition: opacity 0.2s ease-in 0.1s;
}
.service-link-card.active .service-link-desc {
  width: 300px;
}
.service-link-card.active .service-link-desc2 {
  display: block;
}

/* 마감임박 공고 */
.closing-soon {
  padding-top: 80px;
  background-color: #F6F6FB;
}
.closing-swiper {
  margin-top: 20px;
}

/* family site 배너 */
.family-link {
  padding-top: 80px;
  padding-bottom: 120px;  
  background-color: #F6F6FB;
}
.family-link-accordion {
  display: flex;
  gap: 1.4%;
  margin-top: 28px;
}
.family-link-card {
  position: relative;
  width: 24.1%;
  height: 300px;
  overflow: hidden;
  padding: 40px 2.8%;
  border: 1px solid var(--line-gray1);
  border-radius: 8px;
  color: var(--white);
  word-break: keep-all;
  transition: all 0.3s;
}

.family-link-card::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 220px;
  height: 220px;
  z-index: 1;
  opacity: 0;
  transition: all 0.2s;
}
.family-link-card1::before {
  background: url(/images/common/img-educe.png) no-repeat left top/100%;
}
.family-link-card2::before {
  background: url(/images/common/img-inear.png) no-repeat left top/100%;
}
.family-link-card3::before {
  background: url(/images/common/img-auland.png) no-repeat left top/100%;
}
.family-link-card.active::before {
  opacity: 1;
} 


.family-link-card::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.3s;
}
.family-link-card1::after {
  background-color: #FF7105;
}
.family-link-card2::after {
  background-color: #F45957;
}
.family-link-card3::after {
  background-color: #C62F55;
}
.family-link-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
  z-index: 1;
}
.family-link-desc1 {
  display: inline-block;
  padding: 12px 0;
  background-color: transparent;
  border-radius: 4px;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.64px;
  transition: all 0.3s;
}
.family-link-card.active .family-link-desc1 {
  padding: 12px 16px;
}
.family-link-card1.active .family-link-desc1 {
  background-color: #FF7105;
}
.family-link-card2.active .family-link-desc1 {
  background-color: #F45957;
}
.family-link-card3.active .family-link-desc1 {
  background-color: #C62F55;
}
.family-link-tit {
  margin-top: 20px;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
} 
.family-link-desc2 {
  position: relative;
  color: var(--gray-500);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.family-link-desc2 p {
  opacity: 0;
  transition: all 0.3s;
}
.family-link-card.active .family-link-desc2 p {
  opacity: 1;
}
.ico-baloon {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 1;
  transition: all 0.3s;  
}
.family-link-card.active .ico-baloon {
  opacity: 0;
}
.ico-baloon img {
  width: 40px;
}
.family-link-card.active {
  width: 48.8%;
  color: var(--gray-800);
}
.family-link-card.active::after {
  left: 78%;
}

.logo-family-site {
  position: absolute;
  bottom: -25px;
  right: 0;
  opacity: 0;
  transition: all 0.2s;
}
.family-link-card.active .logo-family-site {
  opacity: 1;
}


/* guide link 배너 */
.support-guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2%;
  margin-top: 80px;
}
.support-guide-card {
  flex: 1;
  position: relative;
  min-height: 104px;
  padding: 16px 16px 16px 104px;
  background: var(--white);  
  border: 1px solid var(--white);
  border-radius: 8px;
  word-break: keep-all;
  transition: all 0.2s ease;
}
.support-guide-card::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 72px;
  height: 72px;
}
.support-guide-card1::before {
  background: url(/images/common/img-support1.png) no-repeat left top/100%;
}
.support-guide-card2::before {
  background: url(/images/common/img-support2.png) no-repeat left top/100%;
}
.support-guide-card3::before {
  background: url(/images/common/img-support3.png) no-repeat left top/100%;
}
.support-guide-card4::before {
  background: url(/images/common/img-support4.png) no-repeat left top/100%;
}
.support-tit-row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-700);
  font-size: 1.6rem;
  font-weight: 600;
}
.support-guide-card:hover .support-tit-row {
  text-decoration: underline;
}
.support-tit-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/images/common/ico-angle-right-top.png) no-repeat left top/100%;
}

.support-guide-txt {
  margin-top: 16px;
  color: var(--gray-600);
  font-size: 1.4rem;
}






/* responsive */
@media (max-width: 1669px) {
  /* header */
  .header-inner {
    padding-left: 180px;
  }
}

@media (max-width: 1419px) { 
  /* family link 배너 */
  .family-link-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1339px) {
  /* 서비스 배너 */
  .service-link-card {
    padding-left: 20px;
  }
}

@media (max-width: 1279px) { 
  /* 추천 공고 */
  .record-board {
    width: 18.7%;
  }
  .link-board {
    width: 23.2%;
  }
  .summary-board {
    width: 53.3%;
  }

  /* 서비스 배너 */
  .service-link-desc {
    width: 130px;
  }
  .service-link-card {
    width: 18.9%;
    overflow: hidden;
  }
  .service-link-card.active {
    width: 39.8%;
  }
  .service-link-card.active::after {
    right: -20%;
    opacity: 0.4;
  }

  /*  */
  .family-link-desc1 {
    min-height: 63px;
  }
  .family-link-card.active .family-link-desc1 {
    min-height: 43.2px;
  }

  .family-link-tit {
    margin-top: 10px;
  }
  .family-link-card .family-link-tit {
    margin-top: 0;
  }
  .family-link-card.active .family-link-tit {
    margin-top: 20px;
  }
  .family-link-card.active::before {
    /* opacity: 0; */
    right: 20px;
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 1119px) { 
  /* header */
  .header-inner {
    padding-left: 150px;
  }
  .nav-list {
    gap: 30px;
  }
  .util-area {
    gap: 30px;
  }
  .member-area {
    gap: 15px;
  }
  .btn-area {
    gap: 15px;
  }

  /* footer */
  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 1079px) {
  /* visual search 영역  */
  .suggestion-list {
    flex-wrap: wrap;
  }

  /* 추천 공고 */
  .recommend-overview {
    flex-wrap: wrap;
  }
  .record-board {
    width: 38%;
  }
  .link-board {
    width: 60.3%;
  }
  .summary-board {
    width: 100%;
    margin-top: 1.7%;
  }  

  /* 서비스 배너 */
  .service-link-card {
    height: auto;
    width: 24.7%;
    min-height: 310px;
    padding: 20px;
    overflow: hidden;
  }
  .service-link-card.active {
    width: 24.7%;
  }
  .service-link-card.active::after {
    opacity: 0;
  }
  .service-link-card.active .service-link-desc {
    width: 100%;
  }
  .service-link-desc {
    width: 100%;
  }
  .service-link-desc1 {
    min-height: 42px;
  }
  .service-link-tit {
    min-height: 87px;
  }
  .service-link-desc2 {
    display: block;
  }

  /* family link 배너 */
  .family-link-accordion {
    gap: 1.1%;
  }
  .family-link-card {
    padding: 20px;
  }
  .family-link-card.active::after {
    left: 0;
  }
  .family-link-card.active .logo-family-site {
    opacity: 0;
  }
  .family-link-card,
  .family-link-card.active {
    width: 32.2%;
    color: var(--white);
  }
  .family-link-card.active::before {
    opacity: 0;
  }
  .family-link-desc2 p {
    color: var(--white);
    opacity: 1;
  }
  .family-link-card.active .family-link-desc1 {
    padding-left: 0;
  }


  .ico-baloon {
    display: none;
  }
  


  /* 가이드 링크 배너 */
  .support-guide-list {
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
  }
  .support-guide-card {
    flex: auto;
    width: 49%;
  }

}

@media (max-width: 1023px) { 
  /* footer */
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top>div {
    width: 100%;
  }
  .footer-company {
    margin-bottom: 40px;
  }
  .footer-company-info {
    display: none;
    opacity: 1;
  }
  .footer-company.visible .footer-company-info {
    display: flex;
    opacity: 1;
  }



}

@media (max-width: 959px) { 
  /* header */
  .pc-header {
    display: none;
  }
  .gnb-dimmed,
  .nav-submenu-wrap {
    display: none;
  }
  .mob-header {
    display: block;
  }
  .mob-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 6px 0 20px;
  }
  .menu-btn-wrap {
    z-index: 1;
  }    
  .menu-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px; 
    position: relative;    
    width: 48px;
    height: 48px;
  }
  .menu-toggle-btn span {
    display: block;
    width: 18px;
    height: 2px; 
    background-color: var(--gray-700); 
    transition: all 0.1s ease-in-out; 
    transform-origin: center; 
  }
  .menu-toggle-btn.is-active span:nth-child(1) {
    width: 20px;
    transform: translateY(5px) rotate(45deg); 
  }
  .menu-toggle-btn.is-active span:nth-child(2) {
    top: -5px;
    width: 20px;
    transform: translateY(-5px) rotate(-45deg);
  }
  .mob-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .mob-header.menu-open .mob-overlay {
    display: block;
  }
  .mob-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 54px 0 20px;
    font-size: 2rem;
    font-weight: 600;
  }
  .btn-login {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0;
  }
  .alarm-btn {
    position: relative;
    top: -2px;
  }
  .ico-arrow-right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 24px;
    height: 24px;
  }
  .ico-arrow-right::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid var(--gray-700);
    border-right: 1.5px solid var(--gray-700);
    transform: rotate(45deg);
  }
  .alarm-btn .alarm-icon img {
    width: 28px;
  }
  .alarm-badge {
    left: 24px;
    right: auto;
  }
  .mob-menu-body {
    padding: 0 20px 80px 20px;
  }
  .mob-nav-wrap {
    margin-top: 26px;
  }
  .mob-nav-list li {
    display: flex;
    align-items: center;
    height: 48px;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .mob-nav-list li a {
    justify-content: flex-start;
    width: 100%;
    height: 48px;    
    padding: 10px 0;
  }
  .btn-workspace-wrap {
    margin-top: 32px;
  }
  .btn-workspace {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 56px;
    width: 100%;
    background-color: var(--gray-700);
    border-radius: 8px;
  }
  .btn-workspace span {
    background: var(--gradation-gradation-icon, linear-gradient(135deg, #FF9997 0%, #FF75C5 47.6%, #BD7EFF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .btn-workspace b {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
  }
  .mob-submenu-wrap {
    margin-top: 32px;
  }
  .mob-submenu-wrap>p {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .mob-submenu {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px 12px; 
    width: 100%;
    margin-top: 20px;
  }
  .mob-submenu li {
    text-align: center;
  }
  .mob-submenu-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border: 1px solid var(--line-gray1);
    border-radius: 16px;
  }
  .mob-submenu-copy {
    display: inline-block;
    margin-top: 8px;    
    font-size: 1.4rem;
    font-weight: 600;
  }

  /* clvr header */
  .mob-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mob-sidebar-open {
    display: none;
    position: relative;
  }
  .clvr-body .mob-sidebar-open {
    display: block;
  }
  .mob-sidebar-open-btn {
    width: 40px;
    height: 40px;
    background: url(/images/clvr/ico-showlist.png) no-repeat center center/24px;
  }
  .mob-sidebar-open .clvr-list-num {
    top: 4px;
    right: 4px;
  }
  .mob-clvr-logo {
    display: none;
  }
  .clvr-body .mob-clvr-logo {
    display: block;
  } 

  /* footer */
  .footer {
    gap: 40px;
    padding: 40px 20px 0;
  }
  .footer-logo img {
    width: 106px;
  }
  .footer-links {
    flex-wrap: wrap;
  }
  .footer-links>div {
    width: 100%;
  }
  .footer-link-group {
    display: flex;
    gap: 12px;
  }
  .footer-link-tit {
    flex-shrink: 0;
    min-width: 80px;
    margin-bottom: 0;
  }
  .footer-contact {
    display: flex;
    gap: 12px;
  }  
  .file-list {
    flex-direction: row;
    gap: 20px;
  }
  .file-link {
    font-size: 1.4rem;
    font-weight: 700;
  }
  .family-site strong {
    font-weight: 700;
  }
  .footer-address>p {
    line-height: 1.2;
  }
  .footer-bottom {
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 70px;
    border-top: 1px solid var(--gray-100);
  }
  .policy-links,  
  .footer-bottom>p {
    width: 100%;
  }
  .policy-links {
    justify-content: space-between;
    margin-bottom: 20px;
  }  
  .policy-links a {
    padding: 15px 0;
  }
  .policy-links li::after {
    display: none;
  }
  .copyright {
    text-align: center;
  }

  /* 메인페이지 - visual search 영역 */
  .bg-visual1 {
    left: -50%;
    width: 200%;
    animation: none;
  }
  .bg-visual2 {
    right: -50%;
    width: 200%;    
    animation: none;
  }
  .visual-title {
    font-size: 3.6rem;
    font-weight: 600;
  }
  .visual-description {
    font-size: 1.8rem;
  }
  .visual-search {
    width: 80%;
  }

  /* USER 정보 */
  .user-dashboard {
    padding-top: 30px;
  }

  /* 추천공고 */
  .recruit-slider-txt {
    display: none;
  }

  /* 서비스 배너 */
  .service-accordion-wrap {
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;   
  }
  .banner-link-head {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .banner-link-head h2 {
    font-size: 2.8rem;
  }
  .banner-link-head p {
    line-height: 1.5;
    word-break: keep-all;
  }
  .service-link-accordion {
    gap: 12px;
    width: 1276px;
  }
  .service-link-card {
    width: 310px;
    height: 430px;
  }
  .service-link-card.active {
    width: 310px;
    height: 430px;
  }
  .service-link-desc1 {
    min-height: auto;
  }
  .service-link-tit {
    margin-top: 16px;
  }
  .service-link-desc2 {
    font-size: 1.8rem;
  }
  .service-link-card::after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 210px;
    height: 210px;       
    opacity: 1; 
  }
  .service-link-card.active::after {
    right: 0;
    opacity: 1;
  }
  .service-link-card2::after {
    background-image: url(/images/common/img-building-m.png);
  }

  .family-accordion-wrap {
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;      
  }
  .family-link-accordion {
    width: 954px;
  }
  .family-link-card {
    width: 310px;
    height: 450px;
    background-color: var(--white);
    color: var(--gray-800);
  }
  .family-link-card::after {
    display: none;
  }
  .family-link-desc {
    justify-content: start;
  }
  .family-link-desc2 p {
    color: var(--gray-800);
  }
  .family-link-desc1 {
    min-height: fit-content;
  }
  .family-link-card .family-link-desc1 {
    padding: 12px;
  }
  .family-link-card1 .family-link-desc1 {
    background-color: #FF7105;
  }
  .family-link-card2 .family-link-desc1 {
    background-color: #F45957;
  }
  .family-link-card3 .family-link-desc1 {
    background-color: #C62F55;
  }  
  .family-link-card .family-link-tit {
    margin-top: 16px;
    font-size: 2.4rem;
  }
  .family-link-desc2 p {
    margin-top: 10px;
    color: var(--gray-500);
    font-size: 1.6rem;
    word-break: break-all;
  }
  .family-link-desc2 br {
    display: none;
  }
  .family-link-desc2 span {
    word-break: keep-all;
  }
  .family-link-card::before {
    top: auto;
    bottom: 20px;
    right: 20px;
    width: 270px;
    height: 191px;
    background-position: center center;
    opacity: 1;
  }
}


@media (max-width: 767px) { 
  /* form-input */
  .form-input {
    height: 44px;
    font-size: 1.6rem;
  }

  /* form-textarea */
  .form-textarea {
    font-size: 1.6rem;
  }

  /* btn-bottom-purple */
  .pop-mob-bottom .btn-bottom-purple {
    border-radius: 8px;
    font-size: 1.8rem;
  }

  /* btn-icon-text */
  .btn-icon-text {
    width: 36px;
    padding: 0;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
  }
  .btn-icon-text span {
    font-size: 0;
  }
  .btn-icon-text.btn-filter {
    background: url(/images/common/ico-setting.svg) no-repeat center center / 24px;
  }
  .btn-icon-text.btn-sort {
    background: url(/images/common/ico-array.png) no-repeat center center / 24px;
  }
  .btn-icon-text.btn-reset {
    background: url(/images/common/ico-reset.png) no-repeat center center / 24px;
  }

  .br-767 {
    display: block;
  }

  /* visual search 영역  */
  .main-visual {
    padding: 0 20px;
  }
  .main-visual-content {
    gap: 30px;
    transform: translateY(-120px);
  }
  .suggestion-list {
    display: none;
  }
  .visual-title {
    line-height: 1.2;
  }  
  .visual-description {
    display: none;
  }
  .visual-search {
    width: 100%;
  }  
  .visual-search-helper {
    display: none;
  }
  .chat-input-wrapper {
    min-height: 80px;
    padding-top: 25px;
    border-radius: 40px;
  }
  .chat-textarea {
    height: 32px;
    max-height: 160px;
    font-size: 1.8rem;
  }
  .btn-chat-send {
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
  .chat-input-wrapper.long {
    padding-bottom: 62px;
  }

  /* USER 정보 */
  .section-inner {
    padding: 0 20px;
  }
  .main-user-area {
    height: auto;
  }
  /* .main-user-area {
    width: 100%;
  } */
  .main-user-badge {
    flex-direction: column;
    width: 100%;
  }














  /* 추천공고 */ 
  /* select custom style */

  .select-options-container {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 80vh;
    padding-bottom: 20px;
    background-color: #ffffff;
    border-radius: 16px 16px 0 0;
    z-index: 2000;
    
    /* 아래에서 올라오는 텐션 효과 */
    transform: translateY(100%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  .custom-select-wrap.is-active .select-options-container {
    transform: translateY(0);
  }

  /* 모바일 헤더/푸터 영역 활성화 */
  .mobile-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1.8rem;
    font-weight: 600;
  }
      

  .btn-sheet-close {
    position: relative; /* 가상 요소의 기준점 생성 */
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  /* 🎯 X를 구성하는 두 개의 선 공통 스타일 */
  .btn-sheet-close::before,
  .btn-sheet-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;          
    height: 2px;          
    background-color: #000; 
    border-radius: 1px;   
  }

  /* 첫 번째 대각선 (\) */
  .btn-sheet-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  /* 두 번째 대각선 (/) */
  .btn-sheet-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }


  /* 모바일 리스트 패딩 및 경계선 조절 */
  .option-item {
    height: 48px;
    padding: 0 20px;
    font-size: 16px;
    border-bottom: 1px solid #FAFAFA;
  }

  /* 모바일 하단 보라색 버튼 영역 */
  .mobile-sheet-footer {
    display: block;
    padding: 16px 20px;
  }

  .btn-submit-selection {
    width: 100%;
    height: 58px;
    background-color: var(--primary-800);
    border-radius: 8px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
  }
      
    



  /* 뒷배경 어둡게 처리하는 딤 레이어 활성화 */
  .select-dimmed {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
  }

  .custom-select-wrap.is-active .select-dimmed {
    opacity: 1;
    visibility: visible;
  }









  .recommend-overview {
    gap: 24px;
    padding-top: 145px;
  }
  .record-board {
    flex-direction: row;
    gap: 0;
    width: 100%;
    /* margin-bottom: 24px; */
    padding: 20px 0;
  }
  .record-card {
    flex-direction: column;
    gap: 12px;
    width: 33.3%;
    padding: 0;
    border-right: 1px solid var(--gray-100);
  }
  .record-card:last-child {
    border-right: none;
  }
  .redcord-card-tit {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
  }
  .record-state {
    height: 26px;
    padding: 0 12px;
    font-size: 1.4rem;
  }
  .link-board {
    width: 100%;
  }  
  .link-copy p {
    font-size: 1.4rem;
  }
  .link-copy p.link-copy-tit {
    font-size: 1.6rem;
  }
  .summary-board {
    padding: 20px 10px;
  }
  .summary-stats {
    gap: 10px;
  }
  .summary-num {
    font-size: 3.2rem;
  }
  .summary-card p {
    font-size: 1.5rem;
    line-height: 1.2;
    word-break: keep-all;
  }
  .recommend-slider-nav {
    display: none;
  }
  .slider-line {
    display: none;
  }
  .recruit-slide,
  .job-card-inner {
    width: 310px;
  }
  .job-card-inner {
    min-height: 325px;
  }
  .job-company-logo {
    width: 60px;
    height: 60px;
    padding: 5px;
  }
  .job-company-meta {
    width: calc(100% - 96px);
  }
  .job-company-nm {
    width: 100%;
    font-size: 1.7rem;
    white-space: nowrap;     
    overflow: hidden;       
    text-overflow: ellipsis;
  }
  .job-card-txt {
    gap: 12px;
  }
  .job-card-txt p.job-card-tit {
    font-size: 1.8rem;
  }
  .job-card-txt p {
    font-size: 1.6rem;
  }
  .job-match-txt {
    align-items: center;
  }
  .job-match-num {
    font-size: 2rem;
  }
  .job-footer {
    flex-wrap: wrap;
    gap: 16px;
  }
  .job-footer-tags {
    width: 100%;
  }
  .job-bookmark {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

}

/* [xs 이하] 스마트폰 가로 미만 (575px 이하) */
@media (max-width: 575px) { 
  /* 추천공고 */
}