/* detail.css */

/* ページ全体の余白調整 */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 20px auto;
  max-width: 800px;
  padding: 0 20px;
  background-color: #fff;
}

/* 戻るリンク */
.back-link {
  display: inline-block;
  margin: 20px 0;
  color: #e91e63;
  text-decoration: none;
  font-weight: bold;
}

.back-link:hover {
  text-decoration: underline;
}

/* タイトル */
.disc-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}

.disc-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

/* 画像サイズ調整 */
.disc-image {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 発売日など情報 */
.release-info {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

/* 収録曲リスト */
.tracklist {
  list-style: decimal inside;
  margin-bottom: 30px;
  padding-left: 0;
}

.tracklist li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #444;
}

/* 視聴・ダウンロードリンク */
.download-link {
  display: block;
  width: fit-content;
  margin: 0 auto 40px auto;
  padding: 10px 25px;
  background-color: #e91e63;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-link:hover {
  background-color: #c2185b;
}

/* レスポンシブ対応（スマホ） */
@media screen and (max-width: 480px) {
  body {
    margin: 10px;
    padding: 0 10px;
  }
  
  .disc-title {
    font-size: 1.5rem;
  }
  
  .disc-subtitle {
    font-size: 1.2rem;
  }
  
  .disc-image {
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .download-link {
    padding: 8px 20px;
  }
}
