/* 헤더 */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 0 50px;
  height: 80px;
  line-height: 80px;
  transition: 0.5s ease all;
  box-sizing: border-box;
}
.header .logo {
  font-weight: bold;
}

.header:hover {
  background-color: #fff;
  color: #111;
  border-bottom: 1px solid #eee;
}

.header:hover .nav a {
  color: #111;
}

.header.fix-header {
  background-color: #fff;
  color: #111;
  border-bottom: 1px solid #eee;
}

.header.fix-header {
  position: fixed;
  z-index: 11;
  left: 0;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  color: #111;
  border-bottom: 1px solid #eee;
}

.header.fix-header .nav a {
  color: #111;
}

.header.fix-header .hamburger {
  color: #111;
}

/* nav 공통 스타일 */
.nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav a {
  color: white;
  margin-left: 30px;
  text-decoration: none;
  font-weight: bold;
}
.nav a.active {
  /* background: #333; */
  color: #fff;
  padding: 0 0;
  border-radius: 4px;
}

/* 햄버거 버튼 (모바일 전용) */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* 왼쪽 중앙 플로팅 */
.side-nav {
  position: fixed;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  z-index: 100;
}
.side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-nav li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #bbb;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}
.side-nav li span {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-right: 5px;
}
.side-nav li::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -5px;
  left: 5px;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background: #bbb;
  transition: width 0.3s ease, background 0.3s ease;
}
.side-nav li.active {
  color: #000;
}
.side-nav li.active::after {
  width: 60px;
  background: #000;
}

/* 메인 컨텐츠 */
.content {
}

#section1.mt {
  margin-top: 80px;
}
#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
}

/* SNS 버튼 */
.sns-buttons {
  position: fixed;
  right: 20px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.sns-buttons .sns-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  text-decoration: none;
  overflow: hidden;
}

.sns-buttons > a > img {
  width: 35px;
}
.sns-buttons .blog {
  background: green;
}
.sns-buttons .talk {
  background: green;
}
.sns-buttons .kakao {
  background: gold;
  color: black;
}
.sns-buttons .top {
  background: gray;
}

/* ✅ 반응형 */
@media screen and (max-width: 888px) {
  .header {
    padding: 10px 20px;
  }
  .nav {
    position: fixed;
    top: 60px;
    right: -200px; /* 초기 숨김 */
    width: 200px;
    height: calc(100% - 60px);
    background: black;
    flex-direction: column;
    padding-top: 20px;
    transition: right 0.3s ease;
  }
  .nav.show {
    right: 0;
  }
  .nav a {
    margin: 15px 0;
  }
  .hamburger {
    display: block;
  }

  .side-nav {
    display: none;
  }
}
#section1 {
}
.s-box {
  display: flex;
  justify-content: center;

  gap: 30px;

  width: 95%;
  margin: 0 auto;
}

.ss-box {
  /* max-width: 1280px; */
  width: 100%;
  margin: 0 auto;
}

.left-swiper {
  flex: 1;
}

.right-content {
  flex: 2;
}

.s2-right-content,
.middle-content {
  flex: 1;
}

.s2-right-content {
  display: flex;

  justify-content: center;
  align-items: center;
}
/* 왼쪽 슬라이드 영역 */
.left-swiper {
  position: relative;
  width: 30%;
}

/* hover 시 흰색 오버레이 */
.swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.swiper-slide:hover::after {
  opacity: 0.3;
}

/* Swiper 이미지 */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 공통 bullet 스타일 */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent; /* 기본은 투명 */
  border: 2px solid #fff; /* 테두리 */
  opacity: 1; /* swiper 기본 opacity 무시 */
  margin: 0 6px !important; /* 간격 */
  border-radius: 50%; /* 동그라미 */
  transition: all 0.3s ease;
}

/* 활성화된 bullet */
.swiper-pagination-bullet-active {
  background: #fff; /* 속이 찬 원 */
  border: 2px solid #fff; /* 경계 맞춤 */
}

.mySwiper2 {
  position: relative; /* pagination이 정상 위치 */
}

.mySwiper2 .swiper-pagination2 {
  position: absolute;
  bottom: 10px; /* 하단 노출 */
  left: 50%;
  width: 100%;
  z-index: 10; /* 다른 요소 위에 보이도록 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySwiper2 .swiper-pagination2-bullet {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  background: transparent; /* 기본은 투명 */
  border: 2px solid #fff; /* 테두리 */
  opacity: 1; /* swiper 기본 opacity 무시 */
  margin: 0 6px !important; /* 간격 */
  border-radius: 50%; /* 동그라미 */
  transition: all 0.3s ease;
}

