@charset "UTF-8";
/* =========================================
   代表メッセージページ
   ========================================= */
.message-section {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

/* リード見出し */
.message-heading {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.message-lead {
  margin-top: 1.75rem;
}

.message-text {
  line-height: 1.625;
}

/* 本文の各見出しブロック */
.message-wrap {
  margin-top: 3rem;
}

.message-item + .message-item {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #dadada;
}

/* 代表ポートレート */
.message-portrait__img {
  display: block;
  width: 100%;
  aspect-ratio: 482/572;
  object-fit: cover;
}

.message-portrait__caption {
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.message-portrait__position {
  font-size: 1rem;
}

.message-portrait__name {
  font-size: 1.25rem;
}

/* スマホ時のポートレート（本文中に表示） */
.message-portrait--sp {
  max-width: 22.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 992px) {
  .message-section {
    padding-top: 3.75rem;
    padding-bottom: 6.25rem;
  }
  /* 左：本文 ／ 右：ポートレート */
  .message-layout {
    display: flex;
    align-items: flex-start;
    gap: 7.5rem;
  }
  .message-layout__main {
    flex: 1;
    min-width: 0;
  }
  .message-layout__side {
    flex-shrink: 0;
    width: 30.125rem;
  }
  .message-heading {
    font-size: 2rem;
    line-height: 1.5;
  }
  .message-portrait__caption {
    text-align: right;
  }
  .message-wrap {
    margin-top: 5rem;
  }
}