@charset "utf-8";

/* ============== footer ===============*/
footer{
    background: var(--color-navy-1);
    color: var(--color-light-1);
}
.footer_container {
    padding: 48px 0;
}
.footer_logo{
    max-width: 160px;
    margin-bottom: 24px;
}
.footer_contents {
    display: flex;
    justify-content: space-between;
}
.footer_left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.info {
    display: flex;
    gap: 8px;
}
.footer_right, .footer_link {
    display: flex;
    gap: 16px;
}
.footer_right>li:nth-child(odd) {
    color: var(--color-navy-4);
}
.family_wrap {
    position: relative;
    height: fit-content;
}
.family_site {
    width: 148px;
    color: var(--color-light-1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    position: relative;
    cursor: pointer;
}
.family_site::after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--color-orange-1);
    position: absolute;
    bottom: -6px;
}
.sub_site {
    margin-top: 16px;
    color: var(--color-light-1);
    font-weight: 700;
    display: none;
}
.site_list {
    display: block;
    width: 100%;
}
.site_list:hover {
    color: var(--color-orange-1);
}

/* responsive */
@media screen and (max-width: 1023px){
    .footer_contents {
        flex-direction: column-reverse;
    }
    .info {
        display: block;
    }
    .info>.dash {
        display: none;
    }
    .footer_right>li:nth-child(2) {
        display: none;
    }
    .footer_right {
        display: block;
    }
    .family_wrap {
        margin: 16px 0;
    }
    .family_site {
        width: 100%;
        padding: 8px  0;
    }
}
@media screen and (max-width: 1023px){
    footer>.section_inner{
        margin: 0 auto;
        padding: 0;
    }
}
@media screen and (max-width: 767px){
    footer>.section_inner{
        padding: 0 24px;
    }
}