@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600;800&display=swap');

img {
    border: 0;
    outline: 0;
}


* { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Pretendard', sans-serif; background-color: #fff; color: #2a2a2a; line-height: 1.6; }
  ul { list-style: none; }
  a { text-decoration: none; color: inherit; }
        
:root {
  	--color-dark: #0b0d2e;         
    --color-primary: #bd846b;      
    --color-bg-light: #F4F1EA;     
  }

        
/* [2] 헤더 영역 */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px; transition: all 0.3s ease;
    background: transparent; 
}

/* 로고 이미지 스타일 */
.logo a { display: block; }
.logo img { height: 66px; transition: all 0.3s ease; } /* 실제 로고 높이에 맞게 조절하세요 */

/* 네비게이션 라운드 박스 */
.gnb-wrap {
    background-color: var(--color-primary);
    height: 60px;
    border-radius: 30px; /* 라운드 형태 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px; /* 글자 길이에 따라 width가 유동적으로 변함 */
    transition: all 0.3s ease;
}

.gnb { display: flex; gap: 50px; position: relative; }
.gnb > li { position: relative; padding: 10px 0; }
.gnb > li > a { color: #fff; font-weight: 500; } /* 텍스트 흰색 */

/* 서브메뉴 스타일 (유지) */
.sub-menu {
    display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: #fff; color: #2a2a2a; min-width: 150px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-radius: 8px; padding: 10px 0;
    text-align: center;
}
.sub-menu li a { display: block; padding:10px; font-size: 14px; transition: background 0.2s; color: #333; }
.sub-menu li a:hover { background: var(--color-bg-light); color: var(--color-primary); }
.gnb > li:hover .sub-menu { display: block; }

.sub-menu li a.dep1{background: var(--color-bg-light); color: var(--color-primary); font-weight:500;}




.header-right {
    display: flex;
    align-items: center;
    gap: 25px; /* 멤버 메뉴와 전체메뉴 버튼 사이의 간격 */
}

/* 로그인 / 회원가입 세로 정렬 상자 */
.member-menu {
    display: flex;
    flex-direction: column; /* 위아래(세로)로 정렬 설정 */
    gap: 3px; /* 로그인과 회원가입 사이의 세로 간격 */
    list-style: none;
    margin: 0; padding: 0;
    text-align: right;
}

.member-menu li a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px; /* 아이콘과 글자 사이의 간격 */
    text-decoration: none;
    font-size: 13px; /* 위아래로 배치되므로 부담 없는 크기 조절 */
    font-weight: 500;
    color: #555; /* 스크롤 전 기본 상태: 차분한 다크 그레이 */
    transition: color 0.3s ease;
}

/* 마우스 호버 시 포인트 컬러 반응 */
.member-menu li a:hover {
    color: var(--color-primary);
}

.member-menu .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-size: 15px; /* 텍스트 크기에 맞춘 아이콘 크기 */
    vertical-align: middle;
}

/* 우측 전체메뉴 버튼 */
.menu-btn {
    background: none; border: none; cursor: pointer; padding: 0;
}
.menu-btn img { height: 24px; transition: all 0.3s ease; } /* 아이콘 높이 */

/* 스크롤 시 헤더 변화 */
header.scrolled { 
    background-color: rgba(167, 111, 94, 0.9); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    padding: 5px 50px; 
}
header.scrolled .gnb-wrap {
    background-color: transparent;
    height: auto; 
    padding: 0; 
}

/* 스크롤 시 로그인 / 회원가입 메뉴 및 아이콘을 흰색으로 전환 */
header.scrolled .member-menu li a {
    color: #fff;
}
header.scrolled .member-menu li a:hover {
    opacity: 0.8; /* 스크롤 후 흰색 상태일 때 호버 시 부드러운 투명도 효과 */
}

/* --- [추가] 전체메뉴 오버레이 스타일 --- */
.all-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    opacity: 0; visibility: hidden; /* 기본적으로 숨김 */
    transition: all 0.3s ease;
    display: flex; justify-content: center; align-items: center;
}
.all-menu-overlay.active {
    opacity: 1; visibility: visible; /* active 클래스가 붙으면 보임 */
}
/* --- [수정] 전체메뉴 창 뼈대 설정 --- */
.all-menu-inner {
    width: 80%; 
    max-width: 1200px;
    max-height: 85vh; /* 화면 높이의 85%까지만 커지도록 제한 */
    display: flex;
    flex-direction: column; /* 세로 방향 배치로 설정 */
}

