@charset "UTF-8";
/* --------------------------------------------------
 * Explore アーカイブ専用の背景レイアウト
 *  - 全体の背景：薄いグレー (#f3f4f6)
 *  - 左カラム（サイドバー）＆右カラム（タブエリア）：白
 * -------------------------------------------------- */
/* WP の body に付く post-type-archive-explore クラスをフックに、
   画面全体を覆う背景レイヤーを敷く（テーマ側の黒背景を隠す） */
/* line 11, ../scss/_startup-explore.scss */
body.post-type-archive-explore,
body.post-type-archive-explore_en {
  position: relative;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
/* line 18, ../scss/_startup-explore.scss */
body.post-type-archive-explore button,
body.post-type-archive-explore input,
body.post-type-archive-explore select,
body.post-type-archive-explore textarea,
body.post-type-archive-explore_en button,
body.post-type-archive-explore_en input,
body.post-type-archive-explore_en select,
body.post-type-archive-explore_en textarea {
  font-family: inherit;
}

/* 画面全体のグレー背景（Figma の地の色） */
/* line 27, ../scss/_startup-explore.scss */
body.post-type-archive-explore::before,
body.post-type-archive-explore_en::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #f3f4f6;
  z-index: -1;
}

/* line 36, ../scss/_startup-explore.scss */
body.post-type-archive-explore #wrap,
body.post-type-archive-explore #main,
body.post-type-archive-explore .site-main,
body.post-type-archive-explore #content-wrap,
body.post-type-archive-explore #content,
body.post-type-archive-explore #primary,
body.post-type-archive-explore .content-area,
body.post-type-archive-explore_en #wrap,
body.post-type-archive-explore_en #main,
body.post-type-archive-explore_en .site-main,
body.post-type-archive-explore_en #content-wrap,
body.post-type-archive-explore_en #content,
body.post-type-archive-explore_en #primary,
body.post-type-archive-explore_en .content-area {
  background: transparent !important;
}

/* --------------------------------------------------
 * レスポンシブ（SP対応）の @max-width の設定値
 * -------------------------------------------------- */
/* --------------------------------------------------
 * レイアウトコンテナ
 * -------------------------------------------------- */
/* 左サイドバー＋右メインを横にフルで広げるコンテナ */
/* line 64, ../scss/_startup-explore.scss */
.startup-archive-wrap {
  display: flex;
  align-items: flex-start;
  /* 画面幅いっぱい使う */
  width: 100%;
  /* 横方向のパディングは parent (.startup-archive-page) に任せる */
  padding: 0;
}

@media (max-width: 1023px) {
  /* line 76, ../scss/_startup-explore.scss */
  .startup-archive-wrap {
    /* 中央寄せ用の max-width / margin を削除 */
    flex-direction: column;
  }
}
/* --------------------------------------------------
 * サイドバー（Filter Startups）
 * -------------------------------------------------- */
