/* footer */
#footer {
}
#footer .footer_inner {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}
/* footer_info */
.footer_info {
    width: 25%;
}
.footer_info h3 {
    font-size: 18px;
    margin-bottom: 17px;
}
.footer_info p {
    font-size: 14px;
    line-height: 22.33px;
    font-weight: 300;
}
.footer_info .footer_sns {
    display: flex;
    margin-top: 21px;
}
.footer_info .footer_sns a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #F5F5F5;
    margin-right: 10px;
    position: relative;
}
.footer_info .footer_sns a img {
    width: 20px;
    height: 20px;
    text-align: center;
    position: absolute;
    left: 12px;
    top: 12px;
}
/* footer_list */
.footer_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 65%;
}
.footer_list .list {
    width: 20%;
    margin-bottom: 50px;
}
.footer_list .list h3 {
    font-size: 18px;
    margin-bottom: 20px;
}
.footer_list .list ul {
}
.footer_list .list ul li {
    margin-bottom: 10px;
}
.footer_list .list ul li a {
    font-size: 14px;
    font-weight: 300;
}
/* footer_cc */
.footer_cc {
    text-align: center;
    width: 100%;
    padding: 33px 0;
    border-top: 1px solid;
}
.footer_cc p {
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 960px) {
    #footer .footer_inner {
        display: block;
    }
    .footer_info {
        width: 100%;
        text-align: center;
    }
    .footer_list {
        width: 100%;
        text-align: center;

    }
    .footer_info .footer_sns {
        justify-content: center;
        margin: 50px 0;
    }
}
@media (max-width: 480px) {
    .footer_list {
        display: none;
    }
}