疑似要素を使ってCSSで文字を入れる
MENUの上の「メニュー」の文字を実装

See the Pen 疑似要素 by yui (@yui-mtk) on CodePen.

↓ 中央寄せにするための記述

See the Pen 疑似要素 文字 中央寄せ by yui (@yui-mtk) on CodePen.

.section-inner  {margin: 0 auto; }  追記

.section-ttl {text-align: center; } 追記

.section-ttl.__menu::before {  left: 50%;} 20% → 50%へ変更

※疑似要素は文字だけでなく線や装飾なども記述できる。