.mySwiper2 .swiper-pagination2-bullet-active {
  background: #fff; /* 속이 찬 원 */
  border: 2px solid #fff; /* 경계 맞춤 */
}

/* 오른쪽 컨텐츠 */
.right-content {
  background: #111;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 10px;
  transition: gap 0.3s ease; /* 간격 부드럽게 */
}

/* 세로 두 칸 차지 */
.grid-item.tall {
  grid-row: span 2;
}

.grid-item.tall {
  grid-row: span 2;
}

.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* 오버레이 */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 153, 0.8); /* 블루톤 반투명 */
  z-index: 1;
  left: 0;
  top: 0;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
  padding: 50px 15px; /* 반응형 여백 */
  text-align: right;
}

.overlay h3 {
  font-size: clamp(12px, 1.5vw, 16px);
  margin-bottom: 0.5em;
  opacity: 0.9;
  width: 100%;
}

.overlay h2 {
  position: relative; /* 가상요소 위치 기준 */
  font-size: clamp(18px, 3vw, 32px);
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 8px; /* border 대신 간격 유지 */
  width: 100%;
}

.overlay h2::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0; /* h2의 맨 아래 */
  width: 80%;
  height: 2px; /* border 두께 */
  background-color: white; /* border 색상 */
}

.overlay p {
  margin-top: 10px;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.5;
  width: 100%;
  text-align: center;
}

/* 작은 화면 대응 */
@media (max-width: 480px) {
  .overlay {
  }
  .overlay p {
    max-width: 95%;
  }
}

/* hover 시 효과 */
/* .grid:hover {
  gap: 10px; 
} */



/* overlay 효과 (고급스러운 느낌) */
.grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
}

.grid-item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

/* 반응형 */
@media (max-width: 768px) {
  .s-box {
    flex-direction: column;
  }

  .left-swiper,
  .right-content {
    flex: none;
    width: 100%;
  }

  .content {
    margin-left: 0;
    padding: 0;
  }
}

/* 오른쪽 콘텐츠 */
.what-we-do {
  background: #222; /* 전체 배경 어두운색 */
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  text-align: center;
  padding: 40px 20px 0;
  background-color: #111; /* 배경색 (이미지 참고) */
  color: white;
}

.section-title .subtitle {
  margin: 25px 0 20px;
  line-height: 1.5;
  font-size: 18px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  color: #0070c0; /* 이미지에서 보이는 연두빛 초록 */
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 3px solid #0070c0; /* 하단 라인 */
}

.card-grid {
  padding: 0 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 25px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  max-width: 120px;
  display: block;
}

.card-text {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

.card-text h3 {
  color: #345b9c;
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 5px;
  font-weight: bold;
}

.card-text p {
  color: #333;
  font-size: clamp(14px, 1.5vw, 16px);
}

.desc {
  text-align: center;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.5;
  font-weight: bold;
  color: #6bc14b; /* 이미지에서 보이는 연두빛 초록 */
  padding-bottom: 40px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 30px;
  }

  .section-title .subtitle {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 16px;
  }

  .desc {
        font-size: 14px;
  }

  .card {

  height: 320px;
 
}
}

.s2-box {
  /* max-width: 1280px; */
  width: 100%;
  margin: 0 auto;
}
/* 섹션 전체 */
.custom-section {
  width: 100%;
  margin: 0 auto;
}

/* 배경 이미지 영역 */
.custom-hero {
  position: relative;
  background: url('../../images/img1.jpg') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.custom-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.custom-subtitle {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

.custom-title {
  color: #fff;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: bold;
}

/* 카드 그리드 */
.custom-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.custom-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 8px; */
}

.custom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.custom-card:hover img {
  transform: scale(1.05);
}

.custom-card span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;

  font-size: 21px;
  text-align: center;
  z-index: 2;
}

.custom-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.middle-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.amuse-container {
}

.amuse-about {
  color: #0096d6;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.amuse-desc {
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: #333;
}

.amuse-text {
  font-size: 18px;
  color: #000; /* 전체 문구 검은색 */
  line-height: 1.5;
  word-break: keep-all;
}

