/* フォームパッチ用スタイル（20251127） */

.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0px !important;
}
.acceptance-checkbox {
  appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #003452;
  border-radius: 4px;
  cursor: pointer;
  background-color: #fff;
}
.acceptance-checkbox:checked {
  background-color: #003452;
}
.acceptance-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}