body {
    font-family: 'Noto Sans JP', 'Public Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

section {
    scroll-margin-top: 130px;
}

@media (min-width: 768px) {
    section {
        scroll-margin-top: 30px;
    }

    html {
        scroll-padding-top: 30px;
    }
}

:where(a, button) {
    transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

:where(a, button):focus-visible {
    outline: 2px solid #991c30;
    outline-offset: 2px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #991c30;
}
