/*
Theme Name: mallup 기업01
Theme URI: https://mwpdemo64392.mycafe24.com/
Author: MALLUP KOREA
Author URI: https://mwpdemo64392.mycafe24.com/
Description: 일반기업,학원,1인기업,병원,법무사 등등 모든 사이트에 사용 가능한 멀티 테마입니다.
Version: 1.0
Text Domain: mallup 기업01
*/


/* =========================================
● 공통코드
========================================= */


html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #e7f1fa; /* 메뉴바 배경색 - 메뉴바 배경색 원조 - #ffffff */
  font-family: 'Pretendard Variable', Pretendard, sans-serif;
}


li { list-style:none; }

a { text-decoration: none !important; }


@media screen and (min-width: 768px) {
.only-mo {
display: none !important;
}
}

@media screen and (max-width: 767px) {
.only-pc {
display: none !important;
}
}


.box-all {
width: 95%;
margin: 0 auto;
}



/* =========================================
● 헤더영역
========================================= */

.header {
display: flex;
justify-content: space-between;
align-items:center;

width: 95%;
margin: 0 auto;
padding:20px 0;
}

.logo img {
  max-width: 180px;
  height: auto;
}

.text-logo {
  font-size: 28px;
  font-weight: bold;
  color: #111;
  text-decoration: none;
}

/* 기본 리스트 및 링크 스타일 초기화 */
.menu-pc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  
}

.menu-pc a {
  text-decoration: none;
  color: #333; /* 요청하신 글자 색상 */
  display: block;
  box-sizing: border-box;
}

/* 대분류(메인 메뉴) 영역 */
.main-menu-pc {
  display: flex;
  justify-content: center; /* 메뉴를 가운데 정렬 */
  gap: 50px; /* 메인 메뉴 간의 간격 */
  font-size: 18px; /* 요청하신 폰트 사이즈 */
  font-weight: 600; /* 약간 굵게 처리하여 가독성 향상 */
  position: relative;
  background-color: #e7f1fa; /* 메뉴바 배경색 - 메뉴바 배경색 원조 - #ffffff */
  padding: 0 20px;
}

.main-menu-pc > li {
  position: relative;
  /* 마우스가 메뉴 밖으로 나갈 때 서브메뉴가 바로 닫히지 않도록 패딩으로 영역 확보 */
  padding: 25px 0; 
}

/* 대분류 마우스 오버 효과 (선택사항 - 포인트 컬러 지정 시 변경) */
.main-menu-pc > li > a {
  transition: color 0.3s ease;
}
.main-menu-pc > li:hover > a {
  color: #0056b3; /* 마우스를 올렸을 때 살짝 변하는 색상 */
}

/* 중분류(서브 메뉴) 영역 */
.sub-menu {
  position: absolute;
  top: 100%; /* 대분류 바로 아래 위치 */
  left: 50%; /* 가운데 정렬을 위한 위치 이동 */
  transform: translateX(-50%) translateY(15px); /* 아래로 부드럽게 내려오는 효과를 위한 초기 위치 */
  background-color: #ffffff;
  min-width: 160px; /* 중분류 메뉴의 최소 너비 */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* 깔끔하고 은은한 그림자 효과 */
  padding: 10px 0;
  
  /* 숨김 처리 및 애니메이션 적용 */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* 매우 부드러운 애니메이션 곡선 */
  z-index: 100;
}

/* 대분류에 마우스 오버 시 중분류 표시 및 위치 이동 */
.main-menu-pc > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0); /* 원래 위치로 부드럽게 이동 */
}

/* 중분류 개별 항목 디자인 */
.sub-menu li a {
  font-size: 15px; /* 대분류보다 살짝 작게 하여 계층감 부여 */
  font-weight: 400;
  padding: 12px 20px;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.sub-menu li a:hover {
  background-color: #f8f9fa; /* 마우스를 올렸을 때의 연한 회색 배경 */
  color: #0056b3;
}





/* =========================================
70x70 흰색 네모 박스 햄버거 메뉴 (기존과 동일)
========================================= */
.menu-m-box {
width: 40px;
height: 40px;
background-color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end; /* 우측 정렬 유지 */
padding-right: 7px;
box-sizing: border-box;
gap: 5px;
cursor: pointer;
border: 1px solid #eeeeee;
}

/* 3개의 선 공통 스타일 */
.menu-m span {
display: block;
height: 2px;
background-color: #000000;
border-radius: 3px;

/* ✨ 애니메이션의 핵심: 길이가 변할 때 0.3초 동안 부드럽게 움직이도록 설정 ✨ */
transition: width 0.3s ease;
}

/* [기본 상태] 첫 번째, 세 번째 긴 선 */
.menu-m span:nth-child(1),
.menu-m span:nth-child(3) {
width: 24px;
}

/* [기본 상태] 두 번째(가운데) 짧은 선 */
.menu-m span:nth-child(2) {
width: 14px;
}

/* =========================================
✨ 마우스 오버(Hover) 애니메이션 효과 ✨
========================================= */

/* 마우스를 올렸을 때 위/아래 선은 짧아짐 (40px -> 24px) */
.menu-m:hover span:nth-child(1),
.menu-m:hover span:nth-child(3) {
width: 14px;
}

/* 마우스를 올렸을 때 가운데 선은 길어짐 (24px -> 40px) */
.menu-m:hover span:nth-child(2) {
width: 24px;
}

.menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8); /* 요청하신 오퍼시티 0.8 */
z-index: 99998; /* 메뉴보다 한 단계 아래 */
display: none; /* 평소엔 숨김 */
opacity: 0;
transition: opacity 0.3s ease; /* 부드럽게 나타남 */
}

