/* ============================
      FFF SONG PAGE
      （FFFカラーで統一）
   ============================ */
.hero-card {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-direction: row; /* 左右並び */
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(80, 230, 190, 0.95),
    rgba(255, 150, 140, 0.92),
    rgba(255, 230, 80, 0.90)
  );
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.25);
  animation: fadeIn 2s ease forwards;
  overflow: hidden;
}

.hero-text {
  flex: 1;
  padding-right: 20px;
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0,0,0,0.4);
  opacity: 0;
  animation: textFade 2.5s ease forwards 0.5s;
}

.hero-img {
  flex: 1;
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  opacity: 0;
  animation: logoFade 2.5s ease forwards 1s;
}

/* フェードインアニメーション */
@keyframes textFade {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes logoFade {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hero-card {
    flex-direction: column;
    padding: 20px;
  }
  .hero-text {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .hero-img {
    max-width: 100%;
  }
}


/* 背景（ユニットページと合わせた柔らかい白系） */
body {
  background: linear-gradient(135deg,#f5fbff, #cfe9ff, #9fd3ff);
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* セクションボックス */
section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 25px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(80, 200, 180, 0.25);
}

/* ----------------------------
      見出し（FFFカラー）
---------------------------- */
h1, h2 {
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.8rem;
  text-shadow: 0 0 10px rgba(80, 230, 190, 0.6);
  margin-bottom: 25px;

  /* メイン見出し背景を FFF グラデに */
  background: linear-gradient(
    135deg,
    rgba(80, 230, 190, 0.95),
    rgba(255, 150, 140, 0.92),
    rgba(255, 230, 80, 0.90)
  );
}

/* ----------------------------
       曲サムネイル一覧
---------------------------- */
.song-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.song-item {
  width: 210px;
  text-align: center;
  transition: 0.3s ease;
}

.song-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(80,230,190,0.3);
  transition: 0.3s ease;
}

.song-title {
  margin-top: 12px;
  font-weight: bold;
}

.song-item:hover {
  transform: translateY(-6px) scale(1.04);
}

.song-item:hover .song-img {
  box-shadow: 0 0 25px rgba(255,200,120,0.55);
}

/* ----------------------------
        戻るボタン（FFF）
---------------------------- */
.back-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 16px;
  border-radius: 10px;

  background: linear-gradient(45deg, #50e6be, #ff967e, #ffe450);
  color: #fff;
  text-decoration: none;

  box-shadow: 0 0 12px rgba(255, 200, 140, 0.55);
  transition: 0.25s;
}

.back-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 22px rgba(255, 200, 140, 0.8);
}

/* ----------------------------
        レスポンシブ
---------------------------- */
@media (max-width: 768px) {
  .song-item {
    width: 45%;
  }
}






/* ============================================
   ⭐ FFF SONG DETAIL（レイアウト＝TINGS / 色＝FFF に変更）
============================================= */

/* 全体背景：FFF ＝ 優雅 × 黄金ライト */
body {
    background: linear-gradient(135deg, #f5fbff, #cfe9ff, #9fd3ff);
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6;
}

/* 曲カード（レイアウトそのまま / 色だけFFF化） */
.song-detail-card {
    width: 80%;
    margin: 40px auto;

    /* FFF カラーのグラデーション */
    background: linear-gradient(
        135deg,
        rgba(80, 230, 190, 0.92),   /* Aqua Green */
        rgba(255, 150, 140, 0.90),  /* Salmon Pink */
        rgba(255, 230, 80, 0.88)    /* Yellow Gold */
    );

    border-radius: 20px;
    padding: 25px;

    box-shadow:
        0 0 18px rgba(255,180,120,0.45),
        0 0 35px rgba(80,230,190,0.25);

    border: 2px solid rgba(255, 230, 120, 0.65); /* 金色系 */

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.song-detail-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 25px rgba(255,200,140,0.65),
        0 0 45px rgba(80,230,190,0.35);
}

/* 左画像（レイアウトはそのまま） */
.song-left {
    float: left;
    width: 30%;
}

.song-album {
    width: 65%;
    border-radius: 14px;
    display: block;
    margin: 0 auto;

    box-shadow:
        0 0 18px rgba(255,230,130,0.45),
        0 0 30px rgba(80,230,190,0.25);
}

/* 右テキスト（レイアウトそのまま・色FFF） */
.song-right {
    float: right;
    width: 65%;
    padding-left: 25px;

    border-left: 4px solid rgba(255, 230, 80, 0.85); /* FFFゴールド */
}

.song-title {
    color: #ffffff;
    font-size: 28px;

    text-shadow:
        0 0 8px rgba(0,0,0,0.35),
        0 0 6px rgba(255,230,120,0.8);

    margin-bottom: 10px;

    border-bottom: 3px solid;
    border-image: linear-gradient(
        90deg,
        #50e6be, #ff967e, #ffe450
    ) 1;
}

.song-description {
    color: #fffdf4;
    font-size: 1.15rem;
    line-height: 1.7;
    text-shadow: 0 0 6px rgba(0,0,0,0.35);
}

/* 下の footer（情報欄） */
.song-footer {
    clear: both;
    margin-top: 25px;
    padding-top: 15px;

    border-top: 2px solid rgba(80, 230, 190, 0.8);

    display: flex;
    gap: 25px;

    font-size: 14px;
    color: #fffdf0;
    text-shadow: 0 0 8px rgba(0,0,0,0.25);
}

/* 戻るボタン（FFFの3色グラデ） */
.back-btn {
    display: block;              /* ← ここ重要 */
  width: fit-content;          /* 中身サイズに合わせる */
  margin: 30px auto 0;         /* autoで中央寄せ */

  padding: 8px 15px;
  border-radius: 8px;

    background: linear-gradient(
        45deg,
        #50e6be,
        #ff967e,
        #ffe450
    );

    color: #fff;
    text-decoration: none;

    box-shadow: 0 0 12px rgba(255,200,140,0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.back-btn:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 18px rgba(255,200,140,0.75),
        0 0 20px rgba(80,230,190,0.45);
}

/* スマホ対応（レイアウトはそのまま維持） */
@media (max-width: 768px) {
    .song-left,
    .song-right {
        float: none;
        width: 100%;
        padding-left: 0;
        border-left: none;
        margin-bottom: 20px;
    }

    .song-detail-card {
        width: 95%;
        padding: 20px;
    }
}
