/* 音楽科セクション全体のスタイリング */
.music-about-subtitle {
  color: #9c500d; /* やわらかいオレンジ（濃度を下げて見やすく） */
  font-size: 1.8em;
  text-align: left;
  margin: 60px 0 20px 0;
  padding-bottom: 10px;
  position: relative;
  font-weight: bold;
  max-width: 650px;
}

.music-about-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, #ffd1a0, #ffecdf);
}

#music-about-2 ul {
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 0;
  margin-left: 20px;
}

/* 吹き出しデザイン（全て左揃え） */
.music-about-item {
  background: #fcf9f6; /* ほんのりオレンジの薄いベージュ */
  /* border-radius: 16px 16px 16px 6px; */
  border-radius: 10px;
  padding: 12px 18px;
  margin: 15px 0;
  position: relative;
  max-width: 85%;
  /* box-shadow: 0 3px 10px rgba(255, 165, 100, 0.08); */
  color: #29130b; /* 濃い茶色で読みやすく */
  font-size: 1.02em;
  line-height: 1.6;
  border: 1px solid #ffe0c0;
  transition: all 0.2s ease;
}

/* 左側の吹き出し先 */
.music-about-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -11px;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  /* border: 2px solid #ffe0c0; */
  border-right: 10px solid #ffe0c0;
  z-index: 2;
}