/*------------------------------------*\
    Form Element
\*------------------------------------*/
.input,
.textarea,
.select,
.select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input,
.textarea,
.select {
  width: 100%;
  line-height: normal;
  margin: 0;
  padding: 0 1em;
  border-radius: 10px;
  border: 1px solid #eee;
  background-color: #fff;
  color: #4b4b4b;
  font-family: inherit;
  font-size: 1.6rem;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  outline: 0;
}
.input {
  height: 3.3125em;
  line-height: 1;
  vertical-align: middle;
}
.textarea {
  height: auto;
  min-height: 100px;
  padding-top: 1em;
  padding-bottom: 1em;
  line-height: 1.4;
  vertical-align: top;
}
.select {
  display: block;
  height: 3em;
  padding: 0 24px 0 1rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjE0IiB2aWV3Qm94PSIwIDAgOSAxNCI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNLjUgNWw0LTQgNCA0TTguNSA5LjAxbC00IDQtNC00IiBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojNWU2Yzc1O3N0cm9rZS1taXRlcmxpbWl0OjEwO3N0cm9rZS13aWR0aDouOTNweCIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  text-overflow: "";
}
::-webkit-input-placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
::-moz-placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
:-ms-input-placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
::-ms-input-placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
::placeholder {
  color: #b2b5b5;
  opacity: 1;
  font-weight: normal;
}
.checkbox,
.radio {
  display: inline-block;
  position: relative;
  z-index: 0;
  margin: 0.8rem 0;
  font-size: 1.6rem;
  line-height: 1.5
}
.checkbox input, .radio input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
  }
.checkbox .form__icon, .radio .form__icon {
    display: inline-block;
    position: relative;
    width: 2.2rem;
    height: 2.2rem;
    margin-right: 0.25em;
    border: 2px solid #999;
    color: transparent;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
    vertical-align: -0.4em;
  }
.checkbox input:not([disabled]) + .form__icon, .radio input:not([disabled]) + .form__icon {
    cursor: pointer;
  }
.checkbox .form__icon {
  border-radius: 0.4rem
}
.checkbox .form__icon:before {
    content: "";
    display: block;
    position: absolute;
    top: 0.2rem;
    left: 0.6rem;
    width: 0.7rem;
    height: 1.1rem;
    border-style: solid;
    border-width: 0 0.2rem 0.2rem 0;
    border-color: currentColor;
    -webkit-transform: rotate(48deg);
    transform: rotate(48deg);
  }
.radio .form__icon {
  border-radius: 50%
}
.radio .form__icon:before {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: currentColor;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
  }
.checkbox input:checked + .form__icon, .radio input:checked + .form__icon {
    background-color: #50785d;
    border-color: #50785d;
    color: #fff;
  }
.checkbox input:checked:focus + .form__icon, .radio input:checked:focus + .form__icon {
    background-color: rgb(68, 102, 79);
  }
.input:disabled,
.textarea:disabled,
.input[readonly],
.textarea[readonly],
.checkbox input:disabled + .form__icon,
.radio input[readonly] + .form__icon {
  background-color: #f5f5f7;
}
.input:focus,
.textarea:focus,
.select:focus,
.checkbox input:focus + .form__icon,
.radio input:focus + .form__icon {
  border-color: #50785d;
}
/* フォームレイアウト */
.label {
  display: inline-block;
  padding: 0 0.3em;
  border-radius: 2px;
  background: #9fa0a0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}
.label--hissu {
  background: #83a142;
}
.form {
  margin: 30px 0
}
.form table {
    width: 100%;
  }
.form th,
  .form td {
    padding: 25px 0;
    border-bottom: 1px solid #50785d;
  }
.form th {
    width: 33%;
    padding-right: 1em;
    color: #50785d;
    font-size: 1.8rem;
    text-align: left;
  }
.form td {
    width: 66%;
  }
.form .label {
    float: right;
    margin-top: 5px;
  }
.form .btn {
    min-width: 360px;
  }
@media (max-width: 45em) {
  .form {
    & table
    & tbody,
    & tr,
    & th,
    & td {
      display: block;
      width: 100%;
    }
  }
    .form th {
      padding-top: 20px;
      padding-bottom: 0;
      border-bottom: none;
    }
    .form td {
      padding-top: 10px;
    }
}
/*# sourceMappingURL=maps/form.css.map */
