@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

  /* CSS 충돌 방지를 위한 독립 네임스페이스 스타일 */
  .pn-top-banner-wrapper {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    height: 30px !important;
    background-color: #111111 !important;
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    overflow: hidden !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 99999 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: content-box !important;
    -webkit-text-size-adjust: 100%;
  }

  .pn-top-banner-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 30px !important;
    width: max-content !important;
    white-space: nowrap !important;
    will-change: transform;
    animation: pn-marquee-loop linear infinite;
    -webkit-animation: pn-marquee-loop linear infinite;
    margin: 0 !important;
    padding: 0 !important;
  }

  .pn-top-banner-wrapper:hover .pn-top-banner-track {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
  }

  .pn-top-banner-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    height: 30px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 그누보드 CSS가 절대 건드릴 수 없도록 강제 중앙 정렬 속성 중첩 */
  .pn-top-banner-item {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 30px !important;
    max-height: 30px !important;
    line-height: 30px !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    letter-spacing: 0.3px !important;
    margin: 0 200px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
  }

  @keyframes pn-marquee-loop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
  }

  @-webkit-keyframes pn-marquee-loop {
    0% { -webkit-transform: translate3d(0, 0, 0); }
    100% { -webkit-transform: translate3d(-50%, 0, 0); }
  }

  .pn-top-banner-spacer {
    height: 30px !important;
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }





div a:hover {
  text-decoration: none;
}

a:focus {
    outline: none !important;
}

@media (max-width: 1250px) {
  .arrow {
    display: none;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
}

/* 실제 실행 클래스 */
.fade-up.show {
  animation: fadeUp 1s ease forwards;
}

.delay-1.show {
  animation-delay: 0.2s;
}
.delay-2.show {
  animation-delay: 0.4s;
}
.delay-3.show {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.btn1,
.btn1:visited,
.btn1:active,
.btn1:focus {
    color: #fff !important;
    text-decoration: none !important;
}

.btn1:hover {
    color: #111 !important;
    text-decoration: none !important;
}
	
		/* 기본 슬라이더 컨테이너 */
        .slider {
            position: relative;
            width: 100%;
			height: 100vh; 
            overflow: hidden !important; 
            cursor: grab;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-touch-callout: none;
            touch-action: pan-y;
        }

        .slider.dragging {
            cursor: grabbing;
        }
        
        /* 모든 슬라이드를 감싸는 단일 트랙 */
        .slides-track {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* 개별 슬라이드 요소 */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100% !important;
            background-size: cover;
            background-position: center;
            opacity: 0;
            z-index: 1;
        }
        
        /* 활성화된 슬라이드만 보이게 함 */
        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        /* 오버레이 추가 */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            z-index: 3;
            pointer-events: none;
        }


/* --- 1. 기본 컨텐츠 배치 (중앙 정렬) --- */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1100px;
    color: white;
    z-index: 4;
    text-align: left;
    pointer-events: none;
}

/* --- 2. 애니메이션: 부드러운 순차 등장 --- */
@keyframes simpleFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px); /* 20px만 살짝 올라옴 */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 메인 타이틀: 묵직하고 깔끔한 화이트 */
.main-titles {
    font-size: 70px;
    font-weight: 500;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    line-height: 1;
    margin: 0;
	padding-bottom: 20px;
    letter-spacing: 0.03em; /* 글자 사이를 살짝 좁혀 응집력 있게 */
	line-height: 120%;
	
    /* 애니메이션 적용: 상단 문구보다 0.3초 늦게 등장 */
    opacity: 0;
    animation: simpleFadeUp 1s ease-out 0.3s forwards;
  text-shadow: 0 0px 2px rgba(0, 0, 0, 0.6);
}

/* 상단 문구: 더 가늘고 깔끔하게 */
.sub-text1 {
    font-size: 24px;
    font-weight: 700; /* 가벼운 폰트 두께로 고급스럽게 */
    color: rgba(255, 255, 255, 0.9); /* 순백색보다 살짝 투명하게 */
    margin-bottom: 40px;
    font-family: 'NanumSquareNeo', sans-serif;
    letter-spacing: -0.02em;
    word-break: keep-all;
	letter-spacing: 0.1em;
	line-height: 30px;
    
    /* 애니메이션 적용 */
    opacity: 0;
    animation: simpleFadeUp 1s ease-out 0.6s forwards;
  text-shadow: 0 0px 2px rgba(0, 0, 0, 0.6);
}

