@charset "utf-8";
/* CSS Document */
.main-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    background-color: #abcdef;
}

.sub-list {
    float: left;
}

.sub-list a {
    display: block;
    color: #000000;
    text-align: center;
    padding: 12px 14px;
    text-decoration: none;
}

.sub-list a:hover:not(.active) {
    background-color:#000000;
    color: #FF356E;
}
.sub-list a:hover {
    color: #000000;
}
.sub-list active {
    color: white;
    background-color: #4CAF50;
}