<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title {
position: relative;
display: flex;
justify-content: center;/*左右中央配置*/
}
.cp_h1title:before {
position: absolute;
content: '';
top: 100%;
width: 10%;/*線の長さ*/
height: 5px;/*線の太さ*/
border-radius: 2px;/*線の角を丸くする*/
background-color: #F06292;/*線の色*/
}