/* ===============================
   sub01.css (기업소개 서브페이지)
   =============================== */

/* 기본 여백 제거 + 고정 헤더 가림 방지 */
html,
body {
  margin: 0;
  padding: 0;
}
:root {
  --full: 1920px;
  --container: 1300px;
  --header-h: 72px;

  /* Palette */
  --text: #212529;
  --white: #fff;
  --green: #348413;
  --green-2: #dfece0;
  --green-3: #e9f1e9;
  --muted: #6b7280;
  --line: #e6e6e6;
  --tt-yellow: #ffd400;
}

/* 서브페이지는 헤더가 fixed라 본문이 가리지 않도록 위 패딩 */
body {
  padding-top: var(--header-h);
}

/* ===== Layout ===== */
.full-wrap {
  width: 100%;
  max-width: var(--full);
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* 메인 메뉴 */
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: block;
  padding: 8px 4px;
  font-size: 15px;
  font-weight: 600;
  color: #348413;
  position: relative;
  text-decoration: none;
}
.nav-link:hover {
  color: #348413;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #348413;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}
.nav-link:hover::after {
  width: 70%;
}

/* ===========================
   전체 드롭다운 컨테이너
   =========================== */

/* 전체 배경 */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 72px;
  width: 100%;
  height: 0;
  background: #348413;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: height 0.3s ease;
  z-index: 1;
}

/* hover 시 전체 내려옴 */
.site-header:hover::after {
  height: 250px;
}

/* ===========================
   모든 서브메뉴 줄맞춤
   =========================== */

.has-sub {
  position: relative;
}

/* 모든 mega-sub를 가로 정렬된 라인으로 */
.nav-item.has-sub .mega-sub {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* 헤더 전체 hover 시, 모든 서브메뉴 한 줄로 표시 */
.site-header:hover .nav-item.has-sub .mega-sub {
  opacity: 1;
  pointer-events: auto;
}

/* 각 서브리스트: 자기 메인메뉴 밑으로 */
.nav-item.has-sub .sub-list {
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  text-align: center;
}

/* 서브링크 */
.sub-link {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s; /* ← 문법만 정상화 */
}
.sub-link:hover {
  color: #999999;
}
/* ===============================
   기업소개 메인 이미지 영역
   =============================== */
.sub-hero {
  position: relative;
  width: 100%;
  height: 300px;
  background: url("../img/sub_company_main.jpg") no-repeat center/cover;
  display: flex;
  align-items: center; /* 세로 가운데 정렬 */
}

/* 1300px 기준 왼쪽 정렬 */
.sub-hero .container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px; /* 좌우 여백 */
  box-sizing: border-box;
}

/* 텍스트 스타일 */
.sub-title {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  text-align: left;
  line-height: 1;
}
.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
}
/* ===== CONTACT ===== */
.contact {
  margin-top: 100px;
}
.contact .section-title {
  font-size: 30px;
  text-align: center;
}
.contact .contact-block {
  text-align: center;
  margin-top: 10px;
}
.map-embed {
  margin-top: 22px;
}
iframe {
  width: 100%;
  height: 500px;
}

/* ===== BRANCH SECTION ===== */

.branch {
  padding: 80px 0;
  background: #fff;
}

.branch-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

/* 왼쪽 이미지(고정크기) */
.branch-img img {
  width: 620px;
  height: 700px;
  object-fit: cover; /* 필요 시 contain으로 변경 가능 */
  display: block;
}

/* 오른쪽 박스 */
.branch-list-box {
  width: calc(100% - 620px - 50px);
  height: 700px; /* 이미지와 동일한 높이 */
  overflow-y: auto; /* 이 안에서만 스크롤됨 */
  padding-right: 10px;
}

/* 리스트 전체 */
.branch-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 각 지역 블록 (가로 정렬) */
.branch-list li {
  display: flex;
  gap: 25px;
  margin-bottom: 18px;
  align-items: flex-start;
}

/* 지역명 */
.region {
  font-size: 20px;
  font-weight: 700;
  color: #03a94d; /* 초록색 */
  min-width: 80px; /* 정렬을 깔끔하게 맞춰줌 */
  margin-left: 100px;
}

/* 주소 */
.addr {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  display: block;
}

