.fish {
    display: flex;
    flex-direction: column;
    padding: 4px 10px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f9fafb;
    margin: 0.75rem 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.fish > div {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    text-align: left;
}
.fish > div:last-child {
    border-bottom: none;
}
.name {
    display: flex;
    align-items: center;
    font-weight: bold;
}
.name img {
    width: 42px;
    height: auto;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    margin-right: 5px;
}
.name[data-rank="緑"] { color: #42AD5C; }
.name[data-rank="青"] { color: #2563eb; }
.name[data-rank="紫"] { color: #673AB7; }
.name[data-rank="オレンジ"] { color: #ff6600; }
.name[data-rank="赤"] { color: #f9003f; }
.fish > .info > div {
    display: grid;
    grid-template-columns: max-content 1fr; /* ラベル幅を自動調整 */
    gap: 8px;
    color: #1f2937;
    font-size: 13px;
}
.fish > .info > div::before {
    content: attr(data-skill);
    font-weight: bold;
    color: #334155;
    vertical-align: top;
}
.fish > .fish_point {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.fish > .fish_point > div {
  font-size: 12px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  color: #374151;
  background: #f8fafc;
}
.name div:last-child {
  margin-left: auto;
  text-align: center;
  font-size: 12px;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 2px 8px;
  background: #f1f5f9;
  flex-shrink: 0;
}




.filter-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
.filter-table th {
    background: #f1f5f9;
    text-align: left;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    width: 120px;
}
.filter-table td {
    padding: 8px;
    border: 1px solid #ccc;
}
.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.filter-list li {
    width: fit-content;
    min-width: 50px;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 12px !important;
    font-weight: bold;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #e8e8e8;
    color: #858585;
    text-align: center;
    line-height: 1 !important;
    user-select: none;
    transition: 0.2s;
    cursor: pointer;
}
.filter-list li[data-check="1"] {
background: #7fb9c3;
    border: 1px solid #5a4498;
    color: #fff;
}


.no_result{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid #ccc;
    padding: 30px 0;
}