 @charset "utf-8";
 
 /* =========================
   MAIN VISUAL (#mainVisual)
========================= */

#mainVisual {
  position: relative;
  width: 100%;
  min-height: clamp(600px, 52vw, 1000px);
  display: flex;
  align-items: center;
  
  /* background */
  background-image: url("../img/main/bg_main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}


/* 내부 폭 */
#mainVisual .mainVisual_inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(60px, 7vw, 110px) 20px;
}

/* 텍스트 영역 */
#mainVisual .mainVisual_content {
  margin:0 auto;
  text-align:center;
}

/* 타이틀 */
#mainVisual .mainVisual_title {
  margin: 0 0 50px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.2vw, 78px);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);  
}

/* 설명 */
#mainVisual .mainVisual_desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.35vw, 25px);
  line-height: 1.6;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* Swiper 영역 */
#mainVisual .mainVisual_swiper{
  width: 100%;
}

/* 페이지네이션 위치/스타일 */
#mainVisual .mainVisual_paging{
  position: relative;
  margin-top: 28px;
}

#mainVisual .mainVisual_paging .swiper-pagination-bullet{
  opacity: .35;
  transform: scale(.95);
}

#mainVisual .mainVisual_paging .swiper-pagination-bullet-active{
  opacity: 1;
  transform: scale(1.05);
}

/* 슬라이드 전환 시 텍스트 페이드 */
#mainVisual .swiper-slide .mainVisual_title,
#mainVisual .swiper-slide .mainVisual_desc{
  opacity: 0;
  transform: translateY(0); /* 원하면 살짝 올리는 효과도 가능 */
  transition: opacity .6s ease;
}

/* 활성 슬라이드만 표시 */
#mainVisual .swiper-slide-active .mainVisual_title,
#mainVisual .swiper-slide-active .mainVisual_desc{
  opacity: 1;
}

/* 설명은 살짝 늦게(스태거) */
#mainVisual .swiper-slide-active .mainVisual_desc{
  transition-delay: .15s;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
  #mainVisual {
    height: 600px;
    background-position: 62% center; /* 모바일에서 인물/중앙이 살짝 보이게 */
  }
	
  #mainVisual .mainVisual_title { margin: 0 0 30px; }
  #mainVisual .mainVisual_inner {
    padding: 70px 16px;
  }

  #mainVisual .mainVisual_content {
    max-width: 100%;
  }
}



/* =========================
   성공사례 섹션 (반응형)
========================= */

#caseSwiperSec.caseSec{
  position:relative;
  padding: clamp(48px, 6vw, 120px) 0;
  overflow:hidden;
  background: url("../img/main/bg_success.jpg") no-repeat center / cover;
}

/* 내부 폭 */
#caseSwiperSec .caseSec_inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1480px;
  margin:0 auto;
  padding: 0 20px;
}

/* 헤더 */
#caseSwiperSec .caseSec_head{
  text-align:center;
  margin-bottom: clamp(30px, 3vw, 50px);
}
#caseSwiperSec .caseSec_title{
  margin:0 0 10px;
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight:800;
  letter-spacing:-0.02em;
  color:#111;
}
#caseSwiperSec .caseSec_sub{
  margin:0;
  font-size: clamp(14px, 1.3vw, 22px);
  color:#666;
}

/* Swiper */
#caseSwiperSec .caseSwiper{
  width:100%;
}
#caseSwiperSec .swiper-slide{
  height:auto;
}

/* 카드 전체 링크 */
#caseSwiperSec .caseCard_link{
  display:block;
  color:inherit;
  text-decoration:none;
}

/* 카드 */
#caseSwiperSec .caseCard{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  height:100%;
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease;
}

/* 링크 있는 카드 hover */
#caseSwiperSec .caseCard.is-link:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}

/* 문서 영역(고정이미지 + 도장) */
#caseSwiperSec .caseCard_doc{
  position:relative;
  height: 340px;      /* 420px 중 일부만 노출 */
  overflow:hidden;    /* 잘라내기 */
  padding: 20px 18px;
}

#caseSwiperSec .caseCard_docImg{
  position:relative;
  left:50%;
  transform: translateX(-50%);
  height:auto;
  width:98%;
  max-width:300px;
  filter: blur(1px);
  opacity: 0.75;

  border-radius: 12px;
}

/* 상태 도장 아이콘 위치 */
#caseSwiperSec .caseCard_status{
  position:absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-12deg);
  width: 62%;
  max-width: 260px;
  height:auto;
  pointer-events:none;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.18));
}

