.ranking-wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}

.in-pc .item-wrap {
  display: flex;
  flex-direction: column;
  width: 32%;
}

h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  color: var(--select-color);
}

.ranking-wrap .list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
}

.ranking-wrap .list .item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rank {
  flex: none;
  width: 26px;
  height: 26px;
  background: #006CBF;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
}

.top3 .rank {
  background: #E20413;
}

.ranking-wrap .list .item a {
  min-height: unset;
  font-size: 20px;
  line-height: 28px;
  color: #474747;
}

.ranking-wrap .list .item a:hover {
  color: var(--select-color);
}

.ranking-wrap.in-h5 {
  display: none;
  padding-top: 0;
}
.ranking-wrap.in-h5 .list {
  gap: 15px;
  padding: 45px 0 0;
}
#RankSwiper .swiper-pagination {
  display: flex;
  justify-content: space-between;
  bottom: auto;
  top: 0;
}
#RankSwiper .swiper-pagination-bullet {
  width: 33%;
  height: fit-content;
  margin: unset;
  border-radius: unset;
  font-size: 20px;
  font-weight: 500;
  background: unset;
  color: #969696;
  opacity: unset;
}
#RankSwiper .swiper-pagination-bullet-active {
  color: var(--select-color);
}

@media (max-width: 1200px) {
  .rank {
    width: 22px;
    height: 22px;
    font-size: 14px;
    line-height: 22px;
  }
  .ranking-wrap .list .item a {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 992px) {
  main {
    max-width: 750px;
  }
}
@media (max-width: 768px) {
  .ranking-wrap.in-h5 {
    display: flex;
  }
  .ranking-wrap.in-pc {
    display: none;
  }
}
