:root {
    --final-max-height: 500px;
    --input-primary-color: #744eb5;
    --background-focus-color: #00000011;
    --hover-color: #aab4bd48;
}

body {
    padding-top: 0px;
    margin: 0px;
    width: 100%;
    height: 100vh;
}



/******* ここからメインエリアのスタイル ********/
main {
    text-align: center;
}

.main-view {
    width: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px 0 0 0;
    padding: 80px 0px;
    gap: 20px;
}

.footer {
    background-color: #242736;
    width: 100%;
    padding: 20px 0px;

    .copyright {
        padding: 0px;
        text-align: center;
        font-size: small;
        color: #e3e3e3;

        a {
            color: #e3e3e3;
        }
    }
}