/* line 87, ../scss/_startup-explore.scss */
.startup-filter {
  position: sticky;
  top: 80px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 80px);
  height: calc(100dvh - 80px);
  max-height: calc(100vh - 80px);
  max-height: calc(100dvh - 80px);
  overflow: hidden;
  width: 375px;
  background: #ffffff;
  padding: 0px 24px;
  border: 1px solid #EDEDED;
  /* ===== アコーディオン行（カテゴリ） ===== */
  /* open時：矢印を上に（回転） */
  /* ===== 展開エリア（チェックボックスなど） ===== */
}
/* line 109, ../scss/_startup-explore.scss */
.startup-filter__header,
.startup-filter .startup-filter-summary,
.startup-filter .startup-filter-summary__clear, .startup-filter__mobile-footer {
  flex: 0 0 auto;
}
/* line 116, ../scss/_startup-explore.scss */
.startup-filter__title {
  font-size: 16px;
  font-weight: bold;
  color: #222222;
  margin: 25px 0px 10px 0px;
}
/* line 123, ../scss/_startup-explore.scss */
.startup-filter .startup-filter-form {
  display: flex;
  flex-direction: column;
  margin: 10px 0px 0px 0px;
  gap: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 8px;
}
/* line 136, ../scss/_startup-explore.scss */
.startup-filter__group {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  border-top: 1px solid #e5e7eb;
}
/* line 143, ../scss/_startup-explore.scss */
.startup-filter__group:last-child {
  border-bottom: 1px solid #e5e7eb;
}
/* line 147, ../scss/_startup-explore.scss */
.startup-filter__group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
/* line 159, ../scss/_startup-explore.scss */
.startup-filter__group-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
/* line 166, ../scss/_startup-explore.scss */
.startup-filter__group-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
/* line 173, ../scss/_startup-explore.scss */
.startup-filter__selected-badge {
  background: #222222;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}
/* line 184, ../scss/_startup-explore.scss */
.startup-filter__group-badge {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #111827;
}
/* line 194, ../scss/_startup-explore.scss */
.startup-filter__group-badge img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
/* line 201, ../scss/_startup-explore.scss */
.startup-filter__group-badge svg {
  display: block;
}
/* line 205, ../scss/_startup-explore.scss */
.startup-filter__group-badge--pink {
  background: #FFEBEE;
}
/* line 206, ../scss/_startup-explore.scss */
.startup-filter__group-badge--purple {
  background: #F3E5F5;
}
/* line 207, ../scss/_startup-explore.scss */
.startup-filter__group-badge--lavender {
  background: #EDE7F6;
}
/* line 208, ../scss/_startup-explore.scss */
.startup-filter__group-badge--grayblue {
  background: #E8EAF6;
}
/* line 209, ../scss/_startup-explore.scss */
.startup-filter__group-badge--sky {
  background: #E3F2FD;
}
/* line 210, ../scss/_startup-explore.scss */
.startup-filter__group-badge--mint {
  background: #E1F5FE;
}
/* line 211, ../scss/_startup-explore.scss */
.startup-filter__group-badge--aqua {
  background: #E0F2F1;
}
/* line 212, ../scss/_startup-explore.scss */
.startup-filter__group-badge--ice {
  background: #E0F7FA;
}
/* line 213, ../scss/_startup-explore.scss */
.startup-filter__group-badge--green {
  background: #D2F2E6;
}
/* line 215, ../scss/_startup-explore.scss */
.startup-filter__group-badge--neutral {
  background: #8d8f91;
}
/* line 218, ../scss/_startup-explore.scss */
.startup-filter__group-label {
  font-size: 14px;
  font-weight: 350;
  color: #222222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 227, ../scss/_startup-explore.scss */
.startup-filter__group-chevron {
  flex: 0 0 auto;
  color: #111827;
}
/* line 231, ../scss/_startup-explore.scss */
.startup-filter__group-chevron svg {
  transition: transform 0.15s ease;
}
/* line 238, ../scss/_startup-explore.scss */
.startup-filter__group.is-open .startup-filter__group-chevron svg {
  transform: rotate(180deg);
}
/* line 244, ../scss/_startup-explore.scss */
.startup-filter__group-panel {
  padding: 0 0 1rem 3.4rem;
}
/* line 248, ../scss/_startup-explore.scss */
.startup-filter__terms {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 254, ../scss/_startup-explore.scss */
.startup-filter__term {
  margin: 0.25rem 0;
}
/* line 259, ../scss/_startup-explore.scss */
.startup-filter__term-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
/* line 267, ../scss/_startup-explore.scss */
.startup-filter__term-row .startup-filter__checkbox-label {
  flex: 1 1 auto;
  min-width: 0;
}
/* line 273, ../scss/_startup-explore.scss */
.startup-filter__term-toggle, .startup-filter__term-toggle-spacer {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* line 283, ../scss/_startup-explore.scss */
.startup-filter__term-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: #111827;
}
/* line 290, ../scss/_startup-explore.scss */
.startup-filter__term-toggle:focus-visible {
  outline: 3px solid rgba(30, 90, 159, 0.35);
  outline-offset: 2px;
  border-radius: 6px;
}
/* line 298, ../scss/_startup-explore.scss */
.startup-filter__term-chevron {
  display: inline-flex;
  transform: rotate(0deg);
  transition: transform 0.15s ease;
}
/* line 305, ../scss/_startup-explore.scss */
.startup-filter__term.is-open > .startup-filter__term-row .startup-filter__term-chevron {
  transform: rotate(180deg);
}
/* line 311, ../scss/_startup-explore.scss */
.startup-filter__children {
  list-style: none;
  margin: 8px 0 0 0;
  padding-left: 14px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
/* line 318, ../scss/_startup-explore.scss */
.startup-filter__children .startup-filter__term {
  margin-top: 6px;
}
/* line 322, ../scss/_startup-explore.scss */
.startup-filter__checkbox-label {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  column-gap: 12px;
}
/* line 329, ../scss/_startup-explore.scss */
.startup-filter__checkbox {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #bdbdbd;
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  margin-top: 0;
}
/* line 342, ../scss/_startup-explore.scss */
.startup-filter__checkbox:checked {
  background: #222222;
  border-color: #222222;
}
/* line 347, ../scss/_startup-explore.scss */
.startup-filter__checkbox:checked::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  margin-top: -1px;
}
/* line 357, ../scss/_startup-explore.scss */
.startup-filter__checkbox:focus-visible {
  outline: 3px solid rgba(30, 90, 159, 0.35);
  outline-offset: 2px;
}
/* line 364, ../scss/_startup-explore.scss */
.startup-filter__checkbox-text {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  flex: 1;
  font-size: 14px;
  font-weight: 350;
  color: #222222;
}
/* line 377, ../scss/_startup-explore.scss */
.startup-filter__range-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0 0;
}
/* line 383, ../scss/_startup-explore.scss */
.startup-filter__range-row--year {
  padding-top: 0.5rem;
}
/* line 388, ../scss/_startup-explore.scss */
.startup-filter__select {
  flex: 1;
  font-size: 12.5px;
  padding: 10px 0;
  border: 1px solid #cbd5e1;
  border-radius: 0.6rem;
  background: #ffffff;
}
/* line 397, ../scss/_startup-explore.scss */
.startup-filter__range-sep {
  flex: 0 0 auto;
  font-size: 1rem;
  color: #111827;
}
/* line 403, ../scss/_startup-explore.scss */
.startup-filter__error {
  margin: 0.25rem 0 0;
  padding: 0.45rem 0.6rem;
  color: #EC0000;
  font-size: 14px;
  line-height: 1.35;
  display: none;
}
/* line 416, ../scss/_startup-explore.scss */
.startup-filter__mobile-close {
  display: none;
}
/* line 421, ../scss/_startup-explore.scss */
.startup-filter__mobile-footer {
  display: none;
}

@media (max-width: 1023px) {
  /* line 428, ../scss/_startup-explore.scss */
  .startup-filter {
    position: fixed;
    inset: 0;
    width: 100%;
    padding: 0 16px;
    z-index: 99999;
    transform: translateX(102%);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
  }
  /* line 449, ../scss/_startup-explore.scss */
  .startup-filter .startup-filter-summary__clear {
    display: none;
  }
  /* line 453, ../scss/_startup-explore.scss */
  .startup-filter__header {
    position: sticky;
    top: 0;
    background: #FFFFFF;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 30px;
    border-bottom: 1px solid #EDEDED;
  }
  /* line 465, ../scss/_startup-explore.scss */
  .startup-filter__title {
    margin: 0;
    font-size: 18px;
  }
  /* line 471, ../scss/_startup-explore.scss */
  .startup-filter__mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 28px;
    font-family: math;
    color: #222222;
    line-height: 1;
    cursor: pointer;
  }
  /* line 484, ../scss/_startup-explore.scss */
  .startup-filter__mobile-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    position: sticky;
    bottom: 0;
    background: #FFFFFF;
    padding: 12px 16px 14px;
    border-top: 1px solid #EDEDED;
    z-index: 2;
  }
  /* line 498, ../scss/_startup-explore.scss */
  .startup-filter__mobile-clear {
    border: none;
    background: none;
    color: #1E5A9F;
    font-size: 14px;
    cursor: pointer;
    padding: 10px 0;
    white-space: nowrap;
    text-align: center;
  }
  /* line 510, ../scss/_startup-explore.scss */
  .startup-filter__mobile-apply {
    width: 235px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: #222222;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
  }
}
/* 左上の "Number of Filtered Startups" カード
   - 上半分：黒
   - 下半分：薄いグレー */
