.snb-wrap {
  display: flex;
  width: var(--l-page-snb-width);
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.snb {
  display: flex;
  padding: 12px 16px 16px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid var(--color-neu-20);
  background: var(--color-neu-00);
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.snb a,
.snb span {
  height: 32px;
  display: flex;
  align-items: center;
  color: var(--color-neu-900);
  font-weight: 500;
  outline: none;
  gap: 4px;
  flex-direction: row;
  text-decoration: none;
}

.snb a:hover {
  color: var(--color-pri-500);
}

.snb a.active {
  color: var(--color-pri-500);
  font-weight: 500;
}

.snb a > span {
  color: var(--color-neu-300);
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}

.snb a:hover > span {
  text-decoration: none;
}

.snb .snb-line {
  height: 1px;
  background-color: var(--color-neu-10);
  width: 100%;
}

.novel-lnb {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  border: 1px solid var(--color-neu-30);
  border-radius: 14px;
  background: var(--color-neu-00);
  box-sizing: border-box;
}
.novel-lnb__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
}
.novel-lnb__sep {
  margin: 0 24px;
  border: 0;
  border-top: 1px solid var(--color-neu-10);
}
.novel-lnb__lv1 {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-neu-900);
  border-radius: 6px;
  text-decoration: none;
  box-sizing: border-box;
}
.novel-lnb__lv1:hover {
  color: var(--color-pri-500);
  background: var(--color-opa-neubk-rgba-02);
  transition: background-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.novel-lnb__lv1.active {
  background: var(--color-pri-10);
  color: var(--color-pri-500);
}
.novel-lnb__label,
.novel-lnb .novel-list-label {
  padding: 11px 0 11px 12px;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-neu-900);
}
.novel-lnb__sub {
  list-style: none;
  margin: 0;
  padding: 0 2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.novel-lnb__lv2 {
  display: block;
  padding: 8.5px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: var(--color-neu-500);
  border-radius: 6px;
  text-decoration: none;
}
.novel-lnb__lv2:hover {
  background: var(--color-opa-neubk-rgba-02);
  color: var(--color-pri-500);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.novel-lnb__lv2.active {
  background: var(--color-pri-10);
  color: var(--color-pri-500);
}

.snb-banner,
.best-lnb__banner {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 24px;
}
.snb-banner a,
.best-lnb__banner a {
  display: block;
}
.snb-banner img,
.best-lnb__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.l-page--best {
  --l-page-snb-width: 245px;
}

.best-lnb {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border: 1px solid var(--color-neu-30);
  border-radius: 14px;
  background: var(--color-neu-00);
  box-sizing: border-box;
}

.best-lnb__card--group {
  display: contents;
}

.best-lnb__section {
  padding: 4px 20px;
}
.best-lnb__section--accordion {
  padding: 0 20px;
}

.best-lnb__lv1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 12px;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-neu-900);
  background: none;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none;
}
.best-lnb__lv1:hover {
  background: none;
  text-decoration: none;
}
.best-lnb__lv1--btn {
  padding: 13px 0 11px 12px;
}
.best-lnb__lv1--btn:hover {
  background: none;
  text-decoration: none;
}
.best-lnb__lv1.active {
  background: var(--color-pri-10);
  color: var(--color-pri-500);
}
.best-lnb__lv1:hover {
  background: var(--color-neu-10);
  color: var(--color-pri-500);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.best-lnb__section--accordion .best-lnb__lv1:hover {
  background: none;
}

.best-lnb__arrow {
  flex-shrink: 0;
  display: block;
  color: var(--color-neu-50);
  transform: rotate(180deg);
}
.is-open .best-lnb__arrow {
  transform: rotate(0deg);
}

.best-lnb__sub {
  list-style: none;
  margin: 0;
  padding: 0 2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.best-lnb__sub[hidden] {
  display: none;
}

.best-lnb__lv2 {
  display: block;
  padding: 8.5px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: var(--color-neu-500);
  border-radius: 6px;
  text-decoration: none;
}
.best-lnb__lv2:hover {
  background: var(--color-opa-neubk-rgba-02);
  color: var(--color-pri-500);
  transition: background-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.best-lnb__lv2.active {
  font-weight: 500;
  color: var(--color-pri-500);
  background: var(--color-pri-10);
}
.best-lnb__section--accordion:last-of-type .best-lnb__sub li:last-child .best-lnb__lv2 {
  margin-bottom: 8px;
}

.best-lnb__sep {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--color-neu-10);
  align-self: stretch;
}

.page-title--h2 {
  margin: 0 0 28px 0;
}

.best-content {
  min-width: 0;
}
.best-content.view-list .best-rank-grid {
  display: none;
}
.best-content.view-grid .best-rank-list {
  display: none;
}

.best-header {
  width: 100%;
  display: flex;
  gap: 4px;
  height: 30px;
  align-items: center;
  color: var(--color-neu-900);
  font-size: 20px;
  font-weight: 500;
}
.best-header span {
  position: relative;
}

.best-info-wrap {
  width: 100%;
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-neu-500);
  padding: 5px 0;
  margin: 0 0 20px 0;
}

.best-view-type {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  top: 2.5px;
}
.best-view-type button {
  border: 0;
  background-color: transparent;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.best-view-type button svg rect {
  fill: var(--color-neu-30);
  transition: fill 0.15s;
}
.best-view-type button:hover svg rect, .best-view-type button.active svg rect {
  fill: var(--color-neu-500);
}

.best-content-wrap {
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.best-index-section {
  display: flex;
  flex-direction: column;
}

.best-index-section__title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.best-index-section__title-row .best-index-col__more {
  margin-bottom: 18px;
}

.best-index-section__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: var(--color-pri-700);
  margin: 0 0 14px 0;
}

.best-index-section__divider,
.best-index-section__divider:last-of-type:not(:first-of-type) {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--color-pri-600);
}

.best-index-cols + .best-index-section__divider {
  border-top: 1px solid var(--color-pri-300);
}

.best-index-cols {
  display: flex;
  align-items: stretch;
}

.best-index-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.best-index-col--main {
  flex: 1 0 0;
  min-width: 0;
  padding-right: 16px;
}
.best-index-col--sub {
  flex: 1 0 0;
  min-width: 0;
  padding: 0 16px;
}
.best-index-col--sub:last-child {
  padding-right: 0;
}
.best-index-col--third {
  flex: 1 0 0;
  min-width: 0;
  padding-right: 32px;
}
.best-index-col--third:last-child {
  padding-right: 0;
}

.best-index-col__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 2px;
}

