@charset "UTF-8";
/*基本の青*/
/*薄いグレー*/
/*薄いグレー*/
/*スマホメニューの色*/
/*スマホメニューの色*/
textarea {
  padding: 5px;
  width: 98%;
  border: 1px #ccc solid;
  border-radius: 5px;
}

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

input[type=radio], input[type=checkbox] {
  opacity: 0;
}

input[type=submit], input[type=reset], input[type=button] {
  font-size: 1.2em;
  padding: 20px;
  border: none;
  width: 380px;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  background: #000 url(../images/contact/icon_btnlink.svg) right 20px center no-repeat;
}

input[type=submit] {
  margin-right: 20px;
  color: #fff;
}

input[type=text].zipbox {
  width: 8em;
}

.addressbox input[type=text],
.addressbox .select {
  margin-bottom: 10px;
}

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 10px;
  background-color: #fff;
  border-radius: 5px;
}

.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],
textarea,
select {
    font-size: 16px;
    border: 1px solid #ccc;
  }

  input[type=submit], input[type=reset], input[type=button] {
    width: 100%;
  }
}