.sub-text2 {
    font-size: 20px;
    font-weight: 600; /* 가벼운 폰트 두께로 고급스럽게 */
    color: rgba(255, 255, 255, 0.9); /* 순백색보다 살짝 투명하게 */
    margin-bottom: 40px;
    font-family: 'NanumSquareNeo', sans-serif;
    letter-spacing: -0.02em;
    word-break: keep-all;
	letter-spacing: 0.1em;
    
    /* 애니메이션 적용 */
    opacity: 0;
    animation: simpleFadeUp 1s ease-out 0.6s forwards;
  text-shadow: 0 0px 2px rgba(0, 0, 0, 0.6);
}


/* 버튼 컨테이너: PC 왼쪽 정렬 */
.main-btn-wrapper {
    display: flex;
    justify-content: flex-start; /* 왼쪽 정렬 */
    gap: 15px;
    margin-top: 30px;
    opacity: 0;
    animation: simpleFadeUp 1s ease-out 0.9s forwards;
}

/* 버튼 공통 스타일 (.btn1의 속성 반영) */
.btn-new {
    display: inline-block;
    width: 220px; /* PC 버튼 가로길이 일정하게 */
    height: 65px; /* 높이 설정 */
    line-height: 65px; /* 텍스트 중앙 정렬 */
    text-align: center;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-family: 'NanumSquareNeo', sans-serif;
    pointer-events: auto; /* 클릭 및 호버 활성화 */
    cursor: pointer;
    box-sizing: border-box;
}

/* 1. 상담신청하기: 배경 #ef8dc4 / 글자 #fff */
.btn-apply {
    background-color: #ef8dc4;
    color: #ffffff;
    border: 2px solid #ef8dc4;
}

.btn-apply:hover {
    color: #fff !important;
    background-color: transparent !important; /* 추가 */
    border: 2px solid #fff !important;
}

/* 2. 카카오톡문의: 배경 #fff / 글자 #ef8dc4 / 테두리 1px */
.btn-kakao {
    color: #fff !important;
    background-color: transparent !important;
    border: 2px solid #fff !important;
}