.amuse-text span {
  margin-right: 6px;
  white-space: nowrap;
}

.amuse-text em {
  color: #5ca144; /* #만 초록색 */
  font-style: normal;
}

.amuse-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0 5px !important;
  line-height: 1.3;
}

.amuse-title span {
  font-weight: 600;
  color: #555;
}

.amuse-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.amuse-sign {
  margin-top: 2rem;
  font-weight: 600;
}

/* 반응형 처리 */
@media (max-width: 768px) {
  .amuse-title {
    font-size: 1.6rem;
  }
  .amuse-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .amuse-title {
    font-size: 1.4rem;
  }
  .amuse-text {
    font-size: 0.9rem;
  }
}

/* CSS */
.business-section {
  display: flex;

  gap: 25px;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
}

.business-content {
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  padding: 0 10px;
}

.business-title {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 20px;
  font-width: 700;
}

.business-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
}

.business-stats {
  display: flex;
  flex-direction: column;
  gap: 55px;
  width: 110px;
}

.business-stats div {
  text-align: center;
}

.business-stats div strong {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 5px;
  font-weight: 300;
}

.business-stats div span {
  font-size: 1rem;
  color: #555;
  margin-top: 15px;
  display: inline-block;
}
.business-images {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.business-main-image img,
.business-sub-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.business-sub-image {
  position: relative;
}

.business-sub-text {
  color: #333;

  padding: 10px 15px 20px;
  border-radius: 4px;
}

.business-sub-text p {
  font-size: 0.75rem;
  margin: 0;
}

.business-sub-text h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.healing-road {
  display: flex;
  flex-direction: column;

  flex-wrap: wrap;
  background-color: #eee;
}

.image-frame {
  position: relative;
  width: 300px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
}

.business-sub-text {
  text-align: left;
  /* margin-top: 10px; */
}

.business-sub-text p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.business-sub-text h4 {
  font-size: 18px;
  font-weight: bold;
}

/* 반응형 */
@media (max-width: 768px) {
  .vertical-gallery-swiper {
    display: none !important;
  }

  .business-title {
    font-size: 1.6rem;
  }

  .image-frame {
    width: 100%;
  }

  .business-description {
    font-size: 0.9rem;
  }

  .amuse-container {
    padding: 20px;
  }

  .business-content {
    flex-direction: column;
    gap: 20px;
  }
  .business-section {
    flex-direction: column;
  }
  .business-stats {
    flex-direction: row;

    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .business-stats div strong {
    font-size: 1.3rem;
  }
  .healing-road {
    width: 100%;
    flex-direction: row !important;
    justify-content: center !important;
  }
}

.counterUp::after,
.counterUp_02::after {
  content: '+';
}

/* 전체 Hero 영역 */
.promotion-hero {
  position: relative;
  width: 100%;

  overflow: hidden;
}

.promotion-bg img {
  width: 100%;
  height: 350px;
  display: block;
  object-fix: cover;
}

/* 오버레이 */
.promotion-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

/* 중앙 컨텐츠 */
.promotion-center {
  max-width: 600px;
  width: 100%;
}

.promotion-title-img img {
  width: 100%;
}

.promotion-text {
  margin-top: 40px;
  height: 130px;
}
/* 텍스트 스타일 */
.promotion-text p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.promotion-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

/* ✅ Promotion Select Section */
.promotion-select {
  position: relative;
  width: 100%;

  background: url('../../images/select_bg.jpg') no-repeat center center/cover; /* 배경 이미지 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* 문구 */
.promotion-select__subtitle,
.why-select__subtitle {
  font-size: 1rem;
  color: #fff; /* 요청: 검은색 */
  margin-bottom: 15px;
}

.promotion-select__title,
.why-select__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff; /* 요청: 검은색 */
  margin: 0;
  margin-bottom: 30px;
}

.why-select__subtitle,
.why-select__title {
  color: #000000;
}

.why-select__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.why-select__title span {
  color: #0066cc; /* 포인트 색상 */
}

.why-select {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 카드 영역 */
.why-select__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 0;
  list-style: none;
}

/* 하단 설명 */
.why-select__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.why-select__highlight {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
}

.why-select__desc {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.7rem;
  color: #333;
}
.why-select__desc li {
  margin: 8px 0;
}

/* 이미지 */
.promotion-select__image img {
  max-width: 100%;

  object-fit: contain;
}

/* 반응형 */
@media (min-width: 768px) {
  .why-select__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 0;
    list-style: none;
    width: 1050px;
  }
  .why-select__cards li img {
    width: 100%;
  }

  .why-select__highlight {
    font-size: 2.5rem;
  }

  .why-select__desc {
    font-size: 1.2rem;
  }

  .promotion-select {
    padding: 80px;
  }

  .promotion-select__content {
  }

  .promotion-select__title,
  .why-select__title {
    font-size: 3rem;
  }

  .promotion-select__subtitle,
  .why-select__subtitle {
    font-size: 1.5rem;
  }

  .promotion-select__image {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .promotion-select__image img {
    max-width: 80%;
  }
}

/* 기본 스타일 */

/* 반응형 */
@media (min-width: 768px) {
  .promotion-bg img {
    width: 100%;
    height: auto;
    display: block;
  }
  .promotion-text p {
    font-size: 1.25rem;
  }

  .promotion-text h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .promotion-text h2 {
    font-size: 3.5rem;
  }
}

.recommend-wrap {
  background-color: #b1c7dc;
  padding: 80px 0;
}
.chat-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 35px auto 0;
}

.chat-bubble {
  max-width: 550px;
  width: 100%;
}

.chat-bubble img {
  display: block;
  width: 100%;
  height: auto;
}

.chat-bubble.left {
  align-self: flex-start;
}

.chat-bubble.right {
  align-self: flex-end;
}

/* 반응형 (모바일 최적화) */
@media (max-width: 600px) {
  .chat-bubble {
    max-width: 90%;
    padding: 0.5rem;
  }

  .chat-bubble img {
    border-radius: 10px;
  }
}

.circle-title {
  text-align: center;
  line-height: 1.3;
}
/* ✅ CSS */
.circle-container {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 50px auto;
  border-radius: 50%;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  border-radius: 50%;

  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.center-circle img {
  width: 100%;
}

.circle-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  margin: -75px;
  border-radius: 50%;

  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(calc(60deg * var(--i))) translate(250px) rotate(calc(-60deg * var(--i)));
}

.circle-item img {
  width: 100%;
}

@media (max-width: 768px) {
  #section10 {
    display: none;
  }
}

