body {
    padding-top: 120px;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 5px 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.fixed-header.header-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #b6b6b6;
    filter: blur(1px);
}

/* PC用リンクスタイル */
ul.nav.nav-pills a.nav-link {
    color: black !important;
    margin-right: 10px;
}

.nav-link[aria-current="page"] {
    display: none;
}

.logo-img {
    max-width: 250px;
    height: auto;
}

/* PC表示時はモバイルメニューボタンとモバイルメニューを非表示に */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-nav {
    display: none; /* 初期状態で非表示 */
}

/* スマホ表示時 */
@media (max-width: 1000px) {
    body {
        padding-top: 85px;
    }
    .fixed-header {
        padding: 5px 0;
    }
    .logo-img {
        max-width: 150px;
        height: auto;
    }
    /* .header-spacing {
        margin-top: 85px;
    } */

    /* PC用ナビを非表示 */
    .desktop-nav {
        display: none;
    }

    /* モバイル用メニューボタンは表示 */
    .mobile-menu-btn {
        display: block;
    }

    /* メニューが表示されたときに全幅で展開 */
    .mobile-nav {
        background-color: #fff;
        width: 100%;
        box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    }

    .mobile-nav ul.nav.nav-pills {
        flex-direction: column;
        padding: 10px;
    }
    .mobile-nav .nav-link {
        margin: 5px 0;
    }
}
