/*
Theme Name: Mallup 클린
Theme URI: https://mwpdemo64939.mycafe24.com/
Author: MallupKorea
Author URI: https://mwpdemo64939.mycafe24.com/
Description: 청소 관련 홈페이지에 어울리는 테마입니다.
Version: 1.0
Text Domain: Mallup 클린
*/

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


body {
  margin: 0;
  font-family: 'Pretendard Variable', Pretendard, sans-serif;
}

a { text-decoration: none !important; }


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

}

@media screen and (max-width: 768px) {
.only-pc {
display: none !important;
}
.mo-pa {
padding:0 15px;
box-sizing: border-box;
}
}


.box-in {
max-width: 1400px;
margin: 0 auto;
}

p {
  margin: 0;
}

@media all and (max-width: 1024px) {
.box-in {
max-width: 767px;
}
}


/* =========================================
● 헤더
========================================= */

.top-banner-box {
  height: 40px;
  background-color: #43a0e2;
  width: 100%;
}

.top-banner {
  display: flex;
  align-items: center;
  height: 40px;
}

.top-banner .tb-left,
.top-banner .tb-right {
  width: 50%;
}

.top-banner .tb-left {
  text-align: left;
}

.top-banner .tb-right {
  text-align: right;
}

.top-banner p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
}

.top-banner svg {
  width: 15px;
  height: 15px;
  transform: translateY(2px);
}

.tb-01::before {
  content: "· ";
}

.top-logo-box {
text-align:center;
padding:15px 0;
}


.top-menu-box {
  width: 100%;
  background: #fff;
  border-top: 1px solid #ececec;
  margin-top:20px;
}

.main-menu-pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu-pc > li {
  flex: 1;
  position: relative;
  text-align: center;
}

.main-menu-pc > li > a {
  display: block;
  padding: 24px 10px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  line-height: 1;
}

.main-menu-pc > li:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #d8d8d8;
  font-size: 12px;
}

.main-menu-pc > li > a:hover {
  color: #43a0e2;
}

/* 서브메뉴 기본 숨김 */
.main-menu-pc .sub-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  margin: 0;
  padding: 0px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 999;
  transition: all 0.3s ease;
}

/* hover 시 서브메뉴 표시 */
.main-menu-pc > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.main-menu-pc .sub-menu li {
  width: 100%;
}

.main-menu-pc .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  transition: all 0.2s ease;
}

.main-menu-pc .sub-menu li a:hover {
  background: #f7f7f7;
  color: #43a0e2;
}



/* =========================================
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;
}

/* 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;
}


@media all and (max-width: 1024px) {
.top-banner p {
    font-size: 12px;
}
.top-banner svg {
    width: 11px;
    height: 11px;
}
.main-menu-pc > li > a {
    display: block;
    padding: 24px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1;
}

}
@media all and (max-width: 767px) {

  .top-banner-box {
    height: auto;
    padding: 8px 0;
  }

  .top-banner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 4px;
  }

  .top-banner .tb-left,
  .top-banner .tb-right {
    width: 100%;
    text-align: center;
  }

  .top-banner p {
    line-height: 1.5;
    font-size: 14px;
  }

  .top-banner svg {
    width: 14px;
    height: 14px;
    transform: translateY(1px);
  }
  
  
  .mobile-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 12px 0 18px 0;
  }

  .mobile-header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding:0 10px;
	box-sizing: border-box;
  }

  .mobile-logo img {
    display: block;
    max-height: 42px;
    width: auto;
  }

  .menu-m {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .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;
  }

  .main-menu-m {
    width: 85%;
    max-width: 360px;
    right: -85%;
  }

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


/* =========================================
   헤더 스크롤 고정
========================================= */

/* PC 메뉴 고정 */
.top-menu-box.is-fixed {
  position: fixed;
  top: -20px;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  border-top: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  animation: headerSlideDown 0.35s ease;
}

/* 모바일 헤더 고정 */
.mobile-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  animation: headerSlideDown 0.35s ease;
}

/* 고정되면서 자연스럽게 내려오는 효과 */
@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


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


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

.main-slide-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.main-slide-swiper .swiper-slide {
  width: 100%;
}

.slide-link {
  display: block;
  width: 100%;
}

