/* /css/vehicle-db.css */

/* 共通レイアウト */
#tab-db .vdb-app {
  margin-top: 10px;
  font-size: 14px;
}

#tab-db .vdb-title {
  font-size: 20px;
  margin: 0 0 4px;
}

#tab-db .vdb-lead {
  margin: 0 0 10px;
  font-size: 13px;
  color: #555;
}

/* フィルタ */
#tab-db .vdb-filter {
  padding: 10px;
  background: #f8f8f8;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 8px;
}

#tab-db .vdb-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

#tab-db .vdb-filter-label {
  font-weight: 600;
  white-space: nowrap;
}

#tab-db .vdb-filter-input {
  flex: 1 1 auto;
  padding: 4px 8px;
  font-size: 14px;
}

/* ボタン */
#tab-db .vdb-filter-actions {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

#tab-db .vdb-btn {
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

#tab-db .vdb-btn-primary {
  background: #b71c1c;
  color: #fff;
  font-weight: 700;
}

#tab-db .vdb-btn-secondary {
  background: #666;
  color: #fff;
}

/* 件数＋並び替え */
#tab-db .vdb-summary-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 4px 0 6px;
}

#tab-db .vdb-count {
  font-size: 12px;
  color: #555;
}

#tab-db .vdb-sort {
  font-size: 12px;
}

#tab-db .vdb-sort-btn {
  border: 1px solid #ccc;
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  margin-left: 4px;
}

#tab-db .vdb-sort-btn.is-active {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* PCテーブル */
#tab-db .vdb-list-wrap {
  width: 100%;
  overflow-x: auto;
}

#tab-db .vdb-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

#tab-db .vdb-table th,
#tab-db .vdb-table td {
  padding: 8px 10px;
  border: 1px solid #ddd;
  text-align: left;
}

#tab-db .vdb-table th {
  background: #f5f5f5;
  font-weight: 600;
}

/* ページャー */
#tab-db .vdb-pager {
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
}
#tab-db .vdb-pager button {
  margin: 0 2px;
  padding: 2px 6px;
  font-size: 12px;
}

/* ==============================
   SP版：カード表示に変形
============================== */
@media (max-width: 768px) {

  /* フィルタコンパクト化 */
  #tab-db .vdb-filter {
    padding: 8px 10px;
  }
  #tab-db .vdb-filter-actions {
    justify-content: center;
  }
  #tab-db .vdb-btn {
    flex: 1 1 auto;
    text-align: center;
  }

  /* テーブル → カード化 */
  #tab-db .vdb-table {
    min-width: 0;
    border: none;
  }
  #tab-db .vdb-table thead {
    display: none;
  }
  #tab-db .vdb-table tr {
    display: flex;
    flex-direction: column;
    margin: 0 0 10px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
  }
  #tab-db .vdb-table td {
    display: block;
    border: none;
    padding: 5px 0;
    font-size: 14px;
  }

  /* ラベル（ヘッダ名）を上に表示 */
  #tab-db .vdb-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-bottom: 2px;
  }

  /* 非表示：ID(1)・自治体(6)・更新日(7)
     （列順：1:ID, 2:車両名, 3:運用隊名, 4:管理番号, 5:消防署, 6:自治体, 7:更新日）
  */
  #tab-db .vdb-table td:nth-child(1),
  #tab-db .vdb-table td:nth-child(6),
  #tab-db .vdb-table td:nth-child(7) {
    display: none !important;
  }

  /* 並び順：
     5: 消防署 → 1番目
     2: 車両名 → 2番目
     3: 車両隊名表記 → 3番目
     4: 管理番号 → 4番目
  */
  #tab-db .vdb-table td:nth-child(5) { order: 1; } /* 消防署 */
  #tab-db .vdb-table td:nth-child(2) { order: 2; } /* 車両名 */
  #tab-db .vdb-table td:nth-child(3) { order: 3; } /* 車両隊名表記 */
  #tab-db .vdb-table td:nth-child(4) { order: 4; } /* 管理番号 */

  /* 車両名を少し強調 */
  #tab-db .vdb-table td:nth-child(2) {
    font-size: 15px;
    font-weight: 700;
  }
}


