@charset "UTF-8";
/* Scss Document */
/*=============================================================
 フォーム
=============================================================*/
input[type=text], input[type=checkbox], input[type=email], input[type=tel], input[type=submit], input[type=button], button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}

input:focus, textarea:focus {
  outline: none;
}

input[type=text], input[type=email], input[type=tel], input[type=submit], input[type=button], textarea, select {
  box-sizing: border-box;
  box-shadow: none;
  border: none;
  width: 100%;
  border-radius: 5px;
  padding: 15px;
  background-color: rgba(86, 101, 108, 0.1);
}
@media screen and (min-width: 519.9px) {
  input[type=text], input[type=email], input[type=tel], input[type=submit], input[type=button], textarea, select {
    padding: 20px;
  }
}

textarea {
  width: 100%;
  min-height: 300px;
  resize: vertical;
  line-height: 1.65;
}

label {
  display: block;
}

input[type=checkbox] {
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  box-sizing: border-box;
  box-shadow: none;
  border: 1px #CCCCCC solid;
  vertical-align: middle;
  margin-right: 0.5em;
  border-radius: 5px;
}

input[type=checkbox]:checked:before {
  content: "✔";
  position: absolute;
  left: 2px;
  top: 50%;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-top: -0.6em;
}

input[type=submit], input[type=button] {
  border: none;
  padding: 15px 0;
  color: #FFF;
  cursor: pointer;
  max-width: 300px;
  display: inline-block;
  font-size: 16px;
  background: none;
  background-color: #51B748;
  border-radius: 0;
}
input[type=submit]:hover, input[type=button]:hover {
  color: #FFF;
  opacity: 0.8;
  transition: all 0.3s;
}

.select_arrow01 {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  background-color: rgba(86, 101, 108, 0.1);
  border-radius: 5px;
}
.select_arrow01 select {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.select_arrow01 select::-ms-expand {
  display: none;
}
.select_arrow01::before {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #51B748;
  pointer-events: none;
  margin-top: -4.5px;
}

/*=============================================================
 コンタクトフォーム7の設定
=============================================================*/
/* 送信ボタンの余白調整*/
.wpcf7-spinner {
  display: none !important;
}

/* 確認画面のボタンの余白調整*/
.wpcf7-previous {
  margin-left: 20px;
}

/* チェックボックス挿入時の改行*/
.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin: 0;
}

/*=============================================================
 mw_wp_formフォームの設定
=============================================================*/
.mw_wp_form_preview .select_arrow01 {
  background: none;
}

.mw_wp_form_preview .select_arrow01::before {
  display: none;
}/*# sourceMappingURL=form.css.map */