@charset "utf-8";
/* 全体 */
.company-page {
  padding: 20px 20px;
  background-color: #ffffff;
  color: #222;
  line-height: 1.9;
  font-size: 16px;
}

/* 共通コンテナ */
.container {
  max-width: 800px;
  margin: 0 auto;
}

/* セクション余白 */
.section {
  margin-bottom: 70px;
}

/* タイトル */
.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* 段落 */
.section p {
  margin-bottom: 10px;
}

/* 最後の一文 */
.closing {
  margin-top: 20px;
  font-weight: 500;
}

/* 理念 */
.vision-text {
  text-align: center;
  font-size: 18px;
  line-height: 2;
}

/* 会社概要 */
.profile-list {
  display: grid;
  grid-template-columns: 150px 1fr;
  row-gap: 10px;
}

.profile-list dt {
  font-weight: 600;
}

.profile-list dd {
  margin: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {

  .company-page {
    padding: 60px 20px;
  }

  .section {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .profile-list {
    grid-template-columns: 1fr;
  }

  .profile-list dt {
    margin-top: 20px;
  }

  .vision-text {
    font-size: 16px;
  }
}