/* --- [수정] 전체메뉴 상단 (닫기 버튼 고정) --- */
.all-menu-header {
    display: flex; 
    justify-content: flex-end; 
    margin-bottom: 20px; 
    flex-shrink: 0; /* 내용이 길어져도 닫기 버튼 영역이 찌그러지지 않게 보호 */
}

/* --- [추가] 메뉴 내용 스크롤 영역 --- */
.all-menu-content {
    overflow-y: auto; /* 내용이 설정한 높이(85vh)를 넘어가면 세로 스크롤 생성 */
    padding-right: 20px; /* 스크롤바와 글자가 너무 붙지 않게 우측 여백 주기 */
}

/* --- [추가] 예쁜 맞춤형 스크롤바 디자인 (크롬, 엣지, 사파리 적용) --- */
.all-menu-content::-webkit-scrollbar {
    width: 8px; /* 스크롤바 두께 */
}
.all-menu-content::-webkit-scrollbar-thumb {
    background-color: var(--color-primary); /* 스크롤바 손잡이 색상 (갈색 포인트) */
    border-radius: 4px; /* 손잡이를 둥글게 */
}
.all-menu-content::-webkit-scrollbar-track {
    background-color: var(--color-bg-light); /* 스크롤바 배경 레일 색상 */
    border-radius: 4px;
}

.close-btn {
    background: none; border: none; font-size: 40px; color: #333; cursor: pointer; transition: color 0.3s;
}
.close-btn:hover { color: var(--color-primary); }
.all-menu-content ul { display: flex; flex-wrap: wrap; gap: 20px; }
.all-menu-content li { width: 200px; font-size: 1.2rem; font-weight: bold; }
.all-menu-content li a:hover { color: var(--color-primary); }


/* 서브메뉴 스타일 */
.sub-menu {
    display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: #fff; color: #2a2a2a; min-width: 150px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-radius: 8px; padding: 10px 0;
    text-align: center;
}
.sub-menu li a { display: block; padding: 10px; font-size: 14px; transition: background 0.2s; }
.sub-menu li a:hover { background: var(--color-bg-light); color: var(--color-primary); }
.gnb > li:hover .sub-menu { display: block; }


.all-menu-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.all-menu-list > li {
    flex: 1; /* 동일한 너비로 분배 */
    text-align: left;
}
.all-menu-list > li > a {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-dark);
    border-bottom: 2px solid var(--color-primary);
    display: block;
    padding-bottom: 10px;
    margin-bottom: 15px;
    pointer-events: none; /* 전체메뉴에서는 대메뉴 클릭 이동 방지 (선택사항) */
}

.all-menu-list .sub-menu {
    display: block; /* GNB에서는 hover 시 보였지만, 여기선 항상 보임 */
    position: static; /* absolute 속성 해제 */
    box-shadow: none; /* 그림자 제거 */
    transform: none;
    background: transparent;
    padding: 0;
    text-align: left;
}

.all-menu-list .sub-menu li a {
    font-size: 0.9rem;
    padding: 5px 0;
    color: #555;
}
.all-menu-list .sub-menu li a:hover {
    background: none;
    color: var(--color-primary);
    font-weight: 400;
}

.all-menu-list .sub-menu li a.dep1 {
    background: none;
    color: var(--color-primary);
    border-bottom: 1px dashed #ccc;
    margin-bottom: 5px;
    pointer-events: none; /* 구분자이므로 클릭 방지 */
}






/* [3] 우측 퀵 메뉴 (스크롤 따라다니기) */
.quick-menu {
    position: absolute; /* fixed에서 absolute로 변경 */
    right: 0px; 
    top: 250px; /* 초기 Y축 위치 (디자인에 맞게 조절 가능) */
    z-index: 999;
    width: 80px; 
    transition: top 0.4s ease-out; /* 부드럽게 따라다니는 핵심 애니메이션 속성 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* 약간의 그림자 추가 */
    overflow: hidden; /* 모서리 둥글기에 맞게 안쪽 컨텐츠 잘라내기 */
}

