@charset "UTF-8";

/* ナビゲーションメニュー
---------------------------------- */
.g-nav__item--ranking {
  margin-left: 5%;
  background: #fff;
  color: #EF5A57;
  border-radius: 60px 0 0 60px;
}

@media screen and (max-width: 767px) {
  .g-nav__item--ranking {
    margin-left: 0;
    background: #fff;
    color: #EF5A57;
    border-radius: 60px;
  }
}

/* 記事
---------------------------------- */
.article {
  min-height: 75rem;
}

@media screen and (max-width: 767px) {
  .article {
    min-height: 36rem;
  }
}

.article__text {
  font-size: 2rem;
  margin-bottom: 4rem;
  margin-left: 1rem;
}

@media screen and (max-width: 767px) {
  .article__text {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    margin-left: 0;
  }
}

.article__text.text-center {
  text-align: center;
}

.article-boxes {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .article-boxes {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 4rem;
  }
}

.article-boxes__item {
  flex: 1;
}

.article-box {
  padding: 2rem 1.5rem;
  border: 1px solid #ddd;
}

.article__level2-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .article__level2-heading {
    font-size: 2rem;
  }
}

.article__level2-heading::before,
.article__level2-heading::after {
  content: '';
  display: inline-block;
  width: 7rem;
  height: 1px;
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .article__level2-heading::before,
  .article__level2-heading::after {
    width: 3rem;
  }
}

.article-boxes__ranking {
  list-style: none;
}

.article-boxes__ranking-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 5rem;
}

@media screen and (max-width: 767px) {
  .article-boxes__ranking-item {
    padding-left: 2rem;
  }
}

.article-boxes__ranking-item::before {
  content: '';
  display: inline-block;
  width: 5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
}

.first-place {
  font-size: 2rem;
  font-weight: bold;
}

.first-place::before {
  background-image: url('../../img/ranking_icon1.svg');
}

.second-place {
  font-size: 2rem;
  font-weight: bold;
}

.second-place::before {
  background-image: url('../../img/ranking_icon2.svg');
}

.third-place {
  font-size: 2rem;
  font-weight: bold;
}

.third-place::before {
  background-image: url('../../img/ranking_icon3.svg');
}

.fourth-place::before {
  content: '第4位';
  text-align: center;
}

.fifth-place::before {
  content: '第5位';
  text-align: center;
}

.sixth-place::before {
  content: '第6位';
  text-align: center;
}

.seventh-place::before {
  content: '第7位';
  text-align: center;
}

.eighth-place::before {
  content: '第8位';
  text-align: center;
}

.ninth-place::before {
  content: '第9位';
  text-align: center;
}

.tenth-place::before {
  content: '第10位';
  text-align: center;
}

.article-boxes__ranking-item:last-child {
  margin-bottom: 0;
}
