@charset "UTF-8";
@keyframes numBlink {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
table {
  border-collapse: collapse;
  border: 1px solid #333;
  font-size: 1.1rem;
  z-index: 10;
  width: 100%;
}
@media (max-width: 760px) {
  table {
    font-size: 1rem;
  }
}
table td {
  border: 1px solid #333;
}
table td:nth-child(1) {
  text-align: center;
  width: 56px;
  min-width: 48px;
  padding: 10px 6px 10px;
  border-right: 1px solid #ddd6be;
  vertical-align: middle;
  cursor: pointer;
}
table td:nth-child(1) .num-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ede6cc;
  color: #0047ab;
  font-weight: bold;
  font-size: 0.85rem;
  border: 1px solid #c2b99a;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}
table td:nth-child(1) .num-badge::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  transform: translateX(-50%);
  background: rgba(30, 20, 10, 0.8);
  color: #fff;
  font-size: 0.68rem;
  white-space: nowrap;
  padding: 3px 8px;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 9999;
}
table td:nth-child(1) .gokunarabe-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e2f0e2;
  color: #1a6b1a;
  font-weight: bold;
  font-size: 0.85rem;
  border: 1px solid #9dc69d;
  margin-top: 4px;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  cursor: pointer;
}
table td:nth-child(1) .gokunarabe-badge::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  transform: translateX(-50%);
  background: rgba(30, 20, 10, 0.8);
  color: #fff;
  font-size: 0.68rem;
  white-space: nowrap;
  padding: 3px 8px;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 9999;
}
table td:nth-child(1) .gokunarabe-badge:hover {
  background: #1a6b1a;
  color: #fff;
  border-color: #1a6b1a;
  transform: scale(1.12);
}
table td:nth-child(1) .gokunarabe-badge:hover::after {
  opacity: 1;
}
table td:nth-child(1):hover {
  position: relative;
  z-index: 100;
}
table td:nth-child(1) .num-badge:hover {
  background: #b82343;
  color: #fff;
  border-color: #b82343;
  transform: scale(1.12);
}
table td:nth-child(1) .num-badge:hover::after {
  opacity: 1;
}
@media (max-width: 960px) {
  table td:nth-child(1) {
    width: 44px;
  }
}
table td:nth-child(2) {
  padding: 1.5% 1.5% 0.75%;
  width: 90%;
  border-right: none;
}
@media (max-width: 960px) {
  table td:nth-child(2) {
    padding: 8% 1.5% 2%;
    width: 310px;
  }
}
table td:nth-child(2) rt {
  font-size: 0.5em;
  letter-spacing: 0;
}
table td:nth-child(3) {
  /* 検索用の文字（非表示） */
  color: transparent;
  width: 0;
  display: none;
  border-left: none;
  border-right: none;
}
table td:nth-child(4) {
  /* 検索用の文字（非表示） */
  color: transparent;
  width: 0;
  display: none;
  border-left: none;
  border-right: none;
}
table td:nth-child(5) {
  /* 検索用の文字（非表示） */
  color: transparent;
  width: 0;
  display: none;
  border-left: none;
}
table td:nth-child(6) {
  /* 検索用の文字（非表示） */
  color: transparent;
  width: 0;
  display: none;
  border-left: none;
}

#input-wrapper {
  width: 100%;
  text-align: left;
  margin-bottom: 1em;
}

#searchInput {
  box-sizing: border-box;
  width: 100%;
  height: 45px;
  padding: 10px 10px 8px;
  font-size: 16px;
}
@media (max-width: 960px) {
  #searchInput {
    width: 100%;
  }
}

.small {
  margin-top: 0.75em;
}

#sort-buttons {
  margin-bottom: 0.6em;
  display: flex;
  gap: 0.5em;
}

.sort-btn {
  padding: 5px 14px;
  border: 1px solid #c2b99a;
  border-radius: 4px;
  background: #ede6cc;
  color: #333;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}
.sort-btn.active {
  background: #b82343;
  color: #fff;
  border-color: #b82343;
}

#sort-buttons {
  margin-top: 0.6em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  align-items: center;
}

.sort-divider {
  width: 1px;
  height: 1.6em;
  background: #c2b99a;
  margin: 0 0.2em;
}

.sort-btn {
  padding: 5px 14px;
  border: 1px solid #c2b99a;
  border-radius: 4px;
  background: #ede6cc;
  color: #333;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}
.sort-btn.active {
  background: #b82343;
  color: #fff;
}

.color-filter-btn[data-color=青] {
  background: #e8f0fe;
}

.color-filter-btn[data-color=ピンク] {
  background: #fde8f3;
}

.color-filter-btn[data-color=黄] {
  background: #fefbe0;
}

.color-filter-btn[data-color=緑] {
  background: #e8f5e8;
}

.color-filter-btn[data-color=橙] {
  background: #fef0e0;
}

.color-filter-btn.active {
  outline-offset: 1px;
  color: #333;
  border-color: #b82343;
}/*# sourceMappingURL=list.css.map */