.compare-wrap {
  width: 100%;
  max-width: 1200px;
}

.compare-wrap ul {
  display: flex;
  flex-wrap: wrap; /* 모바일에서 줄바꿈 */
  justify-content: center;

  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-wrap ul li {
  flex: 1 1 300px; /* 최소 300px 보장 */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.compare-wrap ul li h3 {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 18px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
}

.compare-wrap ul li:first-child h3 {
  background: #333;
  color: #fff;
}

.compare-wrap ul li:last-child h3 {
  background: #003c96;
  color: #fff;
}

.compare-wrap ul li span img {
  max-width: 100%;

  object-fit: contain;
}

@media (max-width: 768px) {
  .compare-wrap ul li span img {
    height: auto;
  }
}

.how_desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.how_desc > h4 > span {
  color: #0066cc; /* 포인트 색상 */
}

.how_desc > h4 {
  font-size: 1.5rem;
  font-weight: bold;
}

.how_desc > p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.how-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.how-wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.how-wrap ul li img {
  max-width: 100%;
  height: 180px;
}

@media (min-width: 768px) {
  .how_desc > h4 {
    font-size: 1.8rem;
    font-weight: bold;
  }

  .how_desc > p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

/* 상단 타이틀 영역 */
.service-header {
  background: #0069b4;
  text-align: center;
  padding: 40px 20px;
}

.service-header h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

/* 리스트 영역 */
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 80px 20px;
  list-style: none;
  margin: 0;
}

.service-list li {
  background: #4a4a4a;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-list li:hover {
  background: #0069b4;
  transform: scale(1.05);
}

/* 반응형 */
@media (max-width: 768px) {
  .service-header h2 {
    font-size: 2rem;
  }

  .service-list {
    gap: 20px;
  }

  .service-list li {
    width: 100px;
    height: 100px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-list {
    gap: 15px;
  }

  .service-list li {
    width: 80px;
    height: 80px;
    font-size: 0.9rem;
  }
}

.promotion-wrap {
  background: #111;
  color: #fff;
  padding: 50px 0;
}

.promotion-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 왼쪽 영역 */
.promotion-left {
  flex: 1 1 45%;
}

.promotion-left h2 {
  font-size: 3rem;
  margin: 10px 0;
  line-height: 1.5;
}

.promotion-left h2 span {
  color: #0073c6;
}

.promotion-contact {
  margin-top: 40px;
  width: 70%;
}

.promotion-contact .phone {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.2rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}

.promotion-contact p {
  margin: 20px 0;
}

/* 오른쪽 영역 - Form */
.promotion-right {
  flex: 1 1 45%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.promotion-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.promotion-form label {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: block;
}

.promotion-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}

.promotion-form input:focus {
  border-color: #0073c6;
  outline: none;
}

.promotion-form .checkbox {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 0.85rem;
  gap: 8px;
}
.promotion-form .checkbox input {
  width: 24px;
  height: 24px;
}

.promotion-form button {
  padding: 14px;
  background: #0073c6;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.promotion-form button:hover {
  background: #005fa3;
}

/* 반응형 */
@media (max-width: 768px) {
  .promotion-container {
    flex-direction: column;
  }

  .promotion-left,
  .promotion-right {
    flex: 1 1 100%;
  }

  .promotion-left h2 {
    font-size: 1.8rem;
  }

  .promotion-form label {
    font-size: 1rem;
  }
}

.catering-wrap {
  padding: 0 4%;
}
.catering-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catering-list__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.catering-list__gallery {
  display: flex;
  gap: 0.5rem;
  width: 40%;
  overflow: hidden;
}

.catering-gallery__thumb {
  position: relative;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-thumb__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.gallery-thumb__image--active {
  opacity: 1;
  visibility: visible;
}

.gallery-thumb__image img {
  width: 100%;

  height: 100%;
}

.catering-gallery__image {
  width: 22%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.catering-gallery__image img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.catering-gallery__image img:hover {
  transform: scale(1.05);
}

.catering-list__info {
  flex: 1;
}

.catering-info__titlebox {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #ddd;
}

.catering-info__title {
  font-size: 1.25rem;
  font-weight: 600;
}

.catering-info__desc {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.3rem;
}

.catering-info__composebox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.catering-compose {
  display: flex;
  flex: 1 1 45%;
  margin-bottom: 0.8rem;
}

.catering-compose__subject {
  margin-right: 0.5rem;
  font-weight: 600;
}

.catering-compose__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.catering-compose__item {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #555;
}

.point-label {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  background: #333;
  color: #fff;
}

.catering-submit {
  margin-top: auto;
}

.catering-submit__link {
  display: inline-block;
  padding: 1rem 1.4rem;
  background: #e91e63;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
  text-decoration: none;
}

.catering-submit__link:hover {
  background: #c2185b;
}

/* 반응형 */
@media (max-width: 1024px) {
  .catering-list__item {
    flex-direction: column;
  }
  .catering-list__gallery {
    width: 100%;
  }
  .catering-list__info {
    width: 100%;
  }
}

/* 배경 섹션 */
.section_bg {
  position: relative;
  width: 100%;
  min-height: 400px; /* 모바일에서 최소 높이 */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

 background: url('../../images/portfolio_bg.jpg') no-repeat center center/cover; /* 배경 이미지 */

}

/* 텍스트 */
.section_bg h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  padding: 20px;
}

/* 반응형 처리 */
@media (max-width: 1024px) {
  .section_bg {
    min-height: 250px;
  }
  .section_bg h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section_bg {
    min-height: 200px;
  }
  .section_bg h2 {
    font-size: 1.6rem;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .section_bg {
    min-height: 180px;
  }
  .section_bg h2 {
    font-size: 1.3rem;
    padding: 10px;
  }
}

/* 갤러리 전체 컨테이너 */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 기본 4개 */
  gap: 20px;
  padding: 40px 60px;
}

/* 개별 아이템 */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  background: #000;
  aspect-ratio: 4 / 3; /* 가로세로 비율 고정 */
}

/* 이미지 */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

/* 오버레이 (hover 시 나타나는 부분) */
.p-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 20px;
}

.p-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.p-overlay p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Hover 효과 */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .p-overlay {
  opacity: 1;
}

/* 반응형 */
@media (max-width: 1200px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr); /* 태블릿 큰 화면에서는 3개 */
  }
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); /* 태블릿 작은 화면에서는 2개 */
  }
}

