<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title {
position: relative;
color:#01579B;
text-align: center;
padding: 0 45px;/*文字数が増えた時に線に被らないように線幅以上のサイズで設定*/
}
.cp_h1title:before, .cp_h1title:after {
position: absolute;
content: '';
top: calc(50% - 1.5px);/*上下中央にする*/
display: inline-block;
width: 40px;
height: 3px;
border-top: 3px double #03A9F4;
}
.cp_h1title:before {
left:0;
}
.cp_h1title:after {
right: 0;
}