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

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

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

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

input[type=submit] {
  margin-right: 20px;
  background-color: #2745a9;
  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;
}

.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=tel], input[type=email],
textarea,
select {
    font-size: 16px;
    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: 8em;
  }
}