@charset "UTF-8";
/* ============================================================
   変数設定 */
.list-ranking {
  display: flex;
  gap: 1em;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  margin: 4em 0;
}
.list-ranking__item {
  display: flex;
  flex: 0 0 100%;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0 1.5em 1.5em 1.5em;
  background-color: #eefaff;
}
@media screen and (min-width: 641px) {
  .list-ranking__item {
    flex-basis: 50%;
  }
}
.list-ranking__title {
  position: relative;
  margin-bottom: 1em;
  padding-top: 4em;
}
.list-ranking__title--number {
  position: absolute;
  top: 0;
  left: calc(50% - 1.25em);
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 1.5em;
  background-color: #0599D9;
  line-height: 1;
  font-size: 2em;
  color: #FFF;
}
.list-ranking__title--name {
  font-size: 1.125em;
  font-weight: 500;
  margin-bottom: 0.5em;
  color: #0599D9;
}
.list-ranking__figure {
  margin-bottom: 1em;
}
.list-ranking__figure-image {
  margin: 0 auto;
}