/*** 確認ボタンのカスタマイズ ***/
/* ボタンラベルのカスタマイズ: デフォルト文言を非表示 */
div.fb-custom--button--confirm > button > span > span:nth-child(2) {
  font-size: 0;
}

/* ボタンラベルのカスタマイズ: 表示する文言を設定する */
div.fb-custom--button--confirm > button > span > span:nth-child(2):after {
  content: "確認画面に進む";
  display: inline-block;
  font-size: 16px;
}