#footer {
    width: 100%;
    box-sizing: border-box;
    padding: 60px 2%;
    background: #F4F4F4;
}

#footer a {
    color: #333;
    display: block;
    width: 100%;
    text-align: center;
}

#footer ul {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

#footer ul li {
    font-size: 12px;
    list-style: none;
}

.fixed-contact {
    position: fixed;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    padding-inline: 20px;
    z-index: 10;
    display: flex;
    gap: 20px;
}

.fixed-contact .fixed-contact__link {
    font-weight: bold;
    font-size: 10px;
    background: #78A6B9;
    padding: 5px 20px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
    white-space: nowrap;
}

.fixed-contact .fixed-contact__link span {
    font-size: 16px;
    display: block;
    margin-top: 5px;
}


#copy {
    clear: both;
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
    color: #fff;
    background: #78A6B9;
}

@media (max-width: 1024px) {
    #footer {
        padding: 40px 2%;
    }
}