@charset "UTF-8";

/* ==========================================================================
   Sub visual
   ========================================================================== */

.sub-visual {
    --sub-visual-height: 550px;
    --sub-visual-text: #292b2f;
    --sub-visual-home-bg: rgba(128, 134, 145, 0.82);
    --sub-visual-home-color: #ffffff;
    --sub-visual-position: 50% 50%;
    --sub-visual-position-mobile: var(--sub-visual-position);

    position: relative;
    width: 100%;
    height: var(--sub-visual-height);
    overflow: hidden;
    background-color: #e8d4d7;
    color: var(--sub-visual-text);
    isolation: isolate;
    overflow: visible;

    background-color: #e8d4d7;
    color: var(--sub-visual-text);
    isolation: isolate;
}

.sub-visual--dark {
    --sub-visual-text: #292b2f;
    --sub-visual-home-bg: rgba(128, 134, 145, 0.82);
    --sub-visual-home-color: #ffffff;
}

.sub-visual--light {
    --sub-visual-text: #ffffff;
    --sub-visual-home-bg: rgba(255, 255, 255, 0.22);
    --sub-visual-home-color: #ffffff;
}

.sub-visual__media {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sub-visual__picture {
    display: block;
    width: 100%;
    height: 100%;
}

.sub-visual__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--sub-visual-position);
}

/*
 * 이미지 위 텍스트의 가독성을 보완하는 레이어입니다.
 * 사진 자체의 밝기가 적당하다면 opacity 값을 더 낮춰도 됩니다.
 */
.sub-visual__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.sub-visual--dark .sub-visual__overlay {
    background:
        radial-gradient(
            circle at 50% 47%,
            rgba(255, 255, 255, 0.14) 0,
            rgba(255, 255, 255, 0.05) 31%,
            rgba(255, 255, 255, 0) 62%
        );
}

.sub-visual--light .sub-visual__overlay {
    background: rgba(18, 20, 25, 0.3);
}

.sub-visual__inner {
    position: relative;
    z-index: 2;
    width: min(100% - 80px, 1400px);
    height: 100%;
    margin: 0 auto;
}

.sub-visual__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-top: 6px;
    text-align: center;    
    position: relative;
    z-index: 2;
}

.sub-visual__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: var(--sub-visual-text);
    font-family: "Pretendard", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;    
    position: relative;
    z-index: 10;
}

.sub-visual__home {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-right: 27px;
    border-radius: 50%;
    background-color: var(--sub-visual-home-bg);
    color: var(--sub-visual-home-color);
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.sub-visual__home:hover {
    background-color: rgba(100, 106, 117, 0.95);
    transform: translateY(-2px);
}

.sub-visual--light .sub-visual__home:hover {
    background-color: rgba(255, 255, 255, 0.32);
}

.sub-visual__category {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sub-visual__category:hover {
    opacity: 0.65;
}

.sub-visual__separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 31px;
    opacity: 0.8;
}

.sub-visual__dropdown {
    position: relative;
    z-index: 50;
}

.sub-visual__current {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.sub-visual__current-arrow {
    flex: 0 0 auto;
    transition: transform 0.25s ease;
}

.sub-visual__dropdown.is-open .sub-visual__current-arrow {
    transform: rotate(180deg);
}

.sub-visual__current-text {
    font-weight: 700;
}

.sub-visual__dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    z-index: 100;
    width: 180px;
    margin: 0;
    padding: 6px;
    border: 1px solid rgba(38, 40, 44, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 15px 35px rgba(26, 29, 35, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -5px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;        
    max-height: min(520px, calc(100vh - 160px));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;    
}

.sub-visual__dropdown.is-open .sub-visual__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.sub-visual__dropdown-item {
    margin: 0;
    padding: 0;
}

.sub-visual__dropdown-link {
    display: block;
    padding: 10px 12px;
    border-radius: 5px;
    color: #46484d;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.sub-visual__dropdown-link:hover,
.sub-visual__dropdown-link:focus-visible,
.sub-visual__dropdown-link.is-current {
    background-color: #f2f0ed;
    color: #b58a45;
}

.sub-visual__title {
    margin: 27px 0 0;
    color: var(--sub-visual-text);
    font-family: "Pretendard", sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.055em;
    word-break: keep-all;
}

.sub-visual a:focus-visible,
.sub-visual button:focus-visible {
    outline: 3px solid rgba(197, 151, 75, 0.75);
    outline-offset: 4px;
}







/*---------------
	SUB Contents
------------*/
.section-padding { padding: 100px 0; }
.bg-gray { background-color: #f9f9f9; }
.inner_sub {
            max-width: 1400px; /* 1920px 기준 콘텐츠 영역 1400px */
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
/* 1. Description Section */
.desc-sec .title-area { margin-bottom: 40px; }
.desc-sec h2 { font-size: 40px; font-weight: 700; margin-bottom: 10px; color:var(--text);}
.desc-sec p.sub-title { font-size: 40px; color:var(--text); }
.desc-sec .img-box { 
    width: 100%; 
    border-radius: 20px; 
    overflow: hidden; 
    margin-bottom: 30px;
    background-color: #e2e2e2;
    height: 400px; /* 임시 높이 (실제 이미지 삽입 시 height auto 권장) */
}
.desc-sec .desc-text { 
	font-size: 18px;
	font-weight:500; 
	color:var(--text); 
	line-height:1.5;
	}

/* 2. Causes Section */
.causes-wrap { display: flex; gap: 50px; flex-wrap: wrap; }
.causes-left { flex: 0 0 300px; }
.causes-left h3 { font-size: 40px; font-weight: 700; line-height: 1.4; color:var(--text);}
.causes-right { flex: 1; }

.causes-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px;
}
.cause-item {
    height: 320px;
    padding: 20px 20px;
    text-align: center;
    border: 1px solid #c6a66a;
    border-radius: 12px;
}
.cause-item .material-symbols-outlined { 
    font-size: 90px; 
    color: #c6a66a; 
    margin-bottom: 25px;
    margin-top: 30px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48; 
}
.cause-item .icon { width: 90px; height: 90px; margin: 25px auto 30px auto; }
.cause-item h4 { font-size: 20px; margin-bottom: 20px; color:var(--text); font-weight:600;}
.cause-item p { font-size: 16px;  color:var(--text); font-weight:400; line-height:1.8;}

/* 3. Treatment Section */
.treat-sec { text-align: center; }
.treat-sec h3 { font-size: 40px; font-weight: 700; margin-bottom: 50px; color:var(--text); }

.treat-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;    
}
.treat-item .img-box {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f1f2f5;
    aspect-ratio: 4/5; 
}
.treat-item .img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.35s ease;
}
.treat-item .img-box img:hover,
.treat-item .img-box a img:hover{ 
    transform: scale(1.045);
}   
.treat-item h4 { 
    font-family:var(--font-serif);
    font-size: 22px; 
    font-weight:600;
    color:var(--point);
    margin-bottom: 20px; 
    text-align: center;     
}
.treat-item p { 
    width:85%;
    font-size: 16px; 
    font-weight:500; 
    color:var(--text); 
    text-align: center; 
    line-height:1.6; 
    margin:0 auto;
}

/* =========================================
   이미지 없는 텍스트형 치료 방법 (4단 배열)
========================================= */
.treat-text-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px; /* 위쪽 이미지 리스트와의 간격 */
    padding: 0;
    list-style: none;
}

.treat-text-item {
    border: 1px solid #e2d3b5; /* 시안의 옅은 골드색 테두리 */
    border-radius: 12px;
    padding: 40px 25px;
    background-color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

.treat-text-item:hover {
    border-color: var(--point);
    box-shadow: 0 10px 30px rgba(198, 166, 106, 0.15);
    transform: translateY(-5px);
}

.treat-text-item h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--point);
    margin-bottom: 20px;
    letter-spacing: -0.05em;
}

.treat-text-item p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    word-break: keep-all;
}

/* 4. YouTube Section */
.youtube-sec { overflow: hidden; }
.youtube-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.youtube-header h3 { 
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text);
    font-size: 58px;
    font-weight: 500;
    font-family:var(--font-serif);
    line-height: 1;
    letter-spacing: -0.045em;
}

.youtube-header .yt-icon {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 48px;
    border-radius: 14px;
    background: #FF0000;
    flex: 0 0 auto;
}
.youtube-header .yt-icon::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 19px solid #fff;
}

.youtube-header .btn-channel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 50px;
    border: 1px solid #C6A66A;
    border-radius: 999px;
    color: #C6A66A;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    transition: background-color 0.25s ease, color 0.25s ease;
}
.youtube-header .btn-channel:hover,
.youtube-header .btn-channel:focus-visible {
    background: #C6A66A;
    color: #fff;
}

