:root {
  --color-red: #c40000;
}

.form_contents .-notice {
  display: block;
  text-indent: -1rem;
  padding-left: 1rem;
  color: var(--color-gold);
  margin-top: 0.6rem;
  line-height: 1.6;
  font-size: 14px;
}
@media only screen and (max-width:960px) {
  .form_contents .-notice {
    font-size: 0.86em;
  }
}
.form_contents__lead {
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  line-height: 1.8;
}
.form_contents__btn {
  background: rgba(251, 210, 156, 0.6);
  color: #000;
  text-align: center;
  border-radius: 50px;
  position: relative;
  width: 75vw;
  max-width: 400px;
  margin: auto;
  height: min(80px, 13.33vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media only screen and (max-width:960px) {
  .form_contents__btn {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width:961px) {
  .form_contents__btn {
    cursor: pointer;
  }
  .form_contents__btn:hover {
    opacity: 0.8;
  }
}
.form_contents__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  left: 4px;
  bottom: 4px;
  border: 1px solid var(--color-gold);
  border-radius: 50px;
}

.modal_closebtn {
  background: rgba(251, 210, 156, 0.6);
  color: #000;
  text-align: center;
  border-radius: 50px;
  position: relative;
  width: 75vw;
  max-width: 400px;
  margin: auto;
  height: min(80px, 13.33vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media only screen and (max-width:960px) {
  .modal_closebtn {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width:961px) {
  .modal_closebtn {
    cursor: pointer;
  }
  .modal_closebtn:hover {
    opacity: 0.8;
  }
}
.modal_closebtn::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  left: 4px;
  bottom: 4px;
  border: 1px solid var(--color-gold);
  border-radius: 50px;
}

.form_contents .btn-submit {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media only screen and (min-width:961px) {
  .form_contents .btn-submit {
    cursor: pointer;
  }
  .form_contents .btn-submit:hover {
    opacity: 0.8;
  }
}

@media only screen and (min-width:961px) {
  .--check .form_contents dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.--check .form_contents dl dt {
  color: var(--color-gold);
}
@media only screen and (max-width:960px) {
  .--check .form_contents dl dt {
    font-size: 80%;
  }
}
@media only screen and (min-width:961px) {
  .--check .form_contents dl dt {
    width: 240px;
  }
}
@media only screen and (min-width:961px) {
  .--check .form_contents dl dd {
    width: calc(100% - 240px);
  }
}