@charset "UTF-8";
/* ============================================ */
/*  form  リセットされたものを復活
/* ============================================ */
/* ===== 基本 ===== */
#entry .form-wrap form button,
#entry .form-wrap form input,
#entry .form-wrap form select,
#entry .form-wrap form textarea {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  border-width: 1px;
  background-color: #fff;
  font-size: 0.9em;
  padding: 0.4em;
}
#entry .form-wrap form input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #fff inset;
}

/* ===== 選択系パーツ ===== */
#entry .form-wrap form input[type=radio],
#entry .form-wrap form input[type=checkbox] {
  cursor: pointer;
  vertical-align: initial;
}

/* ===== ボタン ===== */
#entry .form-wrap form input[type=submit],
#entry .form-wrap form input[type=reset],
#entry .form-wrap form input[type=button],
#entry .form-wrap form button {
  background-color: #f0f0f0;
  border: solid 1px #666;
  border-radius: 3px;
}
#entry .form-wrap form input[type=submit]:hover,
#entry .form-wrap form input[type=reset]:hover,
#entry .form-wrap form input[type=button]:hover,
#entry .form-wrap form button:hover {
  background-color: #ddd;
  cursor: pointer;
}

/* ============================================ */
/*  form  カスタム
/* ============================================ */
/* テキスト*/
#entry .form-wrap form input[type=text],
#entry .form-wrap form input[type=tel],
#entry .form-wrap form input[type=email],
#entry .form-wrap form textarea {
  width: 100%;
  max-width: 500px;
  border: 1px solid #ababab;
  padding: 0.75em;
  border-radius: 5px;
}
#entry .form-wrap form input:focus,
#entry .form-wrap form textarea:focus {
  border: #ababab 1px solid;
  outline: none;
}

/* ラジオボタン */
#entry .form-wrap form input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#entry .form-wrap form input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #ababab;
  border-radius: 50%;
  vertical-align: -5px;
}
#entry .form-wrap form input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #14AF55;
  content: "";
}

/* チェックボックス */
#entry .form-wrap form {
  /*
  input[type="checkbox"]:checked:before {
    position: absolute;
    top: 2px;
    left: 5px;
    transform: rotate(50deg);
    width: 8px;
    height: 10px;
    border-right: 3px solid var(--color-black);
    border-bottom: 3px solid var(--color-black);
    content: '';
  }
  */
}
#entry .form-wrap form input[type=checkbox] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#entry .form-wrap form input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #ababab;
  vertical-align: -4px;
}
#entry .form-wrap form input[type=checkbox]:checked:before {
  position: absolute;
  content: "";
  display: block;
  top: 3px;
  left: 4px;
  width: 12px;
  height: 8px;
  border-left: 3px solid #14AF55;
  border-bottom: 3px solid #14AF55;
  transform: rotate(-45deg);
}

/* セレクトボックス*/
#entry .form-wrap form select {
  position: relative;
  border: 1px solid #ababab;
  padding: 0.55em;
  border-radius: 5px;
  width: 60px;
}
#entry .form-wrap form select:focus {
  border: #ababab 1px solid;
  outline: none;
}
#entry .form-wrap form .smf-select-control__toggle {
  width: 60px;
}
#entry .form-wrap form .select-custom {
  width: 100%;
  max-width: 500px;
  position: relative;
}
#entry .form-wrap form .select-custom::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 8px 0 8px;
  border-color: #ababab transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  pointer-events: none;
}
#entry .form-wrap form .select-custom .select-custom-item {
  width: 100%;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
#entry .form-wrap form .select-custom .select-custom-item::-ms-expand {
  display: none;
}

/*# sourceMappingURL=form.css.map */