.c-layout {
  font-family: "Noto Sans JP", noto-sans-cjk-jp, sans-serif;
}

.c-layout {
  margin: 2.5rem 0;
}

.c-layout__inner {
  display: grid;
  grid-template-columns: minmax(2rem, 1fr) minmax(auto, 1280px) minmax(2rem, 1fr);
}

.c-layout__inner > * {
  grid-column: 2;
}

.c-layout__head {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.c-layout__heading {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  max-width: max-content;
  margin: 0 auto 2.5rem;
}

.c-layout__heading::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #e2680d;
  transform: translate(-50%, 0);
  bottom: 0;
  left: 50%;
}

.c-layout__text {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
}

.c-layout__body {
  margin: 2.5rem auto 0;
  max-width: 700px;
}

.c-layout__textArea + .c-layout__textArea {
  margin: 1rem 0 0;
}

.c-layout__foot {
  margin: 2.5rem auto 0;
  max-width: 1140px;
}

.contact_form dl + dl {
  margin: 1.5rem 0 0;
}

.contact_form dt {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  font-weight: 600;
}

.contact_form dd {
  margin: 0.5rem 0 0;
}

.contact_form input:not([type=radio], [type=checkbox]) {
  border-radius: 20px;
  padding: 0.4375rem 1rem;
  background: #eaeaea;
  width: 100%;
  outline: none;
}

.contact_form input[type=submit] {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  padding: 0.625rem 1rem;
  max-width: 242px;
  background: #e2680d;
}

.contact_form textarea {
  border-radius: 20px;
  padding: 0.4375rem 1rem;
  background: #eaeaea;
  width: 100%;
  outline: none;
}

.contact_form p {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
}

.center {
  text-align: center;
  margin: 2.5rem 0 0;
}

.wpcf7 .ajax-loader {
  position: absolute;
}

@media screen and (min-width: 768px) {
  .contact_form dl {
    display: flex;
  }

  .contact_form dt {
    flex-basis: 20%;
  }

  .contact_form dd {
    flex-basis: 80%;
    margin: 0;
  }
}