.vehicle-actions {
  text-align: center;
  white-space: nowrap;
}

.vehicle-actions button {
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  margin: 2px;
}

.btn-detail {
  background: #1976d2;
  color: #fff;
}

.btn-photo {
  background: #d32f2f;
  color: #fff;
}
/* =========================
   車両詳細モーダル
========================= */
.vdb-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;              /* 初期は非表示 */
  align-items: center;
  justify-content: center;
  z-index: 9990;
}

.vdb-modal-overlay.is-show {
  display: flex;
}

.vdb-modal {
  background: #fff;
  border-radius: 10px;
  max-width: 520px;
  width: 90%;
  max-height: 80vh;
  padding: 16px 18px 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  position: relative;
  overflow-y: auto;
}

.vdb-modal-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}

/* 閉じるボタン（×） */
.vdb-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* 詳細内容（定義リスト） */
.vdb-detail-dl {
  margin: 0;
}

.vdb-detail-dl dt {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-top: 8px;
}

.vdb-detail-dl dd {
  margin: 2px 0 4px;
  font-size: 14px;
}

/* SP向け微調整 */
@media (max-width: 768px) {
  .vdb-modal {
    max-width: 94%;
    width: 94%;
    padding: 14px 14px 16px;
  }
}
/* =========================================
   車両詳細モーダル（PC / SP 共通）
========================================= */

/* 画面全体のオーバーレイ */
.vdb-detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;              /* 初期は非表示 */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* 表示時 */
.vdb-detail-overlay.is-show {
  display: flex;
}

/* 中央のダイアログ本体 */
.vdb-detail-dialog {
  position: relative;
  width: min(520px, 92vw);    /* PCは520px、SPは画面幅に合わせて縮む */
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* タイトル */
.vdb-detail-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* 閉じるボタン（右上の ×） */
.vdb-detail-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  color: #666;
}
.vdb-detail-close:hover {
  color: #000;
}

/* 詳細テーブル */
.vdb-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 14px;
}

.vdb-detail-table th,
.vdb-detail-table td {
  padding: 6px 8px;
  border-bottom: 1px solid #e0e0e0;
}

.vdb-detail-table th {
  width: 32%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  background: #fafafa;
}

.vdb-detail-table td {
  text-align: left;
}

/* 最終行の下線だけ消す（お好み） */
.vdb-detail-table tr:last-child th,
.vdb-detail-table tr:last-child td {
  border-bottom: none;
}

/* SP向けに少しだけ文字を大きく＆余白広め */
@media (max-width: 768px) {
  .vdb-detail-dialog {
    width: 94vw;
    padding: 14px 12px 16px;
  }
  .vdb-detail-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .vdb-detail-table {
    font-size: 13px;
  }
  .vdb-detail-table th,
  .vdb-detail-table td {
    padding: 5px 6px;
  }
}

/* =========================
   車両写真モーダル
   ========================= */
#vdbPhotoOverlay.vdb-modal-overlay {
  display: none;
}
#vdbPhotoOverlay.vdb-modal-overlay.is-show {
  display: flex;
}

.vdb-photo-modal {
  max-width: 960px;
  width: 96%;
  max-height: 90vh;
  overflow: hidden;
}

.vdb-photo-body {
  margin-top: 8px;
}

.vdb-photo-loading,
.vdb-photo-error,
.vdb-photo-empty {
  padding: 20px 10px;
  text-align: center;
  font-size: 14px;
}

