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

.hero-video-wrap {
  width: 100%;
  height: 100%;
  height: calc(100vh - 80px);
  background: var(--color-primary-light);
}
.hero-video-wrap .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 500px 0 !important;
  overflow: hidden;
}
.hero-video-wrap .swiper-slide .bg-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease-out;
  }
}
.hero-video-wrap .swiper-slide-active .bg-img img {
  transform: scale(1.12);
}
.hero-video-wrap .swiper-slide .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    275deg,
    rgba(135, 118, 102, 0) 20.7%,
    #877666 67.59%
  );
}
.hero-content-inner {
  width: 100%;
  height: 100%;
  padding: 0 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
}
.hero-title {
  font-family: "MaruBuri";
  font-size: 52px;
  font-weight: 700;
  line-height: 1.63;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}
.hero-title i {
  display: block;
  font-weight: 300;
}
.hero-desc p {
  font-family: "Pretendard";
  font-size: 26px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: -0.052em;
}

/* 히어로 타이틀 텍스트 모션 */
.hero-video-wrap .swiper-slide .hero-title i,
.hero-video-wrap .swiper-slide .hero-title b,
.hero-video-wrap .swiper-slide .hero-desc p {
  opacity: 0;
  transform: translateY(30px);
}

.hero-video-wrap .swiper-slide-active .hero-title i {
  animation: heroTitleLine1 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-video-wrap .swiper-slide-active .hero-title b {
  animation: heroTitleLine2 0.95s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

.hero-video-wrap .swiper-slide-active .hero-desc p {
  animation: heroTitleDesc 1s cubic-bezier(0.19, 1, 0.22, 1) 0.45s forwards;
}

@keyframes heroTitleLine1 {
  0% {
    opacity: 0;
    transform: translateY(40px);
    letter-spacing: 0.12em;
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.02em;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -0.02em;
  }
}

@keyframes heroTitleLine2 {
  0% {
    opacity: 0;
    transform: translateY(48px);
    letter-spacing: 0.16em;
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
    letter-spacing: 0.02em;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -0.02em;
  }
}

@keyframes heroTitleDesc {
  0% {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 히어로 슬라이더 네비게이션 (진행 바 + 현재/전체 + 화살표) */
.hero-swiper-nav {
  position: absolute;
  bottom: 60px;
  left: 140px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  z-index: 10;
}
.hero-nav-current,
.hero-nav-total {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.hero-nav-progress {
  width: 112px;
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  overflow: hidden;
}
.hero-nav-progress-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 999px;
  transition: width 5000ms linear;
}
.hero-swiper-nav .hero-nav-prev,
.hero-swiper-nav .hero-nav-next {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.hero-swiper-nav .hero-nav-prev:hover,
.hero-swiper-nav .hero-nav-next:hover {
  opacity: 0.85;
  transform: scale(1.5);
}

/* ============================================================== */
/* hospital */
/* ============================================================== */
.hospital {
  width: 100%;
  position: relative;
  background: url("/assets/img/main/hospital-bg.png") no-repeat center center /
    cover;
}
.hospital-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
.img-wrap {
  flex: 1;
  width: 100%;
  position: relative;
  max-width: 760px;
  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;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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);
}
.text-wrap {
  flex: 1.5;
  width: 100%;
  padding: 50px 0;
}
.text-wrap-inner {
  padding-right: calc((100vw - 1280px) / 2);
}
.hospital-title {
  color: var(--color-grey);
  font-size: 30px;
  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 b {
  color: #806c59;
  font-weight: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: none;
}
.hospital-title.is-visible b {
  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);
}
.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;

  & strong {
    font-size: 21px;
    color: #51473e;
    font-weight: 800;
  }
}
.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);
  }
}
/* 어디가 아프신가요? */
.symptom {
  position: relative;
}
.main-title {
  margin-bottom: 80px;

  & i {
    color: var(--color-primary);
    font-family: "Paperlogy";
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
    display: block;
  }
  & h2 {
    color: #51473e;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  & .main-title-desc {
    color: var(--color-grey-dark);
    opacity: 0.7;
    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;
  }
}
/* 증상 슬라이더: 왼쪽 큰 카드 + 오른쪽 작은 미리보기 */
.symptom-list {
  position: relative;
  margin-top: 48px;
  z-index: 2;
}
.symptom-slider {
  display: flex;
  align-items: stretch;
  gap: 24px;
  min-height: 320px;
}
.symptom-slider-main {
  flex: 1 1 58%;
  min-width: 0;
}
.symptom-slide-card--main {
  width: 100%;
  height: 100%;
  aspect-ratio: 5/3;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--color-primary-light);
  box-shadow: 2px 3px 15px 0 rgba(81, 71, 62, 0.35);
}
.symptom-slide-card--main .symptom-slide-img-wrap {
  position: absolute;
  inset: 0;
}
.symptom-slide-card--main .symptom-slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.symptom-slide-card--main .symptom-slide-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 40px 0 0 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-grey-dark);
  line-height: 1.2;
}
.symptom-slide-card--main .symptom-slide-caption b {
  font-weight: 800;
  display: inline-block;
  margin-right: 8px;
}
.symptom-slider-aside {
  flex: 0 0 calc(42% - 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  justify-content: space-between;
}
.symptom-slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.symptom-slider-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0 solid transparent;
  box-shadow: 0 0 15px rgba(81, 71, 62, 0.25);
  background: #fff;
  color: var(--color-grey-dark);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.symptom-slider-btn:hover {
  background: var(--color-primary);
  color: #fff;
  & svg {
    path {
      stroke: #fff;
    }
  }
}
.symptom-slider-strip {
  min-height: 0;
  width: 100%;
}

.symptom-thumbs {
  overflow: hidden;
}

.symptom-thumbs .swiper-wrapper {
  align-items: stretch;
}

.symptom-thumbs .swiper-slide {
  height: auto;
  display: flex;
}

.symptom-slide-card--thumb {
  width: 100%;
  aspect-ratio: 5/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--color-primary-light);
  cursor: pointer;
  border: 3px solid transparent;
  opacity: 0.7;

  transition:
    border-color 0.2s,
    transform 0.2s;
}
/* .symptom-slide-card--thumb:hover {
  transform: scale(1.02);
} */
.symptom-slide-card--thumb.is-active {
  border-color: var(--color-primary);
  opacity: 1;
}
.symptom-slide-card--thumb .symptom-slide-img-wrap {
  position: absolute;
  inset: 0;
}
.symptom-slide-card--thumb .symptom-slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.symptom-slide-card--thumb .symptom-slide-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px 0 0 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-grey-dark);
}

