@charset "UTF-8";
/* ==========================================================================
   WordPress / Contact Form 7 compatibility
   ========================================================================== */

/* Page transition: calm fade without changing the existing layout. */
@keyframes obara-page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .l-page {
    animation: obara-page-enter 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  html.is-page-leaving .l-page {
    pointer-events: none;
    animation: none;
  }
}

.admin-bar .l-drawer {
  top: 32px;
}

.c-form--cf7 {
  display: block;
}

.c-form--cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.c-form--cf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.c-form--cf7 .wpcf7-form-control:not(.wpcf7-acceptance):not(.wpcf7-submit) {
  display: block;
  width: 100%;
}

.c-form--cf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.c-form--cf7 .wpcf7-acceptance label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.c-form--cf7 .wpcf7-acceptance input {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
}

.c-form--cf7 .wpcf7-acceptance input:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.c-form--cf7 .wpcf7-acceptance input:checked::after {
  display: block;
  width: 5px;
  height: 9px;
  margin: 1px auto 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  content: "";
}

.c-form--cf7 .wpcf7-list-item-label {
  flex: 1 0 0;
  min-width: 0;
  font-family: var(--font-gothic);
  font-size: 15px;
  line-height: normal;
  color: #111827;
}

.c-form--cf7 .wpcf7-list-item-label a {
  color: #1d4ed8;
  text-decoration: underline;
}

.c-form--cf7 .wpcf7-submit {
  border: 0;
}

.c-form--cf7 .wpcf7-spinner {
  display: none;
}

.c-form--cf7 .wpcf7-not-valid-tip,
.c-form--cf7 .wpcf7-response-output {
  font-family: var(--font-gothic);
  font-size: 14px;
  line-height: 20px;
}

.c-form--cf7 .wpcf7-response-output {
  margin: 0;
  padding: 16px;
}

.c-form__setup-note {
  font-family: var(--font-gothic);
  font-size: 16px;
  line-height: 34px;
  color: var(--color-body);
  text-align: center;
}

.p-generic {
  padding-block: var(--section-pt) var(--section-pb);
}

.p-generic__inner {
  width: min(var(--container), 900px);
  margin-inline: auto;
  font-size: 16px;
  line-height: 34px;
  color: var(--color-body);
}

.p-generic__inner > * + * {
  margin-top: 24px;
}

.p-generic__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-heading-sub);
}

.p-not-found {
  text-align: center;
}

.p-not-found .c-btn-outline {
  margin: 40px auto 0;
}

@media screen and (max-width: 782px) {
  .admin-bar .l-drawer {
    top: 46px;
  }
}

@media (max-width: 1023px) {
  .p-generic {
    padding-block: 96px;
  }
}

@media (max-width: 767px) {
  .c-form--cf7 .wpcf7-form {
    gap: 40px;
  }

  .p-generic {
    padding-block: 80px;
  }

  .p-generic__inner {
    line-height: 25.6px;
  }

  .p-generic__title {
    font-size: 24px;
  }
}
