@charset "utf-8";

/* 1240以上 */

@media (min-width:1240px) {
    .content {
        display: flex;
        justify-content: left;
        flex-direction: row;
        margin: auto 100px auto;
        flex-wrap: wrap;
    }
    .linkblock {
        width: 480px;
        margin: 20px;
    }
    .linktitle {
        height: 50px;
        text-align: center;
        line-height: 50px;
        background-color: #DEE2F2;
        margin: auto 100px auto;
    }
    .description {
        text-align: left;
    }

}


/* 1239以下 */

@media (max-width:1239px) {
    .content {
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .linkblock {
        width: 100%;
    }
    .linktitle {
        max-width: 1000px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        background-color: #DEE2F2;
        margin: 0px auto;
    }
    .description {
        text-align: center;
    }
}