#form {
  margin: 30px auto 100px;
  width: 100%;
  max-width: 900px;
}
#form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  text-align: left;
  box-sizing: border-box;
  margin-bottom: 30px;
  border-radius: 10px;
  /*text-justify: inter-ideograph;*/
}
#form dt {
  width: 12em;
  padding: 25px 0;
  /*border-top: solid 1px #DDD;*/
  box-sizing: border-box;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 768px) {
#form {
  margin: 30px auto 50px;
}
#form dt {
  width: 12em;
  padding: 25px 0;
  /*border-top: solid 1px #DDD;*/
  box-sizing: border-box;
  height: 100%;
  display: flex;
  justify-content:flex-start;
  align-items: center;
}
}
#form dd {
  padding: 25px 0 25px 20px;
  width: calc(100% - 12em);
  /*border-top: solid 1px #DDD;*/
  box-sizing: border-box;
  height: 100%;
}
#form dt:first-child {
  border-top: none;
}
#form dd:nth-child(2) {
  border-top: none;
}
#form input[type=tel], #form input[type=text], #form input[type=email], #form input[type=date] {
  height: 45px;
  border: 1px solid #E2E2E2;
  padding: 3px 10px;
  background-color: #F4F4F4;
}
#form input[type=date] {
  background-color: #F4F4F4;
  padding: 3px 10px;
  border: 1px solid #E2E2E2;
  margin-right: 20px;
  width: 100%;
  max-width: 180px;
  min-width: 160px;
}
#form textarea {
  width: 100%;
  border-radius: 2px;
  border: 1px solid #E2E2E2;
  padding: 3px 10px;
  background-color: #F4F4F4;
  color: #000;
}
#form select {
  height: 45px;
  border-radius: 2px;
  border: 1px solid #E2E2E2;
  padding: 3px 50px 3px 10px;
  background-color: #F4F4F4;
  color: #000;
  background-image: url(../assets/select_icon.svg);
  background-size: 10px;
  background-position: center right 10px;
  background-repeat: no-repeat;
  cursor: pointer;
}
/*セレクトボックス*/
.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox::after {
  position: absolute;
  left: 8em;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
@media all and (max-width: 768px) {
  .selectbox::after {
    left: 6.5em;
  }
}
@media all and (max-width: 480px) {
  .selectbox::after {
    left: 7em;
  }
}
.selectbox select {
  appearance: none;
  cursor: pointer;
}
#form label {
  cursor: pointer;
}
#form input, #form select {
  vertical-align: middle;
  border-radius: 2px;
}
#form .boxW100 input, #form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
#form .boxW40 {}
#form .boxW40 input {
  width: 40%;
  box-sizing: border-box;
}
#form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
#form .boxW50 select {
  background-color: #F4F4F4;
  padding: 3px 10px;
  border: 1px solid #E2E2E2;
  box-sizing: border-box;
}
#form .other {
  width: 100%;
  max-width: 500px;
}
#form label input {
  transform: scale(1.3);
  vertical-align: inherit;
  /*margin-right: 10px;*/
  margin-bottom: 20px;
  box-sizing: border-box;
}
#form ::placeholder {
  color: #ccc
}
@media screen and (max-width: 1100px) {
  #form {
    width: 94%;
    margin: 30px auto 0;
  }
}
@media all and (max-width: 768px) {
  #form center {
    margin: 0 auto;
    text-align: left;
  }
}
.must {
  display: inline-block;
  background-color: #d7093b;
  border-radius: 30px;
  font-size: 10px;
  line-height: 1.5em;
  color: #FFF;
  margin: 0 0 0 9px;
  padding: 2px 8px;
}
#image-btn {
  width: 86%;
  max-width: 400px;
  text-align: center;
  background-color: #d7093b;
  font-weight: 700;
  /*border-radius: 30px;*/
  margin: 0 auto;
  transition: 0.2s;
}
#image-btn:hover {
  background-color: #d7093b;
}
#image-btn input {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  height: 60px;
  background-color: transparent;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: none;
  font-weight: 700;
  /*
    padding: 15px 0 13px;*/
  display: block;
  cursor: pointer;
  /*font-size: 1.2em;*/
}
.image-btn {
  /*border-radius: 30px;*/
  text-align: center;
  font-weight: 700;
}
.image-btn input:hover {
  background-color: #F54242;
}
.image-btn input {
  width: 90%;
  max-width: 300px;
  background-color: #d7093b;
  margin: 0 auto;
  text-align: center;
  height: 60px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: none;
  font-weight: 700;
  /*
    padding: 15px 0 13px;*/
  display: block;
  cursor: pointer;
  /*font-size: 1.2em;*/
  box-sizing:border-box; 
}
@media all and (max-width: 768px) {
  #form dl {
    display: block;
  }
  #form dl.margin_erase {
    margin-top: -40px;
  }
  #form dt {
    width: 100%;
    padding: 20px 0 7px;
  }
  #form dd {
    padding: 0 0 20px;
    width: 100%;
    border-top: none;
  }
  #form dd:last-child {
    padding: 0;
  }
  #form #image-btn input {
    font-size: 1.8rem;
  }
}
.formText {
  margin: 30px;
}
@media all and (max-width: 768px) {
  .formText {
    text-align: left;
  }
}
.formBtn {
  width: 92%;
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
}
@media all and (max-width: 768px) {
  .formBtn {
    flex-direction: column;
    align-items: center;
  }
}
.formBtn form {
  width: 100%;
  max-width: 300px;
  flex-shrink: 0;
}
#form input.backBtn {
  width: 100%;
  max-width: 300px;
  transition: 0.3s;
  border-radius: 2px;
  padding: 10px 60px;
  background-color: #ccc;
  color: #222;
  font-weight: bold;
  text-align: center;
}
#form input.backBtn:hover {
  background-color: rgb(184, 184, 184);
}
@media all and (max-width: 768px) {
  #form input.backBtn {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}
#form input.submitBtn {
/*
  width: 100%;
*/
  transition: 0.3s;
  text-align: center;
  border-radius: 2px;
  padding: 10px 60px;
  background-color: #d7093b;
  color: #FFF;
  font-weight: bold;
}
#form input.submitBtn:hover {
  background-color: #d7093b;
}
#form .topBtn {
  margin-top: 30px;
}
#page {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#page #form {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*チェックボックス*/
.radio-1 {
    display: flex;
    flex-wrap: wrap;
    gap: .3em 2em;
    border: none;
}
.radio-1 label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}
.radio-1 label::before,
.radio-1 label:has(:checked)::after {
    border-radius: 50%;
    content: '';
}
.radio-1 label::before {
    width: 18px;
    height: 18px;
    background-color: #e6edf3;
}
.radio-1 label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: 9px;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #004696;
    animation: anim-radio-1 .3s linear;
}
@keyframes anim-radio-1 {
    0% {
        box-shadow: 0 0 0 1px transparent;
    }
    50% {
        box-shadow: 0 0 0 10px #f2f2f233;
    }
    100% {
        box-shadow: 0 0 0 10px transparent;
    }
}
.radio-1 input {
    display: none;
}

#submit1{}