/* ==========================================================
   リンクの色を青にする
   ========================================================== */
.s-content a {
    color: #007bff;
    text-decoration: none;
}
.Page__header a:hover,
.s-content a:hover {
    color: #007bff;
    text-decoration: underline;
}
.Pager--prev > a,
.Pager--next > a {
    color: #007bff;
}

/* ==========================================================
   左カラム（サイドバー）の最大幅
   ========================================================== */
@media screen and (min-width: 769px) {
    .Columns__left {
        width: 300px;
        max-width: 300px;
    }
    .Columns__right {
        width: calc(100% - 300px);
    }
}

/* ==========================================================
   サイドバー左上のロゴ + サイト名（ブロック表示・中央揃え）
   ========================================================== */
.Brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 0 16px;
    margin: 0;
    text-align: center;
    color: var(--color-secondary);
    background-color: #fff;
    font-size: 0;
}

.Brand::before {
    content: "";
    display: block;
    width: 100%;
    height: 124px;
    margin-top: 0;
    background-image: url("assets/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
}

.Brand::after {
    content: "NetCommons3\Aオンラインマニュアル";
    white-space: pre-line;
    display: block;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 700;
}

/* ==========================================================
   Dark Modeのトグルを非表示にする
   ========================================================== */
.DarkModeToggler {
    display: none !important;
}

/* ==========================================================
   ページ見出し（パンくず形式のH1）が長い場合に折り返さないよう縮小
   ========================================================== */
.Page__header h1 {
    font-size: 1.4rem;
    line-height: 1.5;
}

/* ==========================================================
   左メニュー（サイドバー）の文字サイズを少し小さくする
   ========================================================== */
.Nav__item a {
    font-size: 0.9rem;
}
.Nav .Nav .Nav__item a {
    font-size: 0.85rem;
}
