* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    height: 100vh;
    font-family: "Roboto", sans-serif;
}
@font-face {
    font-display: swap;
}
.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
.bold {
    font-weight: 900;
}
a,
a:visited {
    color: inherit;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    padding: 1rem 0 2rem;
    text-align: center;
    color: #19571f;
}
header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
header a {
    display: flex;
    justify-content: flex-start;
}
header div.logo a img {
    width: 100%;
    max-width: 564px;
}
header div.line {
    display: flex;
    justify-content: center;
    padding: 1rem;
    background-color: rgb(204, 0, 0);
    color: #fff;
}
header div.line span {
    text-decoration: underline;
}
header section.menu {
    border: 4px solid #113b15;
    border-width: 4px 0;
    background-color: #19571f;
    width: 100%;
}
header section.menu ul.menu {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0.5rem;
    list-style-type: none;
}
header section.menu ul.menu li {
    margin: 0.5rem;
    color: #fff;
}
header section.menu ul.menu li.url {
    padding: 0.5rem;
    border-radius: 7px;
    background-color: #666;
}
header section.menu ul.menu li.url::after {
    content: "";
    width: 0px;
    height: 1px;
    display: block;
    background: #fff;
    transition: 300ms;
}
header section.menu ul.menu li.url:hover::after {
    width: 100%;
}
header section.menu ul.menu li.sub-menu {
    position: relative;
}
header section.menu ul.menu li.sub-menu ul.sub-menu {
    display: none;
    position: absolute;
    flex-direction: column;
    align-items: baseline;
    min-width: 260px;
    background-color: #19571f;
    list-style-type: none;
}
header section.menu ul.menu li.sub-menu ul.sub-menu li.url {
    margin: 0;
    max-width: 100%;
    background-color: #19571f;
}
header section.menu ul.menu li.url.hub-index-item a.hub-index-link,
header section.menu ul.menu li.url.hub-index-item a.hub-index-link:visited {
    font-weight: 400;
    text-decoration: none;
    position: relative;
    padding-right: 1rem;
}
header section.menu ul.menu li.url.hub-index-item a.hub-index-link::after {
    content: "◆";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    opacity: 0.8;
}
footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 3rem 0;
    border-top: 4px solid #0d2e11;
    color: #f0f0f0;
    background-color: #19571f;
    text-align: center;
    font-size: 0.9rem;
}
footer a:hover {
    color: #8b8b8b;
}
footer div.block {
    margin: 1rem 0;
}
footer div.block img {
    padding-left: 3rem;
}
footer div.block img.soc {
    width: 98px;
    height: 50px;
}
footer div.block img.digital {
    width: 271px;
    height: 30px;
}
@media only screen and (max-width: 720px) {
    header div.logo a img {
        height: auto;
    }
}