/* Swiper Center Mode & 비디오 박스 */
.youtube-swiper {
    width: 100%;
    padding: 20px 0;
    position: relative;
}
.youtube-swiper .swiper-wrapper {
    align-items: center;
}
.youtube-swiper .swiper-slide {
    width: 60%; 
    max-width: 800px;
    transition: transform 0.4s ease, opacity 0.4s ease; 
    opacity: 0.4;
    transform: scale(0.85); 
}
.youtube-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1); 
    z-index: 2;
}
.youtube-swiper .video-box {
    background-color: #000;
    border-radius: 20px;
    aspect-ratio: 16/9;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
}
.youtube-swiper .yt-thumb {
    width: 100%; height: 100%; 
    object-fit: cover;
    transition: opacity 0.3s;
}
.youtube-swiper .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.youtube-swiper .play-btn::before {
    content: '';
    display: block;
    border-style: solid;
    border-width: 15px 0 15px 24px;
    border-color: transparent transparent transparent #fff;
    margin-left: 6px; 
}
.youtube-swiper .swiper-slide-active .video-box:hover .play-btn { background: #ff0000; }

.youtube-swiper .video-box iframe { 
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%; 
    border: none;
}
.youtube-swiper .swiper-slide:not(.swiper-slide-active) .video-box {
    pointer-events: none;
}

/* YouTube 커스텀 화살표 */
.youtube-arrow-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;         
    max-width: 800px;   
    z-index: 10;
    pointer-events: none;
}
.youtube-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    border: 1px solid #C6A66A;
    border-radius: 50%;
    background: #fff;
    color: #C6A66A;
    transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
    cursor: pointer;
    pointer-events: auto;
}
.youtube-arrow span {
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}
.youtube-arrow--prev span { transform: translateX(3px) rotate(-45deg); }
.youtube-arrow--next span { transform: translateX(-3px) rotate(135deg); }

.youtube-arrow:hover,
.youtube-arrow:focus-visible {
    background: #C6A66A;
    color: #fff;
}
.youtube-arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.youtube-arrow--prev { left: -70px; }
.youtube-arrow--next { right: -70px; }



/*장비 페이지 서브 스타일*/
/* 공통 섹션 타이틀 */
.sec-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text);
}

/* =========================================
           1. 설명 섹션 (좌 이미지 / 우 텍스트)
========================================= */
.intro-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
}
.intro-left {
    flex: 0 0 45%; /* 왼쪽 이미지 영역 너비 지정 */
    height:700px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f1f2f5; /* 빈 이미지 공간 임시 배경색 */
}
.intro-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.intro-right {
    flex: 1;
}
.intro-right h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--text);
}
.intro-right h2 strong {
    display: block;
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
}
.intro-right p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
}
.intro-right p b{
	font-weight:600;
	}

/* =========================================
   2. 시술 부위 섹션
========================================= */
.area-img-box {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    font-size:16px;
    line-height:1.6;
}
/* 시술 부위 이미지가 들어갈 공간 (임시 최소 높이 적용) */
.area-img-box .placeholder-img {
    width: 100%;
    min-height: 500px;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}
.area-img-box img{
	margin:0 auto;
	}

/* =========================================
   3. 장점 섹션 (1줄 4개 배열)
========================================= */
.adv-list {
    display: grid;
    /* 한 줄에 정확히 4개씩 배치. 갯수가 추가되면 자동으로 다음 줄로 넘어감 */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.adv-item {
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e2d3b5; /* 시안과 유사한 옅은 골드 보더 */
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}
.adv-item:hover {
    border-color: var(--point);
    box-shadow: 0 10px 30px rgba(198, 166, 106, 0.15);
    transform: translateY(-5px);
}
/* 구글 머터리얼 아이콘 */
.adv-item .material-symbols-outlined { 
    font-size: 70px; 
    color: var(--point); 
    margin-bottom: 25px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}
.adv-item .img-icon {
    display: block;
    width: 70px;  
    height: 70px;
    margin: 0 auto 25px auto; 
    object-fit: contain; 
}
.adv-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color:var(--point);
}
.adv-item p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
    word-break: keep-all;
}


