/* =========================
   기본 설정
========================= */
/* =========================
   사이트 컬러
========================= */
:root {
    --primary: #167D7F;
    --primary-dark: #116466;
    --primary-light: #EAF6F6;
    --text: #222222;
    --text-light: #777777;
    --border: #E8E8E8;
    --background: #F7F7F7;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        "Pretendard",
        "Noto Sans KR",
        Arial,
        sans-serif;
    background: #ffffff;
    color: #222222;
}
/* PC 메인 페이지는 화면 중앙에 유지하고,
   오른쪽 고정 사이드바는 레이아웃 계산에서 분리합니다. */
button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}
a {
    text-decoration: none;
    color: inherit;
}
/* =========================
   PC 고정 사이드바
========================= */
.desktop-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    z-index: 1200;
    background: #ffffff;
    border-left: 1px solid #e8e8e8;
    overflow-y: hidden;
}
.desktop-sidebar-inner {
    padding: 18px 20px;
}
/* 상단 로고 영역 */
.desktop-sidebar-top {
    padding: 0 6px 16px;
    border-bottom: 1px solid #eeeeee;
}
.desktop-sidebar-top h2 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 27px;
    font-weight: 800;
}
.desktop-sidebar-top p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}
.desktop-region-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}
.desktop-region-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}
/* =========================
   사이드바 지역 바로가기
========================= */
.desktop-region-list {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 7px;
    margin-top: 8px;
}
.desktop-region-button {
    padding: 8px 5px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    transition: 0.2s;
}
.desktop-region-button:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.desktop-region-button.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
}
/* 메뉴 전체 */
.desktop-sidebar-menu {
    margin-top: 6px;
}
/* 메뉴 그룹 */
.desktop-menu-group {
    padding: 9px 0;
    border-bottom: 1px solid #eeeeee;
}
.desktop-menu-group:last-child {
    border-bottom: none;
}
/* 쉼터 소개 / 서비스 안내 등 제목 */
.desktop-menu-group h3 {
    margin: 0 8px 4px;
    color: #999;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
/* 실제 메뉴 */
.desktop-menu-group a {
    position: relative;
    display: block;
    margin: 0;
    padding: 6px 10px;
    border-radius: 10px;
    color: #444;
    font-size: 14px;
    font-weight: 600;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}
/* 마우스 올렸을 때 */
.desktop-menu-group a:hover {
    padding-left: 19px;
    background: var(--primary-light);
    color: var(--primary);
}
.desktop-menu-group a.active {
    padding-left: 19px;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 800;
}
/* =========================
   사이드바 상담예약 버튼
========================= */
.desktop-reservation-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 6px;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.desktop-reservation-button strong {
    font-size: 18px;
    transition:
        transform 0.2s ease;
}
.desktop-reservation-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px
        rgba(22, 125, 127, 0.20);
}
.desktop-reservation-button:hover strong {
    transform: translateX(4px);
}
/* =========================
   HEADER
========================= */
.header {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    width: 92%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}
/* =========================
   로고
========================= */
.logo {
    margin: 0;
    flex-shrink: 0;
    font-size: 28px;
    font-weight: 800;
    color: #111;
}
.header-region {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}
.header-region-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
/* =========================
   상단 상담예약 버튼
========================= */
.header-reservation-button {
    margin-left: auto;
    padding: 12px 20px;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}
.header-reservation-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
/* =========================
   햄버거
========================= */
.menu-button {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid #dddddd;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: 0.2s;
}
.menu-button:hover {
    background: #f5f5f5;
    border-color: #bbbbbb;
}
.menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    background: #222;
    transition: 0.2s;
}
/* =========================
   햄버거 애니메이션
========================= */
.menu-button span {
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}
.menu-button.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}
.menu-button.active span:nth-child(2) {
    opacity: 0;
}
.menu-button.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}
/* =========================
   HERO SLIDER
========================= */
.hero {
    width: 100%;
    padding-top: 30px;
}
.hero-slider {
    position: relative;
    width: 92%;
    max-width: 1400px;
    height: clamp(400px, 37vw, 520px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: #ddd;
}
.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 90px;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-color: #dfe8e3;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.20) 55%,
            rgba(0, 0, 0, 0.05) 100%
        );
}
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
}
/* =========================
   HERO 배지
========================= */
.hero-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 7px 12px;
    border: 1px solid
        rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background:
        rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(6px);
}
.slide-content p {
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}
.slide-content h2 {
    margin-bottom: 20px;
    font-size: 52px;
    line-height: 1.25;
    font-weight: 800;
    text-shadow:
    0 3px 18px
    rgba(0, 0, 0, 0.18);
}
.slide-content span {
    display: block;
    max-width: 500px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-shadow:
    0 2px 10px
    rgba(0, 0, 0, 0.15);
}
/* HERO 버튼 */
.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s;
}
.hero-button span {
    transition: transform 0.25s ease;
}
.hero-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
}
.hero-button:hover span {
    transform: translateX(5px);
}
/* 사진이 없을 때 기본 배경 */
.slide:nth-child(1) {
    background-color: #dfe8e3;
}
.slide:nth-child(2) {
    background-color: #e7e2d8;
}
.slide:nth-child(3) {
    background-color: #dde5ec;
}
/* =========================
   슬라이더 점
========================= */
.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    z-index: 10;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}
.dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: 0.2s;
}
.dot.active {
    width: 28px;
    border-radius: 10px;
    background: #fff;
}
/* =========================
   지역 선택 영역
========================= */
.region-section {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto 100px;
}
/* 지역 탭 */
.region-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 18px;
    overflow-x: auto;
}
.region-tab {
    min-width: 95px;
    padding: 13px 20px;
    border: 1px solid #e3e3e3;
    border-radius: 999px;
    background: #ffffff;
    color: #777;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}
.region-tab:hover {
    color: #222;
    border-color: #bbbbbb;
    background: #f7f7f7;
}
.region-tab.active {
    color: #ffffff;
    border-color: var(--primary);
    background: var(--primary);
    box-shadow:
        0 6px 18px
        rgba(22, 125, 127, 0.20);
}
/* =========================
   지도 + 주요 서비스 기본 레이아웃
========================= */
.map-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.map-side {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}
.map-service-side {
    min-width: 0;
}
.map-service-header {
    margin-bottom: 12px;
}
.map-service-header h2 {
    margin: 3px 0 5px;
    font-size: 24px;
    font-weight: 800;
}
.map-service-header > p:last-child {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}
.map-service-side .service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.map-service-side .service-card {
    min-height: 155px;
    padding: 18px;
    opacity: 1;
    transform: translateY(0);
}
.map-service-side .service-card h3 {
    margin: 8px 0;
    font-size: 16px;
}
.map-service-side .service-card p {
    font-size: 11px;
    line-height: 1.5;
}
/* 지도 상단 설명 */
.map-header {
    min-height: 110px;
    padding: 25px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}
.map-label {
    margin: 0 0 5px;
    color: #aaa;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    white-space: nowrap;
}
.map-header h2 {
    margin: 0;
    color: #111;
    font-size: 30px;
    font-weight: 800;
}
#regionDescription {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    text-align: right;
}
/* 실제 지도 */
.map {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}
#kakaoMap {
    width: 100%;
    height: 100%;
}
/* =========================
   메뉴 배경
========================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1900;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* =========================
   사이드 메뉴
========================= */
.side-menu {
    position: fixed;
    top: 0;
    right: -520px;
    width: 500px;
    height: 100vh;
    z-index: 2000;
    padding: 0;
    background: #ffffff;
    box-shadow:
        -10px 0 40px
        rgba(0, 0, 0, 0.12);
    transition: right 0.4s ease;
    overflow-y: auto;
}
.side-menu.active {
    right: 0;
}
.side-menu-header {
    height: 90px;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
}
.side-menu-header h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 800;
    color: #111;
}
.close-button {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: #222;
    font-size: 27px;
    cursor: pointer;
    transition: 0.2s;
}
.close-button:hover {
    background: #222;
    color: #ffffff;
}
/* 메뉴 내용 */
.menu-content {
    padding: 15px 35px 50px;
}
.menu-group {
    padding: 28px 0;
    border-bottom: 1px solid #eeeeee;
}
.menu-group:last-child {
    border-bottom: none;
}
.menu-group h3 {
    margin: 0 0 16px;
    font-size: 19px;
    font-weight: 800;
    color: #111;
}
.menu-group button,
.menu-group a {
    width: 100%;
    display: block;
    padding: 9px 0;
    border: none;
    background: none;
    color: #666;
    font-family: inherit;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
    transition: 0.2s;
}
.menu-group button:hover,
.menu-group a:hover {
    padding-left: 8px;
    color: #111;
}
/* =========================
   MODAL
========================= */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    z-index: 3000;
    transition: 0.25s;
}
.modal.active {
    opacity: 1;
    visibility: visible;
}
.modal-box {
    position: relative;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.2);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
}
.modal-label {
    color: #777;
    font-size: 14px;
    margin-bottom: 8px;
}
.modal-box h2 {
    margin-bottom: 15px;
}
.modal-box p {
    color: #666;
}
.detail-button {
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    background: #222;
    color: #fff;
    border-radius: 6px;
}
/* =========================
   공지사항 팝업
========================= */
.notice-modal {
    position: fixed;
    inset: 0;
    z-index: 3500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background:
        rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}
