<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title{
position: relative;
}
.cp_h1title::before,
.cp_h1title::after {
content: '';
position: absolute;
bottom: -4px;/*ラインの太さを変えたらこちらも同様に「-」をつけて変更*/
left: 0;
height: 4px;/*ラインの太さ*/
width: 100%;
background-color: #E91E63;/*一番上のラインの色*/
}
.cp_h1title::before {
z-index: 1;/*重なり順を一番上に指定*/
width: 15%;/*色を変えたいラインの長さ*/
}
.cp_h1title::after {
background: repeating-linear-gradient(45deg, #fff, #fff 2px, #E91E63 2px, #E91E63 4px);/*ストライプの指定*/
}