.best-index-col__label {
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  color: var(--color-neu-500);
}

.best-index-col__more {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--color-neu-300);
  text-decoration: none;
}
.best-index-col__more svg {
  display: block;
  flex-shrink: 0;
  stroke: currentcolor;
  fill: none;
}
.best-index-col__more:hover {
  color: var(--color-neu-300);
  text-decoration: underline;
}

.best-index-col__divider {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--color-neu-20);
}

.best-index-divider {
  flex-shrink: 0;
  width: 1px;
  background-color: var(--color-neu-20);
  align-self: stretch;
}

.best-index-rank {
  list-style: none;
  margin: 0;
  padding: 0;
}

.best-index-rank--no-header {
  padding-top: 16px;
}

.best-index-rank__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0 14px;
  border-bottom: 1px solid var(--color-neu-10);
  height: 70px;
}
.best-index-rank__item--last {
  border-bottom: 0;
}
.best-index-rank__item .no-rank {
  height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--color-neu-500);
}

.best-index-rank__num {
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-neu-900);
}
.best-index-rank--contest .best-index-rank__num {
  color: var(--color-pri-500);
}
.best-index-col--third:nth-child(n+2) .best-index-rank--contest .best-index-rank__num {
  color: var(--color-neu-900);
}

.best-index-rank__novel {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 2px;
  text-decoration: none;
}
.best-index-rank__novel:hover .best-index-rank__title {
  text-decoration: underline;
}

.best-index-rank__title {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-neu-500);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.best-index-rank__author {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-neu-300);
}

.novel-top5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 19px;
  width: 100%;
}
.novel-top5 a:hover .novel-cover img {
  transform: scale(1.04);
}
.novel-top5 a:hover {
  text-decoration: none;
}

.best-rank-grid a:hover {
  text-decoration: none;
}
.best-rank-grid a:hover .novel-cover img {
  transform: scale(1.04);
}

.novel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 148px;
}
.novel-wrap:hover, .novel-wrap:focus {
  text-decoration: none;
  outline: none;
}

.novel-cover {
  width: 100%;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--color-neu-20);
  height: 207px;
}
.novel-cover img {
  width: 100%;
  transition: 0.3s cubic-bezier(0.15, 0, 0.2, 1);
  margin: 0 auto;
}

.cover-badge-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cover-badge-wrap .badge-19 {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 3;
  width: 22px;
  height: 22px;
}

