: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;
}


.top {
    color: white;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(75, 0, 130, 0.6));

    a {
        color: white !important;
    }

    .parallax {
        height: 300px;
        background-image: url("/images/headers/treasure.jpg");
    }
}

.main-view {
    width: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 80px 0px;
    gap: 20px;
    background: linear-gradient(135deg, #0f0620 0%, #1a0b3d 25%, #2d1b69 50%, #1a0b3d 75%, #0f0620 100%);
}

.main-view-header {
    width: calc(100% - 60px);
    display: flex;
    align-items: start;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.078);
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 20px 40px 10px 20px;
    box-sizing: border-box;
    outline: 2px solid rgba(255, 255, 255, 0.2);
}

.main-view-header-icon {
    vertical-align: bottom;
    font-size: xx-large;
    color: rgb(231, 194, 8);
}

.main-view-header-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 0 20px;
    font-family: "Inter", "Noto Sans JP", sans-serif;

    span {
        font-weight: 500;
    }
}

.profile {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
}

.point {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: end;

    .text-btn {
        margin: 0 0 10px 0;
        padding: 0;

        p {
            color: rgb(193, 225, 231);
            font-weight: 600;
        }
    }
}

.point-text {
    font-size: xx-large;
    margin: 0;
    font-weight: 700;
    color: white;
    font-family: "Inter";
}

.point-text2 {
    font-size: large;
    margin: 0;
    color: white;
}

.daily-quest {
    width: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.078);
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
    outline: 2px solid rgba(255, 255, 255, 0.2);
}

.daily-quest-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.daily-quest-header-title {
    font-size: larger;
    font-weight: 500;
    color: white;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;

    span {
        vertical-align: bottom;
        color: rgb(118, 186, 24);
    }
}

.daily-quest-header-progress {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    color: #26840a;
    border-radius: 20px;
    padding: 8px;
    background-color: rgb(206, 251, 197);
    margin: 0;
}

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

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

        a {
            color: #e3e3e3;
        }
    }
}