.adv-list-3 {
    display: grid;
    /* 한 줄에 정확히 3개씩 배치. 갯수가 추가되면 자동으로 다음 줄로 넘어감 */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   병원 소개 
========================================= */
.intro-vision {
  width: 100%;
  height: 1000px;
  background: url('../images/sub/08_info/01_bg1.jpg') no-repeat center center / cover;
  background-color: #f7f6f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}

.intro-vision .vision-title {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 100px;
  letter-spacing: -0.03em;
}

/* 중앙 세로 라인 (보이지 않던 문제 해결) */
.intro-vision .vision-line {
  display: block; /* 블록 요소로 명시 */
  width: 1px;
  height: 80px; 
 	background-color: var(--text);
  margin: 0 auto 100px auto;
  opacity: 0.4;
  flex-shrink: 0; /* Flex 환경에서 높이가 찌그러져 사라지는 현상 방지 */
}

.intro-vision .vision-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
}

.intro-vision .vision-desc span {
  display: block;
  margin-bottom: 15px;
}

/* =========================================
 2. 하단 병원 소개 섹션
========================================= */
.intro-about {
  width: 100%;
  padding: 140px 20px;
  background-color: #fff;
}

.intro-about .inner {
  max-width: 1200px; 
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.about-text {
  flex: 1;
  text-align: center;
}

.about-text .since {
  display: block;
  font-size: 24px;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.about-text .title {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 80px;
  letter-spacing: -0.05em;
}

/*  사선(대각선) 라인 (보이지 않던 문제 해결) */
.about-text .slash-line {
  display: block; /* 블록 요소로 명시 */
  width: 60px;
  height: 1px;
  background-color: var(--text);
  margin: 0 auto 80px auto;
  transform: rotate(45deg); /* \ 모양 사선으로 회전 */
  opacity: 0.4;
}

.about-text .highlight {
  color: var(--point);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}

.about-text .desc {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}


/* =========================================
   의료진 프로필 영역
========================================= */
.doctor-wrap {
	width:950px;
    margin: 80px auto;
}

/* 탭 버튼 스타일 */
.doctor-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 60px;
    padding: 0;
    list-style: none;
}

.doctor-tabs li {
    flex: 1;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6e6ea; /* 시안의 회색 배경 */
    color: #555;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 활성화된 탭 스타일 (포인트 컬러) */
.doctor-tabs li.active,
.doctor-tabs li:hover {
    background-color: var(--point); /* C6A66A 적용됨 */
    color: #fff;
}

/* 프로필 콘텐츠 공통 */
.doctor-profile {
    display: none; /* 기본적으로 숨김 처리 */
    gap: 80px;
    align-items: flex-start;
    animation: fadeIn 0.4s ease; /* 탭 전환 시 부드럽게 나타나는 효과 */
}

/* 활성화된 프로필만 보이게 함 */
.doctor-profile.active {
    display: flex; 
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 좌측 사진 영역 */
.doc-img {
    flex: 0 0 420px; /* 사진 영역 고정 넓이 */
    border-radius: 16px;
    overflow: hidden;
    background-color: #f1f2f5;
}

.doc-img img {
    width: 100%;
    display: block;
}

/* 우측 텍스트 영역 */
.doc-info {
    flex: 1;
    padding-top: 20px;
}

.doc-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--sub-text); 
    margin-bottom: 12px;
}

.doc-name {
    font-size: 46px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 45px;
    letter-spacing: -0.05em;
}

.doc-name span {
    font-size: 34px;
    font-weight: 400;
}

.doc-history {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-history li {
    font-size: 16px;
    color: #555;
    line-height: 1.3;
    letter-spacing: -0.03em;
    margin-bottom:10px;
}


/* =========================================
   진료시간/문의전화 안내 
========================================= */
.sub-clinic-info {
    position: relative;
    width: 100%;
    height: 800px; 
    padding: 0 20px; 
    box-sizing: border-box; 
    display: flex;
    align-items: center;      /* 세로 중앙 정렬 */
    justify-content: center;  /* 가로 중앙 정렬 */       
    background: url('../images/sub/08_info/03_bg1.jpg') no-repeat center center / cover;
    background-color: #fcfcfc;
}

.sub-clinic-inner {
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 120px; /* 좌우(전화번호-진료시간) 간격 */
}

/* --- 공통 타이틀 스타일 --- */
.contact-title,
.schedule-title {
    color: #666;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: -0.05em;
}

/* --- 좌측: 전화번호 영역 --- */
.sub-clinic-contact {
    display: flex;
    flex-direction: column;
}

.contact-tel {
    color: var(--text, #30323A);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
}

/* --- 우측: 진료시간 영역 --- */
.sub-clinic-schedule {
    display: flex;
    flex-direction: column;
}

.schedule-list {
    display: grid;
    gap: 14px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: center;
    column-gap: 25px;
}

/* 요일 뱃지 (월-금, 토요일) */
.schedule-item dt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 36px;
    padding: 0 15px;
    border-radius: 6px;
    background: var(--point, #C6A66A);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}

/* 시간 텍스트 */
.schedule-item dd {
    color: var(--text, #30323A);
    font-size: 21px;
    font-family: var(--font-serif, "Noto Serif KR", serif);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

/* [점심시간, 휴진] 뱃지 스타일 변경 */
.schedule-item--light dt {
    background: #E7E0D6;
    color: var(--text, #30323A);
}

/* [휴진] 전용 텍스트 스타일 변경 */
.schedule-item--closed dd {
    color: var(--point, #C6A66A);
    font-family: var(--font-sans, "Pretendard", sans-serif);
    font-size: 17px;
    font-weight: 500;
}



/* =========================================
   병원 둘러보기 (Hospital View) Swiper
========================================= */
.hos-view-section {
    position: relative;
    width: 100%;
    padding: 200px 0;
    overflow: hidden; /* 화면 밖으로 나가는 슬라이드 숨김 */
}

.hos-view-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.hos-view-swiper {
    width: 100%;
    overflow: visible; /* 중앙 정렬 시 좌우 슬라이드가 보이도록 허용 */
}

/* 슬라이드 크기 및 기본 상태 (투명도 50%, 흑백) */
.hos-view-swiper .swiper-slide {
    width: 800px;
    height: 530px;
    opacity: 0.3;
    filter: grayscale(100%);
    transition: opacity 0.4s ease, filter 0.4s ease;
    border-radius: 8px;
    overflow: hidden;
}

.hos-view-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 정중앙에 위치한 활성화된 슬라이드 (투명도 100%, 컬러) */
.hos-view-swiper .swiper-slide-active {
    opacity: 1;
    filter: grayscale(0%);
}

/* --- 화살표 네비게이션 (메인 프리미엄 레이저 스타일 재사용) --- */
.hos-view__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    border: 1px solid #C6A66A;
    border-radius: 50%;
    background: #fff;
    color: #C6A66A;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

/* 화살표 위치: 중앙(50%)에서 이미지 절반 넓이(400px) + 여백(50px) 만큼 띄움 */
.hos-view__arrow--prev {
    left: 48%;
    margin-left: -450px; 
}

.hos-view__arrow--next {
    right: 48%;
    margin-right: -450px;
}

.hos-view__arrow span {
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}

.hos-view__arrow--prev span {
    transform: translateX(3px) rotate(-45deg);
}

.hos-view__arrow--next span {
    transform: translateX(-3px) rotate(135deg);
}

.hos-view__arrow:hover,
.hos-view__arrow:focus-visible {
    background: #C6A66A;
    color: #fff;
}

.hos-view__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}


/* =========================================
   오시는 길 (Directions) 영역
========================================= */
.directions-wrap {
    max-width: 1000px;
    margin: 80px auto;
}

/* 카카오맵 반응형 처리 */
.map-box {
    width: 100%;
    margin-bottom: 60px;
    border: 1px solid #ddd;
}
.map-box .root_daum_roughmap {
    width: 100% !important; /* 스크립트에 선언된 1000px 무시하고 반응형 적용 */
}
.map-box .root_daum_roughmap .wrap_map {
    width: 100% !important;
}

/* 탭 버튼 스타일 */
.direction-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    padding: 0;
    list-style: none;
}
.direction-tabs li {
    flex: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e5eb;
    color: #555;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.direction-tabs li.active,
.direction-tabs li:hover {
    background-color: var(--point, #C6A66A);
    color: #fff;
}

/* 탭 상세 내용 공통 */
.tab-pane {
    display: none; /* 기본 숨김 */
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    padding: 20px 40px;
    animation: fadeIn 0.4s ease;
}
.tab-pane.active {
    display: flex; /* 활성화 시 보임 */
}

/* 좌측 구글 아이콘 영역 */
.pane-icon {
    flex: 0 0 100px;
    text-align: center;
    padding-top: 5px;
}
.pane-icon .material-symbols-outlined {
    font-size: 90px;
    color: #333;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}

/* 우측 정보 텍스트 영역 */
.pane-info {
    flex: 1;
}

.pane-info .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pane-info .info-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* 지하철 노선 뱃지 */
.line-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 30px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
}
.bg-green { background-color: #32B44A; }
.bg-red   { background-color: #D4003B; }
.bg-gold  { background-color: #C6A66A; } /* 9호선은 사이트 포인트 컬러 통일 */

/* 버스 색상 사각형 */
.bus-color {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 15px;
}
.bc-blue   { background-color: #3E5C9A; }
.bc-green  { background-color: #327E46; }
.bc-yellow { background-color: #F2B70A; }
.bc-red    { background-color: #E60012; }

/* 자가용 텍스트 구조 */
.car-route {
    margin-bottom: 30px;
}
.car-route:last-child {
    margin-bottom: 0;
}
.route-title {
    color: #3A4B86; /* 시안의 짙은 네이비블루 톤 */
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}
.car-route p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    word-break: keep-all;
}



/* =========================================
   메디컬 스킨케어 시술 대상
========================================= */
.target-sec {
    width: 100%;
}
.target-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
}
.target-img-box {
    flex: 0 0 45%; /* 왼쪽 이미지 영역 비율 지정 */
    border-radius: 20px;
    overflow: hidden;
}
.target-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.target-content {
    flex: 1;
}
.target-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 40px;
    letter-spacing: -0.03em;
}

/* 타 페이지 재사용 가능한 리스트 모듈 */
.target-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.target-list li {
    background-color: #f9f9f9;
    border-radius: 50px;
    padding: 18px 30px;
    font-size: 17px;
    color: var(--text);
    font-weight: 400;
    /*display: flex;
    align-items: center;*/
    letter-spacing: -0.02em;
    line-height:1.3;
    transition: background-color 0.3s ease;
}
.target-list li:hover {
    background-color: #f0f0f0;
}

.target-list li b{
	font-weight:700
	}
	
.target-list_wh {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.target-list_wh li {
    background-color: #fff;
    border-radius: 50px;
    border:1px solid #C6A66A;
    padding: 18px 30px;
    font-size: 17px;
    color: var(--text);
    font-weight: 400;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    line-height:1.5;
    transition: background-color 0.3s ease;
}
.target-list_wh li:hover {
    background-color: #f0f0f0;
}
.target-list_wh li b{
	font-weight:700
	}	
	
	
.pre-check-sec {
    padding-top: 0; /* 윗 섹션과 자연스럽게 연결하기 위함 */
}
.pre-check-wrap {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f4eee6; /* 베이지 배경색 */
    border-radius: 12px;
    padding: 65px 80px;
    box-sizing: border-box;
}

/* 상단 타이틀 영역 */
.pre-check-header {
    margin-bottom: 45px;
}
.pre-check-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.check-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.pre-check-title-row h3 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.04em;
    line-height: 1.2;
}
.pre-check-subtitle {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    /* 체크 아이콘(44px) + gap(15px) 넓이만큼 띄워서 글자 라인 맞춤 */
    margin-left: 59px; 
    word-break: keep-all;
    letter-spacing: -0.02em;
}

/* 하단 2단 버튼 형태 리스트 영역 */
.pre-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.pre-check-list li {
    background-color: #ffffff;
    border-radius: 50px; /* 둥근 알약 형태 */
    padding: 22px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    word-break: keep-all;
}


/* =========================================
   레이저 장비 포인트 리스트 (pre-check-wrap 내부 활용)
========================================= */
.point-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.point-list li {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 100px; /* 시안처럼 둥근 알약 형태 */
    padding: 30px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.point-list .pt-title {
    flex: 0 0 240px;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    text-align: center;
    border-right: 1px solid #e0e0e0; /* 제목과 내용 사이의 세로 구분선 */
    padding-right: 30px;
    margin-right: 30px;
    line-height: 1.4;
}

.point-list .pt-desc {
    flex: 1;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    word-break: keep-all;
}


/* =========================================
   필링 종류 섹션 (width 1400px)
========================================= */
.peel-type-sec { width: 100%; }

.peel-type-item {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 80px;
}
.peel-type-item:last-child {
    margin-bottom: 0;
}
/* 두 번째 아이템 좌우 반전 (PC/태블릿) */
.peel-type-item.reverse {
    flex-direction: row-reverse;
}

/* 이미지 영역 */
.peel-img-box {
    flex: 0 0 50%;
    border-radius: 16px; /* 서브 디자인 테마에 맞춘 둥근 모서리 */
    overflow: hidden;
    background-color: #f8f8f8;
}
.peel-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 텍스트 영역 */
.peel-text-box {
    flex: 1;
}
.peel-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}
.peel-desc {
    font-size: 18px;
    color: #30323A;
    line-height: 1.6;
    margin-bottom: 30px;
    word-break: keep-all;
}
.peel-desc span{
	display:block;
	font-size:14px;
	color:#555;
	}
.peel-desc b{
	font-weight:600;
	}	
	
.peel-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.peel-list li {
    position: relative;
    padding-left: 14px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    word-break: keep-all;
}
.peel-list li b{
	font-weight:600;
	}
.peel-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    background-color: #222;
    border-radius: 50%;
}


/* =========================================
   시술 과정 스와이퍼 (980x600 사이즈 대응)
========================================= */
.step-sec { width: 100%; }

.step-slider-wrap {
    position: relative;
    max-width: 1140px; /* 슬라이더(980) + 양옆 화살표 여백(80*2) */
    margin: 0 auto;
    padding: 0 80px; 
}

/* 스와이퍼 컨테이너 (최대 980px) */
.step-swiper {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    aspect-ratio: 98 / 60; /* 980x600 비율 유지 */
    border-radius: 12px;
    overflow: hidden;
    background-color: #f1f2f5;
}

/* 이미지 박스 */
.step-img-box {
    position: relative;
    width: 100%;
    height: 100%;
}
.step-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 하단 스텝 텍스트 오버레이 */
.step-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.65); /* 반투명 흰색 바 */
    padding: 22px 40px;
    font-size: 20px;
    color: #222;
    text-align: left;
    backdrop-filter: blur(2px); /* 가독성을 위한 약간의 블러 */
}
.step-text strong {
    font-weight: 700;
    margin-right: 10px;
    font-family: Tahoma, sans-serif;
}

/* 좌우 화살표 (원형 테두리) */
.step-slider-wrap .step-prev,
.step-slider-wrap .step-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 1px solid #C6A66A;
    border-radius: 50%;
    background: #fff;
    color: #C6A66A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.step-slider-wrap .step-prev:hover,
.step-slider-wrap .step-next:hover {
    background: #C6A66A;
    color: #fff;
}
.step-slider-wrap .step-prev { left: 0; }
.step-slider-wrap .step-next { right: 0; }

/* CSS로 화살표 아이콘 그리기 */
.step-slider-wrap .step-prev::after,
.step-slider-wrap .step-next::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}
.step-slider-wrap .step-prev::after { transform: translateX(3px) rotate(-45deg); }
.step-slider-wrap .step-next::after { transform: translateX(-3px) rotate(135deg); }
.step-slider-wrap .swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.benefit-sec {
    width: 100%;
    background-color: #f7f7f9; /* 요청하신 배경 컬러 */
}

.benefit-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #c6a66a; /* 요청하신 원 컬러 */
    color: #ffffff;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.03em;
    text-align: center;
    word-break: keep-all;
    box-shadow: 0 10px 20px rgba(198, 166, 106, 0.15); /* 부드러운 그림자 추가 */
    transition: transform 0.3s ease;
}

.benefit-list li:hover {
    transform: translateY(-5px); /* 호버 시 위로 살짝 뜨는 효과 */
}


.darkcircle-sec {
    width: 100%;
    background-color: #f7f7f9; /* 지정된 배경 컬러 */
    color: #30323A; /* 지정된 폰트 컬러 */
}

/* 탭 버튼 스타일 */
.darkcircle-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.darkcircle-tabs li {
    flex: 1;
    max-width: 320px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e5eb; /* 지정된 탭 기본 컬러 */
    color: #30323A;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.darkcircle-tabs li.active,
.darkcircle-tabs li:hover {
    background-color: #C6A66A; /* 지정된 탭 호버/활성 컬러 */
    color: #ffffff;
}

/* 탭 내용 영역 */
.darkcircle-contents .tab-pane {
    display: none; /* 기본 숨김 */
    animation: fadeIn 0.4s ease; /* 전환 효과 */
}
.darkcircle-contents .tab-pane.active {
    display: block; /* 활성화 시 보임 */
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.darkcircle-contents .tab-desc {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* 치료법 카드 레이아웃 */
.treatment-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.treatment-cards .card {
    /* 3개일 땐 3등분, 2개일 땐 적절한 고정 최대폭을 가짐 */
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 420px; 
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.treatment-cards .card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #30323A;
}
.treatment-cards .card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    word-break: keep-all;
}

/* =========================================
   더블타이트 페이지 공통 및 모듈
========================================= */

/* 중앙 정렬 이미지 박스 */
.img-center-box {
    text-align: center;
    margin: 0 auto;
}
.img-center-box img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* 시술 원리 하단 설명 */
.principle-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: 25px;
    line-height: 1.6;
    word-break: keep-all;
}

/* =========================================
   장비 비교 테이블
========================================= */
.compare-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    min-width: 600px;
    background: #fff;
}
.compare-table th,
.compare-table td {
    padding: 22px 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: var(--text);
    vertical-align: middle;
}
.compare-table th {
    background: #fdfdfd;
    font-weight: 600;
    border-top: 2px solid #333;
}

/* 하이라이트 열(더블타이트) */
.compare-table th.highlight {
    background: var(--point);
    color: #fff;
    border-top: 2px solid var(--point);
    border-left: 2px solid var(--point);
    border-right: 2px solid var(--point);
}
.compare-table td.highlight {
    background: #fff;
    font-weight: 700;
    color: var(--point);
    border-left: 2px solid var(--point);
    border-right: 2px solid var(--point);
}
.compare-table tr:last-child td.highlight {
    border-bottom: 2px solid var(--point);
}

/* =========================================
   시술 주기 (Info)
========================================= */
.info-flex-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}
.info-text-area { flex: 1; }
.info-dl { display: flex; flex-direction: column; gap: 25px; }
.info-dl .item { display: flex; align-items: flex-start; gap: 20px; }
.info-dl dt {
    flex: 0 0 110px;
    background: var(--point);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 30px;
    font-weight: 500;
    font-size: 18px;
}
.info-dl dd {
    flex: 1;
    font-size: 18px;
    color: var(--text);
    line-height: 1.6;
    padding-top: 8px;
    word-break: keep-all;
}
.info-img-area { flex: 0 0 350px; text-align: center; }
.info-img-area img { max-width: 100%; }

/* =========================================
   시술 장점 (Pill List)
========================================= */
.adv-pill-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.adv-pill-list li {
    background: #fff;
    border-radius: 50px;
    padding: 20px 30px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.adv-pill-list li.gray{
	background: #F1F2F5;
	}



/* =========================================
   문신제거 시술 전후 섹션
========================================= */
.tattoo-case-sec {
    width: 1400px;
    background-color: #f4eee6; /* 시안의 베이지 배경색 */
    overflow: hidden;
    margin:0 auto;
    border-radius:12px;
}

.tattoo-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    width: 100%;
}

/* 1. 좌측 타이틀 영역 */
.tattoo-title-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}
.tattoo-title-area .check-icon {
    color: #e64036;
    font-size: 38px;
    font-weight: 700;
}
.tattoo-title-area h3 {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.04em;
    margin: 0;
}

/* 2. 중앙 탭 버튼 영역 */
.tattoo-tabs-area {
    flex: 0 0 auto;
    padding-top: 5px; 
    margin-right: 70px;
}
.tattoo-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.tattoo-tabs li {
    width: 130px;
    height: 42px;
    background-color: #d4c5a9; /* 비활성 컬러 */
    color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    font-family: Tahoma, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.tattoo-tabs li.active,
.tattoo-tabs li:hover {
    background-color: var(--point, #C6A66A); /* 활성 포인트 컬러 */
}

/* 3. 우측 슬라이더 콘텐츠 영역 */
.tattoo-content-area {
    flex: 0 0 auto;
}

.tattoo-pane {
    display: none; /* 기본 숨김 */
    animation: fadeIn 0.4s ease;
}
.tattoo-pane.active {
    display: block; /* 활성화 시 보임 */
}

.tattoo-swiper-wrap {
    position: relative;
    width: 480px; /* 고정 넓이 */
}

/* 480px 정사각형 이미지 영역 */
.tattoo-swiper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 8px; /* 모서리 살짝 둥글게 (디자인 취향에 따라 제거 가능) */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tattoo-swiper .img-box {
    width: 100%;
    height: 100%;
}
.tattoo-swiper .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 좌우 화살표 */
.tattoo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid var(--point, #C6A66A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

/* 시안의 오른쪽 채워진 원, 왼쪽 빈 원 스타일 반영 */
.tattoo-prev {
    left: -80px; /* 사진 바깥으로 위치 */
    background: transparent;
    color: var(--point, #C6A66A);
}
.tattoo-next {
    right: -80px; /* 사진 바깥으로 위치 */
    background: var(--point, #C6A66A);
    color: #fff;
}
.tattoo-prev:hover {
    background: var(--point, #C6A66A);
    color: #fff;
}
.tattoo-next:hover {
    background: #a88a53; /* 호버 시 약간 짙게 */
}

.tattoo-arrow::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}
.tattoo-prev::after { transform: translateX(3px) rotate(-45deg); }
.tattoo-next::after { transform: translateX(-3px) rotate(135deg); }

.tattoo-arrow.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Dash(선) 형태 페이징 */
.tattoo-pagination {
    bottom: -40px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.tattoo-pagination .swiper-pagination-bullet {
    width: 35px;
    height: 6px;
    border-radius: 3px;
    background-color: #fff;
    opacity: 1;
    margin: 0 !important;
    transition: background-color 0.3s;
}
.tattoo-pagination .swiper-pagination-bullet-active {
    background-color: var(--point, #C6A66A);
}

/* =========================================
   주의사항
========================================= */
.adv-pill-list2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.adv-pill-list2 li {
    background: #F1F2F5;
    border-radius: 50px;
    padding: 20px 30px;
    text-align: left;
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.adv-pill-list2 li.gray{
	background: #DCDDE3;
	}

/* =========================================
   Q&A
========================================= */
.qa-flex-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}
.qa-list-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.qa-item dt {
    display: inline-block;
    background: var(--point);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}
.qa-item dd {
    font-size: 18px;
    color: var(--text);
    line-height: 1.6;
    padding-left: 10px;
    word-break: keep-all;
}
.qa-item dd b{
	font-weight:600;
	}
.qa-img-area { flex: 0 0 250px; text-align: center; }
.qa-img-area img { max-width: 100%; }

/* =========================================
   이미지 없는 Q&A 
========================================= */
.qa-only-wrap {
    max-width: 900px; /* 텍스트만 있을 때 너무 길어지지 않도록 넓이 제한 */
    margin: 0 auto;
}

.qa-only-wrap .qa-list-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* =========================================
   PRP 시술 과정
========================================= */
.prp-swiper-sec {
    width: 100%;
    background-color: #F1F2F5; /* 요청하신 전체 배경 컬러 */
}

.prp-swiper-sec .sec-title {
    color: #30323A; /* 요청하신 타이틀 폰트 컬러 */
}

.prp-slider-wrap {
    position: relative;
    max-width: 840px; /* 슬라이더(680) + 양옆 화살표 여백(80*2) */
    margin: 0 auto;
    padding: 0 80px; 
}

/* 스와이퍼 컨테이너 (최대 680px) */
.prp-swiper {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    aspect-ratio: 68 / 58; /* 680x580 비율 유지 */
    overflow: hidden;
}

/* 이미지 박스 */
.prp-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.prp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 하단 텍스트 오버레이 (C6A66A 컬러의 85% 투명도 적용) */
.prp-step-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(198, 166, 106, 0.85); /* #C6A66A 컬러의 RGBA 값 + 0.85 투명도 */
    padding: 35px 40px;
    color: #fff;
    text-align: left;
}
.prp-step-text strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.prp-step-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    word-break: keep-all;
    margin: 0;
}

/* 좌우 화살표 (원형 테두리) */
.prp-slider-wrap .prp-prev,
.prp-slider-wrap .prp-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 1px solid #C6A66A;
    border-radius: 50%;
    background: #fff;
    color: #C6A66A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.prp-slider-wrap .prp-prev:hover,
.prp-slider-wrap .prp-next:hover {
    background: #C6A66A;
    color: #fff;
}
.prp-slider-wrap .prp-prev { left: 0; }
.prp-slider-wrap .prp-next { right: 0; }

/* CSS로 화살표 아이콘 그리기 */
.prp-slider-wrap .prp-prev::after,
.prp-slider-wrap .prp-next::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}
.prp-slider-wrap .prp-prev::after { transform: translateX(3px) rotate(-45deg); }
.prp-slider-wrap .prp-next::after { transform: translateX(-3px) rotate(135deg); }
.prp-slider-wrap .swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}


/* =========================================
   점/검버섯/반점/모반 섹션
========================================= */
.pigment-sec {
    width: 100%;
}

/* 탭 버튼 영역 */
.pigment-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    padding: 0;
    list-style: none;
}

.pigment-tabs li {
    flex: 1;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f2f5;
    color: var(--text, #30323A);
    border-radius: 6px 6px 0 0; /* 시안처럼 상단 둥글게 */
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pigment-tabs li.active,
.pigment-tabs li:hover {
    background-color: var(--point, #C6A66A);
    color: #ffffff;
}

/* 탭 내용 영역 */
.pigment-contents .tab-pane {
    display: none;
    align-items: flex-start;
    gap: 60px;
    animation: fadeIn 0.4s ease;
}

.pigment-contents .tab-pane.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 왼쪽 사진 영역 */
.pig-img-box {
    flex: 0 0 450px;
    background-color: var(--point, #C6A66A); /* 이미지가 없을 때를 대비한 기본 시안 컬러 */
    aspect-ratio: 4 / 3; /* 사진 비율 유지 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pig-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 오른쪽 텍스트 영역 */
.pig-text-box {
    flex: 1;
}

.pig-text-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text, #222);
    margin-bottom: 25px;
    letter-spacing: -0.04em;
}

.pig-text-box p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    word-break: keep-all;
    letter-spacing: -0.03em;
}
.pig-text-box p b {
		font-size:18px;
    font-weight: 600;
    color: var(--point, #C6A66A);
}

/* =========================================
   루눌라레이저 특장점 영역
========================================= */
.lunula-sec {
    width: 100%;
    background-color: #F1F2F5; /* 요청하신 배경 컬러 */
}

.lunula-adv-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px; /* 좌우 리스트와 중앙 이미지 사이 간격 */
    max-width: 1000px;
    margin: 0 auto;
}

/* 원형 리스트 컨테이너 */
.lunula-adv-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 원형 디자인 */
.lunula-adv-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #C6A66A; /* 요청하신 원 컬러 */
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.03em;
    box-shadow: 0 10px 20px rgba(198, 166, 106, 0.15); /* 부드러운 그림자 효과 */
    transition: transform 0.3s ease;
}

.lunula-adv-list li:hover {
    transform: translateY(-5px); /* 마우스 오버 시 위로 살짝 뜨는 효과 */
}

/* 중앙 장비 이미지 */
.lunula-adv-img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
}

.lunula-adv-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   루눌라레이저 시술 대상 영역
========================================= */
.lunula-target-sec {
    width: 100%;
    background-color: #ffffff; /* 흰색 배경 */
}

.lunula-target-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 1줄에 3개씩 배치 */
    gap: 50px 30px; /* 상하 50px, 좌우 30px 간격 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.lunula-target-list li {
    text-align: center;
}

/* 이미지 박스 및 테두리 설정 */
.lunula-target-list .img-box {
    width: 100%;
    aspect-ratio: 16 / 9; /* 시안과 유사한 와이드 비율 적용 */
    border: 1px solid #C6A66A; /* 요청하신 테두리 컬러 */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.lunula-target-list .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease; /* 호버 시 부드러운 전환 효과 */
}

/* 마우스 오버 시 이미지 살짝 확대 효과 (선택 사항) */
.lunula-target-list li:hover .img-box img {
    transform: scale(1.05); 
}

.lunula-target-list .desc {
    font-size: 18px;
    font-weight: 500;
    color: var(--text, #30323A);
    line-height: 1.4;
    word-break: keep-all; /* 단어 단위로 줄바꿈 방지 */
}


.excel-handpiece-wrap {
    text-align: center;
}

.excel-handpiece-wrap .sec-title {
    margin-bottom: 20px;
}

.handpiece-sub-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.handpiece-sub-desc b {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.handpiece-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.handpiece-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 원형 이미지 박스 + 테두리 */
.hp-img-box {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 4px solid var(--point, #C6A66A);
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.hp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.handpiece-list li:hover .hp-img-box img {
    transform: scale(1.05); /* 호버 시 이미지 살짝 확대 */
}

/* 하단 텍스트 영역 */
.hp-text-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--point, #C6A66A);
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.hp-text-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    word-break: keep-all;
}


/* =========================================
   버츄RF 시술 부위 섹션
========================================= */
.virtue-area-sec {
    width: 100%;
    max-width: 1400px; /* 1. 요청하신 전체 넓이 1400px 적용 */
    margin: 0 auto;
}

.virtue-map-img {
    text-align: center;
    margin: 0 auto; /* 상단 이미지 아래의 넓은 공백 제거 */
}
.virtue-map-img img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.virtue-blocks-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 개별 블록 레이아웃 */
.virtue-block {
    display: flex;
    gap: 50px; /* 이미지가 왼쪽으로 붙었으므로 텍스트와의 간격을 조금 더 여유있게 조정 */
    background-color: #F6F4F0; 
    border-radius: 20px;
    padding: 50px 50px 0 0; 
    overflow: hidden;
}

/* 좌측 인물 이미지 */
.vb-img {
    flex: 0 0 330px;
    display: flex;
    align-items: flex-end; /* 이미지를 박스 바닥에 완벽하게 밀착 */
    justify-content: flex-start; /* 💡 center에서 flex-start로 변경하여 왼쪽으로 완전히 밀착 */
}
.vb-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 우측 텍스트 콘텐츠 */
.vb-content {
    flex: 1;
    padding-bottom: 50px; /* 텍스트 콘텐츠 쪽에만 하단 여백을 별도로 부여 */
}

.vb-header {
    margin-bottom: 40px;
}
.vb-header h4 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: #444;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 15px;
}
.vb-header h4 span {
    font-family: var(--font-sans, "Pretendard", sans-serif);
    font-size: 26px;
    font-weight: 700;
    color: #222;
}

.vb-header p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    word-break: keep-all;
}

/* 버츄 올인 전용 서브 정보 */
.vb-sub-info {
    margin-top: 25px;
}
.vb-sub-info h6 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
.vb-sub-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}
.vb-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}
.vb-bullet-list li {
    position: relative;
    padding-left: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 5px;
}
.vb-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #888;
}

/* 시술 대상 영역 */
.vb-target h5 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.vb-target-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vb-target-list li {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    line-height: 1.3;
    box-shadow: 0 3px 10px rgba(0,0,0,0.02);
}


.pig-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

.premium-hair-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* 각 항목 간의 세로 간격 */
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
}

.premium-hair-list li {
    display: flex;
    align-items: center;
    gap: 45px; /* 박스와 텍스트 사이 간격 */
}

/* 좌측 타이틀 박스 */
.ph-title {
    flex: 0 0 240px; /* 고정 넓이 */
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--point, #C6A66A);
    border-radius: 8px; /* 시안처럼 둥근 테두리 */
    color: var(--point, #C6A66A);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    padding: 10px;
    line-height: 1.3;
}

/* 우측 텍스트 영역 */
.ph-desc {
    flex: 1;
    font-size: 16px;
    color: #30323A;
    line-height: 1.7;
    word-break: keep-all; /* 단어 단위로 줄바꿈 유지 */
}



/* =========================================
   줄기세포 IV 시술 순서 (가로 4단 스텝)
========================================= */
.stemcell-step-sec {
    width: 100%;
    background-color: #F1F2F5; /* 요청하신 100% 배경 컬러 */
}

.stemcell-step-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* 박스와 화살표 사이 간격 */
    max-width: 1200px;
    margin: 0 auto;
}

/* 개별 스텝 박스 */
.stemcell-step-wrap .step-box {
    flex: 1;
    background-color: transparent; /* 배경색과 동일하게 투명 처리 */
    border: 1px solid var(--point, #C6A66A);
    border-radius: 12px;
    padding: 45px 15px;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stemcell-step-wrap .step-box:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
}

.stemcell-step-wrap .step-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--point, #C6A66A);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.stemcell-step-wrap .step-box p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    word-break: keep-all;
}

/* 화살표 아이콘 */
.stemcell-step-wrap .step-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--point, #C6A66A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--point, #C6A66A);
    background-color: transparent;
    background-image:url(../images/common/arrow_forward_ios.png);
    background-repeat:no-repeat;
    background-position:center center;
}

.stemcell-step-wrap .step-arrow .material-symbols-outlined {
    font-size: 20px;
    margin-left: 2px; /* 아이콘 시각적 중앙 보정 */
    font-variation-settings: 'wght' 300;
}

/* =========================================
   줄기세포 IV 시술 효과 (좌 이미지 / 우 텍스트)
========================================= */
.stemcell-effect-sec {
    width: 100%;
    background-color: #ffffff;
}

.effect-wrap {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
}

/* 좌측 이미지 영역 */
.effect-img {
    flex: 0 0 45%; /* 이미지 영역 비율 */
    border-radius: 20px;
    overflow: hidden;
    background-color: #f4f4f4;
}

.effect-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 우측 텍스트 영역 */
.effect-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px; /* 각 블록 사이 간격 */
    padding-top: 10px;
}

.effect-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 둥근 골드 뱃지 */
.effect-badge {
    display: inline-block;
    background-color: var(--point, #C6A66A);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

/* 세부 항목 (소제목 + 설명) */
.effect-item {
    margin-bottom: 20px;
}

.effect-item:last-child {
    margin-bottom: 0;
}

.effect-item h5 {
    color: var(--point, #C6A66A);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

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



/* =========================================
   아그네스 이중턱 시술원리
========================================= */
.agnes-principle-sec {
    width: 100%;
    background-color: #F8F6F2; /* 시안과 유사한 부드러운 베이지 배경 */
}

/* 타이틀 */
.ap-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 45px;
}
.ap-title-wrap .check-icon {
    color: #e64036; /* 빨간색 체크 포인트 */
    font-size: 38px;
    font-weight: 700;
}
.ap-title-wrap h3 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.04em;
    margin: 0;
}

/* 레이아웃 */
.ap-wrap {
    display: flex;
    align-items: center;
    gap: 70px;
    width: 100%;
}

/* 좌측 비디오 영역 (4:3) */
.ap-video-area {
    flex: 0 0 35%; /* 전체의 약 45% 차지 */
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.ap-video-area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 우측 텍스트 영역 */
.ap-text-area {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

/* 장비 배경 이미지 */
.ap-bg-img {
    position: absolute;
    right: -50px;
    bottom: -30px;
    z-index: -1;
    width: 480px;
    pointer-events: none;
}
.ap-bg-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 텍스트 스타일 */
.ap-lead {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
    word-break: keep-all;
    line-height: 1.5;
}

.ap-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ap-list li {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ap-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 36px;
    background-color: var(--point, #C6A66A);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: Tahoma, sans-serif;
    flex-shrink: 0;
}

.ap-list p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin: 0;
    word-break: keep-all;
}


/* =========================================
   아그네스 이중턱 SHORTS 섹션
========================================= */
.shorts-sec {
    width: 100%;
    background-color: #ffffff;
}

.shorts-slider-wrap {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px; /* 좌우 화살표를 위한 여백 */
}

.shorts-swiper {
    width: 100%;
    padding: 20px 0;
}

/* 9:16 쇼츠 비율 박스 */
.shorts-box {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.shorts-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 유튜브 썸네일의 좌우 레터박스를 자연스럽게 잘라줌 */
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.shorts-box:hover .shorts-thumb {
    transform: scale(1.05);
    opacity: 0.7;
}

/* 재생 버튼 디자인 */
.shorts-play-btn {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px; 
    height: 65px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: background 0.3s;
}
.shorts-play-btn::after {
    content: '';
    display: block;
    margin-left: 6px;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
}
.shorts-box:hover .shorts-play-btn {
    background: #ff0000; /* 호버 시 유튜브 레드 */
}

/* 클릭 시 추가될 iframe */
.shorts-box iframe {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    border: none;
    background: #000;
}

/* 네비게이션 화살표 */
.shorts-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid var(--point, #C6A66A);
    border-radius: 50%;
    background: #fff;
    color: var(--point, #C6A66A);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}
.shorts-arrow:hover {
    background: var(--point, #C6A66A);
    color: #fff;
}
.shorts-arrow::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}
.shorts-prev { left: 0; }
.shorts-prev::after { transform: translateX(3px) rotate(-45deg); }

.shorts-next { right: 0; }
.shorts-next::after { transform: translateX(-3px) rotate(135deg); }

.shorts-arrow.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.youtube-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 60px; /* 스와이퍼와 버튼 사이 간격 */
}

.btn-youtube-channel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF0000; /* 유튜브 시그니처 레드 */
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-youtube-channel:hover {
    background-color: #cc0000; /* 호버 시 살짝 어두운 붉은색 */
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.3);
}


/* =========================================
   심부피부재생술 POINT (Before/After Slider)
========================================= */
.deep-peeling-sec {
    width: 100%;
    background-color: #ffffff;
}

.dp-wrap {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    width: 100%;
}

/* --- 1. 좌측 비교 슬라이더 영역 --- */
.dp-img-area {
    flex: 0 0 45%; /* 좌측 넓이 지정 */
    max-width: 520px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compare-container {
    position: relative;
    width: 100%;
    /* 업로드하신 이미지 비율(약 3:4)에 맞게 조정. 사진 크기에 따라 auto로 두거나 수정 가능 */
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    background-color: #eee; /* 로딩 전 빈 배경 */
    margin-bottom: 15px; /* 가이드 텍스트와의 간격 */
}

.compare-img-after, 
.compare-img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* 슬라이더 클릭 방해 방지 */
}

/* 비포 이미지는 기본적으로 절반만 보이도록 자름 */
.compare-img-before {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 1;
}

/* 사진을 가르는 구분선 */
.compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 2;
    pointer-events: none;
}

/* 사진 하단의 커스텀 화살표 */
.compare-handle {
    position: absolute;
    bottom: 25px; /* 사진 아래쪽 배치 */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    z-index: 2;
    pointer-events: none;
}

.compare-handle img {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3)); /* 아이콘을 눈에 띄게 그림자 부여 */
}

/* 실제 드래그를 담당하는 투명한 Input Slider */
.compare-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* 시각적으로 완전 숨김 */
    z-index: 3;
    cursor: ew-resize; /* 좌우 드래그 마우스 커서 */
    margin: 0;
}

/* 하단 고정 안내 텍스트 */
.drag-guide {
    font-size: 15px;
    color: #666;
    margin: 0;
    text-align: center;
}


/* --- 2. 우측 텍스트 콘텐츠 영역 --- */
.dp-text-area {
    flex: 1;
    padding-top: 10px;
}

.dp-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
}
.dp-title-wrap .check-icon {
    color: #e64036;
    font-size: 38px;
    font-weight: 700;
}
.dp-title-wrap h3 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.04em;
    margin: 0;
}

.dp-list {
    display: flex;
    flex-direction: column;
    gap: 45px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--point, #C6A66A);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.dp-list p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    word-break: keep-all;
    margin: 0;
}


/* =========================================
   심부피부재생술 비교 (VS)
========================================= */
.dp-compare-sec {
    width: 100%;
    background-color: #ffffff;
}

.dp-compare-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px; /* 양쪽 박스 사이의 간격 */
    width: 100%;
}

.dp-compare-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 둥근 골드 타이틀 박스 */
.dp-comp-title {
    background-color: #C6A66A; /* 기존 포인트 컬러 */
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 24px 0;
    border-radius: 50px;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 15px rgba(198, 166, 106, 0.15);
}

/* 하단 텍스트 리스트 */
.dp-comp-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    padding: 0 10px; /* 타이틀 박스 대비 텍스트 안쪽 여백 */
    margin: 0;
}

.dp-comp-list li {
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    word-break: keep-all; /* 단어 단위로 자연스럽게 줄바꿈 */
}

/* =========================================
   눈밑지방 3단계 MAKE OVER PROGRAM
========================================= */
.eye-program-sec {
    width: 100%;
    background-color: #ffffff;
}

.eye-program-wrap {
    display: flex;
    justify-content: center;
    gap: 40px; /* 카드 사이 간격 */
    max-width: 1200px;
    margin: 0 auto;
}

.ep-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 이미지 영역 */
.ep-img {
    width: 100%;
    aspect-ratio: 3 / 4; /* 시안처럼 세로로 긴 직사각형 비율 */
    border-radius: 16px; /* 둥근 모서리 */
    overflow: hidden;
    background-color: #f1f2f5;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

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

.ep-card:hover .ep-img img {
    transform: scale(1.05); /* 호버 시 이미지 살짝 확대 */
}

/* 알약 형태 타이틀 */
.ep-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--point, #C6A66A);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 20px;
    width: 100%;
    max-width: 280px; /* 타이틀 박스 가로폭 통일 */
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

/* 설명 텍스트 */
.ep-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    word-break: keep-all;
}

/* =========================================
   학회발표 3D 논문 슬라이더 (Coverflow)
========================================= */
.thesis-sec {
    width: 100%;
}

.thesis-swiper {
    width: 100%;
    /* 3D 회전 시 이미지가 잘리지 않도록 위아래 여백을 넉넉히 줍니다 */
    padding: 60px 0; 
}

/* 개별 슬라이드의 가로폭을 요청하신 325px로 강제 고정 */
.thesis-swiper .swiper-slide {
    width: 325px; 
}

/* 논문 카드 디자인 */
.thesis-card {
    background-color: #fff;
    /* 시안처럼 카드가 겹쳤을 때 입체감이 나도록 그림자 효과 부여 */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); 
    border: 1px solid #eaeaea;
}