@media (max-width: 600px) {
    
  .gallery {
    grid-template-columns: 1fr; /* 모바일에서는 1개 */
      padding: 10px;
  }
  .overlay h3 {
    font-size: 1rem;
  }
  .overlay p {
    font-size: 0.8rem;
  }
}

/* 컨테이너 */
.section-horizontal-scroll {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* 내부 래퍼 */
.scroll-wrapper {
  display: flex;
  height: 100%;
  width: max-content;
  transition: transform 0.3s ease-out;
}

/* 아이템 */
.scroll-item {
  flex: 0 0 100vw; /* 한 화면을 가득 채움 */
  height: 100vh;
  padding: 2rem;
  box-sizing: border-box;
}

.scroll-item img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* 배경 색상 샘플 */
.bg-light {
  background: #f3f3f3;
}
.bg-dark {
  background: #333;
}
.bg-gray {
  background: #e4e4e4;
}
.text-white {
  color: #fff;
}

/* 반응형 - 모바일에서는 세로 스크롤 */
@media (max-width: 768px) {
  .scroll-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .scroll-item {
    flex: 0 0 auto;
    height: auto;
  }
}

/* 레이아웃 */
.about-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Noto Sans KR', sans-serif;
}
.about-section .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}
.about-section .column {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}
.about-section .left h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
.about-section .left p {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.6;
}
.btn-wrap {
  margin-top: 30px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.btn .btn-label {
  display: block;
  transition: transform 0.3s;
}
.btn .hover {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(100%);
}
.btn:hover .normal {
  transform: translateY(-100%);
}
.btn:hover .hover {
  transform: translate(-50%, -50%) translateY(0);
}

/* 카운터 */
.right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.counter {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
}
.counter .title {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 5px;
  color: #555;
}
.counter .suffix {
  margin-left: 4px;
}

/* 반응형 */
@media (max-width: 768px) {
  .business-content {
    padding: 55px 0;
  }
  .about-section .container {
    flex-direction: column;
    text-align: center;
  }
  .right {
    align-items: center;
  }
}

/* 레이아웃 최적화 */
.vertical-gallery-swiper {
  width: 100%;
  height: 100vh; /* 화면 전체 높이 */
}

.vertical-gallery-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 이미지 비율 유지 + 꽉 채우기 */
}

