* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'TheSignature';
  src: url('../fonts/Thesignature.woff2') format('woff2'),
    url('../fonts/Thesignature.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('//fonts.googleapis.com/earlyaccess/nanummyeongjo.css');

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  word-break: keep-all;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul,
ol,
li {
  list-style: none;
}


img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: 0;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.text-point {
  color: var(--main-color);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}


/*
================================================================================
   [ SECTION ] 헤더 디자인
================================================================================
*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2000;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}

h1.logo {
  font-size: 24px;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
}

h1.logo a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  max-height: 40px;
  width: auto;
  display: block;
  transition: 0.3s;
}

/* 초기 상태 (투명 배경일 때) */
.logo-white {
  display: block;
}

.logo-black {
  display: none;
}

/* 헤더에 색상이 들어갔을 때 (스크롤 시 또는 메뉴 활성 시) */
#header.header-scrolled .logo-white,
#header.active .logo-white {
  display: none;
}

#header.header-scrolled .logo-black,
#header.active .logo-black {
  display: block;
}

#header.header-scrolled,
#header.active {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 텍스트 색상 대응 */
.logo-text,
.gnb-list>li>a,
.phone-info a,
.header-right-txt {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

#header.header-scrolled .logo-text,
#header.active .logo-text,
#header.header-scrolled .gnb-list>li>a,
#header.active .gnb-list>li>a,
#header.header-scrolled .phone-info a,
#header.active .phone-info a,
#header.header-scrolled .header-right-txt,
#header.active .header-right-txt {
  color: #111;
}

/* GNB & 풀다운 하위 메뉴 */
.gnb-list {
  display: flex;
  list-style: none;
}

.gnb-list>li {
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
}

.gnb-list>li>a {
  font-size: 18px;
  padding: 0 25px;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}

.gnb-list>li>a>span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

/* ★ 하단 선 초기 상태 (짧고 투명하게) */
.gnb-list>li>a>span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.gnb-list>li:hover>a>span::after {
  transform: translateX(-50%) scaleX(1);
}

.depth2 {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  list-style: none;
  padding: 20px 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 2001;
}

#header.active .depth2 {
  opacity: 1;
  visibility: visible;
}

.depth2 li a {
  display: block;
  padding: 8px 0;
  color: #222;
  font-size: 15px;
}

.depth2 li a:hover {
  color: var(--main-color) !important;
  font-weight: 600;
}

/* ★ 풀다운 배경판 (이 부분이 빠지면 깨집니다) */
.sub-menu-bg {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  z-index: 2000;
  overflow: hidden;
}

#header.active .sub-menu-bg {
  height: 220px;
}

/* 우측 영역 & 햄버거 */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-right-txt {
  padding: 5px 15px;
  border: 1px solid #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

#header.header-scrolled .header-right-txt,
#header.active .header-right-txt {
  border-color: #111;
}

.phone-info .num {
  font-size: 24px;
  font-weight: 800;
}

.menu-trigger {
  width: 25px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 6px;
}

.menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

#header.header-scrolled .menu-trigger span,
#header.active .menu-trigger span {
  background: #111;
}

/* 풀페이지 메뉴 */
.full-menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 3000;
  /* 초기 상태: 원형 0% */
  clip-path: circle(0% at 90% 5%);
  /* [수정] 속도를 0.4s로 단축하여 더 빠르게 열리도록 설정 */
  transition: clip-path 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  visibility: hidden;
  opacity: 0;
}

/* 메뉴가 열릴 때 */
.full-menu-wrap.open {
  visibility: visible;
  opacity: 1;
  clip-path: circle(150% at 90% 5%);
}

.full-menu-inner {
  width: 100%;
  height: 100%;
  position: relative;
  /* [수정] 위로 올라오는 효과(translateY) 제거, 제자리에서 투명도만 조절 */
  opacity: 0;
  transition: opacity 0.3s 0.2s;
  /* 배경이 어느 정도 펼쳐진 후 나타나도록 0.2초 지연 */
}

.full-menu-wrap.open .full-menu-inner {
  opacity: 1;
}

