@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*
    pc버전일때 스타일

*/

  body {
      font-family: 'GmarketSansMedium', sans-serif !important;
  }

  .container {
      width: 100%;
      height:80px;
      border-bottom: 1px solid #FFFFFF;
      /* padding-left: 25px; */

      padding-left: 0; /* 왼쪽 패딩 제거 */
      display: flex;       /* 중앙 정렬을 위한 flex 사용 */
      justify-content: center; /* 수평 가운데 정렬 */
      align-items: center; 
  }
    #header.transparent-header {
    position: absolute;
    top: 0;
    left: 0;
    height:80px;
    width: 100%;
    background: transparent;
    z-index: 10;
    
    }

@media (min-width: 801px) {
    .pc_only {
        display: block;
    }
    .mobile_only {
        display: none;
    }

  .navbar-brand {
    float:none;
    padding: 4px;
    font-size: 18px;
    line-height: 20px;
}

    #main_01 {
    position: relative;
    width: 100%;
    height: 887px;
    overflow: hidden;
    z-index: 1;
    }

    #main_01_h1 {
        margin : 0;
        font-weight: 500;
        font-size: 64px;
        line-height: 126%;
        letter-spacing: 0;
    }
    
    #main_01_h2 {
        margin : 0;
        font-weight: 500;
        font-size: 28px;
        line-height: 65px;
        letter-spacing: 0.45em;
    }


    .slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    }

    .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    }
    .slide iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* iframe에선 직접 적용 안되지만, 아래 방법과 함께 사용 */
      pointer-events: none; /* 슬라이더에서 클릭 방지용 (선택사항) */
    }

    .slide.active {
    opacity: 1;
    z-index: 2;
    }

    .slide-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    top: 45%;
    transform: translateY(-45%);
    
    }

/* 구인구직 버튼 */
/* .apply-button-wrapper {
  position: absolute;
  bottom: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.cta-button {
  width: 475px;
  height: 57px;
  background-color: #002A83;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  border: none;
  cursor: pointer;
    letter-spacing: 1.2px;
} */

.apply-button-wrapper {
  position: fixed; /* 절대 → 고정 위치로 변경 */
  bottom: 230px; /* 초기값은 230px */
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 99999 !important;
  transition: bottom 0.3s ease;
}

.cta-button {
  width: 475px;
  height: 57px;
  background-color: rgba(0, 0, 0, 0.2); /* #000000 + 20% 투명도 */

  color: #FFFFFF;
  font-size: 24px;
  font-weight: 500;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  letter-spacing: 1.2px;
  position: relative;
  z-index: 10000;
}


/* 슬라이드 인디케이터 바 (780x4) */
.progress-indicator {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;       /* 너비 수정 */
  height: 4px;        /* 높이 수정 */
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  z-index: 5;
}

.progress-indicator .bar {
  width: 0%;
  height: 100%;
  background-color: #ffffff;
  transition: width 0.5s ease;
}



/* 두번째 아워워크 섹션 */
#main_02 {
  background-color: #F4F4F4;
  text-align: center;
  padding-bottom: 122px;
  padding-top: 100px;
  background-image: url('/img/main02/bg.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.work-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 12px;
  color:#000000;
}

.work-subtitle {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  color: #7D7D7D;
  font-weight: 500;
  margin-bottom: 50px;
}

.work-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}


.work-item {
  position: relative;
  width: 315px;
  height: 315px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
  cursor: pointer;

  /* 중앙 정렬용 flex 적용 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  z-index : 0 !important;
}

.work-item:hover {
  width: 340px;
  height: 340px;
}

/* 기본 오버레이 (검정 50%) */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.hover-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  background-color: rgba(2, 113, 164, 0.5);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.work-item:hover .hover-overlay {
  opacity: 1;
}

.text {
  color: white;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}
.text > h4 {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
}

.text > h3 {
  font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #FFFFFF;
    margin-top: 0px;
}

.text > p {
  font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
}



/*footer - pc버전*/
.site-footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 0px 40px 30px;
  font-family: sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  flex: 0 0 auto;
}

.footer-logo {
  width:139.1px;
  /* height : 56.09px; */
}

.footer-right {
  flex: 1;
  text-align: left;
  padding-left: 100px;
  padding-top : 50px;
  min-width: 280px;
}

.footer-company {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  margin:0;
  color : #333333;
}

.footer-info {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #333;
  margin: 2px 0;
}

.footer-copy {
  font-family: 'Pretendard', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  color: #B4B3B3;
  margin: 0;
}


.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-bg.show {
  display: flex;
}

.modal-box {
  font-family: 'Pretendard', sans-serif;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: -25px;
  right: -13px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
}
.modal-close img {
  width: 25px; /* 필요 시 크기 조절 */
  height: 25px;
  display: block;
}
.modal-box h2 {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
}

.form-subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 16px;
  margin-bottom: 25px;
}