@media all and (max-width: 1300px) {
  :root {
    --header-h: 50px;
  }
  .sub-hero {
    height: 200px;
  }
  .sub-title {
    font-size: 26px;
  }

  .contact {
    margin-top: 40px;
  }
  .contact .section-title {
    font-size: 24px;
  }

  .map-embed {
    height: 240px;
  }
  .map-embed iframe {
    height: 100% !important;
  }
}
.biz-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.biz-head {
  margin-bottom: 40px;
}
.biz-head.mt60 {
  margin-top: 60px;
}
.biz-head .tit {
  line-height: 50px;
  font-size: 30px;
  font-weight: 800;
  color: #212529;
}
.biz-head .txt {
  margin-top: 15px;
  line-height: 26px;
  font-size: 20px;
  font-weight: 400;
  color: #212529;
}
.biz-body {
}
.biz-body .flex {
  display: flex;
  gap: 90px;
}
.biz-network-img {
  position: relative;
  margin-top: -140px;
  margin-left: 100px;
}
.biz-network-img img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.biz-network-img .txt {
  position: absolute;
  bottom: 0;
  right: 70px;
  display: flex;
  gap: 50px;
}
.biz-network-img .txt dl {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 280px;
}
.biz-network-img .txt dl:nth-child(1) dt {
  background: #2d9bc1;
}
.biz-network-img .txt dl:nth-child(1) dd {
  text-align: right;
}
.biz-network-img .txt dl:nth-child(2) dt {
  background: #969696;
}
.biz-network-img .txt dl:nth-child(2) dd {
  text-align: left;
}
.biz-network-img .txt dt {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 54px;
  font-size: 30px;
  font-weight: 700;
}
.biz-network-img .txt dd {
  line-height: 1.5;
  font-size: 20px;
}

.biz-broadcast-img {
  display: flex;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.biz-broadcast-img img {
  flex: 1;
  width: auto;
  max-width: 100%;
}
.biz-broadcast-mo {
  display: none;
}
.biz-broadcast-mo ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.biz-broadcast-mo ul li {
  position: relative;
  padding: 45px 0 40px 90px;
}
.biz-broadcast-mo ul li:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 20px;
  right: 0;
  bottom: 0;
  background: #fff;
}
.biz-broadcast-mo ul li:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 10px;
  bottom: 10%;
  width: 20px;
  border-radius: 100%;
  z-index: 1;
  background: #000;
  filter: blur(10px);
  opacity: 0.15;
}
.biz-broadcast-mo ul li .num {
  position: relative;
  z-index: 5;
  font-size: 30px;
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 40px;
  line-height: 40px;
}
.biz-broadcast-mo ul li .ico {
  position: absolute;
  z-index: 5;
  top: 50px;
  left: 0px;
  width: 90px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-20deg); /* X축으로 15도 기울임 */
}
.biz-broadcast-mo ul li .ico:before {
  content: "";
  width: 80%;
  height: 80%;
  transform: skewX(20deg);
}
.biz-broadcast-mo ul li .ico:after {
}
.biz-broadcast-mo ul li .tit {
  position: relative;
  z-index: 5;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  padding: 0 0 0 20px;
}
.biz-broadcast-mo ul li .txt {
  position: relative;
  z-index: 5;
  line-height: 1.4;
  font-size: 15px;
  font-weight: 500;
  color: #212529;
  padding: 0 0 0 20px;
}
.biz-broadcast-mo ul li .con {
  position: relative;
  z-index: 5;
  margin-top: 20px;
  padding: 0 0 0 20px;
}
.biz-broadcast-mo ul li .con dl {
}
.biz-broadcast-mo ul li .con dl dt {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
}
.biz-broadcast-mo ul li .con dl dd {
  font-size: 13px;
  color: #212529;
}
.biz-broadcast-mo ul li .con dl dd p {
  display: inline-block;
}
.biz-broadcast-mo ul li:nth-child(1) .num {
  color: #2d9bc1;
}
.biz-broadcast-mo ul li:nth-child(1) .ico {
  background: #2d9bc1;
}
.biz-broadcast-mo ul li:nth-child(1) .ico:before {
  background: #2d9bc1 url("../img/biz_ico1.png") no-repeat center / 80%;
}
.biz-broadcast-mo ul li:nth-child(1) .ico:after {
}
.biz-broadcast-mo ul li:nth-child(1) .tit {
  color: #2d9bc1;
}
.biz-broadcast-mo ul li:nth-child(2) .num {
  color: #929292;
}
.biz-broadcast-mo ul li:nth-child(2) .ico {
  background: #929292;
}
.biz-broadcast-mo ul li:nth-child(2) .ico:before {
  background: #929292 url("../img/biz_ico2.png") no-repeat center / 80%;
}
.biz-broadcast-mo ul li:nth-child(2) .ico:after {
}
.biz-broadcast-mo ul li:nth-child(2) .tit {
  color: #929292;
}
.biz-broadcast-mo ul li:nth-child(3) .num {
  color: #348413;
}
.biz-broadcast-mo ul li:nth-child(3) .ico {
  background: #348413;
}
.biz-broadcast-mo ul li:nth-child(3) .ico:before {
  background: #348413 url("../img/biz_ico3.png") no-repeat center / 50%;
}
.biz-broadcast-mo ul li:nth-child(3) .ico:after {
}
.biz-broadcast-mo ul li:nth-child(3) .tit {
  color: #348413;
}

