/* =====  汎用  ===== */

.section {
  padding: 4rem 0;
}

.container {
  width: 90%;
  max-width: 640px;
  margin-inline: auto;
}

/* =====  HERO  ===== */
#content {
  padding-top: 0;
  margin: 0;
}

/* =====  SECTION  ===== */

.section--gray {
  background: var(--gray-50);
}

.section__title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
}

.section__description {
  margin-top: 8px;
  text-align: center;
  margin-bottom: 4rem;
}

.contact-area {
  background-color: white;
  padding: 16px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
}

/* =====  レスポンシブ調整  ===== */
@media (min-width: 768px) {
  .cta__title {
    font-size: 1.875rem;
  }

  .contact-area {
    background-color: white;
    padding: 48px;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow);
  }
}

.contact-inner {
  margin: 0 auto;
  height: 100%;
  position: relative;
}

.form-layout p {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-layout span {
  width: 100%;
}
.form-layout span input {
  width: 100%;
  max-width: 512px;
  height: 40px;
  padding: 0 8px;
}

.form-layout span select {
  width: 100%;
  max-width: 512px;
  height: 40px;
  padding: 0 8px;
}

.form-layout span textarea {
  width: 100%;
  height: 256px;
  padding: 8px 8px;
}

.form-button-area {
  margin-bottom: 48px;
}

.form-button-area p {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-button-area input {
  width: 80%;
  max-width: 320px;
  padding: 1rem 2rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: white;
  border: none;
  border-radius: 100vh;
  background-color: #eb6100;
}

.form-button-area input:hover {
  color: white;
  background: #f56500;
  border: none;
}