@charset "UTF-8";
/* ==========================================================================
   riskcheck.css — 근태 리스크 1분 진단 (riskcheck.jsp)

   * 클래스명·구조는 사이트 공통 규칙(common_new.css / content.css / form.css)을 따르고,
     페이지 전용 스타일은 .content.hr.riskcheck 로 스코프를 제한한다.
   * 컬러·타이포·여백 값은 Figma 시안 기준
     - STEP1 진단 시작 : node 19:1527
     - STEP2 설문      : node 28:2132
     - STEP3 리드 수집 : node 28:2216
     - STEP4 리포트    : node 28:2540
   * 시안 팔레트
     #5163e8 메인 / #4354f1 딥 / #93a5ff 라이트 / #758bf6·#6f88ff 라벨
     #d4e4ff·#e9f1ff 뱃지 / #f1f4ff·#f8f9ff 박스 / #cdffac 형광펜 / #eff5ff 본문 배경
     양호 #0ca678(#e6fcf5/#99e9d2) / 주의 #e8930c(#fff8e6/#ffe3a3) / 위험 #e03131(#fff0f0/#ffc9c9)
   ========================================================================== */

/* --------------------------------------------------------------------------
   약관 모달 — 디자인은 공통 form.css(.modal / .modal_content) 그대로 사용.
   단, 닫기 버튼 위치 규칙이 form.css 에서 .form_container 스코프로 걸려 있어
   .body_container 를 쓰는 이 페이지에는 적용되지 않으므로 동일 값으로 보완한다.
   (form.css: .form_container .ic_com.close {position:absolute; top:20px; right:10px})
   -------------------------------------------------------------------------- */
.modal_content .ic_com.close {
  position: absolute;
  top: 20px;
  right: 10px;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   페이지 공통
   -------------------------------------------------------------------------- */
.content.hr.riskcheck {
  background: linear-gradient(180deg, #fff 0%, #d5e5ff 100%);
}
/* STEP2 이후 배경 (시안 node 28:2169 / 28:2253 / 28:2577) */
.content.hr.riskcheck.on_step {
  background: #eff5ff;
}
.content.hr.riskcheck .hide {
  display: none !important;
}
.content.hr.riskcheck .inner {
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
}
.content.hr.riskcheck .content_body {
  width: 100%;
}
.content.hr.riskcheck .tit_block {
  margin-bottom: 16px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.72px;
  text-align: left;
}
/* 상태 뱃지 — 공통 .tag_badge 에 시안 컬러만 얹는다 */
.content.hr.riskcheck .tag_badge {
  display: inline-flex;
  align-items: center;
  height: auto;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.48px;
  vertical-align: middle;
}
.content.hr.riskcheck .tag_badge.pass {
  border: 1px solid #99e9d2;
  background: #e6fcf5;
  color: #0ca678;
}
.content.hr.riskcheck .tag_badge.warn {
  border: 1px solid #ffe3a3;
  background: #fff8e6;
  color: #e8930c;
}
.content.hr.riskcheck .tag_badge.fail {
  border: 1px solid #ffc9c9;
  background: #fff0f0;
  color: #e03131;
}
/* 페이지 전용 아이콘 (공통 .ic_com 네이밍 사용) */
/* 화살표 — 이미지 없이 CSS 로 구현 (16x16 / 두께 2px — 시안 1.6px 보다 살짝 굵게)
   가로선 M3 8 H12.5 = :before, 머리 M9 11.5 L12.5 8 L9 4.5 = :after(45deg 회전)
   색은 currentColor 를 따라가므로 버튼 글자색이 바뀌면 함께 바뀐다 */
.content.hr.riskcheck .ic_com.ic_arrow_wt {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: none;
}
.content.hr.riskcheck .ic_com.ic_arrow_wt:before,
.content.hr.riskcheck .ic_com.ic_arrow_wt:after {
  content: "";
  position: absolute;
  top: 50%;
}
/* 가로선 */
.content.hr.riskcheck .ic_com.ic_arrow_wt:before {
  left: 0px;
  width: 13.5px;
  height: 2px;
  margin-top: -1px;
  border-radius: 1px;
  background: currentColor;
}
/* 화살표 머리 */
.content.hr.riskcheck .ic_com.ic_arrow_wt:after {
  left: 4.5px;
  width: 8px;
  height: 8px;
  margin-top: -3.48px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-top-right-radius: 1px;
  transform: rotate(45deg);
}
/* 이전/다음 chevron — 이미지 없이 CSS (시안 5.5x8.675 vector) */
.content.hr.riskcheck .ic_com.ic_arrow_prev,
.content.hr.riskcheck .ic_com.ic_arrow_next {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 9px;
  background: none;
}
.content.hr.riskcheck .ic_com.ic_arrow_prev:before,
.content.hr.riskcheck .ic_com.ic_arrow_next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.5px;
  height: 5.5px;
  margin: -2.75px 0 0 -2.75px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
}
.content.hr.riskcheck .ic_com.ic_arrow_prev:before {
  transform: rotate(-135deg);
}
.content.hr.riskcheck .ic_com.ic_arrow_next:before {
  transform: rotate(45deg);
}
.content.hr.riskcheck .ic_com.ic_check {
  display: block;
  width: 22px;
  height: 22px;
  background: url(../images/riskcheck/ic_check.svg) no-repeat center / 22px 22px;
}
.content.hr.riskcheck .ic_com.ic_complete {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/riskcheck/ic_complete.svg) no-repeat center / 50px 50px;
}
.content.hr.riskcheck .title {
  gap: 6px;
  display:flex;
  flex-direction: column;
}
.content.hr.riskcheck .ic_com.ic_warning {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: url(../images/riskcheck/ic_warning.svg) no-repeat center / 18px 18px;
  vertical-align: -3px;
}
.content.hr.riskcheck .ic_com.ic_chat {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  background: url(../images/riskcheck/ic_chat.svg) no-repeat center / 24px 24px;
  vertical-align: -6px;
}

