UITableView の separator の左端をくっつける
// Cell 部分のセパレータ
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath)
cell.layoutMargins = UIEdgeInsets.zero
return cell
}
###TableView の空の部分のセパレータ