.notice-modal.active {
    opacity: 1;
    visibility: visible;
}
.notice-modal-box {
    position: relative;
    width: 100%;
    max-width: 650px;
    padding: 42px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.18);
    transform:
        translateY(20px);
    transition:
        transform 0.25s ease;
}
.notice-modal.active .notice-modal-box {
    transform:
        translateY(0);
}
.notice-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    font-size: 24px;
    transition: 0.2s;
}
.notice-modal-close:hover {
    background: var(--primary);
    color: #ffffff;
}
.notice-modal-category {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 11px;
    border-radius: 999px;
    background:
        var(--primary-light);
    color:
        var(--primary);
    font-size: 12px;
    font-weight: 800;
}
.notice-modal-box h2 {
    margin-bottom: 10px;
    padding-right: 45px;
    font-size: 26px;
    line-height: 1.4;
}
.notice-modal-date {
    margin-bottom: 28px;
    color: #999;
    font-size: 13px;
}
.notice-modal-content {
    padding-top: 25px;
    border-top:
        1px solid #eeeeee;
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    white-space: pre-line;
}
/* =========================
   상단 메뉴
========================= */
.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
}
.main-nav a {
    position: relative;
    padding: 34px 0;
    color: #444;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s;
}
.main-nav a:hover {
    color: #111;
}
/* =========================
   MEGA MENU
========================= */
.nav-item {
    height: 90px;
    display: flex;
    align-items: center;
}
/* 큰 메뉴 */
.mega-menu {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    padding: 45px 0 55px;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    box-shadow:
        0 15px 30px
        rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
    z-index: 900;
}
/* 마우스 올리면 열기 */
.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* 메뉴 내부 */
.mega-menu-inner {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        1.2fr
        1fr
        1fr
        1fr;
    gap: 45px;
}
/* 왼쪽 설명 */
.mega-title {
    padding-right: 40px;
    border-right: 1px solid #eeeeee;
}
.mega-title > p {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}
.mega-title h2 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 800;
}
.mega-title span {
    display: block;
    max-width: 260px;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}
/* 메뉴 열 */
.mega-column h3 {
    margin-bottom: 15px;
    padding: 14px 16px;
    background: #f5f6f7;
    font-size: 15px;
    font-weight: 800;
}
.main-nav .mega-column a {
    display: block;
    padding: 8px 16px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}
.main-nav .mega-column a:hover {
    padding-left: 22px;
    color: var(--primary);
}
/* =========================
   메가메뉴 디테일
========================= */
/* 상단 메뉴 활성 표시 */
.nav-item > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}
.nav-item:hover > a {
    color: var(--primary);
}
.nav-item:hover > a::after {
    width: 100%;
}
/* 메가메뉴 항목 앞 작은 표시 */
.main-nav .mega-column a {
    position: relative;
}
.main-nav .mega-column a::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    transform:
        translateY(-50%)
        translateX(-5px);
    transition: 0.2s;
}
.main-nav .mega-column a:hover::before {
    opacity: 1;
    transform:
        translateY(-50%)
        translateX(0);
}
/* =========================
   상세페이지 상단
========================= */
.detail-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow:
    0 4px 18px
    rgba(0, 0, 0, 0.04);
}
.detail-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            to right,
            transparent,
            rgba(22, 125, 127, 0.18),
            transparent
        );
}
.detail-header-inner {
    width: 92%;
    max-width: 1400px;
    min-height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
/* 왼쪽 쉼터 이름 */
.detail-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #111;
    font-size: 26px;
    font-weight: 800;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}
.detail-logo:hover {
    color: var(--primary);
    transform: translateX(-3px);
}
.detail-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.detail-eyebrow {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
#detailTitle {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}
.detail-subtitle {
    color: #999;
    font-size: 11px;
    font-weight: 500;
}
.back-arrow {
    font-size: 38px;
    line-height: 1;
}
.detail-logo:hover .back-arrow {
    color: var(--primary);
    transform: translateX(-4px);
}
/* =========================
   상세페이지 지역 선택
========================= */
.detail-region-select {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 6px 8px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #ffffff;
}
.detail-region-select label {
    padding-left: 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}
.detail-region-select select {
    min-width: 90px;
    padding: 8px 28px 8px 10px;
    border: none;
    background: transparent;
    color: #333;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}
.detail-region-select select:hover,
.detail-region-select select:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 0 3px
        rgba(22, 125, 127, 0.08);
}
/* 오른쪽 메뉴 */
.detail-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 38px;
    flex: 1;
}
/* =========================
   상세페이지 탭 보강
========================= */
.detail-nav {
    padding-left: 20px;
}
.detail-nav-button {
    border-radius: 8px 8px 0 0;
}
.detail-nav-button:hover {
    background:
        rgba(22, 125, 127, 0.06);
}
.detail-nav-button.active {
    color: var(--primary);
    background:
        rgba(22, 125, 127, 0.08);
}
.detail-nav-button {
    position: relative;
    padding: 33px 0;
    border: none;
    background: none;
    color: #555;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.2s;
}
.detail-nav-button:hover {
    color: #111;
}
.detail-nav-button.active {
    color: var(--primary);
}
.detail-nav-button.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}
/* =========================
   상세페이지 메인
========================= */
.detail-main {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 0 100px;
}

.detail-overview {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 38px;
    min-height: 380px;
    padding: 32px;

    border: 1px solid #e8e8e8;
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbfb 100%
        );

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, 0.05);
}