.btn-kakao:hover {
    color: #fff !important;
    background-color: #ef8dc4 !important;
    border: 2px solid #ef8dc4 !important;
}
/* --- 모바일 대응 (768px 이하) --- */
@media (max-width: 768px) {
    .main-btn-wrapper {
        flex-direction: column; /* 상하 배치 */
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .btn-new {
        margin: 0 auto 0 0; /* 왼쪽 정렬 */
        width: 200px !important; /* 모바일에서 좌우 꽉 차게 */
        height: 55px;
        line-height: 55px;
        font-size: 18px;
    }
}


        .arrow {
            position: absolute;
            top: 50%;
            color: #fff;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0);
            border: none;
            font-size: 40px;
            padding: 8px 12px;
            cursor: pointer;
            z-index: 5;
            transition: background-color 0.3s;
            pointer-events: auto;
        }

        .arrow:hover {
            background-color: rgba(255, 255, 255, 0);
            color: #f3f3f3;
        }

        .arrow.left { left: 10px; }
        .arrow.right { right: 10px; }

        /* Navigation Dots */
        .navigation-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
            gap: 10px;
            pointer-events: auto;
        }

        .dot {
            height: 15px;
            width: 15px;
            background-color: #ffffff;
            border-radius: 50%;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .dot.active {
            opacity: 1;
            background-color: #ef8dc4;
        }

        @media (max-width: 1200px) {
            .slider { height: 92vh; }
            .title { font-size: 40px; }
            .subtitle { font-size: 25px; }
            .btn1 { font-size: 25px; padding: 10px 24px; }
    .content {
        width: 80%;
        left: 50%; /* 모바일에서도 완전 중앙 유지 */
        transform: translate(-50%, -50%);
    }
    .main-titles { 
        font-size: 60px; 
        /* 글자 크기가 작아지면 그림자도 약간 줄여줍니다. */
        text-shadow: 1.5px 1.5px 6px rgba(0, 0, 0, 0.5);
    }
    .sub-text1 { font-size: 20px; 
        text-shadow: 1.5px 1.5px 6px rgba(0, 0, 0, 0.5);
		}
    .sub-text2 { font-size: 20px; 
        text-shadow: 1.5px 1.5px 6px rgba(0, 0, 0, 0.5);
		}
        }

        @media (max-width: 768px) {
            .slider { height: 80vh; }
            .title { font-size: 28px; }
            .subtitle { font-size: 16px; }
            .btn1 { font-size: 20px; padding: 10px 24px; }
			.content {
        width: 85%;
        left: 50%; /* 모바일에서도 완전 중앙 유지 */
        transform: translate(-50%, -50%);
    }
    .main-titles { 
        font-size: 40px; 
        /* 모바일에서는 그림자를 더 얇게 하여 깔끔하게 표시 */
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    .sub-text1 { 
        font-size: 16px; 
        margin-bottom: 20px;
        line-height: 1.4;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        line-height: 25px;
    }
    .sub-text2 { 
        font-size: 14px; 
        margin-bottom: 20px;
        line-height: 1.4;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
            .arrow { font-size: 24px; }
        }



/* 메인 레이아웃 */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-color: #f3f0eb;
            --text-main: #1a1a1a;
            --text-sub: #555555;
            --text-light: #999999;
            --accent-color: #8c7b6b;
            --border-color: #e5e5e5;
        }

        body {
            color: var(--text-main);
            background-color: var(--bg-color);
            line-height: 1.6;
            word-break: keep-all;
            overflow-x: hidden;
        }

        /* Typography Classes */
        .eng-font {
            font-family: 'NanumSquareNeo', sans-serif;
        }
        .serif-kr {
            font-family: 'NanumSquareNeo', sans-serif;
        }

        /* Layout */
        .wrapper6, .wrapper7 {
            width: 100%;
            background-color: var(--bg-color);
            position: relative;
        }
        .wrapper4 {
            width: 100%;
            background-color: #ffffff;
            position: relative;
        }
        .wrapper5 {
            width: 100%;
            background-color: #f1f1f1;
            position: relative;
        }


        .container1 {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Divider */
        .section-divider {
            max-width: 1400px;
            margin: 0 auto;
            border: none;
            border-top: 1px solid var(--border-color);
        }

        /* Scroll Animation (Fade Up) */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        /* Button Style */
        .btn1 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 16px 40px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s ease;
			font-family: 'NanumSquareNeo', sans-serif;
        }
        .btn-outline {
            border: 1px solid var(--text-main);
            color: var(--text-main);
            background: transparent;
        }
        .btn-outline:hover {
            background: var(--text-main);
            color: #ffffff;
        }
        .btn-outline-white {
            border: 1px solid #ffffff;
            color: #ffffff;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
        }
        .btn-outline-white:hover {
            background: #ffffff;
            color: var(--text-main);
        }

        /* =========================================
           Section 4: ABOUT
        ========================================= */
        .wrapper4 {
            padding: 50px 0 30px;
        }
        .about-grid {
            display: flex;
            align-items: center;
            gap: 60px;
            justify-content: space-between;
        }
        .about-image {
            flex: 0 45%;
            aspect-ratio: 3 / 2;
            border-radius: 0px;
            overflow: hidden;
            position: relative;
        }
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .about-image:hover img {
            transform: scale(1.05);
        }
        .about-text {
            flex: 0 55%;
            margin-top: 28px;
        }
        .about-text .sec-subtitle {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            color: var(--text-sub);
            margin-bottom: 24px;
            display: block;
        }
        .about-text h2 {
            font-size: 40px;
            font-weight: 500;
            line-height: 1.3;
            margin-bottom: 30px;
        }
        .about-text p {
            font-size: 16px;
            color: var(--text-sub);
            line-height: 1.6;
        }
        .about-features {
            flex: 0 0 25%;
            list-style: none;
        }
        .about-features li {
            margin-bottom: 30px;
        }
        .about-features li:last-child {
            margin-bottom: 0;
        }
.about-features .num {
    display: inline-flex;       /* 동그라미 안에서 숫자를 중앙 정렬하기 위해 flex 사용 */
    align-items: center;        /* 세로 중앙 정렬 */
    justify-content: center;     /* 가로 중앙 정렬 */
    width: 28px;
    height: 28px;               /* 정원(정사각형)을 만들기 위해 높이 추가 */
    border-radius: 50%;         /* 사각형을 완벽한 동그라미로 변경 */
    background-color: #ef8dc4;  /* 동그라미 배경 색상 */
    color: #fff;                /* 글자 색상 (흰색) */
    font-size: 16px;            /* 동그라미(28px) 크기에 맞춰 글자 크기 살짝 조절 (필요시 변경 가능) */
    font-weight: bold;          /* 숫자를 조금 더 선명하게 보이게 함 */
    margin-right: 15px;
}
        .about-features h4 {
            display: inline-block;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .about-features p {
            font-size: 15px;
            color: var(--text-sub);
            padding-left: 47px;
        }


@media (max-width: 1024px) {
    .container1 {
        padding: 0 10px;
    }
    .about-grid {
        align-items: flex-start !important; /* 상단 정렬 유지 */
        gap: 30px;
    }
    .about-image { 
        flex: 0 0 45%; 
        order: initial !important; /* 기존 order 값 강제 초기화 */
    }
    .about-text { 
        flex: 0 0 55%; 
        margin-top: 0 !important; 
        order: initial !important; 
    }
}

/* --------------------------------------------------
   모바일 영역 (768px 이하)
-------------------------------------------------- */
@media (max-width: 768px) {
    .wrapper4 { 
        padding: 30px 0px 60px 0px; 
    }

    /* ✨ 핵심: column-reverse를 써서 무조건 [글 ➔ 이미지] 순서로 역배치 */
    .wrapper4 .container1 .about-grid,
    .about-grid {
        display: flex !important;
        flex-direction: column-reverse !important; /* 아래 항목(글)이 위로 올라감 */
        align-items: stretch !important;
        gap: 24px !important;
    }

    /* 1. 텍스트 영역 (모바일 화면 맨 위) */
    .wrapper4 .about-text,
    .about-text {
        width: 100% !important;
        flex: none !important;
        text-align: left !important;
    }
    .about-text h2 { font-size: 28px; }
    .about-text p { font-size: 14px; }

    /* 2. 이미지 영역 (모바일 화면 글 아래) */
    .wrapper4 .about-image,
    .about-image {
        width: 100% !important;
        flex: none !important;
    }

    /* 3. 특장점 리스트가 있다면 */
    .about-features li { 
        flex: 0 0 100% !important; 
        text-align: left !important; 
    }
}

/* 1. 그리드 및 이미지 박스의 '상단 정렬' 강제 지정 */
.about-grid {
    align-items: flex-start !important; /* center(중앙 정렬)를 flex-start(상단 정렬)로 변경 */
}

.about-image {
    align-self: flex-start !important;  /* 이미지 박스 자체를 최상단에 바짝 밀착 */
}

/* 2. 텍스트 상단 여백 제거 (이미지와 윗줄 높이를 동일하게 맞춤) */
.about-text {
    margin-top: 0 !important;           /* 기존 PC CSS의 margin-top: 28px 제거 */
}

/* 3. 그놈보드 최신글(pic_block1) 스킨 내부 태그들의 정렬 초기화 */
.about-image,
.about-image *,
.about-image img {
    vertical-align: top !important;
    margin-top: 0 !important;
}

        /* =========================================
           Section 5: PORTFOLIO
        ========================================= */
        .wrapper5 {
            padding: 50px 0;
        }
        .portfolio-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }
        .portfolio-title .sec-subtitle {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            color: var(--text-sub);
            margin-bottom: 15px;
            display: block;
        }
        .portfolio-title h2 {
            font-size: 30px;
            font-weight: 400;
        }

        .view-all {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--text-main);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: opacity 0.3s;
        }
        .view-all:hover {
            opacity: 0.6;
        }

        .portfolio-content {
            min-height: 200px;
            font-size: 15px;
            color: var(--text-sub);
        }


        @media (max-width: 768px) {

            .portfolio-header { flex-direction: column; align-items: flex-start; gap: 20px; }
            .portfolio-title h2 { font-size: 20px; }
    .view-all { padding-top: 20px;
        font-size: 10px;
        justify-content: flex-end;
        width: 100%;
    }
        }

        /* =========================================
           Section 6: PROCESS
        ========================================= */
        .wrapper6 {
            padding: 80px 0 100px;
        }
        .process-title-area {
            margin-bottom: 40px;
        }
        .process-title-area .sec-subtitle {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            color: var(--text-sub);
            margin-bottom: 15px;
            display: block;
        }
        .process-title-area h2 {
            font-size: 46px;
            font-weight: 400;
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            text-align: center;
        }
        .process-item {
            background-color: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 50px 20px;
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
        }
        .process-item:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            border-color: #cccccc;
        }
        .process-item .step-num {
            font-size: 24px;
            color: var(--text-light);
            margin-bottom: 15px;
            display: block;
        }
        .process-item h4 {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 12px;
        }
        .process-item p {
            font-size: 16px;
            color: var(--text-sub);
            line-height: 1.5;
        }

        /* [태블릿 해상도] 가로 3개 / 밑에 2개 (가운데 정렬) */
        @media (max-width: 1024px) {
            .process-grid {
                display: flex;         /* Grid 대신 Flex로 전환하여 가운데 정렬을 쉽게 구현 */
                flex-wrap: wrap;       /* 줄바꿈 허용 */
                justify-content: center; /* 아이템들을 가운데로 정렬 */
                gap: 30px;
            }
            .process-item {
                /* 가로 3개씩 배치하기 위해 (100% - 여백) / 3 계산 */
                flex: 0 0 calc((100% - 60px) / 3); 
                min-width: 220px; /* 너무 좁아지지 않도록 최소 너비 지정 */
            }
        }

        /* [모바일 해상도] 가로 2개씩 2줄 / 밑에 1개 (가운데 정렬) */
        @media (max-width: 768px) {
            .wrapper6 { 
                padding: 60px 0 100px; 
            }
            .process-title-area h2 { 
                font-size: 36px; 
            }
            
            /* 가로 2개 배치를 위한 전체 컨테이너 설정 */
            .process-grid {
                display: flex !important;
                flex-wrap: wrap !important;
                justify-content: center !important;
                gap: 16px !important; /* 박스 사이 간격을 모바일에 맞게 최적화 */
                width: 100%;
            }
            
            /* 가로 2개씩 채우고 마지막 5번째는 자동으로 가운데 정렬 */
            .process-item {
                /* 양쪽 여백 16px을 제외하고 정확히 반반씩 차지하도록 설정 */
                flex: 0 0 calc((100% - 16px) / 2) !important;
                width: calc((100% - 16px) / 2) !important;
                max-width: calc((100% - 16px) / 2) !important;
                
                /* 모바일 화면에 맞게 내부 여백과 글자 크기 조정 */
                padding: 30px 15px !important; 
            }
            .process-item h4 {
                font-size: 24px;
            }
            .process-item p {
                font-size: 16px;
            }
        }

        /* 스마트폰 세로 모드(아주 좁은 화면)에서도 2열을 유지하도록 대폭 수정 */
        @media (max-width: 480px) {
            .process-grid {
                gap: 16px !important; /* 박스 사이의 상하 간격 */
                width: 100%;
            }
            .process-item {
                /* 가로로 꽉 차게 100%로 설정 (태블릿/모바일에서 설정한 좌우 여백 10px 제외하고 꽉 찹니다) */
                flex: 0 0 100% !important;
                width: 100% !important;
                max-width: 100% !important;
                
                /* 시각적으로 안정감을 주도록 내부 여백 조정 */
                padding: 40px 20px !important;
            }
        }

