/* ========================================
   Hero Animation Styles
   ======================================== */

/* 共通コンテナスタイル */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
  z-index: 1;
}

/* 波アニメーション用 */
.hero-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

/* パーティクルアニメーション用 */
.hero-wave .particles-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* グラデーションアニメーション用 */
.hero-wave .gradient-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #D4EBE0 0%, #9DD4BC 100%);
  transition: background 0.1s ease;
}

/* 静的背景用 */
.hero-wave .static-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #D4EBE0 0%, #9DD4BC 100%);
}