.menu-overlay.active {
display: block;
opacity: 1;
}


.main-menu-m {
position: fixed;
top: 0;
/* ★ 수정됨: PC에서는 500px이므로 딱 500px만큼만 화면 밖으로 숨겨야 애니메이션 딜레이가 없습니다. */
right: -500px;

/* ★ 수정됨: 기본 가로값을 500px로 설정 */
width: 500px;

height: 100%;
background-color: #fff;
z-index: 99999;
transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: -5px 0 15px rgba(0,0,0,0.1);
padding: 20px;
box-sizing: border-box;
}

.main-menu-m.active {
right: 0 !important; 
}

.close-btn {
position: absolute;
top: 15px;
right: 20px;
font-size: 28px;
color: #333;
text-decoration: none;
line-height: 1;
}

.mobile_sc {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
height: 100%;

}

/* =========================================
   모바일 아코디언 메뉴 스타일
========================================= */
.menu-s {
  margin-top: 30px; /* 닫기 버튼과의 간격 */
}

.menu-s ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-s > ul > li {
  border-bottom: 1px solid #eeeeee; /* 메뉴 간 구분선 */
}

/* 대분류 링크 스타일 */
.menu-s > ul > li > a {
  display: block;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  position: relative;
}

/* 하위 메뉴가 있는(has-sub) 대분류 우측에 화살표(▼) 표시 */
.menu-s .has-sub > a::after,
.menu-s .menu-item-has-children > a::after {
  content: '▼';
  font-size: 12px;
  color: #999;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* 메뉴가 열렸을 때 화살표 회전(▲) */
.menu-s .has-sub.active > a::after,
.menu-s .menu-item-has-children.active > a::after {
  transform: translateY(-50%) rotate(180deg);
  color: #0056b3;
}

/* 메뉴가 열렸을 때 대분류 텍스트 색상 변경 */
.menu-s .has-sub.active > a,
.menu-s .menu-item-has-children.active > a {
  color: #0056b3;
}

/* =========================================
   중분류(서브 메뉴) 스타일
========================================= */
.mobile-sub,
.menu-s .sub-menu {
  /* 애니메이션을 위해 max-height 사용 (기본값 0으로 숨김) */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out; /* 부드럽게 열리고 닫힘 */
  background-color: #f8f9fa; /* 약간 어두운 배경으로 계층 구분 */
}

.mobile-sub li,
.menu-s .sub-menu li {
  border-bottom: 1px dashed #e1e1e1; /* 서브메뉴 구분선 */
}

.mobile-sub li:last-child,
.menu-s .sub-menu li:last-child {
  border-bottom: none;
}

.mobile-sub li a,
.menu-s .sub-menu li a {
  display: block;
  padding: 15px 20px 15px 40px; /* 들여쓰기(40px) 효과 */
  font-size: 15px;
  font-weight: 400;
  color: #555;
    text-align: left !important;
}

.mobile-sub li a:hover,
.menu-s .sub-menu li a:hover {
  color: #0056b3;
}

.menu-s .sub-menu,
.menu-s .mobile-sub {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  border-radius: 0;
  min-width: auto;
    text-align: left;
}



/* =========================================
● 메인 - 슬라이드
========================================= */

.slide {
  width: 100%;
  position: relative;
}

.mainslide {
  width: 100%;
  height: 100%; /* 슬라이드 높이는 이미지에 맞게 자동 조정됩니다 */
}

.mainslide .swiper-slide {
position: relative;
width: 100%;
height:750px;
background-size: cover; /* 이미지가 슬라이드 영역에 비율을 유지하며 꽉 차게 들어감 */
background-position: center; /* 이미지가 항상 정중앙을 기준으로 보이게 함 */
background-repeat: no-repeat;
}
.mainslide .swiper-slide img {
  width: 100%;
  height: auto; /* 혹은 원하는 고정 높이가 있다면 px로 지정하고 object-fit: cover; 사용 */
  display: block;
}

.slide-text-box {
position: absolute;
top: 50%;
transform: translate(20%, -50%);
 z-index: 2; 
}

.slide-text-box p:nth-child(1) {
font-size:25px;
color:#fff;
}
.slide-text-box p:nth-child(2) {
font-size:75px;
color:#fff;
margin-top:30px;
letter-spacing: -1px;
}
.slide-text-box p font {
font-weight: 500;
}

/* --- 좌우 화살표 커스텀 --- */
.mainslide .swiper-button-next,
.mainslide .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5); /* 검정색 오퍼시티 0.8 */
  border-radius: 50%; /* 완벽한 동그라미 */
  color: #ffffff; /* 화살표 색상 (흰색) */
}

