/* Main Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Dream Orphans", sans-serif;
  overflow-x: hidden;
}

/* 커스텀 스크롤바 스타일 */
::-webkit-scrollbar {
  width: 16px;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  position: relative;
}

/* 점선 효과를 위한 배경 이미지 - 점선 길이 키움 */
::-webkit-scrollbar-track {
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 30%,
      #bad6ff 30%,
      #bad6ff 70%,
      transparent 70%,
      transparent 100%);
  background-size: 2px 20px;
  background-repeat: repeat-y;
  background-position: center;
}

::-webkit-scrollbar-thumb {
  background: radial-gradient(50% 50% at 50% 50%,
      rgba(255, 255, 255, 1) 0%,
      rgba(186, 214, 255, 1) 100%);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* 000000 10% 투명도 테두리 */
  min-height: 20px;
  border-color: #ffffff;
  box-shadow: 2px 2px 3.1px #00000040;
}

::-webkit-scrollbar-thumb:hover {
  background: radial-gradient(50% 50% at 50% 50%,
      rgba(240, 248, 255, 1) 0%,
      rgba(156, 199, 255, 1) 100%);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  min-height: 20px;
  border-color: #f0f8ff;
  box-shadow: 2px 2px 4px #00000050;
}

::-webkit-scrollbar-corner {
  background: #f0f0f0;
}

::-webkit-scrollbar-button {
  display: none;
}

/* Firefox용 대체 스타일 */
@-moz-document url-prefix() {
  html {
    scrollbar-width: thin;
    scrollbar-color: #bad6ff #f0f0f0;
  }
}

