@charset "UTF-8";
/* --- メインスタイル --- */
.hero-bg-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background-color: #333;
}
@media screen and (max-width: 768px) {
  .hero-bg-wrapper {
    height: 80vh;
  }
}
.hero-bg-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 5;
  pointer-events: none;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-slide {
  height: 100%;
}

/* 画像の設定とズームアニメーション */
.hero-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 4s ease;
}
.swiper-slide-active .hero-bg, .swiper-slide-duplicate-active .hero-bg {
  transform: scale(1.15);
  transition: transform 10s linear;
}

/* 不要になるので削除またはコメントアウトしてOKです */
/* --- コンテンツエリア --- */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 90%;
  max-width: 1000px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-content h1 {
  margin-bottom: 24px;
  line-height: 1.4;
  color: #fff;
}
.hero-content .catch-small {
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-block;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .hero-content .catch-small {
    font-size: 1.1rem;
    display: block;
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.hero-content .catch-large {
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .hero-content .catch-large {
    font-size: 2rem;
  }
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .hero-sub {
    font-size: 0.9rem;
  }
}

/* --- ボタン --- */
.hero-btn-wrapper {
  display: flex;
  justify-content: center;
}

.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #fff;
  color: #2f4f4f;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-cta-hero:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- 下部装飾（フレーム・スクロール） --- */
.hero-bottom-frame {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border-radius: 40px 40px 0 0;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .hero-bottom-frame {
    height: 40px;
    border-radius: 24px 24px 0 0;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  animation: floating 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .scroll-indicator {
    bottom: 50px;
  }
}
.scroll-indicator span {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .scroll-indicator span {
    font-size: 0.75rem;
  }
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 50px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .scroll-indicator .scroll-line {
    height: 40px;
  }
}
.scroll-indicator .scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollFlow 1.5s ease-in-out infinite;
  transform-origin: top;
}

/* --- ユーティリティ --- */
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/* --- アニメーション定義 --- */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes scrollFlow {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes floating {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}/*# sourceMappingURL=main-slider.css.map */