/* Hero infinite slider */
:where(.hero-slider) {
  position: relative;
  width: 100%;
  padding: 140px 0 40px;
  background: transparent;
  overflow: hidden;
  margin-bottom: -80px;
  z-index: 0;
}

:where(.hero-slider__track) {
  display: flex;
  width: fit-content;
  gap: 2rem;
  animation: hero-marquee var(--hero-marquee-speed, 60s) linear infinite;
  will-change: transform;
}

:where(.hero-slider__item) {
  flex: 0 0 auto;
  height: 65rem;
  width: 85rem;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

:where(.hero-slider__item) img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

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

@media (prefers-reduced-motion: reduce) {
  :where(.hero-slider__track) {
    animation: none;
    transform: translateX(0);
  }
}

/* First View Section */
:where(.p-home-fv) {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--wp--preset--color--gray-200) 0%,
    var(--wp--preset--color--white) 100%
  );
  text-align: center;
}

:where(.p-home-fv__inner) {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

:where(.p-home-fv__title) {
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--gray-900);
  margin-bottom: 20px;
}

:where(.p-home-fv__subtitle) {
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.8;
  color: var(--wp--preset--color--text);
  letter-spacing: 0.06em;
}

/* Partner Section */
:where(.sec-005-partner) {
  margin: 3.2 0;
  padding: var(--section-spacing-medium) 0;
  background: linear-gradient(
    135deg,
    var(--wp--preset--color--gray-200) 0%,
    var(--wp--preset--color--white) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
:where(.sec-005-partner__bg-decoration) {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

:where(.sec-005-partner__bg-decoration--1) {
  top: 20%;
  right: -100px;
  width: 400px;
  height: 400px;
}

:where(.sec-005-partner__bg-decoration--1 img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  opacity: 0.04;
  filter: blur(2px);
  animation: float 20s ease-in-out infinite;
}

:where(.sec-005-partner__bg-decoration--2) {
  top: 70%;
  left: -120px;
  width: 350px;
  height: 350px;
}

:where(.sec-005-partner__bg-decoration--2 img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  opacity: 0.06;
  filter: blur(1px);
}

:where(.sec-005-partner__inner) {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

:where(.sec-005-partner__title) {
  font-size: var(--wp--preset--font-size--heading-lg);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--wp--preset--color--gray-900);
  margin-bottom: 30px;
}

:where(.sec-005-partner__lead) {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--wp--preset--color--gray-900);
  margin-bottom: 20px;
}

:where(.sec-005-partner__text) {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--wp--preset--color--text);
  margin-bottom: 40px;
}

:where(.sec-005-partner__badges) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

:where(.sec-005-partner__badge) {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  transition: all 0.3s ease;
}

:where(.sec-005-partner__badge:hover) {
  background: var(--wp--preset--color--primary-100);
  transform: translateX(8px);
}

:where(.sec-005-partner__badge-icon) {
  width: 28px;
  height: 28px;
  fill: var(--wp--preset--color--primary-500);
}

:where(.sec-005-partner__badge-text) {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--wp--preset--color--gray-900);
}

/* Features Section */
:where(.sec-006-features) {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--wp--preset--color--gray-200) 0%,
    var(--wp--preset--color--white) 100%
  );
}
/* :where(.sec-006-features .c-heading) {
  color: var(--wp--preset--color--white);
}
:where(.sec-006-features .c-heading__en) {
  color: var(--wp--preset--color--white);
} */
:where(.sec-006-fetures-back) {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 6.2rem);
  border-radius: var(--wp--custom--border-radius--lg);
  height: 50%;
  z-index: 0;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
    animation: float 20s ease-in-out infinite;
  }
  @media (max-width: 768px) {
    width: 100%;
    border-radius: 0;
  }
}
:where(.sec-006-features__overlay) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(58 180 85 / 60%);
  backdrop-filter: blur(4px);
  z-index: 1;
}

:where(.sec-006-features__header) {
  text-align: center;
}

:where(.sec-006-features__title) {
}

:where(.sec-006-features__list) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--wp--preset--spacing--xl);
  max-width: 1100px;
  margin: 0 auto;
}

