@charset "UTF-8";

/* CSS Document */

/* footer */
footer {
    box-sizing: border-box;
    width: 100%;
    background: #333;
    padding: 65px 25px 25px;
    position: absolute;
    bottom: 0;
}

.footer_inner {
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.footer_flex {
    display: flex;
    gap: 65px;
}

.footer_logo {
    width: 260px;
    height: 100%;
}

.footer_list_item {
    margin-bottom: 26px;
}

.footer_list_item:last-child {
    margin-bottom: 0;
}

.footer_list_link {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1em;
    font-weight: bold;
}

.footer_list_link_btn {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 190px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 18px;
    line-height: 1em;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer_list_link_btn::after {
    position: absolute;
    content: "";
    background: #333;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    right: 20px;
}

.footer_copyright {
    color: #fff;
    font-size: 12px;
    line-height: 1em;
    text-align: center;
    margin-top: 65px;
}

.footer_bottom {
    display: none;
}

@media screen and (max-width:1440px) {
    footer {
        padding: 4.51vw 1.73vw 1.73vw;
    }

    .footer_flex {
        gap: 4.51vw;
    }

    .footer_logo {
        width: 18.05vw;
    }

    .footer_list_item {
        margin-bottom: 1.8vw;
    }

    .footer_list_link {
        font-size: 0.97vw;
    }

    .footer_list_link_btn {
        width: 13.19vw;
        font-size: 1.25vw;
        padding: 1.04vw 1.73vw;
        border-radius: 0.34vw;
        margin-bottom: 0.69vw;
    }

    .footer_list_link_btn::after {
        width: 0.41vw;
        height: 0.41vw;
        border-radius: 0.2vw;
        right: 1.38vw;
    }

    .footer_copyright {
        font-size: 0.83vw;
        margin-top: 4.51vw;
    }
}

@media screen and (max-width:767px) {
    footer {
        padding: 50px 0 0;
    }

    .footer_inner {
        flex-direction: column;
        padding: 0 50px;
    }

    .footer_flex {
        gap: 60px;
        flex-direction: column;
    }

    .footer_logo {
        width: 240px;
        margin: 0 auto 50px;
    }

    .footer_list {
        display: flex;
        flex-direction: column;
        margin: auto;
    }

    .footer_list_item {
        margin-bottom: 26px;
    }

    .footer_list_link {
        font-size: 14px;
    }

    .footer_list_link_btn {
        width: 190px;
        font-size: 18px;
        padding: 15px 25px;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .footer_list_link_btn::after {
        width: 6px;
        height: 6px;
        border-radius: 3px;
        right: 20px;
    }

    .footer_copyright {
        font-size: 12px;
        margin-top: 65px;
        margin-bottom: 25px;
    }

    .footer_list.pc {
        display: none;
    }

    .footer_bottom {
        display: flex;
        gap: 3px;
    }

    .footer_bottom_btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(#0070C3, #5DCBDA);
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        line-height: 1em;
        padding: 24px;
    }
}
