/* ===========================
   共通スライダーCSS
   =========================== */

/* スライダーコンテナ */
.lunaria-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* スライドラッパー */
.lunaria-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* 各スライド */
.lunaria-slide {
  min-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* ナビゲーション */
.lunaria-slider-nav {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.lunaria-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}

.lunaria-slider-dot.active {
  background: rgba(255,255,255,1);
}
