@charset "utf-8";
/* CSS Document */
select.select_month {
    border:  none; 
    outline: none;
    border-radius: 3px;
    padding: 8px 36px 8px 12px;
    font-size: 18px;
    color: #fff;

    -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;

 background:#42a645 url(../images/down.png) no-repeat scroll;
    background-size: 16px 16px;
        background-position: calc(100% - 10px) center;
}

/* -表單-------------------------------------------------------------------------------------------------------*/
.styled-input {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px 0px 0px 0px; padding:0; list-style:none;
}
.styled-input li {
    position: relative;
    width: 100%;
    margin: 0px 0px 25px 0px; padding:0; list-style:none;
    font-size: 14px; color: #666; background:none;
    display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.styled-input li.half {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}
.styled-input input[type="text"],
.styled-input input[type="tel"],
.styled-input input[type="email"],
.styled-input input[type="password"]{
    width:100%; 
    padding: 17px 15px;
    font-size: 16px;
    color: #353535;
    background-color: #fff;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
            border: 1px solid #b1b5bd;
}
.styled-input textarea {
    width:100%; 
    padding: 17px 15px;
    font-size: 16px;
    color: #353535;
    background-color: #fff;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
            border: 1px solid #b1b5bd;
}
.styled-input textarea {
    resize: none;
    height: 150px;
    display: block;
}
.styled-input select{
    width:100%; 
    padding: 17px 15px;
    font-size: 16px;
    color: #353535;
    background-color: #fff;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
            border: 1px solid #b1b5bd;
}

.styled-input label {
    color: #222;
    width: 100%;
    font-size: 16px; font-weight: 500;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 10px 0px; 
}
.styled-input .code {
  position: absolute;
  top: calc(50% - 10px);
  right: 5px;
  display: flex;
  justify-content:flex-end;
  flex-wrap: nowrap;
}
.styled-input .code img{
    height: 41px; margin: 3px 0 0 0; 
}
.styled-input .code .fas {
  width: 35px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
}
.styled-input .code .fas:hover {
  opacity: 0.8;
}
.styled-input .btn{
    width: 100%; padding: 0 0 0 100px; margin: 0;  
}
@media only screen and (min-width: 0px) and (max-width: 1000px){
.styled-input li.half {
    width: 100%;
}
}