/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */
/* section-label: page-eyebrowと同スタイル、カラーのみgoldに */
.section-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; letter-spacing: var(--ls-label); color: var(--gold);
  margin-bottom: 18px; text-transform: uppercase;
  font-weight: 700; text-decoration: underline; text-underline-offset: 4px;
}
.about-section, .message-section, .philosophy-section {
  padding: 100px 8%;
}
.message-section {
  background: rgba(30,27,24,0.03);
}
.about-inner {
  max-width: 860px; margin: 0 auto;
}
/* 会社情報テーブル */
.company-table {
  width: 100%; border-collapse: collapse; margin-top: 8px;
}
.company-table th, .company-table td {
  padding: 20px 24px; border-bottom: 1px solid var(--navy-08);
  font-family: 'Noto Serif JP', serif; font-size: 15px;
  line-height: var(--lh-body); vertical-align: top;
  color: var(--navy);
}
.company-table th {
  width: 160px; font-weight: 600; color: var(--gold);
  white-space: nowrap;
}
.company-table td { font-weight: 400; overflow-wrap: break-word; word-break: break-word; }
.company-table tr:first-child th,
.company-table tr:first-child td { border-top: 1px solid var(--navy-08); }
/* 代表メッセージ */
.message-body p {
  font-family: 'Noto Serif JP', serif; font-size: 15px;
  line-height: var(--lh-body); color: var(--navy);
  margin-bottom: 24px; font-weight: 400;
}
.message-body p:first-child {
  font-size: clamp(18px, 2vw, 22px); font-weight: 600; color: var(--gold);
}
/* アクセスマップ */
.access-map-wrap {
  margin-top: 36px; border: 1px solid var(--gold-light);
  border-radius: 2px; overflow: hidden;
}
.access-info {
  margin-top: 20px; margin-bottom: 8px;
}
.access-label {
  font-family: 'Noto Serif JP', serif; font-size: 13px;
  color: var(--gold); letter-spacing: 0.1em;
  font-weight: 600; margin-bottom: 10px;
}
.access-list {
  list-style: none; padding: 0; margin: 0;
}
.access-list li {
  font-family: 'Noto Serif JP', serif; font-size: 13px;
  color: var(--navy); line-height: 1.9;
  letter-spacing: 0.04em; padding-left: 1em; position: relative;
}
.access-list li::before {
  content: '―'; position: absolute; left: 0;
  color: var(--gold); font-size: 11px; top: 4px;
}

.message-body p.message-sign {
  text-align: right; font-size: 15px;
  color: var(--navy); font-weight: 600;
  margin-top: 40px;
}
/* 経営理念 */
.philosophy-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.phil-item {
  border-top: 2px solid var(--gold); padding-top: 24px;
}
.phil-word {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.5vw, 24px); font-weight: 700;
  color: var(--gold); margin-bottom: 12px; letter-spacing: 0.1em;
}
.phil-desc {
  font-family: 'Noto Serif JP', serif; font-size: 13px;
  line-height: var(--lh-body); color: var(--navy); font-weight: 400;
}
@media (max-width: 768px) {
  .philosophy-pillars { grid-template-columns: repeat(2, 1fr); }
  .company-table th { width: 100px; }
}
@media (max-width: 480px) {
  .philosophy-pillars { grid-template-columns: 1fr 1fr; }
  .company-table { display: block; }
  .company-table th, .company-table td { display: block; width: 100%; }
}

/* ===== RELATED LINK / MAP IFRAME (C-14: インラインstyle CSS化) ===== */
.related-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.map-iframe { border: 0; display: block; }