.top5-rank {
  position: absolute;
  width: 62px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='48' viewBox='0 0 62 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 48L62 0V48H0Z' fill='%23121212'/%3E%3C/svg%3E%0A");
  right: 1px;
  bottom: 1px;
  z-index: 2;
  border-radius: 0 0 9px 0;
}
.top5-rank > div {
  position: absolute;
  color: var(--color-neu-00);
  font-size: 16px;
  font-weight: bold;
  right: 6px;
  bottom: 9px;
}
.top5-rank .month {
  font-size: 32px;
  line-height: 1;
  position: absolute;
  right: 17px;
  bottom: -4px;
}
.top5-rank span.outline {
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-text-stroke: 5px var(--color-neu-900);
  z-index: -1;
}

.novel-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  align-items: flex-start;
  text-align: left;
}

.novel-title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--color-neu-900);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  height: 44px;
  word-break: break-all;
}
.novel-title .contest {
  color: var(--color-pri-500);
  font-weight: 700;
  flex-shrink: 0;
}

.novel-author-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
  min-width: 0;
  margin-top: 2px;
}

.novel-author {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-neu-500);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-range {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-neu-300);
}
.rank-range svg {
  display: block;
  flex-shrink: 0;
}
.rank-range.rank-new {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  color: var(--color-sec-org-500);
  display: inline-flex;
  padding: 0 1px;
}
.rank-range.rank-up {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-neu-300);
  gap: 4px;
}
.rank-range.rank-up svg path {
  fill: var(--color-sec-red-500);
  stroke: var(--color-sec-red-500);
}
.rank-range.rank-down {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-neu-300);
  gap: 4px;
}
.rank-range.rank-down svg path {
  fill: var(--color-pri-500);
  stroke: var(--color-pri-500);
}
.rank-range.rank-same {
  color: var(--color-neu-200);
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rank-range.rank-same svg rect {
  fill: var(--color-neu-100);
}

.novel-genre {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-neu-300);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.novel-genre span + span {
  margin-left: -3px;
}

.novel-meta-wrap {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  color: var(--color-neu-300);
}

.novel-meta {
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
  flex-direction: row;
}
.novel-meta span {
  color: var(--color-neu-500);
}
.novel-meta + .novel-meta {
  padding-left: 11px;
}
.novel-meta + .novel-meta::before {
  display: inline-block;
  vertical-align: top;
  margin: 4px 0 0 -6px;
  width: 1px;
  height: 10px;
  background-color: var(--color-neu-40);
  content: "";
  position: absolute;
}

.best-rank-list {
  width: 100%;
  font-size: 15px;
}
.best-rank-list a {
  display: flex;
  height: 55px;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-neu-500);
  border-bottom: 1px solid var(--color-neu-20);
  background: var(--color-neu-00);
}
.best-rank-list a div {
  font-size: 15px;
  line-height: 20px;
}
.best-rank-list a:hover, .best-rank-list a:focus {
  text-decoration: none;
  outline: none;
}
.best-rank-list .title-wrap:hover {
  text-decoration: underline;
}
.best-rank-list .index {
  background-color: var(--color-neu-10);
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-neu-900);
  border-bottom: 1px solid var(--color-neu-20);
}
.best-rank-list .index > div {
  text-align: center;
  color: var(--color-neu-900);
  font-weight: 500;
  justify-content: center;
}
.best-rank-list .index .num {
  width: 70px;
}
.best-rank-list .index .title {
  width: 265px;
  padding: 0;
}
.best-rank-list .index .rank-range {
  padding-right: 24px;
  font-size: 15px;
}
.best-rank-list .num {
  width: 70px;
  font-weight: bold;
  text-align: center;
  color: var(--color-neu-900);
  flex-shrink: 0;
}
.best-rank-list .title {
  width: 265px;
  color: var(--color-neu-900);
  display: flex;
  align-items: center;
  gap: 4px;
  word-break: break-all;
  flex-shrink: 0;
  padding-right: 16px;
}
.best-rank-list .title .badge-19 {
  width: 16px;
  height: 16px;
}
.best-rank-list .title .contest {
  color: var(--color-pri-500);
  font-weight: 700;
  flex-shrink: 0;
}
.best-rank-list .title .contest + .badge-19 {
  margin-left: 4px;
}
.best-rank-list .title .contest + .title-wrap {
  margin-left: 4px;
}
.best-rank-list .title .title-wrap {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--color-neu-900);
}
.best-rank-list.column-6 .title {
  width: 315px;
}
.best-rank-list.column-5 .title {
  width: 385px;
}
.best-rank-list .author {
  width: 100px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color-neu-500);
  flex-shrink: 0;
  padding: 0 16px;
  box-sizing: border-box;
}
.best-rank-list .genre {
  width: 140px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color-neu-500);
  padding: 0 16px;
  box-sizing: border-box;
}
.best-rank-list .genre span + span {
  margin-left: -3px;
}
.best-rank-list .time {
  width: 50px;
  text-align: center;
}
.best-rank-list .view-count {
  width: 120px;
  text-align: center;
  color: var(--color-neu-500);
  flex-shrink: 0;
}
.best-rank-list .rank-range {
  justify-content: flex-start;
  flex-shrink: 0;
  margin-left: 20px;
}
.best-rank-list .rank-range.rank-up, .best-rank-list .rank-range.rank-down {
  font-size: 14px;
}
.best-rank-list .rank-range.rank-same {
  width: 17px;
  justify-content: center;
}
.best-rank-list.contest div {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 10px;
}
.best-rank-list.contest a {
  gap: 0;
  padding: 0;
}
.best-rank-list.contest .index {
  padding: 0;
  gap: 0;
}
.best-rank-list.contest .index .genre {
  padding: 0 20px 0 0;
}
.best-rank-list.contest .num {
  width: 54px;
}
.best-rank-list.contest .author {
  width: 80px;
}
.best-rank-list.contest .title {
  width: 204px;
  margin: 0;
}
.best-rank-list.contest.no-percent .title {
  width: 268px;
}
.best-rank-list.contest .genre {
  width: 100px;
}
.best-rank-list.contest .view-count {
  width: 54px;
}
.best-rank-list.contest .rank-changes {
  width: 54px !important;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  color: var(--color-neu-500);
}
.best-rank-list.contest .rank-changes .new {
  color: var(--color-sec-org-500);
}
.best-rank-list.contest .percent {
  width: 64px;
  font-size: 12px;
  text-align: center;
}

