/* ........................................
//
// フォームのチェックボックス
//
// ......................................... */

.form-checkbox {
  /* width: 100%; */
}

.form-checkbox .checkbox-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 0px;
  gap: 24px;
}

.form-checkbox .checkbox-wrap.cart {
  display: inline-block;
}

.form-checkbox label input {
  display: inline-block;
  position: relative;
  min-width: 24px;
  min-height: 24px;
  border: 1px solid var(--Border);
  background-color: #F6F6F6;
  border-radius: 4px;
}

/* チェック状態（背景：#203A72、チェックマーク：白） */
.form-checkbox label input:checked {
  background-color: var(--Main);
  border-color: var(--Main);
}

.form-checkbox label input:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  display: none;
}