/**
 * Hero Section
 * ヒーローセクションのスタイル
 */

/* ========================================
   Hero Section with Swiper
======================================== */
.lp01-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--wp--preset--color--white);
  overflow: hidden;
}

/* Swiper Slider Background */
.lp01-hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.lp01-hero__slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.lp01-hero__slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lp01-hero__slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp01-hero__slide-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Swiper Pagination */
.lp01-hero .swiper-pagination {
  bottom: 30px;
  z-index: 10;
}

.lp01-hero .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--wp--custom--overlay--light--5);
  opacity: 1;
  margin: 0 8px;
}

.lp01-hero .swiper-pagination-bullet-active {
  background: var(--wp--preset--color--white);
  width: 40px;
  border-radius: 6px;
}

/* Hero Content */
.lp01-hero__inner {
  position: relative;
  z-index: 2;
}

.lp01-hero__content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--wp--preset--spacing--3-xl) var(--wp--preset--spacing--xl);
}

.lp01-hero__logo {
  display: inline-flex;
  align-items: center;
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--lg);
  border-radius: var(--wp--custom--border-radius--full);
  background-color: var(--wp--custom--overlay--light--2);
  backdrop-filter: blur(10px);
  box-shadow: var(--wp--custom--shadow--md);
  margin-bottom: var(--wp--preset--spacing--2-xl);
}

.lp01-hero__logo img {
  height: 44px;
  width: auto;
}

.lp01-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--sm);
  padding: var(--wp--preset--spacing--base) var(--wp--preset--spacing--xl);
  background-color: var(--wp--custom--overlay--light--2);
  backdrop-filter: blur(10px);
  border-radius: var(--wp--custom--border-radius--full);
  font-size: var(--wp--preset--font-size--sm);
  margin-bottom: var(--wp--preset--spacing--2-xl);
}

.lp01-hero__label .material-symbols-outlined {
  font-size: 18px;
}

.lp01-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--wp--custom--font-weight--bold);
  line-height: var(--wp--custom--line-height--sm);
  margin-bottom: var(--wp--preset--spacing--xl);
}

.lp01-hero__title-sub {
  display: block;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: var(--wp--custom--font-weight--normal);
  margin-top: var(--wp--preset--spacing--lg);
  opacity: var(--wp--custom--opacity--95);
}

.lp01-hero__catchcopy {
  font-size: var(--wp--preset--font-size--xl);
  margin-bottom: var(--wp--preset--spacing--2-xl);
  font-weight: var(--wp--custom--font-weight--semibold);
}

.lp01-hero__description {
  font-size: var(--wp--preset--font-size--base);
  line-height: var(--wp--custom--line-height--2-lg);
  margin-bottom: var(--wp--preset--spacing--3-xl);
  opacity: var(--wp--custom--opacity--95);
  max-width: 600px;
}

.lp01-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--base);
  margin-bottom: var(--wp--preset--spacing--3-xl);
}

.lp01-hero__buttons .c-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--sm);
}

.lp01-hero__buttons .material-symbols-outlined {
  font-size: 20px;
}

/* Scroll Indicator */
.lp01-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wp--preset--spacing--xs);
  color: var(--wp--preset--color--white);
  opacity: var(--wp--custom--opacity--80);
}

.lp01-hero__scroll .material-symbols-outlined {
  font-size: 32px;
}

/* Responsive */
@media (min-width: 768px) {
  .lp01-hero__content {
    padding: var(--wp--preset--spacing--5-xl) 0;
  }

  .lp01-hero__buttons {
    flex-wrap: nowrap;
  }
}