/* PC용 배경 슬라이드 */
.slide-bg-pc {
  display: block;
  width: 100%;
  height: 700px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* 모바일용 이미지 슬라이드 */
.slide-img-mo {
  display: none;
  width: 100%;
  height: auto;
}

/* 좌우 버튼 */
.main-slide-swiper .swiper-button-prev,
.main-slide-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  color: #fff;
}

.main-slide-swiper .swiper-button-prev::after,
.main-slide-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

/* 페이지네이션 */
.main-slide-swiper .swiper-pagination {
  bottom: 20px !important;
  text-align: center;
}

.main-slide-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0 5px !important;
}

.main-slide-swiper .swiper-pagination-bullet-active {
  background: #fff;
}


/* 모바일 */
@media all and (max-width: 1024px) {
  .slide-bg-pc {
    display: none;
  }

  .slide-img-mo {
    display: block;
    width: 100%;
    height: auto;
  }

  .main-slide-swiper .swiper-button-prev,
  .main-slide-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .main-slide-swiper .swiper-button-prev::after,
  .main-slide-swiper .swiper-button-next::after {
    font-size: 14px;
  }

  .main-slide-swiper .swiper-pagination {
    bottom: 12px !important;
  }

  .main-slide-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
  }
}


/* =========================================
   배너 01
========================================= */

.main-banner-01-box {
  width: 100%;
  height: 100px;
  background: #f5f5f5;
}

.main-banner-01-in {
  width: 100%;
  max-width: 1400px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.main-banner-01-logo {
  width: 200px;
  min-width: 200px;
  height: 100%;
  background: #43a0e2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-banner-01-logo img {
  max-width: 100px;
  width: 100%;
  height: auto;
  display: block;
}

.main-banner-01-stats {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}

.stat-item {
  text-align: center;
  padding: 0 10px;
}

.stat-label {
  margin: 0 0 4px 0;
  font-size: 23px;
  color: #7e7e7e;
  font-weight: 400;
  line-height: 1.2;
  word-break: keep-all;
}

.stat-number {
  margin: 0;
  font-size: 36px;
  color: #333;
  font-weight: 700;
  line-height: 1.2;
  word-break: keep-all;
}

/* =========================================
   1024px 이하
========================================= */
@media all and (max-width: 1024px) {
  .main-banner-01-box {
    height: 90px;
  }

  .main-banner-01-in {
    height: 90px;
  }

  .main-banner-01-logo {
    width: 160px;
    min-width: 160px;
  }

  .main-banner-01-logo img {
    max-width: 85px;
  }

  .main-banner-01-stats {
    justify-content: space-evenly;
  }

  .stat-item {
    padding: 0 6px;
  }

  .stat-label {
    font-size: 18px;
  }

  .stat-number {
    font-size: 28px;
  }
}

/* =========================================
   767px 이하
========================================= */
@media all and (max-width: 767px) {
  .main-banner-01-box {
    height: auto;
    padding: 0;
  }

  .main-banner-01-in {
    height: auto;
    flex-direction: column;
  }

  .main-banner-01-logo {
    width: 100%;
    min-width: 100%;
    height: 80px;
  }

  .main-banner-01-logo img {
    max-width: 90px;
  }

  .main-banner-01-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    padding: 20px 15px;
    height: auto;
  }

  .stat-item {
    padding: 0;
  }

  .stat-label {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .stat-number {
    font-size: 26px;
  }
}


/* =========================================
   배너 02
========================================= */

.main-banner-02-box {
  width: 100%;
  padding: 80px 0 100px;
  background: #fff;
}

.main-banner-02-head {
  text-align: center;
  margin-bottom: 50px;
}

.mb02-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
}

.mb02-title span {
  color: #43a0e2;
}


.mb02-title .point {
  color: #43a0e2;
}

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

.main-banner-02-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 18px;
}

.mb02-item {
  width: 100%;
}

.mb02-thumb {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.mb02-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mb02-text {
  padding-top: 26px;
}

.mb02-text h3 {
  margin: 0 0 18px 0;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
  position: relative;
  padding-left: 14px;
}

.mb02-text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 30px;
  background: #43a0e2;
}

.mb02-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #7e7e7e;
  word-break: keep-all;
}