/* 이미지 영역 (325 x 430) */
.thesis-img {
    width: 325px;
    height: 430px;
    background-color: #fff;
}

.thesis-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 하단 텍스트 영역 (시안의 흰색 박스 부분) */
.thesis-info {
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid #f1f2f5;
}

.thesis-info .date {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

.thesis-info .title {
    font-size: 17px;
    color: #222;
    line-height: 1.5;
    word-break: keep-all;
    font-weight: 500;
}



.surgery-info-sec {
    width: 100%;
    background-color: #ffffff;
}

.surgery-info-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.si-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px 20px;
    border: 1px solid var(--point, #C6A66A);
    border-radius: 12px;
    background-color: #fff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.si-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(198, 166, 106, 0.15);
}

.si-icon {
    font-size: 60px;
    color: #C6A66A; /* 구글 아이콘 기본 컬러 */
    margin-bottom: 25px;
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 45; /* 아이콘 두께 얇게 조정 */
}
.si-card img.si_iconimg{
	display: block;
    width: 60px;  
    height: 60px;
    margin: 0 auto 25px auto; 
    object-fit: contain; 
	}
.si-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--point, #C6A66A);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.si-value {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.02em;
    word-break: keep-all;
    margin: 0;
}

.surgery-step-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 50px auto; /* 하단 수술 정보 카드와의 간격을 위해 50px 띄움 */
}

