/* ======================================================
   KENNDO — page-company.css
   ====================================================== */

/* ---- 会社概要テーブル ---- */
.co {
  width: 100%; border-collapse: collapse;
  box-shadow: var(--shadow-sm); border-radius: var(--radius);
  overflow: hidden; background: #fff;
}
.co tr { border-bottom: 1px solid var(--line); }
.co tr:last-child { border-bottom: none; }
.co th {
  width: 200px; background: var(--bg-alt);
  padding: 16px 24px; text-align: left;
  font-size: 14px; font-weight: 700; color: var(--navy);
  vertical-align: top;
}
.co td {
  padding: 16px 24px;
  font-size: 14px; color: #3b4651; line-height: 1.85;
}

/* ---- 主要取引先リスト ---- */
.cl2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.cl2 li {
  background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 8px; padding: 12px 18px;
  font-size: 14px; color: var(--navy); font-weight: 500;
  transition: box-shadow var(--transition);
}
.cl2 li:hover { box-shadow: var(--shadow-sm); }

/* ---- 沿革 ---- */
.tl {
  display: grid; gap: 0;
  position: relative; padding-left: 24px;
}
.tl::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 3px; background: linear-gradient(to bottom, var(--accent), var(--navy));
  border-radius: 2px;
}
.tl > div {
  position: relative; padding: 14px 20px;
  font-size: 14px; color: #3b4651; line-height: 1.7;
  border-bottom: 1px dashed var(--line);
}
.tl > div:last-child { border-bottom: none; }
.tl > div::before {
  content: ''; position: absolute; left: -30px; top: 22px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.tl b { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--navy); font-weight: 700; margin-right: 16px; }

/* ---- マップ ---- */
.frame iframe { width: 100%; border-radius: var(--radius); border: none; }

/* Localnav */
.localnav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.localnav > a, .localnav > span {
  border: 1px solid #9fb0c1; border-radius: 10px;
  padding: 16px 14px; text-align: center; display: block;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.localnav > a:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.localnav > span { border-color: var(--navy); background: var(--navy); }

@media (max-width: 768px) {
  .cl2 { grid-template-columns: 1fr; }
  .co th { width: 140px; padding: 12px 16px; }
  .co td { padding: 12px 16px; }
  .localnav { grid-template-columns: repeat(2, 1fr); }
  section > .wrap > div[style*="grid"] { grid-template-columns: 1fr !important; }
}
