/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/* ▼ 共通スライダースタイル */
.kizuna-slider-container {
  position: relative;
  width: 280px;
  margin: 0 auto;
  text-align: center;
  user-select: none;
  touch-action: pan-y;
  min-height: 100px;
}

.kizuna-slide,
.k2-slide,
.k3-slide {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.kizuna-slide.kizuna-active,
.k2-slide.k2-active,
.k3-slide.k3-active {
  display: block;
  position: relative;
}

.kizuna-slide img,
.k2-slide img,
.k3-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ナビボタン */
.kizuna-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.kizuna-prev, .k2-prev, .k3-prev {
  left: -20px;
}
.kizuna-next, .k2-next, .k3-next {
  right: -20px;
}

/* モバイルではナビ非表示 */
@media screen and (max-width: 480px) {
  .kizuna-nav {
    display: none;
  }
}

/* ドット共通 */
.kizuna-dots,
.k2-dots,
.k3-dots {
  margin-top: 10px;
}
.kizuna-dot,
.k2-dot,
.k3-dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}
.kizuna-dot.kizuna-active,
.k2-dot.k2-active,
.k3-dot.k3-active {
  background-color: #333;
}
