section#contact-confirm-contents .section__container #confirm-display {
  background: #eee;
  padding: 40px 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}
section#contact-confirm-contents .section__container #confirm-display h3 {
  margin-bottom: 20px;
  text-align: center;
  color: #223a70;
  font-size: 1.2rem;
  font-weight: 500;
}
section#contact-confirm-contents .section__container #confirm-display dl {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 20px 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  section#contact-confirm-contents .section__container #confirm-display dl {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px 0;
  }
}
section#contact-confirm-contents .section__container #confirm-display dt {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section#contact-confirm-contents .section__container #confirm-display dt {
    margin-top: 20px;
  }
}
section#contact-confirm-contents .section__container #confirm-display dd {
  white-space: normal;
  line-height: 1.8;
}
section#contact-confirm-contents .section__container #confirm-display .confirmation-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
section#contact-confirm-contents .section__container #confirm-display .back-button,
section#contact-confirm-contents .section__container #confirm-display .send-button {
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
section#contact-confirm-contents .section__container #confirm-display .back-button {
  background: #ccc;
}
section#contact-confirm-contents .section__container #confirm-display .send-button {
  background: #223a70;
  color: white;
}
