.company-info {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--themegray);
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.info-item {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.info-label {
  flex: 0 0 150px;
  font-weight: bold;
  color: #444;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .info-item {
    flex-direction: column;
  }

  .info-label {
    flex: none; /* ← 固定幅を解除！ */
    width: 100%; /* ← 横幅を100%にして自然に表示 */
    margin-bottom: 8px;
  }
}


.info-content {
  flex: 1;
  color: #555;
  line-height: 1.7;
}

.info-content p {
  margin: 4px 0;
}

@media (max-width: 600px) {
  .info-item {
    flex-direction: column;
  }
  .info-label {
    margin-bottom: 8px;
  }
}