/* =========================================
   Section 7: ADDRESS – 고급스러운 디자인
========================================= */
.wrapper7 {
    padding: 0;
}

.product-bg {
    background: #faf7f5; /* 더 차분하고 우아한 베이지 톤 */
    padding: 80px 0;
    color: #2c2c2c;
    text-align: center;
}

.sub-title1 {
   font-size: 14px;	 		
   font-family: 'NanumSquareNeo', sans-serif;
   font-weight: 500;
   letter-spacing: 2px;
   color: var(--text-sub);
   margin-bottom: 10px;
   display: block;
}

/* 타이틀 – 세리프 폰트 적용 */
.product-bg h2 {
    font-weight: 700;
    font-size: 38px;
    color: #2c2c2c;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}
.product-bg h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #ef8dc4; /* 포인트 컬러 */
}

/* 지도 영역 – 액자 프레임 & 깊이감 */
.map-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 40px auto;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    padding: 8px; /* 흰색 테두리 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 
                0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

#map {
    width: 100%;
    height: 480px;
    border-radius: 14px;
    overflow: hidden;
}

/* 하단 주소 영역 – 카드 스타일 */
.address-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    text-align: left;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 30px 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.address-info {
    flex: 1;
}

/* 위치 아이콘 + 한글 주소 */
.addr-ko {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
	line-height: 25px;
}
.addr-ko svg {
    flex-shrink: 0;
}

