/* フォーム */
input[type="text"],
input[type="url"],
input[type="tel"],
input[type="email"],
textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
  width: 100%;
}
input[type="text"],
input[type="url"],
input[type="tel"],
input[type="email"] {
  height: 2.4rem;
}
form dl {
  margin-bottom: 30px;
}
form dt {
  font-weight: bold;
  margin-bottom: 15px;
}
form dt .require {
  background-color: #106bb1;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 5px;
  padding: 2px 5px;
  vertical-align: middle;
  margin-left: 10px;
}
form dd .msg {
  color: #333;
  font-size: 0.88rem;
  display: block;
  padding: 10px 0;
}
/* セレクトボックス */
.form-select {
  position: relative;
}
.form-select:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
  pointer-events: none;
}
.form-select select {
  height: 2.4rem;
  width: 100%;
  padding: 0 8px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.form-select select::-ms-expand {
  display: none;
}
.form-select select:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(145, 194, 59) inset;
}
/* サブミット */
.submit {
  margin-top: 60px;
  text-align: center;
}
.submit-button {
  display: inline-block;
  width: 300px;
  padding: 20px 0;
  border: none;
  border-radius: 10px;
  background-color: #106bb1;
  color: #fff;
  font-size: 1.18rem;
  font-weight: bold;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 2px solid transparent;
  margin: 0 auto;
}
.submit-button:hover {
  background-color: #106bb1;
}
.submit-button:focus {
  outline: 0;
  background-color: #106bb1;
}
/* ファイルを選択 */
.file-input[type="file"] {
  display: none;
}
.up-label {
  border-radius: 4px;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: #106bb1;
  cursor: pointer;
}
.up-label-txt {
  font-size: 0.88rem;
}
.up-label-txt.block {
  margin-top: 15px;
}
.up-label-txt.inline {
  display: inline;
  margin-left: 10px;
}
div.screen-reader-response {
  display: none;
}
.wpcf7-not-valid-tip {
  background-color: #ff26ba;
  display: block;
  color: #fff;
  padding: 5px;
  font-size: 0.75rem;
  margin-top: 10px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border: 1px solid #ff26ba;
  padding: 10px;
  margin-top: 20px;
  font-size: 0.88rem;
}
.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid #8cebe5;
  padding: 10px;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: bold;
}
