/* 画像はbackground-imageで指定（Tailwindで対応しきれないため） */
.checkbox-custom {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .checkbox-custom:checked {
    background-image: url('/themes/custom/promise/images/others/checkbox-Icon.svg'); /* 好きな画像に変更可能 */
  }

  .checkbox-custom-2 {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .checkbox-custom-2:checked {
    background-image: url('/themes/custom/promise/images/others/checkbox-icon2.svg'); /* 好きな画像に変更可能 */
  }