.addr-en {
    font-size: 15px;
    color: #7a7a7a;
    font-weight: 400;
	line-height: 18px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.addr-notice {
    font-size: 14px;
    color: #a49387;
    font-weight: 300;
	line-height: 18px;
    letter-spacing: 0.3px;
}

/* 우측 네비게이션 버튼 */
.address-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 200px;
}

/* 버튼 스타일 세련되게 변경 */
.product-bg .btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ef8dc4; /* 기본 상태를 채워진 버튼으로 변경하여 시선 집중 */
    color: #fff !important;
    padding: 20px 35px;
    font-size: 17px;
	font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #ef8dc4;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 10px; /* 둥근 캡슐 형태로 트렌디하게 */
}

.product-bg .btn1:hover {
    background: transparent;
    color: #ef8dc4 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.0);
}

/* 지도 안내 문구 (Ctrl+스크롤) – 고급스러운 토스트 */
#map-warning {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: #2c2c2c;
    padding: 14px 28px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 400;
    z-index: 10;
    display: none;
    pointer-events: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-family: 'Nanum Square Neo', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
#map-warning strong {
    font-weight: 700;
    color: #ef8dc4;
}

/* 태블릿 */
@media (max-width: 1024px) {
    .product-bg { padding: 100px 0 80px; }
    #map { height: 380px; }
    .address-bottom { padding: 25px 30px; }
}

