#test-content {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: space-around;
    box-sizing: border-box;
    gap: 20px;
}

#test-type, #test-body {
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
    align-items: self-start;
    justify-content: center;
}

#test-type {
    width: 100px;
}

#test-body {
    width: 100%;
}

#test-type .type-name {
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    color: #999999;
    width: 100%;
    cursor: pointer;
    margin-bottom: 8px;
    border-radius: 6px;
    transition: 0.4s;
}

#test-type .type-name:hover {
    color: #6f33ff;
    background-color: #ebe3ff;
}

#test-type .type-on {
    color: #ffffff !important;
    background-color: #8b5dff !important;
}

.test-block {
    margin-top: 20px;
    width: 100%;
}

.test-block h2 {
    font-size: 18px;
    line-height: 1em;
    font-weight: bold;
    color: #8b5dff;
    border-bottom: 1px #cccccc solid;
    margin-bottom: 10px;
    padding: 0 0 8px 8px;
    box-sizing: border-box;
}

@media (max-width: 500px) {
    #test-type {
        width: 60px;
    }

    #test-type .type-name {
        font-size: 14px;
        line-height: 30px;
        margin-bottom: 4px;
    }
}