/* ==========================================================================
   STEP 1. 진단 시작 (Figma node 19:1527)
   ========================================================================== */
.content.hr.riskcheck .content_head {
  padding: 80px 0 0;
}
.content.hr.riskcheck .content_head .title_wrap {
  gap: 14px;
}
.content.hr.riskcheck .content_head .point {
  display: inline-block;
  margin: 0;
  padding: 2px 10px;
  border-radius: 8px;
  background: #d4e4ff;
  color: #6f88ff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .content_head .main_title {
  gap: 16px;
  display: flex;
  flex-direction:column;
}
.content.hr.riskcheck .content_head .main_title h1 {
  color: #212121;
  font-size: 38px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: -2px;
}
.content.hr.riskcheck .content_head .main_title h1 .txt_point {
  color: #5163e8;
}
/* 형광펜 하이라이트 (Figma node 47:4285) */
.content.hr.riskcheck .content_head .main_title h1 .mark {
  position: relative;
  z-index: 0;
  font-style: normal;
}
.content.hr.riskcheck .content_head .main_title h1 .mark:before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -2px;
  bottom: 2px;
  left: -2px;
  height: 13px;
  background: #cdffac;
}
.content.hr.riskcheck .content_head .main_title .sub {
  display: block;
  color: #888;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .content_head .main_title .sub b {
  font-weight: 700;
}

.content.hr.riskcheck .area_check {
  padding: 0 0 140px;
}
.content.hr.riskcheck .area_check .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content.hr.riskcheck .list_info {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 840px;
  max-width: 100%;
}
.content.hr.riskcheck .list_info .card {
  flex: 1 1 266px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  border-radius: 24px;
  background: #fff;
  text-align: left;
  box-shadow: 0 2px 6.5px rgba(181, 207, 232, 0.3);
  box-sizing: border-box;
}
.content.hr.riskcheck .list_info .card .icon {
  display: block;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-color: #f1f4ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 38px 38px;
}
.content.hr.riskcheck .list_info .card .icon.ic_time {
  background-image: url(../images/riskcheck/ic_time.svg);
}
.content.hr.riskcheck .list_info .card .icon.ic_scope {
  background-image: url(../images/riskcheck/ic_scope.svg);
}
.content.hr.riskcheck .list_info .card .icon.ic_report {
  background-image: url(../images/riskcheck/ic_report.svg);
}
.content.hr.riskcheck .list_info .card .box_txt .tit {
  color: #758bf6;
  font-size: 16px;
  font-weight: 600;
  line-height: 22.5px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .list_info .card .box_txt .num {
  margin-top: 2px;
  color: #333;
  font-size: 22px;
  font-weight: 600;
  line-height: 32.4px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .list_info .card .box_txt .desc {
  margin-top: 6px;
  color: #9e9aa2;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.5px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .area_check .btn_wrap {
  margin: 60px 0 0;
}
.content.hr.riskcheck .btn_general.btn_start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 18px 40px;
  border-radius: 50px;
  background: linear-gradient(90deg, #93a5ff 5.087%, #4354f1 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -1px;
  box-shadow: 0 6px 9px rgba(93, 125, 228, 0.25);
  transition: background-color 0.25s cubic-bezier(0.33, 0.02, 0.32, 1), box-shadow 0.25s cubic-bezier(0.33, 0.02, 0.32, 1), transform 0.25s cubic-bezier(0.33, 0.02, 0.32, 1);
}
.content.hr.riskcheck .btn_general.btn_start:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 16px rgba(93, 125, 228, 0.32);
}
.content.hr.riskcheck .btn_general.btn_start:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(93, 125, 228, 0.22);
  transition-duration: 0.08s;
}