.biz-consult-step {
  margin: 60px 0 120px;
}
.biz-consult-step ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-consult-step ul:before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% - 10px);
  width: 40px;
  height: 8px;
  background: #abd3ac;
  margin-top: -4px;
}
.biz-consult-step ul:after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 25px);
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #fff;
  border: 8px solid #abd3ac;
  margin-top: -15px;
}
.biz-consult-step li {
  position: relative;
  width: 360px;
  aspect-ratio: 10/9;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}
.biz-consult-step li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
  aspect-ratio: 77 / 186;
  background: url("../img/step_arrow.png") no-repeat center / contain;
}
.biz-consult-step li + li {
  margin-left: -30px;
}
.biz-consult-step li:nth-child(1) {
  z-index: 5;
  color: #abd3ac;
  background: url("../img/step1.png") no-repeat center / contain;
}
.biz-consult-step li:nth-child(2) {
  z-index: 4;
  color: #75ba7f;
  background: url("../img/step2.png") no-repeat center / contain;
}
.biz-consult-step li:nth-child(3) {
  z-index: 3;
  color: #5eaa69;
  background: url("../img/step3.png") no-repeat center / contain;
}
.biz-consult-step li:nth-child(4) {
  z-index: 2;
  color: #41913d;
  background: url("../img/step4.png") no-repeat center / contain;
}
.biz-consult-step li:nth-child(5) {
  z-index: 1;
  color: #287028;
  background: url("../img/step5.png") no-repeat center / contain;
}

.biz-consult-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  margin-bottom: 60px;
}
.biz-consult-txt dl {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
.biz-consult-txt dl:nth-child(1) {
  align-items: flex-end;
}
.biz-consult-txt dl:nth-child(1) dt {
  background: #2d9bc1;
}
.biz-consult-txt dl:nth-child(1) dd {
  text-align: right;
}
.biz-consult-txt dl:nth-child(2) {
  align-items: flex-start;
}
.biz-consult-txt dl:nth-child(2) dt {
  background: #969696;
}
.biz-consult-txt dl:nth-child(2) dd {
  text-align: left;
}
.biz-consult-txt dt {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 54px;
  font-size: 30px;
  width: 240px;
  font-weight: 700;
}
.biz-consult-txt dd {
  line-height: 1.5;
  font-size: 20px;
}

.biz-operation-img {
  margin: 0 auto 60px;
  width: 1000px;
  max-width: 100%;
}
.biz-operation-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1000px;
  margin: 0 auto 120px;
  max-width: 100%;
}
.biz-operation-txt dl {
  display: flex;
  flex-direction: column;
  align-items: Center;
  text-align: center;
  width: 33.33%;
  height: 160px;
}
.biz-operation-txt dl + dl {
  border-left: 1px solid #348413;
}
.biz-operation-txt dt {
  font-size: 30px;
  font-weight: 700;
  color: #348413;
  margin: 0 0 20px;
}
.biz-operation-txt dd {
  font-size: 20px;
  color: #212529;
}

