1、表示したい部分に下記を記載。
<ul>
<li>
<a href=""https://○○○○.co.jp/"" target=""_blank"" rel=""noopener noreferrer nofllow"">
<img src=""https://●●●●.co.jp/wp-content/uploads/2022/01/logo.png"" width=""120px"" alt=""●●●●"">
</a>
</li>
<li>
<a href=""https://○○○○.co.jp/"" target=""_blank"" rel=""noopener noreferrer nofllow"">
<img src=""https://●●●●.co.jp/wp-content/uploads/2022/01/logo.png"" width=""120px"" alt=""●●●●"">
</a>
</li>
</ul>
2、CSSに下記を記載
.column-12 ul{
list-style:none;
margin:10px 20px;
display:flex;
flex-wrap:wrap;
justify-content:center;
}
.column-12 ul li{
width:calc:(30% + 20px);
margin:0px 20px;
align-items:center;
justify-content:center;
}