@charset "UTF-8";

/* スクロールバーのスタイル */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,0.3);
}

*:hover::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,0.3);  
}

body {
    height: 100vh;
    min-width: 350px;
    max-width: 1920px;
    font-family: 'M PLUS 1p';
}

.title-text {
    font-size: clamp(1rem, 0.824rem + 0.75vw, 1.5rem);
}

.footer {
    position: sticky;
    top: 100vh;
    width: 100%;
    height: fit-content;
    margin-top: 48px;
    padding: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 0%;
    background-color: #3A3A3A;
}

.footer-text {
    font-size: 8px;
}