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