/* Swiper 기본 화살표 아이콘 크기 조절 (기본값이 너무 큼) */
.mainslide .swiper-button-next::after,
.mainslide .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* --- 정중앙 하단 점(Pagination) 커스텀 --- */
.mainslide .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ffffff; /* 기본 점 색상: 흰색 */
  opacity: 1; /* Swiper 기본 투명도 제거 */
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

/* 활성화된(현재) 점 스타일 */
.mainslide .swiper-pagination-bullet-active {
  background-color: #000000; /* 활성화되면 속을 검정색으로 채움 */
  width: 30px; /* 약간 길어지는 모던한 효과 (원치 않으시면 12px로 변경) */
  border-radius: 10px;
}


/* 1. 기본 상태: 처음엔 투명도 0(숨김)이고, 왼쪽으로 50px 이동해 있는 상태 */
.mainslide .swiper-slide .slide-text-box p {
  opacity: 0;
  transform: translateX(-50px);
  /* 비활성화된 슬라이드에서는 딜레이 없이 즉시 사라지게 설정 */
  transition: all 0s; 
}

/* 2. 활성화 상태: 슬라이드가 화면에 나타나면 제자리(0)로 오면서 투명도 1이 됨 */
.mainslide .swiper-slide-active .slide-text-box p {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease-out; /* 1초 동안 부드럽게 나타나는 애니메이션 속도 */
}

/* 기본 상태 (모든 슬라이드 1초 딜레이) */
.mainslide .swiper-slide-active .slide-text-box p:nth-child(1) {
  transition-delay: 1s; 
}
.mainslide .swiper-slide-active .slide-text-box p:nth-child(2) {
  transition-delay: 1.3s; 
}

/* 첫 로드 상태일 때만 (.first-load 클래스가 있을 때) 0.5초로 단축! */
.mainslide.first-load .swiper-slide-active .slide-text-box p:nth-child(1) {
  transition-delay: 0.5s;
}
.mainslide.first-load .swiper-slide-active .slide-text-box p:nth-child(2) {
  transition-delay: 0.8s;
}

/* 배경 영상 꽉 차게 맞추기 */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 영상 비율을 유지하면서 슬라이드 화면에 꽉 채움 */
  z-index: 0; /* 제일 바닥에 배치 */
}

/* #333 색상 투명도 0.5 오버레이 */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* #333의 RGB 값은 51, 51, 51 입니다. 여기에 투명도 0.5를 줍니다. */
  background-color: rgba(51, 51, 51, 0); 
  z-index: 1; /* 영상(0)과 텍스트(2) 사이에 배치 */
}

/* =========================================
● 메인 - 배너01
========================================= */



.main01 {
margin-top:70px;
}


.main01-text-box {
text-align:center;
}

.main01-text-box div {
display:block;
width:2px;
height:80px;
background-color:#000;
margin:0 auto;
}

.main01-text-box p:nth-of-type(1) {
font-size:50px;
color:#000;
margin:30px 0 0 0;
letter-spacing: -1px;
font-weight: 500;
}


.main01-text-box p:nth-of-type(2) {
font-size:20px;
color:#7e7e7e;
margin-top:20px;
}


/* 부모 컨테이너 */
.main01-banner-box {
  display: flex;
  gap: 30px;
  width: 100%;
  height: 400px;
  margin-top: 100px;
  box-sizing: border-box;
}