.ss-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ss-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    background-color: #f1f2f5;
}

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

.ss-text {
    font-size: 16px;
    color: #222;
    font-weight: 500;
    line-height: 1.4;
    word-break: keep-all;
    margin: 0;
}

.eye-compare-sec {
    width: 100%;
    background-color: #ffffff;
}

.ec-wrap {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 35px; /* 상단 뱃지가 반쯤 걸치기 위한 여유 공간 */
}

/* 상단 골드 뱃지 */
.ec-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--point, #C6A66A);
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    padding: 16px 60px;
    border-radius: 50px;
    white-space: nowrap;
    z-index: 2;
    letter-spacing: -0.03em;
    box-shadow: 0 10px 20px rgba(198, 166, 106, 0.15);
}

/* 회색 배경 박스 */
.ec-box {
    display: flex;
    background-color: #F4F4F6;
    border-radius: 20px;
    padding: 90px 60px 70px; /* 상단 뱃지를 고려해 윗쪽 패딩을 넓게 줌 */
    position: relative;
    z-index: 1;
}

/* 좌우측 개별 단단 */
.ec-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ec-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: -0.02em;
}

.ec-desc p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
    word-break: keep-all;
}

.ec-desc p:last-child {
    margin-bottom: 0;
}

/* 중앙 세로선 */
.ec-divider {
    width: 1px;
    background-color: var(--point, #C6A66A);
    opacity: 0.5;
    margin: 0 50px;
}


.association-sec {
    width: 100%;
    background-color: #ffffff;
}

.assoc-top-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 520px;
    border-radius: 20px;
    background-color: #f7f7f9; /* 배경 이미지 우측으로 이어지는 기본 배경색 */
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 80px;
    margin-bottom: 20px;
    overflow: hidden;
}

