<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title {
position: relative;
color: #ffffff;
background: #00ACC1;
border-radius: 8px;
}
.cp_h1title:after {
position: absolute;
content: '';
bottom: -10px;/*三角形の高さ分さげる*/
left: 20px;/*三角形の横位置*/
border-style: solid;
border-width: 10px 10px 0 10px;/*下向きの三角形*/
border-color: #00ACC1 transparent transparent transparent;
}