.content-subtitle-music {
  position: relative; /* ハイライト用疑似要素の基点にするため追加 */
  font-weight: bold;
  font-size: 2em;
  width: auto;
  display: inline-block;
}

/* 下線風ハイライト */
.content-subtitle-music::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: calc(100% + 50px);
  height: 10px;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(255, 210, 180, 0.4) 0%,
    rgba(255, 190, 150, 0.3) 70%,
    transparent 100%
  );
  border-radius: 1px;
}