/* ==========================================================================
   STEP 2. 설문 (Figma node 28:2132)
   ========================================================================== */
.content.hr.riskcheck .area_survey {
  padding: 40px 0 140px;
}
.content.hr.riskcheck .area_survey .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 760px;
}
.content.hr.riskcheck .wrap_step {
  width: 100%;
  max-width: 720px;
}
.content.hr.riskcheck .wrap_step .txt_step {
  margin-bottom: 10px;
  color: #5163e8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: left;
}
.content.hr.riskcheck .wrap_step .bar_step {
  overflow: hidden;
  height: 12px;
  border-radius: 50px;
  background: #d4dbff;
}
.content.hr.riskcheck .wrap_step .bar_step .bar {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #93a5ff 8.15%, #4354f1 100%);
  transition: width 0.3s ease;
}
.content.hr.riskcheck .box_question {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 720px;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  text-align: left;
  box-shadow: 0 2px 6.5px rgba(181, 207, 232, 0.3);
  box-sizing: border-box;
}
.content.hr.riskcheck .box_question .tag_badge {
  align-self: flex-start;
  padding: 1px 6px;
  border: 0;
  border-radius: 6px;
  background: #e9f1ff;
  color: #6f88ff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .box_question h2 {
  margin-top: 4px;
  color: #333;
  font-size: 22px;
  font-weight: 600;
  line-height: 36.4px;
  letter-spacing: -1px;
  text-align: left;
}
.content.hr.riskcheck .box_question .desc {
  margin-top: 6px;
  color: #9e9aa2;
  font-size: 15px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: -1px;  
}
.content.hr.riskcheck .list_answer li + li {
  margin-top: 14px;
}
.content.hr.riskcheck .list_answer .btn_answer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 15px 25px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  /* 크기에 영향 없는 속성만 트랜지션 (레이아웃 재계산 방지) */
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.content.hr.riskcheck .list_answer .btn_answer .box_txt {
  display: flex;
  align-items: center;
  gap: 12px;
}
.content.hr.riskcheck .list_answer .btn_answer .num {
  flex-shrink: 0;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  padding: 3px 11px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  color: #555;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .list_answer .btn_answer .txt {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.5px;
  letter-spacing: -1px;
  transition: color 0.15s ease;
}
/* Bold(700) 폭을 미리 확보 — hover/선택 시 글자가 굵어져도 폭이 변하지 않는다 */
.content.hr.riskcheck .list_answer .btn_answer .txt:after {
  content: attr(data-txt);
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  font-weight: 700;
  pointer-events: none;
}
.content.hr.riskcheck .list_answer .btn_answer .ic_com.ic_check {
  flex-shrink: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s ease;
}
/* hover — 선택 상태와 헷갈리지 않도록 테두리·배경만 살짝 바꾼다.
   (체크 아이콘 / 파란 번호 / 굵은 글씨는 '선택' 에만 적용) */
.content.hr.riskcheck .list_answer .btn_answer:hover:not(.on) {
  border-color: #c3ceff;
  background: #fafbff;
}
/* 선택 상태 — 시안 node 28:2185. 한 번에 하나만 .on 이 붙는다 */
.content.hr.riskcheck .list_answer .btn_answer.on {
  border-color: #93a5ff;
  background: #f3f5ff;
}
.content.hr.riskcheck .list_answer .btn_answer.on .num {
  border-color: #5163e8;
  background: #5163e8;
  color: #fff;
}
.content.hr.riskcheck .list_answer .btn_answer.on .txt {
  color: #5163e8;
  font-weight: 700;
}
.content.hr.riskcheck .list_answer .btn_answer.on .ic_com.ic_check {
  visibility: visible;
  opacity: 1;
}
/* 이전 / 다음 (Figma node 67:4525) */
.content.hr.riskcheck .box_question .wrap_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.content.hr.riskcheck .box_question .wrap_nav button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  /* hover 배경이 글자 바깥으로 6/4px 퍼지도록 패딩을 주고, 같은 값의 음수 마진으로
     상쇄해서 기본 상태의 글자 위치는 그대로 유지한다 (hover 시 밀림 방지) */
  margin: -4px -6px;
  padding: 4px 6px;
  border: 0;
  border-radius: 6px;
  background: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.56px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
/* 클래스명 주의 — 공통 CSS 의 .btn_prev / .btn_next 는 슬라이더 화살표(30x30 스프라이트 +
   hover 시 -3px 이동)이므로 이름을 겹치지 않게 .btn_nav_prev / .btn_nav_next 로 쓴다 */