.menu-close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 45px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* ★ 사이트맵 그리드: 대메뉴 상단 고정 */
.sitemap-grid {
  display: flex;
  width: 100%;
  height: 100%;
}

.sitemap-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-left: 1px solid #eee;
  padding: 150px 20px 50px;
  transition: 0.3s;
}

.sitemap-col:last-child {
  border-right: 1px solid #eee;
}

.sitemap-col:hover {
  background: #fcfcfc;
}

.sitemap-col h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111;
  text-align: center;
  white-space: nowrap;
}

.sitemap-col ul {
  list-style: none;
  text-align: center;
  width: 100%;
}

.sitemap-col ul li a {
  display: block;
  padding: 12px 0;
  color: #666;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.2s;
}

.sitemap-col ul li a:hover {
  color: var(--main-color);
  font-weight: 700;
}

/* [수정] 모바일 및 태블릿 대응 (1024px 이하) */
@media (max-width: 991px) {

  .pc-only,
  .sub-menu-bg,
  .depth2 {
    display: none !important;
  }

  /* 1. 모바일 헤더 기본 설정 */
  #header {
    height: 60px;
    box-shadow: none;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* 2. 스크롤 시 흰색 전환 */
  #header.header-scrolled {
    background: #fff !important;
  }

  h1.logo {
    font-size: 18px;
    padding-left: 15px;
    /* 로고 왼쪽 여백만 유지 */
  }

  .logo-img {
    max-height: 20px;
  }

  /* 3. 내부 레이아웃 (패딩 제거로 버튼 밀착) */
  .header-inner {
    padding: 0 !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* 4. 우측 버튼 영역 (높이 100% 꽉 채움) */
  .header-right {
    display: flex;
    height: 100%;
    gap: 0 !important;
  }

  /* 전화 & 햄버거 공통 스타일 */
  .phone-info,
  .menu-trigger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100% !important;
    margin: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    transition: 0.3s;
    cursor: pointer;
  }

  /* 스크롤 시 구분선 색상 변경 */
  #header.header-scrolled .phone-info,
  #header.header-scrolled .menu-trigger {
    border-left: 1px solid #eee;
  }

  #header.header-scrolled {
    border-bottom: 1px solid #eee;
  }

  /* 5. 햄버거 버튼 디자인 복구 (세 줄 정렬) */
  .menu-trigger {
    flex-direction: column !important;
    gap: 4px;
  }

  .menu-trigger span {
    display: block;
    width: 22px !important;
    height: 2px !important;
    background: #fff !important;
    transition: 0.3s;
  }

  /* 초기 텍스트/아이콘 색상 */
  .logo-text,
  .phone-info a {
    color: #fff !important;
  }

  /* 스크롤 시 검정색 반전 */
  #header.header-scrolled .logo-text,
  #header.header-scrolled .phone-info a {
    color: #111 !important;
  }

  #header.header-scrolled .menu-trigger span {
    background: #111 !important;
    /* 검정 막대 */
  }

  .phone-info a {
    font-size: 24px !important;
  }

  .phone-info .num {
    display: none;
  }

  .header-right-txt {
    display: none;
  }

  .full-menu-inner {
    padding: 60px 0 0;
  }

  .sitemap-grid.mobile-accordion {
    flex-direction: column;
    justify-content: flex-start;
  }

  .sitemap-col {
    width: 100%;
    flex: none;
    border: none !important;
    padding: 0;
    border-bottom: 1px solid #eee !important;
  }

  .m-trigger {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #111;
  }

  .m-trigger i {
    transition: 0.3s;
    font-size: 24px;
  }

  .sitemap-col.active .m-trigger {
    color: var(--main-color);
  }

  .sitemap-col.active .m-trigger i {
    transform: rotate(180deg);
    color: var(--main-color);
  }

  .m-depth2 {
    display: none;
    background: #f9f9f9;
    padding: 10px 0;
  }

  .m-depth2 li a {
    padding: 12px 30px !important;
    font-size: 16px !important;
    color: #333;
    text-align: left;
  }

  .menu-close {
    top: 15px;
    right: 15px;
    font-size: 36px;
  }
}