/* line 526, ../scss/_startup-explore.scss */
.startup-filter-summary {
  border-radius: 0.75rem;
  background: #F5F5F5;
  color: #222222;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 15px;
  /* 上の黒いラベル帯 */
  /* 件数エリア（グレー部分） */
  /* 「Clear all filters」リンク */
}
/* line 536, ../scss/_startup-explore.scss */
.startup-filter-summary__label {
  background: #222222;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 14px;
  padding: 12px 24px;
}
/* line 545, ../scss/_startup-explore.scss */
.startup-filter-summary__count {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 8px 24px;
  background-color: #F5F5F5;
}
/* line 553, ../scss/_startup-explore.scss */
.startup-filter-summary__count-number {
  font-size: 32px;
  font-weight: bold;
}
/* line 558, ../scss/_startup-explore.scss */
.startup-filter-summary__count-unit {
  font-size: 14px;
  color: #404040;
}
/* line 564, ../scss/_startup-explore.scss */
.startup-filter-summary__clear {
  border: none;
  background: none;
  color: #1E5A9F;
  cursor: pointer;
  padding: 12px 0 6px;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-align: left;
}

@media (max-width: 1023px) {
  /* line 577, ../scss/_startup-explore.scss */
  .startup-filter-summary {
    /* 上の黒いラベル帯 */
  }
  /* line 579, ../scss/_startup-explore.scss */
  .startup-filter-summary__label {
    font-weight: unset;
  }
}
/* --------------------------------------------------
 * メインエリア（タブ＋コンテンツ）
 * -------------------------------------------------- */
/* 右カラム（タブ＋コンテンツ全体）のカード */
/* line 592, ../scss/_startup-explore.scss */
.startup-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1023px) {
  /* line 600, ../scss/_startup-explore.scss */
  .startup-main {
    width: inherit;
  }
}
/* 上部タブエリア */
/* line 606, ../scss/_startup-explore.scss */
.startup-tabs {
  display: flex;
  gap: 35px;
  background: #ffffff;
  padding: 0px 45px;
  border: 1px solid #EDEDED;
  margin-left: -1px;
}

/* タブボタン */
/* line 616, ../scss/_startup-explore.scss */
.startup-tab {
  position: relative;
  padding: 0.75rem 0;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #404040;
  cursor: pointer;
}
/* line 626, ../scss/_startup-explore.scss */
.startup-tab.is-active {
  color: #222222;
  font-weight: bold;
}
/* line 630, ../scss/_startup-explore.scss */
.startup-tab.is-active::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -1px;
  width: 125%;
  height: 3px;
  border-radius: 999px;
  background: #222222;
}

@media (max-width: 1023px) {
  /* line 644, ../scss/_startup-explore.scss */
  .startup-tabs {
    gap: 0;
    padding: 0;
    margin-left: 0;
  }

  /* line 650, ../scss/_startup-explore.scss */
  .startup-tab {
    flex: 0 0 50%;
    width: 50%;
    text-align: center;
    padding: 12px 0;
  }

  /* line 657, ../scss/_startup-explore.scss */
  .startup-tab.is-active::after {
    left: 0;
    width: 100%;
  }
}
/* タブの下に広がるコンテンツエリア（グラフ・企業一覧の背景） */
/* line 664, ../scss/_startup-explore.scss */
.startup-main-body {
  margin-top: 15px;
  background: #F5F5F5;
}

/*------------------------------------------------------------------
  ダッシュボード
  ------------------------------------------------------------------*/