/* 모바일 */
@media (max-width: 768px) {
    .product-bg { padding: 70px 0 60px; }

    .product-bg h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .product-bg h2::after {
        width: 40px;
        bottom: -8px;
    }

    .map-wrap {
        margin-bottom: 20px;
        padding: 6px;
        border-radius: 16px;
    }
    #map {
        height: 260px;
        border-radius: 10px;
    }

    .address-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
        backdrop-filter: none;
        background: rgba(255,255,255,0.4);
    }

    .addr-ko {
        font-size: 17px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .addr-en {
        font-size: 13px;
    }
    .addr-notice {
        font-size: 13px;
    }

    .address-btn {
        width: 100%;
        justify-content: center;
    }
    .product-bg .btn1 {
        width: 100%;
        max-width: 280px;
        padding: 14px 0;
        font-size: 15px;
        border-radius: 10px;
    }

    #map-warning {
        font-size: 12px;
        padding: 10px 18px;
        white-space: normal;
        max-width: 90%;
    }
}



        /* 가로 100% wrapper8 */
        .wrapper8 { width: 100%; background-color: #fff; padding: 80px 40px 30px 40px; }

        /* PC 기준 1200px container8 */
        .container8 {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: flex-start; /* 상단 정렬 */
            justify-content: space-between;
            gap: 60px;
        }


/* 왼쪽 영역 베이스 */
.content-left {
    width: 50%;
	font-family: 'NanumSquareNeo', sans-serif;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left; /* 기본 왼쪽 정렬 */
}

/* 상단 영문 서브타이틀 */
.sub-title {
   font-size: 14px;	 	
   font-family: 'NanumSquareNeo', sans-serif;
   font-weight: 500;
   letter-spacing: 2px;
   color: var(--text-sub);
   margin-bottom: 10px;
   display: block;
}


/* 메인 타이틀 (기존 100px 유지하되 줄간격 조정) */
.content-left h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
	font-family: 'NanumSquareNeo', sans-serif;
}

