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

.hidden {
    display: none !important;
}


.upload {
    height: 0px;
    visibility: hidden;
}

.progress {
    width: 100%;
}

.progress.hidden-progress {
    background-color: transparent;

    div {
        display: none;
    }
}

@keyframes move {
    0% {
        left: 0;
        width: 20%;
    }

    50% {
        width: 50%;
    }

    100% {
        left: 80%;
        width: 20%;
    }
}

.comment {
    color: #676767;
}

.over {
    z-index: 6000;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #00000046;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.15s ease-out forwards;

    .dialog {
        animation: zoomIn 0.15s ease-out forwards;
        width: 400px;
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        display: flex;
        flex-direction: column;
        overflow: auto;

        .header {
            height: 60px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;

            .icon-button>span {

                color: black;
            }

            .title {
                font-size: x-large;
                margin: 0px;
            }
        }

        .body {
            flex-grow: 1;
            width: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            margin: 10px 0px;

            img {
                width: 60px;
                margin-right: 10px;
                margin-top: 20px;
            }
        }

        .column-body {
            flex-grow: 1;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 10px 0px;
            box-sizing: border-box;
        }

        .footer {
            height: 60px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: end;
        }
    }


}

.over.closing {
    animation: fadeOut 0.15s ease-out forwards;

    .dialog {
        animation: zoomOut 0.15s ease-out forwards;
    }
}

.setting-header {
    width: calc(100% - 100px);
    height: 300px;
    background-color: #0000003e;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
    overflow: hidden;


    .parallax {
        width: calc(100%);
        height: 300px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        z-index: -999;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;

        .bottom {
            opacity: 0.8;
            font-size: small;
            position: absolute;
            bottom: 00px;
            right: 30px;
        }
    }

    .top-link {
        position: absolute;
        right: 20px;
        bottom: 10px;

        a {
            color: #ffffff80;
        }
    }
}


@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(0.8);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}