/* line 673, ../scss/_startup-explore.scss */
.startup-dashboard {
  display: flex;
  flex-direction: column;
}
/* line 677, ../scss/_startup-explore.scss */
.startup-dashboard__description {
  font-size: 0.9rem;
  color: #222222;
  margin: 0px;
  margin-left: 20px;
}
/* line 684, ../scss/_startup-explore.scss */
.startup-dashboard__kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 15px 20px;
}
/* line 691, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-card {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}
/* line 695, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-card--funding {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
}
/* line 700, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-card--employees {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
}
/* line 705, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-card--market {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
}
/* line 712, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-card.is-negative .startup-dashboard__kpi-arrow {
  transform: translateY(2px) rotate(90deg);
}
/* line 719, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-card.is-na .startup-dashboard__kpi-arrow {
  display: none;
}
/* line 722, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-card.is-na .startup-dashboard__kpi-value {
  opacity: 0.7;
}
/* line 728, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-label {
  font-size: 16px;
  color: #222222;
  font-weight: bold;
}
/* line 734, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-value {
  font-size: 32px;
  font-weight: 900;
  color: #0F172B;
}
/* line 740, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-value-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
/* line 747, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-arrow {
  width: 40px;
  height: 45px;
  display: block;
  flex: 0 0 auto;
  transform: translateY(2px);
}
/* line 755, ../scss/_startup-explore.scss */
.startup-dashboard__kpi-meta {
  font-size: 14px;
  color: #404040;
}
/* line 761, ../scss/_startup-explore.scss */
.startup-dashboard__charts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0px 20px 60px 20px;
}
/* line 768, ../scss/_startup-explore.scss */
.startup-dashboard__chart-card {
  border-radius: 1rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
/* line 775, ../scss/_startup-explore.scss */
.startup-dashboard__chart-header {
  display: flex;
  flex-direction: column;
}
/* line 780, ../scss/_startup-explore.scss */
.startup-dashboard__chart-header-body {
  border-bottom: 1px solid;
  border-color: #EDEDED;
}
/* line 785, ../scss/_startup-explore.scss */
.startup-dashboard__chart-title {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 50px 0px 30px;
}
/* line 791, ../scss/_startup-explore.scss */
.startup-dashboard__chart-subtitle {
  font-size: 12px;
  color: #404040;
  margin: 10px 50px 25px 30px;
}
/* line 797, ../scss/_startup-explore.scss */
.startup-dashboard__chart-body {
  margin-top: 40px;
  position: relative;
  height: 350px;
}
/* line 802, ../scss/_startup-explore.scss */
.startup-dashboard__chart-body canvas {
  width: 100%;
  height: 100%;
  padding: 0px 50px 30px 30px;
}
/* line 808, ../scss/_startup-explore.scss */
.startup-dashboard__chart-body--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.85rem;
  border: 1px dashed #e5e7eb;
  border-radius: 0.75rem;
}
/* line 820, ../scss/_startup-explore.scss */
.startup-dashboard__breadcrumb {
  background-color: #FFFFFF;
  padding: 14px 0;
}
/* line 824, ../scss/_startup-explore.scss */
.startup-dashboard__breadcrumb--main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #222222;
  margin-left: 10px;
}
/* line 833, ../scss/_startup-explore.scss */
.startup-dashboard__breadcrumb--link {
  color: #1E5A9F;
  text-decoration: none;
}
/* line 837, ../scss/_startup-explore.scss */
.startup-dashboard__breadcrumb--link:hover {
  text-decoration: underline;
}
/* line 842, ../scss/_startup-explore.scss */
.startup-dashboard__breadcrumb--sep {
  color: #404040;
}
/* line 846, ../scss/_startup-explore.scss */
.startup-dashboard__breadcrumb--current {
  color: #222222;
}
/* line 852, ../scss/_startup-explore.scss */
.startup-dashboard__foundline {
  display: none;
}

@media (max-width: 1023px) {
  /* line 861, ../scss/_startup-explore.scss */
  .startup-dashboard__kpis {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    width: 100%;
    max-width: 500px;
  }
  /* line 871, ../scss/_startup-explore.scss */
  .startup-dashboard__charts {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    width: 100%;
    max-width: 500px;
  }
  /* line 881, ../scss/_startup-explore.scss */
  .startup-dashboard__kpi-card {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas: "label meta" "value value";
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    row-gap: 10px;
    text-align: center;
  }
  /* line 897, ../scss/_startup-explore.scss */
  .startup-dashboard__kpi-label {
    grid-area: label;
    margin: 0;
    width: auto;
    text-align: center;
    white-space: nowrap;
  }
  /* line 906, ../scss/_startup-explore.scss */
  .startup-dashboard__kpi-meta {
    grid-area: meta;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    font-size: 13px;
  }
  /* line 915, ../scss/_startup-explore.scss */
  .startup-dashboard__kpi-value-row {
    grid-area: value;
    margin-top: 0;
    justify-content: center;
  }
  /* line 924, ../scss/_startup-explore.scss */
  .startup-dashboard__chart-body {
    height: 260px;
  }
  /* line 927, ../scss/_startup-explore.scss */
  .startup-dashboard__chart-body > canvas {
    width: 100% !important;
    height: 100% !important;
    padding: 0 16px 20px 16px;
  }
  /* line 934, ../scss/_startup-explore.scss */
  .startup-dashboard__foundline {
    display: block;
    margin-left: 20px;
    margin-top: 10px;
    font-size: 14px;
    color: #222222;
  }
  /* line 943, ../scss/_startup-explore.scss */
  .startup-dashboard__breadcrumb {
    padding: 20px 10px;
  }

  /* line 949, ../scss/_startup-explore.scss */
  .js-startup-filtered-count {
    font-weight: 700;
  }
}
/* ====================================
 * 企業一覧
 * =================================== */
