<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title{
position: relative;
display: flex;
align-items: flex-end;/*被せるラインの位置下付(上下中央ならばcenter)*/
}
.cp_h1title:before{
position: absolute;
content: '';
height: 15px;/*ラインの太さ*/
width: 100%;/*ラインの長さ*/
background-color: rgba(144, 202, 249,0.5);/*ラインの色*/
transform: skew(20deg, 0deg);/*ラインの傾斜角度*/
}