@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap');

* {
  font-family: "BIZ UDPGothic", sans-serif;
}

body {
  background-color: transparent;
}

.container {
  padding: 80px 0 100px;
  background-color: transparent;
}

@media screen and (max-width: 43.75rem){
  .container {
    padding: 40px 0 50px;
  }
}

.form-column {
  margin: 0 4px 2.5em;
}

@media screen and (max-width: 43.75rem){
  .form-column {
    margin: 0 0 2.5em;
  }
}

.label {
  display: flex;
  color: #022EBE;
  font-size: 18px;
  line-height: 24px;
}

input {
  font-size: 16px;
  line-height: 24px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  font-size: 16px;
  line-height: 24px;
  height: 56px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 0;
}

textarea {
  font-size: 16px;
  line-height: 24px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 0;
}

input[type="radio"] {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  cursor: pointer;
}

textarea:focus {
  background-color: #fff;
  border: 1px solid #E6E6E6;
}

input[type="radio"]:before {
  width: 12px;
  height: 12px;
  background-color: #022EBE;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 0;
  cursor: pointer;
}
    
input[type="checkbox"]:checked {
  background-color: #022EBE;
}

input[type="checkbox"]:checked::before {
  top: 1px;
  left: 6px;
}

.option-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}

.badge-required,
legend .badge-required {
  position: relative;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  background-color: transparent;
  border: none;
}

.badge-required::after,
legend .badge-required::after {
  position: absolute;
  top: -2px;
  left: 3px;
  content: '＊';
  font-size: 12px;
  line-height: 24px;
  color: #E70012;
}

button.button-confirm,
button.button-back,
button.button-submit {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  background-color: #022EBE;
  cursor: pointer;
  transition: none;
}

.button:hover {
  background-color: #022EBE;
}

.input-group + .description-block a {
  font-size: 16px;
  line-height: 24px;
  color: #222;
  opacity: 1;
}

input[type="file"] {
  cursor: pointer;
}

.form-column-checkbox .input-group label + label,
.form-column-radio .input-group label  + label {
  margin-top: 10px;
}

.content-confirmation .preview-block {
  padding: 0 0 16px;
}

.content-confirmation .description-block {
  display: none;
}

.description-block a {
  transition: none;
}

@media print, screen and (min-width: 43.8125rem) {
    .description-block a:hover {
        color: #022EBE;
    }
}