/* 배경 이미지와 우측 텍스트 사이를 자연스럽게 이어주는 그라데이션 효과 */
.assoc-top-wrap::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to right, rgba(247,247,249,0) 30%, rgba(247,247,249,1) 65%);
    z-index: 1;
}

.assoc-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    text-align: center;
}

.assoc-eyebrow {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.assoc-title {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 35px;
    letter-spacing: -0.04em;
}

.assoc-desc p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    word-break: keep-all;
}
.assoc-desc p strong {
    color: #222;
    font-weight: 700;
}

.btn-assoc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--point, #C6A66A);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(198, 166, 106, 0.2);
}
.btn-assoc:hover {
    background-color: #a88a53;
    transform: translateY(-3px);
}

/* 하단 세미나 카드 영역 */
.assoc-bottom-wrap {
    display: flex;
    gap: 20px;
    width: 100%;
}

.seminar-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--point, #C6A66A);
    border-radius: 16px;
    padding: 30px 25px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 시안처럼 짝수번째 카드의 배경색을 미세하게 다르게 주어 시각적 입체감 부여 */
.seminar-card:nth-child(even) {
    background-color: #bfa063; 
}

.seminar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(198, 166, 106, 0.3);
}

.sm-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.sm-text p {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}

.sm-view {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #fff;
    color: var(--point, #C6A66A);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================================
   학회/학술발표 배너
========================================= */
.thesis-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    border: 1px solid var(--point, #C6A66A);
    border-radius: 12px;
    background-color: #fff;
    margin: 0 auto;
}

.tb-text p {
    font-size: 20px;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}

.tb-text h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--point, #C6A66A);
    margin: 0;
    letter-spacing: -0.04em;
}

.btn-thesis-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background-color: var(--point, #C6A66A);
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-thesis-more:hover {
    background-color: #b3955e;
}

/* =========================================
   학회/학술발표 레이어 팝업
========================================= */
.thesis-popup-wrap {
    display: none; /* 기본 숨김 */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
}

/* 어두운 배경 */
.tp-dim {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

/* 팝업 본문 박스 */
.tp-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* 화면 높이의 85%까지만 커지고 그 이상은 스크롤 */
    max-height: 85vh; 
}

/* 팝업 헤더 */
.tp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
}

.tp-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.tp-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tp-close .material-symbols-outlined {
    font-size: 30px;
}

/* 팝업 내부 스크롤 콘텐츠 */
.tp-content {
    padding: 40px;
    overflow-y: auto; /* 내용이 길면 세로 스크롤 생성 */
}

.tp-section {
    margin-bottom: 50px;
}
.tp-section:last-child {
    margin-bottom: 0;
}

/* 골드 라운드 뱃지 타이틀 */
.tp-badge {
    display: inline-block;
    background-color: var(--point, #C6A66A);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* 리스트 스타일 1: 넘버링 (주요논문) */
.tp-list-num {
    list-style: none;
    padding: 0 10px;
    margin: 0;
}
.tp-list-num li {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    word-break: keep-all;
}

/* 리스트 스타일 2: 그리드 분할 (학술활동, 강의) */
.tp-list-grid {
    list-style: none;
    padding: 0 10px;
    margin: 0;
}
.tp-list-grid li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f2f5;
}
.tp-list-grid li:last-child {
    border-bottom: none;
}
.tp-list-grid .date {
    flex: 0 0 170px; /* 날짜/연도 고정폭 확보 */
    font-size: 15px;
    font-weight: 500;
    color: #444;
    letter-spacing: -0.02em;
}
.tp-list-grid .desc {
    flex: 1;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    word-break: keep-all;
}




/* =========================================
   외국어
========================================= */

.lang-cn body,
.lang-cn #main,
.lang-cn .sec-title,
.lang-cn .vision-title {
    font-family: 'Noto Sans SC', sans-serif !important;
}
.lang-jp body,
.lang-cn #main,
.lang-jp .sec-title,
.lang-jp .vision-title {
    font-family: 'Noto Sans JP', sans-serif !important;
}

/* 기존 .sub-visual_lang에 flex 속성과 z-index를 추가하여 정렬 및 겹침 처리 */
.sub-visual_lang {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #e8d4d7;
    background-position: 50% 50%;
    background-image: url('../images/sub/08_info/info_header.jpg');
    background-size: cover;
    color: var(--sub-visual-text);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* 메뉴가 영역 밖으로 걸칠 수 있도록 필수 설정[cite: 17] */
    z-index: 10; /* 하단 콘텐츠 섹션보다 위에 위치하게 설정 */
}

.sub-visual_lang .lang-title {
    font-size: 54px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.02em;
    margin-top: -25px; /* 메뉴가 아래에 걸치므로 시각적 중앙을 맞추기 위해 타이틀을 살짝 위로 이동 */
}

/* 메뉴 전체를 감싸는 래퍼 (절대 위치로 하단 경계선에 배치) */
.lang-menu-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%); /* 정확히 높이의 절반만큼 아래로 내려서 걸치게 만듦 */
    width: 100%;
    max-width: 1200px;
    z-index: 20;
}