.biz-operation .flex {
  display: flex;
  flex-wrap: wrap;
}
.biz-operation .flex .img {
  flex: 1;
}
.biz-operation .flex .img img {
  width: 100%;
  height: auto;
}
.biz-operation .flex .txt {
  flex: 1;
}
.biz-operation .flex .txt ul {
}
.biz-operation .flex .txt li {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}
.biz-operation .flex .txt li .area {
  font-size: 20px;
  font-weight: 700;
  color: #348413;
}
.biz-operation .flex .txt li .text {
  font-size: 20px;
}
.biz-operation .flex .txt li .text dl {
  display: flex;
  gap: 10px;
}
.biz-operation .flex .txt li .text dl dt {
  font-weight: 700;
}
.biz-operation .flex .txt li .text dl dd {
  font-weight: 400;
}
@media all and (max-width: 1300px) {
  :root {
    --header-h: 50px;
  }
  .sub-hero {
    height: 200px;
  }
  .sub-title {
    font-size: 26px;
  }

  .biz-head {
    margin-bottom: 20px;
  }

  .biz-section {
    margin-top: -100px;
    padding: 60px 0;
  }
  .biz-body {
  }
  .biz-body + .biz-body {
    margin-top: 40px;
  }
  .btn_link {
    font-size: 16px;
    margin: 0;
  }
  .skb-benefit {
    margin: 0;
  }
  .skb-body img {
    margin: 0 auto;
    width: 100%;
  }

  .biz-head .tit {
    line-height: 1.2;
    font-size: 24px;
    font-weight: 700;
  }
  .biz-head .txt {
    margin-top: 10px;
    line-height: 1.4;
    font-size: 14px;
  }

  .biz-network-img {
    margin: 0;
    margin-top: 20px;
  }
  .biz-network-img .txt {
    position: static;
    gap: 10px;
    margin-top: 15px;
  }
  .biz-network-img .txt dl {
    width: 100%;
  }
  .biz-network-img .txt dt {
    font-size: 15px;
    height: 36px;
  }
  .biz-network-img .txt dd {
    font-size: 15px;
    text-align: left !important;
  }

  .biz-broadcast-img {
    grid-template-columns: repeat(3, 1fr);
    display: none;
  }
  .biz-broadcast-img img {
    max-width: 100%;
    margin: 0 auto;
  }
  .biz-broadcast-img img:nth-child(1) {
  }
  .biz-broadcast-img img:nth-child(2) {
  }
  .biz-broadcast-img img:nth-child(3) {
  }
  .biz-broadcast-mo {
    display: block;
  }

  .biz-consult-txt {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 30px;
  }
  .biz-consult-txt dl {
    width: 100%;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
  .biz-consult-txt dt {
    font-size: 15px;
    height: 36px;
    width: 100%;
  }
  .biz-consult-txt dd {
    font-size: 15px;
    text-align: left !important;
  }

  .biz-consult-step {
    margin: 40px 0 50px;
  }
  .biz-consult-step ul {
    gap: 20px 0;
  }
  .biz-consult-step ul:before {
    display: none;
  }
  .biz-consult-step ul:after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 25px);
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: #fff;
    border: 8px solid #abd3ac;
    margin-top: -15px;
  }
  .biz-consult-step li {
    word-break: keep-all;
    width: 120px;
    font-size: 14px;
    margin: 0 -9px;
    padding: 0 12px;
  }
  .biz-consult-step li:after {
    right: -4px;
    width: 20px;
  }
  .biz-consult-step li + li {
    margin-left: 0;
  }

  .biz-operation-img {
    margin-bottom: 40px;
  }

  .biz-operation-txt {
    flex-wrap: wrap;
  }
  .biz-operation-txt dl {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }
  .biz-operation-txt dl + dl {
    border-left: 0;
    border-top: 1px solid #348413;
  }
  .biz-operation-txt dt {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .biz-operation-txt dd {
    font-size: 14px;
  }

  .biz-operation .flex .img {
    flex: 0 0 100%;
  }
  .biz-operation .flex .txt {
    flex: 0 0 100%;
  }
  .biz-operation .flex .txt li {
    flex-direction: column;
    gap: 10px;
  }
  .biz-operation .flex .txt li .area {
    font-size: 16px;
  }
  .biz-operation .flex .txt li .text {
  }
  .biz-operation .flex .txt li .text dl {
    font-size: 14px;
  }
  .biz-operation .flex .txt li .text dt {
    white-space: nowrap;
  }

  .skb-benefit img {
    width: 60%;
  }
}
