/* ===================================
   companies-layout.css
   レイアウト専用スタイル
   =================================== */

/* 
 * 注意: 2カラムレイアウトはcompanies-main.cssで定義
 * このファイルは補助的なスタイルのみ
 */

/* パンくずナビゲーション */
.breadcrumbs {
  padding: 10px 20px;
  margin-bottom: 0;
  font-size: 12px;
  color: #666;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumbs a {
  color: #1a3a5c;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* メインコンテンツ配置 */
main {
  width: 100%;
  box-sizing: border-box;
}

/* テーブル配置 */
.company-table {
  width: 100%;
  display: table;
  table-layout: fixed;
}

.company-table th:nth-child(1) {
  width: 140px;
}

.company-table th:nth-child(2) {
  width: auto;
}

/* 検索結果表示エリア */
.no-results {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
}

/* 固定要素の配置調整 */
.back-to-top {
  position: fixed;
  z-index: 999;
}

/* 広告コンテナ配置 */
.ad-container {
  width: 100%;
  max-width: 100%;
  margin: 30px auto;
  text-align: center;
}
