/* 作成者名: 羽祢田 */
/* common */
.contact_container {
  max-width: 112rem;
  margin: 8.9rem auto 28rem;
  position: relative;
}
.contact_description {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #383838;
  margin-bottom: 2.9rem;
}
.confirm_button {
  width: 25rem;
  padding: 1.2rem 9.8rem;
  margin-top: 8rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #383838;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}
.confirm_button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: #383838;
  opacity: .5;
  transition: all ease .3s;
  z-index: -1;
}
.confirm_button:hover::before {
  transform: scale(1.25);
}
@media screen and (max-width: 699.98px) {
  .contact_container {
    max-width: 34.5rem;
    margin: 3.8rem auto 20em;
  }
  .contact_description {
    margin-bottom: 2.5rem;
  }
  .confirm_button {
    margin-top: 2.2rem;
  }
}