@charset "UTF-8";

/* ====================================
   Hero Section
   ==================================== */
.as-p-top-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.as-p-top-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.as-p-top-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.as-p-top-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(8 8 8 / 0.1);
}

.as-p-top-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-block-start: 4rem;
}

.as-p-top-hero-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.as-p-top-hero-title {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.as-p-top-hero-title span {
  color: var(--primary-color);
}

.as-p-top-hero-desc {
  font-size: 1.125rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto 8rem;
}

.as-p-top-hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* スクロールインジケーター */
.as-p-top-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: top-bounce 2s infinite;
  color: var(--text-muted);
}

@keyframes top-bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

@media (min-width: 768px) {
  .as-p-top-hero-title {
    font-size: 5rem;
  }

  .as-p-top-hero-content {
    margin-block-start: 4rem;
  }

  .as-p-top-hero-desc {
    margin: 0 auto 11rem;
  }
}
