/*
Theme Name: Twenty Twenty-one Child
Version: 1.6
Template: twentytwentyone
*/
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

#overview {
  display: none;
}

.entry__btn {
  display: none;
}
.entry .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: max(80%, 550px);
  gap: 20px max(9rem, 30px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .entry .btnBox {
    width: 80%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  .entry .btnBox {
    width: 100%;
  }
}

#formEntry .form__preface {
  font-size: max(2rem, 14px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
#formEntry .form__content__section {
  border-radius: max(3rem, 20px);
  border: max(0.2rem, 2px) solid #3a9447;
  overflow: hidden;
}
#formEntry .form__content__section:first-of-type {
  margin-top: max(3rem, 20px);
}
#formEntry .form__content__section:not(:first-of-type) {
  margin-top: max(7.5rem, 50px);
}
#formEntry .form__content__section__header {
  padding: max(1.5rem, 15px) max(6rem, 30px);
  background: #f5faf5;
}
#formEntry .form__content__section__header h3 {
  font-size: max(2rem, 17px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#formEntry .form__content__section__body {
  padding: max(7rem, 50px) max(7rem, 40px);
}
@media screen and (max-width: 550px) {
  #formEntry .form__content__section__body {
    padding: 40px 7.5%;
  }
}
#formEntry .form__actions {
  display: grid;
  text-align: center;
  margin-top: max(6rem, 40px);
}
#formEntry .form__actions p {
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#formEntry .form__actions__consent {
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: max(2rem, 15px);
  margin-bottom: max(10rem, 50px);
}
#formEntry .form__actions__consent .underline {
  -webkit-text-decoration: underline 1px solid #183b5a;
          text-decoration: underline 1px solid #183b5a;
  text-underline-offset: 7px;
}
#formEntry .form__actions__consent .form__error {
  color: #ff0000;
  width: 100%;
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#formEntry .form__actions__consent input {
  position: relative;
  height: 1.5em;
  width: 1.5em;
  background: rgba(58, 148, 71, 0.1);
  border-radius: 3px;
  margin-right: 10px;
}
#formEntry .form__actions__consent input::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  aspect-ratio: 1/1;
  background: #3a9447;
  border-radius: 3px;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
