/* =========================
   큰 이미지 프레임 (풀스크린)
========================= */
.frame_application{
  position:relative;
  width:100vw;
  min-height:140vh;   /* 필요하면 100vh로 줄여도 됨 */
  overflow:hidden;
  border-radius:0;
  box-shadow:none;
}

/* 배경 이미지 */
.application_bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================
   위에 겹치는 3개 이미지 (좌표 배치)
========================= */
.frame_overlay_application{
  position:relative;
  width:100%;
  min-height:100vh;
}

/* 공통: 안 잘리게 + 붙어있는 느낌 + hover 없음 */
.frame_overlay_application img{
  position:absolute;
  height:auto;
  object-fit:contain;
  display:block;

  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);

  box-shadow:none;
  opacity:0.98;
  filter:brightness(0.97);

  transform:none !important;
  transition:none !important;
}

/* 1번 이미지 (sub_img2_application.png) */
.frame_overlay_application img:nth-child(1){
  left:22%;
  top:10%;
  width:60%;
}

/* 2번 이미지 (sub_img_application.png) */
.frame_overlay_application img:nth-child(2){
  left:25%;
  top:64%;
  width:20%;
}

/* 3번 이미지 (title_application.png) */
.frame_overlay_application img:nth-child(3){
  right:25%;
  top:14%;
  width:50%;
}

/* 혹시 남아있는 hover 효과 완전 차단 */
.frame_overlay_application img:hover{
  transform:none !important;
  transition:none !important;
}

/* =========================
   ✅ 상담 폼 레이어 (application 위에 올리기)
========================= */
.apply_form{
  position:absolute;
  left:60%;
  top:30%;                 /* 폼 전체 위치(위/아래 조절) */
  transform:translateX(-50%);
  z-index:50;

  width:min(360px, 92vw);
  padding: 18px 18px 22px;
  box-sizing:border-box;
}

/* 라벨 */
.f_label{
  display:block;
  font-size:14px;
  font-weight:800;
  color:#ffffff;
  margin: 12px 6px 8px;
  letter-spacing:0.2px;
}
.req{ color:#ff2b2b; }

/* 입력/셀렉트 공통 */
.f_input, select{
  width:100%;
  height:48px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.95);
  outline:none;
  padding: 0 16px;
  box-sizing:border-box;

  font-size:14px;
  background: rgba(255,255,255,.35);
  color:#000;
}

.f_input::placeholder{
  color: rgba(0, 0, 0, 0.85);
}

/* select 화살표 */
.select_wrap{ position:relative; }
.select_wrap select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding-right:44px;
}
.select_arrow{
  position:absolute;
  right:18px;
  top:50%;
  width:0; height:0;
  transform: translateY(-30%);
  border-left:6px solid transparent;
  border-right:6px solid transparent;
  border-top:7px solid rgba(255,255,255,.95);
  pointer-events:none;
}

/* 연락처 3칸 */
.tel_row{
  display:flex;
  align-items:center;
  gap:10px;
}
.tel_row .f_input{
  width:30%;
  flex:1;
  text-align:center;
  padding:0 10px;
}
.tel_dash{
  color:#fff;
  font-weight:900;
  opacity:.95;
}

/* 약관 스크롤 박스 */
.privacy_box{
  margin-top:6px;
  background: rgba(255,255,255,.35);
  border:2px solid rgba(255,255,255,.95);
  border-radius:14px;
  padding: 12px 12px;

  height: 140px;
  overflow:auto;

  color:#000;
  font-size:13px;
  line-height:1.55;
}
.privacy_box hr{
  border:none;
  border-top:1px solid rgba(255,255,255,.6);
  margin:10px 0;
}

/* 체크박스 */
.check_row{
  display:flex;
  align-items:center;
  gap:10px;
  margin: 14px 6px 0;
  color:#000;
  font-size:13px;
  font-weight:700;
}
.check_row input{
  width:18px;
  height:18px;
  accent-color:#ffffff;
}

/* 제출 버튼 */
.apply_btn{
  width:100%;
  height:56px;
  border-radius:999px;
  border:none;
  margin-top: 18px;
  background:#ffcf00;
  color:#111;
  font-weight:900;
  font-size:15px;
  letter-spacing:.2px;
  cursor:pointer;
}
.apply_btn:active{
  transform: translateY(1px);
}