body {
    padding-top: 0px;
    margin: 0px;
    background-color: rgb(245, 245, 245);
}


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


.top {
    color: antiquewhite;

    a {
        color: antiquewhite !important;
    }

    .parallax {
        background-image: url("/images/headers/apps.jpg");
    }
}

.top-title {
    text-align: center;
    color: rgb(31, 48, 116);
}

.news-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 30px;

    img {
        flex-grow: 1;
    }

    p {
        flex-grow: 3;
        font-size: large;
        margin-left: 50px;
    }
}

.apps-list {
    width: calc(100% - 160px);
    margin: 10px 80px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: start;
    align-content: start;
    gap: 15px;

    .app {
        text-decoration: none;

        div {
            user-select: none;
            cursor: pointer;
            width: 100px;
            height: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;

            img {
                margin-top: 5px;
                width: 80px;
                height: 80px;
            }

            p {
                font-size: medium;
                margin: 0;
                text-align: center;
                white-space: nowrap;
                color: black;
            }
        }
    }
}

.items {
    margin: 0px 0px 60px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-section {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 30px;

    h2 {
        margin: 0px 100px;
        color: #333;
    }
}

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

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

        a {
            color: #e3e3e3;
        }
    }
}

@media (max-width: 820px) {
    .item-section h2 {
        margin: 0px 30px;
        color: #333;
    }

    .apps-list {
        margin: 10px 30px;
        width: calc(100% - 60px);
    }
}

@media (max-width: 450px) {
    .apps-list {
        .app {
            div {
                width: 70px;
                height: 95px;

                img {
                    width: 70px;
                    height: 70px;
                }
            }
        }
    }
}