.detail-map-area {
    min-height: 320px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    background: #eaeaea;
    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.06);
}
#detailMap {
    width: 100%;
    height: 320px;
}
/* 아래 내용 */
.detail-content {
    margin-top: 70px;
}
.detail-panel {
    display: none;
}
.detail-panel.active {
    display: block;
    animation:
        detailFadeIn 0.45s ease both;
}
/* 탭 전환 애니메이션 */
@keyframes detailFadeIn {
    0% {
        opacity: 0;
        transform:
            translateY(18px);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform:
            translateY(0);
        filter: blur(0);
    }
}
.detail-panel > h2 {
    margin-bottom: 30px;
    font-size: 30px;
}
.detail-card {
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: #fff;
}
.detail-card h3 {
    margin: 0 0 12px;
}
.detail-card p {
    margin: 0;
    line-height: 1.7;
    color: #555;
}
/* =========================
   페이지 전환 로딩
========================= */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}
.page-loader.active {
    opacity: 1;
    visibility: visible;
}
.page-loader-content {
    text-align: center;
}
.loader-circle {
    width: 48px;
    height: 48px;
    margin: 0 auto 22px;
    border: 4px solid #e8eeee;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation:
        loaderSpin 0.8s linear infinite;
}
.page-loader-content h2 {
    margin-bottom: 8px;
    color: #222;
    font-size: 24px;
    font-weight: 800;
}
.page-loader-content p {
    color: #888;
    font-size: 14px;
}
@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}
/* =========================
   상세페이지 모바일
========================= */
@media (max-width: 900px) {
    .detail-header-inner {
        width: 92%;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 18px 0;
    }
    .detail-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 25px;
        overflow-x: auto;
    }
    .detail-nav-button {
        padding: 12px 0;
        white-space: nowrap;
    }
    .detail-overview {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    .detail-region-select {
        width: 100%;
        justify-content: space-between;
    }
    .detail-region-select select {
        flex: 1;
    }
}
/* =========================
   운영안내
========================= */
.info-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}
.info-card {
    min-height: 150px;
    padding: 28px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: #fff;
    transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.info-card:hover {
    transform: translateY(-4px);
    border-color:
        rgba(22, 125, 127, 0.30);
    box-shadow:
        0 10px 28px
        rgba(22, 125, 127, 0.08);
}
.info-label {
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}
.info-card h3 {
    font-size: 18px;
    line-height: 1.6;
}
.route-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: #fff;
}
.route-box h3 {
    margin-bottom: 10px;
}
.route-box p {
    color: #666;
    line-height: 1.7;
}
.map-link-button {
    flex-shrink: 0;
    padding: 14px 22px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}
.map-link-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .route-box {
        align-items: flex-start;
        flex-direction: column;
    }
    .header-reservation-button {
        display: none;
    }
    .header-region {
        display: none;
    }
}
/* =========================
   시설안내
========================= */
.facility-header {
    margin-bottom: 35px;
}
.facility-subtitle {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
}
.facility-header h2 {
    margin-bottom: 12px;
    font-size: 30px;
}
.facility-description {
    color: #666;
    line-height: 1.7;
}
.facility-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 25px;
}
.facility-card {
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    background: #fff;
    transition: 0.25s;
}
.facility-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 12px 30px
        rgba(22, 125, 127, 0.10);
}
.facility-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeeeee;
    color: #999;
    font-size: 15px;
}
.facility-info {
    position: relative;
    padding: 25px;
}
.facility-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    transition: 0.25s;
}
.facility-card:hover .facility-number {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(-6deg) scale(1.08);
}
.facility-info h3 {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 800;
}
.facility-info p {
    color: #666;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: 1fr;
    }
    .facility-image {
        height: 200px;
    }
}
/* =========================
   상담예약
========================= */
.reservation-header {
    margin-bottom: 35px;
}
.reservation-subtitle {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
}
.reservation-header h2 {
    margin-bottom: 12px;
    font-size: 30px;
}
.reservation-header p {
    color: #666;
}
.reservation-layout {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 22px;
}
.reservation-box {
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbfb 100%
        );
    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.04);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.reservation-box:hover {
    transform: translateY(-4px);
    border-color:
        rgba(22, 125, 127, 0.30);
    box-shadow:
        0 12px 30px
        rgba(22, 125, 127, 0.08);
}
.reservation-box h3 {
    margin-bottom: 20px;
    font-size: 19px;
}
#reservationDate {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #ffffff;
    font-size: 15px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
#reservationDate:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 0 3px
        rgba(22, 125, 127, 0.10);
}
.time-buttons {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 10px;
}
.time-button {
    padding: 13px 15px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #ffffff;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.time-button:hover {
    border-color: var(--primary);
    color: var(--primary);
    background:
        rgba(22, 125, 127, 0.05);
}
.time-button:disabled {
    border-color: #eeeeee;
    background: #f7f7f7;
    color: #bbbbbb;
    cursor: not-allowed;
    opacity: 0.7;
}
.time-button:disabled:hover {
    border-color: #eeeeee;
    background: #f7f7f7;
    color: #bbbbbb;
    transform: none;
}
.time-button.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.reservation-summary p {
    margin-bottom: 12px;
    color: #555;
}
.reservation-submit {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.reservation-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px
        rgba(22, 125, 127, 0.20);
}
@media (max-width: 900px) {
    .reservation-layout {
        grid-template-columns: 1fr;
    }
}
/* =========================
   주민제안·경청
========================= */
.suggestion-header {
    margin-bottom: 35px;
}
.suggestion-header::before {
    content: "";
    display: block;
    width: 45px;
    height: 4px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: var(--primary);
}
.suggestion-subtitle {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
}
.suggestion-header h2 {
    margin-bottom: 12px;
    font-size: 30px;
}
.suggestion-header p {
    color: #666;
    line-height: 1.7;
}
.suggestion-layout {
    display: grid;
    grid-template-columns:
        0.8fr
        1.4fr;
    gap: 30px;
    align-items: start;
}
.suggestion-guide {
    padding: 30px;
    border-radius: 16px;
    background: #f7f7f7;
}
.suggestion-guide h3 {
    margin-bottom: 15px;
    font-size: 20px;
}
.suggestion-guide p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}
.suggestion-guide ul {
    padding-left: 20px;
    color: #666;
}
.suggestion-guide li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.suggestion-form {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 20px;
    padding: 32px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbfb 100%
        );
    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.04);
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group.full {
    grid-column:
        1 / -1;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow:
        0 0 0 3px
        rgba(22, 125, 127, 0.10);
}
.suggestion-submit-area {
    grid-column:
        1 / -1;
    display: flex;
    justify-content: flex-end;
}
.suggestion-submit {
    min-width: 160px;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    font-weight: 800;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.suggestion-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px
        rgba(22, 125, 127, 0.20);
}
@media (max-width: 900px) {
    .suggestion-layout {
        grid-template-columns: 1fr;
    }
    .suggestion-form {
        grid-template-columns: 1fr;
    }
    .form-group.full,
    .suggestion-submit-area {
        grid-column: auto;
    }
}
/* =========================
   사업현황
========================= */
.status-header {
    margin-bottom: 35px;
}
.status-subtitle {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
}
.status-header h2 {
    margin-bottom: 12px;
    font-size: 30px;
}
.status-header p {
    color: #666;
    line-height: 1.7;
}
.status-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 20px;
}
.status-card {
    padding: 28px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: #fff;
    transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
/* =========================
   사업현황 아이콘
========================= */
.status-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    transition: 0.25s;
}
.status-card:hover .status-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.06);
}
/* =========================
   운영안내 아이콘
========================= */
.info-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    transition: 0.25s;
}
.route-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    transition: 0.25s;
}
.route-box:hover .route-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.06);
}
.info-card:hover .info-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.06);
}
.status-card:hover {
    transform: translateY(-4px);
    border-color:
        rgba(22, 125, 127, 0.30);
    box-shadow:
        0 10px 28px
        rgba(22, 125, 127, 0.08);
}
.status-card.large {
    grid-column:
        1 / -1;
}
.status-label {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}
.status-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
}
.status-card p {
    color: #666;
    line-height: 1.7;
}
.status-section {
    margin-top: 35px;
    padding: 30px;
    border-radius: 16px;
    background: #f7f7f7;
}
.status-section > h3 {
    margin-bottom: 25px;
    font-size: 22px;
}
.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.timeline-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.timeline-dot {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 50%;
    background: #222;
    flex-shrink: 0;
}
.timeline-item strong {
    display: block;
    margin-bottom: 5px;
}
.timeline-item p {
    margin: 0;
    color: #666;
}
@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
    .status-card.large {
        grid-column: auto;
    }
}
/* =========================
   상세 상단 설명
========================= */
.detail-overview-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 10px;
}
.detail-overview-text {
    position: relative;
}
/* 오른쪽 설명 위 포인트 선 */
.detail-overview-text::before {
    content: "";
    width: 48px;
    height: 4px;
    margin-bottom: 28px;
    display: block;
    border-radius: 999px;
    background: var(--primary);
}
.detail-overview-text h2 {
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 800;
    color: #111;
}
.detail-overview-text p {
    margin-bottom: 45px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}
