/* 人気の記事リスト
-------------------------------- */
.popular_list .CB_ {
  border: 5px solid #E6F2E9;
  @media (min-width: 768px) {
    min-height: 530px;
  }
  box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1);
  background-color: #fdfdf8;
}
.popular_list .HeadingBox_ h2,
.popular_list .HeadingBox_ h3 {
  text-align: left;
  line-height: 1.5em;
  font-size: 18px !important;
}
.popular_list .ButtonBox_ {
  @media (min-width: 768px) {
    position: absolute;
    bottom: 10px; left: 0; right: 0;
  }
  margin: 0 auto;
  padding: 0 10px;
}

/* カテゴリーリスト
-------------------------------- */
@media (max-width: 767px) {
  .category_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.category_list .CB_ {
  @media (min-width: 768px) {
    height: 350px;
  }
  background-color: #E6F2E9;
  box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1);
}
.category_list .ImageBox_ {
  @media (max-width: 767px) {
    margin-bottom: 20px;
  }
}
.category_list .ImageBox_ img {
  @media (max-width: 767px) {
    width: 150px;
  }
}
.category_list .HeadingBox_ {
  @media (max-width: 767px) {
    margin-bottom: 20px;
  }
}
.category_list .HeadingBox_ h2,
.category_list .HeadingBox_ h3 {
  text-align: center;
  line-height: 1.5em;
  font-size: 16px !important;

  @media (max-width: 767px) {
    padding-bottom: 45px;
  }
}
.category_list .ButtonBox_ {
  position: absolute;
  bottom: 10px; left: 0; right: 0;

  margin: 0 auto;
  padding: 0 10px;

  @media (max-width: 767px) {
    width: 100% !important;
  }
}
.category_list .ButtonBox_ a {
  @media (max-width: 767px) {
    width: 100% !important;
  }
}

/* 記事一覧リスト
-------------------------------- */
.article_list .CB_ {
  border: 5px solid #E6F2E9;
  @media (min-width: 768px) {
    min-height: 450px;
  }
  box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1);
  background-color: #fdfdf8;
}
.article_list .HeadingBox_ h2,
.article_list .HeadingBox_ h3 {
  text-align: left;
  line-height: 1.5em;
  font-size: 18px !important;
}
.article_list .ButtonBox_ {
  @media (min-width: 768px) {
    position: absolute;
    bottom: 10px; left: 0; right: 0;
  }
  margin: 0 auto;
  padding: 0 10px;
}

/* カテゴリーのテキストリンク
-------------------------------- */
.category-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}
.category-link::before {
  content: ">";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #7aa186;
  color: white;
  margin-right: 8px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.category-link:hover {
  color: #007b5e;
}
.category-link:hover::before {
  background-color: #5a7c66;
}

/* タグリスト
-------------------------------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.tag-list li a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  background-color: #f0f0f0;
  border-radius: 999px; /* pill型 */
  transition: background-color 0.2s, color 0.2s;
}
.tag-list li a:hover {
  background-color: #d5e8d4;
  color: #006600;
}

