.form-multi-check-input { 
  display: flex; 
  flex-wrap: wrap; /* 必要に応じて複数行に対応 */ 
  gap: 10px; /* チェックボックス間のスペース */ 
} 
.form-multi-check-input > div > label { 
  display: flex; 
  align-items: center; 
  margin-left: 5px; /* チェックボックスとラベルの間のスペース */ 
}