/* 설명 문구 */
.desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 50px;
}

/* 하단 아이콘 리스트 정보 */
.info-list {
    list-style: none;
    padding: 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px; /* 간격을 살짝 넓혔습니다 */
}

.info-icon {
    width: 60px;  /* 원 크기를 55px -> 60px로 확대 */
    height: 60px;
    background: #009579; /* 배경을 좀 더 밝고 깔끔하게 변경 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease; /* 부드러운 효과 추가 */
}

/* 아이콘 스타일 정의 */
.info-icon i { 
    font-size: 20px; /* 아이콘 자체 크기 */
    color: #fff;  /* 요청하신 색상 적용 */
}

.info-text {
    flex: 1;           /* 남은 공간을 모두 사용 */
    min-width: 0;      /* flex 아이템의 최소 너비 제한 해제 (중요) */
}

.info-text span {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
    font-weight: 500;
}

.info-text p {
    margin: 0; /* 기본 마진 제거 */
    font-size: 19px; /* 글자 크기 미세 조정 */
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    word-break: break-word;   /* 줄바꿈 처리 */
}

/* 마우스 호버 시 살짝 떠오르는 효과 (선택 사항) */
.info-item:hover .info-icon {
    background: #10715f;
}
.info-item:hover .info-icon i {
    color: #fff;
}

.content-image {
    margin-top: 50px;
    overflow: hidden;
    border-radius: 0px;
}

.content-image img {
    display: block;
    width: 100%;
    height: auto !important;
    transition: transform 0.4s ease;
}

.content-image:hover img {
    transform: scale(1.06);
}


        /* 오른쪽 Iframe 영역 */
        .content-right {
            width: 50%;
            opacity: 0; /* 초기 상태 숨김 */
            transform: translateY(50px); /* 아래에서 대기 */
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition-delay: 0.3s; /* 순차적 등장을 위한 지연 */
            padding-bottom: 40px;
        }

        /* 스크롤 시 나타나는 클래스 */
        .content-left.is-visible,
        .content-right.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        #form-iframe {
           width: 100%;
           border: none;
           /* height: 0px; /* 초기값 */
           overflow: hidden;
           transition: height 0.3s ease; /* 부드러운 높이 변화 */
        }

        /* 모달 팝업 */
        #modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .modal-box {
            background: #fff;
            width: 90%;
            max-width: 650px;
            height: 70vh;
            border-radius: 0px;
            padding: 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 18px;font-family: 'NanumSquareNeo', sans-serif;}
        .modal-close { cursor: pointer; font-size: 35px; border: none; background: none; color: #999; line-height: 1; }
        .modal-body { flex: 1; overflow-y: auto; padding-right: 10px; line-height: 1.7; color: #444; font-size: 15px; white-space: pre-wrap; }

        /* 반응형 */
        @media (max-width: 1024px) {
            .wrapper8 { padding: 50px 10px 30px 10px }
            .container8 { flex-direction: column; text-align: center; gap: 40px; margin-bottom: 0px;}
            .content-left, .content-right { width: 100%; }
    .content-left h2 { font-size: 30px; margin-bottom: 20px; }
    .sub-title { font-size: 14px; }
    .desc { font-size: 16px; margin-bottom: 30px; }
    .info-icon { width: 45px; height: 45px; }
    .info-text p { font-size: 15px; }
    .desc { font-size: 14px;}
    .content-image {	
        margin-top: 50px;
        border-radius: 0px;
        overflow: hidden;
    }

    .content-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

     }
        }

        @media (max-width: 768px) {
            .wrapper8 { padding: 50px 10px 30px 10px }
            .container8 { flex-direction: column; text-align: center; gap: 40px; margin-bottom: 0px;}
            .content-left, .content-right { width: 100%; }
    .content-left h2 { font-size: 30px; margin-bottom: 20px; }
    .sub-title { font-size: 14px; }
    .desc { font-size: 16px; margin-bottom: 30px; }
    .info-icon { width: 45px; height: 45px; }
    .info-text p { font-size: 15px; }
    .desc { font-size: 14px;}
    .content-image {	
        margin-top: 50px;
        border-radius: 0px;
        overflow: hidden;
    }

    .content-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

     }



/* 푸터 전체 컨테이너 격리 */
#dy-footer-unique {
    background-color: #ef8dc4 !important;
    color: #fff !important;
    padding: 60px 20px 40px !important;
    font-family: 'Pretendard', 'Malgun Gothic', sans-serif !important;
    line-height: 1.6 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#dy-footer-unique .dy-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* PC 레이아웃: 가로로 3개 배치 */
#dy-footer-unique .dy-footer-content {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 30px !important;
    margin-bottom: 40px !important;
    text-align: left !important;
}

