/* ==========================================================================
   Section 001: Hero with Horizontal Scroll
   ========================================================================== */

/* Hero Container */
:where(.s-001-hero) {
  position: relative;
  padding-bottom: 12rem;
  /* &:before {
    content: "";
    display: block;
    position: absolute;
    top: 3.2rem;
    right: 0;
    width: 25%;
    height: 100%;
    background: var(--wp--preset--color--primary-lighter);
    border-radius: var(--wp--custom--border-radius--lg);
    pointer-events: none;
    z-index: 0;
  } */
}

/* Horizontal Scroll Wrapper - 背景として配置 */
:where(.s-001-hero__scroll-wrapper) {
  z-index: 0;
  margin-top: 6rem;
  @media (max-width: 768px) {
    margin-top: 2rem;
  }
}

/* Scroll Container */
:where(.s-001-hero__scroll-container) {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Scroll Track - 横スクロールアニメーション */
:where(.s-001-hero__scroll-track) {
  display: flex;
  height: 100%;
  animation: marquee var(--marquee-speed, 45s) linear infinite;
  will-change: transform;
  gap: var(--wp--preset--spacing--lg);
  padding: 0 var(--wp--preset--spacing--base);
}

/* Scroll Item - 4:3 aspect ratio */
:where(.s-001-hero__scroll-item) {
  flex-shrink: 0;
  width: 66.7rem; /* 500px * 4/3 for 4:3 ratio */
  height: 50rem;
  position: relative;
  border-radius: var(--wp--custom--border-radius--lg);
  box-shadow: var(--wp--custom--shadow--md);
  @media (max-width: 768px) {
    width: 40rem; /* 300px * 4/3 for 4:3 ratio */
    height: 30rem;
  }
}

:where(.s-001-hero__scroll-item picture) {
  display: block;
  width: 100%;
  height: 100%;
}

:where(.s-001-hero__scroll-item img),
:where(.s-001-hero__scroll-item video) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--wp--custom--border-radius--sm)
    var(--wp--custom--border-radius--2-xl) var(--wp--custom--border-radius--sm)
    var(--wp--custom--border-radius--2-xl);
}

/* Marquee Animation - 7 items */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 667px * 7 items + 20px gap * 7 = 4809px */
    transform: translateX(
      calc(-66.7rem * 7 - var(--wp--preset--spacing--lg) * 7)
    );
  }
}

/* Inner Container - 1200px max width */
:where(.s-001-hero__inner) {
  position: relative;
  z-index: 1;
}

/* Content Area */
:where(.s-001-hero__content) {
  position: relative;
  display: flex;
  justify-content: center;
}

:where(.s-001-hero__text-group) {
  max-width: 80rem;
  text-align: center;
}

/* Title Styling */
:where(.s-001-hero__title) {
  margin: 0 0 var(--wp--preset--spacing--xl) 0;
  font-size: var(--wp--preset--font-size--6-xl);
  font-weight: 700;
  line-height: var(--wp--custom--line-height--tight);
  letter-spacing: var(--wp--custom--letter-spacing--tight);
  color: var(--wp--preset--color--black);
}

:where(.s-001-hero__title-main) {
  display: block;
  color: var(--wp--preset--color--primary);
  margin-bottom: var(--wp--preset--spacing--sm);
  font-size: var(--wp--preset--font-size--5-xl);
}

:where(.s-001-hero__title-sub) {
  display: block;
  color: var(--wp--preset--color--gray-darkest);
  font-size: var(--wp--preset--font-size--4-xl);
}

/* Description */
:where(.s-001-hero__description) {
  margin: 0 0 var(--wp--preset--spacing--3-xl) 0;
  font-size: var(--wp--preset--font-size--lg);
  line-height: var(--wp--custom--line-height--relaxed);
  color: var(--wp--preset--color--gray-dark);
  letter-spacing: var(--wp--custom--letter-spacing--wide);
}

/* Action Buttons */
:where(.s-001-hero__actions) {
  display: flex;
  justify-content: center;
  gap: var(--wp--preset--spacing--lg);
  flex-wrap: wrap;
}

:where(.s-001-hero__button) {
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--sm);
  padding: var(--wp--preset--spacing--base) var(--wp--preset--spacing--xl);
  font-size: var(--wp--preset--font-size--base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--wp--custom--border-radius--full);
  transition: all var(--wp--custom--transition--duration--base)
    var(--wp--custom--transition--timing--ease);
  letter-spacing: var(--wp--custom--letter-spacing--wide);
}

:where(.s-001-hero__button--primary) {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  box-shadow: var(--wp--custom--shadow--md);
}

:where(.s-001-hero__button--primary:hover) {
  background: var(--wp--preset--color--primary-dark);
  box-shadow: var(--wp--custom--shadow--lg);
  transform: translateY(-2px);
}

:where(.s-001-hero__button--secondary) {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  border: 2px solid var(--wp--preset--color--primary);
  box-shadow: var(--wp--custom--shadow--sm);
}

:where(.s-001-hero__button--secondary:hover) {
  background: var(--wp--preset--color--primary-lightest);
  box-shadow: var(--wp--custom--shadow--md);
  transform: translateY(-2px);
}

:where(.s-001-hero__button .material-symbols-outlined) {
  font-size: var(--wp--preset--font-size--xl);
}

/* Animations */

/* Fade in animation for content */
:where(.s-001-hero__title),
:where(.s-001-hero__description),
:where(.s-001-hero__actions) {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-fill-mode: both;
}

:where(.s-001-hero__title) {
  animation-delay: 0.2s;
}

:where(.s-001-hero__description) {
  animation-delay: 0.4s;
}

:where(.s-001-hero__actions) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(var(--wp--preset--spacing--xl));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parallax Container Support */
:where(.s-001-hero.parallax-container) {
  transform-style: preserve-3d;
}
:where(.s-001-hero__deco-text) {
  position: absolute;
  top: -3rem;
  left: 1rem;
  mix-blend-mode: plus-lighter;
  font-size: 13rem;
  font-weight: 200;
  color: var(--wp--preset--color--primary);
  opacity: 0.5;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 400;
  letter-spacing: var(--wp--custom--letter-spacing--widest);
  @media (max-width: 768px) {
    font-size: 4rem;
    top: -1rem;
  }
}