.main-section {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.main-row {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: calc(90vh - 120px);
  margin-top: 120px;
  margin-left: calc(-50vw + 50%);
}

/* 메인 탭*/
.main-wrapper {
  display: flex;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.main-wrapper::after {
  content: "*본 영상은 이해를 돕기 위한 AI 연출 영상입니다.";
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui,
    sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.video-panel {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
  opacity: 1;
  visibility: visible;
  /* absolute positioning을 위해 */
}

.video-panel svg {
  position: absolute;
  bottom: -1px;
  right: 0;
  content: "";
  width: 500px;
  height: 250px;
  z-index: 2;
}

.swiper {
  width: 100%;
  height: 100dvh;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #000; */
  position: relative;
}

.main-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* .main-video-mo {
  display: none;
} */
.event-link {
  width: 100%;
  height: 100%;
  background: url("/home_assets/img/main/event-main-pc.jpg") no-repeat center/cover;
}

.eventImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 탭 스타일 */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.goBtn {
  position: absolute;
  bottom: 120px;
  right: 480px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  z-index: 5;
}

.goBtns .goBtn.visible {
  display: block;
  word-break: keep-all;
}

.goEvent {
  /* width: 208px; */
  height: 29px;
  background: rgba(97, 118, 157, 0.7);
  border-radius: 8px;
  padding: 3px 12px 0;
}

.goEvent a p {
  text-align: center;
}

.goEvent .togo p::after {
  border: none;
}

.goEvent .togo p::before {
  display: none;
}

.togo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.togo p {
  display: inline-block;
  position: relative;
  padding: 0 5px 6px;
  color: #fff; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 밑줄 */
.togo p::after {
  content: "";
  display: block;
  border-bottom: 1px solid #fff;
  width: calc(100% + 8px);
}

.goTit{
  font-family: "Dream Orphans", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
  
    color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
/* 선 화살표 */
.togo p::before {
  content: "";
  position: absolute;
  bottom: 3.714px;
  right: -3.5px;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}

.video-logo {
  position: absolute;
  top: 40%;
  left: 100px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.video-ai {
  position: absolute;
  bottom: 125px;
  left: 3%;
}

.video-ai p {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui,
    sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #fff;
  letter-spacing: 1px;
}

.video-logo .video-logo-icon {
  width: 71px;
  animation: logo_spin 5s linear infinite;
}

@keyframes logo_spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.video-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-panel video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* 
.main-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: transparent;
} */

/* .main-video.visible {
  opacity: 1;
} */

.tabs {
  position: absolute;
  bottom: 125px;
  right: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  z-index: 10;
}

.tab {
  width: 58px;
  height: 103px;
  border-radius: 50px;
  filter: brightness(0.8);
  transition: all 0.3s ease;
  cursor: pointer;
  list-style-type: none;
}

/*
.tab[data-index="0"] {
  background: url("/home_assets/img/main/event_thumb.png") center / cover no-repeat,
    rgba(0, 0, 0, 0.3);
}
*/

/*
.tab[data-index="0"]::after {
  content: "첫방문\A EVENT";
  white-space: pre;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 14px);
  line-height: clamp(18px, 1vw, 24px);
  text-align: center;
  letter-spacing: -0.05em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  transition: font-size 0.3s ease;
  border-radius: 100px;
}
*/

/* .tab[data-index="0"] {
  background: url("/home_assets/img/main/jab_center_thumb.png") center / cover no-repeat;
} */


.tab[data-index="0"] {
  background: url("/home_assets/img/main/skin_booster_tab.png") center / cover
    no-repeat;
}

.tab[data-index="1"] {
  background: url("/home_assets/img/main/hipdip_tab.png") top center /
    cover no-repeat;
}

.tab[data-index="2"] {
  background: url("/home_assets/img/main/lifting_tab.png") top center /
    cover no-repeat;
}


/* 
.tab[data-index="0"].hovered::after {
  font-size: clamp(12px, 1vw, 20px);
} */


.tab.hovered {
  margin: 0 12px;
  width: 73px;
  height: 130px;
  transform: translateY(-25px);
  filter: brightness(1);
}

.event-link {
  width: 100%;
  height: 100%;
}

.event-link a {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  display: none;
}

.eventImage {
  object-position: top;
}

.eventImage.visible+a {
  position: relative;
  z-index: 5;
  display: block;
}

.mobile-go {
  display: none;
}

/* .swiper-slide:nth-child(2) {
  background: url("/home_assets/images/skin_booster-poster.png") no-repeat
    center/cover;
} */
.line-break-mo {
  display: none;
}

@media (max-width: 768px) {
  .main-wrapper {
    height: 100dvh;
  }

  .main-wrapper::after {
    bottom: 15px;
    left: auto;
    right: 15px;
    transform: none;
    text-align: right;
    font-size: 9px;
  }
  .main-video-mo {
    display: block;
  }
  .main-video-pc {
    display: none;
  }

  .video-panel svg {
    display: none;
  }

  .eventImage {
    object-position: center 30%;
  }

  .event-link {
    background: url("/home_assets/img/main/event-main-mo.png") no-repeat center/cover;
  }

  .goBtn {
    right: 50%;
    transform: translateX(50%);
    bottom: 25%;
    font-size: 16px;
  }

  .togo {
    align-items: center;
    gap: 8px;
  }

  .togo img {
    max-width: 200px;
  }

  .togo p {
    font-size: clamp(12px, 3vw, 15px);
    padding: 0 4px 5px;
    display: unset;
  }

  .togo p::after {
    width: calc(100% + 8px);
  }

  .togo p::before {
    bottom: 3px;
    right: -3px;
    width: 4.5px;
    height: 4.5px;
  }

  .goEvent {
    width: 167px;
    height: 39px;
    height: clamp(28px, 10vw, 39px);
    background: rgba(46, 58, 136, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 19.5px;
    padding: 6px 0 12px;
  }

  .goEvent p {
    font-family: "Pretendard", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 39px;
    text-align: center;

    color: #ffffff;
  }

  .goEvent p::before,
  .goEvent p::after {
    content: "";
    display: none;
  }

  .mobile-go {
    display: block;
    text-align: center;
  }

  .mobile-go p {
    font-family: "Pretendard", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    text-align: center;

    color: #ffffff;
  }
.goTit{
  width: 100%;
  text-align: center;
}
  .pc-go {
    display: none;
  }

  /* #goBtn1 .togo p {
    color: #2e3a88;
  }

  #goBtn1 .togo p::after {
    border-bottom: 1px solid #2e3a88;
  }

  #goBtn1 .togo p::before {
    border-right: 1.5px solid #2e3a88;
    border-bottom: 1.5px solid #2e3a88;
  } */

  .video-logo {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    gap: 30px;
  }

  .video-ai {
    width: 100%;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
  }

  .video-ai p {
    font-size: 12px;
    text-align: center;
    word-break: keep-all;
  }

  .video-logo .video-logo-icon {
    width: 50px;
  }

  .video-logo img:not(.video-logo-icon) {
    max-width: 200px;
  }

  .tabs {
    width: 85%;
    height: auto;
    bottom: 65px;
    right: 50%;
    transform: translateX(50%);
    gap: 0;
  }

  .tab {
    position: relative;
    width: calc(85% / 4);
    height: auto;
    aspect-ratio: 1/1;
    /* height: 104px; */
    border-radius: 100px;
    margin-left: -5px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) brightness(50%);
  }

  .tab:first-child {
    margin-left: 0;
    /* 첫 번째는 겹치지 않게 */
  }

  /*
  .tab[data-index="0"] {
    background: url("/home_assets/img/main/event-thumb-mo.png") center / cover no-repeat,
      rgba(0, 0, 0, 0.3);
  }
  */

  .tab[data-index="0"] {
    background-position: center -25px;
  }

  .tab[data-index="1"] {
    background-position: center -25px;
  }

  .tab[data-index="2"] {
    background-position: center -50px;
  }

  .tab.hovered {
    margin: 0;
    height: auto;
    width: calc(85% / 4);
    aspect-ratio: 1/1;

    /* transform: translateY(-13px); */
    transform: scale(1.3);
    transform-origin: bottom;
    z-index: 1;
  }

  /* .tab.hovered:hover,
  .tab:hover {
    transform: scale(1.3);
    transform-origin: bottom;
    z-index: 1;
  } */

  /* 모바일 비디오 소스 변경 */
  #video0 source,
  #video1 source,
  #video2 source {
    content: "";
  }

  .line-break-mo {
    display: block;
  }
}

/* Signature 텍스트 스타일 */
.signature-text {
  width: 100%;
  text-align: center;
  padding: 100px 0 60px 0;
  font-family: "Dream Orphans", sans-serif;
}

.signature-main {
  font-family: "Dream Orphans", sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: #1d4074;
  margin-bottom: -10px;
  letter-spacing: 2px;
}

.signature-sub {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui,
    Roboto, sans-serif;
  font-size: 24px;
  font-weight: 200;
  color: #1d4074;
  letter-spacing: 1px;
}

/* Signature 이미지 섹션 */
.signature-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0 20px;
  margin-bottom: 60px;
  gap: clamp(20px, 5vw, 80px);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.signature-img-container {
  max-width: 319px;
  max-height: 501px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 10px 13px 19.6px rgba(0, 0, 0, 0.25);
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.2s ease, transform 1.2s ease, box-shadow 0.3s ease;
  overflow: none;
}

.signature-img-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.signature-img-container::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg,
      rgba(217, 217, 217, 0) 50%,
      rgba(170, 204, 255, 0.35) 91%);
  border-radius: 109.5px/113px;
  filter: blur(10px);
  z-index: 3;
}

.signature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 4;
  border-radius: 24px;
}

.signature-img-text {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
  font-family: "Inter", sans-serif;
  z-index: 5;
  width: 100%;
  height: 100%;

  /* 배경 추가 */
  background: linear-gradient(180deg,
      rgba(235, 242, 252, 0) 0%,
      rgba(158, 172, 194, 0.152654) 22.6%,
      rgba(74, 96, 131, 0.318029) 60.1%,
      rgba(58, 82, 119, 0.35) 100%);

  /* 하단 정렬 및 간격 */
  display: flex;
  align-items: flex-end;
  padding-bottom: 20px;
  justify-content: center;

  border-radius: 0 0 24px 24px;
}

/* Real Model 섹션 */
.real-model-section {
  width: 100%;
  padding: 200px 0 80px 0;
  position: relative;
  z-index: 1;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.real-model-section::before {
  content: "";
  position: absolute;
  top: 390px;
  left: 20%;
  width: 270px;
  height: 270px;
  background: radial-gradient(ellipse at 20% 20%,
      #aaccff 0%,
      rgba(170, 204, 255, 0.3) 30%,
      rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
  filter: blur(1px);
}

.real-model-section::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at 70% 70%,
      #aaccff 0%,
      rgba(170, 204, 255, 0.3) 20%,
      rgba(170, 204, 255, 0.15) 40%,
      rgba(170, 204, 255, 0.05) 60%,
      rgba(255, 255, 255, 0) 80%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  filter: blur(5px);
}

.real-model-text {
  text-align: left;
  margin-left: 25%;
  margin-bottom: 10px;
  font-size: 24px;
  color: #1d4074;
  position: relative;
  z-index: 2;
}

.geunal-text {
  font-family: "Dream Orphans", sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: #1d4074;
}

.real-model-text {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui,
    Roboto, sans-serif;
  font-weight: 200;
  font-size: 24px;
}

/* 슬라이더 스타일 */
.carousel {
  padding: 10px 0;
}

.carousel-cell {
  width: 240px;
  height: 620px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 12px;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-cell img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.column-slide {
  width: 240px;
}

.single-slide {
  width: 420px;
}

.wide-slide {
  width: 330px;
}

@media (max-width: 768px) {
  .real-model-section {
    padding: 80px 0 40px 0;
  }

  .real-model-section::before {
    top: 150px;
    left: 5%;
    width: 150px;
    height: 150px;
  }

  .real-model-section::after {
    bottom: -10px;
    right: 5%;
    width: 300px;
    height: 300px;
  }

  .real-model-text {
    text-align: center;
    margin-left: 0;
    margin-bottom: 20px;
    font-size: 18px;
    padding: 0 20px;
  }

  .geunal-text {
    font-size: 52px;
  }

  .real-model-text {
    font-size: 24px;
  }

  /* 슬라이더 모바일 스타일 - 한 개씩 보기 */
  .carousel {
    padding: 10px 20px;
  }

  .carousel-cell {
    width: calc(100vw - 110px);
    height: 500px;
    margin-right: 15px;
    gap: 10px;
  }

  .carousel-cell img {
    border-radius: 8px;
  }

  .column-slide {
    width: calc(100vw - 110px);
  }

  .single-slide {
    width: calc(100vw - 110px);
  }

  .wide-slide {
    width: calc(100vw - 110px);
  }
}

.h30 {
  height: 30%;
}

.h40 {
  height: 40%;
}

.h45 {
  height: 45%;
}

.h50 {
  height: 50%;
}

.h55 {
  height: 55%;
}

.h60 {
  height: 60%;
}

.h70 {
  height: 70%;
}

.h100 {
  height: 100%;
}

/* 스킨랩센터 섹션 */
.skin-lab-section {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

}
.circle_blur{
    position: absolute;
    width: 784.27px;
    height: 1445.31px;
  left : 0;
  bottom: -20%;
    background: radial-gradient(68.44% 37.14% at 7.86% 50%, rgba(131, 172, 232, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    
    filter: blur(10px);
}

.skin-lab-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
  z-index: 2;
}

.skin_background_pc {
  display: block;
}

.skin_background_mobile {
  display: none;
}

.skin-title-txt {
  position: absolute;
  left: 20%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 50px;
  background-color: transparent;
  width: auto;
  z-index: 3;
  white-space: nowrap;
}

.skin-lab-title {
  width: 100%;
  font-family: "Dream Orphans", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #1d4074;
  margin-bottom: 16px;
  text-align: end;
}

.skin-lab-desc {
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 200;
  color: #555;
  text-align: end;
}

.highlight-bg-wrapper {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.skin-lab-highlight {
  font-family: "Pretendard", sans-serif;
  line-height: 1.6;
  width: 770px;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 15%;
  z-index: 5;
}

.skin-lab-highlight strong {
  font-size: 48px;
  font-weight: 600;
}

.skin-lab-highlight-desc {
  font-size: 40px;
  font-weight: 200;
  white-space: nowrap;
}

.skin-lab-bold {
  font-size: 40px;
  font-weight: 600;
}

.skin-lab-image-wrap {
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  flex: 1;
}

.skin-lab-image-wrap::after {
  content: "";
  position: absolute;
  bottom: -70%;
  right: 20px;
  width: 60%;
  height: 100%;
}

.filler-background {
  position: absolute;
  top: 40%;
  right: 25%;
  display: flex;
  flex-direction: column;
  width: 17%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skin-lab-image {
  width: 100%;
  /* height: 424px; */
  object-fit: contain;
  animation: filler_float 2s ease-in-out infinite;
}

@keyframes filler_float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.highlight-bg-wrapper .orange-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 150px;
  background: radial-gradient(ellipse at 50% 30%,
      rgba(255, 213, 154, 0.4) 0%,
      rgba(255, 213, 154, 0.25) 35%,
      rgba(255, 213, 154, 0.1) 55%,
      rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.6;
  filter: blur(18px);
  pointer-events: none;
}

/* 병원 안내 영역 */
.clinic-info-section {
  width: 100%;
  padding: 120px 0;
  display: flex;
  justify-content: center;
  background-image: url("/home_assets/img/main/main_info_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.clinic-info-content {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  min-height: 500px;
}

.clinic-map-area {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}

.clinic-divider {
  width: 1px;
  background-color: #ddd;
  flex-shrink: 0;
  align-self: stretch;
}

.clinic-info-area {
  flex: 1;
  padding-left: 20px;
  min-width: 600px;
  display: flex;
  align-items: flex-end;
}

.clinic-map {
  flex: none;
  position: relative;
  border: 1px solid #1d4074;
  border-radius: 250px 250px 0 0;
  padding: 5px;
}

.clinic-map #map {
  width: 500px;
  height: 600px;
  border-radius: 250px 250px 0 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.clinic-text {
  font-family: "Pretendard", sans-serif;
  color: #000000;
  text-align: left;
  width: 100%;
}

.clinic-hours {
  margin-bottom: 50px;
}

.clinic-hours h3,
.clinic-direction h3 {
  font-family: "Pretendard", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000000;
  text-align: left;
}

.clinic-hours ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  width: 100%;
  text-align: left;
}

.clinic-hours ul li {
  display: flex;
  justify-content: flex-start;
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 300;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  min-width: 300px;
  color: #000000;
}

.clinic-hours ul li span:first-child {
  flex: 3;
  text-align: left;
}

.clinic-hours ul li span:last-child {
  flex: 7;
  text-align: left;
}

.clinic-hours ul li:last-child {
  border-bottom: none;
}

.clinic-hours ul li .friday-time {
  font-weight: 500;
}

.clinic-hours .note {
  font-family: "Pretendard", sans-serif;
  font-size: 20px;
  font-weight: 200;
  color: #888;
  margin-top: 15px;
  text-align: left;
}

.clinic-direction p {
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #000000;
}

.clinic-direction p:last-child {
  margin-bottom: 0;
}

.clinic-direction .address {
  font-family: "Pretendard", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

.clinic-contact {
  margin: 0;
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: nowrap;
}

.clinic-contact p {
  margin: 0;
}

.clinic-contact strong {
  font-family: "Dream Orphans", sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: #000000;
  white-space: nowrap;
}

.clinic-contact .phone-number {
  font-family: "Caviar Dreams", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .clinic-info-section {
    padding: 60px 0;
    background-image: none;
    background-color: #ffffff;
  }

  .clinic-info-content {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 0 15px;
  }

  .clinic-map-area {
    width: 100%;
    padding-right: 0;
    justify-content: center;
    margin-bottom: 40px;
  }

  .clinic-divider {
    display: none;
  }

  .clinic-info-area {
    width: 100%;
    padding-left: 0;
    min-width: auto;
    align-items: center;
  }

  .clinic-map {
    width: 100%;
    max-width: 400px;
  }

  .clinic-map #map {
    width: 100%;
    height: 480px;
    border-radius: 200px 200px 0 0;
  }

  .clinic-text {
    text-align: center;
  }

  .clinic-hours {
    margin-bottom: 40px;
  }

  .clinic-hours h3,
  .clinic-direction h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
  }

  .clinic-hours ul {
    text-align: left;
    max-width: 350px;
    margin: 0 auto;
  }

  .clinic-hours ul li {
    font-size: 18px;
    padding: 6px 0;
    min-width: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .clinic-hours ul li span:first-child {
    flex: none;
    text-align: left;
  }

  .clinic-hours ul li span:last-child {
    flex: none;
    text-align: right;
  }

  .clinic-hours .note {
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
  }

  .clinic-direction p {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
  }

  .clinic-direction .address {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
  }

  .clinic-contact {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .clinic-contact strong {
    font-size: 48px;
  }

  .clinic-contact .phone-number {
    font-size: 36px;
  }
}

/* 병원 안내 끝 */

.select-privacy-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-right: 15px;
}

.privacy-consent-inline {
  position: absolute;
  top: -20px;
  right: 15px;
  background-color: rgba(125, 131, 145, 0.3);
  padding: 0 4px;
  font-size: 11px;
  line-height: 1;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.privacy-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.privacy-checkbox {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

.privacy-checkmark {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.privacy-checkmark:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.privacy-checkbox:checked+.privacy-checkmark {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  border-color: #ffffff;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.privacy-checkbox:checked+.privacy-checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #7d8391;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  animation: checkFadeIn 0.3s ease forwards;
}

@keyframes checkFadeIn {
  0% {
    opacity: 0;
    transform: rotate(45deg) scale(0.5);
  }

  100% {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

.privacy-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
}

.privacy-detail-link {
  text-decoration: underline;
  cursor: pointer;
  color: #ffffff;
}

.privacy-detail-link:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #ffffff;
}

.scroll-animate {
  opacity: 0;
  transition: opacity 1.4s ease;
}

.scroll-animate:nth-child(1)::after {
  content: "\00AE";
}

.scroll-animate.animate-in {
  opacity: 1;
}

.orange-circle.scroll-animate {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease, visibility 0s linear 1.4s;
}

.orange-circle.scroll-animate.animate-in {
  opacity: 0.8;
  visibility: visible;
  transition-delay: 0s;
}

@media (max-width: 768px) {
  /* 스킨랩센터 모바일 최적화 */

  .skin-lab-section {
    padding: 100px 0 0px;
  }

  .skin-lab-section::after {
    right: 200px;
  }
.circle_blur{
  display: none;
}
  .skin_background_pc {
    display: none;
  }

  .skin_background_mobile {
    display: block;
  }

  .skin-lab-content {
    gap: 0;
  }

  /* 이미지를 위로 이동 */
  .skin-lab-image-wrap {
    order: 2;
    min-width: auto;
    text-align: center;
    position: relative;
  }

  .filler-background {
    width: 30%;
    position: absolute;
    top: 30%;
    right: 35%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .skin-lab-image {
    border: none;
  }

  /* 텍스트를 아래로 이동 */

  .skin-lab-text {
    order: 1;
    text-align: center;
    transform: none;
    margin: 0;
  }

  .skin-lab-title-roundBox {
    order: 4;
    width: 100%;
    height: auto;
    background: none;
    box-shadow: none;
    transform: none;
  }

  .skin-lab-title-roundBox .skin-title-txt {
    width: 100%;
    gap: 0;
    padding: 0;
    left: 0;
    top: 85%;
  }

  .skin-lab-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    white-space: wrap;
  }

  .skin-lab-desc {
    font-size: 12px;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: none;
    line-height: 1.6;
    white-space: wrap;
  }

  .skin-lab-highlight {
    width: 100%;
    max-width: none;
    text-align: center;
    left: 0;
    top: 10%;
  }

  .skin-lab-highlight strong {
    font-size: clamp(20px, 3vw, 24px);
  }

  .skin-lab-highlight-desc {
    font-size: clamp(13px, 3vw, 14px);
  }

  .skin-lab-bold {
    font-size: clamp(18px, 3vw, 20px);
  }

  /* 오렌지 원 효과도 모바일에 맞게 조정 */
  .highlight-bg-wrapper .orange-circle {
    width: 300px;
    height: 60px;
  }

  /* 시그니처 섹션 모바일 최적화 */
  .signature-text {
    padding: 40px 20px 30px 20px;
  }

  .signature-main {
    font-size: 32px;
    margin-bottom: -5px;
  }

  .signature-sub {
    font-size: 16px;
  }

  /* 시그니처 이미지들 세로 배치 및 중앙 정렬 */
  .signature-images {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
    max-width: none;
    align-items: center;
    margin-bottom: 40px;
  }

  .signature-img-container {
    flex: none;
    width: 90vw;
    max-width: 350px;
    height: auto;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
  }

  .signature-img-container::before {
    top: -40px;
    left: 60px;
    right: 60px;
    width: calc(100% - 120px);
    height: 80px;
  }

  .signature-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
  }

  .signature-img-text {
    width: 100%;
    font-size: 16px;
    bottom: 0;
    font-weight: 600;
    border-radius: unset;
  }
}