.form-wrapper label {
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  margin: 0px;
  display: block;
  border: 1px solid #eee;
  padding: 14px;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border: 1px solid #eee;
  background-color: rgba(217, 217, 217, 0.2);

  color: #333;
  box-sizing: border-box;
}

.form-wrapper textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  background-color: #000000;
  color: white;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 5%;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #001d5a;
}
#AD {
  background: url('/img/ad/main_bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 69px 20px;
  color: white;
  height: 457px;
}

.ad-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.ad-left {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.ad-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 100%;
  color: #FFFFFF;
}

.ad-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.icon-boxes {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

.icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-item {
  width: 96px;
  height: 96px;
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.icon-item:hover {
  width: 96px;
  height: 96px;
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.icon-item img {
  width: 56px;
  height: 56px;
}

.icon-wrap span {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 5%;
  color: white;
  text-align: center;
}

.ad-right {
  font-size: 40px;
  font-weight: 500;
  line-height: 126%;
  white-space: nowrap;
  color: #FFFFFF;
  text-align: right;
}

/* 
#AD {
    background: url('/img/ad/main_bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 69px 20px;
    height: 456px;
  }

.ad-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .ad-left {
    display: flex;
    flex-direction: column;
    gap: 27px;
  }

  .ad-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    color: #FFFFFF;
  }

  .icon-boxes {
    display: flex;
    gap: 16px;
  }

  .icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .icon-item {
    width: 96px;
    height: 96px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }

  .icon-item img {
    width: 56px;
    height: 56px;
  }

  .icon-wrap span {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 5%;
    text-align: center;
  }

  .ad-right {
    text-align: right;
    font-size: 40px;
    font-weight: 500;
    line-height: 126%;
    padding-top : 38px;
    color: #FFFFFF;
  } */

}

@media (max-width: 800px) {
  .container{
    padding-top: 5px;
    height: 55px;
  }
  .navbar-header {
    margin:0px;
  }
  .pc_only {
      display: none;
  }
  .mobile_only {
      display: block;
  }

  #main_01 {
      position: relative;
      width: 100%;
      height: 686px;
      overflow: hidden;
      z-index: 1;
      }

    #main_01_h1 {
        margin : 0;
        font-weight: 500;
        font-size: 32px;
        line-height: 126%;
        letter-spacing: 0;
    }
    
    #main_01_h2 {
        margin : 0;
        font-weight: 500;
        font-size: 15px;
        line-height: 65px;
        letter-spacing: 0.45em;
    }


    .slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    }

    .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    }

    .slide.active {
    opacity: 1;
    z-index: 2;
    }

    .slide-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    top: 40%;
    /* text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); */
    }

    /* 구인구직 버튼 */
    .apply-button-wrapper {
      position: absolute;
      bottom: 80px;
      width: 100%;
      display: flex;
      justify-content: center;
      z-index: 5;
    }

    .cta-button {
      width: 475px;
      height: 57px;
      background-color: #002A83;
      color: #FFFFFF;
      font-size: 24px;
      font-weight: 700;
      border: none;
      cursor: pointer;
        letter-spacing: 1.2px;
    }

    /* 슬라이드 인디케이터 바 (780x4) */
    .progress-indicator {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 357px;       /* 너비 수정 */
      height: 4px;        /* 높이 수정 */
      background-color: rgba(255, 255, 255, 0.3);
      border-radius: 2px;
      overflow: hidden;
      z-index: 5;
    }

    .progress-indicator .bar {
      width: 0%;
      height: 100%;
      background-color: #ffffff;
      transition: width 0.5s ease;
    }


    /* 두번째 아워워크 섹션 */
    #main_02 {
      background-color: #F4F4F4;
      text-align: center;
      padding-bottom: 57px;
      padding-top: 57px;
      /* background-image: url('/img/main02/bg.png'); */
      background-repeat: no-repeat;
      background-size: contain;
    }

    .work-title {
      
      font-size: 28px;
      font-weight: 500;
      line-height: 100%;
      margin-bottom: 12px;
      color:#000000;
    }

    .work-subtitle {
      font-family: 'Pretendard', sans-serif;
      font-size: 16px;
      color: #7D7D7D;
      font-weight: 500;
      margin-bottom: 50px;
    }

    .work-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      max-width: 1440px;
      margin: 0 auto;
    }
.bg-stack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
}

