<h1 class="cp_h1title">見出しテキスト</h1>
.cp_h1title {
position: relative;
padding: 0 30px 0 30px;
background: #EC407A;
border-radius: 1em;
color:#fff;
}
.cp_h1title:before,
.cp_h1title:after {
position: absolute;
content: '';
background: #fff;
display: inline-block;
top: calc(50% - 7.5px);/*●の縦位置 上下50%から●の縦サイズの半分をマイナス*/
width: 15px;/*●の横サイズ*/
height: 15px;/*●の縦サイズ*/
clip-path: circle(50% at 50% 50%);/*●を作成*/
}
.cp_h1title:before {
left:10px;
}
.cp_h1title:after {
right:10px;
}