.section {
  width: 100%;
  overflow: hidden;
}

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

.hero-video-wrap {
  width: 100%;
  max-height: 100vh;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
  object-position: center;
  -webkit-object-position: center;
}
.hero-video-wrap--motion::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(29, 29, 79, 0.18) 0%,
    transparent 35%,
    transparent 70%,
    rgba(0, 0, 0, 0.12) 100%
  );
  animation: heroOverlayIn 1.6s ease forwards;
  opacity: 0;
}
@keyframes heroOverlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================== */
/* hospital (섹션 래퍼만 사용) */
/* ============================================================== */
.hospital {
  width: 100%;
  position: relative;
  background: url("/assets/img/main/hospital-bg.png") no-repeat center center /
    cover;
  background-attachment: fixed;
}
.hospital-content {
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 2px 20px 5px #0B193B10;
  padding: 80px 0;
  margin-right: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}
.hospital-content-left {
  flex: 1.15;
  padding-left: 60px;
}
.hospital-content-right {
  flex: 0.85;
  border-radius: 20px;
  box-shadow: 2px 2px 15px 3px #00000012;
  overflow: hidden;
  line-height: 0;
  margin-right: -30px;
  z-index: 2;
  position: relative;
}
.hospital-content-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h3 {
  font-size: 52px;
  line-height: 1.28;
  font-weight: 700;
  margin-bottom: 20px;
}
.hospital-title {
  font-weight: 400;
}
.hospital-title i {
  color: var(--color-orange);
  position: relative;
  font-weight: 700;
  &::before {
    content: "";
    position: absolute;
    top: -0.22em;
    left: 50%;
    width: 0.15em;
    height: 0.15em;
    border-radius: 50%;
    background: var(--color-orange);
    transform: translateX(-50%) translateY(0);
    animation: hospitalTitleDotBounce 1.4s ease-in-out infinite;
    will-change: transform;
  }
}

/* 글자마다 점이 순서대로 튀어 오르는 물결 */
.hospital-title i:nth-of-type(1)::before {
  animation-delay: 0s;
}
.hospital-title i:nth-of-type(2)::before {
  animation-delay: 0.15s;
}
.hospital-title i:nth-of-type(3)::before {
  animation-delay: 0.3s;
}
.hospital-title i:nth-of-type(4)::before {
  animation-delay: 0.45s;
}