.vdb-photo-main {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.vdb-photo-main-inner {
  text-align: center;
  max-height: 60vh;
}

.vdb-photo-main-inner img {
  max-width: 100%;
  max-height: 60vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.vdb-photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  width: 34px;
  height: 60px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vdb-photo-nav-prev {
  left: 4px;
}
.vdb-photo-nav-next {
  right: 4px;
}

.vdb-photo-meta {
  margin-top: 8px;
  font-size: 13px;
}

.vdb-photo-caption {
  font-weight: 600;
}

.vdb-photo-meta-bottom {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vdb-photo-provider {
  font-size: 12px;
}

.vdb-photo-provider-link {
  color: #1976d2;
  text-decoration: none;
}
.vdb-photo-provider-link:hover {
  text-decoration: underline;
}

.vdb-photo-count {
  font-size: 12px;
  color: #666;
}

.vdb-photo-thumbs {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.vdb-photo-thumb {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.6;
}
.vdb-photo-thumb.is-active {
  opacity: 1;
  outline: 2px solid #ff9800;
}

.vdb-photo-thumb img {
  display: block;
  width: 72px;
  height: 48px;
  object-fit: cover;
}

/* SP向け調整 */
@media (max-width: 768px) {
  .vdb-photo-modal {
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
  }
  .vdb-photo-main-inner {
    max-height: 52vh;
  }
  .vdb-photo-main-inner img {
    max-height: 52vh;
  }
  .vdb-photo-thumb img {
    width: 64px;
    height: 44px;
  }
}

/* =========================
   写真募集中バナー
   ========================= */
.vdb-photo-request-box {
  padding: 18px 14px;
  text-align: center;
  background: #fffbe6;
  border: 1px dashed #ff9800;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.vdb-photo-request-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.vdb-photo-request-text {
  margin-bottom: 10px;
}

.vdb-photo-request-link {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: #ff9800;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.vdb-photo-request-link:hover {
  opacity: 0.9;
}

/* 写真バッジ */
.vdb-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.4;
  white-space: nowrap;
}

.vdb-badge-photo {
  background: #e53935;  /* 赤系 */
  color: #fff;
}

.vdb-badge-photo-none {
  background: #fff3cd;  /* 薄い黄色 */
  color: #8a6d3b;
  border: 1px solid #ffeeba;
}
.vdb-btn-request {
  display: inline-block;
  padding: 4px 10px;
  font-size: 13px;
  color: #fff;
  background: #ff9800;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 6px;
}
.vdb-btn-request:hover {
  opacity: 0.9;
}

/* =========================
   車両DB 操作ボタン
   ========================= */
/* 共通スタイル（すでにあればOK） */
.vehicle-actions {
  white-space: nowrap;
}

.vdb-btn-detail,
.vdb-btn-photo,
.vdb-btn-request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 4px 10px;
  margin: 2px 3px 2px 0;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
}

/* ★ 詳細ボタン：より強い指定（親要素付き） */
.vehicle-actions .vdb-btn-detail {
  background-color: #ffffff !important;
  color: #555555 !important;
  border-color: #cccccc !important;
}

.vehicle-actions .vdb-btn-detail:hover {
  background-color: #f5f5f5 !important;
  border-color: #bdbdbd !important;
}

/* 写真ボタン（参考：こちらは効いているはず） */
.vehicle-actions .vdb-btn-photo {
  background-color: #e53935;
  color: #ffffff;
  border-color: #d32f2f;
}
.vehicle-actions .vdb-btn-photo:hover {
  background-color: #d32f2f;
  border-color: #c62828;
}

/* 募集ボタン */
.vehicle-actions .vdb-btn-request {
  background-color: #9609ca;
  color: #ffffff;
  border-color: #9609ca;
}
.vehicle-actions .vdb-btn-request:hover {
  background-color: #9609ca;
  border-color: #9609ca;
}

/* 絞り込み行のボタン＋件数 */
.vdb-filter-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  gap: 8px;
}

.vdb-filter-actions-left {
  display: flex;
  gap: 6px;
}

.vdb-filter-actions-right {
  margin-left: auto;
}

.vdb-count {
  font-size: 13px;
  color: #666;
}

/* SP時は縦積み */
@media (max-width: 768px) {
  .vdb-filter-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .vdb-filter-actions-right {
    margin-left: 0;
  }
}
/* ================================
   SP：カードをさらにコンパクト化
================================ */
@media (max-width: 768px) {

  /* ▼ カード全体（1行が短くなる） */
  #tab-db .vdb-table tr {
    padding: 8px 10px;      /* ← 10px → 8px */
    margin-bottom: 6px;     /* カード間の隙間を圧縮 */
    border-radius: 6px;
  }

  /* ▼ 各項目の行間・フォント縮小 */
  #tab-db .vdb-table td {
    padding: 3px 0;         /* ← 5px → 3px */
    font-size: 13px;        /* ← 14px → 13px */
    line-height: 1.35;      /* 行間を詰める */
  }

  /* ▼ ラベル（data-label）の文字サイズ縮小 */
  #tab-db .vdb-table td::before {
    font-size: 10px;        /* ← 11px → 10px */
    margin-bottom: 1px;
  }

  /* ▼ 車両名（目立たせつつコンパクトに） */
  #tab-db .vdb-table td:nth-child(2) {
    font-size: 14px;        /* ← 15px → 14px */
    font-weight: 700;
    margin-bottom: 2px;
  }

  /* ▼ ボタンを小さめに */
  .vehicle-actions .vdb-btn-detail,
  .vehicle-actions .vdb-btn-photo,
  .vehicle-actions .vdb-btn-request {
    min-width: 58px;        /* ← 68px → 58px */
    padding: 3px 6px;       /* ← 4px 10px → 3px 6px */
    font-size: 12px;        /* ← 13px → 12px */
    border-radius: 12px;
    margin: 1px 2px;
  }

  /* ▼ フィルタ部の圧縮 */
  #tab-db .vdb-filter {
    padding: 6px 8px;       /* ← 8px 10px → 6px 8px */
  }
  #tab-db .vdb-filter-input {
    padding: 3px 6px;       /* 入力欄も少し圧縮 */
    font-size: 13px;
  }

  /* ▼ 件数と並びの行もコンパクト */
  #tab-db .vdb-summary-row {
    margin: 2px 0 4px;
  }
  #tab-db .vdb-count,
  #tab-db .vdb-sort,
  #tab-db .vdb-sort-btn {
    font-size: 11px;
  }

}