/* --- 왼쪽 파란색 배너 (비율 1) --- */
.main01-banner-box .banner-left {
  flex: 1;
  background-color: #4eb0ce;
  padding: 50px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --- 오른쪽 이미지 배너 (비율 2) --- */
.main01-banner-box .banner-right {
  flex: 2;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 40px;
  box-sizing: border-box;
}

/* 검정색 오퍼시티 0.5 오버레이 */
.main01-banner-box .b-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* 오른쪽 배너 내용 영역 */
.main01-banner-box .b-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* --- 공통 텍스트 스타일 --- */
.main01-banner-box .b-title {
  font-size: 32px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -1px;
}

/* --- 공통 버튼 스타일 --- */
.main01-banner-box .b-btn {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

/* 마우스 올렸을 때 반전 효과 */
.main01-banner-box .b-btn:hover {
  background-color: #ffffff;
  color: #333333;
}

/* 오른쪽 배너의 버튼 우측 하단 정렬 */
.main01-banner-box .right-btn {
  align-self: flex-end;
}


/* =========================================
● 메인 - 배너02
========================================= */



.main02 {
margin-top:100px;
}

.main02 .main02-inner {
  display: flex;
  gap: 50px;
}

/* --- 왼쪽 영역 --- */
.main02 .m02-left {
  flex: 1; /* 1:2 비율 중 1 */
}

/* 시안에 있는 제목 위 검은색 선 */
.main02 .m02-left .m02-line {
  width: 80px;
  height: 3px;
  background-color: #000;
  margin-bottom: 30px;
}

.main02 .m02-left .m02-title {
  font-size: 50px;
  color: #000000;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 30px 0;
  letter-spacing: -2px;
}

.main02 .m02-left .m02-desc {
  font-size: 20px;
  color: #7e7e7e;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -1px;
}

/* --- 오른쪽 영역 --- */
.main02 .m02-right {
  flex: 2; /* 1:2 비율 중 2 */
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3칸으로 나눔 */
  row-gap: 60px; /* 위아래 간격 */
  column-gap: 30px; /* 좌우 간격 */
  align-content: center; /* 세로 중앙 정렬 */
  border-left: 1px solid #f0f0f0; /* 시안상의 옅은 세로 구분선 */
  padding-left: 60px;
}

.main02 .m02-right .stat-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main02 .m02-right .stat-label {
  font-size: 20px;
  color: #7e7e7e;
  margin: 0;
  letter-spacing: -1px;
}

.main02 .m02-right .stat-num {
  font-size: 70px;
  color: #000000;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  letter-spacing: -2px;
}


/* =========================================
● 메인 - 배너03
========================================= */



.main03 {
  background-color: #f8f8fa; /* 요청하신 배경색 */
  padding: 100px 0;
  width: 100%;
  margin-top:100px;
}

.main03 .main03-inner {
  display: flex;
  gap: 50px;
  align-items: center; /* 좌우 세로 중앙 정렬 */
}

/* --- 왼쪽 영역 (비율 1) --- */
.main03 .m03-left {
  flex: 1;
}

.main03 .m03-title {
  font-size: 50px;
  color: #000000;
  font-weight: 600;
  margin: 0;
}

.main03 .m03-desc {
  font-size: 20px;
  color: #7e7e7e;
  margin: 20px 0 0 0;
  letter-spacing: -1px;
}

.main03 .m03-btn {
  display: inline-block;
  font-size: 18px;
  color: #7e7e7e;
  border: 1px solid #d1d1d1; /* 시안과 유사한 연한 회색 테두리 */
  padding: 12px 30px;
  border-radius: 40px; /* 둥근 버튼 */
  margin-top: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main03 .m03-btn:hover {
  background-color: #222;
  border: 1px solid #222; /* 시안과 유사한 연한 회색 테두리 */
  color: #ffffff;
}

/* --- 오른쪽 영역 (비율 2) --- */
.main03 .m03-right {
  flex: 2;
  /* Swiper 영역이 부모를 넘어가지 않게 제한 (모바일 가로 스크롤 방지) */
  min-width: 0; 
}



/* =========================================
● 메인 - 배너04
========================================= */



.main04 {
  text-align:center;
  margin-top:100px;
}


.main04-text-box p:nth-of-type(1) {
font-size:50px;
color:#000;
margin:30px 0 0 0;
letter-spacing: -1px;
font-weight: 500;
}


.main04-text-box p:nth-of-type(2) {
font-size:20px;
color:#7e7e7e;
margin-top:20px;
}

.main04-gl-box {
margin-top:100px;
}

.main04 .m04-btn {
  display: inline-block;
  font-size: 18px;
  color: #7e7e7e;
  border: 1px solid #d1d1d1; /* 시안과 유사한 연한 회색 테두리 */
  padding: 12px 30px;
  border-radius: 40px; /* 둥근 버튼 */
  margin-top: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main04 .m04-btn:hover {
  background-color: #222;
  border: 1px solid #222; /* 시안과 유사한 연한 회색 테두리 */
  color: #ffffff;
}


/* =========================================
● 푸터
========================================= */
.site-footer {
    background-color: #2c2c2c; /* 배경색 */
    padding: 60px 0 40px; /* 위아래 여백 */
    font-family: 'Noto Sans KR', sans-serif; /* 기본 폰트 적용 (필요에 따라 변경) */
    box-sizing: border-box;
	margin-top:100px;
}


/* 상단 영역 (좌: 회사정보, 우: 고객센터) */
.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

/* 로고 영역 */
.site-footer .footer-logo {
    margin-bottom: 25px;
}
.site-footer .footer-logo img {
    height: 40px; /* 로고 높이 (이미지에 맞게 조절) */
    width: auto;
}

.footer-logo--fallback img {
    filter: brightness(0) invert(1);
}


/* 회사 정보 영역 */
.site-footer .footer-info p {
    font-size: 14px;
    color: #7e7e7e;
    line-height: 1.8;
    margin: 0;
}

.site-footer .info-item {
    display: inline-block; /* PC에서는 가로로 나열 */
}

.site-footer .footer-info .divider {
    display: inline-block;
    margin: 0 8px;
    color: #555;
    font-size: 12px;
}
/* 고객센터 영역 */
.site-footer .footer-cs {
    text-align: left;
}
.site-footer .cs-phone {
    font-size: 30px;
    color: #c6c6c6;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1;
}
.site-footer .cs-details {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer .cs-details li {
    font-size: 14px;
    color: #7e7e7e;
    line-height: 1.8;
    display: flex;
    align-items: center;
}
.site-footer .cs-label {
    display: inline-block;
    width: 65px; /* 라벨(E-MILE, 운영시간) 너비 고정하여 정렬 */
    font-weight: 500;
}

/* 하단 영역 (카피라이트, SNS) */
.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #3a3a3a; /* 하단 구분선 추가 */
    padding-top: 25px;
}

/* 카피라이트 */
.site-footer .footer-copyright {
    font-size: 11px;
    color: #7e7e7e;
    letter-spacing: 0.5px;
}

/* SNS 아이콘 */
.site-footer .footer-sns {
    display: flex;
    gap: 15px; /* 아이콘 간격 */
    align-items: center;
}
.site-footer .sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.site-footer .sns-icon:hover {
    opacity: 1; /* 마우스 오버 시 밝아짐 */
}

.quick-menu-container {
    position: fixed;
    bottom: 40px; 
    right: 40px;  
    z-index: 9999; 
    display: flex;
    flex-direction: column;
    gap: 15px; 
    
    /* 🔽 추가된 부분: 처음에는 투명하게 숨기고 살짝 아래로 내려놓음 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease; /* 부드럽게 나타나는 애니메이션 속도 */
}

/* 🔽 추가된 부분: 자바스크립트에 의해 스크롤을 내리면 이 클래스가 붙어서 보이게 됨 */
.quick-menu-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* 퀵 메뉴 공통 버튼 스타일 */
.quick-menu-container .quick-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%; /* 완벽한 원형으로 만들기 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* 입체감을 위한 은은한 그림자 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 부드러운 호버 애니메이션 */
}

/* 마우스를 올렸을 때의 효과 */
.quick-menu-container .quick-btn:hover {
    transform: translateY(-5px); /* 위로 5px 떠오르는 효과 */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); /* 그림자가 더 짙어짐 */
}

/* 카카오톡 버튼 전용 스타일 */
.quick-menu-container .kakao-btn {
    background-color: transparent;
    overflow: hidden; /* 둥근 테두리 밖으로 이미지가 삐져나가지 않도록 설정 */
}

.quick-menu-container .kakao-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 이미지가 버튼 안에 꽉 차도록 설정 */
}

/* 상단 이동(TOP) 버튼 전용 스타일 */
.quick-menu-container .top-btn {
    background-color: #333333; /* 요청하신 #333 어두운 배경색 */
}


/* =========================================
● 서브
========================================= */

.sub-page{
  padding: 40px 0;
}

.sub-page-title{
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.sub-page-content{
  font-size: 16px;
  line-height: 1.8;
}


.kboard-default-poweredby {
display:none;
}

/* 배너 영역 전체 스타일 */
.page-banner {
    background-size: cover; /* 이미지가 영역을 꽉 채우도록 설정 */
    background-position: center; /* 이미지 중앙 정렬 */
    background-repeat: no-repeat; /* 이미지 반복 방지 */
    width: 100%; /* 가로 100% */
    height: 350px; /* 세로 350px */
    
    /* 정렬을 위한 Flexbox 설정 */
    display: flex;
    flex-direction: column;
    justify-content: center; /* 세로 기준 정중앙 정렬 */
    padding-left: 5%; /* 좌측에서 10% 떨어지게 설정 */
    box-sizing: border-box; /* 패딩이 전체 넓이에 포함되도록 설정 */
	
	position: relative; 
	
}

.page-banner-bg {
  position: absolute; /* .page-banner를 기준으로 위치 지정 */
    top: 0;
    left: 0;
    width: 100%; /* 부모(배너)의 가로 100% 꽉 채움 */
    height: 100%; /* 부모(배너)의 세로 100% 꽉 채움 */
    
    background-color: #333; /* 요청하신 #333 배경색 */
    opacity: 0.5; /* 투명도 0.5 */
    
    z-index: 1; /* 배경 이미지보다는 위에 오도록 설정 */
}

/* 텍스트 컨테이너 및 기본 정렬 */
.banner-content {
    position: relative; /* z-index를 적용하기 위해 필요 */
    z-index: 2; /* 오버레이 필름보다 글씨가 위에 올라오도록 설정 */
    text-align: left; /* 좌측 정렬 */
	
}

.banner-content p {
    margin: 0; /* 워드프레스 테마의 기본 p태그 여백 초기화 */
    line-height: 1.1; /* 글씨가 크기 때문에 줄간격을 살짝 조정 (필요에 따라 수정 가능) */
}

/* 1번 문구 스타일 */
.banner-text-1 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 10px !important; /* 아래 문구와의 간격 */
}

/* 2번 문구 스타일 */
.banner-text-2 {
    font-size: 65px;
    color: #fff;
    font-weight: 500;
}

/* 3번 문구 스타일 */
.banner-text-3 {
    font-size: 65px;
    color: #fff;
    font-weight: normal; /* 기본 굵기 */
	
}


/* =========================================
● 서브 - 회사소개
========================================= */

.company-banner .pc-banner {
    display: block;
}

.company-banner .mo-banner {
    display: none;
}

@media (max-width: 767px) {
    .company-banner .pc-banner {
        display: none;
    }

    .company-banner .mo-banner {
        display: block;
    }
}


.company-box {
    width: 100%;
    font-family: 'Noto Sans KR', sans-serif; /* 폰트는 테마에 맞게 조정 가능 */
    color: #7e7e7e; /* 기본 텍스트 색상 */
    text-align: center; /* 전체 중앙 정렬 */
    padding: 80px 0;
    box-sizing: border-box;
    word-break: keep-all; /* 단어 단위로 줄바꿈 */
}

.company-header {
    margin-bottom: 60px;
    padding: 0 20px;
}

.title-line {
    width: 40px;
    height: 2px;
    background-color: #000;
    margin: 0 auto 30px auto; /* 중앙 정렬 및 하단 여백 */
}

.main-title {
    font-size: 50px;
    color: #000;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.summary {
    font-size: 20px;
    color: #7e7e7e;
    line-height: 1.6;
    margin: 0;
}

.company-banner {
    width: 100%;
    height: 450px; /* 요청하신 세로 450px */
    overflow: hidden;
    margin-bottom: 80px;
}

.company-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 이미지가 찌그러지지 않고 영역을 꽉 채움 */
    display: block;
}