.symptom-bottom {
  background: rgba(182, 165, 149, 0.15);
  /* backdrop-filter: blur(10px); */
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.symptom-bottom-track {
  display: inline-flex;
  white-space: nowrap;
  animation: symptomRoll 110s linear infinite;
  will-change: transform;
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 100%;
  line-height: 1.2;
}

.symptom-bottom-chunk {
  display: inline-flex;
  flex-shrink: 0;
  white-space: nowrap;
  align-items: flex-end;
}

.symptom-bottom-track em {
  font-family: "Paperlogy";
  color: var(--color-primary-light);
  opacity: 0.12;
  font-size: 10vw;
  font-weight: 900;
  line-height: 0.7;
  letter-spacing: -0.001em;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 0.15em;
}

@keyframes symptomRoll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 진료 과목 */
.medical-subject {
  display: flex;
}
.medical-subject-item {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.medical-subject-item .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  line-height: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.medical-subject-item:hover .bg-img {
  transform: scale(1.08);
}
.medical-subject-item .inner-box {
  transition: background 0.5s ease;
}
.medical-subject-item:hover .inner-box {
  background: linear-gradient(
    270deg,
    rgba(81, 71, 62, 0.7) 0%,
    rgba(128, 108, 89, 0.65) 100%
  );
}

.medical-subject-item-therapy .inner-box {
  width: 100%;
  height: 100%;
  padding: 30px 30px 30px 0;
  position: relative;
  min-height: 320px;
  background: linear-gradient(
    270deg,
    rgba(10, 5, 0, 0.5) 30%,
    rgba(39, 23, 7, 0.45) 100%
  );
}
.medical-subject-item-therapy .inner-box-inner {
  border-top: 1px solid rgba(217, 204, 191, 0.7);
  border-right: 1px solid rgba(217, 204, 191, 0.7);
  border-bottom: 1px solid rgba(217, 204, 191, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 170px 30px;
}
.medical-subject-item-rehab .inner-box {
  width: 100%;
  height: 100%;
  padding: 30px 0 30px 30px;
  position: relative;
  opacity: 0.85;
  background: linear-gradient(
    270deg,
    rgba(10, 5, 0, 0.85) 0%,
    rgba(39, 23, 7, 0.85) 100%
  );
}
.medical-subject-item-rehab .inner-box-inner {
  border-top: 1px solid rgba(217, 204, 191, 0.7);
  border-left: 1px solid rgba(217, 204, 191, 0.7);
  border-bottom: 1px solid rgba(217, 204, 191, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 170px 30px;
}

.more-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 20px;
  color: var(--color-white);
  border-radius: 50px;
  transition: transform 0.3s ease;
  background: linear-gradient(
    180deg,
    rgba(217, 204, 191, 0.7) 0%,
    rgba(135, 118, 102, 0.7) 100%
  );
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  & img {
    width: 1.2em;
    aspect-ratio: 1/1;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
}

.more-btn:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.medical-subject-item:hover .more-btn {
  background: linear-gradient(
    180deg,
    rgba(217, 204, 191, 1) 0%,
    rgba(135, 118, 102, 1) 100%
  );
}
.medical-subject-item-rehab .more-btn {
  background: linear-gradient(
    180deg,
    rgba(217, 204, 191, 0.3) 0%,
    rgba(135, 118, 102, 0.3) 100%
  );
}
/* 치료후기 */
.review {
  background: url("/assets/img/main/review-bg.png") no-repeat center center /
    cover;
}
.review .inner {
  display: flex;
  gap: 40px;
}
.review-left {
  flex: 1 0 13%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-right {
  flex: 2 0 66%;
  width: 66%;
  overflow: hidden;
  margin-right: calc((100vw - 95%) / -2);
  padding-right: calc((100vw - 95%) / 2);
}
.review-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-primary-light);
  background: transparent;
  color: var(--color-primary-dark);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.review-nav-btn:hover {
  background: var(--color-primary);
  & svg {
    path {
      stroke: #fff;
    }
  }
}
.review-nav-current,
.review-nav-total {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1;
}
.review-nav-progress {
  width: 80px;
  height: 3px;
  background: rgba(128, 108, 89, 0.25);
  border-radius: 999px;
  overflow: hidden;
}
.review-nav-progress-fill {
  height: 100%;
  width: 25%;
  background: var(--color-primary-dark);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.review-right-swiper.swiper {
  width: 100%;
  overflow: visible;
}
.review-card {
  aspect-ratio: 2/3;
  border-radius: 30px;
  background: #fff;
  padding: 10px;
  line-height: 0;
}
.review-card-img {
  border-radius: 23px;
  background: #333;
  overflow: hidden;
  width: 100%;
  height: 100%;
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* 진료시간 및 오시는 길 */
.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: 40px;
  font-weight: 800;
}
.schedule-info-box .schedule-title {
  margin: 0px -20px 10px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 30px;
  font-weight: 800;
}
.schedule-info-box:nth-of-type(2) .schedule-title {
  background: rgba(182, 165, 149, 0.2);
  color: var(--color-primary);
}
.schedule-info-box ul li {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}
.schedule-info-box ul li span {
  color: var(--color-primary-dark);
  font-size: 22px;
  width: 85px;
}
.schedule-info-box ul li em,
.schedule-info-box ul li address {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-grey-dark);
}
.schedule-info-box ul li em i {
  font-size: 0.8em;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.3;
}

/* ======================== 반응형 ======================== */
@media (max-width: 1520px) {
}
@media (max-width: 1290px) {
  .hero-video-wrap {
    height: calc(100vh - 250px);
  }
  .hero-video-wrap .swiper-slide {
    border-radius: 300px 0 !important;
  }
  .hero-content-inner {
    padding: 0 50px;
  }
  .hero-swiper-nav {
    left: 50px;
  }
  .hero-video-wrap .swiper-slide .hero-content {
    background: linear-gradient(
      275deg,
      rgba(135, 118, 102, 0) 0.7%,
      #877666c9 57.59%
    );
  }
  /* 병원소개 */
  .text-wrap-inner {
    padding-right: 2.5vw;
    padding-left: 2.5vw;
  }
  .hospital-wrap:nth-of-type(2n) {
    .text-wrap-inner {
      padding-right: 2.5vw;
      padding-left: 2.5vw;
    }
  }
  /* 어디가 아프신가요? */
  .main-title {
    margin-bottom: 60px;
    & h2 {
      font-size: 46px;
    }
    & .main-title-desc {
      font-size: 18px;
    }
  }
  .symptom-slide-card--main .symptom-slide-caption {
    font-size: 22px;
    padding: 10px 20px;
    border-radius: 20px 0 0 0;
  }
  /* 오시는길 및 진료시간 */
  .schedule-content {
    flex-direction: column;
  }
  .schedule-map .root_daum_roughmap .map {
    height: 300px;
  }
  .schedule-info {
    flex-direction: row;
  }
  .schedule-info-box {
    flex: 1;
  }
  .schedule-info-box .schedule-title {
    padding: 6px 20px;
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .hero-video-wrap .swiper-slide {
    border-radius: 250px 0 !important;
  }
  .hero-content-inner {
    padding: 0 30px;
  }
  .hero-swiper-nav {
    left: 30px;
  }
  .hero-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .hero-desc p {
    font-size: 20px;
  }
  /* 병원 소개 */
  .hospital-wrap,
  .hospital-wrap:nth-of-type(2n) {
    flex-direction: column;
    gap: 0;
  }
  .hospital-wrap:nth-of-type(2n) .img-wrap {
    align-self: flex-end;
  }
  .hospital-wrap .img-wrap {
    width: 85%;
  }
  .img-wrap {
    flex: 1;
  }
  .text-wrap {
    flex: 1;
  }
  .hospital-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .hospital-desc {
    font-size: 18px;
    & strong {
      font-size: 1em;
    }
  }
  /* 어디가 아프신가요? */
  .main-title {
    margin-bottom: 45px;
    & h2 {
      font-size: 38px;
    }
    & .line {
      margin: 10px auto 20px;
      width: 80px;
    }
    & .main-title-desc {
      font-size: 18px;
    }
  }
  .symptom-slider {
    flex-direction: column;
    min-height: 0;
  }
  .symptom-slider-main {
    flex: 0 0 auto;
  }
  .symptom-slide-card--main {
    min-height: 260px;
  }
  .symptom-slider-aside {
    flex: 0 0 auto;
    flex-direction: row;
  }
  .symptom-slider-strip {
    justify-content: flex-start;
  }
  /* 진료 과목 */
  .medical-subject-item-rehab .inner-box-inner,
  .medical-subject-item-therapy .inner-box-inner {
    padding: 100px 20px;
  }
  /* 치료후기 */
  .review .inner {
    flex-direction: column;
  }
  .review-left {
    flex-direction: row;
    gap: 40px;
  }
  .review-nav {
    align-self: flex-end;
  }
  .review-right {
    flex: 2 0 100%;
    width: 100%;
    padding-right: 0;
    margin-right: 0;
  }
  /* 진료시간 및 오시는 길 */
  .schedule-info {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-video-wrap .swiper-slide {
    border-radius: 120px 0 !important;
  }
  .hero-content-inner {
    padding: 0 20px;
  }
  .hero-swiper-nav {
    left: 10px;
    bottom: 10px;
  }
  .hero-title {
    font-size: 7.5vw;
    margin-bottom: 20px;
  }
  .hero-desc p {
    font-size: 4.2vw;
  }
  .hero-nav-current,
  .hero-nav-total {
    font-size: 18px;
  }
  .hero-nav-progress {
    width: 80px;
  }
  .hero-video-wrap .swiper-slide .hero-content {
    background: linear-gradient(275deg, #8776668a 0.7%, #877666c9 57.59%);
  }
  /* 병원소개 */
  .hospital-wrap .img-wrap {
    width: 95%;
  }
  .hospital-title {
    font-size: 6vw;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .hospital-title.is-visible b {
    display: block;
  }
  .hospital-desc {
    font-size: 4vw;
  }
  /* 어디가 아프신가요? */
  .main-title {
    margin-bottom: 30px;
    & i {
      font-size: 3.5vw;
      margin-bottom: 5px;
    }
    & h2 {
      font-size: 7vw;
    }
    & .main-title-desc {
      margin-top: 10px;
      font-size: 3.8vw;
    }
  }
  .symptom-slider-btn {
    width: 50px;
    height: 50px;
  }
  .symptom-slide-card--main .symptom-slide-caption {
    font-size: 4.7vw;
  }
  .symptom-slide-card--thumb .symptom-slide-caption {
    font-size: 3.5vw;
  }
  /* 진료 과목 */
  .medical-subject {
    flex-direction: column;
  }
  .medical-subject-item-therapy .inner-box {
    padding: 15px 15px 15px 0;
  }
  .medical-subject-item-rehab .inner-box {
    padding: 15px 0 15px 15px;
  }
  .medical-subject-item-rehab .inner-box-inner,
  .medical-subject-item-therapy .inner-box-inner {
    padding: 70px 40px;
  }
  .main-title.center {
    & .line {
      width: 60px;
      margin: 10px auto 20px;
    }
  }
  .more-btn {
    gap: 7px;
    font-size: 4.5vw;
    padding: 5px 15px;
  }
  /* 치료후기 */
  .review-left {
    flex-direction: column;
    gap: 10px;
  }
  .review .inner {
    display: flex;
    gap: 20px;
  }
  .review-nav-btn {
    width: 38px;
    height: 38px;
  }
  .review-nav {
    gap: 10px;
  }
  .review-nav-progress {
    width: 50px;
    height: 3px;
  }
  .review-nav-current,
  .review-nav-total {
    font-size: 4.5vw;
  }
  /* 오시는길 및 진료시간 */
  .schedule-info-box {
    border-radius: 20px;
    padding: 20px;
  }
  .schedule-info-box .tel {
    font-size: 7vw;
  }
  .schedule-info-box .schedule-title {
    font-size: 6vw;
    margin: 0 -10px 10px;
  }
  .schedule-info-box ul li span {
    font-size: 4.5vw;
    width: 17vw;
    flex-shrink: 0;
  }
  .schedule-info-box ul li em,
  .schedule-info-box ul li address {
    font-size: 4vw;
  }
}