.detail-overview-text p:last-child {
    margin-bottom: 0;
}
/* =========================
   쉼터 소개
========================= */
.about-section {
    width: 92%;
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}
.about-inner {
    display: grid;
    grid-template-columns:
        0.8fr 1.2fr;
    gap: 100px;
}
.section-label {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}
.about-title h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.35;
    color: #111;
}
.about-content > h3 {
    margin-bottom: 20px;
    font-size: 25px;
}
.about-content > p {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 15px;
    margin-top: 45px;
}
.about-feature {
    padding: 25px;
    border-radius: 14px;
    background: #f7f7f7;
    transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.about-feature:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow:
        0 12px 30px
        rgba(22, 125, 127, 0.10);
}
.about-feature span {
    display: block;
    margin-bottom: 25px;
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
}
.about-feature strong {
    display: block;
    margin-bottom: 10px;
    font-size: 19px;
}
.about-feature p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}
/* =========================
   서비스 안내
========================= */
.service-section {
    width: 92%;
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 0;
}
/* 서비스 영역 위 구분선 */
.service-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 70px;
    background: linear-gradient(
        to right,
        transparent,
        #dddddd 15%,
        #dddddd 85%,
        transparent
    );
}
.service-header {
    max-width: 700px;
    margin-bottom: 45px;
}
.service-header h2 {
    margin-bottom: 15px;
    font-size: 38px;
    font-weight: 800;
}
.service-header > p:last-child {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}
.service-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    background: #fff;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color:
        rgba(22, 125, 127, 0.35);
    box-shadow:
        0 15px 35px
        rgba(22, 125, 127, 0.10);
}
.service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 14px;
    background: var(--primary-light);
    font-size: 25px;
    transition: 0.25s;
}
.service-card:hover .service-icon {
    transform: scale(1.08);
    background: var(--primary);
}
.service-number {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}
.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}
.service-card p {
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}
.service-button {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    background: #ffffff;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}
.service-button-text {
    transition: 0.25s;
}
.service-button-arrow {
    display: inline-block;
    font-size: 17px;
    transition: transform 0.25s ease;
}
.service-button:hover {
    color: #ffffff;
    border-color: var(--primary);
    background: var(--primary);
}
.service-button:hover .service-button-arrow {
    transform: translateX(5px);
}
/* =========================
   공통 섹션 제목
========================= */
.section-heading {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto 35px;
}
.section-heading .section-label {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}
.section-heading h2 {
    margin: 0 0 12px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.35;
}
.section-heading p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}
/* =========================
   공지사항
========================= */
.notice-section {
    width: 92%;
    max-width: 1400px;
    margin: 120px auto;
}
/* 공지사항 상단 포인트 */
.notice-section::before {
    content: "";
    display: block;
    width: 45px;
    height: 4px;
    margin-bottom: 25px;
    border-radius: 999px;
    background: var(--primary);
}
.notice-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}
.notice-header h2 {
    font-size: 36px;
}
.notice-more {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    font-weight: 700;
}
.notice-list {
    border-top: 2px solid #222;
}
.notice-item {
    width: 100%;
    display: grid;
    grid-template-columns:
        80px
        1fr
        auto
        30px;
    align-items: center;
    gap: 18px;
    padding: 22px 12px;
    border-bottom: 1px solid #e8e8e8;
    background: #ffffff;
    text-align: left;
    transition: 0.25s;
}
.notice-item:hover {
    padding-left: 20px;
    background: #fafafa;
}
/* 공지 / 안내 배지 */
.notice-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 52px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}
/* 공지 제목 */
.notice-item strong {
    color: #222;
    font-size: 16px;
    font-weight: 700;
}
/* 날짜 */
.notice-date {
    color: #999;
    font-size: 13px;
    white-space: nowrap;
}
/* 화살표 */
.notice-arrow {
    color: #aaa;
    font-size: 18px;
    text-align: center;
    transition: 0.25s;
}
/* 마우스 올렸을 때 화살표 이동 */
.notice-item:hover .notice-arrow {
    color: var(--primary);
    transform: translateX(5px);
}
/* 추가 공지사항 */
.notice-extra {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.45s ease,
        opacity 0.3s ease;
}
.notice-extra.active {
    max-height: 500px;
    opacity: 1;
}
.notice-more-arrow {
    display: inline-block;
    margin-left: 6px;
    transition:
        transform 0.3s ease;
}
.notice-more.active
.notice-more-arrow {
    transform: rotate(180deg);
}
/* =========================
   FAQ
========================= */
.faq-section {
    width: 92%;
    max-width: 1400px;
    margin: 120px auto;
}
.faq-header {
    margin-bottom: 35px;
}
.faq-header h2 {
    margin-bottom: 12px;
    font-size: 36px;
}
.faq-header > p:last-child {
    color: #666;
    line-height: 1.7;
}
.faq-list {
    border-top: 2px solid #222;
}
.faq-item {
    border-bottom: 1px solid #e8e8e8;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 10px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
}
.faq-question strong {
    color: var(--primary);
    font-size: 24px;
    transition: 0.25s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.35s ease,
        opacity 0.3s ease;
}
.faq-answer p {
    padding: 0 10px 22px;
    color: #666;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}
.faq-item.active .faq-question strong {
    transform: rotate(45deg);
}
/* =========================
   관련사이트
========================= */
.related-section {
    padding: 100px 0;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}
/* 관련사이트 배경 장식 */
.related-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -120px;
    top: -150px;
    border-radius: 50%;
    background:
        rgba(22, 125, 127, 0.05);
    pointer-events: none;
}
.related-inner {
    width: calc(100% - 80px);
    max-width: 1220px;
    margin: 0 auto;
}
.related-header {
    margin-bottom: 40px;
}
.related-header h2 {
    margin-bottom: 12px;
    font-size: 36px;
}
.related-header > p:last-child {
    color: #666;
    line-height: 1.7;
}
.related-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 20px;
    min-width: 0;
}
/* =========================
   관련사이트 카드
========================= */
.related-card {
    min-height: 170px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    min-width: 0;
}
.related-card:hover {
    transform: translateY(-6px);
    border-color:
        rgba(22, 125, 127, 0.35);
    box-shadow:
        0 15px 35px
        rgba(22, 125, 127, 0.10);
}
/* 왼쪽 아이콘 */
.related-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 17px;
    font-weight: 800;
    transition: 0.25s;
}
.related-card:hover .related-icon {
    background: var(--primary);
    color: #ffffff;
    transform:
        rotate(-4deg)
        scale(1.05);
}
/* 가운데 정보 */
.related-info {
    flex: 1;
}
.related-type {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.related-info h3 {
    margin: 0 0 7px;
    color: #222;
    font-size: 20px;
    font-weight: 800;
}
.related-info p {
    margin: 0;
    color: #888;
    font-size: 13px;
}
/* 오른쪽 화살표 */
.related-arrow {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    color: #777;
    font-size: 18px;
    transition: 0.25s;
}
.related-card:hover .related-arrow {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
    transform:
        translate(3px, -3px);
}
.related-card > span {
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
}

.related-card > strong {
    font-size: 24px;
    font-weight: 400;
}
/* =========================
   FOOTER
========================= */
.footer {
    width: 100%;
    padding: 70px 0;
    background: #111;
    color: #fff;
}
.footer-inner {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}
.footer-left h2 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 800;
}
.footer-left p {
    max-width: 430px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}