.bg-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
    .work-section {
      position:relative;
      z-index: 1;
    }
    .work-item {
      position: relative;
      width: 368px;
      height: 368px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      transition: all 0.3s ease;
      cursor: pointer;

      /* 중앙 정렬용 flex 적용 */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .work-item:nth-child(2),
    .work-item:nth-child(3),
    .work-item:nth-child(4)
     {
      height: 171px;
    }

    .work-item:nth-child(2):hover,
    .work-item:nth-child(3):hover,
    .work-item:nth-child(4):hover
     {
      height: 368px;
    }

    .work-item:nth-child(2):hover .pc_only,
    .work-item:nth-child(3):hover .pc_only,
    .work-item:nth-child(4):hover .pc_only
     {
      display: block;
    }
    /* 기본 오버레이 (검정 50%) */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
      transition: opacity 0.3s ease;
    }

    .hover-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      transform: translate(-50%, -50%);
      background-color: rgba(2, 113, 164, 0.5);
      z-index: 2;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .work-item:hover .hover-overlay {
      opacity: 1;
    }

    .text {
      color: white;
      z-index: 3;
      text-align: center;
      padding: 0 20px;
    }
    .text > h4 {
      font-family: 'Pretendard', sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;
        color: #FFFFFF;
    }

    .text > h3 {
      font-family: 'Pretendard', sans-serif;
      margin : 0;
        font-weight: 700;
        font-size: 32px;
        line-height: 120%;
        color: #FFFFFF;
    }

    .text > p {
      font-family: 'Pretendard', sans-serif;
        font-weight: 600;
        font-size: 13px;
        line-height: 16px;
        color: #FFFFFF;
        padding: 10px 0;
    }


    #AD {
        height: 214px;
        background: url('/img/ad/main_bg_m_01.jpg') no-repeat center center;
        background-size: cover;
        padding: 36px 20px;
        color: white;
    }
    .ad-inner {
  max-width: 100%;
  margin: 0 auto;
}

.ad-left {
  display: flex;
  flex-direction: column;
}

.ad-title {
  padding-left: 10px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
  color: #FFFFFF;
}

.ad-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.icon-boxes {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
}

.icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-item {
  width: 76px;
  height: 76px;
  background-color: rgba(0, 0, 0, 0.2); /* 배경 #000000 20% */
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.icon-item img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.icon-wrap span {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 100%;
  letter-spacing: 5%;
  color: white;
}




/*모바일 푸터  시작 */
.footer {
  background-color: #fff;
  padding: 40px 20px 20px 20px;
  font-family: 'Pretendard',sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center; /* ✅ 수직 정렬 */
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-logo-wrap {
  flex: 0 0 auto;
}

.footer-logo {
  width: 82px;
  height: auto;
  display: block;
}

.footer-brand {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  color: #333333;
}

.footer-bottom {
  max-width: 500px;
  margin: 20px auto 0 auto;
  padding-top: 10px;
}

.footer-address,
.footer-details {
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  margin: 0 0 4px 0;
  color: #7D7D7D;
}

.footer-details span {
  display: inline-block;
  margin: 0 6px;
}

.footer-copyright {
  font-size: 11px;
  font-weight: 500;
  color: #B4B3B3;
  line-height: 100%;
  padding-top:30px;
}
.navbar-brand {
  padding: 2px 0px 0px 0px !important;
}
.navbar-brand > img {
  width: 93px !important;
}

  
    /*상담신청 섹션*/
  .apply-section-wrapper {
    background : url('/img/ad/main_bg_02.jpg');
    background-size : contain;
    padding: 57px 20px;
    display: flex;
    flex-direction: column;
    height: 771px;
  }
    /* 안쪽 컨테이너 */
  .form-container {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 15px;
    width: 100%;
    max-width: 374px;
    max-height: 587px;
  }
  .form-header {
    text-align: center;
    margin-bottom: 20px;
  }
  .form-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
  }

  .form-subtitle {
    font-weight: 500;
    font-size: 12px;
    color: #7D7D7D;
  }




  /* 타이틀 */
.form-title {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
  line-height: 100%;
  color: #FFFFFF;
}

.form-subtitle {
  font-family: 'Pretendard', sans-serif;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 30px;
  color: #FFFFFF;
}

/* 입력 양식 */
.form-wrapper label {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin: 0;
  height: 41px;
  padding: 10px;
  color: #FFFFFF;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  font-family: 'Pretendard', sans-serif;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  font-weight: 400;
  border: 1px solid #ddd;
  box-sizing: border-box;
  color: #D9D9D9;
}

.form-wrapper textarea {
  min-height: 100px;
  resize: vertical;
}


.form-group {
  margin-bottom: 16px;
}
.form-label-box{
  background-color: rgba(0, 0, 0, 0.2); /* label/input에만 적용 */
  color: #FFFFFF;
}


.form-input-box {
  background-color: rgba(0, 0, 0, 0.4); /* label/input에만 적용 */
  color: #FFFFFF;
}

.form-label-box label {
  font-weight: 700;
  font-size: 15px;
  display: block;
}

.form-input-box input,
.form-input-box select,
.form-input-box textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  outline: none;
}

.form-input-box input:placeholder-shown,
.form-input-box select:placeholder-shown,
.form-input-box textarea:placeholder-shown {
  width: 100%;
  border: none;
  background: transparent;
  color: #7D7D7D;
  font-size: 15px;
  font-weight: 400;
  outline: none;
}

.form-input-box select {
  padding: 5px;
    height: 38px;
}
.form-input-box input::placeholder,
.form-input-box textarea::placeholder,
.form-input-box select {
  color: #ccc;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: white;
  color: #333333;
  line-height: 100%;
  font-size: 20px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  height: 57px;
          letter-spacing: 1px;
}

}