@charset "UTF-8";
/*スマホメニューの色*/
/*スマホメニューの色*/
textarea {
  padding: 5px;
  width: 98%;
  border: 1px #D9D9D9 solid;
  border-radius: 5px;
}

input[type=text], input[type=password] {
  padding: 5px;
  width: 97%;
  font-size: 0.9em;
  border: 1px #D9D9D9 solid;
  border-radius: 5px;
}

input[type=submit], input[type=reset], input[type=button] {
  font-size: 1em;
  padding: 10px;
  border: 1px #0059B2 solid;
  width: 158px;
  text-align: center;
  border-radius: 5px;
}

input[type=submit] {
  background-color: #0059B2;
  color: #fff;
  -webkit-box-shadow: 0px 6px 16px -8px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 6px 16px -8px rgba(0, 0, 0, 0.6);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

select {
  width: 100%;
  line-height: 1.4;
  vertical-align: middle;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  color: #333;
  border: solid 1px #ccc;
  font-size: 0.9em;
  padding: 7px;
}

.select {
  position: relative;
}

.select:after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  pointer-events: none;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media screen and (max-width: 840px) {
  input[type=text], input[type=password],
  textarea,
  select {
    border: 1px solid #ccc;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    border-radius: 0;
  }
  input[type=submit], input[type=reset], input[type=button] {
    width: 90%;
  }
  input[type=file] {
    font-size: 0.8em;
  }
}