.page-mv {
  position: relative;
  .mv-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .page-title {
    position: absolute;
    top: 55%;
    left: 50%;
    translate: -50% -50%;
    width: max-content;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 0.75);
  }
  @media (max-width: 960px) {
    .mv-img {
      height: 300px;
    }
    .page-title {
      font-size: 1.75rem;
    }
  }
}

/*=========================
  contact  form
=========================*/
section.contact-form {
  padding: var(--section-padding);
  background-color: var(--light-orange);
  .section-title {
    color: var(--orange);
    font-size: 3rem;
    text-align: center;
    text-wrap: balance;
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      font-size: 2rem;
    }
  }
  .text {
    text-align: center;
    text-wrap: balance;
    margin-bottom: 2rem;
  }
  .to-tel {
    text-align: center;
    text-wrap: balance;
    margin-bottom: 4rem;
    .title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    .button {
      margin-inline: auto;
      background-color: var(--navy);
      width: min(300px, 80%);
      font-size: 1.25rem;
    }
  }
  .form-wrapper {
    .title {
      font-size: 1.5rem;
      text-align: center;
      text-wrap: balance;
      margin-bottom: 1rem;
    }
    .form {
      width: 100%;
      max-width: 900px;
      margin-inline: auto;
      .form-item {
        margin-bottom: 2rem;
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 2rem;
        @media (max-width: 960px) {
          grid-template-columns: 1fr;
          gap: 1rem;
        }
      }
      .label-area {
        font-weight: 600;
      }
      .input-area {
        input {
          height: 2.5rem;
        }
        input,
        textarea {
          width: 100%;
          border: none;
          border-radius: 6px;
        }
      }
      .red {
        color: red;
      }
    }
    .button {
      width: min(200px, 80%);
      background-color: var(--orange);
      border: none;
      margin-inline: auto;
    }
  }
}