/* line 958, ../scss/_startup-explore.scss */
.startup-companies-view {
  display: flex;
  flex-direction: column;
}

/* line 968, ../scss/_startup-explore.scss */
.startup-companies-view.is-empty .startup-companylist-header,
.startup-companies-view.is-empty .startup-dashboard__breadcrumb {
  display: none !important;
}
/* line 974, ../scss/_startup-explore.scss */
.startup-companies-view.is-empty #startup-infinite-scroll-sentinel {
  display: none !important;
}

@media (max-width: 1023px) {
  /* line 981, ../scss/_startup-explore.scss */
  .startup-companies-view .startup-dashboard__foundline {
    margin-left: 0;
    margin-top: 0;
    font-size: 16px;
  }
}
/* line 989, ../scss/_startup-explore.scss */
.startup-company {
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  /* flags */
  /* KV */
  /* Industry */
  /* Support / Overview row */
  /* 3つまで表示（expandedで解除） */
  /* Overview clamp */
  /* Toggle link */
  /* expanded のとき矢印回転 */
}
/* line 996, ../scss/_startup-explore.scss */
.startup-company__title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
/* line 1000, ../scss/_startup-explore.scss */
.startup-company__title a {
  text-decoration: none;
  color: #111827;
}
/* line 1004, ../scss/_startup-explore.scss */
.startup-company__title a:hover {
  text-decoration: underline;
}
/* line 1010, ../scss/_startup-explore.scss */
.startup-company__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}
/* line 1018, ../scss/_startup-explore.scss */
.startup-company__taxonomy-label {
  font-weight: 600;
  margin-right: 0.25rem;
}
/* line 1023, ../scss/_startup-explore.scss */
.startup-company__excerpt {
  font-size: 0.85rem;
  color: #4b5563;
}
/* line 1028, ../scss/_startup-explore.scss */
.startup-company--new {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #EDEDED;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.06);
  padding: 18px 25px;
  margin: 18px 25px;
}
/* line 1036, ../scss/_startup-explore.scss */
.startup-company--new .startup-filter__group-badge {
  width: 36px;
  height: 36px;
}
/* line 1040, ../scss/_startup-explore.scss */
.startup-company--new .startup-filter__group-badge img {
  width: 18px;
  height: 18px;
}
/* line 1047, ../scss/_startup-explore.scss */
.startup-company__name {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  margin: 4px 0 12px;
}
/* line 1055, ../scss/_startup-explore.scss */
.startup-company__name-link {
  color: inherit;
  text-decoration: none;
}
/* line 1060, ../scss/_startup-explore.scss */
.startup-company__name-link:hover {
  text-decoration: underline;
}
/* line 1064, ../scss/_startup-explore.scss */
.startup-company__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
/* line 1071, ../scss/_startup-explore.scss */
.startup-company__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
/* line 1078, ../scss/_startup-explore.scss */
.startup-company__chip-text {
  font-size: 14px;
  color: #222222;
  white-space: nowrap;
  overflow: hidden;
}
/* line 1085, ../scss/_startup-explore.scss */
.startup-company__divider {
  height: 1px;
  background: #EDEDED;
  margin: 12px 0;
}
/* line 1092, ../scss/_startup-explore.scss */
.startup-company__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}
/* line 1099, ../scss/_startup-explore.scss */
.startup-company__flag {
  border: 1px solid #222222;
  border-radius: 999px;
  padding: 2px 12px;
  font-size: 12px;
  color: #222222;
  background: #ffffff;
}
/* line 1109, ../scss/_startup-explore.scss */
.startup-company__kv {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 10px 0 6px;
}
/* line 1116, ../scss/_startup-explore.scss */
.startup-company__kv-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
/* line 1122, ../scss/_startup-explore.scss */
.startup-company__kv-label, .startup-company__row-label {
  background: #F3F4F6;
  color: #222222;
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 12px;
  white-space: nowrap;
}
/* line 1132, ../scss/_startup-explore.scss */
.startup-company__kv-value {
  font-size: 14px;
  color: #222222;
}
/* line 1138, ../scss/_startup-explore.scss */
.startup-company__industry {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 10px 0 6px;
}
/* line 1145, ../scss/_startup-explore.scss */
.startup-company__industry-item {
  display: inline-flex;
  align-items: start;
  gap: 12px;
}
/* line 1151, ../scss/_startup-explore.scss */
.startup-company__industry-value {
  font-size: 14px;
  color: #222222;
}
/* line 1157, ../scss/_startup-explore.scss */
.startup-company__support, .startup-company__overview {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 10px;
}
/* line 1165, ../scss/_startup-explore.scss */
.startup-company__support-body, .startup-company__overview-body {
  flex: 1;
  min-width: 0;
}
/* line 1171, ../scss/_startup-explore.scss */
.startup-company__support-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
/* line 1177, ../scss/_startup-explore.scss */
.startup-company__support-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 20px;
  border-radius: 999px;
  background: #FFEBEE;
  border: 1px solid #DFB8BB;
  font-size: 12px;
  text-decoration: none;
}
/* line 1189, ../scss/_startup-explore.scss */
.startup-company__support:not(.is-expanded) .startup-company__support-badge:nth-child(n+4) {
  display: none;
}
/* line 1194, ../scss/_startup-explore.scss */
.startup-company__overview-text {
  font-size: 14px;
  color: #222222;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* clamp（標準 + WebKit） */
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
/* line 1209, ../scss/_startup-explore.scss */
.startup-company__overview.is-expanded .startup-company__overview-text {
  /* clamp解除（標準 + WebKit） */
  line-clamp: unset;
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}
/* line 1219, ../scss/_startup-explore.scss */
.startup-company__toggle {
  border: none;
  background: none;
  color: #1E5A9F;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}
/* line 1231, ../scss/_startup-explore.scss */
.startup-company__toggle[hidden] {
  display: none !important;
}
/* line 1236, ../scss/_startup-explore.scss */
.startup-company__toggle-icon {
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.15s ease;
  font-size: 25px;
}
/* line 1244, ../scss/_startup-explore.scss */
.startup-company__support.is-expanded .startup-company__toggle-icon, .startup-company__overview.is-expanded .startup-company__toggle-icon {
  transform: rotate(-90deg);
}
/* line 1252, ../scss/_startup-explore.scss */
.startup-company__sp {
  display: none;
}
/* line 1253, ../scss/_startup-explore.scss */
.startup-company__pc {
  display: block;
}
/* line 1256, ../scss/_startup-explore.scss */
.startup-company__sp-name {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  margin: 4px 0 6px;
}
/* line 1263, ../scss/_startup-explore.scss */
.startup-company__sp-meta {
  font-size: 14px;
  color: #404040;
  line-height: 1.6;
  margin: 2px 0;
  word-break: break-word;
}
/* line 1271, ../scss/_startup-explore.scss */
.startup-company__sp-details {
  margin-top: 10px;
}
/* line 1276, ../scss/_startup-explore.scss */
.startup-company__sp-toggle {
  border: none;
  background: none;
  color: #1E5A9F;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
}
/* line 1289, ../scss/_startup-explore.scss */
.startup-company__sp-toggle-icon {
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.15s ease;
  font-size: 25px;
}
/* line 1301, ../scss/_startup-explore.scss */
.startup-company__sp-kv {
  --sp-kv-value-min: 60px;
  --sp-kv-value-max: 90px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
/* line 1312, ../scss/_startup-explore.scss */
.startup-company__sp-kv-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
/* line 1319, ../scss/_startup-explore.scss */
.startup-company__sp-kv .startup-company__kv-item {
  display: grid;
  grid-template-columns: max-content auto;
  column-gap: 6px;
  align-items: center;
}
/* line 1326, ../scss/_startup-explore.scss */
.startup-company__sp-kv .startup-company__kv-value {
  display: inline-block;
  min-width: var(--sp-kv-value-min);
  max-width: var(--sp-kv-value-max);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
  word-break: break-word;
}
/* line 1344, ../scss/_startup-explore.scss */
.startup-company__sp-industry {
  margin-top: 8px;
}
/* line 1348, ../scss/_startup-explore.scss */
.startup-company__sp-industry .startup-company__row-label {
  display: inline-flex;
  margin-bottom: 8px;
}
/* line 1357, ../scss/_startup-explore.scss */
.startup-company__sp-support {
  margin-top: 8px;
}
/* line 1361, ../scss/_startup-explore.scss */
.startup-company__sp-support .startup-company__row-label {
  display: inline-flex;
  margin-bottom: 8px;
}
/* line 1368, ../scss/_startup-explore.scss */
.startup-company__sp-support .startup-company__support-badges {
  gap: 8px;
  margin-left: 5px;
}
/* line 1376, ../scss/_startup-explore.scss */
.startup-company__sp-overview {
  margin-top: 8px;
}
/* line 1380, ../scss/_startup-explore.scss */
.startup-company__sp-overview .startup-company__row-label {
  display: inline-flex;
  margin-bottom: 8px;
}
/* line 1386, ../scss/_startup-explore.scss */
.startup-company__sp-overview-text {
  font-size: 14px;
  color: #222222;
  line-height: 1.7;
  display: block;
  overflow: visible;
  margin-left: 5px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1023px) {
  /* line 1405, ../scss/_startup-explore.scss */
  .startup-company__pc {
    display: none;
  }
  /* line 1406, ../scss/_startup-explore.scss */
  .startup-company__sp {
    display: block;
  }
  /* line 1409, ../scss/_startup-explore.scss */
  .startup-company--new {
    margin: 12px 8px;
    padding: 14px 10px;
  }
  /* line 1414, ../scss/_startup-explore.scss */
  .startup-company__name {
    font-size: 16px;
  }
  /* line 1418, ../scss/_startup-explore.scss */
  .startup-company__divider {
    margin: 0;
    height: 0;
    background: none;
  }
  /* line 1424, ../scss/_startup-explore.scss */
  .startup-company__kv-value {
    font-size: 13px;
  }
  /* line 1428, ../scss/_startup-explore.scss */
  .startup-company__kv-label, .startup-company__row-label {
    padding: 4px 5px;
  }
  /* line 1433, ../scss/_startup-explore.scss */
  .startup-company__industry-value {
    font-size: 13px;
    display: block;
    margin-left: 5px;
  }
  /* line 1439, ../scss/_startup-explore.scss */
  .startup-company__sp-meta {
    line-height: 1.8;
    margin: 1.0px 0;
  }

  /* line 1448, ../scss/_startup-explore.scss */
  .startup-company--new.is-sp-expanded .startup-company__sp-toggle-icon {
    transform: rotate(-90deg);
  }

  /* line 1455, ../scss/_startup-explore.scss */
  .startup-company__sp.is-expanded .startup-company__sp-toggle-icon {
    transform: rotate(-90deg);
  }
}
/* line 1461, ../scss/_startup-explore.scss */
a.startup-company__support-badge,
a.startup-company__support-badge:visited,
a.startup-company__support-badge:hover,
a.startup-company__support-badge:active {
  text-decoration: none;
  color: #802A31;
}

/* -----------------------------
   Dashboard：0件用の別画面
------------------------------ */
/* line 1473, ../scss/_startup-explore.scss */
.startup-empty-screen {
  background: #F5F5F5;
  padding: 40px 20px 60px;
}
/* line 1477, ../scss/_startup-explore.scss */
.startup-empty-screen__inner {
  background: #ffffff;
  border: 1px solid #EDEDED;
  border-radius: 16px;
  padding: 48px 20px;
  text-align: center;
}
/* line 1485, ../scss/_startup-explore.scss */
.startup-empty-screen__title {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
}
/* line 1492, ../scss/_startup-explore.scss */
.startup-empty-screen__desc {
  font-size: 14px;
  color: #404040;
}

/* -----------------------------
   No Data overlay
------------------------------ */
/* line 1502, ../scss/_startup-explore.scss */
.startup-dashboard__chart-body {
  position: relative;
  /* 円グラフ：グラフ非表示 + No Dataのみ */
}
/* line 1505, ../scss/_startup-explore.scss */
.startup-dashboard__chart-body .chart-no-data-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
/* line 1514, ../scss/_startup-explore.scss */
.startup-dashboard__chart-body .chart-no-data-label {
  background: #E8E8E8;
  color: #9E9E9E;
  font-size: 20px;
  font-weight: 700;
  padding: 30px 80px;
}
/* line 1523, ../scss/_startup-explore.scss */
.startup-dashboard__chart-body.is-no-data .chart-no-data-overlay {
  display: flex;
}
/* line 1524, ../scss/_startup-explore.scss */
.startup-dashboard__chart-body.is-no-data canvas {
  filter: grayscale(1);
  opacity: 0.45;
}
/* line 1532, ../scss/_startup-explore.scss */
.startup-dashboard__chart-body.is-no-data--pie canvas {
  display: none;
}

/* ------------------------------------------------------------------
  企業一覧：0件画面（company-none.php）
------------------------------------------------------------------*/
/* line 1540, ../scss/_startup-explore.scss */
.startup-companies-empty {
  padding: 48px 20px 70px;
  text-align: center;
}
/* line 1544, ../scss/_startup-explore.scss */
.startup-companies-empty__count {
  font-size: 12px;
  color: #222222;
  margin-bottom: 22px;
}
/* line 1550, ../scss/_startup-explore.scss */
.startup-companies-empty__count-number {
  font-weight: 700;
}
/* line 1554, ../scss/_startup-explore.scss */
.startup-companies-empty__icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  margin: 0 auto 18px;
}
/* line 1564, ../scss/_startup-explore.scss */
.startup-companies-empty__icon svg {
  display: block;
}
/* line 1569, ../scss/_startup-explore.scss */
.startup-companies-empty__title {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  margin: 10px auto 0;
}
/* line 1576, ../scss/_startup-explore.scss */
.startup-companies-empty__desc {
  font-size: 14px;
  color: #404040;
  margin: 30px auto 35px;
  max-width: 520px;
}
/* line 1583, ../scss/_startup-explore.scss */
.startup-companies-empty__clear {
  border: none;
  background: none;
  color: #1E5A9F;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
}
/* line 1591, ../scss/_startup-explore.scss */
.startup-companies-empty__clear:hover {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  /* line 1598, ../scss/_startup-explore.scss */
  .startup-companies-empty {
    padding: 48px 20px 250px;
  }
  /* line 1602, ../scss/_startup-explore.scss */
  .startup-companies-empty__count {
    font-size: 16px;
  }
}
/* ------------------------------------------------------------------
  WordPressのデフォルトヘッダー非表示
------------------------------------------------------------------*/
/* line 1612, ../scss/_startup-explore.scss */
.page-header.wpex-supports-mods {
  background: unset !important;
  background-color: #FFFFFF !important;
}

/* line 1616, ../scss/_startup-explore.scss */
.page-header.background-image-page-header {
  min-height: 80px !important;
}

/* line 1619, ../scss/_startup-explore.scss */
.page-header-inner.container.wpex-py-20.wpex-z-5.wpex-relative {
  display: none;
}

/* ------------------------------------------------------------------
  SP：Filter Startups Drawer
------------------------------------------------------------------*/
/* line 1628, ../scss/_startup-explore.scss */
.startup-filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 99990;
}

/* line 1636, ../scss/_startup-explore.scss */
body.is-startup-filter-open {
  overflow: hidden;
}
/* line 1639, ../scss/_startup-explore.scss */
body.is-startup-filter-open .startup-filter {
  transform: translateX(0);
}

/* line 1645, ../scss/_startup-explore.scss */
.startup-mobile-toolbar {
  display: none;
}
/* line 1648, ../scss/_startup-explore.scss */
.startup-mobile-toolbar__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  text-decoration: none;
  color: #222222;
  border-radius: 999px;
}
/* line 1658, ../scss/_startup-explore.scss */
.startup-mobile-toolbar__back svg {
  display: block;
  color: #222222;
}
/* line 1664, ../scss/_startup-explore.scss */
.startup-mobile-toolbar__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 180px;
  height: 40px;
  padding: 0 14px;
  border: 2px solid #222222;
  border-radius: 999px;
  background: #ffffff;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