@media all and (max-width: 1024px) {
  .main-banner-02-box {
    padding: 70px 0 80px;
  }

  .main-banner-02-head {
    margin-bottom: 40px;
  }

  .mb02-title {
    font-size: 32px;
  }

  .mb02-desc {
    margin-top: 16px;
    font-size: 18px;
  }

  .main-banner-02-grid {
    gap: 40px 16px;
  }

  .mb02-text {
    padding-top: 20px;
  }

  .mb02-text h3 {
    font-size: 24px;
    margin-bottom: 14px;
    padding-left: 12px;
  }

  .mb02-text h3::before {
    height: 24px;
    top: 3px;
  }

  .mb02-text p {
    font-size: 16px;
    line-height: 1.7;
  }
  .mb02-thumb {
    max-height: 320px;
  }
}

@media all and (max-width: 767px) {
  .main-banner-02-box {
    padding: 50px 0 60px;
  }

  .main-banner-02-head {
    margin-bottom: 30px;
  }

  .mb02-title {
    font-size: 26px;
    line-height: 1.4;
  }

  .mb02-desc {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
  }

  .main-banner-02-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mb02-text {
    padding-top: 16px;
  }

  .mb02-text h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .mb02-text h3::before {
    height: 22px;
  }

  .mb02-text p {
    font-size: 15px;
    line-height: 1.7;
  }
  .mb02-thumb {
    max-height: 240px;
  }
}

/* =========================================
   배너 03
========================================= */

.main-banner-03-box {
  width: 100%;
  padding: 80px 0 100px;
  background: #f4f7fb;
}

.main-banner-03-head {
  text-align: center;
  margin-bottom: 40px;
}

.mb03-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
}

.mb03-title span {
  color: #43a0e2;
}

.mb03-desc {
  margin: 18px 0 0 0;
  font-size: 22px;
  line-height: 1.6;
  color: #7e7e7e;
}

.main-banner-03-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mb03-item {
  position: relative;
  overflow: hidden;
}

.mb03-link {
  display: block;
  position: relative;
}

.mb03-item img {
  display: block;
  width: 100%;
  height: auto;
}

.mb03-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 26px;
  color: #fff;
}

.mb03-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  background: #43a0e2;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.mb03-text {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  word-break: keep-all;
}

.mb03-more {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 10px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  box-sizing: border-box;
}

