
/* チェックボックスのチェックがなぜか非表示の為、上書き */
div.wpforms-container-full input[type="checkbox"]:checked::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;

  width: 6px !important;
  height: 10px !important;

  border-top: none !important;
  border-left: none !important;
  border-right: 2px solid #000 !important;
  border-bottom: 2px solid #000 !important;

  background: transparent !important;
  transform: rotate(45deg) !important;

  left: 3px !important;
  top: 0px !important;
}


/* =========================================
   WPFormsでメインカラーがなぜか選択できず、
   フォームの送信ボタンがテーマカラーにならないため、ルート変数で定義しておく
========================================= */
:root {
  --color_main: #e18814;
}