トップ画像の設定
// タグ内で直接 background-image を設定
.signboard {
// 文字色・表示したい画像サイズ
color: #fff;
min-height: 300px;
margin-bottom: 32px;
// 背景イメージ設定
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
// 文字表示位置設定
display: grid;
place-items: center;
}