.feature-circles {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    display: flex;
    justify-content: center;
    gap: 40px; /* 원 사이의 간격 */
    padding: 0 20px;
}

.circle-item {
    width: 350px;
    height: 350px;
    background-color: #f8f8fa;
    border-radius: 50%; /* 완벽한 원형 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.circle-item .icon {
    margin-bottom: 25px;
}
.circle-item .icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


.circle-item h3 {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.circle-item p {
    font-size: 20px;
    color: #7e7e7e;
    margin: 0;
    line-height: 1.5;
}

.company-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-intro p {
    font-size: 20px;
    color: #7e7e7e;
    line-height: 1.8;
    margin: 0 0 40px 0; /* 각 문단 사이 간격 */
}

.company-intro p.thanks {
    margin-top: 60px;
    margin-bottom: 0;
}






/* ============================
   모바일 반응형 (768px 이하)
============================ */
@media screen and (max-width: 768px) {
    /* 글씨 크기 모바일 최적화 */
    .main-title {
        font-size: 32px; 
    }
    .summary {
        font-size: 16px;
    }
    .circle-item h3, 
    .circle-item p, 
    .company-intro p {
        font-size: 16px; /* 모바일에서는 20px이 너무 크므로 16px로 조정 */
    }

    /* 배너 높이 조정 */
    .company-banner {
        height: auto; 
        margin-bottom: 50px;
    }

    /* 원형 영역 세로 배치 및 크기 조정 */
    .feature-circles {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 50px;
    }
    .circle-item {
        width: 300px;
        height: 300px;
    }

    /* 모바일에서는 <br> 태그로 인한 어색한 줄바꿈 방지 */
    .summary br,
    .company-intro p br {
        display: none; 
    }
}