/* 1~3번째 메뉴 (아이콘 + 텍스트) */
.quick-list {
    background: #fff;
}
.quick-list li {
    border-bottom: 0px solid #eee;
}
.quick-list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background:var(--color-primary);
    font-size: 12px;
    font-weight:500;
    color: #fff;
    transition: background 0.3s;
}

.quick-list a img {
    margin-bottom: 5px; /* 아이콘과 텍스트 사이 간격 */
    max-width: 30px; /* 아이콘 크기 제한 (필요시 조절) */
}

/* 4번째 전화번호 안내 */
.quick-phone {
    background-color: var(--color-dark);
    color: #fff;
    text-align: center;
    padding: 15px 0;
}
.quick-phone > p:first-child {
    font-size: 12px;
    margin-bottom: 5px;
    color: #ccc; /* 서브 텍스트 컬러 */
}
.quick-phone .area-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
}
.quick-phone .phone-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
}

/* 5번째 TOP 버튼 */
.btn-top {
    width: 80px;
    height: 40px; /* 이미지 비율에 맞게 높이 조절 */
    background:var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: background 0.3s;
}
.btn-top img {
    max-width: 100%; 
    display: block;
}


/* [4] 메인 비주얼 영역 */
.main-visual {       
    position: relative; /* 비디오와 오버레이를 내부에 띄우기 위한 기준점 */
    height: 100vh;
    width: 100%;
    overflow: hidden; /* 비디오가 튀어나가지 않게 제한 */
    display: flex; 
    align-items: center; 
    padding-left:10%;
}
/* 배경 비디오 스타일 (화면에 꽉 채우기) */
.main-visual .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 비디오 비율을 유지하면서 영역을 꽉 채움 (핵심) */
    z-index: 1;
}

.main-visual .visual-content {
    position: relative;
    z-index: 3; /* 비디오와 오버레이보다 높은 순위로 위로 올림 */
}

.main-visual h2 { 
    font-size: 4rem; 
    color: var(--color-dark); 
    font-weight: 500; 
    line-height: 1.4;
    font-family: 'Noto Serif KR', serif; 
}

.main-visual .main-desc {
    font-size: 25px;
    color: var(--color-dark);
    margin-top: 60px;
    font-weight: 400;
    line-height: 1.5; /* 줄간격 */
}
.main-visual .main-desc b{
	font-weight:600;
	}
	
/* 공통 섹션 스타일 */
section { padding: 100px 5%; overflow: hidden; }


.section-title { 
    font-size: 2.5rem; 
    margin-bottom: 40px; 
    color: var(--color-primary); 
    font-family: 'Noto Serif KR', serif;
    font-weight: 600;
}

/* [5] 시그니처 Swiper 영역 */
.signature-section { 
    /* 상단/하단 여백 100px, 왼쪽 여백 8% 적용, 오른쪽은 슬라이드가 잘려보이게 0으로 설정 */
    padding: 100px 0 100px 8%; 
    overflow: hidden; 
}

/* 상단 헤더 (타이틀과 화살표 양끝 배치) */
.signature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 8%; /* 오른쪽 여백을 주어 화살표가 화면 우측 끝에 너무 붙지 않게 함 */
    margin-bottom: 40px;
}

/* 타이틀 폰트 세팅 */
.title-area .sub-title {
    font-size: 40px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 5px;
}
.title-area .main-title {
    font-size: 80px;
    font-family: 'Noto Serif KR', serif;
    color: var(--color-primary);
    line-height: 1;
    font-weight: 600;
}

/* 커스텀 화살표 버튼 스타일 */
.nav-area {
    display: flex;
    gap: 15px;
}
.nav-area button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.nav-area button img {
    height: 50px; /* 화살표 이미지 크기에 맞춰 조절해 주세요 */
}

/* 슬라이드 아이템 설정 */
.signature-slide {
    height: 430px; /* 요청하신 이미지 세로 높이 */
    /* 가로 650px은 Swiper의 slidesPerView 비율에 의해 자동으로 예쁘게 계산됩니다. */
    background-size: cover;
    background-position: center;
    border-radius: 0; /* 필요시 둥근 모서리(ex: 10px)를 추가하세요 */
    position: relative;
    border:0px solid red;
}

