@charset "utf-8";

/* 1240以上 */

@media (min-width:1240px) {
    .content {
        display: flex;
        justify-content: left;
        flex-direction: row;
        margin: auto 100px auto;
    }
    .title {
        width: 260px;
        margin: 20px;
    }
    .name {
        width: 260px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        background-color: #FADBDA;
    }
    .info {
        width: auto;
        margin: 20px;
        text-align: left;
        line-height: 2;
    }
    .time{
        margin: 20px;
        width: 100%;
    }
}


/* 1239以下 */

@media (max-width:1239px) {
    .content {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .title {
        width: 100%;
    }
    .name {
        max-width: 1000px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        justify-content: center;
        background-color: #FADBDA;
        margin: 0px auto;
    }
    .info {
        width: auto;
        margin: 20px;
        text-align: center;
        line-height: 2;
    }
    .time{
        margin: 20px;
        width: auto;
    }
}