/* /_tpl/listing.css — 全社一覧セクション + 共通バッジスタイル */

/* ─── trust-badges / badge-ico (市区×業種ページの surgical_update モード対応) ─── */
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.4rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 2px 8px; border-radius: 11px; font-size: 0.78rem;
  white-space: nowrap;
}
.badge-ico { width: 14px; height: 14px; flex-shrink: 0; }
.badge-award      { background: #fff4d6; color: #92400e; border: 1px solid #fcd34d; }
.badge-keishin    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }
.badge-clean      { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.badge-gbiz-comm  { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.badge-gbiz-proc  { background: #e9d5ff; color: #6b21a8; border: 1px solid #c084fc; }



.company-listing {
  max-width: 1100px;
  margin: 48px auto 32px;
  padding: 32px 20px;
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: 8px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.company-listing__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a2540;
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0a2540;
}

.company-listing__meta {
  font-size: 0.9rem;
  color: #4a5568;
  margin: 0 0 24px;
}
.company-listing__meta strong {
  color: #0a2540;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ─── 50 音タブ ─── */
.company-listing__alpha-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 24px;
  padding: 12px;
  background: #f7f9fb;
  border-radius: 6px;
}

.alpha-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2d3748;
  background: #fff;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s;
}
.alpha-tab:hover {
  background: #edf2f7;
  border-color: #0a2540;
}
.alpha-tab.is-active {
  color: #fff;
  background: #0a2540;
  border-color: #0a2540;
  font-weight: 700;
}

/* ─── 社一覧 ─── */
.company-listing__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e3e6ea;
}
.company-listing__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1.4fr);
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  border-bottom: 1px solid #e3e6ea;
  font-size: 0.95rem;
}

.company-listing__name {
  font-weight: 600;
  color: #0a2540;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.company-listing__name:hover {
  color: #2c5282;
  text-decoration: underline;
}
.company-listing__name--unlinked {
  color: #4a5568;
  font-weight: 500;
  cursor: default;
}

.company-listing__city {
  font-size: 0.85rem;
  color: #718096;
  white-space: nowrap;
}

.company-listing__permits {
  font-size: 0.85rem;
  color: #4a5568;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.company-listing__permits-more {
  color: #a0aec0;
  margin-left: 4px;
}

.company-listing__empty {
  padding: 24px;
  text-align: center;
  color: #718096;
}

/* ─── ページャー ─── */
.company-listing__pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid #e3e6ea;
}
.company-listing__pager a,
.company-listing__pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 0.95rem;
  color: #0a2540;
  background: #fff;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s;
}
.company-listing__pager a:hover {
  background: #edf2f7;
  border-color: #0a2540;
}
.company-listing__pager .pager__num--current {
  color: #fff;
  background: #0a2540;
  border-color: #0a2540;
  font-weight: 700;
}
.company-listing__pager .pager__gap {
  border: none;
  background: transparent;
  min-width: 24px;
}
.pager__prev, .pager__next {
  font-weight: 500;
}

/* ─── レスポンシブ ─── */
@media (max-width: 720px) {
  .company-listing {
    padding: 20px 12px;
    margin: 24px auto;
  }
  .company-listing__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .company-listing__city,
  .company-listing__permits {
    font-size: 0.8rem;
  }
  .alpha-tab {
    padding: 6px 10px;
    min-width: 36px;
  }
}