.content.hr.riskcheck .box_question .btn_nav_prev {
  color: #999;
}
.content.hr.riskcheck .box_question .btn_nav_next {
  color: #333;
}
/* hover / 누름 — 시안 node 67:4532 (bg #f7f7f7 / radius 6 / padding 4·6) */
.content.hr.riskcheck .box_question .wrap_nav button:hover {
  background: #f7f7f7;
}
.content.hr.riskcheck .box_question .wrap_nav button:active {
  background: #efefef;
}
.content.hr.riskcheck .box_question .wrap_nav button[disabled] {
  color: #d5d5d5;
  cursor: default;
}
.content.hr.riskcheck .box_question .wrap_nav button[disabled]:hover,
.content.hr.riskcheck .box_question .wrap_nav button[disabled]:active {
  background: none;
}
/* ==========================================================================
   STEP 3. 리드 수집 (Figma node 28:2216)
   ========================================================================== */
.content.hr.riskcheck .area_lead {
  padding: 80px 0 140px;
}
.content.hr.riskcheck .area_lead .inner {
  display: flex;
  justify-content: center;
  max-width: 800px;
}
.content.hr.riskcheck .box_lead {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 720px;
  padding: 65px 80px 40px;
  border: 2px solid #dce8ff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 6.5px rgba(181, 207, 232, 0.3);
  box-sizing: border-box;
}
.content.hr.riskcheck .box_lead .tit_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.content.hr.riskcheck .box_lead .tit_wrap title {
  gap: 2px;
}
.content.hr.riskcheck .box_lead .tit_wrap h2 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -1px;
  text-align: center;
}
.content.hr.riskcheck .box_lead .tit_wrap .desc {
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -1px;
  text-align: center;
}
.content.hr.riskcheck .box_lead .wrap_row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.content.hr.riskcheck .box_lead .wrap_row .row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.content.hr.riskcheck .box_lead .wrap_row .row label {
  flex-shrink: 0;
  width: 150px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .box_lead .box_field {
  flex: 1 1 auto;
  min-width: 0;
}
.content.hr.riskcheck .box_lead .input_wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
.content.hr.riskcheck .box_lead .input_wrap input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #cfd1d4;
  border-radius: 8px;
  background: #fafafa;
  color: #333;
  font-size: 14px;
  letter-spacing: -1px;
  outline: 0;
  box-sizing: border-box;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.content.hr.riskcheck .box_lead .input_wrap input:focus {
  border-color: #333;
  background: #fff;
}
.content.hr.riskcheck .box_lead .input_wrap input.on_error {
  border-color: #ffb5b5;
}
/* 입력 예시 — 시안 node 31:3296 (입력 시 숨김) */
.content.hr.riskcheck .box_lead .input_wrap .txt_ex {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #a2a2a2;
  font-size: 14px;
  letter-spacing: -1px;
  transform: translateY(-50%);
  pointer-events: none;
}
.content.hr.riskcheck .box_lead .input_wrap input:not(:placeholder-shown) + .txt_ex,
.content.hr.riskcheck .box_lead .input_wrap input:focus + .txt_ex {
  display: none;
}
.content.hr.riskcheck .box_lead .box_field .error {
  display: none;
  margin-top: 4px;
  color: #ff8a7b;
  font-size: 12px;
  line-height: 21px;
  letter-spacing: -1px;
  text-align: right;
}
.content.hr.riskcheck .box_lead .box_field .error.on {
  display: block;
}
.content.hr.riskcheck .box_lead .wrap_terms {
  margin-top: 20px;
}
.content.hr.riskcheck .box_lead .list_terms li + li {
  margin-top: 8px;
}
/* 공통 .com_ck 컴포넌트에 시안 컬러/사이즈만 적용 (Figma node 47:4388) */
.content.hr.riskcheck .box_lead .com_ck label {
  padding-left: 24px;
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .box_lead .com_ck.bk .checkmark,
.content.hr.riskcheck .box_lead .com_ck.bk:hover .checkmark {
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #cfd1d4;
  border-radius: 4px;
  background-color: #fff;
}
.content.hr.riskcheck .box_lead .com_ck.bk:hover .checkmark {
  border-color: #4354f1;
}
.content.hr.riskcheck .box_lead .com_ck label input:checked ~ .checkmark {
  border-color: #4354f1;
  background-color: #fff;
}
.content.hr.riskcheck .box_lead .com_ck label .checkmark:after {
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border-color: #4354f1;
  border-width: 0 2px 2px 0;
}
.content.hr.riskcheck .box_lead .com_ck.bk .ic_com.ic_arrow_r {
  opacity: 0.6;
}

.content.hr.riskcheck .box_lead .btn_major.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 340px;
  max-width: 100%;
  padding: 18px 40px;
  border-radius: 50px;
  background: #4354f1;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -1px;
  box-shadow: 0 6px 9px rgba(93, 125, 228, 0.25);
  /* 공통 .btn_major 는 box-shadow 를 전환하지 않아 hover 시 버튼만 튀어 보인다.
     그림자·이동·배경을 같은 곡선/시간으로 묶어 부드럽게 처리 */
  transition: background-color 0.25s cubic-bezier(0.33, 0.02, 0.32, 1), box-shadow 0.25s cubic-bezier(0.33, 0.02, 0.32, 1), transform 0.25s cubic-bezier(0.33, 0.02, 0.32, 1);
}
.content.hr.riskcheck .box_lead .btn_major.submit:hover {
  background: #3746e0;
  transform: translateY(-1px);
  box-shadow: 0 9px 16px rgba(93, 125, 228, 0.32);
}
.content.hr.riskcheck .box_lead .btn_major.submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(93, 125, 228, 0.22);
  transition-duration: 0.08s;
}