/* ================================
   SP：カードと操作ボタンをコンパクトに
================================ */
@media (max-width: 768px) {

  /* ▼ カード全体を少し薄くする */
  #tab-db .vdb-table tr {
    padding: 6px 8px;       /* 10,12 → 6,8 */
    margin-bottom: 6px;     /* カード間の余白も少しだけ */
    border-radius: 6px;
  }

  /* ▼ 各行の余白＆文字サイズを詰める */
  #tab-db .vdb-table td {
    padding: 2px 0;         /* 5px → 2px */
    font-size: 13px;        /* 14px → 13px */
    line-height: 1.35;
  }

  /* ラベル（data-label）の文字も小さく＆間隔短く */
  #tab-db .vdb-table td::before {
    font-size: 10px;        /* 11px → 10px */
    margin-bottom: 1px;
  }

  /* 車両名だけ少し強調（でも控えめに） */
  #tab-db .vdb-table td:nth-child(2) {
    font-size: 14px;        /* 15px → 14px */
    font-weight: 700;
    margin-bottom: 2px;
  }

  /* ▼ 操作セル：ラベルを消して、ボタンを横並びに */
  #tab-db .vdb-table td:has(.vehicle-actions)::before {
    display: none;          /* 「操作」の文字を非表示 */
  }
  #tab-db .vdb-table td:has(.vehicle-actions) {
    padding-top: 0;
    padding-bottom: 4px;
  }

  .vehicle-actions {
    display: flex;
    justify-content: flex-start;
    gap: 6px;               /* ボタン間のすき間 */
  }

  .vehicle-actions .vdb-btn-detail,
  .vehicle-actions .vdb-btn-photo,
  .vehicle-actions .vdb-btn-request {
    min-width: 60px;        /* 68px → 60px */
    padding: 3px 6px;       /* 4px 10px → 3px 6px */
    font-size: 12px;        /* 13px → 12px */
    border-radius: 14px;
    margin: 0;
  }

}
/* =========================================
   SP：すべての項目を「項目名 + 値」横並びに統一
========================================= */
@media (max-width: 768px) {

  /* ▼ すべての td を横並び（flex-row）にする */
  #tab-db .vdb-table td {
    display: flex;
    flex-direction: row;     /* ← 縦並び → 横並び */
    align-items: center;     
    gap: 6px;                /* ラベルと値の間 */
    padding: 3px 0 !important;
  }

  /* ▼ ラベル（data-label）も inline 化 */
  #tab-db .vdb-table td::before {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
  }

  /* ▼ 不要列（1:ID, 6:自治体, 7:更新日）は非表示のまま */
  #tab-db .vdb-table td:nth-child(1),
  #tab-db .vdb-table td:nth-child(6),
  #tab-db .vdb-table td:nth-child(7) {
    display: none !important;
  }

  /* ▼ 車両名だけ少し強調（横並びでもわかりやすく） */
  #tab-db .vdb-table td:nth-child(2) {
    font-size: 14px;
    font-weight: 700;
  }

  /* ▼ 操作ボタン行（詳細・写真）は縦に並べない */
  #tab-db .vdb-table td:has(.vehicle-actions)::before {
    display: none;  /* ラベル非表示 */
  }
  .vehicle-actions {
    display: flex;
    flex-direction: row;
    gap: 6px;
  }
  .vehicle-actions .vdb-btn-detail,
  .vehicle-actions .vdb-btn-photo {
    min-width: 60px;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 14px;
  }
}

