@charset "UTF-8";
/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - 핵심: selector 컨텍스트(&)로 미디어를 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 72px;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 40px;
  }
}

.title-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 48px;
}
@media (max-width: 1024px) {
  .title-1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .title-1 {
    font-size: 32px;
  }
}

.title-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 1024px) {
  .title-2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .title-2 {
    font-size: 28px;
  }
}

.title-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .title-3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .title-3 {
    font-size: 24px;
  }
}

.title-4 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .title-4 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .title-4 {
    font-size: 20px;
  }
}

.body-1-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-1 {
    font-size: 20px;
  }
}

.body-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-2 {
    font-size: 20px;
  }
}

.body-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-1 {
    font-size: 18px;
  }
}

.body-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-2 {
    font-size: 18px;
  }
}

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-1 {
    font-size: 16px;
  }
}

.body-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

/*==============================*/
/*==============================*/
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body #wrapper {
  flex: 1;
}
body #footer {
  margin-top: auto;
}

.card-grid-wrap {
  display: grid;
}
.card-grid-wrap.col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.card-grid-wrap.col4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.top-guide-box {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  background-color: var(--primary-bg-2);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.top-guide-box::after {
  content: "";
  width: 245px;
  height: 197px;
  background-image: url("../../../assets/images/sub/img-ic-blue.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 69px;
  right: -44px;
}
.top-guide-box .img-box {
  flex-shrink: 0;
  width: 243px;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-guide-box .text-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.top-guide-box .text-box p {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--color-darken);
  text-align: center;
}
@media (max-width: 1024px) {
  .top-guide-box .text-box p {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .top-guide-box .text-box p {
    font-size: 24px;
  }
}

.page-guide-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-guide-list .page-guide-list-item h3.bullet-title {
  margin-bottom: 24px;
}
.page-guide-list .page-guide-list-item .table-wrap {
  margin-top: 24px;
  margin-bottom: 24px;
}
.page-guide-list .page-guide-list-item .guide-text {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .page-guide-list .page-guide-list-item .guide-text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .page-guide-list .page-guide-list-item .guide-text {
    font-size: 20px;
  }
}
.page-guide-list .page-guide-list-item .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 708px;
  margin: 0 auto;
}
.page-guide-list .page-guide-list-item .btn-wrap .btn {
  min-width: 344px;
}
.page-guide-list .page-guide-list-item .btn-wrap + .btn-link {
  max-width: 344px;
  margin: 0 auto;
  margin-top: 16px;
}

.stepbox-wrap {
  margin: 40px 80px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stepbox-wrap.onlytext {
  margin: 0 71px 40px;
}
.stepbox-wrap.onlytext .step-item {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--primary-normal);
  background-color: var(--primary-bg-2);
  justify-content: center;
}
.stepbox-wrap.onlytext .step-item .main-txt {
  text-align: center;
}
.stepbox-wrap.onlytext .step-item .sub-txt {
  text-align: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .stepbox-wrap.onlytext .step-item .sub-txt {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .stepbox-wrap.onlytext .step-item .sub-txt {
    font-size: 16px;
  }
}
.stepbox-wrap.onlytext.racround .step-item {
  height: 104px;
  border-radius: 9999px;
  padding: 10px 20px;
  flex-grow: 1;
}
.stepbox-wrap.arrow {
  align-items: center;
}
.stepbox-wrap.arrow .icon-arrow {
  font-size: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: var(--filter-primary-deep);
  flex-shrink: 0;
}
.stepbox-wrap.arrow .icon-arrow::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../../../assets/images/icon/icon-arrow-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.stepbox-wrap.col6 {
  margin: 0 0 40px;
  gap: 16px;
}
.stepbox-wrap.col6 .step-item {
  width: 190px;
  height: 190px;
}
.stepbox-wrap.col4 {
  margin: 0 0 40px;
  gap: 16px;
}
.stepbox-wrap.col3 {
  margin: 0 147px 40px;
  gap: 32px;
}
.stepbox-wrap .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stepbox-wrap .step-item.bg-secondary {
  border: 2px solid var(--secondary-normal);
  background-color: var(--secondary-light);
}
.stepbox-wrap .step-item.bg-secondary .main-txt {
  color: var(--gray-12);
}
.stepbox-wrap .step-item .img-box {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid var(--primary-normal);
  background-color: var(--primary-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.stepbox-wrap .step-item .img-box img {
  width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.stepbox-wrap .step-item .main-txt {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: var(--primary-deep-active);
}
@media (max-width: 1024px) {
  .stepbox-wrap .step-item .main-txt {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .stepbox-wrap .step-item .main-txt {
    font-size: 20px;
  }
}

/*==============================*/
/*==============================*/
/* 인사말 */
.intro-wrap {
  display: flex;
  position: relative;
}
.intro-wrap .img-box {
  width: 483px;
  height: 612px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.intro-wrap .img-box:before {
  content: "";
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary-light);
  position: absolute;
  left: -86px;
  bottom: -39px;
  z-index: -1;
}
.intro-wrap .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-wrap .text-box {
  margin-left: 72px;
}
.intro-wrap .text-box h3 {
  font-size: 56px;
  font-family: "JeonnamEducationBarun";
  font-weight: 700;
}
.intro-wrap .text-box div {
  margin-top: 24px;
}
.intro-wrap .text-box div p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .intro-wrap .text-box div p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .intro-wrap .text-box div p {
    font-size: 20px;
  }
}
.intro-wrap .text-box div b {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .intro-wrap .text-box div b {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .intro-wrap .text-box div b {
    font-size: 20px;
  }
}

/* 미션 */
.mission-wrap .title {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .mission-wrap .title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .mission-wrap .title {
    font-size: 24px;
  }
}
.mission-wrap .title span {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--primary-deep);
}
@media (max-width: 1024px) {
  .mission-wrap .title span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .mission-wrap .title span {
    font-size: 20px;
  }
}
.mission-wrap .top {
  display: flex;
  gap: 24px;
}
.mission-wrap .top .item {
  width: 100%;
}
.mission-wrap .top .box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 20px;
  border: 2px solid var(--primary-light);
  border-radius: 20px;
  background-color: var(--primary-bg-2);
}
.mission-wrap .top .box p {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--gray-12);
  text-align: center;
}
@media (max-width: 1024px) {
  .mission-wrap .top .box p {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .mission-wrap .top .box p {
    font-size: 24px;
  }
}
.mission-wrap .top .box span {
  color: var(--secondary-deep-hover);
}
.mission-wrap .top .img-box {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-normal-hover);
  background-color: var(--color-white);
  overflow: hidden;
}
.mission-wrap .top .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.mission-wrap .bot {
  margin-top: 70px;
}
.mission-wrap .bot .flex {
  display: flex;
  margin-left: auto;
  gap: 24px;
}
.mission-wrap .bot .box.leftbox {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.mission-wrap .bot .box.leftbox div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}
.mission-wrap .bot .box.leftbox div p {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .mission-wrap .bot .box.leftbox div p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .mission-wrap .bot .box.leftbox div p {
    font-size: 16px;
  }
}
.mission-wrap .bot .box.leftbox div p:nth-child(odd) {
  color: var(--primary-deep);
}
.mission-wrap .bot .box.leftbox div p:nth-child(even) {
  color: var(--secondary-deep);
}
.mission-wrap .bot .box.leftbox h3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: var(--color-darken);
}
@media (max-width: 1024px) {
  .mission-wrap .bot .box.leftbox h3 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .mission-wrap .bot .box.leftbox h3 {
    font-size: 40px;
  }
}
.mission-wrap .bot .box.leftbox img {
  position: absolute;
  top: 100px;
  right: 34px;
}
.mission-wrap .bot .box .round-tit {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  width: 240px;
  margin: 0 auto;
  padding: 5px 0;
  border-radius: 9999px;
}
@media (max-width: 1024px) {
  .mission-wrap .bot .box .round-tit {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .mission-wrap .bot .box .round-tit {
    font-size: 20px;
  }
}
.mission-wrap .bot .box .round-tit.deep {
  background-color: var(--primary-deep-active);
}
.mission-wrap .bot .box .round-tit.blue {
  background-color: var(--color-primary);
}
.mission-wrap .bot .box .round-tit.green {
  background-color: var(--secondary-deep);
}
.mission-wrap .bot .box .cont {
  width: 320px;
  height: 312px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--gray-5);
  margin-top: 16px;
  border-radius: 20px;
  box-shadow: 15px 15px 35px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}
.mission-wrap .bot .box .cont p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--gray-11);
  text-align: center;
}
@media (max-width: 1024px) {
  .mission-wrap .bot .box .cont p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .mission-wrap .bot .box .cont p {
    font-size: 20px;
  }
}
.mission-wrap .bot .box .img-box {
  margin-top: auto;
}
.mission-wrap .bot .box .img-box img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 연혁 */
.history-wrap {
  padding-bottom: 240px;
  background-image: url("../../../assets/images/sub/img-bg-history.png");
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.history-wrap .history {
  max-width: 1430px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.history-wrap .history .history-year {
  width: 50%;
  position: relative;
}
.history-wrap .history .history-year:before {
  content: "";
  width: 8px;
  height: 100%;
  background-color: var(--gray-3);
  position: absolute;
  bottom: 0;
}
.history-wrap .history .history-year:first-child::before {
  height: calc(100% - 12px);
}
.history-wrap .history .history-year:last-child::before {
  bottom: auto;
  top: 0;
  height: 20px;
}
.history-wrap .history .history-year:nth-child(odd) {
  text-align: left;
  margin-left: 50%;
  padding-left: 106px;
}
.history-wrap .history .history-year:nth-child(odd):before {
  left: -4px;
}
.history-wrap .history .history-year:nth-child(odd) .history-dot {
  left: -118px;
}
.history-wrap .history .history-year:nth-child(odd) .history-badge:before {
  left: -74px;
}
.history-wrap .history .history-year:nth-child(even) {
  text-align: right;
  margin-right: 50%;
  padding-right: 106px;
}
.history-wrap .history .history-year:nth-child(even):before {
  right: -4px;
}
.history-wrap .history .history-year:nth-child(even) .history-dot {
  right: -118px;
}
.history-wrap .history .history-year:nth-child(even) .history-badge {
  margin-left: auto;
}
.history-wrap .history .history-year:nth-child(even) .history-badge:before {
  right: -74px;
}
.history-wrap .history .history-year:nth-child(even) .history-event {
  flex-direction: row-reverse;
}
.history-wrap .history .history-rail {
  position: relative;
}
.history-wrap .history .history-dot {
  position: absolute;
  top: 13px;
  width: 24px;
  height: 24px;
  display: block;
}
.history-wrap .history .history-dot::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.history-wrap .history .history-dot::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.history-wrap .history .history-badge {
  max-width: 120px;
  height: 48px;
  border-radius: 24px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  background-color: var(--secondary-light);
  color: var(--secondary-deep-hover);
  position: relative;
}
@media (max-width: 1024px) {
  .history-wrap .history .history-badge {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .history-wrap .history .history-badge {
    font-size: 24px;
  }
}
.history-wrap .history .history-badge:before {
  content: "";
  width: 52px;
  height: 2px;
  position: absolute;
  top: 23px;
  background-image: radial-gradient(circle, var(--color-primary) 1px, transparent 1px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
}
.history-wrap .history .history-body {
  margin-top: 24px;
}
.history-wrap .history .history-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 32px;
}
.history-wrap .history .history-event {
  display: flex;
  gap: 16px;
}
.history-wrap .history .history-month {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-deep-hover);
}
@media (max-width: 1024px) {
  .history-wrap .history .history-month {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .history-wrap .history .history-month {
    font-size: 20px;
  }
}
.history-wrap .history .history-text {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .history-wrap .history .history-text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .history-wrap .history .history-text {
    font-size: 20px;
  }
}

/* 협력병원 */
.collaboration-wrap a {
  height: 130px;
  border: 2px solid var(--gray-5);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.collaboration-wrap a img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.collaboration-wrap a:hover {
  border: 2px solid var(--primary-normal);
  background-color: var(--primary-bg-2);
}

/* 재활의학과 */
.doctorbox-wrap .doc-item {
  border: 2px solid var(--gray-5);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.doctorbox-wrap .doc-item .img-box {
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.doctorbox-wrap .doc-item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctorbox-wrap .doc-item .flex {
  align-items: center;
  flex-direction: column;
}
.doctorbox-wrap .doc-item .name {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--primary-deep-hover);
}
@media (max-width: 1024px) {
  .doctorbox-wrap .doc-item .name {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .doctorbox-wrap .doc-item .name {
    font-size: 28px;
  }
}
.doctorbox-wrap .doc-item .tit {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-deep-active);
}
@media (max-width: 1024px) {
  .doctorbox-wrap .doc-item .tit {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .doctorbox-wrap .doc-item .tit {
    font-size: 20px;
  }
}
.doctorbox-wrap .doc-item ul {
  border-top: 1px solid var(--gray-6);
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}

/* 시설안내 */
.facilities-wrap .main-view-wrapper {
  position: relative;
}
.facilities-wrap .main-view-box .swiper-slide {
  border: 2px solid var(--gray-5);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.facilities-wrap .main-view-box .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: none !important;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.facilities-wrap .main-view-bot {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background-color: var(--color-primary);
  border-radius: 10px;
  margin-top: 8px;
}
.facilities-wrap .main-view-bot .pgn span {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .facilities-wrap .main-view-bot .pgn span {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .facilities-wrap .main-view-bot .pgn span {
    font-size: 24px;
  }
}
.facilities-wrap .main-view-bot .name-box {
  margin-left: auto;
}
.facilities-wrap .main-view-bot .name-box p {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .facilities-wrap .main-view-bot .name-box p {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .facilities-wrap .main-view-bot .name-box p {
    font-size: 24px;
  }
}
.facilities-wrap .control-box {
  width: 100%;
  padding: 0 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.facilities-wrap .control-box button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
  border: 2px solid var(--gray-8);
}
.facilities-wrap .control-box button:before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.facilities-wrap .control-box button.prev:before {
  background-image: url("../../images/icon/icon-arrow-left.svg");
}
.facilities-wrap .control-box button.next:before {
  background-image: url("../../images/icon/icon-arrow-right.svg");
}
.facilities-wrap .thumb-box {
  margin-top: 32px;
}
.facilities-wrap .thumb-box .thumb-btn {
  height: 160px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.facilities-wrap .thumb-box .thumb-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.facilities-wrap .thumb-box .thumb-btn.swiper-slide-thumb-active:after {
  opacity: 1;
  visibility: visible;
}
.facilities-wrap .thumb-box .thumb-btn.swiper-slide-thumb-active:before {
  opacity: 0;
}
.facilities-wrap .thumb-box .thumb-btn:hover::after {
  opacity: 1;
  visibility: visible;
}
.facilities-wrap .thumb-box .thumb-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.facilities-wrap .thumb-box .thumb-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 4px solid var(--secondary-normal-hover);
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.vr-box {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  /* 1) 높이 기준 이미지       */
  /* 2) A-Frame Scene          */
  /* 3) UI 컨트롤 영역         */
  /* 4) 하단 힌트              */
  /* ========================= */
  /* 5) A-Frame 기본 UI 제거   */
  /* ========================= */
}
.vr-box .ratio-img {
  width: 100%;
  height: auto;
  display: block;
  /* 레이아웃 기준만 잡고 화면에서는 숨김 */
  visibility: hidden;
  pointer-events: none;
}
.vr-box a-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vr-box #ui {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vr-box #ui button {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.vr-box #hint {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 10;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
}
.vr-box #vrScene .a-enter-vr-button,
.vr-box #vrScene .a-enter-vr,
.vr-box #vrScene .a-orientation-modal,
.vr-box #vrScene .a-loader-title,
.vr-box #vrScene .a-loader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* 층별안내 */
.floor-wrap .floor-item {
  display: flex;
  align-items: stretch;
  gap: 80px;
  padding: 15px;
  padding-right: 100px;
  border: 2px solid var(--gray-5);
  border-radius: 20px;
}
.floor-wrap .floor-item + .floor-item {
  margin-top: 16px;
}
.floor-wrap .floor-item .tit {
  flex-shrink: 0;
  border-radius: 15px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--color-white);
  padding: 20px;
}
@media (max-width: 1024px) {
  .floor-wrap .floor-item .tit {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .floor-wrap .floor-item .tit {
    font-size: 28px;
  }
}
.floor-wrap .floor-item .flex {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.floor-wrap .floor-item .flex span {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--gray-12);
  display: inline;
  white-space: normal;
}
@media (max-width: 1024px) {
  .floor-wrap .floor-item .flex span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .floor-wrap .floor-item .flex span {
    font-size: 20px;
  }
}

/* 오시는길 */
.map-wrap {
  /* 높이도 맞춰주기 (퍼가기 높이값과 동일하게) */
}
.map-wrap .map-box .root_daum_roughmap,
.map-wrap .map-box .root_daum_roughmap .wrap_map,
.map-wrap .map-box .root_daum_roughmap iframe {
  width: 100% !important;
  max-width: 100% !important;
}
.map-wrap .map-box .root_daum_roughmap,
.map-wrap .map-box .root_daum_roughmap .wrap_map,
.map-wrap .map-box .root_daum_roughmap iframe {
  height: 594px !important;
}
.map-wrap .root_daum_roughmap .cont .section.lst {
  display: none;
}
.map-wrap .box-wrap {
  background-color: var(--color-primary);
  border-radius: 0 0 30px 30px;
  padding: 20px;
  display: flex;
  align-items: center;
}
.map-wrap .box-wrap h3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .map-wrap .box-wrap h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .map-wrap .box-wrap h3 {
    font-size: 20px;
  }
}
.map-wrap .box-wrap h3 br {
  display: none;
}
.map-wrap .box-wrap .btn-copy {
  width: 260px;
  height: 42px;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 9999px;
  background-color: var(--color-white);
  justify-content: center;
  gap: 16px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  .map-wrap .box-wrap .btn-copy {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .map-wrap .box-wrap .btn-copy {
    font-size: 20px;
  }
}
.map-wrap .box-wrap .btn-copy .icon {
  width: 32px;
  height: 32px;
  margin-left: 0;
}
.map-wrap .btn-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.map-wrap .btn-wrap .btn {
  height: 76px;
  width: 100%;
  border: 2px solid var(--color-primary);
  border-radius: 5px;
  justify-content: center;
  gap: 8px;
}
.map-wrap .btn-wrap .btn .icon {
  width: 32px;
  height: 32px;
  margin-left: 0;
}
.map-wrap .btn-wrap .btn span {
  width: 135px;
  flex-shrink: 0;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  .map-wrap .btn-wrap .btn span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .map-wrap .btn-wrap .btn span {
    font-size: 20px;
  }
}
.map-wrap .text-list {
  margin-top: 60px;
}
.map-wrap .text-list span {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .map-wrap .text-list span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .map-wrap .text-list span {
    font-size: 20px;
  }
}

/*==============================*/
/*==============================*/
/* 진료안내 */
.guide-wrap .top-guide-box .text-box .tel {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.guide-wrap .top-guide-box .text-box .tel span {
  color: var(--secondary-deep-hover);
}
.guide-wrap .step-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.guide-wrap .step-box .step-item {
  width: 100%;
  border: 2px solid var(--gray-5);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.guide-wrap .step-box .step-item .img-box {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: 1px solid var(--primary-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.guide-wrap .step-box .step-item .img-box img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.guide-wrap .step-box .step-item .text-box .bullet-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .guide-wrap .step-box .step-item .text-box .bullet-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .guide-wrap .step-box .step-item .text-box .bullet-title {
    font-size: 20px;
  }
}
.guide-wrap .step-box .step-item .text-box .bullet-title + p {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-deep-active);
}
@media (max-width: 1024px) {
  .guide-wrap .step-box .step-item .text-box .bullet-title + p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .guide-wrap .step-box .step-item .text-box .bullet-title + p {
    font-size: 16px;
  }
}
.guide-wrap .step-box .step-item .text-box .bullet-title:before {
  top: 6px;
}
.guide-wrap .step-box .step-item .text-box .cont {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--gray-12);
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .guide-wrap .step-box .step-item .text-box .cont {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .guide-wrap .step-box .step-item .text-box .cont {
    font-size: 16px;
  }
}

.thumb-stepbox {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.thumb-stepbox .thumb-item {
  width: calc(50% - 12px);
  display: flex;
  gap: 24px;
}
.thumb-stepbox .thumb-item.type-line {
  border: 2px solid var(--gray-5);
  border-radius: 20px;
  padding: 30px;
}
.thumb-stepbox .thumb-item.type-line .img-box {
  width: 311px;
  margin-left: auto;
}
.thumb-stepbox .thumb-item.type-line .text .title {
  padding-left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.thumb-stepbox .thumb-item.type-line .text .title .round {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  border-radius: 9999px;
  background-color: var(--secondary-deep);
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .thumb-stepbox .thumb-item.type-line .text .title .round {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .thumb-stepbox .thumb-item.type-line .text .title .round {
    font-size: 20px;
  }
}
.thumb-stepbox .thumb-item.type-line .text .title .round + span {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-secondary);
}
@media (max-width: 1024px) {
  .thumb-stepbox .thumb-item.type-line .text .title .round + span {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .thumb-stepbox .thumb-item.type-line .text .title .round + span {
    font-size: 20px;
  }
}
.thumb-stepbox .thumb-item.reverse {
  flex-direction: row-reverse;
}
.thumb-stepbox .thumb-item.reverse.fluid {
  flex: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.thumb-stepbox .thumb-item.reverse.fluid .text {
  display: flex;
  align-items: center;
  gap: 24px;
}
.thumb-stepbox .thumb-item.reverse.fluid .text .con {
  margin-top: 0;
}
.thumb-stepbox .thumb-item .img-box {
  width: 320px;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.thumb-stepbox .thumb-item .img-box.icon-box {
  border: 1px solid var(--primary-normal);
  background-color: var(--primary-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-stepbox .thumb-item .img-box.icon-box img {
  width: 150px;
  height: 150px;
}
.thumb-stepbox .thumb-item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumb-stepbox .thumb-item .text .title {
  display: flex;
  position: relative;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  padding-left: 32px;
}
@media (max-width: 1024px) {
  .thumb-stepbox .thumb-item .text .title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .thumb-stepbox .thumb-item .text .title {
    font-size: 20px;
  }
}
.thumb-stepbox .thumb-item .text .title .num {
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 6px;
  font-style: normal;
  font-size: 0;
}
.thumb-stepbox .thumb-item .text .title .num:before {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .thumb-stepbox .thumb-item .text .title .num:before {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .thumb-stepbox .thumb-item .text .title .num:before {
    font-size: 18px;
  }
}
.thumb-stepbox .thumb-item .text .title .num.n1:before {
  content: "1";
}
.thumb-stepbox .thumb-item .text .title .num.n2:before {
  content: "2";
}
.thumb-stepbox .thumb-item .text .title .num.n3:before {
  content: "3";
}
.thumb-stepbox .thumb-item .text .title .num.n4:before {
  content: "4";
}
.thumb-stepbox .thumb-item .text .con {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-12);
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .thumb-stepbox .thumb-item .text .con {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .thumb-stepbox .thumb-item .text .con {
    font-size: 18px;
  }
}
.thumb-stepbox .thumb-item .thumb-innerbox {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 9.5px;
}
.thumb-stepbox .thumb-item .thumb-innerbox .box {
  height: 100%;
  border: 2px solid var(--gray-5);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.thumb-stepbox .thumb-item .thumb-innerbox .box .thumb-img {
  height: 240px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.thumb-stepbox .thumb-item .thumb-innerbox .box .thumb-img p {
  height: 100%;
}
.thumb-stepbox .thumb-item .thumb-innerbox .box .thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumb-stepbox .thumb-item .thumb-innerbox .box .thumb-img .chip {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.thumb-stepbox .thumb-item .thumb-innerbox .box p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .thumb-stepbox .thumb-item .thumb-innerbox .box p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .thumb-stepbox .thumb-item .thumb-innerbox .box p {
    font-size: 18px;
  }
}
.thumb-stepbox .thumb-item .thumb-innerbox .icon-arrow-right {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  filter: var(--filter-primary-deep-hover);
}

/*==============================*/
/*==============================*/
.data-img-box img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.thumb-info-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.thumb-info-list .thumb-info-item {
  display: flex;
  gap: 40px;
  position: relative;
}
.thumb-info-list .thumb-info-item.reverse {
  flex-direction: row-reverse;
}
.thumb-info-list .thumb-info-item.reverse .text-box h3, .thumb-info-list .thumb-info-item.reverse .text-box p {
  text-align: right;
}
.thumb-info-list .thumb-info-item.reverse .text-box .btn-open {
  margin-right: 0;
  margin-left: auto;
}
.thumb-info-list .thumb-info-item.reverse .flex {
  flex-direction: row-reverse;
}
.thumb-info-list .thumb-info-item.reverse .flex .bg-img {
  margin-left: 0;
  margin-right: auto;
}
.thumb-info-list .thumb-info-item .img-box {
  width: 700px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.thumb-info-list .thumb-info-item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumb-info-list .thumb-info-item .text-box {
  width: 100%;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
}
.thumb-info-list .thumb-info-item .text-box h3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .thumb-info-list .thumb-info-item .text-box h3 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .thumb-info-list .thumb-info-item .text-box h3 {
    font-size: 28px;
  }
}
.thumb-info-list .thumb-info-item .text-box h3 + p {
  margin-top: 24px;
}
.thumb-info-list .thumb-info-item .text-box p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-11);
}
@media (max-width: 1024px) {
  .thumb-info-list .thumb-info-item .text-box p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .thumb-info-list .thumb-info-item .text-box p {
    font-size: 18px;
  }
}
.thumb-info-list .thumb-info-item .text-box .btn-open {
  margin-right: auto;
}
.thumb-info-list .thumb-info-item .text-box .btn-open:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}
.thumb-info-list .thumb-info-item .text-box .btn-open:hover .icon {
  filter: var(--filter-white);
}
.thumb-info-list .thumb-info-item .flex {
  margin-top: 40px;
}
.thumb-info-list .thumb-info-item .flex .bg-img {
  margin-left: auto;
}
.thumb-info-list .thumb-info-item .bg-img {
  width: 223px;
  height: 190px;
}

.video-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.video-wrap .video-box {
  width: 100%;
}
.video-wrap .video-box .video-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.video-wrap .video-box .video-thumb,
.video-wrap .video-box iframe,
.video-wrap .video-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-wrap .video-box .video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: var(--color-white);
}
.video-wrap .video-box .video-play:hover {
  background: rgba(0, 0, 0, 0.7);
}
.video-wrap .video-box .video-play:focus {
  outline: none;
}
.video-wrap .video-box .video-play:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}
.video-wrap .video-box .video-play .icon {
  width: 36px;
  height: 36px;
}
.video-wrap .cont-box {
  border: 2px solid var(--gray-5);
  border-radius: 20px;
  padding: 40px 50px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--gray-12);
  text-align: center;
}
@media (max-width: 1024px) {
  .video-wrap .cont-box {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .video-wrap .cont-box {
    font-size: 20px;
  }
}

/*==============================*/
/*==============================*/
/* 개인정보처리방침 */
.terms-wrap {
  display: flex;
  flex-direction: column;
}
.terms-wrap .top-date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  margin-bottom: 16px;
}
.terms-wrap .top-date span {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-11);
}
@media (max-width: 1024px) {
  .terms-wrap .top-date span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .terms-wrap .top-date span {
    font-size: 18px;
  }
}
.terms-wrap .top-date span + span {
  padding-left: 16px;
  position: relative;
}
.terms-wrap .top-date span + span::before {
  content: "";
  width: 1px;
  height: 16px;
  background-color: var(--gray-11);
  position: absolute;
  top: 7px;
  left: 0;
}
.terms-wrap .terms-box {
  padding: 30px;
  border: 2px solid var(--gray-5);
  border-radius: 20px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.terms-wrap .terms-box + .terms-box {
  margin-top: 24px;
}
.terms-wrap .terms-box p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .terms-wrap .terms-box p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .terms-wrap .terms-box p {
    font-size: 18px;
  }
}
.terms-wrap .terms-box b {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--gray-12);
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  .terms-wrap .terms-box b {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .terms-wrap .terms-box b {
    font-size: 18px;
  }
}
.terms-wrap .terms-box .bullet-title.depth1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  .terms-wrap .terms-box .bullet-title.depth1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .terms-wrap .terms-box .bullet-title.depth1 {
    font-size: 18px;
  }
}
.terms-wrap .terms-box .bullet-title.depth1:before {
  top: 3px;
}
.terms-wrap .terms-box .bullet-title.num.depth3:before {
  top: 6px;
}
.terms-wrap .terms-box .table-wrap {
  margin-top: 24px;
  margin-bottom: 24px;
}

/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - 핵심: selector 컨텍스트(&)로 미디어를 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 72px;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 40px;
  }
}

.title-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 48px;
}
@media (max-width: 1024px) {
  .title-1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .title-1 {
    font-size: 32px;
  }
}

.title-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 1024px) {
  .title-2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .title-2 {
    font-size: 28px;
  }
}

.title-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .title-3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .title-3 {
    font-size: 24px;
  }
}

.title-4 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .title-4 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .title-4 {
    font-size: 20px;
  }
}

.body-1-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-1 {
    font-size: 20px;
  }
}

.body-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-2 {
    font-size: 20px;
  }
}

.body-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-1 {
    font-size: 18px;
  }
}

.body-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-2 {
    font-size: 18px;
  }
}

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-1 {
    font-size: 16px;
  }
}

.body-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

/* page media 1430 */
@media (max-width: 1430px) {
  /*==============================*/
  /*==============================*/
  .top-guide-box .text-box p br {
    display: none;
  }
  .page-guide-list {
    gap: 64px;
  }
  .stepbox-wrap.onlytext {
    margin: 0 0 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stepbox-wrap.col6 .step-item {
    width: 176px;
    height: 176px;
  }
  /*==============================*/
  /*==============================*/
  /* 미션 */
  .mission-wrap .bot .flex {
    flex-wrap: wrap;
  }
  .mission-wrap .bot .box {
    flex: 1 1 0;
  }
  .mission-wrap .bot .box.leftbox {
    flex-basis: 100%;
  }
  .mission-wrap .bot .box.leftbox img {
    right: 0;
    left: 160px;
    top: -30px;
  }
  .mission-wrap .bot .box .cont {
    width: 100%;
  }
  /* 연혁 */
  .history-wrap {
    padding-left: 50px;
    padding-right: 50px;
  }
  /* 협력병원 */
  .collaboration-wrap.card-grid-wrap.col4 {
    grid-template-columns: repeat(3, 1fr);
  }
  /* 시설안내 */
  .facilities-wrap .thumb-box {
    grid-template-columns: repeat(3, 1fr);
  }
  /*==============================*/
  /*==============================*/
  .thumb-stepbox .thumb-item.type-line .img-box {
    width: 50%;
    height: 210px;
  }
  .thumb-stepbox .thumb-item .img-box {
    width: 50%;
    height: 190px;
  }
  /*==============================*/
  /*==============================*/
  .thumb-info-list .thumb-info-item .img-box {
    width: 50%;
    flex-shrink: inherit;
  }
  .thumb-info-list .thumb-info-item .img-box img {
    height: 100%;
  }
  .thumb-info-list .thumb-info-item .text-box {
    width: 50%;
    flex-shrink: 0;
  }
}
/* page media 1024 */
@media (max-width: 1024px) {
  /*==============================*/
  /*==============================*/
  .card-grid-wrap {
    display: grid;
  }
  .card-grid-wrap.col3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .card-grid-wrap.col4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .top-guide-box {
    flex-direction: column;
    gap: 16px;
  }
  .page-guide-list {
    gap: 48px;
  }
  .page-guide-list .page-guide-list-item .btn-wrap {
    max-width: 100%;
  }
  .page-guide-list .page-guide-list-item .btn-wrap .btn {
    min-width: 302px;
  }
  .page-guide-list .page-guide-list-item .btn-wrap + .btn-link {
    max-width: 302px;
  }
  .stepbox-wrap {
    margin: 40px 40px 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 0;
  }
  .stepbox-wrap.onlytext {
    flex-direction: column;
  }
  .stepbox-wrap.onlytext.racround .step-item {
    border-radius: 10px;
  }
  .stepbox-wrap.onlytext .step-item {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 5px;
    padding: 10px 20px 10px 52px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }
  .stepbox-wrap.onlytext .step-item:before {
    content: "";
    font-family: "Pretendard", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--color-white);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    background-image: none;
    border-radius: 2px;
    flex-shrink: 0;
    position: absolute;
    top: 16;
    left: 20px;
  }
  /*==============================*/
  /*==============================*/
  /* 인사말 */
  /* 미션 */
  /* 연혁 */
  /* 협력병원 */
  /* 재활의학과 */
  /* 시설안내 */
  /* 층별안내 */
  /* 오시는길 */
  /*==============================*/
  /*==============================*/
  /* 진료안내 */
  /*==============================*/
  /*==============================*/
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .stepbox-wrap.onlytext .step-item:before {
    font-size: 18px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .stepbox-wrap.onlytext .step-item:before {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .stepbox-wrap.onlytext .step-item:first-child:before {
    content: "1";
  }
  .stepbox-wrap.onlytext .step-item:nth-child(3):before {
    content: "2";
  }
  .stepbox-wrap.onlytext .step-item:nth-child(5):before {
    content: "3";
  }
  .stepbox-wrap.onlytext .step-item:nth-child(7):before {
    content: "4";
  }
  .stepbox-wrap.onlytext .step-item:nth-child(9):before {
    content: "5";
  }
  .stepbox-wrap.onlytext .step-item:nth-child(11):before {
    content: "6";
  }
  .stepbox-wrap.onlytext .step-item .sub-txt br {
    display: none;
  }
  .stepbox-wrap.arrow .icon-arrow {
    display: none;
  }
  .stepbox-wrap .step-item {
    flex: 0 0 calc(33.333% - 16px);
  }
  .intro-wrap {
    flex-direction: column;
    align-items: center;
  }
  .intro-wrap .img-box {
    width: 460px;
    height: 580px;
    border-radius: 238.03px;
  }
  .intro-wrap .img-box:before {
    width: 300px;
    height: 300px;
    left: -48px;
    bottom: -33px;
  }
  .intro-wrap .text-box {
    margin-left: 0;
    margin-top: 72px;
  }
  .intro-wrap .text-box h3 {
    font-size: 40px;
    margin-bottom: 8px;
  }
  .intro-wrap .text-box div {
    margin-top: 16px;
  }
  .mission-wrap .top {
    flex-direction: column;
  }
  .mission-wrap .bot .flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-wrap .bot .box.leftbox img {
    left: 140px;
    top: 80px;
  }
  .mission-wrap .bot .box .cont {
    height: auto;
    gap: 20px;
  }
  .mission-wrap .bot .box .img-box {
    height: 120px;
    text-align: center;
  }
  .mission-wrap .bot .box .img-box img {
    width: auto;
    height: 100%;
  }
  .history-wrap .history .history-year:nth-child(odd) {
    padding-left: 28px;
  }
  .history-wrap .history .history-year:nth-child(odd) .history-dot {
    left: -40px;
  }
  .history-wrap .history .history-year:nth-child(even) {
    padding-right: 28px;
  }
  .history-wrap .history .history-year:nth-child(even) .history-dot {
    right: -40px;
  }
  .history-wrap .history .history-year .history-badge:before {
    display: none;
  }
  .collaboration-wrap {
    gap: 16px;
  }
  .collaboration-wrap.card-grid-wrap.col4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .collaboration-wrap a {
    height: 100px;
  }
  .doctorbox-wrap.card-grid-wrap.col3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .doctorbox-wrap .doc-item {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    grid-template-areas: "photo head" "photo list";
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 16px;
  }
  .doctorbox-wrap .doc-item .img-box {
    grid-area: photo;
    aspect-ratio: 1/1;
    border-radius: 10px;
  }
  .doctorbox-wrap .doc-item .flex {
    grid-area: head;
    flex-direction: row;
    gap: 10px;
  }
  .doctorbox-wrap .doc-item ul {
    grid-area: list;
  }
  .facilities-wrap .thumb-box {
    height: auto;
    margin-top: 24px;
  }
  .facilities-wrap .thumb-box .thumb-btn {
    height: 110px;
    flex-shrink: 0;
  }
  .floor-wrap .floor-item {
    gap: 40px;
  }
  .map-wrap .box-wrap {
    padding: 20px 30px;
    border-radius: 0 0 20px 20px;
    align-items: flex-start;
  }
  .map-wrap .box-wrap h3 br {
    display: block;
  }
  .map-wrap .box-wrap .btn-copy {
    width: auto;
    height: 34px;
    gap: 8px;
    padding: 0 12.5px;
    font-family: "Pretendard", sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-top: auto;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .map-wrap .box-wrap .btn-copy {
    font-size: 16px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .map-wrap .box-wrap .btn-copy {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .map-wrap .box-wrap .btn-copy .icon {
    width: 16px;
    height: 16px;
  }
  .map-wrap .btn-wrap {
    gap: 8px;
  }
  .map-wrap .btn-wrap .btn {
    height: 72px;
  }
  .map-wrap .text-list {
    margin-top: 48px;
  }
  .map-wrap .text-list .depth1 {
    font-family: "Pretendard", sans-serif;
    font-weight: 700;
    font-size: 40px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .map-wrap .text-list .depth1 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .map-wrap .text-list .depth1 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .guide-wrap .step-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .guide-wrap .step-box .step-item {
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding: 20px;
    gap: 24px;
  }
  .guide-wrap .step-box .step-item .img-box {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    border-radius: 0;
    border: 0;
    margin-left: auto;
  }
  .thumb-stepbox .thumb-item {
    flex-direction: column;
  }
  .thumb-stepbox .thumb-item.type-line {
    width: 100%;
    flex-direction: row;
  }
  .thumb-stepbox .thumb-item.type-line .img-box {
    height: auto;
  }
  .thumb-stepbox .thumb-item.reverse {
    width: calc(50% - 12px);
    flex-direction: column-reverse;
  }
  .thumb-stepbox .thumb-item.reverse .img-box {
    width: 100%;
  }
  .thumb-stepbox .thumb-item.reverse.fluid {
    flex-direction: column;
    justify-content: flex-start;
  }
  .thumb-stepbox .thumb-item.reverse.fluid .text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .thumb-stepbox .thumb-item.reverse.fluid .text .con {
    margin-top: 24px;
  }
  .thumb-stepbox .thumb-item .img-box {
    width: 100%;
    height: auto;
  }
  .thumb-stepbox .thumb-item .img-box.icon-box {
    padding: 40px 0;
  }
  .thumb-stepbox .thumb-item .img-box.icon-box img {
    width: 100px;
    height: 100px;
  }
  .thumb-stepbox .thumb-innerbox {
    width: 1024px;
    overflow-x: scroll;
  }
  .thumb-stepbox .thumb-innerbox .box {
    flex-shrink: 0;
  }
  .video-wrap {
    gap: 24px;
  }
  .video-wrap .cont-box {
    padding: 20px 30px;
  }
  .thumb-info-list .thumb-info-item {
    flex-direction: column;
  }
  .thumb-info-list .thumb-info-item.reverse {
    flex-direction: column;
  }
  .thumb-info-list .thumb-info-item.reverse .text-box h3, .thumb-info-list .thumb-info-item.reverse .text-box p {
    text-align: left;
  }
  .thumb-info-list .thumb-info-item.reverse .text-box .flex {
    flex-direction: row;
  }
  .thumb-info-list .thumb-info-item.reverse .text-box .btn-open {
    margin-left: 0;
  }
  .thumb-info-list .thumb-info-item .img-box {
    width: 100%;
  }
  .thumb-info-list .thumb-info-item .text-box {
    width: 100%;
    padding: 0;
  }
  .thumb-info-list .thumb-info-item .bg-img {
    display: none;
  }
}
/* page media 768 */
@media (max-width: 768px) {
  /*==============================*/
  /*==============================*/
  .card-grid-wrap {
    display: grid;
  }
  .card-grid-wrap.col3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .card-grid-wrap.col4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .top-guide-box {
    border-radius: 20px;
    padding: 20px;
  }
  .page-guide-list {
    gap: 40px;
  }
  .page-guide-list .page-guide-list-item h3.bullet-title::before {
    top: 6px;
  }
  .page-guide-list .page-guide-list-item .btn-wrap .btn {
    min-width: auto;
    width: 100%;
  }
  .page-guide-list .page-guide-list-item .btn-wrap + .btn-link {
    max-width: 100%;
  }
  .stepbox-wrap {
    margin: 0;
    margin-top: 40px;
    flex-direction: column;
    gap: 8px;
  }
  .stepbox-wrap.onlytext {
    gap: 8px;
  }
  .stepbox-wrap.onlytext .step-item {
    flex-direction: column;
    gap: 0;
  }
  .stepbox-wrap.onlytext .step-item .main-txt {
    width: 100%;
  }
  .stepbox-wrap .step-item {
    flex: 1;
    padding: 10px 43.5px;
    border-radius: 10px;
    background-color: var(--primary-bg-2);
    border: 2px solid var(--primary-normal);
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
  .stepbox-wrap .step-item .img-box {
    width: auto;
    height: auto;
    flex-shrink: 0;
    background-color: transparent;
    border: 0;
    border-radius: inherit;
  }
  .stepbox-wrap .step-item .img-box img {
    width: 60px;
  }
  .stepbox-wrap .step-item .main-txt {
    width: 165px;
    text-align: center;
    flex-shrink: 0;
  }
  .stepbox-wrap .step-item .main-txt br {
    display: none;
  }
  .stepbox-wrap .step-item .sub-txt {
    text-align: center;
    padding-left: 0;
  }
  .text-list li .depth2 {
    padding-left: 16px;
  }
  /*==============================*/
  /*==============================*/
  /* 인사말 */
  .intro-wrap .img-box {
    width: 238px;
    height: 301px;
    border-radius: 123.74px;
  }
  .intro-wrap .img-box:before {
    width: 200px;
    height: 200px;
    left: -35px;
    bottom: -16px;
  }
  .intro-wrap .text-box h3 {
    font-size: 32px;
  }
  /* 미션 */
  .mission-wrap .top .box {
    flex-direction: column;
    gap: 24px;
  }
  .mission-wrap .bot {
    margin-top: 32px;
  }
  .mission-wrap .bot .flex {
    grid-template-columns: repeat(1, 1fr);
  }
  .mission-wrap .bot .box {
    width: 100%;
  }
  .mission-wrap .bot .box.leftbox {
    display: none;
  }
  /* 연혁 */
  .history-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .history-wrap .history .history-year {
    width: 100%;
  }
  .history-wrap .history .history-year + .history-year {
    padding-top: 40px;
  }
  .history-wrap .history .history-year:last-child::before {
    height: 70px;
  }
  .history-wrap .history .history-year:nth-child(odd) {
    margin-left: 0;
  }
  .history-wrap .history .history-year:nth-child(even) {
    margin-right: 0;
    padding-right: 0;
    padding-left: 28px;
    text-align: left;
  }
  .history-wrap .history .history-year:nth-child(even):before {
    right: auto;
    left: -4px;
  }
  .history-wrap .history .history-year:nth-child(even) .history-dot {
    right: auto;
    left: -40px;
  }
  .history-wrap .history .history-year:nth-child(even) .history-badge {
    margin-left: 0;
  }
  .history-wrap .history .history-year:nth-child(even) .history-event {
    flex-direction: row;
  }
  /* 협력병원 */
  .collaboration-wrap {
    gap: 8px;
  }
  .collaboration-wrap a {
    height: 60px;
    padding: 0 20px;
  }
  /* 재활의학과 */
  .doctorbox-wrap .doc-item {
    grid-template-columns: 50% minmax(0, 1fr);
    grid-template-areas: "photo head" "list  list";
    padding: 20px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .doctorbox-wrap .doc-item .flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  /* 시설안내 */
  .facilities-wrap .control-box {
    display: none;
  }
  .facilities-wrap .main-view-bot {
    padding: 10px 20px;
  }
  .facilities-wrap .thumb-box {
    margin-top: 16px;
  }
  .facilities-wrap .thumb-box .thumb-btn {
    height: 70px;
    border-radius: 5px;
  }
  .facilities-wrap .thumb-box .thumb-btn::after {
    border: 2px solid var(--secondary-normal-hover);
    border-radius: 5px;
  }
  .vr-box #ui, .vr-box #hint {
    display: none;
  }
  /* 층별안내 */
  .floor-wrap .floor-item {
    gap: 24px;
    flex-direction: column;
    padding-right: 15px;
  }
  .floor-wrap .floor-item .tit {
    width: 100%;
    padding: 0 20px;
  }
  .floor-wrap .floor-item .flex {
    width: 100%;
  }
  /* 오시는길 */
  .map-wrap .box-wrap {
    padding: 20px;
    flex-direction: column;
    gap: 10px;
  }
  .map-wrap .box-wrap h3 br {
    display: none;
  }
  .map-wrap .box-wrap .btn-copy {
    margin-left: 0;
  }
  .map-wrap .btn-wrap {
    flex-direction: column;
  }
  .map-wrap .btn-wrap .btn {
    height: 52px;
  }
  .map-wrap .btn-wrap .btn span {
    width: 110px;
  }
  .map-wrap .text-list {
    margin-top: 32px;
  }
  /*==============================*/
  /*==============================*/
  /* 진료안내 */
  .guide-wrap .tel-box {
    padding: 10px 20px;
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .guide-wrap .tel-box span + span {
    margin-left: auto;
    padding-left: 0;
  }
  .guide-wrap .tel-box:before {
    width: 141px;
    height: 111px;
    left: auto;
    right: -20px;
    bottom: -17.481px;
  }
  .guide-wrap .step-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .guide-wrap .step-box .step-item {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .guide-wrap .step-box .step-item .img-box {
    display: none;
  }
  .thumb-stepbox {
    flex-direction: column;
  }
  .thumb-stepbox .thumb-item {
    width: 100%;
    padding: 20px;
  }
  .thumb-stepbox .thumb-item.type-line {
    padding: 20px;
    flex-direction: column;
  }
  .thumb-stepbox .thumb-item.type-line .img-box {
    width: 100%;
    height: auto;
  }
  .thumb-stepbox .thumb-item.reverse {
    width: 100%;
    flex-direction: column-reverse;
    gap: 16px;
  }
  .thumb-stepbox .thumb-item .img-box {
    height: auto;
  }
  .thumb-stepbox .thumb-item .img-box.icon-box {
    padding: 30px 0;
  }
  .thumb-stepbox .thumb-item .thumb-innerbox {
    overflow: hidden;
    flex-direction: column;
  }
  .thumb-stepbox .thumb-item .thumb-innerbox .box {
    width: 100%;
  }
  .thumb-stepbox .thumb-item .thumb-innerbox .box .thumb-img {
    height: auto;
  }
  .thumb-stepbox .thumb-item .thumb-innerbox .icon-arrow-right {
    display: none;
  }
  /*==============================*/
  /*==============================*/
  .video-wrap {
    gap: 16px;
  }
  .video-wrap .cont-box {
    padding: 10px;
  }
  .thumb-info-list .thumb-info-item .flex {
    margin-top: 24px;
  }
  /*==============================*/
  /*==============================*/
  /* 개인정보처리방침 */
  .terms-wrap .top-date {
    gap: 0;
    flex-direction: column;
    align-items: center;
  }
  .terms-wrap .top-date span + span {
    padding-left: 0;
  }
  .terms-wrap .top-date span + span::before {
    display: none;
  }
  .terms-wrap .terms-box {
    padding: 20px;
    border: 2px solid var(--gray-5);
    gap: 24px;
  }
}