.vertical-gallery-swiper .swiper-button-next,
.vertical-gallery-swiper .swiper-button-prev {
  display: none !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh; /* 화면 꽉 채우기 */
  background: url('../../images/last-bg.jpg')
    no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* 어두운 오버레이 */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.30); /* 배경 위에 반투명 블랙 */
  z-index: 1;
}

/* 콘텐츠 */
/* 오버레이 안의 콘텐츠 */
.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 20px;
}

.hero-overlay h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 65px;
  line-height: 1.6;
  position: relative;
}

.hero-overlay h3::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
  width: 25%;
  height: 3px;
  background: #fff;
}

.hero-overlay h3 strong {
  font-weight: 700;
  color: #ffd700;
}

.hero-overlay p {
  font-size: 2.3rem;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-overlay p strong {
  color: #00d4ff;
}

/* 둥근 버튼 */
.hero-btn {
  display: inline-block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-weight: 700;
  line-height: 140px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  opacity: 0.6;
}



/* 반응형 대응 */
@media (max-width: 768px) {

  .hero-overlay h3 {
    font-size: 1rem;
  }
  .hero-overlay p {
    font-size: 1.1rem;
  }
  .hero-btn {
    width: 120px;
    height: 120px;
    line-height: 120px;
    font-size: 0.9rem;
  }
}


.footer {
  background-color: #1e1e1e; /* 어두운 배경 */
  color: #f5f5f5;
  padding: 40px 20px;

}

.footer-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.footer-item {
  flex: 1 1 30%;
  min-width: 250px;
}

.footer-title {
  font-size: 25px;
  font-weight: 700;

}

.footer-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;

}

.footer-item p {
  margin: 3px 0;
  line-height: 1.5;
  font-size: 16px;
  color: #bbbbbb;
}

@media (max-width: 768px) {
  .footer-list {
    flex-direction: column;
            justify-content: center;
        align-items: center;
    gap: 25px;
  }

  .footer-item {
    text-align: center;
  }
}


.logo {
 max-width: 160px;
 width: 100%;
}