:where(.sec-006-features__item) {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

:where(.sec-006-features__item:hover) {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

:where(.sec-006-features__item-number) {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--wp--preset--color--primary-500);
  text-transform: uppercase;
  margin-bottom: 20px;
}

:where(.sec-006-features__item-number) span {
  font-size: 2.2rem;
  margin-left: 8px;
}

:where(.sec-006-features__item-icon) {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

:where(.sec-006-features__item-icon) svg {
  width: 100%;
  height: 100%;
  fill: var(--wp--preset--color--brand-700);
}

:where(.sec-006-features__item-title) {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--wp--preset--color--gray-900);
}

:where(.sec-006-features__item-text) {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--wp--preset--color--text);
}

/* Button Styles */
:where(.c-btn01) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 40px;
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary-500);
  color: var(--wp--preset--color--primary-500);
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s ease;
}

:where(.c-btn01:hover) {
  background: var(--wp--preset--color--primary-500);
  color: var(--wp--preset--color--white);
  box-shadow: 0 6px 20px rgba(46, 91, 138, 0.3);
}

:where(.c-btn01__txt) {
  position: relative;
  z-index: 1;
}

:where(.c-btn01__ico) {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
}

:where(.c-btn01__ico)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

:where(.c-btn01.is-md-left) {
  margin: 0;
}

/* Float animation for background decorations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* About Section */
:where(.p-home-about) {
  padding: 100px 0;
  background: var(--wp--preset--color--white);
}

:where(.p-home-about__inner) {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

:where(.p-home-about__content) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

:where(.p-home-about__title) {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--wp--preset--color--gray-900);
  margin-bottom: 20px;
}

:where(.p-home-about__subtitle) {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--wp--preset--color--primary-500);
  margin-bottom: 30px;
}

:where(.p-home-about__description) {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--wp--preset--color--text);
  margin-bottom: 40px;
}

:where(.p-home-about__description) p {
  margin-bottom: 20px;
}

:where(.p-home-about__description) p:last-child {
  margin-bottom: 0;
}

:where(.p-home-about__image) img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Services Section */
:where(.p-home-services) {
  padding: 100px 0;
  background: var(--wp--preset--color--gray-200);
}

:where(.p-home-services__inner) {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

:where(.p-home-services__header) {
  text-align: center;
  margin-bottom: 60px;
}

:where(.p-home-services__title) {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--wp--preset--color--gray-900);
  margin-bottom: 16px;
}

:where(.p-home-services__subtitle) {
  font-size: 1.6rem;
  color: var(--wp--preset--color--text);
}

:where(.p-home-services__grid) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

:where(.p-home-services__item) {
  background: var(--wp--preset--color--white);
  border-radius: 12px;
  transition: all 0.3s ease;
}

:where(.p-home-services__item:hover) {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

:where(.p-home-services__link) {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  text-decoration: none;
  color: inherit;
}

:where(.p-home-services__icon) {
  font-size: 3.2rem;
  margin-bottom: 12px;
}

:where(.p-home-services__text) {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--wp--preset--color--gray-900);
  text-align: center;
  letter-spacing: 0.05em;
}

:where(.p-home-services__cta) {
  text-align: center;
}

/* Equipment Section */
:where(.p-home-equipment) {
  padding: 100px 0;
  background: var(--wp--preset--color--white);
}

:where(.p-home-equipment__inner) {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

:where(.p-home-equipment__content) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

:where(.p-home-equipment__image) img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

:where(.p-home-equipment__title) {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--wp--preset--color--gray-900);
  margin-bottom: 20px;
}

:where(.p-home-equipment__subtitle) {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--wp--preset--color--primary-500);
  margin-bottom: 30px;
}

:where(.p-home-equipment__description) {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--wp--preset--color--text);
  margin-bottom: 40px;
}

:where(.p-home-equipment__description) p {
  margin-bottom: 20px;
}

:where(.p-home-equipment__description) p:last-child {
  margin-bottom: 0;
}

/* News Section */
:where(.p-home-news) {
  padding: 100px 0;
  background: var(--wp--preset--color--gray-200);
}

