footer {
    width: 100%;
    min-width: 1360px;
    margin-top: 60px;
}

#footer_nav {
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
    list-style: none;
    margin-bottom: 1rem;    
}

#footer_nav li {
    position: relative;
    padding: 0 1.5rem;
}

#footer_nav li a {
    font-size: 15px;
    text-decoration: none;
    color: #6A6E76;
}

#footer_nav li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background: #6A6E76;
}

#footer_nav .highlight a {
    color: var(--color-black);
    font-weight: bold;
}

#copyright {
    font-size: 13px;
    color: #6A6E76;
    text-align: center;
    margin-bottom: 1rem;
}

#inspection {
    margin-bottom: 1rem;
    font-size: 13px;
    color: #6A6E76;
    text-align: center;
}

#company {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding-bottom: 2rem;
}

#game_rating_img {
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
#game_rating:hover #game_rating_img {
    display: block;
}