/* 이벤트 템플릿 1417 스타일 */
@font-face {
  font-family: 'GMarketSans';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'GMarketSans';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'GMarketSans';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

.tracking-in-expand{-webkit-animation:tracking-in-expand 1.25s cubic-bezier(.215,.61,.355,1.000) both;animation:tracking-in-expand 1.25s cubic-bezier(.215,.61,.355,1.000) both}
@-webkit-keyframes tracking-in-expand{0%{letter-spacing:-.5em;opacity:0}40%{opacity:.6}100%{opacity:1}}@keyframes tracking-in-expand{0%{letter-spacing:-.5em;opacity:0}40%{opacity:.6}100%{opacity:1}}
main{
  width: 100% !important;
}
:root {
  --base-width: 1200;
}


main{width: 100% !important;}


.sec2{
  background: #061522;
}

.title{
  position: absolute;
  top: 27.2%;
  left: 15%;
  width: calc(363 / var(--base-width) * 100%);
  z-index: 10;
}
/* 플로팅 스티커 영역 */
.floating_wrap {
  width: 130px;
  position: absolute;          /* fixed ❌ */
  top: 150px;                  /* 시작 위치 */
  right: calc(-1 * (130px + 24px));
  z-index: 3;
  will-change: transform;
}
/* 클릭 영역 */
.floating_item {
  display: block;
  width: auto;       /* 원하는 크기로 조절 */
  cursor: pointer;
}

/* 이미지 */
.floating_item img {
  width: 100%;
  height: auto;
  display: block;
}

.topbt{
  width: 50px;
  position: absolute;
  top: 450px;
  right: -80px;
  z-index: 1;
  will-change: transform;
}

.topbt img{
  /* width: 100%; */
  display: block;
}
/* ===== 모바일 완전 제거 ===== */
@media all and (max-width: 768px) {
  .floating_wrap {
    display: none !important;
  }
  .topbt{
    display: none !important;
  }
}
.footer{
  position: relative;
  z-index: 2;
}

.reload{
  position: absolute;
  top: 40.5%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(836 / var(--base-width) * 100%);
  z-index: 10;
}
/* 스와이퍼 전체 영역 */
.line{
  position: absolute;
  top: 28.5%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(836 / var(--base-width) * 100%);
  z-index: 10;
  /* pointer-events: none; */
  overflow: hidden;
  border-radius: 10px;
}
.lineimg{
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.image-swiper{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: absolute;
  /* top: 28.5%; */
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  /* width: calc(840 / var(--base-width) * 100%); */
}
.image-swiper img{
  width: 100%;
}

/* 슬라이드 공통 */
.imageSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 이미지 들어갈 경우 */
.imageSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.textarea{
  background: #061522;
  padding-bottom: 5%;
}
.textarea textarea{
  display: block;
  width: calc(840 / var(--base-width) * 100%);
  resize: none;
  font-size: clamp(14px, 3vw, 20px);
  line-height: 1.25em;
  border: 4px solid #ebd9ad;
  outline: none;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 15px;
}
@media (max-width: 768px){
  .textarea textarea{
    padding: 2.5%;
  }
}
.textarea textarea:focus{
  outline: none;
  border: 4px solid #e9bf90;
}

















/* wrapper */
.agree_wrap {
  display: flex;
  align-items: center;
}

/* 실제 체크박스 숨김 */
.agree_checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* label 전체 클릭 가능 */
.agree_label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: #111;
  line-height: 1.4;
}

/* 커스텀 체크 UI */
input[type="checkbox"]{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}

.agreement{
  margin:5% 0;
}

.agreement__input{
  position:absolute;
  opacity:0;
  width:0;
  height:0;
  pointer-events:none;
}

.agreement__label{
  display:flex;
  justify-content: center;
  align-items:start;
  gap: 5px;
  cursor:pointer;
  font-size: clamp(15px, 2.5vw, 24px);
  line-height:1.2;
  color:#111;
  font-weight: 700;
}

.agreement__check{
  width:20px;
  height:20px;
  border:3px solid #8d8d8d;
  border-radius:4px;
  box-sizing:border-box;
  position:relative;
  flex-shrink:0;
}

.agreement__input:checked + .agreement__label .agreement__check{
  background-color:#6b6b6b;
  border-color:#6b6b6b;
}

.agreement__input:checked + .agreement__label .agreement__check::after{
  content:'';
  position:absolute;
  left:4px;
  top:1px;
  width:6px;
  height:10px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}






/* 모달 배경 */
.addr-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* 활성화 */
.addr-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 팝업 본체 (기본: PC) */
.addr-modal__inner {
  width: 500px;
  max-width: 98%;
  height: 500px;
  max-height: 90vh;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

/* 닫기 버튼 */
.addr-modal__close {
  position: absolute;
  top: 6px;
  right: 8px;
  z-index: 10;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* 다음 주소 API 영역 */
#daumPostcode {
  width: 100%;
  height: 100%;
}
#__daum__layer_1{
  width: 100% !important;
}
/* =========================
   768px 이하 (반응형 팝업)
   ========================= */
@media (max-width: 768px) {
  .addr-modal__inner {
    width: 92%;
    height: 70vh;
    max-height: 520px;
    border-radius: 6px;
  }
}

/* 480px 이하 (소형 모바일) */
@media (max-width: 480px) {
  .addr-modal__inner {
    width: 94%;
    height: 75vh;
  }
  .post_search .placeholder{
    font-size: 14px !important;
  }
}









    /* form */
  .agreement--display{
    margin: 5% 2%;
  }
  #form_table{
    font-family: 'GmarketSans';
    /* background: linear-gradient(to right, #2b73d9 0%, #0a357f 100%); */
  }
  #form_table{
    /* display: none; */
    padding: 0 0 5%;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    position: relative;
    /* left: 0.25%;*/
  }
  #form_table.active{
    display: block;
  }
  #form_table form{
    display: block;
    box-sizing: border-box;
    width: 90%;
    margin: 0 auto;
    background-color: white;
    padding: 0 4%;
  }
  #form_table form.active{
    display: block;
  }
  #form_table .form-container{
    width: 100%;
    border-collapse: collapse;
  }
  #form_table .input-field{
    padding-left: 2%;
    box-sizing: border-box;
    border: 2px solid #a1a0a3;
  }
  #form_table .input-field:focus{
    outline: none;
  }
  #form_table .agree_wrap{
    padding: 7% 0%;
  }
  #form_table td{
    padding: 1.5% 3.5%;
  }
  #form_table .text{
    width: 100%;
  }
  #form_table .tip{
    font-size: 24px;
    font-weight: 700;
    /* white-space: nowrap; */
    line-height: 1.05em;
  }
  #form_table .find-zipcode {
    display: flex;
  }
  #form_table .find-zipcode .zipcode{
    /* padding: 0 5.5%; */
    width: 30%;
    white-space: nowrap;
    margin-left: 2%;
    background-color: black;
    color: white;
    font-size: 20px;
    font-family: 'GmarketSans';
    outline: none;
    border: 1px solid white;
    cursor: pointer;
    transition: .2s;
  }
  #form_table .find-zipcode .zipcode:hover{
    background-color: grey;
  }
  #form_table .info_po{
    padding-bottom: 2%;
    font-size: 16px;
    line-height: 22px;
  }
  #form_table .marg_auto{
    display: block;
    width: 80%;
    margin-left: auto;
  }
  #form_table [class^="agree_chk"]{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 3%;
    display: flex;
    align-items: center;
    gap: 2%;
    cursor: pointer;
    padding: 0 0 0 20%;
  }
  #form_table .agreement .textci{
    font-size: clamp(10px, 2.5vw, 18px);
    font-weight: normal;
    line-height: 1.25em;
    margin-bottom: 6%;
    color: #4d4d4d;
    padding: 5% 0 0 20%;
  }
  #form_table .agree_wrap .textci em{
    font-weight: 600;
  }
  /* check form */
  #form_table .check_wrap [id^="check_btn"] {
    display: none;
  }
  #form_table .check_wrap [id^="check_btn"] + label {
    cursor: pointer;
  }
  #form_table .check_wrap [id^="check_btn"] + label:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 2px solid #b1b1b1;
    border-radius: 4px;
    background-color: white;
  }
  #form_table .check_wrap [id^="check_btn"]:checked + label:before {
    content: '';
    background-color: #b1b1b1;
    border-color: #b1b1b1;
    background-image: url('/Users/Event/event/issue1176/image/check.png');
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: 50%;
  }
  #wrap {
    display: none;
    position: absolute;
    border: 2px solid #a7a7a7;
    width: 50%;
    left: 40%;
    z-index: 500;
    height: 400px;
  }

  @media all and (max-width: 768px) {
    #wrap{
      max-width: 90% !important;
      left: 50%;
      transform: translateX(-50%);
      max-width: 600px;
    }
  }
  .form-list{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    gap: 10px;
  }
  .form-list .form-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 5%; */
  }
  .form-list .form-item.work-type{
    padding: 3% 0;
  }
  #form_table .tip{
    width: 20%;
  }
  #form_table .input-field{
    width: 80%;
    height: 70px;
  }
  #form_table .find-zipcode{
    width: 80%;
  }
  #form_table hr{
    display: block !important;
    width: 100%;
    position: relative;
  }
  .form-list .form-item.gender{
    justify-content: start;
  }
  .gender input[type='radio']{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
  }
  .gender input[type='radio']:checked {
    background-color: #145861;
    border: 3px solid white;
    box-shadow: 0 0 0 1.6px #145861;
  }
  .form-list .form-item.gender > div{
    margin-right: 3%;
  }
  .form-list .form-item .fsz{
    font-size: 20px;
    display: block;
    padding: 0 0 0 5px;
  }
  @media all and (max-width: 768px) {
    #form_table .input-field{
      height: 50px;
    }
    #form_table .tip{
      font-size: clamp(12px, 3vw, 18px);
    }
    #form_table [class^="agree_chk"]{
      font-size: clamp(13px, 3vw, 20px);
    }
    #form_table .find-zipcode .zipcode{
      font-size: clamp(10px, 3vw, 16px);
    }
    #form_table .info_po{
      font-size: clamp(8px, 2.5vw, 14px);
      line-height: clamp(12px, 2.5vw, 18px);
    }
    #form_table .agree_wrap .textci{
      font-size: clamp(10px, 3vw, 16px);
      line-height: clamp(20px, 3vw, 32px);
    }
    #form_table .agree_wrap .textci span{
      font-size: 0.9em; 
      color: #7e7e7e;
      line-height: clamp(16px, 3vw, 30px);
    }
    #form_table [class^="agree_chk"],
    #form_table .agree_wrap .textci{
      padding: 0 0 0 10%;
    }
    .form-list .form-item .tipera{
      font-size: 0.75em;
    }
  }
  @media all and (max-width: 450px) {
    .form-list{
      gap: 5px;
    }
    #form_table .input-field {
      height: 35px;
      border: 1px solid #bdb2d5;
    }
    #form_table .agree_wrap{
      padding-left: 0;
    }
    #form_table hr{
      width: 100%; position: relative; left: 0; transform: translateX(0%);
    }
    #form_table [class^="agree_chk"] span{
      top: 0;
    }
    #form_table .check_wrap [id^="check_btn"] + label:before{
      width: 15px;
      height: 15px;
    }
    #form_table .check_wrap [id^="check_btn"]:checked +    #wrap {
        display: none;
        position: absolute;
        border: 2px solid #a7a7a7;
        width: 50%;
        left: 40%;
        z-index: 500;
        height: 400px;
    }

    @media all and (max-width: 768px) {
        #wrap{
            max-width: 90%;
            left: 50%;
            transform: translateX(-50%);
            max-width: 600px;
        }
    } label:before{
      background-size: 15px;
    }
    #form_table [class^="agree_chk"],
    #form_table .agree_wrap .textci{
      padding: 0 0 0 0%;
    }
  }
  @media all and (max-width: 400px) {
    #form_table .tip{
      width: 25%;
    }
    #form_table .input-field,
    #form_table .find-zipcode,
    #form_table .marg_auto{
      width: 75%;
    }
  }
    @media screen and (max-width: 1024px) {
  #men, #women {
    width: 18px;
    height: 18px;
  }
  #form_table .check_wrap [id^="check_btn"]:checked + label:before{background-size: 20px;}
}

