.contact_privacy_check {
  margin-top: 48px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .contact_privacy_check {
    margin-top: 34px;
    font-size: 14px;
  }
}
.contact_privacy_check label {
  position: relative;
  display: flex;
  align-items: center;
}
.contact_privacy_check input[type=checkbox] {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.contact_privacy_check input[type=checkbox] + span {
  position: relative;
  cursor: pointer;
  padding-left: 40px;
}
.contact_privacy_check input[type=checkbox] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #bfbfbf;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 5px;
  transition: 0.4s;
}
@media only screen and (max-width: 768px) {
  .contact_privacy_check input[type=checkbox] + span::before {
    width: 24px;
    height: 24px;
  }
}
.contact_privacy_check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  background: url("/media/images/common/icon_check.svg") no-repeat center/contain;
  top: 4px;
  left: 6px;
  width: 20px;
  height: 15px;
  opacity: 0;
  z-index: 2;
  transition: 0.4s;
}
@media only screen and (max-width: 768px) {
  .contact_privacy_check input[type=checkbox] + span::after {
    top: 3px;
    left: 4px;
    width: 18px;
    height: 13px;
  }
}
.contact_privacy_check input[type=checkbox] + span a {
  text-decoration: underline;
  transition: 0.4s;
}
.contact_privacy_check input[type=checkbox]:checked + span::before {
  background-color: #db6a6e;
}
.contact_privacy_check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.submit:disabled {
  position: relative;
  opacity: 0.5 !important;
}
.submit:disabled:hover {
  cursor: auto !important;
}