@charset "utf-8";
/* CSS Document */


input[type='text']{
  width: 100%;
  max-width: 400px;
  padding: 5px;
  border-radius: 2px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-wrap {
  position: relative;
  width:20%;
  /*max-width: 250px;*/
}

.select-wrap:before {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  content: '';
  width: 6px;
  height: 5px;
  background: url(/img/zipcode/form_p01.gif) no-repeat;
  background-size:auto;
}

.select-wrap select{
  width: 100%;
  outline:none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 30px;
  padding: 5px;
  border:1px solid #ccc;
  background-color: #fff;
  border-radius: 2px;
}

.select-wrap select::-ms-expand {
  display: none;
}

textarea{
  width: 100%;
  height: 300px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
.select-wrap {
  width:60%;
  }
}/*end*/
@media screen and (max-width: 750px){
.select-wrap {
  width:100%;
  }
}/* sp750end*/
.radio-input{
  display: none;
}
.radio-input + label{
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
}
.radio-input + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio-input:checked + label{
  color: #CC0000;
}
.radio-input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #CC0000;
  border-radius: 50%;
}