/* 送信ボタン */
.submit-btn {
  /* buttonタグのリセットCSS */
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  color: #fff;
  padding: 10px;
  background-color: #16a;
  cursor: pointer;
  /* ポインターカーソルを表示 */
  /* margin-top: 24px; */
  font-size: 24px;
  width: 30%;
  font-weight: bold;
}

.submit-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
  /* クリック不可のカーソルを表示 */
}

.require_box {
  width: 85%;
  margin: 3px;
  border: 1px solid #000;
  font-size: 16px;
  padding: 10px 10px 8px 10px;
}

.highlight-green {
  color: white;
  background-color: #16a;
}

.submit_send {
  font-size: 24px;
  color: white;
  font-weight: bold;
  background: #16a;
  border: none;
}

.input-submit {
  text-align: center;
}