@charset "utf-8";

/*=====================================================================
  COLUMN
  news.css を流用しつつ #mainvisual だけテキスト見出しに上書きする。
  (news.css の #mainvisual は news_ttl.jpg の画像置換ハックで、そのまま
   当てるとコラムに「NEWS」バナーが出て <h1 id="mainvisual"> が消えるため)
  scripts.php で news.css の後に enqueue され後勝ちで効く。
  list/article/tags/entrynavi は news.css をそのまま共有。
=====================================================================*/

#mainvisual {
    width: 100%;
    height: auto;
    padding: 50px 0;
    overflow: visible;
    display: block;
    margin: 0 auto 50px auto;
    background: #0e1d3c;
    color: #fff;
    text-align: center;
    font-size: 3.0rem;
    line-height: 1.3;
    letter-spacing: 0.08em;
}

/*--------------------------------
  カテゴリフィルタ (archive / taxonomy)
--------------------------------*/
.column-filter {
    width: 900px;
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.column-filter li {
    list-style: none;
}
.column-filter li a {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #0e1d3c;
    border-radius: 999px;
    color: #0e1d3c;
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1.4;
}
.column-filter li.is-active a,
.column-filter li a:hover {
    background: #0e1d3c;
    color: #fff;
}

/*--------------------------------
  RELATED / PICK UP (single)
--------------------------------*/
.column-related,
.column-pickup {
    width: 900px;
    max-width: 100%;
    margin: 50px auto 0;
}
.column-related h2,
.column-pickup h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/*--------------------------------
  読了時間
--------------------------------*/
.column-readtime {
    margin-top: 8px;
    font-size: 1.3rem;
    color: #666;
}
