/* =========================
   役員リスト（左：役職 / 右：名前＋肩書）
   ========================= */

.executive-list{
  width: 70%;
  max-width: 900px;
  margin: 0 auto;
}

.executive-item{
  display: flex;
  gap: 18px;
  padding: 14px 0;
  align-items: flex-start;
}

.executive-item__left{
  flex: 0 0 180px;
}

.executive-item__role {
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.3rem;
}

.executive-item__right {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
}


.executive-item__name {
  font-size: 1.05em;
  font-weight: 600;
  line-height: 1.4;
  width: 35%;
}


.executive-item__title{
  margin-top: 4px;
  font-size: 0.82em;
  opacity: 0.85;
  line-height: 1.5;
}

/* スマホ：縦積み */
@media (max-width: 767px){
  .executive-item{
    flex-direction: column;
    gap: 8px;
  }
  .executive-item__left{
    flex-basis: auto;
  }
}
