.boby {
    background-color: #434343;
}
.main_container {
    width: 100%;
    justify-content: flex-start;
}
.box {
    display: flex;
    width: 60%;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
.tag {
    width: 100px;
    height: auto;
    text-align: center;
    color: #FAF9F6;
    border-radius: 5px;
    padding: 5px;
    margin: 0 25px;
}
.fix {
    background-color: #FB966E;
}
.update {
    background-color: #66AFC4;
}
.ver {
    font-size: 100%;
    color: var(--color);
    margin-right: 25px;
}
.future_fix {
    border-bottom:1px solid #FB966E;
}
    .future_fix a {
        text-decoration: none;
        color: var(--button_border_color);
    }
    .date {
        font-size: 100%;
        color: var(--color);
    }
    .content {
        width: 50%;
        font-size: 110%;
        color: var(--color);
        line-height: 1.6;
        text-align: left;
        padding: 25px 0;
    }
.patch {
    border-bottom:1px solid var(--company_border_color);
}
.last {
    border: none;
}

/* resize */
@media (max-width: 800px) {
    .box {
        width: 80%;
        flex-direction: column;
    }
    .content {
        width: 98%;
        padding: 10px 0;
    }
    .ver {
        margin-right: 0;
    }
}