@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: 10px;
  background-color: rgba(86, 101, 108, 0.1);
}
@media screen and (min-width: 768.9px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=submit],
  input[type=button],
  textarea,
  select {
    padding: 10px;
  }
}

input[type=checkbox]:checked:before {
  left: 0.2em; /* ← ここを小さくしてはみ出し防止 */
}

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;
  cursor: pointer;
}

input[type=checkbox]:checked:before {
  content: "✔";
  position: absolute;
  left: 56%;
  top: 41%;
  transform: translate(-50%, -50%);
  display: inline-block;
}

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: #000;
  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;
  padding-right: 50px;
}
.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 #333;
  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;
}

.wpcf7-response-output {
  display: none !important;
}

.wpcf7-button-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* スマホでは折り返し */
}

.wpcf7-button-row input[type=submit],
.wpcf7-button-row input[type=button] {
  width: 150px;
  max-width: 100%;
  padding: 12px 0;
  font-size: 16px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
}

/* スマホ最適化 */
@media screen and (max-width: 768.9px) {
  .wpcf7-button-row {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
  .wpcf7-button-row input[type=submit],
  .wpcf7-button-row input[type=button] {
    font-size: 14px;
    width: 45%;
    min-width: 120px;
  }
  .wpcf7-button-row .wpcf7-previous {
    margin-left: 0px;
  }
}/*# sourceMappingURL=form.css.map */