/* line 1681, ../scss/_startup-explore.scss */
.startup-mobile-toolbar__filter img,
.startup-mobile-toolbar__filter svg {
  display: block;
}
/* line 1687, ../scss/_startup-explore.scss */
.startup-mobile-toolbar__filter-icon {
  width: 15px;
  height: 15px;
}

@media (max-width: 1023px) {
  /* line 1694, ../scss/_startup-explore.scss */
  .startup-mobile-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #ffffff;
    padding: 12px 25px;
    border-bottom: 1px solid #EDEDED;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-left: 0;
  }
}
/* =========================================================
 * Company List Header（Data as of + download）
 * ========================================================= */
/* line 1713, ../scss/_startup-explore.scss */
.startup-companylist-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 5px 35px 0 35px;
  margin: 0;
}

@media (max-width: 1023px) {
  /* line 1723, ../scss/_startup-explore.scss */
  .startup-companylist-header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 20px 0 20px;
  }
  /* line 1730, ../scss/_startup-explore.scss */
  .startup-companylist-header__right {
    order: 1;
  }
  /* line 1731, ../scss/_startup-explore.scss */
  .startup-companylist-header__foundline {
    order: 2;
  }
  /* line 1732, ../scss/_startup-explore.scss */
  .startup-companylist-header__left {
    order: 3;
  }
}
/* line 1736, ../scss/_startup-explore.scss */
.startup-companylist-asof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
/* line 1742, ../scss/_startup-explore.scss */
.startup-companylist-asof__text {
  font-size: 14px;
  color: #404040;
}
/* line 1747, ../scss/_startup-explore.scss */
.startup-companylist-asof__help {
  width: 20px;
  height: 20px;
  border: 0;
  background: #ffffff;
  color: #222222;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
/* line 1763, ../scss/_startup-explore.scss */
.startup-companylist-asof__help-icon {
  width: 24px;
  height: 24px;
  display: block;
  background: #F5F5F5;
}

/* 初期は非表示（hover / focus で表示） */
/* line 1772, ../scss/_startup-explore.scss */
.startup-companylist-tooltip {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 9999;
  width: 92vw;
  max-width: 720px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  /* Tooltip 内：凡例（アイコン + ラベル） */
}
/* line 1787, ../scss/_startup-explore.scss */
.startup-companylist-tooltip__panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  padding: 25px 30px;
  position: relative;
  color: #364153;
  font-size: 12px;
}
/* line 1798, ../scss/_startup-explore.scss */
.startup-companylist-tooltip__title {
  margin-bottom: 12px;
}
/* line 1803, ../scss/_startup-explore.scss */
.startup-companylist-tooltip__legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
/* line 1810, ../scss/_startup-explore.scss */
.startup-companylist-tooltip__legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* line 1816, ../scss/_startup-explore.scss */
.startup-companylist-tooltip__legend-item .startup-filter__group-badge {
  flex: 0 0 auto;
}
/* line 1821, ../scss/_startup-explore.scss */
.startup-companylist-tooltip__legend-text {
  line-height: 1.4;
}
/* line 1825, ../scss/_startup-explore.scss */
.startup-companylist-tooltip__body-note {
  margin-top: 4px;
}

