@charset "utf-8";
/* CSS Document */
select.select_month {
    border:  none; 
    outline: none;
    padding: 10px 36px 10px 20px;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;

    -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;

 background:var(--color-c01) 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 15px 0px; padding:5px 20px 5px 20px; list-style:none;
    font-size: 14px; color: #666; background:none;
    display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #f5f7f8;
  border-radius: 10px;
}
.styled-input li.half {
    width: calc(50% - 8px);
    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: 0px 0px;
    border-radius: 0;
    font-size: var(--font-f05);
    color: #333;
    background: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
            border: none;
            height: 38px;
}
.styled-input input::placeholder {
  color: #999; 
}

.styled-input textarea {
    width:100%; 
    padding: 0px 0px;
    font-size: var(--font-f05);
    color: #333;
    background: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
            border: none;
            border-radius: 0;
}
.styled-input textarea {
    resize: none;
    height: 80px;
    display: block;
}
.styled-input select{
    width:100%; 
    padding: 0px 0px;
    font-size: var(--font-f05);
    color: #666;
    background-color: #f5f7f8;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
            border: none;
            border-radius: 0;
}
.styled-input li.content label{
    margin: 0px 0px 10px 0px; 
}
.styled-input label {
    color: #666;
    width: 100%;
    font-size: 14px; 
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px; 
}
.styled-input li.codebox {
  width: 100%;
  display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: nowrap;
}
.styled-input .code {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px; 
  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;
}
@media only screen and (min-width: 0px) and (max-width: 1000px){
.styled-input li.half {
    width: 100%;
}
.styled-input label {
    width: 100%;
    margin: 0px 0px 10px 0px; 
}
.styled-input input[type="text"],
.styled-input input[type="tel"],
.styled-input input[type="email"],
.styled-input input[type="password"]{
    width: 100%;
}
}
@media screen and (max-width: 700px) {
.styled-input li.codebox {
  flex-wrap: wrap;
}
.styled-input .code {
  width: 100%;
  justify-content: flex-start;
}
}