/* ほんわり浮き上がった感じ */
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.06);
<p>テキスト</p>
<style>
p {
position: relative;
margin-left: 15px;
}
p:before {
position: absolute;
top: 50%;
left: -15px;
margin-top: -6px;
content: '';
width: 0;
height: 0;
border-style: solid;
border-width: 5px 0 5px 8px;
border-color: transparent transparent transparent #E9CC94;
}
</style>
<p>テキスト</p>
<style>
p {
position: relative;
margin-left: 15px;
}
p:before {
position: absolute;
top: 50%;
left: -15px;
margin-top: -6px;
content: "";
width: 12px;
height: 12px;
background: url(https://placehold.jp/10x10.png) no-repeat;
background-size: contain;
}
</style>
<ul>
<li>個人情報保護方針</li>
<li>利用規約</li>
<li>会社情報</li>
<li>お問い合わせ</li>
</ul>
<style>
ul {
display: flex;
list-style: none;
}
li {
display: inline-block;
padding: 0 10px;
border-left: 1px solid #000;
}
li:last-child {
border-right: 1px solid #000;
}
</style>