/* 텍스트가 잘 보이도록 이미지 위에 살짝 어두운 그라데이션 추가 (옵션) */
.signature-slide::before {
    content: '';
    position: absolute; left: 0; bottom: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* 슬라이드 안의 텍스트 콘텐츠 */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    z-index: 2;
}
.slide-content h3 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}
.slide-content p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
}

/* 자세히 보기 버튼 */
.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 10px 30px;
    transition: all 0.3s;
}

.btn-view img {
    margin-left: 10px;
    height: 20px; /* 화살표 아이콘 크기 조절 */
}


/* --- [6] 성형 / 쁘띠 영역 스타일 --- */
.clinic-section {
    padding: 100px 5%;
}

/* 1600px 중앙 정렬 및 좌우 배치 */
.clinic-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* 세로 중앙 정렬 */
    justify-content: space-between;
    gap: 40px;
}

/* 왼쪽 타이틀 영역 */
.clinic-title-area {
    width: 360px; /* 1600px 중 왼쪽 너비 지정 */
    flex-shrink: 0;
}
.clinic-title-area .sub-title {
    font-size: 40px;
    color: #555;
    margin-bottom: 5px;
}
.clinic-title-area .main-title {
    font-size: 70px;
    font-family: 'Noto Serif KR', serif;
    color: var(--color-primary);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 40px;
}

/* 자세히 보기 버튼 (Noto Sans KR 적용) */
.clinic-title-area .btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 40px;
    padding: 12px 35px;
    transition: all 0.3s;
}
.clinic-title-area .btn-more:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.clinic-title-area .btn-more img {
    height: 14px;
    margin-left: 10px;
}

/* 우측 슬라이드 영역 (1200px) */
.clinic-swiper {
    width: 100%;
    max-width: 1200px;
}
.clinic-item {
    display: block;
    position: relative;
    height: 430px;
    border-radius: 0;
}
.clinic-swiper .swiper-slide {
    width: 380px; /* 브라우저 창이 작아져도 무조건 380px 유지 */
}
/* 텍스트 가독성을 위한 그라데이션 오버레이 */
.clinic-item::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.clinic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 이미지 내부 텍스트 */
.clinic-item .text-box {
    position: absolute;
    right: 20px; /* 오른쪽 정렬 */
    bottom: 30px; /* 아래쪽 정렬 */
    text-align: right;
    color: #fff;
    z-index: 2; /* 오버레이보다 위로 */
}
.clinic-item .tit {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.1;
}
.clinic-item .desc {
    font-size: 22px;
    font-weight: 300;
    text-decoration: underline; /* 밑줄 추가 */
    text-underline-offset: 4px; /* 밑줄과 글자 사이 간격 띄우기 */
    line-height: 1.4;
}




/* --- [7] 병원 소개 영역 스타일 --- */

/* 전체 배경 및 높이 설정 */
.intro-section {
    width: 100%;
    height: 810px; /* 요청하신 고정 높이 */
    background: url('http://www.eurekanet.co.kr/wj/img/main_wj_bg.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center; /* 1400px 컨테이너를 세로 중앙에 배치 */
}

/* 1400px 중앙 정렬 컨테이너 */
.intro-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* 창이 좁아질 때를 대비한 최소 여백 */
    gap: 60px;
}

.intro-images {
    width: 568px; /* 디자이너가 작업한 이미지의 실제 가로 너비에 맞춰 조절해 주세요 */
    flex-shrink: 0;
}

.intro-images img {
    width: 100%; /* 부모 영역(650px)에 꽉 차도록 설정 */
    display: block;
}

/* --- 오른쪽 텍스트 --- */
.intro-text {
    flex: 1;
    color: #fff; /* 어두운 배경이므로 글자는 모두 흰색 계열 */
}

/* 서브 타이틀 */
.intro-text .sub-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 35px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 20px;
    color:#fff;
}

/* 메인 타이틀 */
.intro-text .main-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 40px;
    color:#fff;
}

/* 흰색 짧은 가로선 */
.intro-text .divider {
    width: 60px;
    height: 3px;
    background-color: #fff;
    border: none;
    margin-bottom: 40px;
}

/* 소개 설명글 */
.intro-text .desc {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300; /* 깔끔한 느낌을 위해 얇은 굵기 사용 */
    color: rgba(255, 255, 255, 0.9); /* 완전한 흰색보다는 살짝 투명도를 주어 눈의 피로를 줄임 */
}



