@charset "UTF-8";

/*----------------------------#head_searchform--------------------------------*/

#head_searchform .field {
  border: 0;
  padding: 5px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #aaa;
  border: solid 1px #c0c0c0;
  background: #FFF;
  width: 140px;
  -moz-box-shadow: inset 1px 4px 6px -6px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 1px 4px 6px -6px rgba(0, 0, 0, 0.5);
  box-shadow: inset 1px 4px 6px -6px rgba(0, 0, 0, 0.5);
}
#head_searchform .submit {
  background-color: #FAC75A;
  padding: 5px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border: 1px solid #e0b14b;
  border-radius: 5px;
  cursor: pointer;
  font-size: 90%;
}
#head_searchform .submit:hover {
  background-color: #f6cd74 !important;
  color: #fff;
}

/*----------------------------#searchform--------------------------------*/

#searchform .title {
  font-weight: bold;
  font-size: 110%;
}
#searchform .form_wrap{
  padding-top: 10px;
}
#searchform .form_wrap:after{
  content: "";
  clear: both;
  display: block;

}
#searchform .area_L{
  width: 60%;
  float: left;
  margin-bottom: 20px;
}
#searchform .categories:after{
  content: "";
  clear: both;
  display: block;
}
#searchform .categories li{
  width: 32%;
  float: left;
  margin-bottom: 10px;
  margin-right: 10px;
}
#searchform .categories li:nth-of-type(3n){
  margin-right: 0px;
}


#searchform .area_R{
  width: 40%;
  float: right;
  margin-bottom: 20px;
}
#searchform .area_R .title{
  margin-bottom: 8px;
}
#searchform ul.selct{
  overflow: hidden;

}
#searchform ul.selct li{
  width: 50%;
  float: left;
  margin-bottom: 20px;
}

@media screen and (max-width: 1100px) {
  #searchform .area_L{
    width: auto;
    float: none;
  }
  #searchform .area_R{
    width: auto;
    float: none;
  }
}

@media screen and (max-width: 600px) {
  #searchform .categories li{
    width: 48%;
    float: left;
    margin-bottom: 10px;
    margin-right: 10px;
  }

  #searchform .categories li:nth-of-type(3n){
    margin-right: 10px;
  }
  #searchform .categories li:nth-of-type(2n){
    margin-right: 0px;
  }
  #searchform ul.selct li{
    width: auto;
    float: none;
    margin-bottom: 20px;
  }

}

/*フォーム廻りリセット*/

#searchform input, #searchform button, #searchform textarea, #searchform select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* カテゴリー */

#searchform .categories li {}
#searchform .categories input[type="radio"] {
  display: none;
}
#searchform .categories label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 20px;
  cursor: pointer;
}
#searchform .categories label::before, .categories label::after {
  position: absolute;
  content: '';
  top: 50%;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
}
#searchform .categories label::before {
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #f3f3f3;
  border: 1px solid #ccc;
}
#searchform .categories label:hover::before {
  background: #fff;
}
#searchform .categories label::after {
  opacity: 0;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #E6163C;
  -webkit-transform: scale(2);
  transform: scale(2);
}
#searchform .categories input[type="radio"]:checked+ label::before {
  background: #fff;
  border: 1px solid #E6163C;
}
#searchform .categories input[type="radio"]:checked+ label::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*セレクトボックス（ご予算）*/

#searchform .select_price, #searchform .select_format, #searchform .select_sex, #searchform .select_from, #searchform .select_target, #searchform .select_area {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #dfe0d9 100%);
  background-image: linear-gradient(top, #ffffff 0%, #dfe0d9 100%);
  border: 1px solid #c0c0c0;
  color: #333;
}
#searchform .select_price select, #searchform .select_format select, #searchform .select_sex select, #searchform .select_from select, #searchform .select_target select, #searchform .select_area select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  /* fallback non calc support */
  width: -webkit-calc(100%+ 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: .6875rem 2.1875rem .6875rem .6875rem;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 16px;
  line-height: 1.5;
}
#searchform .entypo-down-open-mini:before {
  content: '▼';
  font-family: 'entypo', sans-serif;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: .75rem;
  margin-top: -8px;
  margin-top: -.5rem;
  font-size: 16px;
  line-height: 1;
  color: #333;
}

/*検索エリア*/

#searchform .field {
  border: 0;
  padding: 10px;
  font-family: Arial, sans-serif;
  color: #aaa;
  border: solid 1px #c0c0c0;
  margin: 0 0 20px;
  background: #FFF;
  width: 80%;
  -moz-box-shadow: inset 1px 4px 6px -6px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 1px 4px 6px -6px rgba(0, 0, 0, 0.5);
  box-shadow: inset 1px 4px 6px -6px rgba(0, 0, 0, 0.5);
}

/*ボタン*/

#searchform .submit {
  width: 200px;
  margin: 0 auto 20px;
  background-color: #FAC75A;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border: 1px solid #e0b14b;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  font-size: 120%;
  clear: both;
}
#searchform .submit:hover {
  background-color: #f6cd74 !important;
  color: #fff;
}
