@charset "UTF-8";

/* ---------------------------------
  page_title
--------------------------------- */
.page_title .inner::after {
  content: "Message";
}


/* ---------------------------------
  message_block
--------------------------------- */
.message_block {
  padding: 100px 50px;
}
.message_block .inner {
  display: flex;
  column-gap: 120px;
}
.message_block .message_text {
  line-height: 2;
  font-size: 18px;
  color: #2E2E2E;
}
.message_block .message_text p + p {
  margin-top: 2em;
}
.message_block .message_signature {
  display: block;
  margin: 40px 0 0 auto;
  width: 236px;
}
@media screen and (max-width: 767px) {
  .message_block {
    padding: 40px 0 64px;
  }
  .message_block .inner {
    flex-flow: column;
    row-gap: 80px;
  }
  .message_block .message_text {
    font-size: 14px;
  }
}

/* ---------------------------------
  president_profile
--------------------------------- */
.president_profile {
  width: 300px;
  flex-shrink: 0;
  font-size: 14px;
}
.president_profile img {
  border-radius: 20px;
  margin-bottom: 24px;
}
.president_profile dl + dl {
  margin-top: 8px;
}
.president_profile dl {
  display: flex;
  column-gap: 16px;
}
.president_profile dt {
  width: 70px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .president_profile {
    width: 100%;
    font-size: 13px;
  }
  .president_profile img {
    border-radius: 10px;
    width: 260px;
    margin: 0 auto 24px;
    display: block;
  }
}