/* =====================================================
   SP/PC 共通：ボタン文言とカラー変更
   詳細 → 詳細情報（青ボタン）
   写真 → 写真表示（赤ボタン）
===================================================== */

/* ▼ 詳細 → 詳細情報（青ボタン） */
.vehicle-actions .vdb-btn-detail {
  background-color: #1976d2 !important;   /* 青 */
  color: #ffffff !important;
  border-color: #1976d2 !important;
}
.vehicle-actions .vdb-btn-detail:hover {
  background-color: #115aa3 !important;   /* 濃い青 */
  border-color: #115aa3 !important;
}

/* ▼ 写真 → 写真表示（赤ボタンのまま） */
.vehicle-actions .vdb-btn-photo {
  background-color: #d32f2f !important;
  color: #ffffff !important;
  border-color: #c62828 !important;
}
.vehicle-actions .vdb-btn-photo:hover {
  background-color: #b71c1c !important;
  border-color: #b71c1c !important;
}
/* --- SP版：DBタブのボタンは横並びに上書き --- */
@media (max-width: 768px) {
  /* DBタブ内だけは行方向にしておく */
  #tab-db .vdb-filter-actions {
    flex-direction: row;
    align-items: center;
  }

  #tab-db .vdb-filter-actions-left {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
}
/* --- SP版：3行目（消防本部＋車種）は縦並び --- */
@media (max-width: 768px) {
  /* 3番目の行だけ縦方向レイアウトにする */
  #tab-db .vdb-filter-row:nth-of-type(3) {
    flex-direction: column;
    align-items: stretch;
  }

  #tab-db .vdb-filter-row:nth-of-type(3) .vdb-filter-label {
    margin-bottom: 2px;
  }

  #tab-db .vdb-filter-row:nth-of-type(3) select {
    width: 100%;
    margin-bottom: 4px;
  }
}
/* ============================
   SP版：消防本部／車種は横並び
============================ */
@media (max-width: 768px) {

  /* 3行目（消防本部＋車種） */
  #tab-db .vdb-filter-row:nth-of-type(3) {
    display: flex;
    flex-direction: column; /* 行全体は縦 */
    gap: 8px;
  }

  /* ラベルとセレクトボックスを横並び */
  #tab-db .vdb-filter-row:nth-of-type(3) .vdb-filter-field {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #tab-db .vdb-filter-row:nth-of-type(3) .vdb-filter-label {
    margin: 0; /* ラベル余白調整 */
    white-space: nowrap;
  }

  #tab-db .vdb-filter-row:nth-of-type(3) select {
    flex: 1;          /* 横幅いっぱい */
    min-width: 0;     /* はみ出し防止 */
  }
}

