/* Company Profile Page */
.company-profile {
  color: var(--color-dark-gray);
}

.profile-row {
  display: flex;
  align-items: center;
  padding: 30px 0;
  /* border-bottom: 1px solid #eee; 項目間の区切り線 */
}

.profile-row dt {
  width: 20%; /* 項目の固定幅 */
  flex-shrink: 0;
  font-weight: bold;
}

.profile-row dd {
  flex: 1;
  margin: 0;
  line-height: 1.8;
}

/* 事業内容のリスト */
.business-list {
  list-style: none;
  padding: 0;
}

.business-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 8px;
}

.business-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* --- スマホレスポンシブ --- */
@media (max-width: 768px) {
  .profile-row {
    flex-direction: column; /* 縦並びに切り替え */
    padding: 20px 0;
  }

  .profile-row dt {
    width: 100%;
    margin-bottom: 10px;
    /* font-size: 16px; */
  }

  .profile-row dd {
    width: 100%;
    /* font-size: 14px; */
  }
  
}