/* about.php 専用スタイル
   共通スタイル: css/common.css を先に読み込むこと */

.page-content {
  padding-top: 48px;
}

.about-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 40px 0 30px;
  color: #222;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.company-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 60px;
}

.company-info {
  background: #ffffff;
  padding: 40px 50px;
  width: 80%;
  max-width: 800px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  position: relative;
  z-index: 1;
}

.info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.info-row .label {
  font-weight: 700;
  color: #444;
  width: 30%;
}

.info-row .value {
  width: 68%;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .company-info {
    padding: 30px 25px;
  }

  .info-row {
    flex-direction: column;
  }

  .info-row .label {
    width: 100%;
    margin-bottom: 5px;
  }

  .info-row .value {
    width: 100%;
  }
}
