@charset "UTF-8";
/* CSS Document */

/*-------------------------------------------------------
  #president
-------------------------------------------------------*/
#president{
  padding-top: 100px;
  padding-bottom: 120px;
}
.president-message {
  display: flex;
  gap: 50px;
}
.president-message-image {
  width: 294px;
  height: 340px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 10px;
}
.president-message-name {
  margin-top: 25px;
  text-align: right;
}
.president-message-name .name {
  margin-left: 40px;
}

/*-------------------------------------------------------
  1023px以下で適用する内容.
-------------------------------------------------------*/
@media screen and (max-width:1023px){
  #president {
    margin-top: 57px;
  }
}

/*-------------------------------------------------------
  767px以下で適用する内容.
-------------------------------------------------------*/
@media screen and (max-width:767px){
  #president {
    margin-top: 36px;
    font-size: 0.875rem;
  }
  .president-message {
    display: block;
  }
  .president-message-image {
    margin: 30px auto 0;
    display: block;
  }
}