@media screen and (min-width: 1001px) and (max-width: 10000px) {
  .formInput {
    float: left;
    width: 100%;
    height: calc(60vw / var(--setSize--desktop));
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px calc(20vw / var(--setSize--desktop)) 0px calc(20vw / var(--setSize--desktop));
    color: #000;
    font-size: calc(19vw / var(--setSize--desktop));
    font-weight: 400;
    line-height: calc(19vw / var(--setSize--desktop));
    border: 1px solid #eaeaea;
    border-radius: calc(10vw / var(--setSize--desktop));
    background: #fff;
  }
  .formTextarea {
    float: left;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: calc(150vw / var(--setSize--desktop));
    min-height: calc(150vw / var(--setSize--desktop));
    max-height: calc(150vw / var(--setSize--desktop));
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: calc(20vw / var(--setSize--desktop));
    color: #000;
    font-size: calc(19vw / var(--setSize--desktop));
    font-weight: 400;
    line-height: calc(19vw / var(--setSize--desktop));
    border: 1px solid #eaeaea;
    border-radius: calc(10vw / var(--setSize--desktop));
    background: #fff;
  }
  .formSelect {
    float: left;
    width: 100%;
    height: calc(60vw / var(--setSize--desktop));
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px calc(20vw / var(--setSize--desktop)) 0px calc(20vw / var(--setSize--desktop));
    color: #000;
    font-size: calc(19vw / var(--setSize--desktop));
    font-weight: 400;
    line-height: calc(19vw / var(--setSize--desktop));
    background: #fff url(../images/selectArrow.svg) center right calc(25vw / var(--setSize--desktop)) no-repeat;
    border: 1px solid #eaeaea;
    border-radius: calc(10vw / var(--setSize--desktop));
    outline-color: #000;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .formSubmit {
    float: right;
    width: calc(250vw / var(--setSize--desktop));
    height: calc(60vw / var(--setSize--desktop));
    color: #000;
    font-size: calc(19vw / var(--setSize--desktop));
    font-weight: 400;
    line-height: calc(19vw / var(--setSize--desktop));
    background-color: #000;
    border: 1px solid #eaeaea;
    border-radius: calc(10vw / var(--setSize--desktop));
    cursor: pointer;
  }
  .formBox__checkBox {
    float: left;
    width: 100%;
    margin: 0px 0px calc(0vw / var(--setSize--desktop)) 0px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }
  .formBox__checkInput {
    float: left;
    width: calc(17vw / var(--setSize--desktop));
    height: calc(17vw / var(--setSize--desktop));
    position: relative;
    border: 1px solid #eaeaea;
    display: inline-grid;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .formBox__checkInput::after {
    content: "";
    width: calc(9vw / var(--setSize--desktop));
    height: calc(9vw / var(--setSize--desktop));
    margin: calc(2vw / var(--setSize--desktop)) 0px 0px calc(2vw / var(--setSize--desktop));
    transform: scale(0);
    transition: 60ms transform ease-in-out;
    box-shadow: inset 1em 1em #000;
  }
  .formBox__checkInput:checked::after {
    transform: scale(1) !important;
    background-color: #000;
    border: 1px solid #000;
  }
  .formBox__checkText {
    float: left;
    width: calc(100% - 30px);
    position: relative;
    color: #000;
    font-size: calc(14vw / var(--setSize--desktop));
    font-weight: 300;
    line-height: calc(16vw / var(--setSize--desktop));
    text-align: justify;
  }
  .formBox__checkText a {
    color: #000;
    text-decoration: underline;
  }
  .formInput:focus, .formTextarea:focus, .formSelect, .formSubmit:focus {
    outline: none;
  }
  .recaptcha {
    display: none;
    float: right;
    width: 100%;
    margin: 0px calc(0vw / var(--setSize--desktop)) calc(10vw / var(--setSize--desktop)) 0px;
    position: relative;
  }
  .recaptcha .g-recaptcha {
    float: right;
  }
}
@media screen and (min-width: 1px) and (max-width: 1000px) {
  .formInput {
    float: left;
    width: 100%;
    height: calc(60vw / var(--setSize--mobile));
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px calc(20vw / var(--setSize--mobile)) 0px calc(20vw / var(--setSize--mobile));
    color: #000;
    font-size: calc(19vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(19vw / var(--setSize--mobile));
    border: 1px solid #eaeaea;
    background: #fff;
  }
  .formTextarea {
    float: left;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: calc(150vw / var(--setSize--mobile));
    min-height: calc(150vw / var(--setSize--mobile));
    max-height: calc(150vw / var(--setSize--mobile));
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: calc(20vw / var(--setSize--mobile));
    color: #000;
    font-size: calc(19vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(19vw / var(--setSize--mobile));
    border: 1px solid #eaeaea;
    background: #fff;
  }
  .formSelect {
    float: left;
    width: 100%;
    height: calc(60vw / var(--setSize--mobile));
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px calc(20vw / var(--setSize--mobile)) 0px calc(20vw / var(--setSize--mobile));
    color: #000;
    font-size: calc(19vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(19vw / var(--setSize--mobile));
    background: #fff url(../images/selectArrow.svg) center right calc(25vw / var(--setSize--mobile)) no-repeat;
    border: 1px solid #eaeaea;
    outline-color: #000;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .formSubmit {
    float: right;
    width: calc(250vw / var(--setSize--mobile));
    height: calc(60vw / var(--setSize--mobile));
    color: #000;
    font-size: calc(19vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(19vw / var(--setSize--mobile));
    background-color: #000;
    border: 1px solid #eaeaea;
    cursor: pointer;
  }
  .formBox__checkBox {
    float: left;
    width: 100%;
    margin: 0px 0px calc(20vw / var(--setSize--mobile)) 0px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }
  .formBox__checkInput {
    float: left;
    width: calc(17vw / var(--setSize--mobile));
    height: calc(17vw / var(--setSize--mobile));
    position: relative;
    border: 1px solid #eaeaea;
    display: inline-grid;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .formBox__checkInput::after {
    content: "";
    width: calc(9vw / var(--setSize--mobile));
    height: calc(9vw / var(--setSize--mobile));
    margin: calc(2vw / var(--setSize--mobile)) 0px 0px calc(2vw / var(--setSize--mobile));
    transform: scale(0);
    transition: 60ms transform ease-in-out;
    box-shadow: inset 1em 1em #000;
  }
  .formBox__checkInput:checked::after {
    transform: scale(1) !important;
    background-color: #000;
    border: 1px solid #000;
  }
  .formBox__checkText {
    float: left;
    width: calc(100% - 30px);
    position: relative;
    color: #000;
    font-size: calc(14vw / var(--setSize--mobile));
    font-weight: 300;
    line-height: calc(16vw / var(--setSize--mobile));
    text-align: justify;
  }
  .formBox__checkText a {
    color: #000;
    text-decoration: underline;
  }
  .formInput:focus, .formTextarea:focus, .formSelect, .formSubmit:focus {
    outline: none;
  }
  .recaptcha {
    display: none;
    float: right;
    width: 100%;
    margin: 0px calc(0vw / var(--setSize--mobile)) calc(10vw / var(--setSize--mobile)) 0px;
    position: relative;
  }
  .recaptcha .g-recaptcha {
    float: right;
  }
}/*# sourceMappingURL=forms.css.map */