/* PC 환경(1920px 이상) Grid 배치 */
@media (min-width: 1920px) {
    .hybrid-swiper .swiper-wrapper { display: flex; justify-content: space-between; gap: 20px; flex-wrap: nowrap; }
    .hybrid-swiper .swiper-slide { width: calc(33.333% - 14px) !important; margin-right: 0 !important; }
}


/* [7] 병원 둘러보기 (Preview) 영역 */
.preview-section { background-color: var(--color-bg-light); }
.preview-container {
    display: flex; background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); gap: 40px; max-width: 1200px; margin: 0 auto;
}
.preview-image { flex: 2; height: 500px; border-radius: 10px; overflow: hidden; }
.preview-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
.preview-list { flex: 1; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--color-bg-light); }
.preview-list li {
    padding: 20px 30px; cursor: pointer; font-size: 18px; color: #666; transition: all 0.3s; position: relative;
}
.preview-list li.active { color: var(--color-primary); font-weight: bold; }
.preview-list li.active::before {
    content: ''; position: absolute; left: -2px; top: 0; width: 3px; height: 100%; background: var(--color-primary);
}



/* --- [8] 하단 푸터 영역 스타일 --- */
#footer {
    width: 100%;
    height: 950px;
    background: url('http://www.eurekanet.co.kr/wj/img/footer_bg.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center; /* 950px 높이 안에서 컨텐츠를 세로 중앙 정렬 */
    color: #fff;
}

.footer-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* 영문/숫자 전용 Montserrat 폰트 클래스 */
.en-font {
    font-family: 'Montserrat', sans-serif;
}

/* 상단: 진료시간 & 문의전화 */
.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.time-info {
    display: flex;
    align-items: flex-start; /* 최상단 기준으로 정렬 */
}
.cs-info {
    display: flex;
    align-items: flex-start; /* 최상단 기준으로 정렬 */
}

/* 타이틀 세팅 (40px) */
.footer-top h2 {
    font-size: 40px;
    font-weight: 600;
    margin-right: 50px; 
    line-height: 1; 
    margin-top: 0;
}

/* 시간표 텍스트 세팅 */
.time-list {
    margin-top: 8px; 
}
.time-list li {
   margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1; /* 첫 줄 윗선 맞춤을 위해 추가 */
}
.time-list .day {
    font-size: 20px;
    font-weight: 400;
    display: inline-block;
    width: 100px; /* 글자 길이 상관없이 일정하게 띄우기 위해 너비 고정 */
}
.time-list .time {
    font-size: 22px; /* Montserrat 22px */
    font-weight: 600;
}
.time-list .holiday {
    font-size: 20px;
    color: #bbb;
    margin-top: 5px;
}

/* 전화번호 세팅 */
.cs-info .phone-num {
    font-size: 45px; 
    font-weight: 600;
    line-height: 1; /* 불필요한 여백 제거 */
    margin-top: -2px; /* 폰트(Montserrat) 특성상 위로 살짝 올려야 윗선이 맞습니다 */
}

.footer-map {    
    width: 100%; 
    max-width: 1400px; 
    height: 380px;
    background-color: #f5f5f5;
    margin: 0 auto 40px auto; 
}
.footer-map .root_daum_roughmap {
    width: 100% !important;
}
.footer-map .root_daum_roughmap .wrap_map {
    width: 100% !important;
}

.footer-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 하단: 약관 및 회사 정보 */
.footer-bottom {
    text-align: center;
}

/* 약관 메뉴 */
.policy-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}
.policy-menu li a {
    font-size: 15px;
    color: #ccc;
    position: relative;
    transition: color 0.3s;
}
.policy-menu li a:hover {
    color: #fff;
}
/* 약관 사이 | 선 긋기 */
.policy-menu li:not(:last-child) a::after {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: #666;
    position: absolute;
    right: -15px;
    top: 5px;
}

/* 하단 로고 (216px * 66px) */
.footer-logo img {
    width: 216px;
    height: 66px;
    margin-bottom: 30px;
}

/* 주소 및 카피라이트 (15px) */
.company-info {
    font-size: 15px;
    color: #aaa;
    line-height: 1.8;
}
.company-info .bar {
    margin: 0 10px;
    color: #666;
}
.company-info .copy {
    margin-top: 5px;
}