.content.hr.riskcheck .wrap_terms .list_terms {
  padding: 20px 0 0 0;
  margin: 40px 0 0 0;
  border-top: 1px solid #eee;
}

/* ==========================================================================
   STEP 4. 리포트 (Figma node 28:2540)
   ========================================================================== */
.content.hr.riskcheck .area_report {
  padding: 80px 0 0;
}
.content.hr.riskcheck .area_report .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1080px;
}
.content.hr.riskcheck .area_report .btn_wrap {
  margin: 0;
}
.content.hr.riskcheck .box_report {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  padding: 42px;
  border: 2px solid #dce8ff;
  border-radius: 24px;
  background: #fff;
  text-align: left;
  box-shadow: 0 2px 6.5px rgba(181, 207, 232, 0.3);
  box-sizing: border-box;
}
/* 리포트 헤드 */
.content.hr.riskcheck .head_report .box_tit .point {
  margin: 0;
  color: #4354f1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-left:3px;
}
.content.hr.riskcheck .head_report .box_tit h2 {
  margin-top: 4px;
  color: #1e1e1e;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: left;
}
.content.hr.riskcheck .head_report .box_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
}
.content.hr.riskcheck .head_report .list_desc {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 3px;
}
.content.hr.riskcheck .head_report .list_desc li {
  color: #9e9e9e;
  font-size: 15px;
  letter-spacing: -1px;
  font-weight: 400;
}
.content.hr.riskcheck .head_report .list_desc li + li:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  margin-right: 9px;
  background: #d9d9d9;
  vertical-align: -1px;
}
/* 인쇄 버튼 — 아웃라인 박스 (Figma node 67:4398) */
.content.hr.riskcheck .head_report .btn_mini {
  display: inline-block;
  margin: 0;
  padding: 2px 8px 2px;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  color: #7d7d7d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1px;
  background-color: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.content.hr.riskcheck .head_report .btn_mini:hover {
  border-color: #333;
  color: #333;
}
/* 레이더 차트 */
.content.hr.riskcheck .box_chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  padding: 51px 33px;
  border: 2px solid #e6e8ff;
  border-radius: 16px;
  background: #f8f9ff;
}
.content.hr.riskcheck .box_chart .wrap_chart {
  width: 100%;
  max-width: 420px;
  height: 320px;
}
.content.hr.riskcheck .box_score {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 4px 22px;
  border: 1px solid #4354f1;
  border-radius: 12px;
  background: #fff;
}
.content.hr.riskcheck .box_score .tit {
  color: #626262;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -1px;
}
.content.hr.riskcheck .box_score .wrap_num {
  display: flex;
  align-items: center;
  gap: 8px;
}
.content.hr.riskcheck .box_score .num {
  font-size: 24px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
}
.content.hr.riskcheck .box_score .num .unit {
  margin-left: 2px;
  color: #bababa;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -1px;
}
.content.hr.riskcheck .box_score.pass .num {
  color: #0ca678;
}
.content.hr.riskcheck .box_score.warn .num {
  color: #e8930c;
}
.content.hr.riskcheck .box_score.fail .num {
  color: #e03131;
}
/* 손실 추정 */
.content.hr.riskcheck .box_loss {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 23px 27px;
  border: 1px solid #ffd9d9;
  border-radius: 16px;
  background: #fff5f5;
}
.content.hr.riskcheck .box_loss .tit {
  color: #ff492d;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -1px;
}
.content.hr.riskcheck .box_loss .desc {
  margin-top: 6px;
  color: #c98b8b;
  font-size: 14px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .box_loss .num {
  color: #ff492d;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -1px;
}
.content.hr.riskcheck .box_loss .num b {
  margin: 0 4px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
}
/* 5대 리스크 카드 */
.content.hr.riskcheck .list_risk {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.content.hr.riskcheck .list_risk .card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid #e6e8ff;
  border-radius: 18px;
  background: #f8f9ff;
}
.content.hr.riskcheck .list_risk .card .tit_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.content.hr.riskcheck .list_risk .card .cate {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.56px;
}
.content.hr.riskcheck .list_risk .card .tit {
  font-size: 18px;
  font-weight: 600;
  line-height: 22.4px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .list_risk .card.pass .tit {
  color: #0ca678;
}
.content.hr.riskcheck .list_risk .card.warn .tit {
  color: #e8930c;
}
.content.hr.riskcheck .list_risk .card.fail .tit {
  color: #e03131;
}
.content.hr.riskcheck .list_risk .card .desc {
  margin-top: 4px;
  color: #868686;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -1px;
}
/* 개선 로드맵 표 */
/* 로드맵 표 — 상단 보더만, 행 구분선으로 구성 (Figma node 28:2754) */
.content.hr.riskcheck .wrap_table {
  border-top: 1px solid #f2f2f2;
}
.content.hr.riskcheck .wrap_table .row {
  display: grid;
  grid-template-columns: 3fr 2fr 4fr 3fr;
  gap: 12px;
  align-items: center;
  padding: 16px 22px 17px;
  border-bottom: 1px solid #eee;
}
.content.hr.riskcheck .wrap_table .row:last-child {
  border-bottom: 0;
}
.content.hr.riskcheck .wrap_table .row.head {
  padding: 14px 22px;
  background: #f9f9f9;
  border-bottom: 0;
}
.content.hr.riskcheck .wrap_table .row.head .col {
  color: #7d7d7d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -1px;
}
.content.hr.riskcheck .wrap_table .row .cate {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -1px;
}
.content.hr.riskcheck .wrap_table .row .risk {
  color: #7d7d7d;
  font-size: 14px;
  letter-spacing: -1px;
}
.content.hr.riskcheck .wrap_table .row .module {
  color: #4354f1;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -1px;
}

/* --------------------------------------------------------------------------
   STEP 4. 하단 CTA (Figma node 47:3907)
   -------------------------------------------------------------------------- */
.content.hr.riskcheck .area_cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 100px;
  padding: 80px 0;
  background: linear-gradient(-0.4deg, #fbffcf 0%, #909dff 68%);
}
.content.hr.riskcheck .area_cta:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -40px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: url(../images/riskcheck/img_cta_character.png) no-repeat center / contain;
  opacity: 0.7;
  transform: rotate(-14.22deg);
  mix-blend-mode: luminosity;
  pointer-events: none;
}
/* 배경 글로우 (Figma node 47:3908) */
.content.hr.riskcheck .area_cta:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 320px;
  background: url(../images/riskcheck/img_cta_bg.png) no-repeat center / 100% 100%;
  opacity: 0.55;
  transform: translate(-50%, -50%) rotate(13.72deg);
  filter: blur(78px);
  pointer-events: none;
}
.content.hr.riskcheck .area_cta .inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.content.hr.riskcheck .area_cta .title_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 0;
}
.content.hr.riskcheck .area_cta .title_wrap h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -2px;
  text-align: center;
}
.content.hr.riskcheck .area_cta .title_wrap p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -1px;
}
.content.hr.riskcheck .area_cta .btn_wrap {
  margin: 0;
}
.content.hr.riskcheck .btn_general.btn_consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 32px;
  background: #5163e8;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  box-shadow: 0 7px 21px rgba(0, 0, 0, 0.08);
  transition: background-color 0.25s cubic-bezier(0.33, 0.02, 0.32, 1), box-shadow 0.25s cubic-bezier(0.33, 0.02, 0.32, 1);
}
.content.hr.riskcheck .btn_general.btn_consult:hover {
  background: #4354f1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* 리포트 하단 고지 문구 */
.content.hr.riskcheck .box_report .txt_disclaimer {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #e9ecf2;
  color: #a2a2a2;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -1px;
}

/* ==========================================================================
   Responsive — 사이트 공통 브레이크포인트
   ========================================================================== */
@media only screen and (max-width: 959px) {
  /* content.css 의 모바일 공통 패딩(!important)을 페이지 값으로 되돌린다 */
  .content.hr.riskcheck .content_head {
    padding: 0 35px 0 !important
  }
  .content.hr.riskcheck .content_body > div[class^="area_"] {
    padding-inline: 0 !important;
  }
  .content.hr.riskcheck .area_check {
    padding-block: 0 72px !important;
  }
  .content.hr.riskcheck .area_survey {
    padding-block: 0 72px !important;
  }
  .content.hr.riskcheck .area_lead {
    padding-block: 0 72px !important;
  }
  .content.hr.riskcheck .area_report {
    padding-block: 0 0 !important;
  }
  /* 입력 예시 문구 — 좁은 화면에서 넘치지 않도록 */
  .content.hr.riskcheck .box_lead .input_wrap .txt_ex {
    left: 10px;
    font-size: 13px;
    letter-spacing: -1px;
  }

  /* STEP 1 */
  .content.hr.riskcheck .content_head {
    padding: 64px 0 32px;
  }
  .content.hr.riskcheck .content_head .title_wrap {
    gap: 12px;
    margin-bottom: 40px;
  }
  .content.hr.riskcheck .content_head .point {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .content_head .main_title {
    gap: 12px;
  }
  .content.hr.riskcheck .content_head .main_title h1 {
    font-size: 26px;
    line-height: 38px;
    letter-spacing: -1.1px;
  }
  .content.hr.riskcheck .content_head .main_title h1 .mark:before {
    bottom: 1px;
    height: 10px;
  }
  .content.hr.riskcheck .content_head .main_title .sub {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .content_head .main_title .sub br {
    display: none;
  }
  .content.hr.riskcheck .area_check {
    padding: 0 0 72px;
  }
  .content.hr.riskcheck .list_info {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .content.hr.riskcheck .list_info .card {
    flex: none;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
  }
  .content.hr.riskcheck .list_info .card .icon {
    width: 46px;
    height: 46px;
    background-size: 30px 30px;
  }
  .content.hr.riskcheck .list_info .card .box_txt .tit {
    font-size: 14px;
    line-height: 20px;
  }
  /* 라벨 + 값을 한 줄로 (모바일 전용) — 래퍼 div.tit 만 대상으로,
     안쪽 p.tit 과 클래스명이 같으므로 요소 선택자를 붙여 구분한다 */
  .content.hr.riskcheck .list_info .card .box_txt div.tit {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
  }
  .content.hr.riskcheck .list_info .card .box_txt div.tit .num {
    margin-top: 0;
  }
  .content.hr.riskcheck .list_info .card .box_txt .num {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .list_info .card .box_txt .desc {
    font-size: 13px;
    line-height: 20px;
    margin-top: 0;
  }
  .content.hr.riskcheck .area_check .btn_wrap {
    width: 100%;
    margin: 36px 0 0;
  }
  .content.hr.riskcheck .btn_general.btn_start {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 24px;
  }

  /* STEP 2 */
  .content.hr.riskcheck .box_question .wrap_nav {
    align-items: center;
    gap: 60px;
    justify-content: center;
  }

  .content.hr.riskcheck .area_survey {
    padding: 56px 0 72px;
  }
  .content.hr.riskcheck .area_survey .inner {
    gap: 24px;
  }
  .content.hr.riskcheck .box_question {
    gap: 20px;
    padding: 26px 20px;
    border-radius: 16px;
  }
  .content.hr.riskcheck .box_question .tag_badge {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .box_question h2 {
    font-size: 19px;
    line-height: 29px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .box_question .desc {
    font-size: 14px;
    line-height: 22px;
  }
  .content.hr.riskcheck .list_answer li + li {
    margin-top: 10px;
  }
  .content.hr.riskcheck .list_answer .btn_answer {
    align-items: flex-start;
    padding: 14px 16px;
  }
  .content.hr.riskcheck .list_answer .btn_answer .box_txt {
    align-items: flex-start;
    gap: 10px;
  }
  .content.hr.riskcheck .list_answer .btn_answer .num {
    padding: 1px 9px;
    font-size: 14px;
    line-height: 22px;
  }
  .content.hr.riskcheck .list_answer .btn_answer .txt {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -1px;
  }

  /* STEP 3 */
  .content.hr.riskcheck .area_lead {
    padding: 56px 0 72px;
  }
  .content.hr.riskcheck .box_lead {
    gap: 32px;
    padding: 32px 20px;
    border-radius: 16px;
  }
  .content.hr.riskcheck .box_lead .tit_wrap h2 {
    font-size: 20px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .box_lead .tit_wrap .desc {
    font-size: 14px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .box_lead .wrap_row {
    gap: 4px;
  }
  .content.hr.riskcheck .box_lead .wrap_row .row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .content.hr.riskcheck .box_lead .wrap_row .row label {
    width: auto;
    height: 32px;
  }
  .content.hr.riskcheck .box_lead .btn_wrap {
    margin: 8px 0 0;
    width: 100%;
  }
  .content.hr.riskcheck .box_lead .btn_major.submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 24px;
  }

  .content.hr.riskcheck .box_report .txt_disclaimer {
    padding-top: 18px;
    font-size: 12px;
    line-height: 18px;
  }
  /* STEP 4 */
  .content.hr.riskcheck .area_report {
    padding: 56px 0 0;
  }
  .content.hr.riskcheck .box_report {
    gap: 24px;
    padding: 24px 18px;
    border-radius: 16px;
  }
  .content.hr.riskcheck .head_report .box_tit h2 {
    font-size: 24px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .head_report .box_info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  /* 인쇄/PDF 버튼 — 모바일에서는 숨김 (모바일 인쇄 활용도가 낮음) */
  .content.hr.riskcheck .head_report .btn_mini {
    display: none;
  }
  .content.hr.riskcheck .head_report .list_desc {
    flex-wrap: wrap;
    gap: 6px 9px;
  }
  .content.hr.riskcheck .box_chart {
    gap: 24px;
    padding: 24px 16px;
  }
  .content.hr.riskcheck .box_chart .wrap_chart {
    height: 260px;
  }
  .content.hr.riskcheck .box_score {
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px;
  }
  .content.hr.riskcheck .box_score .num {
    line-height: 32px;
  }
  .content.hr.riskcheck .box_loss {
    gap: 8px;
    padding: 18px 16px;
  }
  .content.hr.riskcheck .box_loss .tit {
    font-size: 14px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .box_loss .desc {
    font-size: 13px;
  }
  .content.hr.riskcheck .box_loss .num {
    font-size: 22px;
  }
  .content.hr.riskcheck .box_loss .num b {
    font-size: 24px;
  }
  .content.hr.riskcheck .list_risk {
    grid-template-columns: 1fr;
  }
  .content.hr.riskcheck .list_risk .card {
    padding: 18px 20px;
    border-radius: 14px;
  }
  .content.hr.riskcheck .list_risk .card .tit {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -1px;
  }
  /* 로드맵 표 → 카드형 */
  .content.hr.riskcheck .wrap_table {
    border-top: 0;
  }
  .content.hr.riskcheck .wrap_table .row.head {
    display: none;
  }
  /* 로드맵 표 → 카드형. 위 '5대 노무 리스크' 카드와 동일한 레이아웃으로 맞춘다
     (1행: 진단항목 + 상태뱃지 우측 / 2행 이하: 위험요인, 해결모듈) */
  .content.hr.riskcheck .wrap_table .row {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4px 8px;
    padding: 18px 20px;
    border: 1px solid #f2f2f2;
    border-radius: 14px;
    background: #f9f9f9;
  }
  .content.hr.riskcheck .wrap_table .row .cate {
    grid-column: 1;
  }
  .content.hr.riskcheck .wrap_table .row .state {
    grid-column: 2;
    justify-self: end;
  }
  .content.hr.riskcheck .wrap_table .row .risk,
  .content.hr.riskcheck .wrap_table .row .module {
    grid-column: 1 / -1;
  }
  .content.hr.riskcheck .wrap_table .row .risk {
    margin-top: 4px;
  }
  .content.hr.riskcheck .wrap_table .row + .row {
    margin-top: 10px;
  }
  .content.hr.riskcheck .wrap_table .row .module:before {
    content: "해결 모듈 · ";
  }

  /* 하단 CTA */
  .content.hr.riskcheck .area_cta {
    margin-top: 72px;
    padding: 64px 0;
  }
  .content.hr.riskcheck .area_cta:before {
    top: auto;
    right: -120px;
    bottom: -80px;
    width: 340px;
    height: 340px;
    opacity: 0.45;
  }
  .content.hr.riskcheck .area_cta .inner {
    gap: 28px;
  }
  .content.hr.riskcheck .area_cta .title_wrap h2 {
    font-size: 26px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .area_cta .title_wrap p {
    font-size: 15px;
    letter-spacing: -1px;
  }
  .content.hr.riskcheck .area_cta .title_wrap p br {
    display: none;
  }
  .content.hr.riskcheck .btn_general.btn_consult {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    letter-spacing: -1px;
  }
}

@media screen and (max-width: 768px) {
  .content.hr.riskcheck .content_head .main_title h1 {
    font-size: 23px;
    line-height: 34px;
  }
  .content.hr.riskcheck .btn_general.btn_start {
    font-size: 15px;
  }
  .content.hr.riskcheck .head_report .box_tit h2 {
    font-size: 21px;
  }
  .content.hr.riskcheck .area_cta .title_wrap h2 {
    font-size: 22px;
  }
}

/* 인쇄 (대표님 보고용) */
@media print {
  /* .no-print — 대표님 보고용 PDF 출력 시 제외할 요소에 붙인다 (마크업에서 클래스로 지정)
     그 외 사이트 공통 요소(헤더/퀵서포트/플로팅버튼/푸터/모달)는 선택자로 직접 숨긴다 */
  .no-print,
  .container_bn_top,
  .header,
  .quick_support,
  .wrap_btn.mfloating,
  .btn_scroll_top,
  .footer_new,
  .modal {
    display: none !important;
  }
  .content.hr.riskcheck,
  .content.hr.riskcheck.on_step {
    background: #fff;
  }
  .content.hr.riskcheck .area_report {
    padding: 0;
  }
  .content.hr.riskcheck .box_report {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