/* =========================================
   1024px 이하
========================================= */
@media all and (max-width: 1024px) {
  .main-banner-03-box {
    padding: 70px 0 80px;
  }

  .main-banner-03-head {
    margin-bottom: 30px;
  }

  .mb03-title {
    font-size: 32px;
  }

  .mb03-desc {
    margin-top: 14px;
    font-size: 18px;
  }

  .main-banner-03-grid {
    gap: 14px;
	grid-template-columns: 1fr;
  }

  .mb03-overlay {
    padding: 14px;
  }

  .mb03-label {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .mb03-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .mb03-more {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
    right: 14px;
    bottom: 14px;
  }
}

/* =========================================
   767px 이하
========================================= */
@media all and (max-width: 767px) {
  .main-banner-03-box {
    padding: 50px 0 60px;
  }

  .main-banner-03-head {
    margin-bottom: 24px;
  }

  .mb03-title {
    font-size: 26px;
    line-height: 1.4;
  }

  .mb03-desc {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.6;
  }

  .main-banner-03-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mb03-overlay {
    padding: 14px;
  }

  .mb03-label {
    font-size: 13px;
    padding: 4px 9px;
    margin-bottom: 10px;
  }

  .mb03-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .mb03-more {
    min-width: 28px;
    height: 28px;
    font-size: 13px;
    right: 12px;
    bottom: 12px;
    border-radius: 8px;
  }
}



/* =========================================
   뉴스
========================================= */

.main-banner-04-box {
  background-color: #f9f9f9;
  padding: 100px 0;
  width: 100%;
}

.main-banner-04-box .main04-inner {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* --- 왼쪽 영역 (비율 1) --- */
.main-banner-04-box .m04-left {
  flex: 1;
}

.main-banner-04-box .m04-title {
  font-size: 50px;
  color: #000000;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  word-break: keep-all;
}

.main-banner-04-box .m04-desc {
  font-size: 20px;
  color: #7e7e7e;
  margin: 20px 0 0 0;
  letter-spacing: -1px;
  line-height: 1.6;
  word-break: keep-all;
}

.main-banner-04-box .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;
}

.main-banner-04-box .m04-btn:hover {
  background-color: #222;
  border: 1px solid #222;
  color: #ffffff;
}

/* --- 오른쪽 영역 (비율 2) --- */
.main-banner-04-box .m04-right {
  flex: 3;
  min-width: 0;
}


/* =========================================
   1024px 이하
========================================= */
@media all and (max-width: 1024px) {
  .main-banner-04-box {
    padding: 80px 0;
  }

  .main-banner-04-box .main04-inner {
    gap: 30px;
  }

  .main-banner-04-box .m04-left {
    flex: 1;
  }

  .main-banner-04-box .m04-right {
    flex: 2;
  }

  .main-banner-04-box .m04-title {
    font-size: 38px;
  }

  .main-banner-04-box .m04-desc {
    font-size: 17px;
    margin-top: 16px;
    letter-spacing: -0.5px;
  }

  .main-banner-04-box .m04-btn {
    font-size: 16px;
    padding: 11px 24px;
    margin-top: 30px;
  }
}


/* =========================================
   767px 이하
========================================= */
@media all and (max-width: 767px) {
  .main-banner-04-box {
    padding: 50px 0;
  }

  .main-banner-04-box .main04-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .main-banner-04-box .m04-left,
  .main-banner-04-box .m04-right {
    width: 100%;
    flex: none;
  }

  .main-banner-04-box .m04-title {
    font-size: 28px;
    line-height: 1.4;
  }

  .main-banner-04-box .m04-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 14px;
    letter-spacing: 0;
  }

  .main-banner-04-box .m04-btn {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 22px;
    border-radius: 30px;
  }

  .main-banner-04-box .m04-right {
    overflow: hidden;
  }
}
/* =========================================
   갤러리
========================================= */

.main-banner-05-box {
  text-align: center;
  margin-top: 100px;
}

.main05-text-box p:nth-of-type(1) {
  margin: 0;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
  word-break: keep-all;
}

.main05-text-box p:nth-of-type(1) span {
  color: #43a0e2;
}

.main05-text-box p:nth-of-type(2) {
  margin: 18px 0 0 0;
  font-size: 22px;
  line-height: 1.6;
  color: #7e7e7e;
  word-break: keep-all;
}

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

.main-banner-05-box .m05-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;
}

.main-banner-05-box .m05-btn:hover {
  background-color: #222;
  border: 1px solid #222;
  color: #ffffff;
}


/* =========================================
   1024px 이하
========================================= */
@media all and (max-width: 1024px) {
  .main-banner-05-box {
    margin-top: 80px;
  }

  .main05-text-box p:nth-of-type(1) {
    font-size: 34px;
    line-height: 1.35;
  }

  .main05-text-box p:nth-of-type(2) {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.6;
  }

  .main05-gl-box {
    margin-top: 70px;
  }

  .main-banner-05-box .m05-btn {
    font-size: 16px;
    padding: 11px 24px;
    margin-top: 32px;
  }
}


/* =========================================
   767px 이하
========================================= */
@media all and (max-width: 767px) {
  .main-banner-05-box {
    margin-top: 50px;
  }

  .main05-text-box {
    padding: 0 5px;
  }

  .main05-text-box p:nth-of-type(1) {
    font-size: 26px;
    line-height: 1.4;
  }

  .main05-text-box p:nth-of-type(2) {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
  }

  .main05-gl-box {
    margin-top: 40px;
  }

  .main-banner-05-box .m05-btn {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 24px;
    border-radius: 30px;
  }
}

/* =========================================
   배너 04
========================================= */


.main-banner-06-box {
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  margin-top:100px;
}

.main-banner-06-box.has-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.main-banner-06-box.no-overlay::before {
  display: none;
}

.main-banner-06-box .main-banner-06-inner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 40px 0;
  z-index: 2;
}


.main-banner-06-box .main-banner-06-inner.no-overlay::before {
  display: none;
}

.main-banner-06-box .mb06-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-left: 70px;
}

