/* 背景スライダーのスタイル */
.section-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

/* ダークオーバーレイ - テキストの読みやすさを確保 */
.section-bg-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* ダークオーバーレイ */
  z-index: 1;
}

/* ホームセクション用の特別なスタイル */
#home .section-bg-slider {
  opacity: 0.8; /* ヒーローセクションは背景を強調 */
}

/* 統計セクション用のスタイル */
#stats .section-bg-slider {
  opacity: 0.1; /* 統計セクションは文字を強調 */
}

/* サービスセクション用の背景スタイル調整 */
#services {
  position: relative;
  z-index: 1;
}

#services .section-bg-slider {
  opacity: 0.05; /* サービスカードを目立たせるため薄く */
}

/* サービスカードのスタイル調整 - 背景透過対策 */
.service-card {
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.9);
}

/* 各セクションのパディング調整 */
.section {
  padding: 100px 50px;
  position: relative;
  overflow: hidden; /* スライダーがはみ出さないように */
}

/* 新スライド用のフェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.2;
  }
}

.new-slide {
  animation: fadeIn 1.5s ease-in-out;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .section-bg-slider {
    background-position: center center;
  }
  
  .section {
    padding: 60px 30px;
  }
}