/*
================================================================================
   [ SECTION ] 메인 슬라이더
================================================================================
*/

.main-visual {
  width: 100%;
  height: 100svh;
  overflow: hidden;
  position: relative;
  padding-top: 0;
}

.main-slider {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.2);
}

.swiper-slide-active .slide-bg {
  animation: zoomOut 3s linear forwards;
}

@keyframes zoomOut {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}

.main-visual .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.3) 30%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.slide-txt {
  position: relative;
  z-index: 10;
  bottom: 0;
  text-align: left;
  color: #fff;
  width: 100%;
  max-width: 1700px;
  padding: 0 30px;
  margin: 0 auto;
}

.top-sub {
  display: block;
  font-size: 72px !important;
  line-height: 1;
  margin-top: 120px;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  font-family: 'TheSignature', sans-serif;
}

.slide-txt h2 {
  font-size: 42px;
  /* font-family: 'Nanum Myeongjo', serif !important; */
  font-weight: 600;
  margin-bottom: 45px;
  letter-spacing: 0;
}

.slide-txt p {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.slide-txt .sub {
  opacity: 0.8;
}

/* Swiper 화살표/도트 색상 (흰색 배경에 잘 보이게) */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  margin-top: 0;
  transform: translateY(-50%);
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
  background: #fff !important;
  width: 30px;
  border-radius: 5px;
}

/* 스크롤 유도 아이콘 */
.scroll-down {
  position: absolute;
  bottom: 130px;
  /* 컨트롤러보다 약 70px 위로 배치 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-down .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  position: relative;
}

.scroll-down .wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 1.5s infinite;
}

.scroll-down span {
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.8;
}

@keyframes wheelScroll {
  0% {
    opacity: 1;
    top: 8px;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

.slider-controls {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
  width: auto !important;
}

.fraction-num {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* 중앙 진행 바 구조 */
.progress-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
}

/* 재생 시간에 맞춰 바가 차오르는 애니메이션 */
.progress-fill.animate {
  animation: slideProgress 5s linear forwards;
}

@keyframes slideProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .slide-txt h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .top-sub {
    font-size: 42px !important;
    margin-top: 80px;
  }

  .slide-txt {
    bottom: 50px;
  }

  .slide-txt p {
    font-size: 16px;
  }

  .slider-controls {
    bottom: 70px;
    gap: 15px;
  }

  .progress-bar {
    width: 120px;
  }

  .fraction-num {
    font-size: 14px;
  }
}

/*
================================================================================
   [ SECTION ] 프리미엄 섹션
================================================================================
*/
.premium-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 850px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.premium-section .swiper-slide::before {
  display: none !important;
}

.premium-section .container {
  max-width: 1400px;
}

/* 꽉 찬 배경 설정 */
.section-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-bg-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.1);
  transition: opacity 1s ease-in-out;
}

.section-bg-item.active {
  opacity: 1;
}

.section-bg-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* 컨텐츠 레이어 */
.relative-box {
  position: relative;
  z-index: 10;
  width: 100%;
}

.section-title-group {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

.premium-title-01 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -1px;
}

.premium-title-02 {
  font-size: 40px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -1px;
}

