/* 공통 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: 'Pretendard Variable', sans-serif;
  line-height: 1.5;
}

/* ① 상단 네비게이션 */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}
.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 80px; /* 네비 높이 조절 */
}
.logo img {
  height: 40px; /* 로고 크기 조절 */
}
.gnb-list {
  display: flex;
  list-style: none;
}
.gnb-list li + li {
  margin-left: 40px;
}
.gnb-list a {
  text-decoration: none;
  font-size: 20px;
  color: #333;
  transition: color .2s;
}
.gnb-list a:hover {
  color: #ff6b95;
}

/* ② 퀵메뉴 */
.quick-menu {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  text-align: center;
  z-index: 900;
}
.qm-reserve {
  display: block;
  background: #ff6b95;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 8px;
}
.qm-list {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  list-style: none;
}
.qm-list li {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}
.qm-list li:last-child {
  border-bottom: none;
  font-size: 11px;
  color: #333;
  font-weight:900;
}
.qm-list li a img {
  width: 38px;
  height: 38px;
}

/* ③ 본문 여백 (네비 높이만큼) */
#main-content {
  padding-top: 80px; /* header 높이 + 여유 */
}








/* ─── 첫 번째 섹션 (.section-first) ─── */
.section-first {
  /* 전체 섹션 배경 이미지 */
  background: url('/img/repink-bg.jpg') no-repeat center top;
  height:996px;
}
.section-first__inner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 225px 20px;        /* 위아래 여백 */
  display: flex;
  align-items: center;        /* 세로 가운데 정렬 */
}
.section-first__text {
  width: 50%;                  /* 왼쪽 절반 */
  /*background: #fff;            /* 흰 배경 */
  padding: 60px;               /* 내부 여백 */
 /* box-shadow: 0 4px 10px rgba(0,0,0,0.05);*/
}
.section-first__subtitle {
  color: #ff6b95;
  font-size: 18px;
  margin-bottom: 16px;
}
.section-first__title {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 16px;
}
.section-first__title span {
  display: block;
  font-size: 48px;
  font-weight: 700;
}
.section-first__divider {
  width: 80px;
  height: 2px;
  background: #333;
  margin: 24px 0;
}
.section-first__description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}


/* ─── 두 번째 섹션 (.section-second) ─── */
.section-second {
  position: relative;
  background: url('/img//beforeafter-bg.jpg') no-repeat center/cover;
  /* 원하는 높이로 조절하세요 */
  height: 1097px;
}

/* 가운데 정렬된 inner 컨테이너 */
.section-second__inner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  font-weight:300;
}

/* 오른쪽 상단 텍스트 박스 */
.section-second__text {
  position: absolute;
  top: 80px;    /* 상단 여백 조절 */
  right: 80px;  /* 우측 여백 조절 */
  text-align: right;
  max-width: 800px;
  color: #fff;  /* 배경이 진할 경우 대비 */
}

/* 작은 문구 (태그라인) */
.section-second__tagline {
  font-size: 28px;
  margin-bottom: 12px;
  opacity: 0.9;
}

/* 메인 헤드라인 */
.section-second__headline {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 300;
}

/* 강조된 Before & After */
.section-second__headline span {
  color: #ff6b95;
}


.section-second__text span {
  color: #ff6b95;
}
.section-second__text strong {
  font-weight:900
}

/* ─── 세 번째 섹션 (.section-third) ─── */
.section-third {
  background: url('/img/third-bg.jpg') no-repeat center/cover;
  padding: 120px 0 80px; /* 상단 패딩, 하단 패딩 */
  background-color:#fcbbc8;
  height:1080px;
}

