.voc-form-area {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.voc-form-area font {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 6px;
  border-radius: 2px;
  background-color: #bf0000;
  font-size: 12px;
  color: #ffffff;
}
.voc-form-area table {
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .voc-form-area tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.voc-form-area tr td {
  border: 1px solid #d7d7d7;
  padding: 14px;
  text-align: left;
}
.voc-form-area tr td:first-child {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .voc-form-area tr td:first-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media (max-width: 768px) {
  .voc-form-area tr td:last-child {
    border-top: 0;
  }
}
.voc-form-area select {
  width: 100%;
  min-height: 48px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #d7d7d7;
}
.voc-form-area textarea {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #d7d7d7;
}
.voc-form-area input[type=submit] {
  cursor: pointer;
  margin-top: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  min-width: 270px;
  height: 56px;
  padding: 0 24px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #ffffff;
  background-color: #bf0000;
}
.voc-form-area input[type=submit]:hover, .voc-form-area input[type=submit]:active {
  color: #ffffff;
  background-color: #ff1212;
}
@media (max-width: 768px) {
  .voc-form-area input[type=submit] {
    height: 48px;
    padding: 0 24px 2px;
  }
}
@media (max-width: 576px) {
  .voc-form-area input[type=submit] {
    width: 100%;
    min-width: 100%;
  }
}

.voc-form-notice {
  font-size: 14px;
  margin-bottom: 4px;
}