/* コピー: /app/css/form.css */
dl div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
dl div dt {
  width: 30%;
  background: #e6ebee;
  padding: 1em;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
dl div dt .requiredText {
  color: red;
}
dl div dd {
  padding: 0.5em 0 0.5em 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70%;
}
dl div dd input {
  border: 1px solid #999;
  padding: 5px;
  width: 100%;
  border-radius: 4px;
}
dl div dd textarea {
  border: 1px solid #999;
  padding: 5px;
  width: 100%;
  height: 10em;
  border-radius: 4px;
}
dl div dd input:focus,
dl div dd textarea:focus {
  border-color: var(--brand-color-red);
  outline: none;
}
dl div dd input:disabled,
dl div dd textarea:disabled {
  border-color: #ccc;
  background-color: #fff !important;
  color: #666 !important;
  opacity: 0.8;
}
dl div dd p {
  width: 100%;
  background: red;
  color: white;
  padding: 0.1em 0.5em;
  margin-block: 0.5em;
  font-size: 1.2rem;
}

button.btn {
  color: var(--brand-color-red);
  border: 1px solid;
  padding: 0.2em 3em;
  border-radius: 100vmax;
  margin-top: 1em;
}
button.btn#reset {
  color: #666;
}
button.btn#submit {
  background: var(--brand-color-red);
  color: white;
}
button.btn#submit[disabled] {
  opacity: 0.5;
}

#submitCheck {
  color: var(--brand-color-red);
  border: 1px solid;
  padding: 0.5em 1em;
  margin: 1em 0;
}

.complete {
  background: rgba(128, 128, 128, 0.2);
  padding: 2em 1em;
  border-radius: 4px;
  margin: 3em 0;
  text-align: center;
  font-size: 1.2em;
}

.return {
  text-align: center;
}
.return a {
  color: var(--brand-color-red);
  text-decoration: none;
  border: 1px solid var(--brand-color-red);
  border-radius: 100vmax;
  padding: 0.5em 2em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.return a:hover {
  background: var(--brand-color-red);
  color: white;
}