.footer-right {
    text-align: right;
}
.footer-menu {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin-bottom: 25px;
}
.footer-menu a {
    color: #ddd;
    font-size: 14px;
    transition: 0.2s;
}
.footer-menu a:hover {
    color: #fff;
}
.footer-copy {
    color: #777;
    font-size: 12px;
}
/* =========================
   TOP 버튼
========================= */
.top-button {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1500;
    width: 58px;
    height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 1px solid #dddddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    font-size: 18px;
    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.25s;
}
.top-button span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}
.top-button:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
    transform:
        translateY(-50%)
        scale(1.08);
    box-shadow:
        0 10px 25px
        rgba(22, 125, 127, 0.25);
}
/* =========================
   스크롤 등장 애니메이션
   ★ @media 밖
========================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}
/* =========================================================
   NOTICE + FAQ 2단 레이아웃
========================================================= */
.notice-faq-layout {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(360px, 0.75fr);
    gap: 35px;
    align-items: start;
}
.notice-faq-layout .notice-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}
.faq-summary {
    padding: 30px;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.05);
}
.faq-summary-header {
    margin-bottom: 20px;
}
.faq-summary-header h2 {
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 800;
}
.faq-summary-header > p:last-child {
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}
.faq-summary-list {
    border-top: 1px solid #eeeeee;
}
.faq-summary-item {
    border-bottom: 1px solid #eeeeee;
}
.faq-summary-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 4px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}
.faq-summary-question strong {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 20px;
    transition:
        transform 0.2s ease;
}
.faq-summary-answer {
    display: none;
    padding: 0 4px 18px;
}
.faq-summary-answer p {
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}
.faq-summary-item.active
.faq-summary-answer {
    display: block;
}
.faq-summary-item.active
.faq-summary-question strong {
    transform: rotate(45deg);
}
@media (max-width: 1100px) {
    .notice-faq-layout {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   지도 + 주요 서비스 PC 배치
========================================================= */
@media (min-width: 1201px) {
    body:not(.detail-page) .map-container {
        grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
        gap: 32px;
    }
    body:not(.detail-page) .map-side .map {
        height: 300px;
    }
}
/* =========================
   메인페이지 모바일
========================= */
@media (max-width: 768px) {
    /* =========================
       HEADER
    ========================= */
    .main-nav {
        display: none;
    }
    .header {
        height: 70px;
    }
    .header-inner {
        width: 94%;
        gap: 20px;
    }
    .logo {
        font-size: 25px;
    }
    .menu-button {
        width: 45px;
        height: 45px;
        margin-left: auto;
    }
    /* =========================
       HERO
    ========================= */
    .hero {
        padding-top: 15px;
    }
    .hero-slider {
        width: 94%;
        height: 400px;
        border-radius: 14px;
    }
    .slide {
        padding: 0 45px;
    }
    .slide-content h2 {
        font-size: 36px;
    }
    .slide-content span {
        font-size: 14px;
    }
    .slider-button {
        width: 38px;
        height: 38px;
        font-size: 25px;
    }
    .slider-button.prev {
        left: 12px;
    }
    .slider-button.next {
        right: 12px;
    }
    /* =========================
       소개 / 서비스
    ========================= */
    .about-section,
    .service-section {
        width: 94%;
        margin: 60px auto;
        padding: 50px 0;
    }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-title h2,
    .service-header h2,
    .section-heading h2 {
        font-size: 30px;
    }
    .about-features,
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: auto;
    }
    /* =========================
       지역 / 지도
    ========================= */
    .section-heading {
        width: 94%;
    }
    .region-section {
        width: 94%;
        margin: 0 auto 70px;
    }
    .region-tabs {
        overflow-x: auto;
        padding-bottom: 12px;
    }
    .region-tab {
        min-width: 85px;
        padding: 13px 16px;
        font-size: 14px;
    }
    .map {
        height: 420px;
    }
    .map-header {
        display: block;
        padding: 20px;
    }
    #regionDescription {
        margin-top: 8px;
        text-align: left;
    }
    /* =========================
       사이드 메뉴
    ========================= */
    .side-menu {
        width: 85%;
        right: -85%;
    }
    /* =========================
       공지사항
    ========================= */
    .notice-section {
        width: 94%;
        margin: 70px auto;
    }
    .notice-header h2,
    .related-header h2 {
        font-size: 30px;
    }
    .notice-item {
        grid-template-columns:
            60px
            1fr
            24px;
        gap: 10px;
        padding: 18px 5px;
    }
    .notice-date {
        grid-column: 2;
        font-size: 12px;
    }
    .notice-arrow {
        grid-column: 3;
        grid-row: 1 / 3;
        align-self: center;
    }
    /* =========================
       관련사이트
    ========================= */
    .related-section {
        padding: 70px 0;
    }
    .related-inner {
        width: 94%;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .related-card {
        min-height: 140px;
        padding: 22px;
        gap: 16px;
    }
    .related-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        font-size: 14px;
    }
    .related-info h3 {
        font-size: 18px;
    }
    .related-arrow {
        width: 36px;
        height: 36px;
    }
    /* =========================
       FOOTER
    ========================= */
    .footer {
        padding: 50px 0;
    }
    .footer-inner {
        width: 94%;
        align-items: flex-start;
        flex-direction: column;
        gap: 35px;
    }
    .footer-right {
        width: 100%;
        text-align: left;
    }
    .footer-menu {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 15px 20px;
    }
    /* =========================
       TOP 버튼
       모바일에서는 오른쪽 아래
    ========================= */
    .top-button {
        top: auto;
        right: 18px;
        bottom: 18px;
        width: 50px;
        height: 50px;
        transform: none;
    }
    .top-button:hover {
        transform: scale(1.08);
    }
    .service-section::before {
        margin-bottom: 45px;
    }
    .related-section::before {
        width: 230px;
        height: 230px;
        right: -100px;
        top: -90px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
}
/* =========================
   태블릿 이하
========================= */
@media (max-width: 1200px) {
    .desktop-sidebar {
        display: none;
    }
    .menu-button {
        display: flex;
    }
}
@media (min-width: 1201px) {
    .menu-button,
    .side-menu,
    .menu-overlay {
        display: none !important;
    }
}
/* =========================
   메뉴 이동 시
   헤더에 가려지는 것 방지
========================= */
#about,
#service,
#notice,
#faq,
#related,
#location {
    scroll-margin-top: 110px;
}
/* =========================================================
   PC 100% 브라우저 배율용 COMPACT MODE
   - 목표: 브라우저 80%에서 보던 느낌을 100%에서도 비슷하게 구현
   - zoom / transform 축소를 사용하지 않고 실제 CSS 크기를 조정
   - 메인 페이지에만 적용, 상세페이지/태블릿/모바일은 기존 유지
========================================================= */
@media (min-width: 1201px) {
    /* 메인은 화면 정중앙, 사이드바는 오른쪽 독립 고정 */
    body:not(.detail-page) .header,
    body:not(.detail-page) main,
    body:not(.detail-page) .footer {
        margin-left: 0;
        margin-right: 0;
    }
    body:not(.detail-page) .header,
    body:not(.detail-page) .footer {
        width: 100%;
    }
    /* -------------------------
       오른쪽 PC 사이드바
    ------------------------- */
    body:not(.detail-page) .desktop-sidebar {
        width: 256px;
    }
    body:not(.detail-page) .desktop-sidebar-inner {
        padding: 22px 19px;
    }
    body:not(.detail-page) .desktop-sidebar-top {
        padding: 0 6px 18px;
    }
    body:not(.detail-page) .desktop-sidebar-top h2 {
        margin-bottom: 6px;
        font-size: 22px;
    }
    body:not(.detail-page) .desktop-sidebar-top p {
        font-size: 11px;
    }
    body:not(.detail-page) .desktop-region-status {
        gap: 5px;
        margin-top: 10px;
        padding: 5px 8px;
        font-size: 10px;
    }
    body:not(.detail-page) .desktop-region-dot {
        width: 6px;
        height: 6px;
    }
    body:not(.detail-page) .desktop-region-list {
        gap: 5px;
        margin-top: 9px;
    }
    body:not(.detail-page) .desktop-region-button {
        padding: 7px 4px;
        font-size: 10px;
    }
    body:not(.detail-page) .desktop-sidebar-menu {
        margin-top: 8px;
    }
    body:not(.detail-page) .desktop-menu-group {
        padding: 12px 0;
    }
    body:not(.detail-page) .desktop-menu-group h3 {
        margin: 0 8px 6px;
        font-size: 10px;
    }
    body:not(.detail-page) .desktop-menu-group a {
        margin: 1px 0;
        padding: 8px 10px;
        font-size: 12px;
    }
    body:not(.detail-page) .desktop-menu-group a:hover,
    body:not(.detail-page) .desktop-menu-group a.active {
        padding-left: 15px;
    }
    body:not(.detail-page) .desktop-reservation-button {
        gap: 10px;
        margin-top: 10px;
        padding: 11px 13px;
        font-size: 12px;
    }
    body:not(.detail-page) .desktop-reservation-button strong {
        font-size: 13px;
    }
    /* -------------------------
       HEADER / 상단 메뉴
    ------------------------- */
    body:not(.detail-page) .header {
        height: 72px;
    }
    body:not(.detail-page) .header-inner {
        width: 92%;
        max-width: 1120px;
        gap: 32px;
    }
    body:not(.detail-page) .logo {
        font-size: 22px;
    }
    body:not(.detail-page) .header-region {
        gap: 6px;
        padding: 6px 9px;
        font-size: 10px;
    }
    body:not(.detail-page) .header-reservation-button {
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 12px;
    }
    body:not(.detail-page) .main-nav {
        gap: 44px;
    }
    body:not(.detail-page) .main-nav a {
        padding: 27px 0;
        font-size: 13px;
    }
    body:not(.detail-page) .nav-item {
        height: 72px;
    }
    body:not(.detail-page) .mega-menu {
        top: 72px;
        padding: 36px 0 44px;
    }
    body:not(.detail-page) .mega-menu-inner {
        width: 92%;
        max-width: 1120px;
        gap: 36px;
    }
    body:not(.detail-page) .mega-title {
        padding-right: 32px;
    }
    body:not(.detail-page) .mega-title h2 {
        margin-bottom: 12px;
        font-size: 22px;
    }
    body:not(.detail-page) .mega-title span {
        max-width: 208px;
        font-size: 12px;
    }
    body:not(.detail-page) .mega-column h3 {
        margin-bottom: 12px;
        padding: 11px 13px;
        font-size: 12px;
    }
    body:not(.detail-page) .main-nav .mega-column a {
        padding: 6px 13px;
        font-size: 12px;
    }
    body:not(.detail-page) .nav-item > a::after {
        bottom: 17px;
        height: 2px;
    }
    /* -------------------------
       HERO
    ------------------------- */
    body:not(.detail-page) .hero {
        padding-top: 24px;
    }
    body:not(.detail-page) .hero-slider {
        width: 92%;
        max-width: 1120px;
        height: clamp(320px, 29.6vw, 416px);
        border-radius: 16px;
    }
    body:not(.detail-page) .slide {
        padding: 0 72px;
    }
    body:not(.detail-page) .slide-content {
        max-width: 520px;
    }
    body:not(.detail-page) .hero-badge {
        margin-bottom: 13px;
        padding: 6px 10px;
        font-size: 10px;
    }
    body:not(.detail-page) .slide-content p {
        margin-bottom: 11px;
        font-size: 12px;
        letter-spacing: 1.6px;
    }
    body:not(.detail-page) .slide-content h2 {
        margin-bottom: 16px;
        font-size: 42px;
    }
    body:not(.detail-page) .slide-content span {
        max-width: 400px;
        font-size: 14px;
    }
    body:not(.detail-page) .hero-button {
        gap: 8px;
        margin-top: 22px;
        padding: 10px 16px;
        font-size: 12px;
    }
    body:not(.detail-page) .slider-button {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }
    body:not(.detail-page) .slider-button.prev {
        left: 20px;
    }
    body:not(.detail-page) .slider-button.next {
        right: 20px;
    }
    body:not(.detail-page) .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    body:not(.detail-page) .dot {
        width: 7px;
        height: 7px;
    }
    body:not(.detail-page) .dot.active {
        width: 22px;
    }
    /* -------------------------
       공통 콘텐츠 폭
    ------------------------- */
    body:not(.detail-page) .about-section,
    body:not(.detail-page) .service-section,
    body:not(.detail-page) .section-heading,
    body:not(.detail-page) .region-section,
    body:not(.detail-page) .notice-section,
    body:not(.detail-page) .faq-section,
    body:not(.detail-page) .related-inner,
    body:not(.detail-page) .footer-inner {
        width: 92%;
        max-width: 1300px;
    }
    /* -------------------------
       쉼터 소개
    ------------------------- */
    body:not(.detail-page) .about-section {
        margin: 80px auto;
        padding: 64px 0;
    }
    body:not(.detail-page) .about-inner {
        gap: 80px;
    }
    body:not(.detail-page) .section-label {
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: 1.6px;
    }
    body:not(.detail-page) .about-title h2 {
        font-size: 32px;
    }
    body:not(.detail-page) .about-content > h3 {
        margin-bottom: 16px;
        font-size: 20px;
    }
    body:not(.detail-page) .about-content > p {
        margin-bottom: 12px;
        font-size: 13px;
    }
    body:not(.detail-page) .about-features {
        gap: 12px;
        margin-top: 36px;
    }
    body:not(.detail-page) .about-feature {
        padding: 20px;
        border-radius: 11px;
    }
    body:not(.detail-page) .about-feature span {
        margin-bottom: 20px;
        font-size: 10px;
    }
    body:not(.detail-page) .about-feature strong {
        margin-bottom: 8px;
        font-size: 15px;
    }
    body:not(.detail-page) .about-feature p {
        font-size: 12px;
    }
    /* -------------------------
       서비스 안내
    ------------------------- */
    body:not(.detail-page) .service-section {
        margin: 80px auto;
        padding: 64px 0;
    }
    body:not(.detail-page) .service-section::before {
        margin-bottom: 56px;
    }
    body:not(.detail-page) .service-header {
        max-width: 560px;
        margin-bottom: 36px;
    }
    body:not(.detail-page) .service-header h2 {
        margin-bottom: 12px;
        font-size: 30px;
    }
    body:not(.detail-page) .service-header > p:last-child {
        font-size: 13px;
    }
    body:not(.detail-page) .service-grid {
        gap: 16px;
    }
    body:not(.detail-page) .service-card {
        min-height: 248px;
        padding: 24px;
        border-radius: 14px;
    }
    body:not(.detail-page) .service-icon {
        width: 43px;
        height: 43px;
        margin-bottom: 20px;
        border-radius: 11px;
        font-size: 20px;
    }
    body:not(.detail-page) .service-number {
        margin-bottom: 14px;
        font-size: 11px;
    }
    body:not(.detail-page) .service-card h3 {
        margin-bottom: 12px;
        font-size: 18px;
    }
    body:not(.detail-page) .service-card p {
        margin-bottom: 24px;
        font-size: 12px;
    }
    body:not(.detail-page) .service-button {
        gap: 8px;
        padding: 9px 13px;
        font-size: 12px;
    }
    /* -------------------------
       지역 / 지도
    ------------------------- */
    body:not(.detail-page) .section-heading {
        margin: 0 auto 28px;
    }
    body:not(.detail-page) .section-heading .section-label {
        margin-bottom: 8px;
        font-size: 10px;
    }
    body:not(.detail-page) .section-heading h2 {
        margin-bottom: 10px;
        font-size: 29px;
    }
    body:not(.detail-page) .section-heading p {
        font-size: 12px;
    }
    body:not(.detail-page) .region-section {
        margin: 0 auto 80px;
    }
    body:not(.detail-page) .region-tabs {
        gap: 8px;
        padding-bottom: 14px;
    }
    body:not(.detail-page) .region-tab {
        min-width: 76px;
        padding: 10px 16px;
        font-size: 12px;
    }
    body:not(.detail-page) .map-container {
        border-radius: 18px;
    }
    body:not(.detail-page) .map-header {
        min-height: 88px;
        padding: 20px 26px;
        gap: 24px;
    }
    body:not(.detail-page) .map-header h2 {
        font-size: 24px;
    }
    body:not(.detail-page) #regionDescription {
        font-size: 12px;
        white-space: nowrap;
        transform: translateX(-15px);
    }

    body:not(.detail-page) .map {
        height: 400px;
    }
    /* -------------------------
       공지사항 / FAQ
    ------------------------- */
    body:not(.detail-page) .notice-section,
    body:not(.detail-page) .faq-section {
        margin: 65px auto;
    }
    body:not(.detail-page) .notice-section::before {
        width: 36px;
        height: 3px;
        margin-bottom: 20px;
    }
    body:not(.detail-page) .notice-header,
    body:not(.detail-page) .faq-header {
        margin-bottom: 28px;
    }
    body:not(.detail-page) .notice-header h2,
    body:not(.detail-page) .faq-header h2 {
        font-size: 29px;
    }
    body:not(.detail-page) .notice-more {
        font-size: 12px;
    }
    body:not(.detail-page) .notice-item {
        grid-template-columns: 64px 1fr auto 24px;
        gap: 14px;
        padding: 18px 10px;
    }
    body:not(.detail-page) .notice-category {
        min-width: 42px;
        padding: 5px 8px;
        font-size: 10px;
    }
    body:not(.detail-page) .notice-item strong {
        font-size: 13px;
    }
    body:not(.detail-page) .notice-date {
        font-size: 11px;
    }
    body:not(.detail-page) .notice-arrow {
        font-size: 14px;
    }
    body:not(.detail-page) .faq-question {
        gap: 16px;
        padding: 18px 8px;
        font-size: 13px;
    }
    body:not(.detail-page) .faq-question strong {
        font-size: 19px;
    }
    body:not(.detail-page) .faq-answer p {
        padding: 0 8px 18px;
        font-size: 13px;
    }
    /* -------------------------
       관련 사이트
    ------------------------- */
    body:not(.detail-page) .related-section {
        padding: 80px 0;
    }
    body:not(.detail-page) .related-section::before {
        width: 280px;
        height: 280px;
        right: -96px;
        top: -120px;
    }
    body:not(.detail-page) .related-header {
        margin-bottom: 32px;
    }
    body:not(.detail-page) .related-header h2 {
        margin-bottom: 10px;
        font-size: 29px;
    }
    body:not(.detail-page) .related-header > p:last-child {
        font-size: 13px;
    }
    body:not(.detail-page) .related-grid {
        gap: 16px;
    }
    body:not(.detail-page) .related-card {
        min-height: 136px;
        gap: 18px;
        padding: 24px;
        border-radius: 16px;
    }
    body:not(.detail-page) .related-icon {
        width: 51px;
        height: 51px;
        border-radius: 14px;
        font-size: 14px;
    }
    body:not(.detail-page) .related-type {
        margin-bottom: 6px;
        font-size: 8px;
    }
    body:not(.detail-page) .related-info h3 {
        margin-bottom: 6px;
        font-size: 16px;
    }
    body:not(.detail-page) .related-info p {
        font-size: 11px;
    }
    body:not(.detail-page) .related-arrow {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    /* -------------------------
       FOOTER / TOP
    ------------------------- */
    body:not(.detail-page) .footer {
        padding: 68px 0;
    }
    body:not(.detail-page) .footer-inner {
        gap: 40px;
    }
    body:not(.detail-page) .footer-left h2 {
        margin-bottom: 12px;
        font-size: 22px;
    }
    body:not(.detail-page) .footer-left p {
        max-width: 344px;
        font-size: 12px;
    }
    body:not(.detail-page) .footer-menu {
        gap: 28px;
        margin-bottom: 24px;
    }
    body:not(.detail-page) .footer-menu a {
        font-size: 12px;
    }
    body:not(.detail-page) .footer-copy {
        font-size: 11px;
    }
    body:not(.detail-page) .top-button {
        right: 24px;
        width: 46px;
        height: 46px;
        font-size: 14px;
    }
    body:not(.detail-page) .top-button span {
        font-size: 8px;
    }
}
/* =========================================================
   NEW MAIN HERO
========================================================= */
@media (min-width: 1201px) {
    body:not(.detail-page) .hero {
        width: calc(100% - 256px);
        padding: 20px 24px 0;
    }
    body:not(.detail-page) .hero-slider {
        width: 100%;
        max-width: none;
        height: 500px;
        margin: 0;
        border-radius: 18px;
    }
    body:not(.detail-page) .slide {
        padding: 0 55px;
    }
    /* =========================================
    배너 지역검색 사용 후
    기존 지역 선택 UI 숨김
    ========================================= */
    body:not(.detail-page) #location {
        display: none;
    }
    body:not(.detail-page) .region-tabs {
        display: none;
    }
    body:not(.detail-page) .region-section {
        margin-top: 55px;
    }
}
/* =========================================================
   HERO 지역 찾기
========================================================= */
.hero-main-content {
    align-self: flex-start;
    margin-top: 95px;
}
.hero-main-label {
    margin-bottom: 12px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}