@keyframes hospitalTitleDotBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  18% {
    transform: translateX(-50%) translateY(-0.27em);
  }
  36% {
    transform: translateX(-50%) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hospital-title i::before,
  .pain-area-title .title i::before {
    animation: none;
    transform: translateX(-50%) translateY(0);
  }
}
.hospital-desc {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hospital-desc b {
  color: var(--color-blue);
}
/* .animated-text: 화면에 보이면 왼쪽 아래에서 등장 + 블러 + 오버슈트 */
.animated-text {
  opacity: 0;
  transform: translateX(-50px);
  filter: blur(8px);
  display: inline-block;
}
.animated-text.is-visible {
  animation: animTextPop 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes animTextPop {
  0% {
    opacity: 0;
    transform: translateX(-50px);
    filter: blur(8px);
  }
  55% {
    opacity: 1;
    transform: translateX(8px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
.flow-text-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.flow-text-track {
  display: flex;
  width: max-content;
  animation: flowText 135s linear infinite;
  will-change: transform;
}

.flow-text {
  flex-shrink: 0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-blue);
  color: var(--color-white);
  font-family: Paperlogy, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 2px;
  white-space: nowrap;
  padding-right: 3rem;
  opacity: 0.2;
}

@keyframes flowText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.flow-text-wrap--pain .flow-text-track {
  animation-duration: 190s;
}
.flow-text-wrap--pain .flow-text {
  font-size: clamp(60px, 7.5vw, 112px);
  line-height: 1.15;
  letter-spacing: min(0.25vw, 4px);
  opacity: 1;
  color: #fff;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: color-mix(in srgb, var(--color-blue) 40%, #fff);
  paint-order: stroke fill;
}
.flow-text-wrap--greeting {
  bottom: 0;
  z-index: 0;
  line-height: 0;
  pointer-events: none;
}
.flow-text-wrap--greeting .flow-text-track {
  align-items: flex-end;
}
.flow-text-wrap--greeting .flow-text {
  font-size: clamp(64px, 8vw, 128px);
  line-height: 1;
  letter-spacing: min(0.2vw, 2px);
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 3rem;
}

@media (prefers-reduced-motion: reduce) {
  .flow-text-track {
    animation: none;
  }
}

/* ============================================================== */
/* hospital-news */
/* ============================================================== */
.hospital-news {
  background: url("/assets/img/main/news-bg.png") no-repeat center center /
    cover;
  color: var(--color-white);
}
.news-inner {
  padding-left: calc((100vw - 1280px) / 2);
}
.news-content {
  display: flex;
  gap: 30px;
}
.news-content-left {
  flex: 1;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-content-right {
  flex: 2;
  min-width: 0;
}
.news-swiper {
  overflow: hidden;
  width: 100%;
}
.news-swiper .swiper-slide {
  height: auto;
}
.news-slide-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.news-pagination {
  width: 100%;
  max-width: 320px;
  margin-top: 28px;
}
.news-pagination-track {
  --news-progress: 0;
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: visible;
}
.news-pagination-fill {
  height: 100%;
  width: calc(var(--news-progress, 0) * 100%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-orange-deep) 0%, var(--color-orange) 55%, var(--color-orange-light) 100%);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
  pointer-events: none;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-pagination-end-icon {
  position: absolute;
  left: calc(var(--news-progress, 0) * 100%);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 0 5px rgba(43, 43, 43, 0.23));
  transition: left 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-desc {
  margin-bottom: 40px;
}
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 30px;
  border: 0.75px solid var(--color-orange);
  background: #19194D50;
  box-shadow: 0 0 5px 3px rgba(107, 72, 2, 0.12);
  color: var(--color-orange);
}
.btn-more::after {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("/assets/img/main/news-arr.svg") no-repeat center center / contain;
}
.news-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 2px rgba(53, 8, 8, 0.16);
  position: relative;
}
.news-thumb::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  opacity: 0.7;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #00000070 100%);
}
.news-thumb::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url("/assets/img/main/news-more.png") no-repeat center center /
    contain;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.news-list-title {
  border-radius: 50px;
  background: var(--color-blue);
  width: 100%;
  min-width: 0;
  text-align: center;
  padding: 7px 20px;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* ============================================================== */
/* pain-area */
/* ============================================================== */
.pain-area {
  position: relative;
  overflow: hidden;
  background: url("/assets/img/main/pain-area-bg.png") no-repeat center center /
    cover;
}
.pain-area .inner {
  position: relative;
  z-index: 1;
}
.pain-area-content {
  display: flex;
  gap: 30px;
  align-items: center;
}
.pain-area-content-left {
  flex: 1.22 1 0;
  position: relative;
  line-height: 0;
}
.pain-area-content-left > img {
  width: 100%;
  height: auto;
}

.pain-area-content-left .pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
    opacity 0.45s ease;
  animation: mainPainPinPulse 3.2s ease-in-out infinite;
  z-index: 1;
}
.pain-area-content-left .pin a.pain-pin-link {
  display: block;
  line-height: 0;
}
.pain-area-content.is-pain-highlight .pin {
  animation: none;
}
.pain-area-content.is-pain-highlight .pin:not(.is-active) {
  opacity: 0.38;
  transform: translate(-50%, -50%) scale(0.78);
}
.pain-area-content.is-pain-highlight .pin.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.18);
  z-index: 3;
}
@keyframes mainPainPinPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  12.5% {
    transform: translate(-50%, -50%) scale(0.92);
  }
  25% {
    transform: translate(-50%, -50%) scale(0.88);
  }
  37.5% {
    transform: translate(-50%, -50%) scale(0.94);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  62.5% {
    transform: translate(-50%, -50%) scale(1.06);
  }
  75% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  87.5% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}
