/** メインロゴ表示サイズ */
.site-header-logo img {
max-height: 80px;
}
.site-header--layout--nav-float .site-header-logo {
    margin-right: 0em;
}

/* ヘッダーナビのアイコン */
.global-nav-name i {
    font-size: 1.25rem;
    display: block;
    color: var(--vk-color-primary);
    margin-right: 0;
    margin-bottom: 0.5rem;
}

/* ヘッダーナビのボーダー */
.global-nav, .header_scrolled .site-header {
    border-top: 1px solid var(--vk-color-border-hr);
}

/* 各ページのヘッダー背景挿入 */
.page-header {
    background-image: url("/img/八尾市の景色.webp");
}

@media (min-width: 992px) {
    /** サイドバーサイズ調整 */
    .main-section {
        width: calc(100% - 265px);
    }
    .sub-section {
        width: 260px;
    }

    /* フッターカラム割合調整 */
    footer.site-footer div.container.site-footer-content div.row div.col-lg-6.col-md-6:first-child {
        flex: 0 0 35%;
        max-width: 35%;
    }
    footer.site-footer div.container.site-footer-content div.row div.col-lg-6.col-md-6:last-child {
        flex: 0 0 65%;
        max-width: 65%;
    }
}

/* PCサイズ（デフォルト）ではリンクを無効化 */
.mobile-only-link {
    pointer-events: none;
    cursor: default;
}

/* スマホサイズ（768px以下）の時だけ有効化 */
@media screen and (max-width: 767px) {
    .mobile-only-link {
        pointer-events: auto;
        cursor: pointer;
    }
}
