/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-form__content {
  display: flex;
}
.s-form__head {
  flex: 1 1 30%;
  width: 30%;
  padding-right: 3.75rem;
}
.s-form__ttl {
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.s-form__ttl {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-form__ttl {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-form__ttl {
    font-size: 3.5rem;
  }
}
.s-form__body {
  background: var(--wp--preset--color--bg-white);
  padding: 3rem 3.5rem;
  border: 1px solid var(--wp--preset--color--bg-gray-light);
}
@media screen and (max-width: 991px) {
  .s-form__content {
    flex-direction: column;
    gap: 2rem;
  }
  .s-form__head {
    flex: none;
    width: 100%;
    padding-right: 0;
  }
  .s-form__ttl {
    margin-bottom: 1rem;
  }
  .s-form__body {
    width: 100%;
    padding: 2rem 1.5rem;
  }
}
@media screen and (max-width: 580px) {
  .s-form__content {
    gap: 1.5rem;
  }
  .s-form__ttl {
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    line-height: 1;
  }
  .s-form__ttl {
    font-size: 42px;
  }
}
@media screen and (max-width: 580px) and (min-width: 569px) {
  .s-form__ttl {
    font-size: calc(42px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 580px) and (min-width: 1440px) {
  .s-form__ttl {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 580px) {
  .s-form__body {
    padding: 1.5rem 1.25rem;
  }
}