/* CSS Document */

.company-profile {
  max-width: 800px;
  margin: 20px auto 100px;
}



.profile-list {
  border-top: 1px solid #eee;
}

.profile-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.profile-item dt {
  flex: 0 0 200px; /* 項目名の幅を固定 */
  font-weight: bold;
  padding: 10px;
  box-sizing: border-box;
}

.profile-item dd {
  flex: 1;
  margin: 0;
  padding: 10px 20px;
  line-height: 1.6;
}

/* スマホ表示用の調整 */
@media (max-width: 600px) {
  .profile-item {
    flex-direction: column;
  }
  .profile-item dt {
    flex: 0 0 auto;
    width: 100%;
  }
}