@charset "UTF-8";
/* =============================================================================================== */
/* 定義 */
/* =============================================================================================== */
/* =============================================================================================== */
/* contactfrom7打ち消し                                                                          */
/* =============================================================================================== */
/* エラーメッセージを見やすくする */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
  color: red;
  font-weight: 700;
}

/* =============================================================================================== */
/* 入力ボックス                                                                          */
/* =============================================================================================== */
.input-style {
  color: #ff0004;
}
.input-style input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #f7f7f7;
  background-color: #f7f7f7;
  line-height: 40px;
}
.input-style input:focus {
  border: 1px solid #f7f7f7;
  outline: none;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.5);
}

.textarea-style textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #f7f7f7;
  background-color: #f7f7f7;
  line-height: 1.8;
  height: 220px;
}
.textarea-style textarea:focus {
  border: 1px solid #f7f7f7;
  outline: none;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.5);
}

/* =============================================================================================== */
/* 送信ボタン                                                                          */
/* =============================================================================================== */
input[type=submit] {
  padding: 13px 100px;
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0 auto;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  background-color: #000000;
  border: 2px solid #000000;
  color: #ffffff;
}
input[type=submit]:hover {
  background-color: #ffffff;
  color: #000000;
  transition: 0.3s;
}

/* =============================================================================================== */
/* ラジオボタン                                                                          */
/* =============================================================================================== */
.cp_ipradio {
  display: flex;
}
.cp_ipradio input[type=radio] {
  display: none;
}
.cp_ipradio .wpcf7-list-item-label {
  font-size: 1em;
  line-height: 1;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 1em 1em 1em 2.5em;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #ffffff;
}
.cp_ipradio .wpcf7-list-item-label:before {
  position: absolute;
  top: 1em;
  left: 0.5em;
  width: 13px;
  height: 13px;
  content: "";
  border: 3px solid #cccccc;
  border-radius: 20px;
}
.cp_ipradio .wpcf7-list-item-label:focus, .cp_ipradio .wpcf7-list-item-label:hover, .cp_ipradio .wpcf7-list-item-label:active {
  color: #da3c41;
}
.cp_ipradio input:checked + .wpcf7-list-item-label {
  color: #da3c41;
}
.cp_ipradio .wpcf7-list-item-label:focus:before, .cp_ipradio .wpcf7-list-item-label:hover:before, .cp_ipradio .wpcf7-list-item-label:active:before {
  border-color: #da3c41;
  background: #ffffff;
}
.cp_ipradio input:checked + .wpcf7-list-item-label:before {
  border-color: #da3c41;
  background: #da3c41;
}
.cp_ipradio input:disabled + .wpcf7-list-item-label {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.5);
  background: #efefef;
}
.cp_ipradio input:disabled + .wpcf7-list-item-label:hover {
  border-color: rgba(0, 0, 0, 0.1);
}
.cp_ipradio input:disabled + .wpcf7-list-item-label:before {
  border-color: #ffffff;
  background: #ffffff;
}

/* =============================================================================================== */
/* チェックボックス                                                                          */
/* =============================================================================================== */
.cp_ipcheck {
  display: flex;
}
.cp_ipcheck input[type=checkbox] {
  display: none;
}
.cp_ipcheck .wpcf7-list-item-label:focus, .cp_ipcheck .wpcf7-list-item-label:hover, .cp_ipcheck .wpcf7-list-item-label:active {
  color: #da3c41;
}
.cp_ipcheck input:checked + .wpcf7-list-item-label {
  color: #da3c41;
}
.cp_ipcheck .wpcf7-list-item-label:focus:before, .cp_ipcheck .wpcf7-list-item-label:hover:before, .cp_ipcheck .wpcf7-list-item-label:active:before {
  border-color: #da3c41;
  background: #ffffff;
}
.cp_ipcheck input:checked + .wpcf7-list-item-label:before {
  border-color: #da3c41;
  background: #ffffff;
}
.cp_ipcheck .wpcf7-list-item-label {
  font-size: 1em;
  line-height: 1;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 1em 1em 1em 3em;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #ffffff;
}
.cp_ipcheck .wpcf7-list-item-label:before {
  position: absolute;
  top: 1em;
  left: 1em;
  width: 10px;
  height: 10px;
  content: "";
  border: 0.2em solid #cccccc;
}
.cp_ipcheck input:checked + .wpcf7-list-item-label:before {
  border-color: #da3c41;
  background: #da3c41;
}

/* =============================================================================================== */
/* セレクトボックス                                                                          */
/* =============================================================================================== */
.cp_ipselect {
  overflow: hidden;
  text-align: center;
  position: relative;
  border: 1px solid #707070;
  background: #ffffff;
  display: inline-block;
}
.cp_ipselect select {
  width: 100%;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 8px 38px 8px 18px;
  font-size: 16px;
  line-height: 30px;
}
.cp_ipselect select::-ms-expand {
  display: none;
}
.cp_ipselect::before {
  position: absolute;
  top: 18px;
  right: 12px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #707070;
  pointer-events: none;
}

/* =============================================================================================== */
/* カレンダー                                                                          */
/* =============================================================================================== */
.calender-sytle input {
  border: 1px solid #707070;
  padding: 8px;
  font-size: 16px;
  line-height: 30px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-right: 15px;
}/*# sourceMappingURL=form.css.map */