/*--------------------------------------------------
  CF7
--------------------------------------------------*/
.wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
}

.d-flex .wpcf7-form-control-wrap {
  width: calc(50% - 5px);
}

/* エラーメッセージ */
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  color: #f30;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

#contact .wpcf7-submit:disabled {
  background-color: #ccc;
  border: 1px solid #ccc;
  cursor: not-allowed;
}

#contact .wpcf7-submit:disabled:hover {
  background-color: #ccc;
  border: 1px solid #ccc;
  cursor: not-allowed;
}

/* 送信ボタンの連打防止 */
.wpcf7 .wpcf7-submit.js-prevent-click {
  pointer-events: none;
  opacity: 0.4;
}

/*--------------------------------------------------
  フォーム
--------------------------------------------------*/
/* 数値フォーム */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}