.slide-content-flex {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.txt-area {
  flex: 1;
  color: #fff;
  text-align: left;
}

.p-subject {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
}

.p-subject span {
  color: #ebebba;
}

.p-content {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.9;
  word-break: keep-all;
  max-width: 550px;
}

/* 우측 라운딩 이미지 박스 */
.img-area {
  flex: 1.3;
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}

.p-rounded-img {
  width: 100%;
  max-width: 700px;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  box-shadow: 15px 10px 10px -10px rgba(0, 0, 0, 0.6);
  position: relative;
}

/* 화살표 버튼 */
.premium-nav-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

/* 페이지네이션 숫자 디자인 */
.premium-pagination {
  position: relative !important;
  /* Swiper 기본값 무시 */
  width: auto !important;
  bottom: auto !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  /* 숫자 전용 폰트가 있다면 적용 */
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-prev,
.btn-next {
  width: 55px;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-prev:hover,
.btn-next:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* 모바일 대응 */
@media (max-width: 991px) {
  .premium-section {
    height: auto;
    padding: 100px 0;
  }

  .section-title-group {
    margin-bottom: 30px;
  }

  .premium-title-01 {
    font-size: 18px;
  }

  .premium-title-02 {
    font-size: 20px;
  }

  .slide-content-flex {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .p-subject {
    font-size: 26px;
  }

  .img-area {
    width: 100%;
    order: -1;
    justify-content: center;
  }

  .p-rounded-img {
    height: 280px;
    border-radius: 20px;
  }

  .txt-area {
    padding: 15px;
    text-align: center;
  }

  .p-content {
    margin: 0 auto;
    font-size: 16px;
  }

  .premium-nav-group {
    margin-top: 25px;
    justify-content: center;
  }
}

/*
================================================================================
   [ SECTION ] 서브 페이지 비주얼 & 네비게이션
================================================================================
*/

/* 서브 비주얼 영역 */
.sub-visual {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.sub-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.sub-visual .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.sub-visual h2 {
  position: relative;
  top: 50px;
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 서브 로컬 네비게이션 (LNB) */
.sub-nav {
  background: #f4f4f4;
  border-bottom: 1px solid #ddd;
  text-align: center;
  top: 100px;
  z-index: 100;
}

.sub-nav ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
}

.sub-nav ul li a {
  display: block;
  padding: 20px 30px;
  text-decoration: none;
  color: #666;
  font-size: 18px;
  white-space: nowrap;
  transition: 0.3s;
}

.sub-nav ul li a.active {
  color: var(--main-color);
  font-weight: 700;
  border-bottom: 3px solid var(--main-color);
}

.sub-content {
  padding: 100px 0;
  background: #fff;
}

.content-view {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.img-box img {
  display: block;
  width: 100%;
  /* 부모 너비에 맞춤 */
  height: auto;
  margin: 0 auto;
}

/* 모바일 대응 여백 조절 */
@media (max-width: 991px) {
  .sub-visual {
    height: 240px;
  }

  .sub-visual h2 {
    font-size: 26px;
    top: 25px;
  }

  .sub-content .container {
    padding: 0 10px;
  }

  .sub-content {
    padding: 30px 0;
  }

  .sub-nav ul li a {
    font-size: 16px;
    padding: 10px 15px;
  }
}

/* =============================================================================
   [ 푸터 ]
============================================================================= */
#footer {
  background: #222;
  color: #888;
  padding: 60px 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-start;
}

/* 왼쪽 영역 */
.footer-left {
  flex: 1;
}

.f-logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.f-info {
  margin-bottom: 20px;
  color: #bbb;
}

.f-info p {
  margin-bottom: 5px;
}

.f-notice {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
}

.f-notice p {
  font-size: 14px;
  margin-bottom: 2px;
}

.f-copy {
  font-size: 14px;
  color: #666;
}

/* 오른쪽 영역 */
.footer-right {
  text-align: right;
}

.f-tel {
  margin-bottom: 15px;
}

.f-tel span {
  font-size: 20px;
  color: #fff;
  margin-right: 10px;
  font-weight: 500;
}

.f-tel a {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.f-unit {
  display: inline-block;
  border: 1px solid #444;
  padding: 8px 20px;
  color: #bbb;
  margin-bottom: 15px;
  font-size: 16px;
}

.f-company {
  color: #777;
  font-size: 15px;
}

@media (max-width: 991px) {
  #footer {
    padding: 40px 20px;
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    padding: 0;
    padding-bottom: 50px;
  }

  .footer-right {
    width: 100%;
    text-align: left;
    border-top: 1px solid #222;
  }

  .f-tel a {
    font-size: 28px;
  }

  .f-unit {
    text-align: center;
    box-sizing: border-box;
  }

  .f-company {
    display: none;
  }
}

/* =============================================================================
   [ 모바일 & PC 네비게이션 바 ]
============================================================================= */

.mobile-fixed-nav {
  display: flex;
  position: fixed;
  z-index: 9999;
  transition: all 0.3s ease;
}

.nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

@media (min-width: 992px) {
  .mobile-fixed-nav {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    flex-direction: column;
    width: 85px;
  }

  a.nav-link.btn-call {
    display: none;
  }

  a.nav-link.btn-reserve {
    background: white;
    color: black;
    border-radius: 25px 0 0 0;
    padding: 35px 0;
    min-height: 240px;
    align-items: center;
    justify-content: center;
  }

  a.nav-link.btn-reserve .icon-box {
    color: #fff;
  }

  a.nav-link.btn-interest {
    background: var(--main-color);
    color: #fff;
    border-radius: 0 0 0 25px;
    padding: 35px 0;
  }

  a.nav-link.btn-interest .icon-box {
    background: #fff;
    color: #1a2a4e;
  }

  .nav-item a {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
  }

  .nav-item span {
    font-size: 18px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .nav-item .icon-box {
    display: flex;
    font-size: 16px;
    background: #1a2a4e;
    padding: 5px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .mobile-fixed-nav {
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background: none;
    border: none;
    backdrop-filter: none;
  }

  .nav-item {
    flex: 1;
    text-align: center;
  }

  .nav-item a {
    flex-direction: row;
    justify-content: center;
    padding: 12px 0;
  }

  a.nav-link.btn-call {
    background: #f1ebde;
    color: #000;
    border-radius: 0 15px 0 0;
  }

  a.nav-link.btn-reserve {
    border-radius: 15px 0 0 0;
  }

  a.nav-link.btn-reserve,
  a.nav-link.btn-interest {
    background: var(--main-color);
    color: #fff;
  }

  .nav-item span {
    font-size: 15px;
    font-weight: 600;
  }

  .nav-item .icon-box {
    display: flex;
    font-size: 18px;
    margin-right: 3px;
  }
}


/*
================================================================================
   [ SECTION ] 사업개요 섹션
================================================================================
*/
.overview-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

.overview-container {
  display: flex;
  height: 100%;
}

.overview-content {
  flex: 5.5;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ov-eng-title {
  font-size: 80px;
  font-weight: 800;
  color: #000;
  font-family: 'Cinzel', serif !important;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 10px;
}

.ov-sub-title {
  font-size: 18px;
  color: #000;
  margin-bottom: 45px;
}

.ov-highlight {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  letter-spacing: -1px;
  margin-bottom: 60px;
  padding-bottom: 10px;
  width: fit-content;
}

.ov-highlight span {
  color: #4698c7;
}

.ov-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

.ov-item {
  position: relative;
  padding-bottom: 20px;
}

.ov-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.ov-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.ov-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  word-break: keep-all;
}

.overview-visual {
  flex: 4.5;
  position: relative;
}

.ov-img-box {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.img-label {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .overview-section {
    height: auto;
  }

  .overview-container {
    flex-direction: column-reverse;
  }

  .overview-visual {
    flex: none;
    width: 100%;
    height: 360px;
    /* 모바일 이미지 높이 고정 */
  }

  .overview-content {
    flex: none;
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    /* 타이틀 영역 중앙 정렬 */
  }

  .ov-eng-title {
    font-size: 36px;
  }

  .ov-sub-title {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .ov-highlight {
    margin: 0 auto 40px;
    font-size: 16px;
  }

  .ov-info-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 모바일 2칸 */
    gap: 40px 20px;
    text-align: left;
    /* 텍스트 내용은 좌측 정렬 유지 */
  }

  .ov-item h3 {
    font-size: 15px;
  }

  .ov-item p {
    font-size: 14px;
  }
}

/*
================================================================================
   [ SECTION ] 유니트 섹션
================================================================================
/* 수정된 CSS */
.bj-unit-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100svh;
  padding: 100px 0;
  background-color: #fff;
  overflow: hidden;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

.bj-unit-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 0 20px;
}

.bj-unit-left {
  flex: 0 0 500px;
  text-align: left;
}

.bj-main-title {
  font-size: 70px;
  font-weight: 800;
  font-family: 'Cinzel', serif !important;
  letter-spacing: 1px;
  color: #1a2a4e;
}

.bj-sub-text {
  font-size: 18px;
  color: #000;
  margin-bottom: 40px;
}

.bj-button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bj-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 280px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.bj-btn-white {
  background: #fff;
  color: #333;
  border: 1px solid #eee;
}

.bj-btn-blue {
  background: #1a2a4e;
  color: #fff;
}

.bj-unit-right {
  flex: 1;
  position: relative;
  min-width: 0;
}

.bj-type-header {
  margin-bottom: 20px;
  text-align: center;
}

.bj-type-title {
  font-size: 55px;
  font-weight: 700;
  color: #000;
}

.bj-type-count {
  font-size: 20px;
  color: #222;
}

.bj-main-plan-view {
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
}

.bj-main-plan-view img {
  max-width: 100%;
  height: auto;
}

/* 메인 슬라이더 커스텀 버튼 (큰 이미지 양옆) */
.bj-swiper-next,
.bj-swiper-prev {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #ddd;
  cursor: pointer;
  z-index: 10;
}

.bj-swiper-prev {
  left: -40px;
}

.bj-swiper-next {
  right: -40px;
}

.bj-thumb-container {
  position: relative;
  max-width: 580px;
  margin: 50px auto 0;
  padding: 0 40px;
}

.bj-thumb-swiper {
  width: 100%;
  margin-top: 0 !important;
}

/* 썸네일용 화살표 - 스타일 유지, 위치만 썸네일 양옆으로 고정 */
.bj-thumb-next,
.bj-thumb-prev {
  position: absolute;
  top: 50px;
  transform: translateY(-50%);
  font-size: 24px;
  color: #bbb;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.bj-thumb-prev {
  left: -5px;
}

/* 컨테이너의 왼쪽 끝 */
.bj-thumb-next {
  right: -5px;
}

/* 컨테이너의 오른쪽 끝 */
.bj-thumb-prev:hover,
.bj-thumb-next:hover {
  color: #1a2a4e;
}

/* 썸네일 아이템 스타일 유지 */
.bj-thumb-item {
  cursor: pointer;
  text-align: center;
  opacity: 1;
  transition: 0.3s;
}

.bj-thumb-img-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 15px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.bj-thumb-img-box img {
  max-width: 100%;
  max-height: 100%;
}

.bj-thumb-label {
  font-size: 15px;
  font-weight: 500;
  color: #888;
}

.bj-unit-section .swiper-slide {
  display: block !important;
}

/* 활성화 효과 유지 */
.swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide-thumb-active .bj-thumb-img-box {
  border: 2.5px solid #1a2a4e;
  background: #fff;
}

.swiper-slide-thumb-active .bj-thumb-label {
  color: #1a2a4e;
  font-weight: 700;
}

/* 반응형 처리 유지 및 보강 */
@media (max-width: 991px) {
  .bj-unit-section {
    display: block;
    padding: 50px 0;
    height: auto;
  }

  .bj-unit-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .bj-unit-left {
    flex: none;
    width: 100%;
    margin-bottom: 0;
  }

  .bj-main-title {
    font-size: 36px;
  }

  .bj-sub-text {
    font-size: 14px;
  }

  .bj-button-group {
    align-items: center;
    flex-direction: row;
  }

  .bj-btn {
    padding: 10px 15px;
  }

  .bj-button-group span {
    font-size: 13px;
  }

  .bj-unit-right {
    width: 100%;
    min-width: unset;
  }

  .bj-type-title {
    font-size: 36px;
  }

  .bj-main-plan-view img {
    width: 100%;
    height: auto;
  }

  .bj-thumb-container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    margin-top: 30px;
  }

  .bj-thumb-swiper {
    width: 100%;
  }

  .bj-thumb-img-box {
    height: 90px;
    padding: 15px 5px;
    border-radius: 10px;
  }

  .bj-thumb-label {
    font-size: 13px;
  }

  .bj-swiper-next,
  .bj-swiper-prev,
  .bj-thumb-next,
  .bj-thumb-prev {
    display: none;
  }
}

@media (max-width: 480px) {
  .bj-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    gap: 5px;
  }
}