/* 텍스트 */
#caseSwiperSec .caseCard_body{
  padding: 16px 18px 30px;
}
#caseSwiperSec .caseCard_title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight:800;
  letter-spacing:-0.02em;
  color:#111;
  line-height:1.25;
  
  /* 🔥 한 줄 말줄임 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#caseSwiperSec .caseCard_desc{
  margin:0;
  color:#666;
  font-size:14px;
  line-height:1.55;
  word-break:keep-all;
  min-height:60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;     /* 3줄 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}


#caseSwiperSec .caseNav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 46px;
  height: 46px;
  border-radius: 999px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);

  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

#caseSwiperSec .caseNav i{
  font-size: 22px;
  line-height: 1;
}

#caseSwiperSec .caseNav--prev{ left: 6px; }
#caseSwiperSec .caseNav--next{ right: 6px; }

#caseSwiperSec .caseNav:hover{
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}

/* swiper가 disabled 처리할 때 */
#caseSwiperSec .swiper-button-disabled,
#caseSwiperSec .caseNav[disabled]{
  opacity: .35;
  pointer-events: none;
}

@media (max-width:1024px){
	#caseSwiperSec .caseCard_doc{
	  height: 240px;
	}
}

/* 모바일 튜닝 */
@media (max-width: 768px){
  #caseSwiperSec.caseSec{
    padding: 44px 0 60px;
  }
  #caseSwiperSec .caseCard_status{
    width: 70%;
  }
  #caseSwiperSec .caseCard_title{
    font-size: 17px;
  }
 #caseSwiperSec .caseNav{
    width: 40px;
    height: 40px;
  }
  #caseSwiperSec .caseNav i{ font-size: 20px; }
  #caseSwiperSec .caseNav--prev{ left: 4px; }
  #caseSwiperSec .caseNav--next{ right: 4px; }  
}


/* =========================
   의뢰인후기 섹션 (반응형)
========================= */
#reviewSwiperSec.reviewSec{
  position:relative;
  padding: clamp(60px, 6vw, 150px) 0;
  overflow:hidden;
  background: url("../img/main/bg_review.jpg") no-repeat center / cover;
}


#reviewSwiperSec .reviewSec_inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1480px;
  margin:0 auto;
  padding: 0 20px;
}

#reviewSwiperSec .reviewSec_head{
  text-align:center;
  margin-bottom: clamp(22px, 3vw, 50px);
}

#reviewSwiperSec .reviewSec_title{
  margin:0;
  color:#fff;
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight:800;
  letter-spacing:-0.02em;
}

#reviewSwiperSec .reviewSwiper{ width:100%; }
#reviewSwiperSec .reviewSwiper .swiper-wrapper {} 
#reviewSwiperSec .swiper-slide{ height:auto; }

#reviewSwiperSec .reviewCard{
  background:url('../img/main/icon_building.png') right bottom no-repeat #fff;
  background-size:50%;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  height:100%;
  display:flex;
  flex-direction:column;
}

#reviewSwiperSec .reviewCard_top{
  padding: 30px 18px 8px;
}

#reviewSwiperSec .reviewCard_title{
  margin:0 0 10px;
  font-size: 26px;
  font-weight:900;
  letter-spacing:-0.02em;
  color:#111;

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

#reviewSwiperSec .reviewCard_writer{
  margin:0;
  font-size:16px;
  color:#333;
}

#reviewSwiperSec .reviewCard_body{
  padding: 0 18px 18px;
  flex:1;
}

#reviewSwiperSec .reviewCard_desc{
  margin:0;
  color:#555;
  font-size:16px;
  line-height:1.5;
  min-height:250px;

  display:-webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

#reviewSwiperSec .reviewCard_bottom{
  padding: 16px 18px;
  border-top:1px solid rgba(0,0,0,0.08);
  display:flex;
  gap:12px;
  align-items:center;
}

#reviewSwiperSec .reviewBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:6px;
  background:#096f9f;
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.1;
}

#reviewSwiperSec .reviewStatus{
  font-size: 28px;
  font-weight:900;
  color:#096f9f;
  letter-spacing:-0.02em;
}

/* 네비게이션 */
#reviewSwiperSec .reviewNav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index:5;

  width:46px;
  height:46px;
  border-radius:999px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);

  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
#reviewSwiperSec .reviewNav i{ font-size:22px; line-height:1; }
#reviewSwiperSec .reviewNav--prev{ left: 6px; }
#reviewSwiperSec .reviewNav--next{ right: 6px; }
#reviewSwiperSec .reviewNav:hover{
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

#reviewSwiperSec .reviewSwiper_paging{
  margin-top: 18px;
  text-align:center;
}
#reviewSwiperSec .reviewSwiper_paging .swiper-pagination-bullet{ opacity:.35; }
#reviewSwiperSec .reviewSwiper_paging .swiper-pagination-bullet-active{ opacity:1; }

@media (max-width:768px){
  #reviewSwiperSec .reviewNav{ width:40px; height:40px; }
  #reviewSwiperSec .reviewNav i{ font-size:20px; }
  #reviewSwiperSec .reviewStatus{ font-size:24px; }
}


