<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title {
position: relative;
background: #fffff2;/*見出しの色*/
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
padding: 10px 15px;
}
.cp_h1title::before,
.cp_h1title::after {
position: absolute;
content: '';
width: 0;
height: 60px;/*ラインの長さ*/
border-left: 1px solid #e60012;/*ラインの太さ・形状・色*/
transform: rotate(-45deg);/*ラインの傾き*/
}
.cp_h1title::before {/*左のライン位置*/
bottom: -20px;
left: 10px;
}
.cp_h1title::after {/*右のライン位置*/
top: -20px;
right: 10px;
}