.main-banner-06-box .mb06-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  word-break: keep-all;
}

.main-banner-06-box .mb06-desc {
  margin: 16px 0 0 0;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  word-break: keep-all;
}

.main-banner-06-box .mb06-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  min-width: 130px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-banner-06-box .mb06-btn:hover {
  background: #fff;
  color: #222;
  border-color: #fff;
}


/* =========================================
   1024px 이하
========================================= */
@media all and (max-width: 1024px) {
  .main-banner-06-box .main-banner-06-inner {
    min-height: 320px;
    padding: 35px 0;
  }

  .main-banner-06-box .mb06-text {
    padding-left: 40px;
    max-width: 620px;
  }

  .main-banner-06-box .mb06-title {
    font-size: 32px;
  }

  .main-banner-06-box .mb06-desc {
    margin-top: 14px;
    font-size: 18px;
  }

  .main-banner-06-box .mb06-btn {
    margin-top: 22px;
    font-size: 12px;
    height: 40px;
    min-width: 120px;
  }
}


/* =========================================
   767px 이하
========================================= */
@media all and (max-width: 767px) {
  .main-banner-06-box {
    background-position: center center;
	  margin-top:50px;
  }

  .main-banner-06-box .main-banner-06-inner {
    min-height: 240px;
    padding: 30px 0;
  }

  .main-banner-06-box .mb06-text {
    padding-left: 0;
    max-width: 100%;
  }

  .main-banner-06-box .mb06-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .main-banner-06-box .mb06-desc {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
  }

  .main-banner-06-box .mb06-btn {
    margin-top: 18px;
    min-width: 110px;
    height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }
}



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


/* 상단 영역 (좌: 회사정보, 우: 고객센터) */
.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 어두운 배경색 */
}

/* =========================================
   푸터 반응형
========================================= */

