.newsite .checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.newsite .checkbox__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 1.625rem;
}
.newsite .checkbox__item input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.newsite .checkbox__item label {
  position: relative;
  padding-left: 2.25rem;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans JP', sans-serif;
}
.newsite .checkbox__item label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  border: 1px solid #363434;
  background-color: #ffffff;
}
.newsite .checkbox__item label::after {
  content: '';
  position: absolute;
  background: url('/static/icon/ico_checked_light.svg') no-repeat;
  background-size: cover;
  width: 0.875rem;
  height: 0.6875rem;
  opacity: 0;
  left: 0.375rem;
  top: 50%;
  transform: translateY(-50%);
}
.newsite .checkbox__item input[type='checkbox']:checked + label::before {
  background-color: #363434;
  border-color: #363434;
}
.newsite .checkbox__item input[type='checkbox']:checked + label::after {
  opacity: 1;
}
.newsite .checkbox--light .checkbox__item label {
  color: #ffffff;
}
.newsite .checkbox--light .checkbox__item label::after {
  background: url('/static/icon/ico_checked_dark.svg') no-repeat;
  background-size: cover;
}
.newsite .checkbox--light .checkbox__item label::before {
  border: 1px solid #ffffff;
  background-color: #363434;
}
.newsite .checkbox--light .checkbox__item input[type='checkbox']:checked + label::before {
  background-color: #ffffff;
  border-color: #ffffff;
}
