/* グループカラー */
/* スクロールバー */
/* details UI */
/* 矢印 */
/* リンク */
/* タイトル */
/* テーブル共通 */
/* セットリストリストテーブル共通 */
/* ライブリストテーブル共通 */
/* YouTube */
/* 全開閉ボタン */
/* ソートラジオボタン */
/* 前後ボタン */





/* グループカラー */
:root {
  --sakura-main: #E2A3B4;
  --sakura-soft: #F9E6EB;
  --keyaki-main: #5EB954;
  --keyaki-soft: #E8F5EC;
}
.sakura {
  color: var(--sakura-main);
}
.sakura.link-common:hover {
  color: var(--sakura-main);
}
.keyaki {
  color: var(--keyaki-main);
}
.keyaki.link-common:hover {
  color: var(--keyaki-main);
}

/* スクロールバー */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
}

/* details UI */
details summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

/* 矢印 */
summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 6px;
  transition: transform 0.3s ease;
}
details[open] summary::before {
  transform: rotate(90deg);
}

/* リンク */
.link-common {
  text-decoration: none;
  font-weight: bold;
}
.link-common:hover {
  text-decoration: underline;
}

/* グラデーション */
.gradation-card {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--main-color) 25%, white) 0%,
    #fff 100%
  );
  padding: 24px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
}




/* タイトル */
.title-common {
  text-align: center;
  margin-bottom: 5px;
}
.title-sub-common {
  text-align: center;
  color: #888;
  margin-bottom: 10px;
}


/* テーブル共通 */
table {
  width: 100%;
  border-collapse: collapse;
}

.table-common {
  margin-bottom: 10px;
}
.table-common th {
  text-align: center;
  width: 80px;
  background: #f7f7f7;
  color: var(--main-color);
  font-weight: 600;
}
.table-common th,
.table-common td {
  border: 0.5px solid #cad2e0 !important;
  padding: 5px 10px;
}
@media (max-width: 767px) {
  .table-common th {
    width: 50px;
    padding: 3px;
  }
  .table-common td {
    padding: 3px;
  }
.table-common {
  border-collapse: collapse;
}

.table-common th,
.table-common td {
  border: 1px solid #cad2e0 !important;
}

/* 横方向の重なり防止 */
.table-common th + th,
.table-common th + td,
.table-common td + td {
  border-left: none;
}

/* 縦方向の重なり防止 */
.table-common tr + tr th,
.table-common tr + tr td {
  border-top: none;
}
}
/* セットリストテーブル共通 */
.table-common.setlist-table th:nth-child(1),
.table-common.setlist-table td:nth-child(1) {
  width: 13%;
}
.table-common.setlist-table td:nth-child(1) {
  text-align: center;
  font-weight: 700;
  color: #666;
  white-space: nowrap;
}
/* ライブリストテーブル共通 */
.table-common.live-list-table th:nth-child(1),
.table-common.live-list-table td:nth-child(1){
  width:7%;
  text-align:center;
}
.table-common.live-list-table th:nth-child(2),
.table-common.live-list-table td:nth-child(2){
  width:70%;
}
.table-common.live-list-table th:nth-child(3),
.table-common.live-list-table td:nth-child(3){
  width:23%;
}




/* YouTube */
.video-wrap {
  position: relative;
  display: inline-block;
}
.youtube-thumb {
  width: 100%;
  border-radius: 6px;
  display: block;
}
.play-icon {  /* 赤い再生ボタン */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 45px;
  background: #ff0000; 
  border-radius: 12px;
  transform: translate(-50%, -50%);
  opacity: 0.95;
  transition: transform 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.play-icon::after {  /* 白い三角 */
  content: "";
  position: absolute;
  left: 26px;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.video-wrap:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 1;
}
@media (max-width: 767px) {
  .play-icon {
    width: 40px;
    height: 28px;
  }
  .play-icon::after {
    left: 16px;
    top: 8px;
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}

/* 全開閉ボタン */
.toggle-all {
  font-weight: bold;
  padding: 2px 8px;
  margin-right:10px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  border-radius: 6px;
  cursor: pointer;
}
.toggle-all:hover {
  background: #eee;
}
/* ソートラジオボタン */
.sort-all {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 16px;
  font-size: 16px; 
}
.sort-all label {
  margin-right: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-all input[type="radio"] {
  transform: scale(1.7);
  cursor: pointer;
}
.sort-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .sort-all {
    flex-direction: column;
    align-items: flex-end; 
    gap: 6px;
  }
  .toggle-row {
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 10px;
  }
  .sort-row-radio {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}



/* 前後ボタン */
.frontback-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 20px;
}
.nav-button {
  margin-bottom: 16px;
  flex: 1;
}
.nav-button-right {
  text-align: right;
}
.nav-button button {
  background: #f3f3f3;
  border: 1px solid #ddd;
  padding: 5px 10px;
  font-size: 0.9em;
  cursor: pointer;
  border-radius: 6px;
}
.nav-button button:hover {
  background: #e9e9e9;
}
.nav-link {
  display: inline-flex; 
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: #fff;
  border: 2px solid;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  max-width: 300px;
}
@media (max-width: 767px) {
  .nav-link {
    max-width: 120px;
  }
}
.nav-link .label { /* 曲名だけ省略 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nav-link .arrow { /* 矢印は消さない */
  flex-shrink: 0;
}
.nav-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.back-link {
  display: inline-block;
  padding: 5px 10px;
  background: #fff;
  border: 2px solid;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
.back-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}
