.form {
  width: 1100px;
  background-color: #231815;
  margin: auto;
  border: 1px solid #942b2b;
  margin-bottom: 3%;
  color: #FFF;
}

.form-select {
  display: flex;
  width: 1100px;
  margin-bottom: 46px;
  align-items: center;
  text-align: left;
  font-family: "Mplus 1p";
  font-style: normal;
}
.form-select .title {
  display: block;
  font-size: 23px;
  font-weight: normal;
  letter-spacing: 7px;
  width: 250px;
  padding-left: 75px;
  text-align: left;
  vertical-align: middle;
  color: #fff;
  font-style: normal;
}
.form-select-check label {
  font-size: 16px;
}

.form-box {
  display: flex;
  width: 1100px;
  margin-bottom: 46px;
  align-items: center;
  text-align: left;
}
.form-box .title {
  display: block;
  font-size: 23px;
  font-weight: normal;
  letter-spacing: 7px;
  width: 250px;
  padding-left: 75px;
  text-align: left;
  vertical-align: middle;
  color: #fff;
  font-style: normal;
}
.form-box input {
  width: 527px;
  display: inline-block;
  padding: 7px 8px;
  font-family: "Mplus 1p";
  color: #fff;
  text-align: left;
  font-style: normal;
  font-size: 17px;
}
.form-box input[type=number] {
  width: 147px !important;
}
.form-box select {
  width: 250px;
  display: inline-block;
  padding: 8px 8px;
  font-family: "Mplus 1p";
  text-align: left;
  font-style: normal;
  font-size: 15px;
}
.form-box-radio {
  display: flex;
}
.form-box-radio-inner label {
  font-size: 16px;
}

.form_ttl {
  text-align: center;
  font-size: 60px;
  letter-spacing: 10px;
  font-family: "Mplus 1p";
  font-weight: normal;
  margin: 50px;
  color: #fff;
}

.form-box-radio-inner {
  font-style: normal;
  font-family: "Mplus 1p";
  margin-right: 20px;
}

table tr td input:not([class=button]) {
  font-size: 20px;
  padding: 1%;
}

.must {
  display: inline-block;
  background-color: #7b0000;
  font-size: 20px;
  font-family: "a-otf-ryumin-pr6n";
  width: 90px;
  vertical-align: middle;
  text-align: center;
  padding: 10px;
  margin-left: 24px;
}

textarea {
  width: 545px;
  font-size: 20px;
}

.form-submit {
  text-align: center;
  margin: 78px 0 80px;
}
.form-submit input {
  background-color: #666666;
  width: 410px;
  height: 55px;
  border-radius: 9px;
  outline: 0;
  cursor: pointer;
  box-shadow: none;
  border: none;
  color: #fff;
  font-size: 22px;
  font-family: "Mplus 1p";
  letter-spacing: 2px;
}

input[type=checkbox], input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  vertical-align: -0.8rem;
  transition: all 0.15s ease-out 0s;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin: 0.4rem;
  outline: none;
  border-radius: 10%;
}

input[type=radio],
input[type=checkbox] {
  border-radius: 50%;
}

input[type=radio]:checked:before,
input[type=checkbox]:checked:before {
  transform: scale(1);
}

input[type=radio]:before,
input[type=checkbox]::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 3px;
  transform: scale(0);
  transition: all ease-out 100ms;
}

/* Colors */
input[type=checkbox], input[type=radio] {
  background: #686868;
}

input[type=checkbox]:checked, input[type=checkbox]:checked, input[type=radio]:checked:before, input[type=checkbox]:checked::before {
  background: #f9f7f7;
}

input[type=checkbox]:checked {
  background: #686868;
}

input[type=checkbox]:checked::before,
input[type=radio]:checked:before {
  position: absolute;
  top: 1px;
  right: 1px;
}

.text02 {
  display: none;
}

/********************************************
* Now Loading
********************************************/
#form-load {
  display: none;
}

.loader {
  margin: 0 auto;
  border: 12px solid #fafafa;
  border-radius: 50%;
  border-top: 12px solid #3498db;
  width: 100px;
  height: 100px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.load1 {
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
          animation: sk-scaleout 1s infinite ease-in-out;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 201;
  text-align: center;
  background-color: #b1b1b1;
  color: #ffffff;
  opacity: 0.8;
  width: 800px;
}

.load1 p {
  margin: 0 auto;
  text-align: center;
  padding: 10px;
}

@media (max-width: 768px) {
  .form-question {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}