/* =========================================
● 서브 - 오시는길
========================================= */


.location-box {
margin-top:50px;
}

.title-line-all {
    width: 80px;
    height: 2px;
    background-color: #000;
    
}

.main-title-all {
    font-size: 50px;
    color: #000;
    font-weight: 700;
	margin:10px 0 50px;
}


/* ============================
   1. 구글맵 영역
============================ */
.location-box .map-area {
    width: 100%;
    height: 500px; /* 지도의 세로 높이 */
    background-color: #f4f5f7; /* 지도 로딩 전 배경색 */
}

.location-box .map-area iframe {
    width: 100%;
    height: 100%;
    display: block; /* iframe 하단 여백 제거 */
}

/* ============================
   2. 하단 정보 영역
============================ */
.location-box .location-info-area {
   
    margin: 0 auto;
    padding: 60px 20px 80px 20px; /* 위 양옆 아래 여백 */
    box-sizing: border-box;
}

.location-box .location-info-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC에서는 2열(좌우) 배치 */
    gap: 30px 40px; /* 세로 30px, 가로 40px 간격 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-box .info-item {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #e5e7eb; /* 각 항목 하단에 연한 회색 선 */
    padding-bottom: 20px;
}

.location-box .info-item .label {
    width: 100px; /* 제목(라벨) 넓이 고정 */
    font-size: 18px;
    font-weight: 700;
    color: #111; /* 제목은 검정색으로 또렷하게 */
    flex-shrink: 0;
}

.location-box .info-item .value {
    font-size: 16px;
    color: #7e7e7e; /* 내용은 기존 사이트 통일감에 맞춘 회색 */
    line-height: 1.6;
    word-break: keep-all;
}

/* ============================
   모바일 반응형 (768px 이하)
============================ */
@media screen and (max-width: 768px) {
    .location-box .map-area {
        height: 350px; /* 모바일에서는 지도 높이를 약간 줄임 */
    }

    .location-box .location-info-area {
        padding: 40px 20px;
    }

    .location-box .location-info-list {
        grid-template-columns: 1fr; /* 모바일에서는 1열(세로) 배치로 변경 */
        gap: 20px;
    }

    .location-box .info-item {
        flex-direction: column; /* 제목과 내용을 위아래로 분리 */
        padding-bottom: 15px;
    }

    .location-box .info-item .label {
        width: auto;
        font-size: 16px;
        margin-bottom: 8px; /* 제목 아래 여백 추가 */
    }

    .location-box .info-item .value {
        font-size: 15px;
    }
}


