.p_ttl {
  width: 96%;
  margin: 0 auto;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px;
  background: #008e66;
  color: #fff;
  position: relative;
}
.p_ttl .inr {
  width: 81.5%;
  text-align: left;
}
.p_ttl h2 {
  font-family: "AvenirNextLTPro-Medium", sans-serif;
  font-size: 6rem;
}
@media screen and (max-width: 480px) {
  .p_ttl {
    width: 100%;
    height: 100px;
    aspect-ratio: auto;
    border-radius: 0;
  }
  .p_ttl .inr {
    text-align: center;
  }
  .p_ttl h2 {
    font-size: 3.5rem;
  }
}

.p_form {
  padding: 60px 0;
}
@media screen and (max-width: 480px) {
  .p_form {
    padding: 30px 0;
  }
}