@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); */
/* NotoSans 쓸 경우 주석 풀고, body 적용 */

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KimjungchulScript";
  src: url("fonts/KimjungchulScript-Bold.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: "Gmarket Sans TTF";
  src: url("fonts/GmarketSansLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gmarket Sans TTF";
  src: url("fonts/GmarketSansMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gmarket Sans TTF";
  src: url("fonts/GmarketSansBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
} */

* {
  word-break: keep-all;
  box-sizing: border-box;
}

body {
  font-family:
    "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

html {
  font-family:
    "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

/* 초기화 */
html {
  overflow-y: auto !important;
  overflow-x: clip;
  max-width: 100%;
}

body {
  overflow-x: clip;
  max-width: 100%;
}

.site-wrap {
  overflow-x: clip;
  max-width: 100%;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-family: inherit !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

label,
input,
button,
select,
img {
  vertical-align: middle;
  font-size: 1em;
}

input,
button {
  margin: 0;
  padding: 0;
  font-family: inherit !important;
}

input[type="submit"] {
  cursor: pointer;
}

button {
  cursor: pointer;
}

textarea,
select {
  font-family: inherit !important;
}

select {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

pre {
  overflow-x: scroll;
  font-size: 1.1em;
}

a {
  color: inherit;
  text-decoration: none;
}

/*head.sub.php로 셋팅하는 값 = full-h, full-w*/
:root {
  --primary: #003378;
  --seconday: #4b555d;
  --ca-color: #003378;
  /* --full-h: calc(var(--vh, 1vh) * 100);
  --full-w: calc(var(--vw, 1vw) * 100); */
  --header-h: 60px;
  --lnb-h: 48px;
  --main-header-h: 68px;
}

.overlay {
  position: relative;
}

/* .overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
} */

#header,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#header.active,
.site-header.active {
  background-color: #fff !important;
  color: #26282e !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
}

.site-header:not(.active) .site-header__logo-img {
  filter: brightness(0) invert(1);
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

/* ---- PC 헤더 메가 드롭다운 (Figma nav-호버시) ---- */
.site-header__mega {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--main-header-h, 68px);
  height: 390px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 45;
}

@media (min-width: 1024px) {
  .site-header__mega {
    top: 96px;
  }
}

.site-header.is-mega-open .site-header__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header__mega-panel {
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header__mega-track {
  min-height: 390px;
}

.site-header__mega-cols {
  position: relative;
  width: 100%;
}

.site-header__mega-col {
  transition: background-color 0.15s ease;
}

.site-header__mega-col.is-current,
.site-header__mega-col.is-hover {
  background: rgba(0, 154, 222, 0.2);
}

.site-header__mega-link {
  width: 100%;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.site-header__mega-link.is-active {
  color: #003378;
  font-weight: 600;
}

.site-header__mega-link.is-parent-active {
  color: #003378;
  font-weight: 500;
}

.site-header__mega-sublink {
  width: 100%;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.site-header__mega-sublink.is-active {
  color: #003378;
  font-weight: 600;
}

.site-header__nav-link.is-current {
  color: #003378;
}

.site-header.is-mega-open .site-header__nav-item.is-hover .site-header__nav-link {
  color: #003378;
}

@media (max-width: 1023px) {
  .site-header__mega {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.main-page {
  padding-top: var(--main-header-h);
  overflow-x: clip;
  max-width: 100%;
}

@media (min-width: 1024px) {
  :root {
    --main-header-h: 96px;
  }
}

/* 배너 + 인트로바 = 뷰포트 높이 (Figma 590 + 310) */
.main-visual {
  position: relative;
  height: calc(100vh - var(--main-header-h));
  height: calc(100dvh - var(--main-header-h));
  display: grid;
  grid-template-rows: minmax(0, 590fr) minmax(0, 310fr);
  overflow: hidden;
}

/* ---- main banner (Figma 4:48) ---- */
.main-banner {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.main-banner__visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.main-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-banner__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 51, 120, 0.1);
  pointer-events: none;
}

.main-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}

.main-banner__text {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  max-width: 534px;
  color: #fff;
}

.main-banner__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 510px;
}

.main-banner__line1 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.main-banner__line1 span {
  color: #fff;
}

.main-banner__line2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.main-banner__desc {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

.main-banner__desc p {
  margin: 0;
}

.main-banner__accent {
  font-weight: 600;
  color: #003378;
}

.main-banner__floating {
  display: flex;
  position: fixed;
  z-index: 40;
  right: 12px;
  bottom: 24px;
  flex-direction: column;
  gap: 8px;
}

.main-banner__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 52px;
  padding: 16px 0;
  border-radius: 30px;
  background-color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.main-banner__sns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: #4b555d;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.main-banner__sns-item span {
  display: none;
}

.main-banner__sns-item:hover {
  color: #003378;
}

.main-banner__sns-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.main-banner__sns-icon--instagram {
  width: 30px;
  height: 30px;
}

.main-banner__sns-icon--map {
  width: 33px;
  height: 33px;
}

.main-banner__sns-divider {
  display: block;
  width: 36px;
  height: 1px;
  background-color: #d9dcdf;
}

.main-banner__top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  color: #4b555d;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.main-banner__top-btn i {
  font-size: 1.5rem;
  line-height: 1;
}

.main-banner__top-btn:hover {
  background-color: #f6f8fa;
}

/* ---- main intro bar (Figma 9:99) ---- */
.main-intro-bar {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background-color: #003378;
}

.main-intro-bar__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}

.main-intro-bar__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 574px;
  width: 100%;
}

.main-intro-bar__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #fff;
}

.main-intro-bar__sub {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.main-intro-bar__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 0 5.7px rgba(0, 0, 0, 0.5);
}

.main-intro-bar__more {
  position: relative;
  display: inline-block;
  width: 162px;
  height: 46px;
  text-decoration: none;
}

.main-intro-bar__more-text {
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.main-intro-bar__more:hover .main-intro-bar__more-text {
  transform: translateX(6px);
}

.main-intro-bar__more-icon {
  position: absolute;
  left: 116px;
  top: 0;
  width: 46px;
  height: 46px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.main-intro-bar__more:hover .main-intro-bar__more-icon {
  transform: scale(1.12);
}

.main-intro-bar__more-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-intro-bar__bear {
  display: none;
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 50%;
  width: 10rem;
  height: auto;
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 4px 15.7px rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

@media (min-width: 1024px) {

  .main-banner__inner,
  .main-intro-bar__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .main-banner__text {
    gap: 63px;
  }

  .main-banner__head {
    gap: 10px;
  }

  .main-banner__line1 {
    font-size: 40px;
  }

  .main-banner__line2 {
    font-size: 50px;
  }

  .main-banner__desc {
    font-size: 24px;
  }

  .main-banner__floating {
    display: flex;
    right: 5%;
    top: calc(var(--main-header-h) + 99px);
    bottom: auto;
    gap: 1.25rem;
  }

  .main-banner__sns {
    width: 98px;
    padding: 2rem 0;
    border-radius: 127px;
    gap: 1.25rem;
  }

  .main-banner__sns-item span {
    display: inline;
  }

  .main-banner__sns-divider {
    width: 77px;
  }

  .main-banner__top-btn {
    width: 98px;
    height: 98px;
  }

  .main-banner__top-btn i {
    font-size: 2rem;
  }

  .main-intro-bar__content {
    gap: 30px;
  }

  .main-intro-bar__sub {
    font-size: 30px;
  }

  .main-intro-bar__title {
    font-size: 44px;
  }

  .main-intro-bar__more-text {
    font-size: 20px;
  }

  .main-intro-bar__bear {
    display: block;
    right: max(1rem, calc((100% - 1214px) / 2));
    width: 305px;
  }
}

.main-intro-bar__deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.main-intro-bar__deco--left {
  width: 616px;
  height: 616px;
  left: -184px;
  top: -248px;
}

.main-intro-bar__deco--right {
  width: 622px;
  height: 622px;
  right: -120px;
  top: -52px;
}

.main-more-btn {
  position: relative;
}

.main-more-btn__circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid currentColor;
  color: #003378;
  transition: background-color 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.main-more-btn:hover .main-more-btn__circle {
  transform: scale(1.1);
}

.main-more-btn__arrow {
  display: block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  will-change: transform;
}

.main-more-btn:hover .main-more-btn__arrow {
  filter: brightness(0) invert(1);
}

.main-more-btn__circle--white {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ---- main community (Figma 4:89) ---- */
.main-community {
  background-color: #fff;
  padding: 3rem 0;
}

.main-community__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main-community__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 534px;
}

.main-community__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #26282e;
}

.main-community__desc {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #4b555d;
}

.main-community__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.main-community__card {
  position: relative;
  display: block;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
  color: #fff;
  text-decoration: none;
}

.main-community__card--notice {
  background-color: #009ade;
}

.main-community__card--fee {
  background-color: #003378;
}

.main-community__label {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.main-community__body {
  margin-top: 1rem;
  max-width: 280px;
}

.main-community__body p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.main-community__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-top: 2rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.main-community__card:hover .main-community__arrow {
  transform: scale(1.12);
}

.main-community__arrow img {
  display: block;
  width: 52px;
  height: 52px;
  transform: rotate(90deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.main-community__card:hover .main-community__arrow img {
  transform: rotate(90deg) translateX(6px);
}

.main-community__illust--notice {
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  width: 140px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.main-community__illust--fee-wrap {
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
  width: 160px;
  height: 150px;
  overflow: hidden;
  pointer-events: none;
}

.main-community__illust--fee {
  position: absolute;
  width: 141.35%;
  height: 151.55%;
  left: -25%;
  top: -51.55%;
  max-width: none;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .main-community {
    padding: 100px 0;
  }

  .main-community__inner {
    padding-left: 0;
    padding-right: 0;
    gap: 50px;
  }

  .main-community__head {
    gap: 24px;
  }

  .main-community__title {
    font-size: 50px;
  }

  .main-community__desc {
    font-size: 18px;
  }

  .main-community__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .main-community__card {
    height: 450px;
    min-height: 450px;
    padding: 0;
  }

  .main-community__label {
    position: absolute;
    left: 50px;
    top: 50px;
    font-size: 18px;
  }

  .main-community__body {
    position: absolute;
    left: 50px;
    top: 97px;
    margin-top: 0;
    max-width: none;
  }

  .main-community__body p {
    font-size: 24px;
  }

  .main-community__arrow {
    position: absolute;
    left: 50px;
    top: 227px;
    margin-top: 0;
  }

  .main-community__illust--notice {
    left: 445px;
    top: 190px;
    right: auto;
    bottom: auto;
    width: 227px;
    height: 227px;
    object-fit: cover;
  }

  .main-community__illust--fee-wrap {
    left: 462px;
    top: 221px;
    right: auto;
    bottom: auto;
    width: 208px;
    height: 194px;
  }
}

.main-vaccine__banner {
  background: linear-gradient(90deg,
      rgba(0, 154, 222, 0.1) 0%,
      rgba(0, 154, 222, 0.1) 100%);
}

.main-staff__deco {
  position: absolute;
  right: -120px;
  top: -234px;
  width: 696px;
  height: 696px;
  border-radius: 50%;
  background: rgba(0, 154, 222, 0.08);
  pointer-events: none;
}

@media (max-width: 1023px) {
  .main-staff__panel {
    min-height: 0;
  }

  .main-staff-swiper .swiper-slide {
    height: auto;
  }

  .main-staff-swiper .swiper-wrapper {
    align-items: stretch;
  }
}

.main-schedule__deco {
  position: absolute;
  left: -6%;
  top: 3%;
  width: 36%;
  height: calc(100dvw * 0.36);
  border-radius: 50%;
  background: rgba(0, 154, 222, 0.08);
  pointer-events: none;
}

.main-schedule__visual {
  overflow: visible;
}

.main-schedule__bear {
  position: absolute;
  z-index: 20;
  top: -13%;
  left: calc(100% + 24px);
  right: auto;
  width: 240px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .main-schedule .container {
    overflow: visible;
  }

  .main-schedule__bear {
    left: calc(100% + 36px);
    width: 260px;
  }
}

@media (min-width: 1280px) {
  .main-schedule__bear {
    left: calc(100% + 48px);
    width: 280px;
  }
}

.main-location__map-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.main-clinic-swiper {
  overflow: hidden;
}

.main-clinic__swiper-wrap {
  overflow: hidden;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease, transform 1s ease;
}

.main-clinic__swiper-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.main-clinic-swiper .swiper-slide {
  height: auto;
}

.main-clinic-swiper__slide {
  width: 100%;
}

.main-clinic__slide {
  position: relative;
}

.main-clinic__slide-media {
  transition: transform 1s ease, opacity 1s ease;
}

.main-clinic__slide-content {
  transition: opacity 0.3s ease;
}

@media (min-width: 1024px) {
  .main-clinic-swiper .swiper-slide.main-clinic-swiper__slide {
    width: 75% !important;
    max-width: 1440px;
  }

  .main-clinic__slide {
    align-items: center;
    justify-content: flex-start;
  }

  .main-clinic-swiper .swiper-slide:not(.swiper-slide-active) .main-clinic__slide-content {
    opacity: 0;
    pointer-events: none;
  }

  .main-clinic-swiper .swiper-slide-prev .main-clinic__slide-media,
  .main-clinic-swiper .swiper-slide-duplicate-prev .main-clinic__slide-media {
    transform: translateX(calc(100% + 3.5rem));
    opacity: 0.3;
  }

  .main-clinic-swiper .swiper-slide-next .main-clinic__slide-media,
  .main-clinic-swiper .swiper-slide-duplicate-next .main-clinic__slide-media {
    opacity: 0.3;
  }
}

@media (max-width: 1023px) {
  .main-clinic-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.4;
    transition: opacity 1s ease;
  }

  .main-clinic-swiper .swiper-slide-active {
    opacity: 1;
    transition: opacity 1s ease;
  }

  .main-clinic-swiper .swiper-slide:not(.swiper-slide-active) .main-clinic__slide-content {
    opacity: 0.6;
  }
}

/* main clinic nav (Figma 18:172, 22:249) */
.main-clinic__nav {
  gap: 30px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease 0.1s, transform 1s ease 0.1s;
}

.main-clinic__nav.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.main-clinic-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.main-clinic-nav__btn.swiper-button-disabled {
  cursor: default;
  pointer-events: none;
}

.main-clinic-nav__icon {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.main-clinic-nav__icon--prev {
  transform: rotate(-90deg);
}

.main-clinic-nav__icon--next {
  transform: rotate(90deg);
}

.main-clinic-nav__icon--disabled {
  display: none;
}

.main-clinic-nav__btn.swiper-button-disabled .main-clinic-nav__icon--active {
  display: none;
}

.main-clinic-nav__btn.swiper-button-disabled .main-clinic-nav__icon--disabled {
  display: block;
}

/* 아이콘 있는 경우 header.active * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */

/* 버튼 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #fff;
  color: var(--primary);
  outline: 1px solid var(--primary);
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
}

.btn-primary:active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary {
  background-color: var(--seconday);
  color: #fff;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #fff;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
}

.btn-secondary:active {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-primary-outline {
  background-color: transparent;
  color: var(--primary);
  outline: 1px solid var(--primary);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
  outline: none;
}

.btn-primary-outline:active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
  outline: none;
}

.btn-secondary-outline:active {
  background: #fff;
  color: var(--seconday);
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-animation {
  position: relative;
  overflow: hidden;
  color: var(--primary);
  outline: 1px solid var(--primary);
}

.btn-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-animation:hover {
  color: #fff;
  outline: 0;
}

.btn-animation:hover::before {
  width: 100%;
}

.button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary-outline:disabled,
.btn-secondary-outline:disabled,
.btn-animation:disabled {
  background: #e5e7eb !important;
  /* Tailwind gray-200 */
  color: #b0b0b0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.2);
}

.sit_icon {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.editor-content img {
  display: initial;
}

#sev_himg * {
  font-family:
    "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

.sev_admin {
  display: none;
}

/* Lnb 관련  */
/* lnb  */
.lnb_wrap {
  position: relative;
}

.lnb {
  background: #fff;
}

.lnb .lnb_map {
  height: var(--lnb-h);
  display: flex;
  align-items: center;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  max-width: 1600px;
  margin: 0 auto;
}

.lnb .lnb_map .home {
  width: var(--lnb-h);
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lnb .lnb_map .home a {
  color: #333;
}

.lnb .lnb_map>li {
  height: 100%;
  border-right: 1px solid #ddd;

  position: relative;
}

.lnb .lnb_map li.dep a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lnb .lnb_map li.dep a span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #333;
}

.lnb .lnb_map li.dep ul {
  display: none;
  position: absolute;
  left: 0;
  top: var(--lnb-h);
  width: 100%;
  z-index: 9999;
}

.lnb .lnb_map li.dep ul li {
  width: 100%;
  background: #f9f9f9;
  border-bottom: 1px solid #fff;
}

.lnb .lnb_map li.dep ul li a:hover {
  background: var(--primary);
  color: #fff;
  transition: 0.3s all;
}

.lnb .lnb_map li.dep ul li a.on {
  background: var(--primary);
  color: #fff;
}

/* 구글 번역 부분 커스텀 css - 번역기능 있을 경우만 사용 */

body {
  position: static !important;
  top: 0px !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  display: none !important;
}

body>.skiptranslate,
.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0px;
  width: 100px;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

#google_translate_element select {
  background: transparent;
  color: #000;
  border: none;
  font-weight: bold;
  border-radius: 0px;
  padding: 8px 12px;
}

.notranslate {
  translate: no !important;
}

/* site footer (Figma 3:357) */
.site-footer__inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.site-footer__logo {
  margin-bottom: 1.5rem;
}

.site-footer__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.0328em;
  color: #fff;
}

.site-footer__info p {
  margin: 0;
  word-break: keep-all;
}

.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.4375rem;
}

.site-footer__sep {
  color: #fff;
  line-height: 1.4;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.0328em;
  color: #fff;
}

.site-footer__branch-switch {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.site-footer__branch-switch a {
  color: inherit;
}

/* branch intro */
.branch-intro-page {
  background-color: #f6f8fa;
  min-height: 100vh;
}

.branch-select {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
}

.branch-select__inner {
  width: 100%;
  max-width: 920px;
}

.branch-select__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.branch-select__logo {
  height: 3.5rem;
  width: auto;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}

.branch-select__title {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: #26282e;
}

.branch-select__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b555d;
}

.branch-select__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.branch-select__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #d9dcdf;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.branch-select__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 51, 120, 0.12);
}

.branch-select__card--gangdong:hover {
  border-color: #003378;
}

.branch-select__card--gangnam {
  background: #f6f8fa;
  border-style: dashed;
}

.branch-select__card--gangnam:hover {
  border-color: #767c81;
}

.branch-select__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.branch-select__badge--open {
  background: rgba(0, 51, 120, 0.1);
  color: #003378;
}

.branch-select__badge--soon {
  background: rgba(118, 124, 129, 0.12);
  color: #767c81;
}

.branch-select__branch-en {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #767c81;
  margin-bottom: 0.5rem;
}

.branch-select__branch-name {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #26282e;
  margin-bottom: 0.75rem;
}

.branch-select__branch-desc {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b555d;
  flex: 1;
}

.branch-select__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #003378;
}

.branch-select__cta--muted {
  color: #767c81;
}

/* gangnam placeholder main */
.gangnam-coming {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem 6rem;
  background: linear-gradient(180deg, #f6f8fa 0%, #fff 100%);
}

.gangnam-coming__inner {
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.gangnam-coming__label {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #767c81;
}

.gangnam-coming__title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #26282e;
}

.gangnam-coming__desc {
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b555d;
}

.gangnam-coming__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.gangnam-coming__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.gangnam-coming__btn--primary {
  background: #003378;
  color: #fff;
}

.gangnam-coming__btn--primary:hover {
  background: #0055c8;
  color: #fff;
}

.gangnam-coming__btn--outline {
  border: 1px solid #d9dcdf;
  color: #4b555d;
  background: #fff;
}

.gangnam-coming__btn--outline:hover {
  border-color: #003378;
  color: #003378;
}

@media (min-width: 1024px) {
  .branch-select__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .branch-select__title {
    font-size: 2.25rem;
  }

  .gangnam-coming__title {
    font-size: 2.5rem;
  }

  .site-footer__inner {
    min-height: 300px;
    padding-top: 42px;
    padding-bottom: 68px;
  }

  .site-footer__logo {
    margin-bottom: 28px;
  }

  .site-footer__content {
    gap: 20px;
  }

  .site-footer__info {
    gap: 4px;
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: -0.525px;
  }

  .site-footer__row {
    flex-wrap: nowrap;
    gap: 7px;
  }

  .site-footer__copy {
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: -0.525px;
  }
}





/* contents cranial (Figma 104:682) */


/* contents allergy (Figma 86:677) */


/* contents atopy (Figma 64:5295) */








/* 진료시간표 (schedule, Figma 27:1628) */
.contents-schedule {
  overflow: hidden;
}

.contents-schedule__hero {
  display: flex;
  flex-direction: column;
}

.contents-schedule__hero-left {
  position: relative;
  width: 100%;
  background: #003378;
  overflow: hidden;
}

.contents-schedule__hero-left-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
}

.contents-schedule__hero-right {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: #fff;
  overflow: hidden;
}

.contents-schedule__hero-right-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
}

.contents-schedule__hero-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1126px, 90vw);
  height: min(1126px, 90vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 154, 222, 0.1);
  pointer-events: none;
}

.contents-schedule__hero-illus {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 70vw);
  height: auto;
  object-fit: contain;
}

.contents-schedule__section-head {
  width: 100%;
}

.contents-schedule__hours-card {
  position: relative;
  min-height: 220px;
  border-radius: 20px;
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.contents-schedule__hours-card--weekday {
  background: rgba(0, 85, 200, 0.1);
}

.contents-schedule__hours-card--weekend {
  background: rgba(0, 154, 222, 0.1);
}

.contents-schedule__hours-badge {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 170px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.contents-schedule__hours-badge--primary {
  color: #003378;
}

.contents-schedule__hours-badge--point {
  color: #009ade;
}

.contents-schedule__hours-illust {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

.contents-schedule__hours-illust--night {
  right: 24px;
  bottom: 0;
  width: 120px;
  height: auto;
}

.contents-schedule__hours-illust--weekend-am {
  right: 16px;
  bottom: 8px;
  width: 160px;
  height: auto;
}

.contents-schedule__timetable-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.contents-schedule__timetable-btn.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.contents-schedule__timetable-frame {
  overflow: hidden;
}

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

.contents-schedule__timetable-empty {
  border-radius: 20px;
  background: #f6f8fa;
}

@media (min-width: 1024px) {
  .contents-schedule__hero {
    flex-direction: row;
    min-height: 900px;
  }

  .contents-schedule__hero-left {
    width: 50%;
    flex-shrink: 0;
  }

  .contents-schedule__hero-right {
    width: 50%;
    min-height: 900px;
  }

  .contents-schedule__hero-illus {
    right: 0;
    bottom: 0;
    width: 548px;
    max-width: 57%;
  }

  .contents-schedule__hours-card {
    min-height: 272px;
    padding-top: 50px;
  }

  .contents-schedule__hours-illust--night {
    left: 50%;
    right: auto;
    bottom: 0;
    width: 156px;
    transform: translateX(-50%);
  }

  .contents-schedule__hours-illust--weekend-am {
    right: 0;
    bottom: auto;
    top: 58px;
    width: 220px;
  }
}

/* contents nonpay (Figma 135:2291) */
.contents-nonpay {
  overflow: hidden;
}

.contents-nonpay__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(0, 154, 222, 0.1);
  color: #009ade;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.contents-nonpay__search-field {
  position: relative;
  width: 100%;
  height: 60px;
  border: 2px solid #d9dcdf;
  border-radius: 129px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.contents-nonpay__search-input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  font-size: 18px;
  color: #26282e;
  outline: none;
}

.contents-nonpay__search-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.contents-nonpay__search-input::placeholder {
  color: #aeb5ba;
}

.contents-nonpay__search-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #26282e;
  pointer-events: none;
}

.contents-nonpay__group-title {
  font-size: 28px;
  font-weight: 600;
  color: #26282e;
  line-height: 1.4;
}

.contents-nonpay__group.is-hidden {
  display: none;
}

@media (min-width: 1024px) {
  .contents-nonpay__group-title {
    font-size: 40px;
  }

  .contents-nonpay__search-input {
    font-size: 20px;
  }
}

/* 병원둘러보기 – 메인 이미지 페이드 전환 */
.contents-tour__main {
  background-color: #f3f4f6;
}

.contents-tour__main-img {
  opacity: 1;
  will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
  .contents-tour__main-img {
    will-change: auto;
  }
}

/* ==========================================================
   Interaction Styles (GSAP / AOS 보조 스타일)
========================================================== */

/* 콘텐츠 페이지 – GSAP 초기화 전 깜빡임 방지 */
html.content-anim-loading #ctt > section:first-child [class*="__hero-inner"] > *,
html.content-anim-loading #ctt > section:first-child [class*="__top-inner"] > *,
html.content-anim-loading #ctt > section:first-child [class*="__hero-left-panel"] > *,
html.content-anim-loading #ctt > section:first-child .relative.z-10 > *,
html.content-anim-loading #ctt > section:first-child .relative.z-10.container > *,
html.content-anim-loading #ctt > section:first-child .relative.z-10.flex > *,
html.content-anim-loading #ctt > section:first-child [class*="__hero-inner"] > * > h1,
html.content-anim-loading #ctt > section:first-child [class*="__hero-inner"] > * > h2,
html.content-anim-loading #ctt > section:first-child [class*="__hero-inner"] > * > h3,
html.content-anim-loading #ctt > section:first-child [class*="__hero-inner"] > * > p,
html.content-anim-loading #ctt > section:first-child [class*="__hero-inner"] > * > span,
html.content-anim-loading #ctt > section:first-child [class*="__top-inner"] > * > h1,
html.content-anim-loading #ctt > section:first-child [class*="__top-inner"] > * > h2,
html.content-anim-loading #ctt > section:first-child [class*="__top-inner"] > * > p,
html.content-anim-loading #ctt > section:first-child .relative.z-10 > * > h1,
html.content-anim-loading #ctt > section:first-child .relative.z-10 > * > h2,
html.content-anim-loading #ctt > section:first-child .relative.z-10 > * > p,
html.content-anim-loading #ctt > section:first-child .relative.z-10 > * > span {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 36px, 0);
}

html.content-anim-loading #ctt > section:not(:first-child) [class*="__head"],
html.content-anim-loading #ctt > section:not(:first-child) [class*="__reason"],
html.content-anim-loading #ctt > section:not(:first-child) [class*="__card"],
html.content-anim-loading #ctt > section:not(:first-child) [class*="__feature"],
html.content-anim-loading #ctt > section:not(:first-child) [class*="__group"]:not([class*="__group-title"]),
html.content-anim-loading #ctt > section:not(:first-child) [class*="__team"] > div,
html.content-anim-loading #ctt > section:not(:first-child) [class*="__gallery-wrap"],
html.content-anim-loading #ctt > section:not(:first-child) [class*="__cta"] a,
html.content-anim-loading #ctt > section:not(:first-child) .grid > div,
html.content-anim-loading #ctt > section:not(:first-child) .grid > a,
html.content-anim-loading #ctt > section:not(:first-child) > .container {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

html.content-anim-ready #ctt [class*="__head"],
html.content-anim-ready #ctt [class*="__reason"],
html.content-anim-ready #ctt [class*="__card"],
html.content-anim-ready #ctt [class*="__feature"],
html.content-anim-ready #ctt [class*="__group"],
html.content-anim-ready #ctt [class*="__team"] > div,
html.content-anim-ready #ctt [class*="__gallery-wrap"],
html.content-anim-ready #ctt [class*="__cta"] a,
html.content-anim-ready #ctt .grid > div,
html.content-anim-ready #ctt .grid > a {
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html.content-anim-loading #ctt > section:first-child [class*="__hero-inner"] > *,
  html.content-anim-loading #ctt > section:first-child [class*="__top-inner"] > *,
  html.content-anim-loading #ctt > section:first-child [class*="__hero-left-panel"] > *,
  html.content-anim-loading #ctt > section:first-child .relative.z-10 > *,
  html.content-anim-loading #ctt > section:first-child .relative.z-10.container > *,
  html.content-anim-loading #ctt > section:first-child .relative.z-10.flex > *,
  html.content-anim-loading #ctt > section:not(:first-child) [class*="__head"],
  html.content-anim-loading #ctt > section:not(:first-child) [class*="__reason"],
  html.content-anim-loading #ctt > section:not(:first-child) [class*="__card"],
  html.content-anim-loading #ctt > section:not(:first-child) [class*="__feature"],
  html.content-anim-loading #ctt > section:not(:first-child) [class*="__group"]:not([class*="__group-title"]),
  html.content-anim-loading #ctt > section:not(:first-child) [class*="__team"] > div,
  html.content-anim-loading #ctt > section:not(:first-child) [class*="__gallery-wrap"],
  html.content-anim-loading #ctt > section:not(:first-child) [class*="__cta"] a,
  html.content-anim-loading #ctt > section:not(:first-child) .grid > div,
  html.content-anim-loading #ctt > section:not(:first-child) .grid > a,
  html.content-anim-loading #ctt > section:not(:first-child) > .container {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}


/* 히어로 배너 – GSAP 초기화 전 깜빡임 방지 (scale 제거 – 가로 overflow 방지) */
html.main-anim-loading .main-banner__overlay {
  opacity: 0;
}

html.main-anim-loading .main-banner__line1,
html.main-anim-loading .main-banner__line2,
html.main-anim-loading .main-banner__desc {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

html.main-anim-loading .main-intro-bar__text,
html.main-anim-loading .main-intro-bar__more,
html.main-anim-loading .main-community__title,
html.main-anim-loading .main-community__desc,
html.main-anim-loading .main-community__card,
html.main-anim-loading .main-clinic .container h2,
html.main-anim-loading .main-clinic .container > div > div:first-child p,
html.main-anim-loading .main-staff h2,
html.main-anim-loading .main-staff .main-clinic-nav__btn,
html.main-anim-loading .main-vaccine__banner,
html.main-anim-loading .main-schedule__head h2,
html.main-anim-loading .main-schedule__head p,
html.main-anim-loading .main-schedule__visual img:first-child,
html.main-anim-loading .main-schedule__bear,
html.main-anim-loading #main-location h2,
html.main-anim-loading .main-location__map,
html.main-anim-loading .main-location__info > img,
html.main-anim-loading .main-location__info dl > div {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

@media (prefers-reduced-motion: reduce) {
  html.main-anim-loading .main-banner__overlay,
  html.main-anim-loading .main-banner__line1,
  html.main-anim-loading .main-banner__line2,
  html.main-anim-loading .main-banner__desc,
  html.main-anim-loading .main-intro-bar__text,
  html.main-anim-loading .main-intro-bar__more,
  html.main-anim-loading .main-community__title,
  html.main-anim-loading .main-community__desc,
  html.main-anim-loading .main-community__card,
  html.main-anim-loading .main-clinic .container h2,
  html.main-anim-loading .main-clinic .container > div > div:first-child p,
  html.main-anim-loading .main-staff h2,
  html.main-anim-loading .main-staff .main-clinic-nav__btn,
  html.main-anim-loading .main-vaccine__banner,
  html.main-anim-loading .main-schedule__head h2,
  html.main-anim-loading .main-schedule__head p,
  html.main-anim-loading .main-schedule__visual img:first-child,
  html.main-anim-loading .main-schedule__bear,
  html.main-anim-loading #main-location h2,
  html.main-anim-loading .main-location__map,
  html.main-anim-loading .main-location__info > img,
  html.main-anim-loading .main-location__info dl > div {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}

.main-banner__line1,
.main-banner__line2,
.main-banner__desc {
  will-change: auto;
}

/* 커뮤니티 카드 – 3D 틸트 허용 */
.main-community__card {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .main-more-btn__circle,
  .main-more-btn__arrow,
  .main-intro-bar__more-text,
  .main-intro-bar__more-icon,
  .main-community__arrow,
  .main-community__arrow img {
    transition: none;
  }

  .main-more-btn:hover .main-more-btn__circle,
  .main-intro-bar__more:hover .main-intro-bar__more-icon,
  .main-community__card:hover .main-community__arrow {
    transform: none;
  }
}

/* 예방접종 배너 – 마우스 샤인 효과 */
.main-vaccine__banner {
  position: relative;
  overflow: hidden;
}
.main-vaccine__banner::after {
  content: '';
  position: absolute;
  top: var(--shine-y, 50%);
  left: var(--shine-x, 50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  pointer-events: none;
  border-radius: 50%;
  z-index: 5;
}
.main-vaccine__banner:hover::after {
  width: 600px;
  height: 600px;
}

/* 콘텐츠 페이지 가독성 개선 - 모바일/PC 텍스트 줄바꿈 단어 단위 최적화 */
#ctt p, 
#ctt span, 
#ctt h1, 
#ctt h2, 
#ctt h3, 
#ctt h4, 
#ctt h5, 
#ctt h6, 
#ctt li, 
#ctt a {
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
}