/* =========================
   #teamVisual
========================= */
#teamVisual{
  position: relative;
  width: 100%;
  overflow: hidden;

  /* bg */
  background: url("../img/main/bg_lawer.jpg") no-repeat center / cover;
}

/* 내부폭 */
#teamVisual .teamVisual_inner{
  max-width: 1800px;
  margin: 0 auto;
  padding: clamp(80px, 6vw, 140px) 20px 0;
}

/* 상단 텍스트 */
#teamVisual .teamVisual_head{
  text-align: center;
  margin-bottom: clamp(30px, 2.2vw, 80px);
}

/* 서브 문구 */
#teamVisual .teamVisual_sub{
  margin: 0 0 10px;
  font-size: clamp(18px, 1.7vw, 35px);
  line-height: 1.3;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.03em;
}

/* 메인 타이틀 */
#teamVisual .teamVisual_title{
  margin: 0;
  font-size: clamp(35px, 5.2vw, 90px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #164b7f; /* 이미지 느낌의 블루톤 */
}

/* 사람 이미지 */
#teamVisual .teamVisual_people{
  display: flex;
  justify-content: center;
}

#teamVisual .teamVisual_people img{
  width: min(1800px, 100%);
  height: auto;
  display: block;
}

/* 모바일 보정 */
@media (max-width: 768px){
  #teamVisual{
    background-position: center top;
  }

  #teamVisual .teamVisual_inner{
    padding: 50px 16px 0;
  }

  #teamVisual .teamVisual_people img{
    width: 100%;
  }
}


/* =========================
✅ 지도
========================= */
/* =========================
   첨부 디자인 스타일
========================= */
.office_new{
  background:#fff;
  padding:150px 0 180px;
  color:#111;
}
.office_new .inner{
  max-width:1480px;
  margin:0 auto;
  padding:0 16px;
}

/* 헤더 */
.office_head{ margin-bottom:50px; }
.office_title{
  margin:0;
  font-size:48px;
  line-height:1.1;
  font-weight:800;
  letter-spacing:-1px;
}
.office_title .count{
  color:#1f5aa6; /* 첨부처럼 파란 숫자 */
  font-size:68px;
}
.office_desc{
  margin:14px 0 0;
  color:#666;
  font-size:16px;
  line-height:1.5;
}

/* 탭: 상/하 라인 + 가운데 */
.office_tabs_wrap{
  margin-top:26px;
  border-top:1px solid #e7e7e7;
  border-bottom:1px solid #e7e7e7;
}
.office_tabs{
  list-style:none;
  margin:0;
  padding:12px 0;
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}
.office_tabs .tab{
  cursor:pointer;
  font-size:16px;
  color:#777;
  padding:6px 10px;
  position:relative;
  user-select:none;
}
.office_tabs .tab span{ font-size:12px; margin-left:2px; }
.office_tabs .tab.on{
  color:#111;
  font-weight:700;
}
.office_tabs .tab.on:after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-13px;
  height:2px;
  background:#111;
}

/* 본문 2컬럼 */
.office_body{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap:60px;
  padding-top:46px;
  align-items:start;
}

/* 좌측 지도 */
.office_map .map_bg{
  position:relative;
  width:373px;          /* PC: 원본 고정 */
  height:523px;         /* PC: 원본 고정 */
  margin:0 auto;
}

/* 지도 이미지: 영역에 맞게 */
.office_map .map_bg > img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  user-select:none;
  -webkit-user-select:none;
  -ms-user-select:none;
  pointer-events:none;
}

/* 핀(퍼센트 좌표로 배치할거라 absolute) */
.office_map .map_pin{
  position:absolute;
  transform:translate(-50%, -50%);
  z-index:5;

  width:18px;
  height:18px;
}
.office_map .map_pin.seoul{ /* 서울만 좀 더 크게 쓰고 싶으면 */
  width:30px;
  height:30px;
}

.office_map .map_pin.seoul{ left:34.0482%; top:20.0764%; }
.office_map .map_pin.inchon{ left:24.1286%; top:19.6760%; }
.office_map .map_pin.gwangju{ left:23.3243%; top:68.6424%; }
.office_map .map_pin.busan{ left:77.2117%; top:70.7456%; }
.office_map .map_pin.daegu{ left:65.1474%; top:57.9349%; }
.office_map .map_pin.daejeon{ left:39.1420%; top:45.5066%; }
.office_map .map_pin.suwon{ left:33.5120%; top:25.4302%; }
.office_map .map_pin.uijeongbu{ left:35.9249%; top:16.25239%; }
.office_map .map_pin.seongnam{ left:38.0697%; top:23.51816%; }
.office_map .map_pin.changwon{ left:66.7560%; top:71.7017%; }
.office_map .map_pin.pyeongtaek{ left:34.1894%; top:29.7396%; }
.office_map .map_pin.cheonan{ left:34.1894%; top:35.7396%; }
.office_map .map_pin.ilsan{ left:29.1894%; top:17.7396%; }
.office_map .map_pin.jeonju{ left:32.8894%; top:54.2896%; }
.office_map .map_pin.ulsan{ left:82.7117%; top:64.1456%; }
.office_map .map_pin.bucheon { left:27.6286%; top:20.0760%; }

