@charset "UTF-8";

/* カスタムCSS：アーティスト名を下揃えにする */
.w-layout-cell {
  display: flex;
  flex-direction: column;
  overflow: hidden;    /* スライダーがセルを超えないように */
  min-width: 0;        /* グリッドセルの縮小を許可 */
}

.div-block-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 24px; /* スライダーのドット高さ分を確保 */
}

.koda_list_text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* コンサート名の下の線をアーティスト名と一緒に下揃えにする */
.list_common_title+.list_common_delim {
  /* margin-top: auto; */
  /* padding-top: 10px; */
}

.list_common_subtitle+.list_common_delim {
  margin-top: auto;
  padding-top: 10px;
}

.list_tour_title_name1+.list_common_delim {
  margin-top: auto;
  padding-top: 10px;
}
.list_tour_title_name2+.list_common_delim {
  margin-top: auto;
  padding-top: 10px;
}
.list_tour_title_name3+.list_common_delim {
  margin-top: auto;
  padding-top: 10px;
}
.list_tour_title_name4+.list_common_delim {
  margin-top: auto;
  padding-top: 10px;
}

/* 楽曲スライダー */
.song-slider {
  position: relative;
  overflow: hidden;
  width: 100%;        /* 親の幅に制約 */
  max-width: 100%;    /* 親の幅を超えないように */
  min-width: 0;       /* flexアイテムの縮小を許可 */
  display: flex;
  flex-direction: column;
  flex: 1;            /* 他の .div-block-list と同様にflex拡張 */
}
.song-slider-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;        /* トラックの幅を親に制約 */
  flex: 1;            /* 高さを親に合わせて伸ばす */
}
.song-slide {
  flex: 0 0 100%;
  min-width: 0;       /* スライドの縮小を許可 */
  display: flex;      /* 内部要素のflex連鎖を維持 */
  flex-direction: column;
}
/* スライダー内の div-block-list も他と同じ動作に */
.song-slider .div-block-list {
  width: 100%;
  flex: 1;            /* 高さを伸ばしてアーティスト名を下揃えに */
  padding-bottom: 0;  /* スライダー内はドットがあるため不要 */
}
.koda_list_image {
  position: relative;
}
.song-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  width: 24px;
  height: 36px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  font-size: 24px;
}
.song-arrow.prev {
  left: 8px;
  display: none;
}
.song-arrow.next {
  right: 8px;
}
.song-arrow.disabled {
  display: none;
  pointer-events: none;
}
.song-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 4px;
  flex-shrink: 0;       /* 高さを固定 */
  flex-wrap: wrap;
  align-items: flex-start;
}
.song-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  padding: 0;
  flex: 0 0 10px;
  aspect-ratio: 1 / 1;
}
.song-slider-dot.active {
  background: #3898ec;
}