div#Main h2:first-child {
    display: none;
}

div#Main h2 {
    margin-bottom: 0.5rem;
}

div#Main h2 a {
    background-color: rgba(0, 0, 139, .7);
    color: #fff;
    display: block;
    font-size: 129%;
    font-weight: bold;
    padding: 20px 30px;
    position: relative;
    text-decoration: none;
    transition: background-color .5s linear;
}

div#Main h2 a:hover {
    background-color: rgba(0, 0, 139, 1);
}

div.bg_green div#Main h2 a {
    background-color: rgba(33, 130, 69, 1);
}

div.bg_green div#Main h2 a:hover {
    background-color: rgba(33, 130, 69, .7);
}

.fa-fw {
    vertical-align: middle;
}

h2 .ico-acc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    right: 3%;
}

h2 .ico-acc.active {
    animation: rotate01 .5s ease 0s forwards;
}

h2 .ico-acc.unactive {
    animation: rotate02 .5s ease 0s forwards;
}

@keyframes rotate01 {
    100% {
        margin-top: -1px;
        transform: translateY(-50%) rotate(180deg);
    }
}

@-webkit-keyframes rotate02 {
    0% {
        margin-top: -1px;
        transform: translateY(-50%) rotate(180deg);
    }

    100% {
        margin-top: 0px;
        transform: translateY(-50%) rotate(0deg);
    }
}

@-moz-keyframes rotate02 {
    0% {
        margin-top: -1px;
        transform: translateY(-50%) rotate(180deg);
    }

    100% {
        margin-top: 0px;
        transform: translateY(-50%) rotate(0deg);
    }
}

@keyframes rotate02 {
    0% {
        margin-top: -1px;
        transform: translateY(-50%) rotate(180deg);
    }

    100% {
        margin-top: 0px;
        transform: translateY(-50%) rotate(0deg);
    }
}

div#Main ul {
    display: flex;
    justify-content: flex-start;
    padding: 0.5rem 0 1.5rem;
}

div#Main ul>li {
    width: calc((100% - 4rem) / 3);
    border: 1px solid #00008b;
    box-sizing: border-box;
}

div.bg_green div#Main ul > li {
    border: 1px solid #1B8343;
}

div.bg_green a {
    color: #1B8343;
}

div#Main ul>li:nth-child(2) {
    margin: 0 2rem;
}

div#Main ul>li>a {
    display: block;
    padding: 1.2rem;
}

div#Main ul>li strong {
    font-size: 1rem;
    font-weight: bold;
    display: block;
    border-bottom: 1px dashed #999;
    padding-bottom: 0.3rem;
    margin-bottom: 0.3rem;
}

div#Main ol {
    list-style-type: none;
    counter-reset: item;
}

div#Main ol li {
    list-style-type: none;
    margin-left: 0;
    text-indent: -1rem;
    padding-left: 1rem;
}

div#Main ol li:before {
    counter-increment: item;
    content: counter(item)' ';
}

div#Main li.links ol {
    padding: 1rem;
    line-height: 1.5rem;
}