.lang-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap; /* 화면이 좁아질 때 자동으로 줄바꿈 처리 */
}

.lang-menu li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 25px;
    background-color: #f6f6f8; /* 시안의 옅은 회색 배경 */
    color: #222;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* 활성화 탭 및 마우스 호버 시 포인트 컬러 적용 */
.lang-menu li.active a,
.lang-menu li a:hover {
    background-color: var(--point, #C6A66A);
    color: #fff;
}

/* =========================================
   Foreign Customer Services 영역
========================================= */
.foreign-services-sec {
    width: 100%;
    background-color: #ffffff;
}

/* 제목 폰트를 기본 산세리프로 설정 (영문에 어울리도록) */
.foreign-services-sec .sec-title {
    font-family: var(--font-sans, "Pretendard", sans-serif);
    font-size: 42px;
    letter-spacing: -0.02em;
    color: #333;
}

.fcs-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.fcs-list li {
    border: 1px solid #d4c5a9; /* 시안의 부드러운 베이지/골드 보더 */
    border-radius: 12px;
    padding: 40px 50px;
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* 마우스 오버 시 부드럽게 강조되는 효과 (선택 사항) */
.fcs-list li:hover {
    box-shadow: 0 10px 30px rgba(198, 166, 106, 0.15);
    transform: translateY(-3px);
}

.fcs-list h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--point, #C6A66A);
    margin-bottom: 18px;
    line-height: 1.4;
}

.fcs-list p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    word-break: keep-all; /* 영문 단어 단위로 자연스럽게 떨어지도록 유지 */
}

