section.message {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
section.message > h2 {
  color: var(--blue);
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  section.message > h2 {
    font-size: 22px;
    line-height: 1.5;
  }
}
section.message > h2 span {
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  section.message > h2 span {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
section.message .message-area .txt-area {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  section.message .message-area .txt-area {
    margin-top: 40px;
  }
}
section.message .message-area .txt-area p {
  margin-top: 20px;
}
section.message .message-area .txt-area p:first-of-type {
  margin: 0;
}