.article {
  font-family: "BIZ UDPGothic", sans-serif;
}

.message_top {
  width: 100%;
  margin-bottom: 36px;
}

.top_msg {
  width: 100%;
}

.top_msg_title {
  width: fit-content;
  color: #BB1C21;
  font-size: 36px;
  font-weight: bold;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.top_msg_text {
  font-size: 16px;
}

.msg_block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.message_img {
  width: 40%;
  max-width: 520px;
  flex-shrink: 0;
}

.msg_block_text {
  width: fit-content;
}

.msg_block_title {
  color: #BB1C21;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 22px;
}

@media (max-width: 960px) {
  .top_msg_title {
    font-size: 28px;
  }
  .top_msg_text {
    font-size: 14px;
  }
  .msg_block {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .top_msg_title {
    font-size: 22px;
  }
  .msg_block {
    flex-direction: column;
    gap: 20px;
  }
  .msg_block.reve {
    flex-direction: column-reverse;
  }
  .message_img {
    width: 100%;
  }
  .msg_block_title {
    font-size: 18px;
  }
}