.section-third__inner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 헤더 텍스트 (가운데 정렬) */
.section-third__header {
  text-align: center;
  color: #fff;
}
.section-third__small-title {
  font-size: 32px;
  opacity: 0.9;
  margin-bottom: 8px;
}
.section-third__title {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-third__divider {
  width: 2px;           /* 선 굵기 */
  height: 60px;         /* 선 길이 */
  background: #fff;     /* 선 색상 */
  margin: 24px auto;    /* 위·아래 여백, 좌우 중앙 정렬 */
}

/* 추천 리스트 박스 */
.section-third__list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
.section-third__list li {
  background: #fff;
  border-radius: 20px;
  padding: 18px 24px;
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
  text-align: center;
  border: solid 2px #eb859d
}
.section-third__list li:last-child {
  margin-bottom: 0;
}


/* ─── 네 번째 섹션 (.section-fourth) ─── */
.section-fourth {
  background: url('/img/fourth-bg.jpg') no-repeat center/cover;
  padding: 160px 0 520px;  /* 위/아래 여백 조절 */
  color: #000;
  background-color:#ffe1e7;
  height:1200px;

}
.section-fourth__inner {
  width: 100%;
  max-width: 1492px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* 상단 헤더 텍스트 */
.section-fourth__header {
  display: inline-block;
  margin-bottom: 48px;
}
.section-fourth__small-title {
  font-size: 24px;
  opacity: 0.8;
  margin-bottom: 8px;
}
.section-fourth__main-title {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}
/* 세로 디바이더 */
.section-fourth__divider {
  width: 2px;
  height: 60px;
  background: #000;
  margin: 0 auto 24px;
}
.section-fourth__highlight {
  font-size: 32px;
  line-height: 1.5;
}
.section-fourth__highlight span {
  color: #ff6b95;
  font-weight: 600;
}

/* 설명 문구 */
.section-fourth__description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.9;
}


/* ─── 다섯 번째 섹션 (.section-fifth) ─── */
.section-fifth {
  background-color: #ffe6ec;
  padding: 120px 0 80px;
}
.section-fifth__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}


.section-fifth__header {
  display: inline-block;
  margin-bottom: 48px;
}
.section-fifth__small-title {
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 8px;
}
.section-fifth__main-title {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ① 체크리스트 박스 */
.fifth-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 60px;
}
.fifth-box__highlight {
  color: #ff6b95;
  font-size: 24px;
  margin-bottom: 16px;
}
.fifth-box__list {
  display: inline-flex;
  gap: 60px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.fifth-box__list li {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #333;
}
.check-icon {
  color: #ff6b95;
  font-size: 20px;
  margin-right: 8px;
}
.fifth-box__text {
  font-size: 20px;
  color: #333;
}

/* ②/③ 프로세스 그룹 */
.process-group {
  margin-bottom: 60px;
  text-align: left;
}
.process-group__title {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 6px 16px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* process-steps: 통 이미지로 교체 */
.process-steps {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
.process-steps img {
  width: 100%;
  max-width: 1492px;
  display: inline-block;
  border-radius: 8px;
}

/* ④ 각주 */
.section-fifth__footnote {
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  text-align: center;
}



/* ─── 여섯 번째 섹션 (.section-sixth) ─── */
.section-sixth {
  background-color: #fff;
  padding: 120px 0;
  text-align: center;
}
.section-sixth__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ① 타이틀 */
.section-sixth__small-title {
  color: #ff6b95;
  font-size: 20px;
  margin-bottom: 8px;
}
.section-sixth__title {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-sixth__divider {
  width: 2px;
  height: 40px;
  background: #333;
  margin: 0 auto 16px;
}
.section-sixth__subtitle {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
}
.section-sixth__subtitle span {
  color: #ff6b95;
  font-weight: 600;
}

/* ② Before & After 그리드 통이미지 */
.section-sixth__image {
  max-width: 1200px;
  margin: 0 auto;
}
.section-sixth__image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* ─── 일곱 번째 섹션 (.section-seventh) ─── */
/* Grid 레이아웃 & 배경 */
.section-program {
  background: url('/img/program-bg.jpg') center/cover no-repeat;
  padding: 140px 0 100px;
  color: #fff;
  height:1024px;

}
.program-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* 타이틀 */
.program-small-title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 8px;
}
.program-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 46px;
}
.program-divider {
  width: 2px;
  height: 80px;
  background: #fff;
  margin: 0 auto 80px;
}

.program-tabs,
.program-columns {
  width: 1080px;               /* 3개 × 160px + 2개 간격(40px) = 560px */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* 2) 탭 */
.program-tabs {
  margin-bottom: 60px;        /* 탭–리스트 간격 */
}
.program-tab {
  width: 200px;
  text-align: center;
  /* 기존 스타일 유지 */
  background: #ff6b95;
  color: #fff;
  padding: 8px 0;
  border-radius: 20px;
  font-size: 26px;
}

/* 3) 컬럼 리스트 */
.program-columns {
  align-items: flex-start;    /* 리스트 아이템 위쪽 정렬 */
}
.program-column {
  width: 200px;
  text-align: left;
}
.program-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.program-column li {
  font-size: 26px;
  line-height: 1.8;
  color: #000;
  text-align:center
}

/* 4) 컬럼 사이 구분선 */
.column-divider {
  width: 1px;
  background: #ff6b95;
  height:250px;
}



/* ─── FAQ 섹션 ─── */
.section-faq {
  background: #fff;
  padding: 100px 0 60px;
  color: #333;
}
.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}
/* 헤더 */
.faq-small-title {
  font-size: 24px;
  color: #ff6b95;
  margin-bottom: 8px;
}
.faq-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 16px;
}