/* 1024px 이하 */
@media all and (max-width: 1024px) {
  .site-footer {
    padding: 50px 0 35px;
  }

  .site-footer .footer-top {
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
  }

  .site-footer .footer-logo {
    margin-bottom: 20px;
  }

  .site-footer .footer-logo img {
    height: 34px;
  }

  .site-footer .footer-info p {
    font-size: 13px;
    line-height: 1.8;
  }

  .site-footer .footer-cs {
    min-width: 220px;
  }

  .site-footer .cs-phone {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .site-footer .cs-details li {
    font-size: 13px;
  }

  .site-footer .cs-label {
    width: 58px;
  }

  .site-footer .footer-bottom {
    padding-top: 20px;
  }

  .site-footer .footer-copyright {
    font-size: 10px;
  }

  .site-footer .footer-sns {
    gap: 12px;
  }

  .quick-menu-container {
    right: 24px;
    bottom: 24px;
    gap: 12px;
  }

  .quick-menu-container .quick-btn {
    width: 62px;
    height: 62px;
  }
}


/* 767px 이하 */
@media all and (max-width: 767px) {
  .site-footer {
    padding: 40px 0 30px;
  }

  .site-footer .footer-top {
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 30px;
  }

  .site-footer .footer-logo {
    margin-bottom: 16px;
  }

  .site-footer .footer-logo img {
    height: 30px;
  }

  .site-footer .footer-info p {
    font-size: 13px;
    line-height: 1.7;
  }

  .site-footer .info-item {
    display: block;
  }

  .site-footer .footer-info .divider {
    display: none;
  }

  .site-footer .footer-cs {
    width: 100%;
    text-align: left;
  }

  .site-footer .cs-phone {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .site-footer .cs-details li {
    font-size: 13px;
    line-height: 1.7;
    align-items: flex-start;
  }

  .site-footer .cs-label {
    width: 56px;
    flex-shrink: 0;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-top: 18px;
  }

  .site-footer .footer-copyright {
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 0;
  }

  .site-footer .footer-sns {
    gap: 10px;
  }

  .quick-menu-container {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .quick-menu-container .quick-btn {
    width: 54px;
    height: 54px;
  }
}

/* =========================================
   페이지 상단 비주얼
========================================= */

.page-top-box {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #000;
}

.page-top-media,
.page-top-image,
.page-top-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-top-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.page-top-video {
  object-fit: cover;
}

.page-top-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.page-top-box.no-overlay::before {
  display: none;
}

.page-top-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-top-text {
  max-width: 900px;
}

.pt-title-01 {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  word-break: keep-all;
}


.pt-desc {
  margin: 26px 0 0 0;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  word-break: keep-all;
}

/* 1024 이하 */
@media all and (max-width: 1024px) {
  .page-top-box {
    height: 340px;
  }

  .pt-title-01 {
    font-size: 32px;
  }


  .pt-desc {
    margin-top: 20px;
    font-size: 18px;
  }
}

/* 767 이하 */
@media all and (max-width: 767px) {
  .page-top-box {
    height: 260px;
  }

  .page-top-text {
    max-width: 100%;
    padding: 0 10px;
  }

  .pt-title-01 {
    font-size: 22px;
    line-height: 1.35;
  }


  .pt-desc {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
  }
}



/* =========================================
   회사소개
========================================= */

.company-box {
  width: 100%;
}

/* 공통 섹션 */
.company-section {
  position: relative;
  width: 100%;
  padding: 110px 0;
  text-align: center;
}

.company-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
}

.company-kicker {
  margin: 0 0 14px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #43a0e2;
}

.company-title {
  margin: 0;
  font-size: 62px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
  word-break: keep-all;
}

.company-subtitle {
  margin: 18px 0 0 0;
  font-size: 28px;
  line-height: 1.6;
  color: #666;
  font-weight: 500;
  word-break: keep-all;
}

.company-text {
  max-width: 900px;
  margin: 34px auto 0;
}

.company-text p {
  margin: 0;
  font-size: 22px;
  line-height: 1.95;
  color: #444;
  word-break: keep-all;
}

.company-text p + p {
  margin-top: 18px;
}

.company-bottom-text {
  margin-top: 34px;
}

/* 1번 섹션 */
.company-sec-01 {
  overflow: hidden;
}

.company-sec-01-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

.company-sec-01 .company-title,
.company-sec-01 .company-subtitle,
.company-sec-01 .company-text p {
  color: #222;
}

/* 2번 섹션 */
.company-sec-02 {
  background: #fff;
}

.company-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.service-item {
  padding: 32px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #fafafa;
}

.service-item h3 {
  margin: 0 0 12px 0;
  font-size: 26px;
  line-height: 1.3;
  color: #222;
  font-weight: 700;
}

.service-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  word-break: keep-all;
}

/* 3번 섹션 */
.company-sec-03 {
  background: #f7f9fb;
}

.company-promise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.promise-item {
  padding: 28px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e7edf3;
}

.promise-item strong {
  display: block;
  font-size: 24px;
  line-height: 1.3;
  color: #222;
}

.promise-item span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.75;
  color: #666;
  word-break: keep-all;
}

/* 1024 */
@media all and (max-width: 1024px) {
  .company-section {
    padding: 85px 0;
  }

  .company-title {
    font-size: 34px;
  }

  .company-subtitle {
    font-size: 20px;
  }

  .company-text {
    margin-top: 28px;
  }

  .company-text p {
    font-size: 16px;
    line-height: 1.85;
  }

  .company-service-list,
  .company-promise-list {
    gap: 18px;
    margin-top: 34px;
  }

  .service-item h3 {
    font-size: 22px;
  }

  .promise-item strong {
    font-size: 21px;
  }
}

