@charset "UTF-8";
footer {
    padding: 0 4%;
    background: #6ACAC4;
}

.footer_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
    margin: auto;
    padding: 54px 0;
}

.footer_list_item a{
    color: var(--white, #fff);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    transition: 0.3s ease;
}

@media (hover:hover) {
    .footer_list_item a:hover {
        opacity: 0.7;
    }
}
@media screen and (max-width:569px) {
    .footer_list{
        flex-direction: column;
        gap: 16px;
    }
}