.faq-title strong{
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-divider {
  width: 2px;
  height: 40px;
  background: #ff6b95;
  margin-bottom: 40px;
}

/* 그룹 */
.faq-group {
  margin-bottom: 60px;
}
.faq-group-title {
  display: inline-block;
  background: #ff6b95;
  color: #fff;
  font-size: 24px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 8px;

}
.faq-group-line {
  height: 1px;
  background: #ff6b95;
  margin: 8px 0 16px;
}
.faq-group-subtitle {
  font-size: 28px;
  color: #ff6b95;
  margin-bottom: 40px;
  font-weight:800;
}
.bullet {
  margin-right: 6px;
}

/* 문단 & 구분선 */
.faq-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.faq-separator {
  border: none;
  border-top: 1px solid #eee;
  margin: 16px 0;
}

/* CTA 버튼 */
.faq-cta {
  text-align: center;
  margin-top: 40px;
}
.btn-faq {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 32px;
  font-size: 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-faq:hover {
  background: #333;
}
.faq-separator {
  border: none;
  border-top: 1px solid #ddd;
  margin: 16px 0;
}


/* ─── Footer ─── */
.site-footer {
  background-color: #0a0a26;  /* 짙은 네이비 계열 */
  color: #ccc;
  padding: 60px 20px 40px;
  text-align: center;
}
.footer-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
}
/* 로고 */
.footer-logo img {
  height: 48px;
  margin-bottom: 20px;
}
/* 사업자 정보 */
.footer-info {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 24px;
}
/* 카피라이트 */
.footer-copy {
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.5px;
}


/* ─── Sub1 Section1 ─── */
.sub1_section1 {
  /* 배경 이미지는 실제 파일로 교체하세요 */
  background: url('/img/sub1-bg1.jpg') center/cover no-repeat;
  padding: 120px 20px 80px;
  text-align: center;
  color: #333;
}
.sub1_section1__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* 타이틀 */
.sub1_section1__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}
.sub1_section1__title span {
  color: #ff6b95;
}

/* 서브타이틀 */
.sub1_section1__subtitle {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000;
}
.sub1_section1__subtitle span {
  color: #ff6b95;
}

/* 설명 */
.sub1_section1__description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #666;
}
.sub1_section1__description strong {
  color: #ff6b95;
}

/* 버튼 */
.sub1_section1__btn {
  background: #ff6b95;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 40px;
}

/* 소제목 & 디바이더 */
.sub1_section1__heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}
.sub1_section1__divider {
  width: 2px;
  height: 40px;
  background: #333;
  margin: 0 auto 40px;
}

/* 특징 리스트 */
.sub1_section1__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.sub1_feature {
  max-width: 800px;
  width: 100%;
}
.sub1_feature__title {
  background: #222;
  color: #fff;
  border-radius: 12px;
  display: inline-block;
  padding: 10px 20px;
  font-size: 24px;
  margin-bottom: 16px;
  width:800px;
  font-weight:800
}
.sub1_feature__desc {
  background: #f2ebe8;
  border: 2px solid #ffbcd0;
  border-radius: 12px;
  padding: 24px 20px;
  font-size: 20px;
  line-height: 1.7;
  color: #444;
}

/* ─── Sub1 Section2: RE-PINK 의료진 ─── */
.sub1_section2 {
  background: #fff;
  padding: 120px 20px;
  color: #333;
}
.sub1_section2__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* 1) Header */
.sub1_section2__header {
  text-align: center;
  margin-bottom: 60px;
}
.sub1_section2__pretitle {
  font-size: 32px;
  margin-bottom: 8px;
  color: #333;
}
.sub1_section2__title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}
.sub1_section2__divider {
  width: 2px;
  height: 40px;
  background: #333;
  margin: 0 auto;
}

/* 2) Body: 1:1 layout */
.sub1_section2__body {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* (A) 이미지 */
.sub1_section2__image {
  flex: 1;
}
.sub1_section2__image img {
  width: 90%;
  border-radius: 16px;
  display: block;
}

/* (B) 텍스트 */
.sub1_section2__text {
  flex: 1;
}
.sub1_section2__desc {
  font-size: 24px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 32px;
}
.sub1_section2__desc strong {
  color: #ff6b95;
}
.sub1_section2__name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
}

