.section {
  width: 100%;
  overflow: hidden;
}
/* ============================================================== */
/* hero */
/* ============================================================== */
.hero {
  width: 100%;
  position: relative;
}

.hero-video-wrap {
  width: 100%;
  max-height: 100vh;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
  object-position: center;
  -webkit-object-position: center;
  transform: translateZ(0);
}

/* ============================================================== */
/* hospital */
/* ============================================================== */
.hospital {
  width: 100%;
  position: relative;
}
.hospital-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hospital-wrap .img-wrap {
  flex: 1;
  align-self: stretch;
  width: 100%;
  position: relative;
  border-radius: 0 50px 50px 0;
  background: #e6e1dc;
  box-shadow: 4px 0 35px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  line-height: 0;
}
.hospital-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.hospital-wrap .img-wrap .gradient-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  opacity: 0.5;
  background: linear-gradient(90deg, #fff 15.87%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(5px);
}
.hospital-wrap .text-wrap {
  padding: 140px 0;
  flex: 1;
  width: 100%;
}
.hospital-wrap .text-wrap-inner {
  margin-right: calc((100vw - 1280px) / 2);
  background: url("/assets/img/main/hospital-bg.png") no-repeat center center /
    contain;
}
.hospital-title {
  color: #353535;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(28px);
  transition: none;
}
.hospital-title.is-visible {
  animation: hospitalTitleIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.hospital-title i {
  font-size: 0.8em;
  display: block;
}
.hospital-title strong {
  opacity: 0;
  transform: translateY(12px);
  transition: none;
}
.hospital-title b {
  color: #3f552a;
}
.hospital-title.is-visible strong {
  animation: hospitalTitleBoldIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s
    forwards;
}

@keyframes hospitalTitleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hospitalTitleBoldIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .animated-text: 화면에 보이면 왼쪽 아래에서 등장 + 블러 + 오버슈트 */
.animated-text {
  opacity: 0;
  transform: translateX(-50px);
  filter: blur(8px);
  display: inline-block;
}
.animated-text.is-visible {
  animation: animTextPop 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes animTextPop {
  0% {
    opacity: 0;
    transform: translateX(-50px);
    filter: blur(8px);
  }
  55% {
    opacity: 1;
    transform: translateX(8px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

/* 인라인 태그(span 등)에 쓸 때 레이아웃 유지 */
span.animated-text,
em.animated-text,
i.animated-text,
b.animated-text,
strong.animated-text {
  display: inline-block;
}

.hospital-desc {
  color: var(--color-grey);
  font-size: 20px;
}
.hospital-desc em {
  display: block;
  margin-bottom: 20px;
}
.hospital-desc strong {
  color: var(--color-primary);
  font-weight: 600;
}
.hospital-wrap:nth-of-type(even) {
  flex-direction: row-reverse;
  .img-wrap {
    border-radius: 50px 0 0 50px;
    & .gradient-wrap {
      left: auto;
      right: 0;
      width: 30%;
      background: linear-gradient(
        270deg,
        #fff 15.87%,
        rgba(255, 255, 255, 0) 100%
      );
    }
  }
  .text-wrap-inner {
    padding-right: 0;
    padding-left: calc((100vw - 1280px) / 2);
  }
}

/* ============================================================== */
/* 정밀 임플란트 - 3D Carousel (UI Initiative 스타일) */
/* ============================================================== */
.main-implant {
  background: url("/assets/img/main/main-implant-bg.png") no-repeat center
    center / cover;
  position: relative;
  overflow: hidden;
}
.main-implant-content {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.carousel-3d {
  position: relative;
  width: 100%;
  user-select: none;
  cursor: grab;
}
.carousel-3d-scene {
  position: relative;
  width: 100%;
  perspective: 1280px;
  /* 높이는 JS가 카드 실제 높이에 맞춰 설정 */
}

/* 슬라이드: 너비는 JS가 컨테이너 기준으로 설정, 높이는 컨텐츠 따라 자동 */
.carousel-3d-slide {
  position: absolute;
  will-change: transform, opacity;
  /* left, top, margin은 JS가 동적으로 설정 */
}

.carousel-3d-card {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s ease;
}
.carousel-3d-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.carousel-3d-slide.is-active .carousel-3d-card::after {
  opacity: 0;
}
.carousel-3d-slide.is-active .carousel-3d-card {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
}

.carousel-3d-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  line-height: 0;
}
.carousel-3d-card-img img {
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
  display: block;
}
.carousel-3d-card-body {
  padding: 30px;
  text-align: center;
}
.carousel-3d-card-body h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.carousel-3d-card-body h3 span {
  display: block;
  font-size: 0.8em;
  font-weight: 500;
}
.carousel-3d-card-body p {
  font-size: 18px;
}

.carousel-3d-slide.slide-1 .carousel-3d-card-body {
  background: #f4868a;
}
.carousel-3d-slide.slide-2 .carousel-3d-card-body {
  background: #f39aa0;
}
.carousel-3d-slide.slide-3 .carousel-3d-card-body {
  background: #df677d;
}
.carousel-3d-slide.slide-4 .carousel-3d-card-body {
  background: #c7c7c7;
}
.carousel-3d-slide.slide-5 .carousel-3d-card-body {
  background: #c6c6c6;
}
/* 스크롤바 */
.carousel-3d-scrollbar {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 8px 0;
  z-index: 20;
}
.carousel-3d-scrollbar-track {
  position: relative;
  width: 100%;
  height: 3px;
  background: #ccc;
  border-radius: 3px;
  cursor: pointer;
}
.carousel-3d-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 3px;
  background: var(--color-mint);
  transition:
    left 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 640px) {
  .carousel-3d-card-body {
    padding: 14px 16px 16px;
  }
  .carousel-3d-scrollbar {
    max-width: 60%;
  }
}

.main-title {
  margin-bottom: 80px;

  & i {
    color: var(--color-primary);
    font-family: "Paperlogy";
    font-size: 18px;
    font-weight: 400;
    display: block;
  }
  & h2 {
    color: #353535;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  & .main-title-desc {
    color: var(--color-grey);
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: -0.001em;
    margin-top: 20px;
  }
}
.main-title.white {
  & i {
    color: #fff;
  }
  & .line {
    background: #fff;
    height: 1px;
    width: 176px;
    margin: 20px 0;
    opacity: 0.4;
  }
  & h2 {
    color: #fff;
  }
  & .main-title-desc {
    color: #fff;
    opacity: 1;
  }
}

.main-title.center {
  text-align: center;
  & .line {
    margin: 20px auto;
  }
}
/* ========================================================= */
/* 종합 구강진료 */
/* ========================================================= */
.main-treatment {
  background: linear-gradient(180deg, #34552a 0%, #1a3d10 80%);
}
.main-treatment .main-title {
  & h2 {
    & em {
      display: block;
      font-size: 0.8em;
      font-weight: 300;
    }
  }
  & .main-title-desc {
    & .box5 {
      height: 10px;
    }
    color: #fff;
    opacity: 0.8;
  }
}
.main-treatment .inner {
  display: flex;
  gap: 60px;
}
.main-treatment-left {
  flex: 0 0 40%;
  max-width: 370px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}
.main-treatment-right {
  flex: 1;
}
.treatment-grid {
  display: flex;
  gap: 20px;
}
.treatment-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.treatment-col-right {
  padding-top: 140px;
}
.treatment-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 540px;
}
.treatment-card-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.treatment-card-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.treatment-card-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.treatment-card-tags {
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.treatment-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  color: var(--color-mint-dark);
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 25px;
  border: 3px solid var(--color-mint-light);
  background: #fff;
}
/* ========================================================= */
/* 특수진료 시스템 */
/* ========================================================= */
.main-special {
  background: url("/assets/img/main/main-special-bg.png") no-repeat center
    center / cover;
  position: relative;
  overflow: hidden;
}
.main-special-marquee {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.main-special-marquee-track {
  display: inline-flex;
  animation: marqueeScroll 100s linear infinite;
}
.main-special-marquee-track span {
  font-size: 6vw;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(101, 101, 101, 0.07);
  flex-shrink: 0;
  line-height: 0.9;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.main-special-content {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.main-special-card {
  flex: 1;
  border-radius: 50px;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-align: center;
  padding: 30px;
}
.main-special-card.main-special-card-1 {
  background: #f6fbef;
  margin-top: 60px;
  margin-bottom: 0;
  transition: margin 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  & .main-special-card-title {
    color: var(--color-primary);
  }
  & .main-special-card-tags {
    color: var(--color-primary-light);
  }
}
.main-special-card.main-special-card-2 {
  background: #eefefd;
  margin-top: 0;
  margin-bottom: 60px;
  transition: margin 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  & .main-special-card-title {
    color: #00bfb2;
  }
  & .main-special-card-tags {
    color: var(--color-mint-dark);
  }
}
.main-special-card.main-special-card-3 {
  background: #edf8fe;
  margin-bottom: 0;
  margin-top: 60px;
  transition: margin 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  & .main-special-card-title {
    color: #353535;
  }
  & .main-special-card-tags {
    color: var(--color-grey);
  }
}
/* Phase 2: 카드 펼침 */
.main-special-content.is-spread .main-special-card-1 {
  margin-bottom: 60px;
  margin-top: 0;
}
.main-special-content.is-spread .main-special-card-2 {
  margin-top: 60px;
  margin-bottom: 0;
}
.main-special-content.is-spread .main-special-card-3 {
  margin-bottom: 60px;
  margin-top: 0;
}
/* 이미지: 초기 상태 = 원형 */
.main-special-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  line-height: 0;
  border-radius: 50%;
  box-shadow: 0 2.941px 2.941px 0 rgba(0, 0, 0, 0.25);
  transition: border-radius 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Phase 1: 원 → 둥근 사각형 */
.main-special-content.is-shape .main-special-card-img {
  border-radius: 50px;
}
/* 카드 2 이미지: 초기 상태 = 원형 (border-radius) */
.main-special-card.main-special-card-2 .main-special-card-img {
  aspect-ratio: 324/353;
  box-shadow: none;
}
/* Phase 1.5: 카드 2 클립패스 페이드 전환 */
@keyframes clipFadeSwap {
  0% {
    opacity: 1;
    border-radius: 50px;
  }
  40% {
    opacity: 0;
    border-radius: 50px;
  }
  50% {
    opacity: 0;
    border-radius: 0;
    clip-path: url(#specialCardClip);
    -webkit-clip-path: url(#specialCardClip);
  }
  100% {
    opacity: 1;
    border-radius: 0;
    clip-path: url(#specialCardClip);
    -webkit-clip-path: url(#specialCardClip);
  }
}
.main-special-content.is-clip .main-special-card-2 .main-special-card-img {
  animation: clipFadeSwap 0.7s ease forwards;
}
.main-special-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-special-card-title {
  font-size: 32px;
  font-weight: 700;
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(101, 101, 101, 0.4);
  margin-bottom: 20px;
}
.main-special-card-desc {
  font-size: 20px;
  opacity: 0.8;
}
.main-special-card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  opacity: 0.8;
  margin-top: 20px;
}

/* 진료시간 및 오시는 길 */
.schedule {
  background: url("/assets/img/main/schedule-bg.png") no-repeat center center /
    cover;
}
.schedule-content {
  display: flex;
  gap: 20px;
}
.schedule-map {
  border-radius: 30px;
  overflow: hidden;
  & .root_daum_roughmap {
    width: 100%;
    height: 100%;
    min-height: 300px;
  }
  & .root_daum_roughmap .wrap_map {
    min-height: 300px;
    height: 100%;
  }
  & .root_daum_roughmap .wrap_controllers {
    display: none;
  }
  & .root_daum_roughmap .cont .section.lst {
    display: none;
  }
}
.schedule-content > * {
  flex: 1;
}
.schedule-info {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.schedule-info-box {
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  padding: 20px 40px;
  overflow: hidden;
}
.schedule-info-box .tel {
  color: var(--color-primary-dark);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}
.schedule-info-box .schedule-title {
  display: inline-flex;
  padding: 5px 26px;
  gap: 10px;
  border-radius: 50px;
  background: #527947;
  color: var(--color-white);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.schedule-info-box .schedule-info-desc {
  color: #527947;
  font-size: 22px;
  margin-top: 10px;
  font-weight: 600;
  margin-bottom: 20px;
}
.schedule-info-box .schedule-info-desc i {
  color: var(--color-grey);
}

.schedule-info-box:nth-of-type(2) .schedule-title {
  background: var(--color-mint-dark);
}
.schedule-info-box:nth-of-type(2) .schedule-info-desc {
  color: var(--color-mint-dark);
  margin-bottom: 0;
}
.schedule-info-box .schedule-title img {
  width: 1em;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.schedule-time-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule-time-list li {
  font-size: 22px;
  position: relative;
  display: flex;
  gap: 8px;
}
.schedule-time-list li::before {
  font-weight: 900;
  content: "·";
  color: var(--color-primary-dark);
}
.schedule-time-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.schedule-day {
  font-weight: 800;
  color: var(--color-primary-dark);
  flex-shrink: 0;
}
.schedule-hours {
  font-weight: 800;
  color: #222;
}
.schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border-radius: 20px;
  background: #444;
  color: #f5e642;
  /* font-size: 14px; */
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.schedule-lunch {
  font-size: 19.5px;
  color: #888;
  padding-left: 2px;
}
.schedule-lunch-note {
  font-size: 18px;
  color: #888;
  font-weight: 400;
}
.schedule-notice {
  font-size: 18px;
  color: #888;
  padding-left: 2px;
}

.schedule-info-box ul li em,
.schedule-info-box ul li address {
  font-weight: 700;
  color: var(--color-grey-dark);
}
.schedule-info-box ul li em i {
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.3;
}
.schedule-info-box .schedule-info-list li {
  display: flex;
  gap: 8px;
  color: var(--color-grey);
  font-size: 20px;
  font-weight: 500;
  padding: 3px 0;
}
.schedule-info-box .schedule-info-list li::before {
  content: "·";
  font-weight: 900;
}
/* ======================== 반응형 ======================== */
@media (max-width: 1520px) {
}
@media (max-width: 1290px) {
  /* 병원 소개 */
  .hospital-wrap .text-wrap-inner {
    margin-right: 2.5vw;
    margin-left: 2.5vw;
  }
  .hospital-wrap {
    flex-direction: column;
    gap: 0px;
  }
  .hospital-wrap .img-wrap {
    margin-top: 50px;
    width: 85%;
  }
  .hospital-wrap .img-wrap img {
    position: relative;
  }
  .hospital-wrap .text-wrap {
    padding: 50px 0;
  }
  .hospital-title {
    font-size: 38px;
  }
  /* 정밀 임플란트 */
  .main-title {
    margin-bottom: 42px;

    & h2 {
      font-size: 42px;
    }
    & .main-title-desc {
      font-size: 18px;
    }
  }
  .carousel-3d-card-body {
    padding: 20px;
  }
  .carousel-3d-card-body h3 {
    font-size: 24px;
  }
  .carousel-3d-card-body p {
    font-size: 16px;
  }
  .carousel-3d-scrollbar {
    width: 85%;
    margin: 40px auto 0;
  }
  /* 종합 구강진료 */
  .main-treatment .inner {
    gap: 20px;
  }
  .main-treatment-left {
    flex: 0 0 30%;
  }
  .treatment-card-tags {
    padding: 0 10px;
  }
  .treatment-tag {
    padding: 5px 12px;
    font-size: 16px;
  }
  .treatment-card {
    min-height: 450px;
  }
  /* 특별 구강진료 */
  .main-special-card {
    padding: 20px;
  }
  .main-special-card-title {
    font-size: 28px;
    margin-top: 20px;
    padding-bottom: 10px;
  }
  .main-special-card-desc {
    font-size: 16px;
  }
  .main-special-card-tags {
    gap: 5px;
    font-size: 14px;
    margin-top: 14px;
  }
  .main-special-marquee-track span {
    font-size: 10vw;
  }
  /* 진료시간 및 오시는 길 */
  .schedule-info-box .tel {
    font-size: 38px;
  }
  .schedule-time-list li {
    font-size: 18px;
  }
  .schedule-lunch {
    font-size: 0.8em;
  }
  .schedule-notice {
    font-size: 0.8em;
  }
  .schedule-info-box .schedule-info-list li {
    font-size: 18px;
  }
  .schedule-info-box .schedule-info-desc {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1024px) {
  .hospital-title {
    font-size: 34px;
  }
  .hospital-desc {
    font-size: 18px;
  }
  .hospital-desc em {
    margin-bottom: 15px;
  }
  /* 정발 임플란트 */
  .main-title {
    & h2 {
      font-size: 38px;
    }
  }
  /* 종합 구강진료 */
  .main-treatment {
    background: #1a3d10;
  }
  .main-treatment .inner {
    flex-direction: column;
    align-items: stretch;
  }
  .main-treatment-left {
    z-index: 10;
    flex: 1;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(180deg, #1a3d10 86%, transparent 100%);
    top: 60px;
    padding: 60px 0 100px;
    .main-title {
      margin-bottom: 0px;
    }
  }
  /* 특수진료 */
  .main-special-content {
    flex-direction: column;
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
  .main-special-content.is-spread .main-special-card-1,
  .main-special-content.is-spread .main-special-card-2,
  .main-special-content.is-spread .main-special-card-3 {
    margin: 0;
  }
  /*  */
  .schedule-content {
    flex-direction: column;
  }
  .schedule-map {
    & .root_daum_roughmap .wrap_map {
      height: 300px;
    }
  }
  .schedule-info-box {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .hospital-title {
    font-size: min(7vw, 40px);
  }
  .hospital-desc {
    font-size: min(3.8vw, 18px);
  }
  .hospital-wrap .text-wrap {
    padding: 40px 0;
  }
  .hospital-wrap .text-wrap-inner {
    margin-right: 4.5vw;
    margin-left: 4.5vw;
  }
  /*  */
  .main-title {
    margin-bottom: 32px;
    & i {
      font-size: min(4vw, 18px);
    }
    & h2 {
      font-size: min(8vw, 40px);
    }
    & .main-title-desc {
      font-size: min(3.8vw, 18px);
    }
  }
  .carousel-3d-card-body {
    padding: 20px 10px;
  }
  .carousel-3d-card-body h3 {
    font-size: min(5.2vw, 30px);
  }
  .carousel-3d-card-body p {
    font-size: min(3.5vw, 18px);
  }
  /* 종합 구강진료 */
  .main-treatment-left {
    position: relative;
    top: 0;
    padding: 0 0 30px;
  }
  .treatment-grid {
    flex-direction: column;
    margin: 0 20px;
  }
  .treatment-card-title {
    font-size: min(7vw, 40px);
  }
  .treatment-tag {
    flex: 0 1 30%;
    font-size: min(3.8vw, 18px);
  }
  .treatment-card {
    min-height: auto;
  }
  .treatment-col-right {
    padding-top: 0;
  }

  /* 특수진료 */
  .main-special-card-title {
    font-size: min(6vw, 35px);
  }
  .main-special-card-desc {
    font-size: min(3.8vw, 18px);
  }
  .main-special-card-tags {
    font-size: min(3.5vw, 18px);
  }
  .main-special-marquee-track span {
    font-size: 25vw;
  }
  /* 진료시간 및 오시는 길 */
  .schedule-info-box .tel {
    font-size: min(7vw, 35px);
  }
  .schedule-info-box .schedule-title {
    padding: 5px 18px;
    font-size: min(5.8vw, 30px);
  }
  .schedule-info-box .schedule-info-desc {
    font-size: min(4.5vw, 18px);
  }
  .schedule-time-list li {
    font-size: min(4vw, 18px);
    gap: 4px;
  }
  .schedule-badge {
    font-size: min(0.8em, 14px);
    gap: 4px;
    padding: 4px 10px;
  }
  .schedule-lunch-note {
    font-size: min(0.8em, 14px);
  }
  .schedule-time-row {
    gap: 7px;
  }
  .schedule-info-box .schedule-info-list li {
    font-size: min(4vw, 18px);
  }
}
