<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title {
position: relative;
color: #E65100;
background: #F9A825;
width: calc(100% - 20px);
}
.cp_h1title::before,
.cp_h1title::after {
position: absolute;
content: '';
display: block;
}
.cp_h1title::before {
top: 100%;
left: 0;
width: 10px;
height: 10px;
background: #E65100;
clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.cp_h1title::after {
top: 0;
right: -20px;
width: 20px;
height: 100%;
background: #F9A825;
clip-path: polygon(0% 0%, 100% 0, 0% 50%, 100% 100%, 0% 100%);
}