.pain-area-content-left .pin.neck {
  top: 16%;
  left: 48%;
}
.pain-area-content-left .pin.shoulder {
  top: 20%;
  left: 60%;
}
.pain-area-content-left .pin.waist {
  top: 44%;
  left: 60%;
}
.pain-area-content-left .pin.knee {
  top: 62%;
  left: 38%;
}
.pain-area-content-left .pin.elbow {
  top: 27%;
  left: 79%;
}
.pain-area-content-left .pin.hand {
  top: 24%;
  left: 10%;
}
.pain-area-content-left .pin.foot {
  top: 84%;
  left: 50%;
}
.pain-area-content-left .pin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pain-area-content-right {
  flex: 0.78 1 0;
  max-width: 480px;
}
.pain-area-title em {
  font-size: 16px;
  color: var(--color-grey);
  opacity: 0.7;
  display: block;
  margin-bottom: 30px;
}
.pain-area-title .title {
  font-size: 52px;
  line-height: 1.22;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(123, 133, 145, 0.4);
}
.pain-area-title .title i {
  color: var(--color-blue);
  font-weight: 700;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: -0.22em;
    left: 50%;
    width: 0.15em;
    height: 0.15em;
    border-radius: 50%;
    background: var(--color-blue);
    transform: translateX(-50%) translateY(0);
    animation: hospitalTitleDotBounce 1.4s ease-in-out infinite;
    will-change: transform;
  }
}
.pain-area-title .title i:nth-of-type(1)::before {
  animation-delay: 0s;
}
.pain-area-title .title i:nth-of-type(2)::before {
  animation-delay: 0.15s;
}
.pain-area-title .pain-title-desc {
  color: var(--color-grey);
}
.pain-area-list {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: 48px;
  font-size: 22px;
  color: var(--color-white);
  max-width: 200px;
}
.pain-area-list li {
  width: 100%;
}
.pain-area-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 50px;
  background: #2a2e33d3;
  padding: 8px 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    background-color 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s ease;
}
.pain-area-list li a span {
  font-weight: 400;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.pain-area-list li a span b {
  font-weight: 700;
}
.pain-area-list li a .pain-area-item-img {
  position: relative;
  flex-shrink: 0;
  width: 1.3em;
  aspect-ratio: 1/1;
  background: none;
}
.pain-area-list li a .pain-area-item-img::before,
.pain-area-list li a .pain-area-item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.pain-area-list li a .pain-area-item-img::before {
  background-image: url("/assets/img/main/pain-area-item-img.png");
  opacity: 1;
  transform: scale(1);
}
.pain-area-list li a .pain-area-item-img::after {
  background-image: url("/assets/img/main/pain-area-item-arr.png");
  opacity: 0;
  transform: scale(0.75) translateX(-6px);
}
.pain-area-list li.is-active a,
.pain-area-list li a:hover {
  background: #2f2f82;
  background: linear-gradient(90deg, rgba(47, 47, 130, 1) 0%, rgba(0, 0, 61, 1) 100%);
  transform: translateX(6px);
  box-shadow: 0 6px 18px rgba(16, 16, 74, 0.32);
}
.pain-area-list li.is-active a span,
.pain-area-list li a:hover span {
  transform: translateX(2px);
}
.pain-area-list li.is-active a .pain-area-item-img::before,
.pain-area-list li a:hover .pain-area-item-img::before {
  opacity: 0;
  transform: scale(0.85) translateX(4px);
}
.pain-area-list li.is-active a .pain-area-item-img::after,
.pain-area-list li a:hover .pain-area-item-img::after {
  opacity: 1;
  transform: scale(1) translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .pain-area-content-left .pin {
    animation: none;
  }
  .pain-area-list li a,
  .pain-area-list li a span,
  .pain-area-list li a .pain-area-item-img::before,
  .pain-area-list li a .pain-area-item-img::after {
    transition-duration: 0.01ms;
  }
  .pain-area-list li.is-active a,
  .pain-area-list li a:hover {
    transform: none;
  }
  .pain-area-list li.is-active a span,
  .pain-area-list li a:hover span {
    transform: none;
  }
}
/* ============================================================== */
/* pain-cause */
/* ============================================================== */
.pain-cause {
  position: relative;
  background-color: #000050;
  clip-path: inset(0);
}
.pain-cause-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.pain-cause-video video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.pain-cause .inner {
  position: relative;
  z-index: 2;
}
.pain-cause-title {
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-white);
  font-weight: 300;
}
.pain-cause-title i {
  color: #7691ff;
  font-weight: 700;
}
.pain-cause-title em {
  color: #f39800;
  font-weight: 700;
}
.pain-cause-desc {
  color: #e8f0f8;
  text-align: center;
  margin-bottom: 80px;
}
.pain-cause-list {
  display: flex;
  gap: 20px;
  text-align: center;
}
.pain-cause-list li {
  width: 100%;
}
.pain-cause-list li a {
  position: relative;
  isolation: isolate;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: #fff;
  padding: 40px;
  padding-bottom: 60px;
  transition: transform 0.3s ease;
}
.pain-cause-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  aspect-ratio: calc(228 * 0.95 / 480);
  background: url("/assets/img/main/pain-cause-card-bg.png") no-repeat right center;
  background-size: auto 100%;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
  pointer-events: none;
}
.pain-cause-list li a > :not(.pain-cause-item-img) {
  position: relative;
  z-index: 1;
}
.pain-cause-list li a:hover {
  transform: translateY(-10px);
  background: #fbfbfb;
}
.pain-cause-list li a:hover .pain-cause-item-img {
  transform: translate(-50%, 50%) rotate(180deg);
}
.pain-cause-item-img {
  position: absolute;
  z-index: 1;
  line-height: 0;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  transition: transform 0.3s ease;
  max-width: 45px;
  filter: drop-shadow(0 -2px 15px rgba(73, 80, 87, 0.15));
}
.pain-cause-item-img-wrap {
  border-radius: 15px;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.06) inset,
    0 2px 3px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  line-height: 0;
}
.pain-cause-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-title {
  margin-top: 40px;
  color: var(--color-primary);
  font-size: 34px;
  font-weight: 700;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(42, 46, 51, 0.4);
  margin-bottom: 20px;
}
.item-desc {
  color: #2a2e33;
}
/* 진료시간 및 오시는 길 */
.schedule {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
  background: linear-gradient(
    135deg,
    rgba(240, 240, 240, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.schedule::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -20%;
  z-index: 0;
  width: min(42vw, 615px);
  aspect-ratio: 730 / 1051;
  background: url("/assets/img/main/map-bg.png") no-repeat center / contain;
  pointer-events: none;
}
.schedule > .inner {
  position: relative;
  z-index: 1;
}
.schedule-head {
  position: relative;
  z-index: 2;
  width: auto;
  display: block;
  font-size: inherit;
  font-weight: inherit;
  text-align: center;
  margin-bottom: 80px;
}
.schedule-head em {
  display: block;
  margin-bottom: min(1.5vw, 12px);
  color: #9aa0a6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.schedule-head em b {
  font-weight: 700;
}
.schedule-head-title {
  margin: 0;
  color: var(--color-blue);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3;
}
.schedule-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: min(4.5vw, 40px);
  align-items: stretch;
}
.schedule-map {
  --schedule-map-border: 7px;
  --schedule-map-radius: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 100%;
  min-height: 100%;
  justify-self: start;
  overflow: visible;
  border-radius: var(--schedule-map-radius);
}
.schedule-map-frame {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  overflow: hidden;
  width: 560px;
  max-width: 100%;
  min-height: 360px;
  border: var(--schedule-map-border) solid var(--color-orange);
  border-radius: var(--schedule-map-radius);
  background: #fff;
}
.schedule-map-frame .root_daum_roughmap {
  border: none !important;
  background: transparent !important;
}
.schedule-map-frame .root_daum_roughmap,
.schedule-map-frame .root_daum_roughmap .wrap_map,
.schedule-map-frame .root_daum_roughmap .map {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
}
.schedule-map-frame .root_daum_roughmap .wrap_controllers,
.schedule-map-frame .root_daum_roughmap .wrap_btn,
.schedule-map-frame .root_daum_roughmap .wrap_btn_zoom,
.schedule-map-frame .root_daum_roughmap .roughmap_btn_zoom,
.schedule-map-frame .root_daum_roughmap .cont,
.schedule-map-frame .root_daum_roughmap .cont .section.lst {
  display: none !important;
}
.schedule-map-circular {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: min(14vw, 108px);
  height: min(14vw, 108px);
  transform: translate(-50%, -50%);
  animation: scheduleCircularSpin 16s linear infinite;
  pointer-events: none;
  user-select: none;
}

@keyframes scheduleCircularSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.schedule-map-banner {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 3;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0;
  padding: 14px 22px 16px 20px;
  border-radius: 0 16px 0 var(--schedule-map-radius);
  background: var(--color-orange);
  color: #fff;
  text-align: left;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.45;
}
.schedule-map-banner strong {
  font-weight: 700;
}
.schedule-info {
  display: flex;
  flex-direction: column;
  gap: min(3.5vw, 28px);
}
.schedule-block {
  min-width: 0;
}
.schedule-title {
  color: #9aa0a6;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.schedule-tel {
  color: var(--color-blue);
  font-size: 45px;
  font-weight: 700;
  display: inline-block;
  line-height: 1.15;
  text-decoration: none;
}
.schedule-tel:hover {
  color: var(--color-blue-deep);
}
.schedule-time-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 30px;
  color: #4a4f55;
  line-height: 1.55;
}
.schedule-time-list li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 1.15em;
}
.schedule-day {
  --schedule-day-char: 0.88em;
  display: inline-flex;
  justify-content: space-between;
  width: calc(var(--schedule-day-char) * 4);
  flex: 0 0 calc(var(--schedule-day-char) * 4);
  color: #2a2e33;
  font-weight: 600;
}
.schedule-day--lunch {
  color: #777;
  font-weight: 400;
}
.schedule-day i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--schedule-day-char);
  flex: 0 0 var(--schedule-day-char);
  text-align: center;
  font-style: normal;
}
.schedule-hours {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}
.schedule-hours b {
  color: var(--color-blue);
  font-weight: 700;
}
.schedule-time-icon {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  margin-left: 0.2em;
  color: var(--color-orange);
  vertical-align: -0.12em;
  flex-shrink: 0;
}
.schedule-location {
  margin: 0;
  color: var(--color-blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.45;
}
.schedule-parking-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 30px;
  color: #4a4f55;
  line-height: 1.35;
}
.schedule-parking-list li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  padding-left: 0.9em;
}
.schedule-parking-label {
  flex: 0 0 auto;
  white-space: nowrap;
}
.schedule-parking-content {
  flex: 1 1 auto;
  min-width: 0;
}
.schedule-parking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b8bdc3;
}
.schedule-parking-list b {
  color: var(--color-blue);
  font-weight: 700;
}
.schedule-parking-note {
  display: block;
  margin-top: 2px;
  padding-left: 0;
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

/* ============================================================== */
/* scroll reveal (main + sub pages) */
/* ============================================================== */
.main-reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  filter: blur(5px);
  will-change: transform, opacity, filter;
}
.main-reveal--from-left {
  transform: translate3d(-36px, 28px, 0);
}
.main-reveal--from-right {
  transform: translate3d(36px, 28px, 0);
}
.main-reveal--scale {
  transform: translate3d(0, 20px, 0) scale(0.94);
}
.main-reveal.is-visible {
  animation: mainRevealIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}
.main-reveal--slide.is-visible {
  animation: mainPainListIn 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}
.main-reveal--card.is-visible {
  animation: mainCauseCardIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}
@keyframes mainRevealIn {
  0% {
    opacity: 0;
    filter: blur(5px);
  }
  55% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}
@keyframes mainCauseCardIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
@keyframes mainPainListIn {
  from {
    opacity: 0;
    transform: translate3d(-16px, 0, 0);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
.main-page .news-thumb img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.main-page .news-slide-link:hover .news-thumb img {
  transform: scale(1.06);
}
.main-page .btn-more {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.main-page .btn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 72, 2, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap--motion::after {
    animation: none;
    opacity: 1;
  }
  .main-reveal,
  .main-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}
