@charset "UTF-8";
/* CSS Document */
.inner {
  margin: 0 22px;
}
@media(min-width:768px) {
  .inner-header {
    margin: 0 180px;
  }
  .inner-footer {
    margin: 0 180px;
  }
}

/*discography*/
.section-discography {
  color: #777;
  height: 100%;
  line-height: 30px;
  background-image: url("../images/SHUNTA_image_mono02.jpg");
  background-attachment: fixed;
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-discography h1 {
  padding: 80px 0 30px 0;
}
/* ==============================
   アルバムカード
================================= */
.album-card {
  position: relative; /* 追加 */
  background-color: #fdeff1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  padding: 30px;
  max-width: 800px;
  width: 90%;        /* 画面幅に対して最大90%の幅 */
  margin: 0 auto 60px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.album-card:last-child {
  margin-bottom: 0;
}
.album-type {
  position: absolute;
  top: 15px;
  left: 30px;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid #fb9cad;
  color: #fb9cad;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 10;
}


.album-card:hover {
  transform: translateY(-5px);
}
/* ==============================
   ジャケット画像＋EPタグ位置調整
================================= */

.album-jacket {
  width: 80%;
  max-width: 300px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ==============================
   アルバム情報
================================= */
.album-info {
  text-align: left;
}

.album-title {
  font-size: 1.6rem;
  margin: 10px 0 15px;
  font-weight: bold;
  color: #333;
}

/* ==============================
   曲リスト
================================= */
.tracklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  line-height: 1.8;
  color: #555;
}

/* ==============================
   音楽リンク
================================= */
.music-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.music-icon {
  width: 40px !important;
  height: 40px !important;
  display: inline-block;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.2s ease;
}


.music-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media(min-width:768px){
  .section-discography {
  height: 100%;
  line-height: 30px;
  background-position: center;
}
  .section-discography img{
    object-fit: cover;
    width:30%; 
  }
}
/* ==============================
   レスポンシブ対応
================================= */
@media (min-width: 768px) {
  .album-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .album-jacket {
    width: 45%;
    margin-right: 30px;
  }

  .album-info {
    flex: 1;
    text-align: left;
  }

  .music-links {
    justify-content: flex-start;
  }
}