/* ▼ 共通（SPでは今まで通り） */
.vdb-filter-row {
  margin-bottom: 6px;
}

/* ▼ PC表示のときだけレイアウト変更 */
@media (min-width: 768px) {

  /* 都道府県＋自治体 は横並び */
  .vdb-filter-row--cols2 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .vdb-filter-row--cols2 .vdb-filter-label {
    white-space: nowrap;
    margin-right: 2px;
  }
  .vdb-filter-row--cols2 .vdb-filter-input {
    width: auto;          /* 100% を上書き */
    min-width: 120px;     /* 文字数に合わせつつ、あまり小さくなりすぎないよう保険 */
  }

  /* 消防本部＋車種 は縦並び */
  .vdb-filter-row--stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .vdb-filter-row--stack > div {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .vdb-filter-row--stack .vdb-filter-label {
    white-space: nowrap;
  }
  .vdb-filter-row--stack .vdb-filter-input {
    width: auto;         /* 100% を上書き */
    min-width: 140px;    /* テキスト長に合わせつつ少し余裕 */
  }
}

/* ===== PC（幅768以上）の調整 ===== */
@media (min-width: 768px) {

  /* 全体を中央寄せ・最大幅を固定 */
  .vdb-filter {
    max-width: 900px;
    margin: 0 auto;
  }

  /* キーワード行 */
  #vdbKeyword {
    width: 400px;        /* ← 長すぎを解消（必要なら350〜450で調整可） */
    max-width: 100%;
  }

  /* 都道府県＋自治体（横並び） */
  .vdb-filter-row--cols2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 10px;
  }

  /* セレクトの幅を自動＋最小幅だけ確保 */
  .vdb-filter-row--cols2 select {
    width: auto;
    min-width: 130px;    /* ← ちょうど良い。短い都道府県にも合う */
    padding-right: 24px; /* プルダウン矢印の余白 */
  }

  /* ラベルの見た目調整 */
  .vdb-filter-label {
    white-space: nowrap;
  }

  /* 消防本部＋車種（縦並び・中央寄せ） */
  .vdb-filter-row--stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
  }

  .vdb-filter-row--stack div {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .vdb-filter-row--stack select {
    width: auto;
    min-width: 160px;    /* ← 文字が長い場合があるので少し広め */
    padding-right: 24px;
  }

  /* ボタン行 */
  .vdb-filter-actions {
    display: flex;
    gap: 12px;
  }
}
/* ===== 絞り込みフォーム 基本 ===== */
.vdb-filter {
  margin-bottom: 12px;
}

.vdb-filter-row {
  margin-bottom: 6px;
}

.vdb-filter-label {
  font-size: 13px;
  margin-right: 4px;
  white-space: nowrap;
}

.vdb-filter-input {
  /* SPでは全幅でOK（既存の width:100% が効いていても大丈夫） */
}

/* ラベル＋セレクトをまとめる共通ラッパー */
.vdb-filter-field {
  margin-bottom: 4px;
}

/* ボタン行 */
.vdb-filter-actions {
  margin-top: 8px;
}

