* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Source Han Sans;
}
body.is-desktop {
  overflow: hidden;
}
body[data-active-panel="1"] .nav-link,
body[data-active-panel="2"] .nav-link {
  color: #000;
}
body[data-active-panel="1"] .nav-link.is-active,
body[data-active-panel="2"] .nav-link.is-active {
  border-color: #000;
}
.pc {
  display: block;
}
.mb {
  display: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
a {
  font: inherit;
}
button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
.page-shell {
  position: relative;
  min-height: 100vh;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 0;
  pointer-events: none;
}
.site-nav {
  pointer-events: auto;
  margin-right: max(32px, calc((100vw - 1530px) / 2 + 10px));
}
.site-nav {
  display: inline-flex;
  gap: 50px;
}
.nav-link {
  color: #fff;
  font-size: 16px;
  padding-bottom: 10px;
  transition: all 0.5s;
  border-bottom: 2px solid transparent;
}
.nav-link.is-active {
  color: #ffffff;
  border-bottom: 2px solid #fff;
}
.page-main,
.main-swiper,
.main-swiper > .swiper-wrapper {
  min-height: 100vh;
}
.panel {
  position: relative;
  min-height: 100vh;
  scroll-margin-top: 96px;
}
.section-inner {
  position: relative;
  z-index: 2;
  width: min(1530px, calc(100% - 64px));
  margin: 0 auto;
}
.hero-panel,
.about-panel {
  overflow: hidden;
}
.hero-bg,
.about-bg,
.about-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background: center / cover no-repeat url("../images/kv.jpg");
}
.hero-content {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-content h1 {
  margin: 0;
  font-size: clamp(36px, 3.3333vw, 64px);
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}
.hero-copy {
  margin: 20px 0 0;
  color: #000;
  font-size: min(22px, 1.14583333vw);
  line-height: 1.6;
}
.scroll-hint {
  display: none !important;
  position: absolute;
  right: 56px;
  bottom: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  letter-spacing: 0.14em;
}
.scroll-hint span {
  position: relative;
  width: 34px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
}
.scroll-hint span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  transform: translateX(-50%);
  animation: scrollPulse 1.7s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    transform: translate(-50%, 18px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 22px);
  }
}
.health-panel {
  background: #F5F6F7;
}
.health-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: 133px 0 58px;
}
.section-heading {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.section-heading h2 {
  margin: 0;
  font-size: 24px;
  padding-right: 20px;
}
.section-heading .line {
  height: 1px;
  flex: 1;
  background: #000000;
}
.health-grid {
  display: flex;
  gap: 20px;
  flex: 1;
}
.health-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) * 340 / 1490);
  overflow: hidden;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  transition: flex-basis 420ms cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
}
.health-card.is-active {
  flex-basis: calc((100% - 40px) * 810 / 1490);
}
.health-card.is-active .health-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.health-card.is-active .health-card__summary {
  background-color: #FFFFFF;
  backdrop-filter: blur(20px) saturate(100%);
  border-radius: 8px;
}
.health-card.is-active .health-card__summary h3 .space-symbol {
  display: none;
}
.health-card.is-active .health-card__summary p {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}
.health-card:not(.is-active) {
  cursor: pointer;
}
.health-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 30%, rgba(0, 0, 0, 0.36) 100%);
}
.health-card__summary {
  position: absolute;
  right: 20px;
  bottom: 30px;
  left: 20px;
  display: block;
  padding: min(25px, 1.3021vw) min(30px, 1.5625vw);
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px) saturate(100%);
  transition: background-color 260ms ease, border-radius 320ms cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 320ms ease;
  will-change: background-color, border-radius, backdrop-filter;
}
.health-card__summary h3 {
  margin: 0;
  color: #000000;
  font-size: min(24px, 1.25vw);
  font-weight: 500;
  line-height: 1.4;
}
.health-card__summary h3 .space-symbol {
  display: block;
}
.health-card__summary p {
  margin: 15px 0 0;
  color: #000000;
  font-size: min(16px, 0.8333vw);
  line-height: 1.5;
  font-weight: normal;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.health-icon {
  position: absolute;
  top: max(-40px, -2.0833vw);
  right: 30px;
  display: inline-flex;
  width: min(80px, 4.1666vw);
  height: min(80px, 4.1666vw);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #847C67;
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  transition: opacity 220ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.health-icon img {
  width: min(47px, 2.4479vw);
}
.mobile-health {
  display: none;
}
.health-mobile-swiper {
  overflow: visible;
}
.mobile-health-card {
  overflow: hidden;
  border-radius: 5px;
}
.mobile-health-card__image img {
  width: 100%;
}
.mobile-health-card__body {
  padding: 15px 20px 17px;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 8px;
  background: #FFFFFF;
  backdrop-filter: blur(20px) saturate(100%);
}
.mobile-health-card__body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.32;
  color: #000000;
  max-width: 70%;
}
.mobile-health-card__body p {
  margin: 10px 0 0;
  color: rgba(22, 22, 22, 0.78);
  font-size: 13.5px;
  line-height: 1.6;
  color: #000000;
}
.mobile-health-card__body .health-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #847C67;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  right: 20px;
  opacity: 1;
  transform: none;
}
.mobile-health-card__body .health-icon img {
  width: 20px;
}
.mobile-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}
.mobile-slider-dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #D8D8D8;
  opacity: 1;
  transition: transform 220ms ease, background 220ms ease;
}
.mobile-slider-dots .swiper-pagination-bullet-active {
  background: #847C67;
}
.about-bg {
  background: center / cover no-repeat url("../images/about.jpg");
}
.about-shell-box {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about-shell .section-heading {
  max-width: min(380px, 19.7916vw);
  margin-bottom: 0;
}
.about-shell .section-heading h2 {
  font-size: min(24px, 1.25vw);
  font-weight: normal;
  padding-right: 10px;
}
.about-copy {
  width: 37%;
}
.about-copy .align-box {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  max-width: 100%;
}
.about-copy .section-heading {
  width: 100%;
  max-width: none;
  align-items: center;
  margin-bottom: min(20px, 1.0416vw);
}
.about-copy .section-heading h2 {
  margin: 0;
  flex-shrink: 0;
}
.about-copy .section-heading .line {
  flex: 1;
}
.about-copy .align-box > h2 {
  white-space: nowrap;
}
.about-copy h2 {
  margin: 0;
  font-size: min(48px, 2.5vw);
  font-weight: 500;
  line-height: 1.5;
}
.about-copy h2.space {
  margin-bottom: min(40px, 2.0833vw);
}
.about-copy p {
  margin: 15px 0 0;
  color: #000000;
  font-size: min(16px, 0.8333vw);
  line-height: 1.6;
}
.contact-flex {
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-card {
  width: calc(50% - 15px);
  padding: min(37px, 1.9271vw) min(31px, 1.6145vw);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(100%);
}
.contact-card h3 {
  margin: 0;
  font-size: min(18px, 0.9375vw);
  line-height: 1.4;
}
.contact-card p,
.contact-card a {
  margin: 8px 0 0;
  color: #000000;
  font-size: clamp(12px, 0.7291vw, 14px);
  line-height: 1.8;
  display: inline-block;
}
.contact-icon {
  margin-bottom: min(25px, 1.3021vw);
  width: min(64px, 3.3333vw);
}
.site-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #1A1A1A;
  height: min(80px, 4.1667vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .site-footer-container {
  width: min(1530px, calc(100% - 64px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(12px, 0.7291vw, 14px);
  color: #FFFFFF;
}
@media (min-width: 901px) {
  .main-swiper,
  .main-swiper > .swiper-wrapper,
  .main-swiper > .swiper-wrapper > .swiper-slide {
    height: 100vh;
  }
}
@media (max-width: 900px) {
  .mb {
    display: block;
  }
  .pc {
    display: none;
  }
  .site-header {
    padding: 12.5px;
    align-items: flex-start;
  }
  .site-header.scroll {
    background: #fff;
  }
  .site-header.scroll .nav-link {
    color: #000;
  }
  .site-header.scroll .nav-link.is-active {
    border-color: #000;
  }
  .site-nav {
    margin-left: auto;
    gap: 50px;
    margin-right: 20px;
  }
  .nav-link {
    padding-bottom: 4px;
    font-size: 15px;
  }
  .scroll-hint,
  .desktop-health {
    display: none;
  }
  .main-swiper > .swiper-wrapper {
    display: block;
    transform: none !important;
  }
  .main-swiper > .swiper-wrapper > .swiper-slide {
    height: auto !important;
  }
  .section-inner {
    width: 100%;
    padding: 0 15px;
  }
  .panel {
    min-height: auto;
  }
  .hero-content {
    position: absolute;
    bottom: 6.6667vw;
    left: 0;
    width: 100%;
    min-height: auto;
    padding-left: 6.6667vw;
    display: block;
  }
  .hero-content h1 {
    font-size: 7.4666vw;
  }
  .kv-m {
    font-size: 0;
  }
  .kv-m img {
    width: 100%;
  }
  .hero-copy {
    font-size: 15px;
    line-height: 1.6;
  }
  .health-shell {
    min-height: auto;
    padding: 30px 15px 35px;
  }
  .section-heading {
    margin-bottom: 23px;
  }
  .section-heading h2 {
    font-size: 17px;
    padding-right: 12px;
  }
  .mobile-health {
    display: block;
  }
  .about-shell {
    min-height: auto;
    padding-top: 50px;
    padding-left: 34px;
    padding-right: 34px;
    padding-bottom: 40px;
    display: block;
  }
  .about-panel {
    padding-top: 0;
  }
  .about-bg {
    background-position: 64% center;
  }
  .about-copy {
    width: 100%;
  }
  .about-copy .align-box {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .about-copy .section-heading {
    width: 100%;
    max-width: none;
    margin-bottom: 19px;
  }
  .about-copy .section-heading h2 {
    font-size: 17px;
    padding-right: 15px;
    margin: 0;
    flex-shrink: 0;
  }
  .about-copy .section-heading .line {
    flex: 1;
  }
  .about-copy .align-box > h2 {
    white-space: nowrap;
  }
  .about-copy h2 {
    font-size: 24px;
    margin: 0;
  }
  .about-copy h2.space {
    margin-bottom: 20px;
  }
  .about-copy p {
    display: inline;
    font-size: 13.5px;
    line-height: 1.55;
  }
  .contact-card {
    min-height: auto;
  }
  .about-m {
    font-size: 0;
  }
  .about-m img {
    width: 100%;
  }
  .about-shell-box {
    width: 100%;
    min-height: auto;
    display: block;
    background: center / cover no-repeat url(../images/about-m.jpg);
  }
  .contact-flex {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 27px;
  }
  .contact-flex .contact-card {
    width: 100%;
    padding: 17px 18px;
  }
  .contact-flex .contact-card .contact-icon {
    width: 32px;
    margin-bottom: 15px;
  }
  .contact-flex .contact-card h3 {
    font-size: 15px;
  }
  .contact-flex .contact-card p,
  .contact-flex .contact-card a {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.4;
  }
  .site-footer {
    position: static;
    padding: 20px 0;
    text-align: center;
    background: #1A1A1A;
    height: auto;
  }
  .site-footer .site-footer-container {
    flex-direction: column;
    width: 100%;
    line-height: 1.5;
    font-size: 12px;
  }
}