/* =========================================
● 서브 - 비즈니스
========================================= */
.business-box {
 text-align: center; /* 전체 콘텐츠 가운데 정렬 */
 margin-top:50px;
 box-sizing: border-box;

}

.business-box .title-line {
    width: 80px;
    height: 2px;
    background-color: #000;
    margin: 0 auto 30px auto;
}

.business-box .main-title {
    font-size: 50px;
    color: #000;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.business-box .sub-title {
    font-size: 20px;
    color: #7e7e7e;
    line-height: 1.7;
    margin: 0;
	
}

/* ============================
   비전 영역 하단 여백
============================ */
.business-box .business-vision {
    margin-bottom: 70px;
}

/* ============================
   카드 3구 영역
============================ */
.business-box .vision-cards {
    max-width: 1200px;
    margin: 0 auto 100px auto; /* 가운데 정렬 및 하단 강점 영역과의 간격 */
    display: flex;
    justify-content: center;
    gap: 30px; /* 카드 사이 간격 */
}

.business-box .card-item {
    flex: 1; /* 3개 카드가 동일한 비율로 영역을 나눔 */
    display: flex;
    flex-direction: column;
}

/* 카드 상단 파란색 헤더 */
.business-box .card-header {
    background-color: #839ab1; /* 톤다운된 스틸 블루 계열 */
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 0;
}

/* 카드 하단 회색 본문 */
.business-box .card-body {
    background-color: #f7f8f9; /* 아주 연한 회색 배경 */
    color: #7e7e7e;
    font-size: 16px; /* 본문 가독성을 위해 16px로 조정 (필요시 18px로 변경 가능) */
    line-height: 1.8;
    text-align: left; /* 카드 안의 글씨는 좌측 정렬 */
    padding: 40px 30px;
    flex-grow: 1; /* 카드 높이를 동일하게 맞춤 */
}

/* ============================
   버튼 영역
============================ */
.business-box .btn-wrap {
    margin-top: 50px;
}

.business-box .btn-outline {
    display: inline-block;
    border: 1px solid #b5b5b5;
    background-color: #fff;
    color: #7e7e7e;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 45px;
    border-radius: 30px; /* 둥근 버튼 */
    text-decoration: none;
    transition: all 0.3s ease;
	
}

.business-box .btn-outline:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.as-sub {
text-align: left;
}

.business-strength {
 max-width: 1200px;
 margin:0 auto;
}
/* ============================
   모바일 반응형 (768px 이하)
============================ */
@media screen and (max-width: 768px) {
    .business-box {
        padding: 0px 0px;
    }

    /* 폰트 크기 모바일 최적화 */
    .business-box .main-title {
        font-size: 32px;
    }
    
    .business-box .sub-title {
        font-size: 16px;
    }

    .business-box .card-header {
        font-size: 18px;
    }

    .business-box .card-body {
        font-size: 15px;
        padding: 30px 20px;
    }

    /* 카드 세로 배치 */
    .business-box .vision-cards {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
    }

    /* 모바일에서는 <br> 태그로 인한 어색한 줄바꿈 숨김 */
    .business-box .sub-title br,
    .business-box .card-body br {
        display: none;
    }
}






















/* =========================================
공용 스크롤 애니메이션 클래스
========================================= */

/*
animate-left
animate-right
animate-up

delay-100
delay-200
delay-300
delay-400
*/

/* 1. 좌에서 우로 나타나는 효과 (기본 상태: 왼쪽으로 50px 이동, 투명도 0) */
.animate-left {
opacity: 0;
transform: translateX(-60px);
transition: all 1.5s ease-out; /* 0.8초 동안 부드럽게 애니메이션 */
}

.animate-right {
opacity: 0;
transform: translateX(60px);
transition: all 1.5s ease-out; /* 0.8초 동안 부드럽게 애니메이션 */
}

/* 2. 아래에서 위로 나타나는 효과 (기본 상태: 아래로 50px 이동, 투명도 0) */
.animate-up {
opacity: 0;
transform: translateY(60px);
transition: all 1.5s ease-out;
}

/* 3. 스크롤해서 화면에 보일 때 JS가 이 클래스를 붙여줌 (제자리, 투명도 1) */
.is-visible {
opacity: 1 !important;
transform: translate(0, 0) !important;
}

/* 💡 옵션: 여러 요소가 동시에 나타날 때 순차적으로 나오게 하고 싶다면 딜레이 사용 */
.delay-100 { transition-delay: 0.3s; }
.delay-200 { transition-delay: 0.6s; }
.delay-300 { transition-delay: 0.9s; }
.delay-400 { transition-delay: 1.2s; }











































/* =========================================
● 반응형 1250
========================================= */