#formEntry .form__actions__consent input:checked::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
#formEntry .form__actions .form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: max(2.5rem, 20px) max(12rem, 100px);
  margin: 0 auto;
  border-radius: 80px;
  font-size: max(2rem, 18px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-box-shadow: 6px 6px 0 rgba(58, 148, 71, 0.2);
          box-shadow: 6px 6px 0 rgba(58, 148, 71, 0.2);
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
}
#formEntry .form__actions .form__button--primary {
  color: #fff;
  background: #3a9447;
}
#formEntry .form__actions .form__button--secondary {
  color: #3a9447;
  background: #f5faf5;
}
#formEntry .form__actions .form__button:hover {
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
  -webkit-box-shadow: 0px 0px rgba(58, 148, 71, 0.2);
          box-shadow: 0px 0px rgba(58, 148, 71, 0.2);
}
#formEntry .form__wrapper {
  margin-bottom: max(17rem, 100px);
}
#formEntry .form__wrapper--input .form__content__section__body {
  display: grid;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  grid-template-columns: max(34rem, 150px) auto;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #formEntry .form__wrapper--input .form__content__section__body {
    grid-template-columns: 1fr;
  }
}
#formEntry .form__wrapper--input .form__content__section__body .form__group {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
@media screen and (max-width: 768px) {
  #formEntry .form__wrapper--input .form__content__section__body .form__group {
    row-gap: 10px;
    grid-column: span 1;
  }
}
#formEntry .form__wrapper--input .form__content__section__body .form__group:not(:last-of-type) {
  padding-bottom: max(3rem, 25px);
  margin-bottom: max(2.5rem, 20px);
  border-bottom: max(0.2rem, 2px) dotted rgba(58, 148, 71, 0.6);
}
#formEntry .form__wrapper--input .form__content__section__body > .form__field {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field .underline {
  padding-bottom: max(2rem, 15px);
  margin-bottom: max(2.5rem, 20px);
  border-bottom: max(0.2rem, 2px) dotted rgba(58, 148, 71, 0.6);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field:not(.flex):not(.grid) .form__field__inner:not(:first-of-type) {
  margin-top: max(3rem, 25px);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__inner.required {
  position: relative;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__inner.required::before {
  content: "*";
  position: absolute;
  top: 0;
  left: -1em;
  color: #ff0000;
  font-size: 1em;
  line-height: 1;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__inner--options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: max(3rem, 30px);
     -moz-column-gap: max(3rem, 30px);
          column-gap: max(3rem, 30px);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field .form__error {
  color: #ff0000;
  width: 100%;
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__label {
  display: block;
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: max(1rem, 10px);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__label--required {
  color: #ff0000;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__label--example {
  opacity: 0.2;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__label--exp {
  margin-bottom: max(2.5rem, 20px);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__label:has(.form__field__label--example) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}
@media screen and (max-width: 550px) {
  #formEntry .form__wrapper--input .form__content__section__body .form__field__label:has(.form__field__label--example) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__text {
  font-size: max(1.6rem, 12px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-transform: translateY(0.1em);
          transform: translateY(0.1em);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__suffix {
  -ms-flex-item-align: end;
      align-self: end;
  line-height: 2;
  vertical-align: bottom;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__button {
  height: auto;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 10px max(2rem, 10px);
  border-radius: max(0.5rem, 5px);
  background: #3a9447;
  color: #fff;
  margin-left: max(1.5rem, 5px);
}
@media screen and (max-width: 768px) {
  #formEntry .form__wrapper--input .form__content__section__body .form__field__button {
    margin-left: 0;
    padding: 5px 10px;
  }
}
#formEntry .form__wrapper--input .form__content__section__body .form__field__button:disabled {
  opacity: 0.5;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field .select__outer {
  position: relative;
  width: max(29rem, 250px);
}
@media screen and (max-width: 550px) {
  #formEntry .form__wrapper--input .form__content__section__body .form__field .select__outer {
    width: 100%;
  }
}
#formEntry .form__wrapper--input .form__content__section__body .form__field .select__outer::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-75%) rotate(45deg);
          transform: translateY(-75%) rotate(45deg);
  width: max(1.2rem, 10px);
  height: max(1.2rem, 10px);
  border-right: max(0.2rem, 2px) solid #183b5a;
  border-bottom: max(0.2rem, 2px) solid #183b5a;
  pointer-events: none;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field .select__outer:focus-widthin::after {
  -webkit-transform: translateY(-25%) rotate(-45deg);
          transform: translateY(-25%) rotate(-45deg);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=text],
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=email],
#formEntry .form__wrapper--input .form__content__section__body .form__field select,
#formEntry .form__wrapper--input .form__content__section__body .form__field textarea {
  background: #f5faf5;
  padding: max(1rem, 10px) max(2.5rem, 20px);
}
@media screen and (max-width: 768px) {
  #formEntry .form__wrapper--input .form__content__section__body .form__field input[type=text],
  #formEntry .form__wrapper--input .form__content__section__body .form__field input[type=email],
  #formEntry .form__wrapper--input .form__content__section__body .form__field select,
  #formEntry .form__wrapper--input .form__content__section__body .form__field textarea {
    padding: 10px;
  }
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=text]::-webkit-input-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field input[type=email]::-webkit-input-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field select::-webkit-input-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field textarea::-webkit-input-placeholder {
  color: rgba(174, 213, 180, 0.6);
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=text]::-moz-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field input[type=email]::-moz-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field select::-moz-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field textarea::-moz-placeholder {
  color: rgba(174, 213, 180, 0.6);
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=text]:-ms-input-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field input[type=email]:-ms-input-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field select:-ms-input-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field textarea:-ms-input-placeholder {
  color: rgba(174, 213, 180, 0.6);
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=text]::-ms-input-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field input[type=email]::-ms-input-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field select::-ms-input-placeholder, #formEntry .form__wrapper--input .form__content__section__body .form__field textarea::-ms-input-placeholder {
  color: rgba(174, 213, 180, 0.6);
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=text]::placeholder,
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=email]::placeholder,
#formEntry .form__wrapper--input .form__content__section__body .form__field select::placeholder,
#formEntry .form__wrapper--input .form__content__section__body .form__field textarea::placeholder {
  color: rgba(174, 213, 180, 0.6);
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=text]:focus,
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=email]:focus,
#formEntry .form__wrapper--input .form__content__section__body .form__field select:focus,
#formEntry .form__wrapper--input .form__content__section__body .form__field textarea:focus {
  outline: max(0.2rem, 2px) solid #3a9447;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input {
  width: 100%;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input.number {
  max-width: max(12.5rem, 70px);
  text-align: center;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=radio], #formEntry .form__wrapper--input .form__content__section__body .form__field input[type=checkbox] {
  position: relative;
  width: max(2rem, 16px);
  height: max(2rem, 16px);
  border: max(0.1rem, 1px) solid rgba(58, 148, 71, 0.3);
  border-radius: 50%;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=radio]::before, #formEntry .form__wrapper--input .form__content__section__body .form__field input[type=checkbox]::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  background: #3a9447;
}
#formEntry .form__wrapper--input .form__content__section__body .form__field input[type=radio]:checked::before, #formEntry .form__wrapper--input .form__content__section__body .form__field input[type=checkbox]:checked::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background: #f5faf5;
  padding: max(1rem, 10px) max(2.5rem, 20px);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field--number.form__field--single input[data-postal-primary] {
  max-width: max(29rem, 250px);
}
@media screen and (max-width: 550px) {
  #formEntry .form__wrapper--input .form__content__section__body .form__field--number.form__field--single input[data-postal-primary] {
    max-width: 100%;
  }
}
#formEntry .form__wrapper--input .form__content__section__body .form__field.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1rem, 10px);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(3rem, 10px);
}
#formEntry .form__wrapper--input .form__content__section__body .form__field.grid input {
  width: 100%;
}
#formEntry .form__wrapper--confirm .form__confirm__item {
  display: grid;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  grid-template-columns: max(34rem, 150px) auto;
}
#formEntry .form__wrapper--confirm .form__confirm__item:not(:last-of-type) {
  padding-bottom: max(1.5rem, 10px);
  margin-bottom: max(1.5rem, 10px);
  border-bottom: max(0.2rem, 2px) dotted rgba(58, 148, 71, 0.6);
}
@media screen and (max-width: 768px) {
  #formEntry .form__wrapper--confirm .form__confirm__item {
    grid-template-columns: 1fr;
  }
}
#formEntry .form__wrapper--confirm .form__confirm__item dt {
  font-weight: 600;
}
#formEntry .form__wrapper--confirm .form__actions {
  width: max(80%, 600px);
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr 1fr;
  gap: 20px max(7rem, 30px);
}
@media screen and (max-width: 768px) {
  #formEntry .form__wrapper--confirm .form__actions {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#formEntry .form__wrapper--confirm .form__actions .form__button {
  width: 100%;
}
#formEntry .form__wrapper--complete {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #formEntry .form__wrapper--complete {
    text-align: left;
  }
}
#formEntry .form__wrapper--complete h3 {
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
#formEntry .form__wrapper--complete p {
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: max(1.5rem, 15px);
  margin-bottom: max(5rem, 30px);
}
#formEntry .form__wrapper--complete .attention {
  font-size: max(1.2rem, 10px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
#formEntry .form__actions__recaptcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: max(3rem, 20px);
}
#formEntry .form__actions__recaptcha .g-recaptcha {
  display: inline-block;
}
@media screen and (max-width: 550px) {
  #formEntry .form__actions__recaptcha {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
}/*# sourceMappingURL=entry.css.map */