html {
  font-size: 10px;
}
body {
  color: #3B3B3B;
  font-size: 1.6rem;
  line-height: 1.5;
}

a {
  color: #402600;
}

.container {
  max-width: 100%;
  border: 0;
}

.help-block {
  font-size: 0.75em;
}

.form-column {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 1em;
}

.form-column-heading h2 {
  font-size: 1.5em;
  margin: 0;
  font-weight: bold;
}

label h3 {
  font-size: 1em;
  display: inline-block;
  margin: 0 0 0.5em;
  font-weight: bold;
}

label .badge-optional {
  display: none;
}

label .badge-required {
  width: auto;
  display: inline-block;
  margin-left: 0.25em;
  padding: 4px 8px;
  line-height: 1;
  font-size: 0.75em;
  color: #fff;
  background-color: #c73b3b;
  border-radius: 4px;
}

.description-block {
  color: #151514;
  margin-top: 0.5em;
}

.button-group {
  margin-top: 1em;
}
.button-group .help-block {
  margin-top: 0.5em;
  font-size: 0.75em;
}

button {
  display: inline-block;
  padding: 0.5em 1em;
  text-align: center;
  cursor: pointer;
  border: 1px solid #6a767d;
  border-radius: 4px;
  margin: 0 0.5em 0 0;
  background-color: #fff;
}
button.button-submit span.fa {
  display: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
  appearance: none;
  height: 1.75em;
  width: 100%;
  min-width: 500px;
  max-width: 100%;
  line-height: 1.5em;
  padding: 8px 16px;
  border: 1px solid #E6E6E6;
  transition: all 0.3s;
}

textarea {
  width: 100%;
  height: 10em;
}

input[type="file"] {
  display: block;
  line-height: 1.75;
}

input[type="password"] {
  height: 1.75em;
  width: 100%;
  border: 1px solid #E6E6E6;
  transition: all 0.3s;
}

input[readonly],
textarea[readonly] {
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.form-column-date .input-group select {
  width: auto;
  display: inline-block;
}

.form-column-calendar input {
  width: auto;
}

.form-column-zip-code-jp .input-group input {
  width: auto;
  min-width: auto;
  display: inline-block;
}

.form-column-zip-code-autofill.form-column {
  border-bottom: 0;
  margin-bottom: 0;
}

.form-column-checkbox label,
.form-column-radio label {
  margin-right: 1em;
}

select {
  width: auto;
  height: 1.75em;
  display: block;
  border: 1px solid #6a767d;
}

.message-block-complete {
  border: 2px solid #316a8b;
  padding: 20px;
  text-align: center;
}
fieldset {
  border: none;
  padding: 0;
}
legend.label,
.label {
  color: #730600;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 0;
}
.label .badge-required {
  color: #fff;
  font-size: 1.2rem;
}
.input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
}
.button-group {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.button {
  background: #fff;
  border: 1px solid #FF5C82;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  padding: 10px 32px;
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 340px;
  min-height: 56px;
  height: 100%;
}


@media (max-width: 640px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  textarea {
    width: 100%;
    min-width: 100%;
  }
  select {
    width: 100%;
  }
  .form-column-calendar input {
    width: auto;
    min-width: auto;
  }
  .form-column-heading h2 {
    font-size: 1.25em;
  }
  .input-group {
    flex-direction: column;
    gap: 8px;
  }
  .button-group {
    flex-direction: column;
    gap: 16px;
  }
  .button {
    max-width: unset;
  }
}
