/*=======================================================================*/
/*
Form.css
フォーム装飾用 CSS
*/
/*=======================================================================*/

/*=======================================================================*/
/* フォーム部品 スタイルリセット */
/*=======================================================================*/

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/*=======================================================================*/
/* テキスト 共通設定 */
/*=======================================================================*/


/*=======================================================================*/
/* チェックボックス 共通設定 */
/*=======================================================================*/

input[type=checkbox] {
  display: none;
}

label {
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  padding: 0 0 0 42px;
  vertical-align: middle;
  cursor: pointer;
  margin: 0 0 10px 0;
}

label:hover:after {
  border-color: #0171bd;
}

label:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #B0BEC5;
  border-radius: 6px;
  content: '';
}

label:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #0171bd;
  border-bottom: 3px solid #0171bd;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type=checkbox]:checked + label:before {
  opacity: 1;
}

/*=======================================================================*/
/* マップ設定 */
/*=======================================================================*/

/* チェックボックス設定 */

.service div,
.location div {
  display: inline-block;  
}

/* キーワード設定 */

#keyword {
  width: 90%;
  padding: 10px;
  border: 2px solid #B0BEC5;
}

#keyword:hover {
  background: #ECEFF1;
  border: 2px solid #B0BEC5;
}



footer.send {
 display: block;
 padding: 20px 0;
 text-align: center;
}

/* ボタン設定 */

footer.send input[type="submit"] {
  display: inline-block;
  padding: 10px 30px;
  text-decoration: none;
  background: #e53935;
  color: #FFF;
  border-bottom: solid 4px #e57373;
  border-radius: 3px;
  margin: 0 10px;
  cursor: pointer;
}

footer.send input[type="submit"]:active,
footer.send input.reset[type="submit"]:active {
  -ms-transform: translateY(4px);
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom: none;
}

/* クリア */

footer.send input.reset[type="submit"] {
  background: #90A4AE;
  border-bottom: solid 4px #CFD8DC;
}

