<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title {
position: relative;
padding: 5px 20px;
border-top: solid 1px #da3c41;/*上の線*/
border-bottom: solid 1px #da3c41;/*下の線*/
}
.cp_h1title::before,
.cp_h1title::after{
position: absolute;
content: '';
top: -10px;
width: 1px;
height: calc(100% + 20px);/*上下10pxずつオーバーするように設定*/
background-color: #da3c41;
}
.cp_h1title::before{
left: 10px;
}
.cp_h1title::after{
right: 10px;
}