:where(.p-home-news__inner) {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

:where(.p-home-news__layout) {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

:where(.p-home-news__header) {
  margin-bottom: 40px;
}

:where(.p-home-news__title) {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--wp--preset--color--gray-900);
  margin-bottom: 16px;
}

:where(.p-home-news__subtitle) {
  font-size: 1.6rem;
  color: var(--wp--preset--color--text);
}

:where(.p-home-news__articles) {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

:where(.p-home-news__article) {
  border-bottom: 1px solid var(--wp--preset--color--gray-400);
}

:where(.p-home-news__article:last-child) {
  border-bottom: none;
}

:where(.p-home-news__article-link) {
  display: block;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

:where(.p-home-news__article-link:hover) {
  background: var(--wp--preset--color--white);
  margin: 0 -20px;
  padding: 20px;
}

:where(.p-home-news__article-meta) {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

:where(.p-home-news__article-date) {
  font-size: 1.4rem;
  color: var(--wp--preset--color--text);
}

:where(.p-home-news__article-category) {
  display: inline-block;
  padding: 4px 12px;
  background: var(--wp--preset--color--primary-100);
  color: var(--wp--preset--color--primary-700);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 4px;
}

:where(.p-home-news__article-title) {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--wp--preset--color--gray-900);
  line-height: 1.6;
  margin: 0;
}

:where(.p-home-news__empty) {
  font-size: 1.4rem;
  color: var(--wp--preset--color--text);
}

:where(.p-home-news__aside) {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

:where(.p-home-news__card) {
  background: var(--wp--preset--color--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

:where(.p-home-news__card-title) {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wp--preset--color--gray-900);
  margin: 0 0 12px;
}

:where(.p-home-news__card-text) {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--wp--preset--color--text);
  margin: 0 0 16px;
}

:where(.p-home-news__card-link) {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--wp--preset--color--primary-500);
  text-decoration: none;
  transition: all 0.3s ease;
}

:where(.p-home-news__card-link:hover) {
  color: var(--wp--preset--color--primary-700);
  text-decoration: underline;
}

:where(.p-home-news__card.is-reservation) .c-btn01 {
  width: 100%;
  justify-content: center;
}

/* Recruitment Section */
:where(.p-home-recruitment) {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--wp--preset--color--primary-100) 0%,
    var(--wp--preset--color--white) 100%
  );
}

:where(.p-home-recruitment__inner) {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

:where(.p-home-recruitment__content) {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

:where(.p-home-recruitment__title) {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--wp--preset--color--gray-900);
  margin-bottom: 24px;
}

:where(.p-home-recruitment__description) {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--wp--preset--color--text);
  margin-bottom: 40px;
}

:where(.p-home-recruitment__image) img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* CTA Section */
:where(.p-home-cta) {
  padding: 120px 0;
  background: var(--wp--preset--color--gray-900);
  color: var(--wp--preset--color--white);
  text-align: center;
}

:where(.p-home-cta__inner) {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

:where(.p-home-cta__title) {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

:where(.p-home-cta__description) {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 60px;
  opacity: 0.9;
}

:where(.p-home-cta__actions) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

:where(.p-home-cta__phone) {
  text-align: left;
}

:where(.p-home-cta__phone-label) {
  font-size: 1.4rem;
  margin-bottom: 12px;
  opacity: 0.8;
}

:where(.p-home-cta__phone-number) {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--wp--preset--color--white);
  text-decoration: none;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

:where(.p-home-cta__phone-number:hover) {
  color: var(--wp--preset--color--brand-500);
}

:where(.p-home-cta__phone-hours) {
  font-size: 1.2rem;
  opacity: 0.7;
}

:where(.p-home-cta__buttons) {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

:where(.p-home-cta) .c-btn01 {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--gray-900);
  border-color: var(--wp--preset--color--white);
}

:where(.p-home-cta) .c-btn01:hover {
  background: transparent;
  color: var(--wp--preset--color--white);
}

:where(.p-home-cta) .c-btn01.is-primary {
  background: var(--wp--preset--color--brand-500);
  border-color: var(--wp--preset--color--brand-500);
  color: var(--wp--preset--color--white);
}

:where(.p-home-cta) .c-btn01.is-primary:hover {
  background: var(--wp--preset--color--brand-700);
  border-color: var(--wp--preset--color--brand-700);
}
