/* ============================================================
   company.css — 会社情報ページ固有スタイル
   ============================================================ */

.co-section { background: var(--color-white); padding: 70px 0 80px; }

.co-head { text-align: center; margin-bottom: 30px; }

.co-tagline {
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 6px;
  margin-top: 30px;
}
.co-lead {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-dark);
  margin-top: 18px;
}

.co-inner { width: 760px; max-width: calc(100% - 40px); margin: 0 auto; }

/* セクション見出し（両側に細い線） */
.co-block-title {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin: 60px 0 26px;
}
.co-block-title::before,
.co-block-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #e4e4e4;
}
.co-block-title span {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text-dark);
}

/* 会社概要テーブル */
.co-table { width: 100%; border-collapse: collapse; }
.co-table th,
.co-table td {
  text-align: left;
  vertical-align: top;
  padding: 18px 8px;
  border-bottom: 1px solid #ededed;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-dark);
}
.co-table th { width: 150px; font-weight: 700; white-space: nowrap; }
.co-table td { font-weight: 400; }

/* アクセス（マップ） */
.co-map-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.co-map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .co-section { padding: 30px 0 56px; }
  .co-tagline { font-size: 26px; letter-spacing: 5px; line-height: 1.5; }
  .co-lead { font-size: 16px; line-height: 1.4; }
  .co-block-title { margin: 40px 0 20px; }
  .co-block-title span { font-size: 23px; }
  .co-table th { width: 110px; font-size: 16px; }
  .co-table td { font-size: 16px; }
}
