.sp_pool_title{text-align:center;
    margin:60px 0 50px;
}

.sp_pool_title h2{
    margin:0;
    font-size:42px;
    font-weight:500;
    letter-spacing:4px;
    color:#756150;
}

.sp_pool_title_line{
    width:12px;
    height:1px;
    background:#777;
    margin:18px auto;
}

.sp_pool_title p{
    margin:0;
    font-size:15px;
    font-weight:600;
    color:#756150;
}



        /* ===================================================
           [공통 스타일 초기화] 전체 페이지 기본 세팅
        =================================================== */
  

        /* 각 섹션 간의 여백을 위한 구분 컨테이너 */
        .section-divider-wrap {
            padding: 0px 0;
        }
        
        /* 백그라운드 색상이 있는 섹션을 위한 패딩 조절 */
        .bg-section-wrap {
            padding: 0 0 40px;
            /*margin: 40px 0;*/
        }

        /* ===================================================
           [스크롤 애니메이션 핵심 CSS 정의]
           - 기본적으로 opacity가 0이고 아래로 50px 내려가 있습니다.
           - 스크롤을 내려 화면에 포착되면 .scroll-active 클래스가 붙으며 위로 올라옵니다.
        =================================================== */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform, opacity;
        }

        /* 활성화 상태 (화면에 보일 때) */
        .scroll-reveal.scroll-active {
            opacity: 1;
            transform: translateY(0);
        }

        /* 순차적 등장(딜레이) 레이어 설정 */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.3s; }
        .delay-3 { transition-delay: 0.5s; }
        .delay-4 { transition-delay: 0.7s; }

        /* ===================================================
           [1번째 섹션] SWIMMING POOL 스타일
        =================================================== */
        .pool-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }


        .pool-image-section {
            position: relative;
            height: 410px;
            margin-bottom: 60px;
        }

        .pool-img-box {
            position: absolute;
            width: 50%;
            
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .pool-img-box img {
            width: 100%;
            height: auto;
            display: block;
        }

        .pool-img-left { left: 0; top: 0; z-index: 1;border-radius: 70px 0 0 0; }
        .pool-img-right { right: 0; bottom: 0; z-index: 2;  border-radius: 0 0 70px 0; }

        .pool-info-section {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
           
        }

        .pool-info-section .pool-intro {
            margin-bottom: 40px;
            word-break: keep-all;
        }

        .pool-info-details { text-align: left; display: inline-block; }
        .pool-info-details p { margin-bottom: 8px; }

        @media (max-width: 768px) {
            .pool-image-section { height: auto; display: flex; flex-direction: column; gap: 20px; }
            .pool-img-box { position: relative; width: 100%; }
        }

        /* ===================================================
           [2번째 섹션] STARBR GLAMPING 스타일
        =================================================== */
        .glamping-container {
           /* max-width: 1200px;*/
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
            padding: 0 20px;
        }

        .glamping-image-box {box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            flex: 1;
            max-width: 500px;
            position: relative;
            border-top-left-radius: 250px;
            border-top-right-radius: 250px;
            border: 1px solid #d3c4b4;
            padding: 15px;
            overflow: hidden;
        }

        .glamping-image-box img {
            width: 100%;
            height: auto;
            display: block;
            border-top-left-radius: 235px;
            border-top-right-radius: 235px;
        }

        .glamping-info-box {
            flex: 1.2;
            color: #555555;
            font-size: 15px;
            line-height: 1.7;
        }

        .glamping-title {
            text-align: center;
            border-top: 1px solid #d3c4b4;
            border-bottom: 1px solid #d3c4b4;
            padding: 20px 0;
            margin-bottom: 40px;
        }

        .glamping-title h2 {
            font-size: 24px;
            font-weight: 400;
            color: #b5a191;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .glamping-title p { font-size: 16px; color: #b5a191; letter-spacing: 1px; }
        .glamping-group { border-bottom: 1px solid #eeeeee; padding-bottom: 20px; margin-bottom: 20px; }
        .glamping-group:last-child { border-bottom: none; }
        .glamping-label { font-weight: 500;  margin-bottom: 8px; }
        .glamping-list { list-style: none; padding-left: 5px; }
        .glamping-list li { margin-bottom: 4px; word-break: keep-all; }

        @media (max-width: 992px) {
            .glamping-container { flex-direction: column; gap: 40px; }
            .glamping-image-box { width: 80%; max-width: 400px; }
            .glamping-info-box { width: 100%; }
        }

        /* ===================================================
           [3번째 섹션] WELCOME TO YOUTH GLAMPING 스타일
        =================================================== */
        .welcome-section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .welcome-header { position: relative; margin-bottom: 60px; padding-top: 20px; }
        .welcome-sub-title { display: block; font-size: 13px;  letter-spacing: 1px; margin-bottom: 8px; }
        .welcome-main-title { font-size: 32px; font-weight: 400; color: #222222; letter-spacing: 1px; position: relative; z-index: 2; }
        
        .welcome-bg-text {
            position: absolute;
            right: 30px;
            top: -20px;
            font-family: 'Georgia', serif;
            font-style: italic;
            font-size: 160px;
            color: #f0f0f0;
            user-select: none;
            z-index: 1;
            line-height: 1;
        }

        .welcome-content-body { display: flex; align-items: flex-start; gap: 60px; position: relative; z-index: 2; }
        
        .welcome-img-box {
            flex: 1;
            max-width: 500px;
            border-top-left-radius: 250px;
            border-top-right-radius: 250px;
			/*border: 1px solid #d3c4b4; padding: 15px;*/
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        }

        .welcome-img-box img { width: 100%; height: auto; display: block; transform: scale(1.02);
		            border-top-left-radius: 235px; border-top-right-radius: 235px; }
        .welcome-text-box { flex: 1.1; padding-top: 20px; }
        .welcome-catchphrase { font-size: 18px; font-weight: 400; color: #555555; margin-bottom: 15px; }
        
        .welcome-quote-mark {
            font-family: 'Georgia', serif;
            font-size: 50px;
            color: #b5a191;
            line-height: 1;
            margin-bottom: 20px;
            height: 30px;
        }

        .welcome-description { font-size: 15px;  line-height: 1.8; }
        .welcome-description p { margin-bottom: 4px; }
        .welcome-description .mb-highlight { margin-bottom: 25px; }
        .welcome-footer-text { font-size: 14px;  font-weight: 500; margin-top: 30px; }
        .welcome-btn-group { display: flex; margin-top: 50px; border-top: 1px solid #e5e5e5; 
		border-bottom: 1px solid #e5e5e5;}
        
        .welcome-btn{
            flex: 1;
            text-align: center;
            padding: 18px 0;
            font-size: 14px;
            color: #555555;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .welcome-btn:first-child { border-right: 1px solid #e5e5e5; }
        .welcome-btn:hover { background-color: #fbfbfb; color: #b5a191; }

        @media (max-width: 992px) {
            .welcome-content-body { flex-direction: column; gap: 40px; }
            .welcome-img-box { width: 100%; max-width: 450px; margin: 0 auto; }
            .welcome-bg-text { font-size: 100px; top: -10px; }
            .welcome-main-title { font-size: 24px; }
        }

        /* ===================================================
           [4번째 섹션] TOUR 1 고모리 수상레저 스타일
        =================================================== */
        .tour-section-container {
            width: 100%;
           /* background-color: #efece7;*/
            padding: 60px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .tour-content-wrap { max-width: 1200px; width: 100%; display: flex; align-items: flex-start; 
		position: relative; }
        
        .tour-number-box {
            display: flex;
            align-items: baseline;
            gap: 10px;
            padding-right: 40px;
            min-width: 160px;
            justify-content: flex-end;
        }

        .tour-txt { font-size: 26px;  letter-spacing: 1px; }
        .tour-num { font-size: 38px;   position: relative; }
        .tour-vertical-line { width: 1px; height: 200px; background-color: #ccc5b9; align-self: center; }
        .tour-title-box { padding-left: 40px; padding-right: 40px; min-width: 260px; }
        
        .tour-title-box h3 { font-size: 28px;  margin-bottom: 12px; letter-spacing: -0.5px; }
        .tour-title-box p {  letter-spacing: -0.5px; }
        
        .tour-desc-box { flex: 1; line-height: 1.8; word-break: keep-all; }
        .tour-desc-box p {margin-bottom: 12px; }
        .tour-desc-box p:last-child { margin-bottom: 0; }
        .tour-source {margin-top: 15px; }

        @media (max-width: 992px) {
            .tour-content-wrap { flex-direction: column; align-items: center; text-align: center; gap: 25px; }
            .tour-number-box { padding-right: 0; justify-content: center; min-width: auto; }
            .tour-vertical-line { width: 50px; height: 1px; margin: 5px 0; }
            .tour-title-box { padding: 0; min-width: auto; }
            .tour-desc-box { padding: 0 10px; text-align: left; }
        }

        /* ===================================================
           [5번째 섹션] 3단 관광지 갤러리 리스트 스타일
        =================================================== */
        .gallery-section-container { max-width: 1600px; margin: 0 auto; padding: 0 20px; }
        .gallery-grid-wrap { display: flex; gap: 30px; align-items: flex-start; }
        .gallery-card { flex: 1; background-color: #ffffff; display: flex; flex-direction: column; }
        .gallery-img-box { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; margin-bottom: 25px; }
        .gallery-img-box img { width: 100%; height: 100%; object-fit: cover; display: block;
		            }
        .gallery-text-box { text-align: left; }
        .gallery-title { font-size: 28px; font-weight: 400; color: #333333; margin-bottom: 20px; letter-spacing: -0.5px; }
        
        .gallery-desc { font-size: 14px;  line-height: 1.8; font-weight: 300; text-align: justify; word-break: break-all; }

        @media (max-width: 992px) {
            .gallery-grid-wrap { flex-direction: column; gap: 50px; }
            .gallery-card { width: 100%; max-width: 600px; margin: 0 auto; }
            .gallery-title { font-size: 24px; margin-bottom: 12px; }
        }

        /* ===================================================
           [6번째 섹션] Reservation Guide 스타일
        =================================================== */
        .reserve-section-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Noto Sans KR', sans-serif;
            
        }

        .reserve-tab-menu {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 60px;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 15px;
        }

        .reserve-tab-menu a {
            text-decoration: none;
            font-size: 14px;
            color: #999999;
            letter-spacing: 0.5px;
        }

        .reserve-tab-menu a.active {
            color: #333333;
            font-weight: 500;
            position: relative;
        }

        .reserve-main-block { margin-bottom: 60px; }
        .reserve-main-block h2 { font-size: 32px; font-weight: 400; color: #222222; letter-spacing: 0.5px; margin-bottom: 6px; }
        .reserve-main-block .reserve-sub-lbl { font-size: 12px;  display: block; margin-bottom: 25px; }
        .reserve-hr { border: none; height: 1px; background-color: #e0e0e0; margin-bottom: 35px; }
        .reserve-notice-top { font-size: 14px; color: #4f5a95; font-weight: 500; margin-bottom: 20px; }
        .reserve-info-group { margin-bottom: 35px; }
        .reserve-bullet-list { list-style: none; padding-left: 0; }
        
        .reserve-bullet-list li {
            font-size: 13.5px;
            
            margin-bottom: 6px;
            position: relative;
            padding-left: 15px;
            line-height: 1.7;
            word-break: keep-all;
        }

        .reserve-bullet-list li::before { content: "-"; position: absolute; left: 0;  }
        .reserve-bracket-title { font-size: 14px; font-weight: 500; color: #333333; margin-top: 25px; margin-bottom: 10px; }
        .reserve-table-wrap { width: 100%; overflow-x: auto; margin-top: 20px; border-top: 1px solid #222222; }
        .reserve-table { width: 100%; border-collapse: collapse; text-align: center; font-size: 13px; }
        
        .reserve-table th {
            background-color: #f7f7f7;
            font-weight: 500;
            color: #333333;
            padding: 12px 8px;
            border-bottom: 1px solid #e0e0e0;
            border-right: 1px solid #eaeaea;
        }

        .reserve-table td {
            padding: 15px 8px;
            border-bottom: 1px solid #e0e0e0;
            border-right: 1px solid #eaeaea;
            color: #555555;
        }

        .reserve-table th:last-child, .reserve-table td:last-child { border-right: none; }
        .text-alert { color: #c84a4a; font-weight: 500; }

        @media (max-width: 768px) {
            .reserve-table th, .reserve-table td { font-size: 11px; padding: 10px 4px; }
            .reserve-main-block h2 { font-size: 26px; }
        }

        /* ===================================================
           [7번째 섹션] Location 스타일
        =================================================== */
        .loc-section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .loc-layout-wrap {
            display: flex;
            align-items: flex-start;
            gap: 50px;
        }

        .loc-map-box {
            flex: 1.2;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
            border: 1px solid #eaeaea;
            aspect-ratio: 16 / 11;
        }

        .loc-map-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .loc-info-box {
            flex: 1;
            padding-top: 10px;
        }

        .loc-main-title {
            font-family: 'Georgia', serif;
            font-size: 38px;
            font-weight: 400;
            color: #222222;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .loc-address-block {
            border-top: 1px solid #222222;
            padding-top: 25px;
            margin-bottom: 35px;
        }

        .loc-address-text {
            font-size: 15px;
            color: #333333;
            font-weight: 400;
            margin-bottom: 6px;
        }

        .loc-tel-text {
            font-size: 14px;
            
        }

        .loc-route-group {
            border-top: 1px solid #eaeaea;
            padding-top: 25px;
            margin-bottom: 25px;
        }

        .loc-route-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #222222;
            margin-bottom: 12px;
        }

        .loc-icon-circle {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #222222;
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }

        .loc-route-desc {
            list-style: none;
            padding-left: 0;
        }

        .loc-route-desc li {
            font-size: 13.5px;
            
            line-height: 1.7;
            margin-bottom: 8px;
            word-break: keep-all;
            position: relative;
            padding-left: 12px;
        }
        
        .loc-route-desc li::before {
            content: "·";
            position: absolute;
            left: 0;
            font-weight: bold;
            
        }

        @media (max-width: 992px) {
            .loc-layout-wrap { flex-direction: column; gap: 40px; }
            .loc-map-box { width: 100%; }
            .loc-info-box { width: 100%; }
            .loc-main-title { font-size: 32px; }
        }


@media(max-width:900px){

    .sp_pool_wrap{
        padding:60px 16px 80px;
    }

    .sp_pool_title h2{
        font-size:30px;
        letter-spacing:4px;
    }
        }