@charset "utf-8";



.chairman_message {
  display: flex;
  justify-content:center;
  margin: 3rem auto 6rem;
}

.chairman_message h2,
.messag_container p {
  flex: 1;
}

.chairman_message h2{
  font-size: 2em;
  color: #000;
  line-height: 1.5em;
  order: -1;
  flex: 1 0 100%;
  margin: 1.5rem 0;
}

.chairman_message h2::after{
  content: "";
  display: block;
  width: 5rem;
  height: 2px;
  background: #B4BED5;
  margin-top: 0.5rem;
}

.chairman_message_pink h2::after {
  content: "";
  display: block;
  width: 5rem;
  height: 2px;
  background: #aa2969;
  margin-top: 0.5rem;
}

.messag_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 70%;
}

.chairman_message figure {
  order: 2;
  max-width: 330px;
  margin-left: 2rem;
}

.chairman_message figure img {
  width: 100%;
}

.chairman_message figcaption {
  text-align: right;
  line-height: 1.5em;
}

.messag_container p {
  width: 45%;
  letter-spacing: 0.1rem;
  line-height: 1.8rem;
  padding: 0 1rem;
  font-weight: 300;
  font-size: 1.1rem;
}

@media screen and (max-width:767px){

  .messag_container {
    flex-direction: column;
    max-width: 85%;
  }

  .chairman_message h2 {
    flex: 0;
    margin: 1.5rem auto 2.5rem;
    font-size: 2.5rem;
  }

  .chairman_message figure {
    order: 0;
    max-width: 315px;
    margin: 0 auto 2rem;
  }

  .messag_container p {
    width: 100%;
    font-size: 1.3rem;
    line-height: 2rem;
  }
}