/* ラッパー要素（epbブロック）に適用 */
.epb-advanced-headling.midashi01 {
  display: block;
}

/* テキスト要素（h2タグ）のスタイル */
.epb-advanced-headling.midashi01 .epb-advanced-headling__text {
  display: inline-block;
  position: relative;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #333333;
  padding-bottom: 10px;
  padding-left: 18px;
  line-height: 1.3;
}

/* 下線（初期状態：幅0） */
.epb-advanced-headling.midashi01 .epb-advanced-headling__text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 0;
  background: linear-gradient(90deg, #cf2e2e, #e8a0a0);
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* スクロールで表示されたとき下線を100%に伸ばす */
.epb-advanced-headling.midashi01.is-visible .epb-advanced-headling__text::after {
  width: 100%;
}