.underline-l {
  position: relative;
  display: inline-block;
  padding-bottom: 25px; /* 線下の余白を確保 */
}

.underline-l::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px; /* テキストからの距離を調整 */
  width: 90px; /* 任意の下線長さ */
  height: 6px; /* 線の太さ */
  background-color: #E53A35;
}

.underline-c {
  position: relative;
  display: inline-block;
  padding-bottom: 25px; /* 線下の余白を確保 */
}

.underline-c::after {
  content: "";
  position: absolute;
  left: 50%; /* 中央基準 */
  bottom: 15px; /* テキストからの距離 */
  width: 90px; /* 任意の下線長さ */
  height: 6px;
  background-color: #E53A35;
  transform: translateX(-50%); /* 中央揃え調整 */
}
