@charset "utf-8";

.footer {
    position: relative;

}

.footer::after {
    content: "";
    width: 100%;
    height: 24px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(/system_panel/uploads/images/20260213001711776482.png) repeat-x bottom/100% auto;
}

.footer .inner-12 {
    padding: 120px 0 163px;
    display: flex;
    justify-content: space-between;
}

.footer .f-logo a {
    max-width: 205px;
    width: 100%;
    display: block;
    margin-bottom: 8px;
}

.footer .f-logo p {
    font-family: var(--main);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 20px;
    color: #000;
}

.footer .col-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .col-left .f-logo a {
    transition: .4s ease;
}

.footer .col-left .f-logo a:hover {
    opacity: 50%;
}

.footer .snslist {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 23px;
}

.footer .snslist a:hover {
    opacity: 50%;
}

.footer .snslist a {
    transition: .4s ease;
}

.footer .copy {
    font-family: var(--main);
    font-weight: 700;
    font-size: 12px;
}

.footer .f-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 75px;
}

.footer .f-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .f-menu .menu-item:hover .menu-en {
    color: #D32E26;
}

.footer .f-menu .menu-item:hover .menu-ja {
    color: #000000;
}

.footer .f-menu .menu-item .menu-en {
    font-family: var(--eng);
    font-weight: 700;
    font-size: 24px;
    color: #000;
    text-transform: uppercase;
    transition: .4s ease;
}

.footer .f-menu .menu-item .menu-ja {
    font-family: var(--main);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: #acacac;
    transition: .4s ease;
}

.footer .f-menu .column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.footer .f-menu .column .has-img {
    display: flex;
    gap: 2%;
}

.footer .f-menu .column .has-img a {
    max-width: 157px;
    width: 100%;
    position: relative;
}

.footer .f-menu .column .has-img a:hover .tag {
    background: #d32e26;
    color: #FFF;
}

.footer .f-menu .column .has-img .tag {
    position: absolute;
    transition: .4s ease;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -12px;
    font-family: var(--main);
    font-weight: 700;
    font-size: 16px;
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    letter-spacing: 0.04em;
    text-align: center;
    color: #fff;
    border-radius: 17px;
    background: #000;
    line-height: calc(34/16);
    width: fit-content;
    padding: 0 24px;
    z-index: 10;
}

.footer .f-menu .list {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 32px;
    width: 100%;
}

@media (max-width: 1300px) {
    .footer .inner-12 {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .footer .col-left {
        flex-direction: row;
        align-items: flex-end;
    }
}



@media (max-width: 767px) {

    .footer .f-menu .list {
        grid-template-columns: 1fr;
    }

    .footer .f-menu .column .has-img {
        flex-wrap: wrap;
        gap: 30px 16px;
    }

    .footer .col-left {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer .inner-12 {
        padding-bottom: 40px;
    }

    .footer .col-left .f-logo,.footer .element {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .f-logo p {
        text-align: center;
    }


}