@charset "utf-8";

/* トップメッセージ: 代表者プロフィールカード(写真左・テキスト右) */
.ceo-profile {
  display: flex;
  align-items: stretch;
  max-width: 860px;
  min-height: 220px;
  margin: 30px auto;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 8px 28px rgba(6, 94, 39, 0.1);
}

.ceo-profile__photo {
  width: 32%;
  min-width: 0;
  flex-shrink: 0;
}

.ceo-profile__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ceo-profile__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68%;
  min-width: 0;
  padding: 28px;
  color: #065e27;
  background-color: #ffffff;
  box-sizing: border-box;
}

.ceo-profile__name {
  margin: 0;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 767px) {
  .ceo-profile {
    min-height: 0;
    height: 190px;
    border-radius: 16px;
  }

  .ceo-profile__photo {
    width: 32%;
  }

  .ceo-profile__text {
    width: 68%;
    padding: 14px 12px;
  }

  .ceo-profile__name {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