@media screen and (max-width: 768px) {
  #men, #women {
    width: 16px;
    height: 16px;
  }
  #form_table .check_wrap [id^="check_btn"]:checked + label:before{background-size: 18px;}
}

@media screen and (max-width: 480px) {
  #men, #women {
    width: 15px;
    height: 15px;
  }
}

@media screen and (max-width: 400px) {
  #men, #women {
    width: 15px;
    height: 15px;
  }
  #form_table .check_wrap [id^="check_btn"]:checked + label:before{background-size: 16px;}
  .agreement__label{
    font-size: 13px;
    align-items: center;
  }
}


/* =========================
   근무형태 (라디오 그룹)
   ========================= */
.work-type {
  align-items: flex-start;
}

.work-type__group {
  width: 80%;
  display: flex;
  gap: 10px 24px;
  align-items: center;
}

/* 라디오 기본 제거 */
.work-type__item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

/* 체크 상태 */
.work-type__item input[type="radio"]:checked {
  background-color: #000000;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.6px #000000;
}

/* 라벨 텍스트 */
.work-type__item span {
  margin-left: 6px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

/* =========================
   반응형 보정
   ========================= */
@media (max-width: 768px) {
  .work-type__group {
    gap: 8px 16px;
  }

  .work-type__item span {
    font-size: 16px;
  }

  .work-type__item input[type="radio"] {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .work-type__group {
    flex-wrap: wrap;
    gap: 5px 12px;
  }

  .work-type__item span {
    font-size: 14px;
  }
}
















[class^="taber"]{
  display: none;
}
[class^="taber"].active{
  display: block;
}
.submit_Btn{
  cursor: pointer;
}
.submit_Btn button{
  cursor: pointer;
}
.submit_Btn img{
  display: block;
  width: 100%;
}















.imageSwiper-prev,
.imageSwiper-next{
  position: absolute;
  top: 35%;
  z-index: 10;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  cursor: pointer;
}

.imageSwiper-prev{
  left: 8%;
}

.imageSwiper-next{
  right: 8%;
}

.imageSwiper-prev::after,
.imageSwiper-next::after{
  font-size: 25px;
  font-weight: 700;
  color: #fbd797;
}

@media (max-width: 768px){
  .imageSwiper-prev,
  .imageSwiper-next{
    width: 38px;
    height: 38px;
  }

  .imageSwiper-prev::after,
  .imageSwiper-next::after{
    font-size: 20px;
  }
}