/*
 * CSS命名規則: プレフィックスについて
 *
 * l- (layout): ページ骨格・グリッド・レイアウトの枠組み（例: l-container, l-header, l-main）
 * c- (component): 再利用可能なUI部品（例: c-button, c-card, c-pagination）
 * p- (project): サイト固有のページセクション・パターン（例: p-filters, p-hero）
 */

/* 業種スライドインパネル */
.filter-ind-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.filter-ind-panel.__show {
  transform: translateX(0);
}
.filter-ind-panel .p-filters__header {
  flex-shrink: 0;
}
.filter-ind-panel .p-filters__ind-back {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.filter-ind-panel .p-filters__ind-back img {
  width: 32px;
  height: 32px;
}
.filter-ind-panel .p-filters__ind-list {
  flex: 1;
  overflow-y: auto;
}

/* ヘッダー部分 */
.p-filters__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.p-filters__close {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.p-filters__close img {
  width: 32px;
  height: 32px;
}
.p-filters__header-title {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #333333;
  padding: 16px 0;
}

/* 業種を選択 */
.p-filters__ind-item {
  font-weight: 700;
  font-size: 12px;
  border-bottom: 1px solid #D8DBDD;
  height: 50px;
}
.p-filters__ind-item:last-child {
  border-bottom: none;
}
.p-filters__ind-button {
  padding: 16px 8px 16px 16px;
}
.p-filters__ind-button-check {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px 15px 16px;
}
.p-filters__ind-check {
  width: 20px;
  height: 20px;
  display: none;
}
.p-filters__ind-button.__selected .p-filters__ind-check {
  display: block;
}
.p-filters__ind-button.__selected {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px 15px 16px;
  color: #2D8CE4;
}
.p-filters__ind-button-other {
  padding: 0 16px 16px 16px;
  font-weight: 700;
  font-size: 14px;
}