@font-face {
  font-family: 'Kelson Sans';
  src: url('./font/Kelson-Sans/Kelson-Sans-Regular.otf') format('opentype'),
       url('./font/Kelson-Sans/Kelson-Sans-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
:root {
    --header-height: 84px;
    --header-border-bottom: 4px;
    --game-banner-width: 1500px;
    --game-content-width: 1200px;
    --content-width: 1000px;
    --footer-width: 1200px;
    --footer-color: #5a5a5a;
}

footer {
    color: #fff;
    font-size: 0.75rem;
    background-color: #000;
    padding: 30px 0px;
    /*height: 190px;*/
}
footer > div {
    display: flex;
    margin: 0 auto;
    width: var(--footer-width);
    /* max-width: var(--footer-width); */
}
footer .company-contact {
    height: 72px;
    font-family: 'Kelson Sans';
    color: var(--footer-color);
    justify-content: space-between;
}
footer .email {
    width: 610px;
    align-self: flex-start;
    display: grid;
    grid-template-areas: 
        "label-1 label-2"
        "email-1 email-2"
    ;
    row-gap: 7px;
    column-gap: 141px;
    grid-auto-columns: min-content;
    grid-auto-rows: min-content;
    border-bottom: 1px solid var(--footer-color);
    padding-bottom: 20px;
}
footer .email > label {
    color: var(--footer-color);
    font-size: 12px;
}
footer .email > a {
    color: #fff;
    font-size: 14px;
}
footer .email :nth-child(1) {
    grid-area: label-1;
}
footer .email :nth-child(2) {
    grid-area: email-1;
}
footer .email :nth-child(3) {
    grid-area: label-2;
}
footer .email :nth-child(4) {
    grid-area: email-2;
}
footer .more {
    font-size: 10px;
    text-align: right;
}
footer .more div:nth-child(2) {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 9px;
}
footer .more img {
    width: 43px;
    height: 43px;
    display: block;
}
footer .more img.briefing {
    width: 120px;
    height: 43px;
}
.company-info {
    display: flex;
    justify-content: space-between;
    align-content: end;
    margin-top: 32px;
}
.company-name :nth-child(1) {
    font-size: 18px;
    font-weight: bold;
}
.company-name :nth-child(2) {
    font-size: 10px;
}

.company-address {
    font-size: 11px;
    color: var(--footer-color);
    text-align: right;
}

.game-advice {
    width: 100%;
    font-size: .75rem;
    justify-content: flex-end;
}
.permission {
    display: flex;
    flex-wrap: wrap;
    /*flex-wrap: nowrap;*/
    align-items: center;
}
.permission a {
    color: var(--footer-color)!important;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    text-decoration: none!important;
}
.permission img {
    height: 1.2em;
    margin-right: .25rem;
}
.permission .split {
    border-left: 1px solid var(--footer-color);
    padding-left: .5rem;
    margin-left: .5rem;
}

.company-address .address img {
    width: 8px;
    height: 11.2px;
}
.copyright {
    font-size: 110%;
    font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 768px) {
    :root {
        --game-banner-width: calc(100vw - 75px);
        --game-content-width: calc(100vw - 75px);
        --content-width: calc(100vw - 75px);
        --footer-width: calc(100vw - 75px);
    }
    footer {
        height: auto;
    }
    footer .company-contact {
        height: auto;
        flex-direction: column;
    }
    footer .email {
        width: 100%;
        column-gap: 60px;
    }
    footer .more {
        text-align: left;
        padding: 35px 0 40px;
        border-bottom: 1px solid var(--footer-color);
    }
    footer .more div:nth-child(2) {
        justify-content: flex-start;
    }
    .company-info {
        flex-direction: column;
        align-items: center;
    }
    .company-name,
    .company-address {
        text-align: center;
    }
    .game-advice {
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .game-advice .comma {
        display: none;
    }
    .permission {
        justify-content: center;
    }
    .permission, 
    .address {
        margin-top: 21px;
    }
}