<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title {
position: relative;
color:#EF6C00;
text-align: center;
padding: 10px;
}
.cp_h1title::before,
.cp_h1title::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 6px;/*ボーダー全体の高さ*/
border-color: #EF6C00;
border-style: solid;
}
.cp_h1title::before {
top: 0;
border-width:2px 0 1px 0;
}
.cp_h1title::after {
bottom: 0;
border-width:1px 0 2px 0;
}