.novel-top5 .rank-num,
.best-rank-grid .rank-num {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background-color: var(--color-opa-neubk-rgba-90);
  color: var(--color-neu-00);
  z-index: 3;
  right: 1px;
  bottom: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

.best-rank-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 19px;
}

.best-tab {
  display: flex;
  flex-direction: column;
  margin-bottom: -10px;
}
.best-tab:has(.best-tab__item:nth-child(2):last-child) {
  width: 480px;
}
.best-tab__row {
  display: flex;
  align-items: stretch;
}
.best-tab__item {
  flex: 1 0 0;
  position: relative;
  height: 46px;
  min-width: 0;
  margin-left: -1px;
  padding: 5px 16px;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: var(--color-neu-300);
  background: var(--color-neu-00);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid var(--color-neu-50);
  z-index: 0;
}
.best-tab__item:first-child {
  margin-left: 0;
  border-radius: 10px 0 0 10px;
}
.best-tab__item:last-child {
  border-radius: 0 10px 10px 0;
}
.best-tab__item.active {
  color: var(--color-pri-500);
  border-color: var(--color-pri-500);
  z-index: 1;
}
.best-tab__item:hover:not(.active) {
  color: var(--color-pri-500);
}
.best-tab__row:first-child:not(:last-child) .best-tab__item:first-child {
  border-radius: 10px 0 0 0;
}
.best-tab__row:first-child:not(:last-child) .best-tab__item:last-child {
  border-radius: 0 10px 0 0;
}
.best-tab__row:last-child:not(:first-child) {
  margin-top: -1px;
}
.best-tab__row:last-child:not(:first-child) .best-tab__item:first-child {
  border-radius: 0 0 0 10px;
}
.best-tab__row:last-child:not(:first-child) .best-tab__item:last-child {
  border-radius: 0 0 10px 0;
}

.tooltip {
  position: absolute;
  width: 300px;
  top: 5px;
  left: 26px;
  z-index: 11;
  padding: 16px 38px 16px 16px;
  background-color: var(--color-neu-00);
  border: 1px solid var(--color-neu-30);
  box-sizing: border-box;
  border-radius: 6px;
  line-height: normal;
  font-size: 13px;
  display: none;
}
.tooltip .tooltip-close {
  display: inline-block;
  position: absolute;
  top: 17px;
  right: 13px;
  width: 16px;
  height: 16px;
  background-image: url("../../images/best/icon20-close.svg");
  background-size: 100%;
}
.tooltip p {
  margin-top: 8px;
  color: var(--color-neu-400);
  font-size: 13px;
  font-weight: 400;
}
.tooltip p:first-of-type {
  margin: 0;
}

.best-index-col .empty {
  flex: 1;
  height: auto;
}

.best-lnb__accordion {
  gap: 4px;
  display: flex;
  flex-direction: column;
}