.hero-main-description {
    max-width: 440px;
}
.hero-region-search {
    position: absolute;
    left: 250px;
    right: 250px;
    bottom: 30px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 20px;
    border: 1px solid
        rgba(255, 255, 255, 0.30);
    border-radius: 12px;
    background:
        rgba(255, 255, 255, 0.94);
    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}
.hero-region-search-title {
    min-width: 155px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.hero-region-search-title span {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.hero-region-search-title strong {
    color: #222;
    font-size: 15px;
    font-weight: 800;
}
.hero-region-search-form {
    flex: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        100px;
    gap: 8px;
}
.hero-region-search-form select {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    outline: none;
    background: #ffffff;
    color: #555;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
}
.hero-region-search-form select:focus {
    border-color: var(--primary);
}
#heroRegionSearchButton {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    transition: 0.2s;
}
#heroRegionSearchButton:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}
@media (max-width: 1200px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .map-service-side .service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .map-service-side .service-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   메인페이지 최종 레이아웃 정리
   - PC 본문 기준폭 통일
   - 메인 배너 중심축 기준으로 하단 콘텐츠 정렬
   - 지도 / 소개 / 공지+FAQ / 주민지원사업 / 관련사이트 동일 축
========================================================= */

@media (min-width: 1201px) {

    body:not(.detail-page) {
        --main-content-width: 1360px;
        --main-content-gap: 60px;
        --main-content-shift: -100px;
    }

    body:not(.detail-page) .region-section,
    body:not(.detail-page) .about-section,
    body:not(.detail-page) .notice-section,
    body:not(.detail-page) .resident-support-summary {
        width: min(
            var(--main-content-width),
            calc(100% - var(--main-content-gap))
        );
        max-width: var(--main-content-width);

        margin-left: auto;
        margin-right: auto;

        position: relative;
        left: var(--main-content-shift);
    }

    body:not(.detail-page) .related-inner {
        width: min(
            var(--main-content-width),
            calc(100% - var(--main-content-gap))
        );
        max-width: var(--main-content-width);

        margin-left: auto;
        margin-right: auto;

        position: relative;
        left: var(--main-content-shift);
    }

    body:not(.detail-page) .region-section {
        margin-top: 55px;
        margin-bottom: 80px;
    }

    body:not(.detail-page) .about-section {
        margin-top: 60px;
        margin-bottom: 60px;

        padding-top: 45px;
        padding-bottom: 45px;
    }

    body:not(.detail-page) .notice-section {
        margin-top: 60px;
        margin-bottom: 50px;
    }

    body:not(.detail-page) .resident-support-summary {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    body:not(.detail-page) .related-section {
        padding-top: 45px;
    }
}


/* =========================================================
   주민지원사업 요약
========================================================= */

.resident-support-summary {
    width: calc(100% - 80px);
    max-width: 1220px;

    margin: 70px auto;
    padding: 0;
}

.resident-support-inner {
    display: flex;
    align-items: center;
    gap: 28px;

    padding: 30px 34px;

    border: 1px solid #dfeeee;
    border-radius: 18px;

    background: linear-gradient(
        90deg,
        #eef9f9 0%,
        #f7fbfb 100%
    );
}

.resident-support-title {
    width: 220px;
    flex-shrink: 0;

    padding-right: 28px;

    border-right: 1px solid #d7e7e7;
}

.resident-support-title h2 {
    margin: 5px 0 8px;

    font-size: 26px;
    font-weight: 800;
}

.resident-support-title > p:last-child {
    margin: 0;

    color: #666;

    font-size: 13px;
    line-height: 1.7;
}

.resident-support-item {
    flex: 1;
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 12px;
}

.resident-support-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;
    color: var(--primary);

    font-size: 20px;
    font-weight: 800;
}

.resident-support-item h3 {
    margin: 0 0 5px;

    font-size: 15px;
    font-weight: 800;

    white-space: nowrap;
}

.resident-support-item p {
    margin: 0;

    color: #777;

    font-size: 12px;
    line-height: 1.5;

    word-break: keep-all;
}

.resident-support-button {
    width: 140px;
    min-width: 140px;
    height: 44px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 0 18px;

    border-radius: 10px;

    background: var(--primary);
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;

    transition: 0.2s;
}

.resident-support-button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   주민지원사업 반응형
========================================================= */

@media (max-width: 1000px) {

    .resident-support-summary {
        width: 94%;
        margin: 60px auto;
    }

    .resident-support-inner {
        flex-wrap: wrap;
    }

    .resident-support-title {
        width: 100%;

        padding-right: 0;
        padding-bottom: 20px;

        border-right: none;
        border-bottom: 1px solid #d7e7e7;
    }

    .resident-support-item {
        flex: 1 1 calc(50% - 14px);
    }

    .resident-support-button {
        width: 100%;
    }
}

@media (max-width: 600px) {

    .resident-support-summary {
        width: 94%;
    }

    .resident-support-inner {
        flex-direction: column;
        align-items: stretch;

        padding: 24px;
    }

    .resident-support-item {
        width: 100%;
        flex: none;
    }
}

@media (min-width: 1201px) {

    body:not(.detail-page) .map-side {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    body:not(.detail-page) .map-side .map {
        flex: 1;
        height: auto;
        min-height: 560px;
    }

    body:not(.detail-page) #kakaoMap {
        width: 100%;
        height: 100%;
        min-height: 560px;
    }

}

/* =========================
   사이드바 제거 후 메인 중앙 정렬
========================= */

@media (min-width: 1201px) {

    body:not(.detail-page) {
        --main-content-shift: 0px;
    }

    body:not(.detail-page) .region-section,
    body:not(.detail-page) .about-section,
    body:not(.detail-page) .notice-section,
    body:not(.detail-page) .resident-support-summary,
    body:not(.detail-page) .related-inner {
        left: 0 !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

}

@media (min-width: 1201px) {

    body:not(.detail-page) .hero-slider {
        margin-left: auto;
        margin-right: auto;
    }

}

@media (min-width: 1201px) {

    body:not(.detail-page) .hero {
        width: 100% !important;
        padding: 20px 24px 0 !important;
    }

    body:not(.detail-page) .hero-slider {
        width: 92% !important;
        max-width: 1600px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

}

@media (min-width: 1201px) and (max-width: 1600px) {

    body:not(.detail-page) .hero-slider,
    body:not(.detail-page) .region-section,
    body:not(.detail-page) .about-section,
    body:not(.detail-page) .notice-section,
    body:not(.detail-page) .resident-support-summary,
    body:not(.detail-page) .related-inner {
        left: 0 !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

    body:not(.detail-page) {
        --main-content-shift: 0px;
    }
}

@media (min-width: 1201px) and (max-width: 1600px) {

    body:not(.detail-page) {
        --main-content-width: 1180px;
        --main-content-gap: 40px;
    }

}

/* =========================================
   사이드바 제거 후 PC / 노트북 완전 중앙 정렬
========================================= */

@media (min-width: 1201px) {

    body:not(.detail-page) .desktop-sidebar {
        display: none !important;
    }

    body:not(.detail-page) .header,
    body:not(.detail-page) main,
    body:not(.detail-page) .footer {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body:not(.detail-page) .hero {
        width: 100% !important;
        margin: 0 !important;
        padding: 20px 24px 0 !important;
    }

    body:not(.detail-page) .hero-slider {
        width: 92% !important;
        max-width: 1600px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

}

/* 지역별 쉼터 */

.region-mega-column {
    grid-column: span 2;
}

.mega-region-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.region-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.region-group h3 {
    width: 100%;
    height: 48px;

    display: flex;
    align-items: center;

    margin: 0 0 6px;
    padding: 0 14px;

    box-sizing: border-box;

    background: #f5f5f5;
    white-space: nowrap;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: inherit;
}

.header-brand-logo {
    width: 150px;
    height: auto;
    display: block;
}

/* =========================
   공지사항 첨부파일
========================= */

.notice-modal-file {
    margin-top: 28px;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    gap: 16px;

    background: #f3fbf9;

    border: 1px solid #d9eeea;
    border-radius: 10px;
}

.notice-modal-file > span {
    flex-shrink: 0;

    font-size: 14px;
    font-weight: 700;

    color: #0f8f7d;
}

.notice-modal-file > span::before {
    content: "📎";
    margin-right: 7px;
}

.notice-modal-file a {
    font-size: 14px;
    font-weight: 600;

    color: #222;

    text-decoration: none;
}

.notice-modal-file a:hover {
    color: #0f8f7d;
    text-decoration: underline;
}

.file-icon {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 8px;

    color: #777;
    background: #f3f3f3;

    border-radius: 7px;

    vertical-align: middle;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.notice-item:hover .file-icon {
    color: #0b8f8c;
    background: #eaf7f6;
    transform: translateY(-1px);
}

.status-card {
    color: inherit;
    text-decoration: none;
}
.status-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 20px;

    font-size: 14px;
    font-weight: 700;
    color: #0b8f8c;
}

.status-link-arrow {
    transition: transform 0.2s ease;
}

.status-card:hover .status-link-arrow {
    transform: translateX(5px);
}

/* =========================
   보상 상담 팝업
========================= */

.compensation-card {
    cursor: pointer;
}

.compensation-popup {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.25);

    z-index: 9999;
}

.compensation-popup.active {
    display: flex;
}

.compensation-popup-box {
    width: min(400px, calc(100% - 40px));

    padding: 36px 32px 30px;

    text-align: center;

    background: #fff;

    border-radius: 16px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.15);
}

.compensation-popup-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    color: #0b8f8c;
    font-size: 22px;
    font-weight: 700;

    background: #eaf7f6;

    border-radius: 50%;
}

.compensation-popup-box h3 {
    margin: 0 0 10px;

    font-size: 20px;
}

.compensation-popup-box p {
    margin: 0 0 25px;

    color: #666;
    font-size: 14px;
}

.compensation-popup-box button {
    min-width: 100px;

    padding: 11px 24px;

    color: #fff;
    font-weight: 700;

    background: #0b8f8c;

    border: 0;
    border-radius: 8px;

    cursor: pointer;
}

.compensation-popup-box button:hover {
    background: #087976;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}