@charset "UTF-8";
ul.chara_info {
    padding: 5px 10px 5px 10px;
    margin: 10px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 3px solid #c8c9cf;
    border-radius: 10px;
    overflow: hidden;
    font-weight: bold;
}
ul.chara_info img {
    width: 30px;
    height: auto;
    margin-right: 3px;
    display: inline-block;
}
.chara_info li:nth-child(n) {
    border-right: 2px dashed #c8c9cf;
    border-bottom: 2px solid #c8c9cf;
    padding: 5px 0px;
    text-align: center;
}
.chara_info li:nth-last-child(-n+2) {
    border-bottom: none;
}
.chara_info li:nth-child(2n) {
    border-right: none;
}
.trend-desc {
  font-size: 13px;
  position: relative;
  padding-left: 44px;
  margin: 10px 0;
}
.trend-desc::before {
  content: attr(data-skill-lv);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: bold;
  background: #e2e8f0;
  color: #1e293b;
  border-radius: 4px;
  padding: 1px 6px;
}
.name[data-rank="purple"] img {  border: 2px solid #673AB7; }
.name[data-rank="purple"] { color: #673AB7; }
.name[data-rank="gray"] img {  border: 2px solid #64748b; }
.name[data-rank="gray"] { color: #64748b; }
.name[data-rank="orange"] img { border: 2px solid #ff6600; }
.name[data-rank="orange"] { color: #ff6600; }
.name[data-rank="red"] img { border: 2px solid #f9003f; }
.name[data-rank="red"] { color: #f9003f; }
.tag > div {
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid #cbd5e1;
    color: #374151;
}
.tag {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 5px;
}
.human_skill > div {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    text-align: left;
}
.human_skill > div:last-child {
  border-bottom: none;
}
.name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}
.name > div {
    display: flex;
    align-items: center;
}
.name div:last-child {
  text-align: center;
  font-size: 12px;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 2px 8px;
  background: #f1f5f9;
}
.name img {
  width: 36px;
  height: auto;
  margin-right: 5px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  display: inline-block;
}
.human_skill {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f9fafb;
  gap: 4px;
  margin: 0.75rem 0;
  position: relative;
}
.human_skill > .info > div::before {
  content: attr(data-skill) ": ";
  font-weight: bold;
  color: #334155;
}
.toggle_button {
    background-color: #2563eb;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 50%;
    margin: 0 25%;
}
.toggle_button:hover {
    background-color: #2563eb;
}
.add_passive :nth-child(even) {
  border-bottom: none !important;
}