<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title {
position: relative;
color: #ffffff;
background: #00ACC1;
border-radius: 8px;
}
.cp_h1title:after {
position: absolute;
content: '';
background: #00ACC1;
display: block;
width: 20px;
height: 10px;
bottom: -10px;/*三角形の高さ分さげる*/
left: 20px;/*三角形の横位置*/
clip-path: polygon(0 0, 100% 0, 50% 100%);
}