/* 車両一覧ページ（固定ページ slug: search）— Figma 713-2018 準拠 */

.vehicleListPage__srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.exhibitorHero {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.exhibitorHero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.exhibitorHero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.exhibitorHero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.exhibitorHero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 220px;
  padding: 36px var(--sp-pad-x, 16px) 40px;
  text-align: center;
}

.exhibitorHero__title {
  margin: 0;
  color: #ffffff;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.exhibitorHero__en {
  margin: 12px 0 0;
  color: #ffffff;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.vehicleListPage__heroEn {
  margin-top: 8px;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

@media (min-width: 541px) {
  .exhibitorHero {
    height: 240px;
    min-height: 240px;
  }

  .exhibitorHero__inner {
    min-height: 100%;
    height: 100%;
    padding: 20px 24px 24px;
  }
}

@media (min-width: 951px) {
  .exhibitorHero__inner {
    padding-left: 7%;
    padding-right: 7%;
  }
}

@media (max-width: 540px) {
  .exhibitorHero__en {
    margin-top: 8px;
  }
}

/* メイン — SP: Figma 713-2344。下部固定ドック＋FAB 用の下余白は --vehicle-filter-dock-h で同期 */
.vehicleListPage {
  box-sizing: border-box;
  width: 100%;
  padding: 24px max(20px, var(--sp-pad-x, 20px)) 96px;
  background-color: #f5f6fa;
}

@media (max-width: 950px) {
  .vehicleListPage {
    /* パネル最大高（safe area 考慮）— 旧ドック用変数を流用 */
    --vehicle-filter-dock-h: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    /* 閉じた状態（713-2344）：FAB のみ — FAB の bottom と同期（--vehicle-filter-fab-bottom） */
    --vehicle-filter-fab-bottom: max(14px, env(safe-area-inset-bottom, 0px));
    /* 一覧末尾と FAB の兼ね合い（以前より一段控えめ） */
    padding-bottom: max(
      48px,
      calc((56px + 24px + var(--vehicle-filter-fab-bottom)) / 4)
    );
  }

  .vehicleListPage--filterOpen {
    /* 全面オーバーレイのため大きな下余白は不要 */
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

/* base の spFavGuideFab（下帯）＋ spTicketFab の上に FAB を置く（540px 以下のみ追従 UI が出る） */
@media (max-width: 540px) {
  .vehicleListPage {
    --vehicle-filter-fab-bottom: calc(
      76px + min(26vw, 96px) + 8px + env(safe-area-inset-bottom, 0px)
    );
    padding-bottom: max(
      48px,
      calc((56px + 24px + var(--vehicle-filter-fab-bottom)) / 4)
    );
  }
}

@media (min-width: 541px) {
  .vehicleListPage {
    padding-top: 32px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (min-width: 951px) {
  .vehicleListPage {
    padding: 40px 40px 80px;
  }
}

/* 絞り込み — PC: Figma 713-2113 / 狭い幅: 713-2441 系（縦積み・左寄せ） */
#vehicleListFilter {
  scroll-margin-top: max(16px, env(safe-area-inset-top, 0px));
}

@media (max-width: 540px) {
  #vehicleListFilter {
    scroll-margin-top: max(88px, env(safe-area-inset-top, 0px));
  }
}

@media (max-width: 950px) {
  html.vehicleListFilter-noScroll {
    overflow: hidden;
    height: 100%;
  }

  html.vehicleListFilter-noScroll body {
    overflow: hidden;
  }
}

/* SP 開閉：閉＝713-2344 / 開＝713-2441（オーバーレイ） */
.vehicleListFilterBackdrop {
  display: none;
}

@media (max-width: 950px) {
  .vehicleListFilterBackdrop {
    display: block;
    position: fixed;
    inset: 0;
    /* base の追従チケット(999)・お気に入り帯(998)・絞り込みFAB(1001)より手前 */
    z-index: 1010;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .vehicleListPage--filterOpen .vehicleListFilterBackdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vehicleListFilterBackdrop,
  .vehicleListFilter {
    transition: none !important;
  }
}

.vehicleListFilter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  max-width: 970px;
  margin: 0 auto 40px;
  padding: 32px;
  border-radius: 10px;
  background-color: #d8dbe5;
}

@media (max-width: 950px) {
  /* Figma 713-2522 — SP 絞り込みシート：1カラム・見出し中央・高さは safe area 内に収める */
  .vehicleListFilter__vsep {
    display: none !important;
  }

  /* 閉：画面外 / 開：下シート */
  .vehicleListFilter {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1011;
    display: flex;
    flex-direction: column;
    /* Figma 713-2522: スクロールエリアとフッターボタンの間 */
    gap: 24px;
    align-items: stretch;
    box-sizing: border-box;
    max-width: none;
    width: 100%;
    max-height: var(--vehicle-filter-dock-h, calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
    height: auto;
    margin: 0;
    /* Figma 713-2522: 下パディング 40px + ホームインジケータ */
    padding: max(16px, env(safe-area-inset-top, 0px)) max(20px, var(--sp-pad-x, 16px))
      calc(40px + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.14);
    transform: translateY(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  .vehicleListPage--filterOpen .vehicleListFilter {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .vehicleListFilter__bar {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* Figma 713-2522: 各ブロック（メーカー / ブース / ホール）の間隔 24px */
    gap: 24px;
    width: 100%;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
  }

  .vehicleListFilter__head {
    position: relative;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 0;
    margin: 0;
    /* 閉じる 32px + タイトル行（Figma 上端〜タイトル y=39 のバランス） */
    padding: 0 48px 12px;
    gap: 0;
  }

  .vehicleListFilter__headLead {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 23px auto 0;
    text-align: center;
  }

  .vehicleListFilter__closeBtn {
    position: absolute;
    top: 0;
    right: 0;
    transform: none;
    margin: 0;
  }

  .vehicleListFilter__group {
    align-items: center;
    width: 100%;
    max-width: none;
    /* Figma: 見出し〜セレクト縦 12px */
    gap: 12px;
  }

  .vehicleListFilter__groupLabel {
    align-self: center;
    text-align: center;
    white-space: normal;
  }

  .vehicleListFilter__fields {
    justify-content: stretch;
    width: 100%;
    gap: 12px;
  }

  .vehicleListFilter__actions {
    flex-shrink: 0;
    flex-wrap: wrap;
    /* Figma 713-2552: ボタン同士の隙間 16px */
    gap: 16px;
    justify-content: center;
    padding-top: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }

  .vehicleListFilter__submit,
  .vehicleListFilter__reset {
    flex: 1 1 calc(50% - 8px);
    min-width: min(140px, 100%);
    box-sizing: border-box;
    padding: 8px 20px;
    font-size: 14px;
    line-height: normal;
  }

  /* Figma 713-2532 相当 + 英字降り対策の縦余白 */
  #vehicleListFilter .vehicleListFilter__select {
    min-height: 0;
    padding: 10px 40px 10px 16px;
  }

  #vehicleListFilter .vehicleListFilter__chevron {
    right: 16px;
  }
}

/* Figma 713-2113: 1 行バー（絞り込み | メーカー車種 | ブース | ホール）＋縦区切り */
.vehicleListFilter__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

/* SP シート：後続の .vehicleListFilter__bar 既定（gap:24px）より優先 */
@media (max-width: 950px) {
  #vehicleListFilter .vehicleListFilter__bar {
    gap: 24px;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

.vehicleListFilter__vsep {
  flex-shrink: 0;
  align-self: stretch;
  width: 1px;
  min-height: 56px;
  margin: 2px 0;
  background-color: #b2b7c8;
}

@media (max-width: 720px) {
  .vehicleListFilter__bar {
    flex-direction: column;
    align-items: stretch;
    row-gap: 20px;
  }

  .vehicleListFilter__vsep {
    align-self: center;
    width: 100%;
    height: 1px;
    min-height: 0;
  }

  .vehicleListFilter__selectWrap {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 951px) {
  /* PC 1 行バー：縦区切り（Figma は白線） */
  .vehicleListFilter__vsep {
    background-color: #ffffff;
  }

  .vehicleListFilter__head {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 8px;
  }

  .vehicleListFilter__headLead {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }
}

.vehicleListFilter__closeBtn {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  margin: -8px -10px -8px 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background-color: transparent;
  color: #231815;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.vehicleListFilter__closeBtn:hover,
.vehicleListFilter__closeBtn:focus-visible {
  opacity: 0.75;
}

.vehicleListFilter__closeBtn:focus-visible {
  outline: 2px solid #00b2d9;
  outline-offset: 2px;
}

@media (max-width: 950px) {
  .vehicleListFilter__closeBtn {
    display: inline-flex;
    margin: 0;
  }
}

@media (min-width: 951px) {
  .vehicleListFilter__closeBtn {
    display: none !important;
  }
}

.vehicleListFilter__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #231815;
}

.vehicleListFilter__icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.vehicleListFilter__closeBtn img {
  display: block;
  width: 32px;
  height: 32px;
}

.vehicleListFilter__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  color: #000000;
  white-space: nowrap;
}

.vehicleListFilter__group {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.vehicleListFilter__groupLabel {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .vehicleListFilter__groupLabel {
    white-space: normal;
  }
}

.vehicleListFilter__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.vehicleListFilter__selectWrap {
  position: relative;
  flex: 0 0 auto;
  width: 150px;
  max-width: 100%;
}

@media (max-width: 540px) {
  .vehicleListFilter__fields {
    flex-direction: column;
  }

  .vehicleListFilter__selectWrap {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
}

.vehicleListFilter__select {
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 10px 40px 10px 16px;
  border: 1px solid #a6a6a6;
  border-radius: 4px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  /* line-height:1 だと英字の降り（y, g 等）が切れやすい */
  line-height: 1.45;
  color: #231815;
  appearance: none;
  cursor: pointer;
}

.vehicleListFilter__select:has(option[value=""]:checked) {
  color: #c8c8c8;
}

.vehicleListFilter__chevron {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 12px;
  display: flex;
  width: 16px;
  height: 16px;
  color: #231815;
  transform: translateY(-50%);
}

.vehicleListFilter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.vehicleListFilter__submit {
  box-sizing: border-box;
  padding: 8px 20px;
  border: none;
  border-radius: 999px;
  background-color: #000000;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #ffffff;
  cursor: pointer;
}

.vehicleListFilter__submit:hover,
.vehicleListFilter__submit:focus-visible {
  opacity: 0.88;
}

.vehicleListFilter__submit:focus-visible {
  outline: 2px solid #00b2d9;
  outline-offset: 2px;
}

.vehicleListFilter__reset {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid #000000;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.55);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}

.vehicleListFilter__reset:hover,
.vehicleListFilter__reset:focus-visible {
  background-color: rgba(255, 255, 255, 0.85);
}

.vehicleListFilter__reset:focus-visible {
  outline: 2px solid #00b2d9;
  outline-offset: 2px;
}

@media (max-width: 950px) {
  /* SP（713-2522）: ベースの半透明よりフチあり白ボタンに寄せる — 上書き順のため ID 付き */
  #vehicleListFilter .vehicleListFilter__reset {
    background-color: #ffffff;
  }

  #vehicleListFilter .vehicleListFilter__reset:hover,
  #vehicleListFilter .vehicleListFilter__reset:focus-visible {
    background-color: #f3f4f6;
  }
}

.vehicleListPage__hint,
.vehicleListPage__empty {
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 16px;
  border-radius: 10px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  text-align: center;
}

.vehicleListPage__empty {
  color: #555555;
}

.vehicleListPage__results {
  min-height: 0;
}

.vehicleListGrid {
  display: grid;
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 951px) {
  .vehicleListGrid {
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 470px));
    justify-content: center;
  }
}

.vehicleListGrid__item {
  margin: 0;
}

.vehicleCard {
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #ffffff;
}

.vehicleCard__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}

.vehicleCard__title {
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
}

.vehicleCard__entry {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 2px;
  align-items: center;
  line-height: 1;
  color: #000000;
  text-align: center;
  white-space: nowrap;
}

.vehicleCard__entryLabel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.vehicleCard__entryNo {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 950px) {
  /* Figma 713-2344: タイトル全幅 → エントリー行は左右 */
  .vehicleCard__head {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .vehicleCard__title {
    flex: 0 0 auto;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .vehicleCard__entry {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    white-space: nowrap;
  }

  .vehicleCard__exhibitor {
    overflow-wrap: anywhere;
  }
}

.vehicleCard__rule {
  height: 1px;
  margin: 0;
  background: linear-gradient(to right, transparent, #d0d0d0 8%, #d0d0d0 92%, transparent);
}

.vehicleCard__body {
  padding: 0 20px 20px;
}

.vehicleCard__vehicleBlock {
  padding: 12px 0;
}

.vehicleCard__rowLabel {
  display: flex;
  gap: 4px;
  align-items: center;
}

.vehicleCard__rowIcon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.vehicleCard__rowIcon img {
  display: block;
  width: 16px;
  height: 16px;
}

.vehicleCard__rowCaption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
}

.vehicleCard__vehicleName {
  margin: 10px 0 0;
  padding-left: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
}

@media (max-width: 950px) {
  .vehicleCard__vehicleName {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

.vehicleCard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.vehicleCard__tag {
  box-sizing: border-box;
  margin: 0;
  padding: 6px 8px;
  border: 1px solid #959595;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
}

.vehicleCard__boothBlock {
  padding: 12px 0 0;
}

.vehicleCard__boothPills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-end;
  margin-top: 10px;
}

.vehicleCard__hallPill,
.vehicleCard__boothPill {
  box-sizing: border-box;
  padding: 10px;
  border-radius: 8px;
  background-color: #ececec;
}

.vehicleCard__hallPill {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  line-height: 1;
  color: #000000;
}

.vehicleCard__hallNo {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.vehicleCard__hallUnit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.vehicleCard__boothPill {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #000000;
}

.vehicleCard__exhibitor {
  margin: 16px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #000000;
}

/* 絞り込み FAB — Figma 713-2344（一覧閲覧時にフォームへ / 〜950px） */
.vehicleListFilterFab {
  display: none;
}

@media (max-width: 950px) {
  .vehicleListFilterFab {
    position: fixed;
    right: max(16px, env(safe-area-inset-right, 0px));
    /* 閉じているときは画面下端（541px 以上は追従チケット帯なし） */
    bottom: var(--vehicle-filter-fab-bottom, max(14px, env(safe-area-inset-bottom, 0px)));
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 56px;
    height: 56px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    font: inherit;
    color: #ffffff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .vehicleListPage--filterOpen .vehicleListFilterFab {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .vehicleListFilterFab:hover,
  .vehicleListFilterFab:focus-visible {
    opacity: 0.92;
  }

  .vehicleListFilterFab:focus-visible {
    outline: 2px solid #00b2d9;
    outline-offset: 3px;
  }

  .vehicleListFilterFab__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    pointer-events: none;
  }

  .vehicleListFilterFab__icon {
    display: block;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
  }

  .vehicleListFilterFab__label {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
  }
}

@media print {
  .vehicleListFilterFab {
    display: none !important;
  }

  .vehicleListFilterBackdrop {
    display: none !important;
  }

  .vehicleListFilter {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    box-shadow: none !important;
    border-radius: 10px !important;
  }
}

/* トップへ */
.vehicleListPage__back {
  margin: 48px 0 0;
  text-align: center;
}

.vehicleListPage__backBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  background-color: #d80c18;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
}

.vehicleListPage__backBtn:hover,
.vehicleListPage__backBtn:focus-visible {
  opacity: 0.92;
  color: #ffffff;
}
