html {
    scroll-padding-top: 70px; /* Adjust this value based on your navbar height */
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: #fafafa;
    box-shadow: 0 1px 0 rgba(12, 13, 14, .1), 0 1px 6px rgba(60, 65, 70, .1);
}

.navbar-brand {
    font-weight: 500;
    font-size: 20px;
}

.navbar-brand img {
    width: 32px;
    height: 32px;
}

.navbar-nav .nav-link.active {
    color: #007d9c !important;
}

.main-content main {
    min-height: 80vh;
}

.sidebar .nav-link {
    color: #333;
}

.sidebar .nav .nav-item {
    color: #242729;
    font-size: 13px;
    list-style: none;
}

.sidebar .nav .nav-item a {
    color: #242729;
}

main {
    padding-top: 1.5rem;
}

.footer {
    margin-top: auto;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
}

.row {
    justify-content: space-between;
}
.card {
    width: 48% !important;
    background-color: #EEF3F6 !important;
    border-radius: 3px !important;
}  
.card a {
    display: block;
    color: #333;
    margin-bottom: 15px;
} 
.card ul li {
    position: relative;
    list-style: none;
}
.card ul li::before {
    content: "\1F4C4";
    position: absolute;
    left: -25px;
}

@media (max-width: 767.98px) {
    .sidebar {
        position: static;
        height: auto;
        padding-top: 0;
    }
    
    .sidebar-sticky {
        height: auto;
    }
}