/* 767 */
@media all and (max-width: 767px) {
  .company-section {
    padding: 60px 0;
  }

  .company-kicker {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .company-title {
    font-size: 26px;
    line-height: 1.35;
  }

  .company-subtitle {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.6;
  }

  .company-text {
    margin-top: 20px;
    max-width: 100%;
  }

  .company-text p {
    font-size: 14px;
    line-height: 1.8;
  }

  .company-text p + p {
    margin-top: 14px;
  }

  .company-service-list,
  .company-promise-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .service-item,
  .promise-item {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .service-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .service-item p,
  .promise-item span {
    font-size: 14px;
    line-height: 1.7;
  }

  .promise-item strong {
    font-size: 18px;
  }

  .company-bottom-text {
    margin-top: 22px;
  }
}


/* =========================================
   서비스소개 - 홈클리닝
========================================= */

.service-box {
  width: 100%;
  padding-bottom: 100px;
}

/* 상단 이미지 */
.service-hero {
  width: 100%;
  padding-top: 40px;
}

.service-hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.service-hero-bg {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.service-inner {
  width: 100%;
}

/* 공통 섹션 */
.service-section {
  width: 100%;
  padding: 100px 0 0;
  text-align: center;
}

.service-content {
  max-width: 1400px;
  margin: 0 auto;
}

.service-kicker {
  margin: 0 0 14px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #43a0e2;
}

.service-title {
  margin: 0;
  font-size: 52px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
  word-break: keep-all;
}

.service-subtitle {
  margin: 18px 0 0 0;
  font-size: 26px;
  line-height: 1.6;
  color: #666;
  font-weight: 500;
  word-break: keep-all;
}

.service-text {
  max-width: 1400px;
  margin: 34px auto 0;
}

.service-text p {
  margin: 0;
  font-size: 20px;
  line-height: 1.95;
  color: #444;
  word-break: keep-all;
}

.service-text p + p {
  margin-top: 18px;
}

.service-bottom-text {
  margin-top: 34px;
}

/* 카드형 설명 */
.service-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.service-card {
  padding: 32px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #fafafa;
}

.service-card h3 {
  margin: 0 0 12px 0;
  font-size: 26px;
  line-height: 1.3;
  color: #222;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  word-break: keep-all;
}

/* 1024px */
@media all and (max-width: 1024px) {
  .service-box {
    padding-bottom: 80px;
  }

  .service-hero-bg {
    height: 420px;
  }

  .service-section {
    padding-top: 80px;
  }

  .service-title {
    font-size: 38px;
  }

  .service-subtitle {
    font-size: 20px;
  }

  .service-text {
    margin-top: 28px;
  }

  .service-text p {
    font-size: 16px;
    line-height: 1.85;
  }

  .service-card-list {
    gap: 18px;
    margin-top: 34px;
  }

  .service-card h3 {
    font-size: 22px;
  }
}

/* 767px */
@media all and (max-width: 767px) {
  .service-box {
    padding-bottom: 50px;
  }

  .service-hero {
    padding-top: 20px;
  }

  .service-hero-inner {
    border-radius: 8px;
  }

  .service-hero-bg {
    height: 260px;
  }

  .service-section {
    padding-top: 55px;
  }

  .service-kicker {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .service-title {
    font-size: 28px;
    line-height: 1.35;
  }

  .service-subtitle {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.6;
  }

  .service-text {
    margin-top: 20px;
    max-width: 100%;
  }

  .service-text p {
    font-size: 14px;
    line-height: 1.8;
  }

  .service-text p + p {
    margin-top: 14px;
  }

  .service-card-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .service-card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .service-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .service-bottom-text {
    margin-top: 22px;
  }
}


/* =========================================
   작업프로세스
========================================= */

.process-box {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.process-inner {
  width: 100%;
}

.process-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.process-kicker {
  margin: 0 0 14px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #43a0e2;
}

.process-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
  word-break: keep-all;
}

.process-subtitle {
  margin: 18px 0 0 0;
  font-size: 22px;
  line-height: 1.7;
  color: #666;
  word-break: keep-all;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-item {
  position: relative;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 22px;
  padding: 34px 22px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 34px;
  padding: 0 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #43a0e2;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.process-item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  color: #222;
  font-weight: 700;
  word-break: keep-all;
}

.process-item p {
  margin: 16px 0 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  word-break: keep-all;
}

/* 1024 */
@media all and (max-width: 1024px) {
  .process-box {
    padding: 80px 0;
  }

  .process-head {
    margin-bottom: 50px;
  }

  .process-title {
    font-size: 36px;
  }

  .process-subtitle {
    font-size: 18px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .process-item {
    padding: 30px 20px 26px;
  }

  .process-item h3 {
    font-size: 21px;
  }

  .process-item p {
    font-size: 15px;
  }
}

/* 767 */
@media all and (max-width: 767px) {
  .process-box {
    padding: 55px 0;
  }

  .process-head {
    margin-bottom: 34px;
  }

  .process-kicker {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .process-title {
    font-size: 28px;
    line-height: 1.35;
  }

  .process-subtitle {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-item {
    border-radius: 16px;
    padding: 24px 16px 22px;
  }

  .process-step {
    min-width: 86px;
    height: 32px;
    margin-bottom: 16px;
    font-size: 12px;
  }

  .process-item h3 {
    font-size: 19px;
  }

  .process-item p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================================
   요금안내
========================================= */

.pricing-box {
  width: 100%;
  padding: 100px 0;
  background: #fff;
}

.pricing-inner {
  width: 100%;
}

.pricing-head {
  max-width: 920px;
  margin: 0 auto 60px;
  text-align: center;
}

.pricing-kicker {
  margin: 0 0 14px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #43a0e2;
}

.pricing-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
  word-break: keep-all;
}

.pricing-subtitle {
  margin: 18px 0 0 0;
  font-size: 22px;
  line-height: 1.7;
  color: #555;
  word-break: keep-all;
}

.pricing-desc {
  margin: 18px 0 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: #777;
  word-break: keep-all;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 22px;
  padding: 34px 28px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.pricing-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #43a0e2;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  color: #222;
  font-weight: 700;
  word-break: keep-all;
}

.pricing-card-desc {
  margin: 14px 0 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  word-break: keep-all;
}

.pricing-list {
  list-style: none;
  margin: 26px 0 0 0;
  padding: 0;
  border-top: 1px solid #eef3f7;
}

.pricing-list li {
  padding: 14px 0;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  border-bottom: 1px solid #eef3f7;
  word-break: keep-all;
}

.pricing-note {
  margin-top: 40px;
  padding: 28px 30px;
  border-radius: 20px;
  background: #f8fbfd;
  border: 1px solid #e6eef5;
}

.pricing-note h4 {
  margin: 0 0 12px 0;
  font-size: 24px;
  color: #222;
  font-weight: 700;
}

.pricing-note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  word-break: keep-all;
}

.pricing-note p + p {
  margin-top: 8px;
}

/* =========================================
   1024px 이하
========================================= */
@media all and (max-width: 1024px) {
  .pricing-box {
    padding: 80px 0;
  }

  .pricing-head {
    margin-bottom: 46px;
  }

  .pricing-title {
    font-size: 36px;
  }

  .pricing-subtitle {
    font-size: 18px;
  }

  .pricing-desc {
    font-size: 15px;
  }

  .pricing-grid {
    gap: 18px;
  }

  .pricing-card {
    padding: 28px 22px 24px;
    border-radius: 18px;
  }

  .pricing-card h3 {
    font-size: 24px;
  }

  .pricing-card-desc {
    font-size: 15px;
  }

  .pricing-list li {
    font-size: 15px;
  }

  .pricing-note {
    padding: 24px 24px;
    border-radius: 18px;
  }

  .pricing-note h4 {
    font-size: 22px;
  }

  .pricing-note p {
    font-size: 15px;
  }
}

/* =========================================
   767px 이하
========================================= */
@media all and (max-width: 767px) {
  .pricing-box {
    padding: 55px 0;
  }

  .pricing-head {
    margin-bottom: 34px;
  }

  .pricing-kicker {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .pricing-title {
    font-size: 28px;
    line-height: 1.35;
  }

  .pricing-subtitle {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
  }

  .pricing-desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-card {
    border-radius: 16px;
    padding: 24px 16px 20px;
  }

  .pricing-num {
    min-width: 52px;
    height: 32px;
    margin-bottom: 16px;
    font-size: 12px;
  }

  .pricing-card h3 {
    font-size: 22px;
  }

  .pricing-card-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
  }

  .pricing-list {
    margin-top: 18px;
  }

  .pricing-list li {
    padding: 11px 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .pricing-note {
    margin-top: 24px;
    padding: 20px 16px;
    border-radius: 14px;
  }

  .pricing-note h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .pricing-note p {
    font-size: 14px;
    line-height: 1.7;
  }
}

.sub-page {
padding-bottom:50px;
}

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

/*
animate-left
animate-right
animate-up

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

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

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

/* 2. 아래에서 위로 나타나는 효과 (기본 상태: 아래로 50px 이동, 투명도 0) */
.animate-up {
opacity: 0;
transform: translateY(30px);
transition: all 0.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; }