/* 영역별 너비 설정 */
#dy-footer-unique .dy-footer-logo { flex: 1; min-width: 280px; }
#dy-footer-unique .dy-footer-info { flex: 1.2; min-width: 300px; }
#dy-footer-unique .dy-footer-contact { flex: 1; min-width: 250px; }

/* 텍스트 스타일 정의 */
#dy-footer-unique h2 { font-family: "Cormorant Garamond", serif; color: #ffffff !important; font-size: 33px !important; margin: 0 0 15px 0 !important; font-weight: 500 !important; }
#dy-footer-unique h3 { color: #ffffff !important; font-size: 20px !important; margin: 0 0 15px 0 !important; font-weight: 500 !important; }

#dy-footer-unique p { margin: 0 0 8px 0 !important; color: #fff !important; font-size: 15px !important; word-break: keep-all !important; }
#dy-footer-unique p span { font-weight: 500 !important; color: #fff !important; margin-right: 5px; }

/* 전화번호 강조 */
#dy-footer-unique .dy-phone { font-size: 32px !important; color: #fff !important; font-weight: 800 !important; margin: 10px 0 !important; }
#dy-footer-unique .dy-hours { font-size: 14px !important; }

/* 하단 카피라이트 */
#dy-footer-unique .dy-footer-bottom {
    text-align: center !important;
    border-top: 1px solid #f59bcd !important;
    padding-top: 25px !important;
    font-size: 13px !important;
}

#dy-footer-unique .dy-footer-bottom a {
    color: #fff !important;
    text-decoration: none;
}

/* --- 모바일 레이아웃 (768px 이하) --- */
@media (max-width: 768px) {
    #dy-footer-unique { 
        padding: 30px 15px 25px !important; /* 상하 여백도 함께 축소 */
    }
    
    #dy-footer-unique .dy-footer-content {
        flex-direction: column !important; 
        gap: 30px !important; /* 섹션 간 간격 축소 */
    }
    
    #dy-footer-unique .dy-footer-logo,
    #dy-footer-unique .dy-footer-info,
    #dy-footer-unique .dy-footer-contact {
        width: 100% !important;
        text-align: left !important;
    }

    /* 모바일 글자 크기 대폭 조정 */
    #dy-footer-unique h2 { 
        font-size: 25px !important; /* 기존 22px -> 19px */
        margin-bottom: 10px !important;
    }
    
    #dy-footer-unique h3 { 
        font-size: 16px !important; /* 기존 18px -> 16px */
        margin-bottom: 10px !important;
    }

    #dy-footer-unique p { 
        font-size: 13px !important; /* 기존 14px -> 13px */
        margin-bottom: 5px !important;
    }

    #dy-footer-unique .dy-phone { 
        font-size: 24px !important; /* 기존 28px -> 24px */
        margin: 5px 0 !important;
    }

    #dy-footer-unique .dy-hours { 
        font-size: 12px !important; /* 기존 14px -> 12px */
    }

    #dy-footer-unique .dy-footer-bottom {
        padding-top: 20px !important;
        font-size: 11px !important; /* 카피라이트 크기 축소 */
    }
}