.departments-sec {
    width: 100%;
    background-color: #ffffff;
}

.departments-sec .sec-title {
    font-family: var(--font-sans, "Pretendard", sans-serif);
    font-size: 46px;
    letter-spacing: -0.02em;
    color: #2b2e36;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 700;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px; /* 상하 70px, 좌우 40px 간격 */
    max-width: 1200px;
    margin: 0 auto;
}

.dept-title {
    background-color: var(--point, #C6A66A);
    color: #fff;
    border-radius: 50px;
    padding: 16px 0;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

/* 리스트 공통 스타일 */
.dept-list {
    list-style: none;
    padding: 0 15px;
    margin: 0;
}

.dept-list li {
    position: relative;
    padding-left: 12px;
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 4px;
    word-break: keep-all;
}

/* 불릿 기호 처리 */
.dept-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #555;
}

/* Laser Clinic용 2열 래퍼 */
.dept-list-wrap {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.dept-list-wrap .dept-list {
    flex: 1;
    padding: 0 5px; /* 2열일 때는 내부 여백 최소화 */
}


.programs-sec {
    width: 100%;
    background-color: #ffffff;
}

.programs-sec .sec-title {
    font-family: var(--font-sans, "Pretendard", sans-serif);
    font-size: 46px;
    letter-spacing: -0.02em;
    color: #2b2e36;
    margin-bottom: 70px;
    font-weight: 700;
}

.programs-wrap {
    display: flex;
    flex-direction: column;
    gap: 80px; /* 각 프로그램 간의 세로 간격 */
    max-width: 1200px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 60px; /* 이미지와 텍스트 사이의 가로 간격 */
}

/* 짝수 번째 아이템은 좌우 반전 (텍스트 좌, 이미지 우) */
.program-item.reverse {
    flex-direction: row-reverse;
}

.prog-img {
    flex: 0 0 50%; /* 이미지가 전체 넓이의 50% 차지 */
    border-radius: 12px;
    overflow: hidden;
    background-color: #f1f2f5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.prog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prog-text {
    flex: 1;
}

.prog-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--point, #C6A66A);
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.prog-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    word-break: keep-all;
}

.airport-route-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px; /* 아래 지도와의 간격 */
}

.airport-route {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 둥근 골드색 제목 뱃지 */
.route-badge {
    display: inline-block;
    background-color: var(--point, #C6A66A);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.airport-route p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    word-break: keep-all; /* 단어 단위로 텍스트 끊김 유지 */
}