/* ======================
   SIMPLE NEWS LIST
====================== */
.news-list-title {
  margin-top: 0px;
}

.news-list-block{
  background:#f7f7f7;
  padding: 10px 10px;
  border-radius: 6px;
  margin-top: 0;
  margin-bottom:15px;
}

.news-list-block h2 {
  font-size: 24px;
  color: #000080;
  margin-top: 0px;
  border-bottom: none;
  padding-bottom: 0;
  background: unset;
  border-left: unset;
}

.bs-top-post{
  list-style:none;
  margin:0;
  padding:0;
  border-top:1px solid #ddd;
}

.bs-top-post__item{
  display:flex;
  gap:14px;
  align-items:baseline;
  padding:10px 0;
  border-bottom:1px solid #ddd;
}

/* 本文抜粋を消す */
.bs-top-post__item-detail{
  display:none;
}

.bs-top-post-to-list a{
  color:#2b77b3;
  text-decoration:none;
  font-weight:bold;
}

/* 日付 */
.bs-top-post__item-date{
  min-width:110px;
  color:#666;
  font-size:14px;
}

/* タイトル */
.bs-top-post__item-title{
  color:#2b77b3;
  text-decoration:none;
  font-weight:600;
}

/* カテゴリ */ 
.bs-top-post__item-category:hover{
  text-decoration:underline;
}

.bs-top-post__item-category {
  display: inline-block;
  padding: 2px 10px;
  margin-right: 10px;
  position: relative;
  top: -1px;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;

  border: 1px solid #d97a1d;
  border-radius: 3px;

  background: #fff;
  color: #d97a1d;
  text-decoration: none;
}

/* バージョンアップ */
.bs-top-post__item-category[href*="versionup"] {
  border-color:#2b77b3;
  color:#2b77b3;
}

/* お知らせ */
.bs-top-post__item-category[href*="info"] {
  border-color:#aa5555;
  color:#d97a1d;
}

/* ======================
   VIEW ALL BUTTON
====================== */

.bs-top-post-to-list{
  margin-top: 14px;
  text-align: right;
}

.bs-top-post-to-list a{
  display:inline-block;

  padding: 8px 18px;
  border: 1px solid #d97a1d;
  border-radius: 4px;

  color:#d97a1d;
  background:#fff;

  font-size:14px;
  font-weight:600;
  text-decoration:none;

  transition:0.2s;
  font-size:0;   /* 元文字を消す */
}

.bs-top-post-to-list a::before{
  content:"すべて表示";
  font-size:14px;
}

/* hover */
.bs-top-post-to-list a:hover{
  background:#d97a1d;
  color:#fff;
}

/* ======================
   NEWS LIST MOBILE
====================== */

@media (max-width: 768px) {

  .bs-top-post {
    display: block;
    padding: 10px 0;
  }

  .bs-top-post__item {
    display: block;
  }

  /* 日付 */
  .bs-top-post__item-date {
    display: block;
    font-size: 1em;
    margin-bottom: 4px;
    color: #666;
  }

  /* カテゴリ */
  .bs-top-post__item-category {
    display: inline-block;
    margin-bottom: 6px;
  }

  /* タイトル */
  .bs-top-post__item-title {
    display: block;
    font-size: 1em;
    line-height: 1.4;
  }
}