.office_map .map_pin.seoul{ width:28px; height:28px; } /* 서울만 좀 더 크게 */
.office_map .map_pin.inchon{ width:20px; height:20px; }
.office_map .map_pin.gwangju{ width:24px; height:24px; }
.office_map .map_pin.busan{ width:22px; height:22px; }
.office_map .map_pin.daegu,
.office_map .map_pin.daejeon{ width:22px; height:22px; }

/* 파동 원 */
.office_map .map_pin .cc{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  border-radius:50%;
  background:rgba(255,167,15,.22);
  border:1px solid rgba(255,167,15,.45);
  animation:map_circle 1.2s infinite alternate;
}
/*
.office_map .map_pin .cc1{ width:50%;  height:50%;  background:rgba(255,167,15,1); border-color:rgba(255,167,15,1); }
*/
.office_map .map_pin .cc2{ width:200%; height:200%; animation-delay:.2s; }
.office_map .map_pin .cc3{ width:350%; height:350%; animation-delay:.4s; }
.office_map .map_pin .cc4{ width:550%; height:550%; animation-delay:.6s; }
.office_map .map_pin .cc5{ width:750%; height:750%; animation-delay:.8s; }

@keyframes map_circle{ 0%{opacity:0} 100%{opacity:1} }


/* 우측 */
.office_right{ width:100%; }

.office_photo{
  width:100%;
  overflow:hidden;
  background:#f3f3f3;
}
.office_photo img{
  width:100%;
  height:auto;
  display:block;
}

/* 사진 아래 라인 */
.office_rule{
  height:1px;
  background:#000;
  margin:35px 0 30px;
}

/* 정보 영역: pill + 텍스트 */
.office_info{
  display:grid;
  grid-template-columns: 80px 1fr;
  gap:18px;
  align-items:start;
  padding:0 15px;
}

.office_badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 26px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:14px;
  font-weight:700;
  width:max-content;
}

.office_name{
  font-size:22px;
  font-weight:800;
  margin-bottom:10px;
}
.office_addr{
  font-size:16px;
  color:#444;
  line-height:1.5;
}
.office_trans{
  font-size:14px;
  color:#444;
  margin-top:4px;
}

.office_tel{
  margin-top:12px;
  display:flex;
  gap:10px;
  align-items:baseline;
}
.office_tel .tel_label{
  font-size:12px;
  color:#666;
}
.office_tel .tel_num{
  font-size:22px;
  font-weight:800;
  letter-spacing:-.3px;
}

.office_link{
  display:none;
}

/* =========================
   반응형
========================= */
@media (max-width: 1024px){

	.office_new{
		padding:100px 0 120px;
	}

  .office_title{ font-size:38px; }
  .office_body{
    grid-template-columns: 1fr;
    gap:28px;
    padding-top:30px;
  }
  .office_tabs{ justify-content:flex-start; overflow-x:auto; overflow-y:hidden; flex-wrap:nowrap; padding:12px 6px; }
  .office_tabs .tab{ white-space:nowrap; }
  
  .office_map .map_bg{
    width:min(373px, 100%);
    height:auto;
    aspect-ratio:373 / 523; /* 지원 브라우저면 최고 */
  }
  .office_map .map_bg > img{
    height:auto;
  }
}

/* 기본: PC에서는 숨김 */
.office_link{
  display:none;
}

/* 모바일에서만 노출 + 버튼 스타일 */
@media (max-width: 768px){
  .office_link{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:100%;
    margin-top:30px;
    padding:14px 16px;

    font-size:15px;
    font-weight:700;
    letter-spacing:-.2px;
    text-decoration:none;

    color:#fff !important;
    background:#111;
    border:1px solid rgba(0,0,0,.15);
    border-radius:14px;

    box-shadow:0 10px 22px rgba(0,0,0,.18);
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  }

  .office_link:active{
    transform:translateY(1px);
    box-shadow:0 7px 16px rgba(0,0,0,.16);
  }

  .office_link:hover{
    background:#000;
  }

  /* 아이콘(폰트아이콘 쓰는 경우) */
  .office_link i{
    font-size:18px;
    line-height:1;
  }
}


@media (max-width: 480px){
  .office_new{ padding:50px 0 60px; }
  .office_title{ font-size:30px; }
  .office_info{ grid-template-columns: 1fr; gap:10px; }
  .office_badge{ height:24px; }
}