/* 약력 / 전문 분야 Block */
.sub1_section2__block {
  margin-bottom: 32px;
}
.sub1_section2__label {
  display: inline-block;
  background: #ff6b95;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 18px;
  margin-bottom: 12px;
}
.sub1_section2__list {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 0;
}
.sub1_section2__list li {
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.sub1_section2__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff6b95;
}



/* ─── Sub1 Section3: VIP존 ─── */
.sub1_section3 {
  /* 배경 이미지 or 색상 */
  background: #f9f8f3; /* 필요시 아래처럼 이미지로 대체 */
  /* background: url('../assets/images/sub1-bg3.jpg') center/cover no-repeat; */
  padding: 120px 20px 80px;
  text-align: center;
  color: #333;
}

.sub1_section3__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ① Header */
.sub1_section3__pretitle {
  font-size: 48px;
  color: #000;
  margin-bottom: 0px;
}
.sub1_section3__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color:#000;
}
.sub1_section3__divider {
  width: 2px;
  height: 40px;
  background: #333;
  margin: 0 auto 40px;
}

/* ② Description */
.sub1_section3__desc p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #444;
}
.sub1_section3__desc strong {
  color: #ff6b95;
}

/* ③ Gallery */
.sub1_section3__gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

/* 각 이미지 컨테이너 */
.sub1_section3__image {
  flex: 0 0 414px; /* 필요에 따라 조절 */
  overflow: hidden;
  position: relative;
}

/* 첫번째: 오른쪽만 둥글게 */
.sub1_section3__image:nth-child(1) img {
  width: 100%;
  border-radius: 0 40px 40px 0;
  display: block;
}

/* 두번째: 완전 원형 */
.sub1_section3__image:nth-child(2) img {
  width: 100%;
  border-radius: 50%;
  display: block;
}

/* 세번째: 왼쪽만 둥글게 */
.sub1_section3__image:nth-child(3) img {
  width: 100%;
  border-radius: 40px 0 0 40px;
  display: block;
}

/* ─── Sub1 Section4: 위치소개 ─── */
.sub1_section4 {
  background: #fff;
  padding: 120px 20px;
  text-align: center;
  color: #333;
}
.sub1_section4__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* 헤더 */
.sub1_section4__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}
.sub1_section4__divider {
  width: 2px;
  height: 40px;
  background: #333;
  margin: 0 auto 60px;
}

/* 콘텐츠 레이아웃 */
.sub1_section4__content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* (A) 지도 */
.sub1_section4__map {
  flex: 1;
  height: 480px; /* 높이 조절 가능 */
  border-radius: 12px;
  overflow: hidden;
}

/* (B) 정보 */
.sub1_section4__info {
  flex: 1;
  text-align: left;
}

/* 정보 블록 */
.sub1_section4__block {
  margin-bottom: 32px;
}
.sub1_section4__label {
  display: block;
  font-size: 20px;
  color: #ff6b95;
  margin-bottom: 8px;
  font-weight: 600;
}
.sub1_section4__text,
.sub1_section4__hours {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}
.sub1_section4__phone {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

/* 카카오톡 버튼 */
.sub1_section4__cta {
  margin-top: 20px;
}
.sub1_section4__kakao {
  display: inline-flex;
  align-items: center;
  background: #fee500;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #333;
  font-size:18px;
}
.sub1_section4__kakao img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}


/* ─── 첫 번째 섹션 (.section-first) ─── */
.section-first-sig {
  /* 전체 섹션 배경 이미지 */
  background: url('/img/repink-bg-sig.jpg') no-repeat center top;
  height:1240px;
}

/* ─── 첫 번째 섹션 (.section-first) ─── */
.section-first-upper {
  /* 전체 섹션 배경 이미지 */
  background: url('/img/repink-bg-upper.jpg') no-repeat center top;
  height:1225px;
}

/* ─── 첫 번째 섹션 (.section-first) ─── */
.section-first-lower {
  /* 전체 섹션 배경 이미지 */
  background: url('/img/repink-bg-lower.jpg') no-repeat center top;
  height:1290px;
}


/* active 상태 */
.gnb-list .gnb_on {
  color: #ff6b95;
  font-weight: 600;
  border-bottom: 2px solid #ff6b95;
}