@media (max-width: 1249px) {


.mainslide .swiper-slide {
height:650px;
}
.slide-text-box p:nth-child(1) {
font-size:20px;
}
.slide-text-box p:nth-child(2) {
font-size:55px;
}

.main01-banner-box .b-title {
  font-size: 24px;
}
  .main02 .m02-right {
    grid-template-columns: repeat(2, 1fr); /* 태블릿에선 2칸으로 */
  }
   .main03 .main03-inner { flex-direction: column; align-items: flex-start; }
  .main03 .m03-left, .main03 .m03-right { width: 100%; } 
  

/* 1번 문구 스타일 */
.banner-text-1 {
    font-size: 20px;
}

/* 2번 문구 스타일 */
.banner-text-2 {
    font-size: 55px;
}

/* 3번 문구 스타일 */
.banner-text-3 {
    font-size: 55px;
}




}



/* =========================================
● 반응형 767
========================================= */


@media (max-width: 767px) {


.logo img {
  max-width: 120px;
  height: auto;
}

.main-menu-m {
width: 90%; /* 모바일에서는 가로 90%로 꽉 차게 변경 */
right: -100%; /* 밖으로 숨길 때도 화면 너비(100%)만큼 확실히 밀어냄 */
}

.mainslide .swiper-slide {
height:650px;
}
.slide-text-box p:nth-child(1) {
font-size:20px;
}
.slide-text-box p:nth-child(2) {
font-size:35px;
}
.mainslide .swiper-button-next,
.mainslide .swiper-button-prev {
display:none;
}
.slide-text-box {
position: absolute;
top: 50%;
transform: translate(10%, -50%);
 z-index: 2; 
}

.main01-text-box p:nth-of-type(1) {
font-size:30px;
}


.main01-text-box p:nth-of-type(2) {
font-size:14px;
}

  .main01-banner-box {
    flex-direction: column;
    height: auto;
	margin-top: 50px;
  }
  .main01-banner-box .banner-left, 
  .main01-banner-box .banner-right {
    height: 300px;
  }
.main01-banner-box .b-title {
  font-size: 18px;
}
.main01-banner-box .banner-left {
    gap:20px;
}
.main01-banner-box .b-content {
    gap:20px;
   
}
.main01-banner-box .right-btn {
    align-self: flex-start;
}

  .main02 .main02-inner {
    flex-direction: column; /* 모바일에선 세로로 떨어짐 */
	
  }
  .main02 .m02-right {
    border-left: none;
    padding-left: 0;
    margin-top: 0px;
	padding-top:40px;
    grid-template-columns: 1fr 1fr; /* 모바일에서도 숫자는 2칸 유지 */
	border-top:1px solid #e9e9e9;
  }
  .main02 .m02-left .m02-title { font-size: 56px; }
  .main02 .m02-right .stat-num { font-size: 45px; }
  .main02 .m02-left .m02-desc {
    font-size: 16px;
	}

  .main03 {
    background-color: #f8f8fa;
    padding: 50px 0;
    width: 100%;
    margin-top: 100px;
}

    .page-banner {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .banner-text-2, .banner-text-3 {
        font-size: 40px; /* 모바일에서는 글씨 크기를 줄임 */
    }

/* 1번 문구 스타일 */
.banner-text-1 {
    font-size: 16px;
}

/* 2번 문구 스타일 */
.banner-text-2 {
    font-size: 35px;
}

/* 3번 문구 스타일 */
.banner-text-3 {
    font-size: 35px;
}



.main04 {
    margin-top: 50px;
}
.main04-gl-box {
    margin-top: 50px;
}
.main04 .m04-btn {

    margin-top: 10px;

}


   .site-footer .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    /* 모바일에서는 구분선(｜)을 숨김 */
    .site-footer .footer-info .divider {
        display: none; 
    }
    
    /* 모바일에서는 각 항목을 한 줄(block)로 변경하여 세로로 떨어지게 함 */
    .site-footer .info-item {
        display: block; 
        margin-bottom: 5px; /* 각 줄 사이의 간격 */
    }
	.site-footer .info-item font {
	font-weight: bold;
	}
    
    /* 기존 p태그의 마진 정리 */
    .site-footer .footer-info p {
        margin-bottom: 5px;
    }

    /* 하단 SNS와 카피라이트 배치 */
    .site-footer .footer-bottom {
        flex-direction: column-reverse; /* SNS를 위로, 카피라이트를 아래로 */
        align-items: flex-start;
        gap: 20px;
    }
	
   .quick-menu-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    /* 모바일에서는 버튼이 너무 크면 화면을 가리므로 크기를 살짝 줄임 */
    .quick-menu-container .quick-btn {
        width: 55px; 
        height: 55px;
    }
    
    .quick-menu-container .top-btn svg {
        width: 28px;
        height: 28px;
    }
	
	
	
	
}



/* 갤러리간격 */
#kboard-default-list .kboard-gallery-container {
gap: 70px !important
}
@media screen and (max-width: 767px) {
    #kboard-default-list .kboard-gallery-container {
        gap: 12px !important
    }
}

#kboard-default-latest .kboard-gallery-container {

    gap: 70px !important

}
@media screen and (max-width: 767px) {
    #kboard-default-latest .kboard-gallery-container {
        gap: 12px !important 
    }
}