@charset "UTF-8";

/* ページ全体の横並びレイアウト */
.page-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 60px auto 80px;
  padding: 0 20px;
  gap: 40px;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

/* サイドバー */
.live-sidebar {
  width: 220px;
  background-color: #222;
  padding: 20px;
  border-radius: 12px;

  flex-shrink: 0;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.live-sidebar h3 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 6px;
}

.live-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.live-sidebar ul li {
  margin-bottom: 12px;
}

.live-sidebar ul li a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
}

.live-sidebar ul li a:hover,
.live-sidebar ul li a.active {
  color: #000;
  background-color: #ffd700;
}

/* メインコンテンツの微調整 */
.live-detail {
  flex: 1;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* 開催日と会場をまとめて小さく */
.live-date-venue {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
}

.live-date-venue a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color 0.3s ease;
}

.live-date-venue a:hover {
  border-bottom-color: #ffd700;
}

.artist-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.artist-card {
  display: flex;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  gap: 20px;
  align-items: flex-start;
}

.artist-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.artist-details h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #ffda66;
}

.artist-details .role {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #aaa;
}

.artist-details .bio {
  margin: 10px 0;
  color: #ccc;
  font-size: 0.95rem;
}

.artist-details .sns {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.artist-details .sns a {
  color: #ccc;
  font-size: 1.3rem;
  transition: color 0.2s;
}

.artist-details .sns a:hover {
  color: var(--accent-color, #ffcc00);
}



/* レスポンシブ */
@media screen and (max-width: 900px) {
  .page-wrapper {
    flex-direction: column;
  }
  .live-sidebar {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    top: auto;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
  }
  .live-sidebar h3 {
    border: none;
    color: #ffd700;
    margin-bottom: 10px;
  }
  .live-sidebar ul li a {
    padding: 4px 0;
  }
}

.live-detail {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.live-detail h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  
  text-align: center;
}

.live-detail .live-date {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
}

.live-detail h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 8px;
  margin-top:40px;
}

.video-wrapper iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.photo-gallery .photos {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-bottom: 40px;
  overflow-y: hidden;
  flex-wrap:wrap;
}

.photo-gallery .photos img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;

  transition: transform 0.3s ease;
}

.photo-gallery .photos img:hover {
  transform: scale(1.05);
}

.artist-intro ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  color: #eee;
  font-size: 1.1rem;
}

.artist-intro ul li {
  margin-bottom: 8px;
}

.venue-info p, 
.archive-purchase p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
}

.venue-info a {
  color: #ffd700;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color 0.3s ease;
}

.venue-info a:hover,
.archive-purchase a:hover {
  border-bottom-color: #ffd700;
}

.btn-purchase {
  background-color: #ffd700;
  color: #000;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-purchase:hover {
  background-color: #b38f15;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .page-wrapper {
    flex-direction: column;
    padding: 0 10px;
    margin: 40px auto 60px;
  }

  .live-sidebar {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    top: auto;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    order: 2;
  }

  .live-detail {
    order: 1;
  }

  .live-sidebar h3 {
    border: none;
    color: #ffd700;
    margin-bottom: 10px;
  }

  .live-sidebar ul li a {
    padding: 4px 0;
  }
}
