<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title {
position: relative;
color:#F4511E;
text-align: center;
padding: 0 85px;/*文字数が増えた時に線に被らないように線幅以上のサイズで設定*/
}
.cp_h1title:before,
.cp_h1title:after {
position: absolute;
content: '';
top: 50%;
width: 80px;
height: 2px;
background: linear-gradient(90deg, transparent, #F4511E 10%, #F4511E 30%, transparent);/*グラデーションを設定*/
}
.cp_h1title:before {
left:0;
transform: rotate(180deg);/*ラインを反転*/
}
.cp_h1title:after {
right: 0;
}