/* ？アイコン hover / focus、またはツールチップ自体 hover で表示 */
/* line 1831, ../scss/_startup-explore.scss */
.startup-companylist-asof__help:hover ~ .startup-companylist-tooltip,
.startup-companylist-asof__help:focus ~ .startup-companylist-tooltip,
.startup-companylist-asof:focus-within .startup-companylist-tooltip,
.startup-companylist-tooltip:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* line 1841, ../scss/_startup-explore.scss */
.startup-companylist-download {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
/* line 1847, ../scss/_startup-explore.scss */
.startup-companylist-download__note {
  font-size: 12px;
  color: #404040;
}
/* line 1852, ../scss/_startup-explore.scss */
.startup-companylist-download__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 2px solid #222222;
  border-radius: 999px;
  padding: 5px 20px;
  background: #ffffff;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
/* line 1865, ../scss/_startup-explore.scss */
.startup-companylist-download__btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
/* line 1871, ../scss/_startup-explore.scss */
.startup-companylist-download__icon {
  font-size: 16px;
  transform: translateY(-1px);
}
/* line 1876, ../scss/_startup-explore.scss */
.startup-companylist-download__icon-img {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 1023px) {
  /* line 1885, ../scss/_startup-explore.scss */
  .startup-companylist-download {
    flex-direction: row;
    align-items: center;
    justify-content: right;
    width: 100%;
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 15px;
    gap: 0;
  }
  /* line 1894, ../scss/_startup-explore.scss */
  .startup-companylist-download__note {
    margin: 0;
  }
  /* line 1898, ../scss/_startup-explore.scss */
  .startup-companylist-download__btn {
    white-space: nowrap;
    margin-left: 5px;
    padding: 5px 10px;
  }
}
