/* footer :s */
#footer {
    padding: 60px 0 50px;
    background: #ffffff;
}
#footer .innersize {
    display: flex;
    gap: 120px;
    padding-bottom: 40px;
}
.f_logo {
    display: block;
    width: 200px;
    height: 48px;
    background-image: url(../img/logo.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.f_texts {
    font-size: 14px;
}
.f_links {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}
.f_links li {
    position: relative;
}
.f_links li:first-child a::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    display: block;
    width: 1px;
    height: 100%;
    background-color: #ddd;
}
.f_links li a {}

.info {
    color: #999;
    word-break: keep-all;
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid #ededed;
    text-align: center;
    color: #aaa;
    font-size: 12px;
}
.copyright span {
    color: #0D79E8;
}
/* footer :e */