@charset "UTF-8";

.contents {
  padding: 10px 10px 30px;
}
.contents * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.form-header {
  margin-bottom: 20px;
}
.main-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 5px;
}
.note {
  color: #a00;
  font-size: 12px;
}
.note.error {
  background: #faa;
}
.form-body {

}
.form-body dt {
  margin-bottom: 5px;
}
.form-body dt.error {
  background: #faa;
}
.form-body dd {
  margin-bottom: 20px;
  word-wrap: break-word;
  word-break: break-all;
}
.form-body dd pre {
  white-space: -moz-pre-wrap;
  white-space: pre-wrap;
}
.form-body .sub {
  color: #aaa;
  font-size: 12px;
}
.form-body input[type="text"],
.form-body input[type="email"] {
  -webkit-appearance: none;
  width: 100%;
  padding: 5px;
  border: 1px solid #aaa;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0;
  background: #fff;
}
.form-body select {
  border: 1px solid #aaa;
  font-size: 14px;
  border-radius: 0;
  background: #fff;
  padding: 5px;
}
.form-body textarea {
  -webkit-appearance: none;
  width: 100%;
  background: #fff;
  border: 1px solid #aaa;
  height: 300px;
  line-height: 1.5;
  padding: 5px;
  border-radius: 0;
}
.form-body textarea.text {
  height: auto;
}
.submit-btn {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: box;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-box-pack: center;
  box-pack: center;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.submit-btn button {
  display: block;
  width: 300px;
  padding: 10px;
  background: #108bff;
  color: #fff;
  border: none;
  text-align: center;
  font-size: 16px;
  margin: 0;
}
.submit-btn.confirm button{
  -webkit-box-flex: 1;
  -ms-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  flex-grow: 1;
  width: auto;
  margin: 0;
}
.submit-btn .back {
  background: #999;
}