/* ===== PCレイアウト調整（768px以上） ===== */
@media (min-width: 768px) {

  /* 絞り込みフォーム全体を中央寄せ・横幅を抑える */
  .vdb-filter {
    max-width: 900px;
    margin: 0 auto 12px;
  }

  /* キーワード行：ラベル＋入力を横並び、入力幅を固定 */
  .vdb-filter-row--keyword {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #vdbKeyword {
    width: 420px !important;   /* ← 長すぎを解消 */
    max-width: 100%;
  }

  /* 都道府県＋自治体：横並び2カラム */
  .vdb-filter-row--cols2 {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .vdb-filter-row--cols2 .vdb-filter-field {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* セレクト幅：文字数＋ちょい余裕に */
  #filterPref,
  #filterMunicipality {
    width: auto !important;
    min-width: 130px;
    padding-right: 24px;
  }

  /* 消防本部・車種：上下2行 */
  .vdb-filter-row--stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 4px;
    margin-bottom: 10px;
  }

  .vdb-filter-row--stack .vdb-filter-field {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  #filterDept,
  #filterType {
    width: auto !important;
    min-width: 160px;
    padding-right: 24px;
  }

  /* ボタン行も横並びで少し余裕 */
  .vdb-filter-actions {
    display: flex;
    gap: 12px;
  }
}

@media (min-width: 768px) {

  /* ▼ キーワード行：左寄せ */
  .vdb-filter-row--keyword {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* ← 左寄せ */
    gap: 8px;
  }

  /* キーワードの幅を短く */
  #vdbKeyword {
    width: 260px !important;   /* ← 必要なら 200〜320px で調整可 */
    max-width: 100%;
  }

  /* ▼ 都道府県＋自治体（横並び）のままなので変更なし */
  /* ------------------------------ */

  /* ▼ 消防本部＋車種：左寄せに統一 */
  .vdb-filter-row--stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* ← 左揃え */
    gap: 6px;
    margin-top: 4px;
    margin-bottom: 10px;
  }

  .vdb-filter-row--stack .vdb-filter-field {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* ← 左揃え */
    gap: 6px;
  }

  /* セレクトの幅をコンパクトに */
  #filterDept,
  #filterType {
    width: auto !important;
    min-width: 150px;       /* ← 日本語の長めの文字にも対応 */
    padding-right: 24px;
  }
}
/* ▼ PC版：絞り込みフォームの幅＆位置を調整 */
@media (min-width: 768px) {

  /* すべての入力・セレクトを「伸びない」ようにする */
  #tab-db .vdb-filter-input {
    flex: 0 0 auto;          /* ← これが一番重要 */
  }

  /* キーワード行：左寄せ＋短め */
  #tab-db .vdb-filter-row--keyword {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }
  #tab-db #vdbKeyword {
    width: 260px !important; /* 好みで 220〜300px に調整OK */
    max-width: 100%;
  }

  /* 都道府県・自治体：横並び＋短め */
  #tab-db .vdb-filter-row--cols2 {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  #tab-db .vdb-filter-row--cols2 .vdb-filter-input {
    width: auto;
    min-width: 130px;
  }

  /* 消防本部・車種：縦並び・左寄せ */
  #tab-db .vdb-filter-row--stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  #tab-db .vdb-filter-row--stack .vdb-filter-field {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
  }
  #tab-db #filterDept,
  #tab-db #filterType {
    width: auto;
    min-width: 150px;
  }
}
.vdb-filter-wrap {
  margin-bottom: 16px;
}

/* SPは縦並び */
.vdb-count-box {
  margin-top: 12px;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
}
.vdb-count-label {
  font-size: 12px;
  color: #666;
}
.vdb-count-short {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
  color: #e60012;
}

/* PCで横並び */
@media (min-width: 768px) {
  .vdb-filter-wrap {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
  .vdb-filter-wrap .vdb-filter {
    flex: 1 1 auto;
  }
  .vdb-count-box {
    flex: 0 0 190px;
    margin-top: 0;
  }
}
/* 消防本部＋消防署行（デフォルトは縦並び：SP） */
.vdb-filter-row--dept-station .vdb-filter-field {
  margin-bottom: 6px;
}

/* PC では横並びにする */
@media (min-width: 768px) {
  .vdb-filter-row--dept-station {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .vdb-filter-row--dept-station .vdb-filter-field {
    margin-bottom: 0;
  }
  /* 幅はテキスト長に合わせてやや短めに */
  #filterDept,
  #filterStation {
    max-width: 220px;
  }
}
