#footer {
    background-color: #111;
}

#footer .center {
    width: 85%;
    min-width: 1400px;
}

.f1 {
    width: 100%;
    padding: 50px 0 30px;
    border-bottom: 1px solid #666;
}

.f1 > p {
    font-size: 18px;
    color: #00aeea;
    font-family: 'Pretendard-ExtraBold', sans-serif;
}

.f1_inner {
    width: 100%;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
}

.customer_number {
    width: 65%;
}

.customer_number ul {
    display: flex;
    justify-content: space-between;
}

.customer_number ul li {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px 0;
}

.customer_number ul li p {
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-Bold', sans-serif;
}

.number {
    display: flex;
    align-items: center;
    gap: 0 15px;
}

.number span {
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-Bold', sans-serif;
}

.customer_btn ul {
    display: flex;
    gap: 0 70px;
}

.customer_btn ul li {
    display: flex;
    align-items: center;
    gap: 0 45px;
    cursor: pointer;
}

.customer_btn ul li p {
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
}

.customer_btn ul li img {
    transition: transform .5s;
}

.customer_btn ul li:hover img {
    transform: translateX(10px);
}

.f2 {
    width: 100%;
    padding: 45px 0 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.logo_address {
    width: 60%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px 0;
}

.f_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logo_address address {
    font-size: 14px;
    line-height: 25px;
    color: #aaa;
    font-family: 'Pretendard-Light', sans-serif;
    font-style: normal;
}

.logo_address address span {
    margin-right: 50px;
}

.footer_more_info {
    display: flex;
    align-items: flex-end;
    gap: 0 40px;
}

.sns ul {
    display: flex;
    gap: 0 15px;
}

.sns ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.family_site {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 20px 0;
}

.family_site > a {
    font-size: 14px;
    color: #aaa;
    font-family: 'Pretendard-Light', sans-serif;
}

.site_select {
    width: 200px;
    height: 40px;
    box-sizing: border-box;
    position: relative;
}

.site_select p {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
    border: 1px solid #666;
    cursor: pointer;
}

.site_select p span {
    font-size: 14px;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
}

.site_select p i {
    font-size: 12px;
    color: #fff;
}

.site_select ul {
    width: 100%;
    position: absolute;
    bottom: 40px;
    left: 0;
    background-color: #ddd;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
}

.site_select ul.show {
    opacity: 1;
    visibility: visible;
}

.site_select ul li {
    width: 100%;
    font-size: 14px;
    color: #111;
    font-family: 'Pretendard-Regular', sans-serif;
    cursor: pointer;
}





































/* mobile */
@media screen and (max-width: 767px) {

    #footer .center {
        width: 90%;
        min-width: auto;
    }

    .f1 {
        padding: 30px 0;
    }

    .f1 > p {
        font-size: 14px;
    }

    .f1_inner {
        margin-top: 20px;
        display: block;
        padding: 0;
    }

    .customer_number {
        width: 100%;
    }

    .customer_number ul {
        width: 100%;
        flex-direction: column;
        gap: 20px 0;
    }

    .customer_number ul li {
        width: 100%;
        gap: 10px 0;
    }

    .customer_number ul li p {
        font-size: 13px;
    }

    .customer_btn ul li:hover img {
        transform: none;
    }

    .number {
        gap: 0 10px;
    }

    .number img {
        width: 15px;
    }

    .number span {
        font-size: 13px;
    }

    .customer_btn {
        width: 100%;
        margin-top: 40px;
    }

    .customer_btn ul {
        gap: 0 35px;
    }

    .customer_btn ul li {
        gap: 0 20px;
        cursor: inherit;
    }

    .customer_btn ul li img {
        width: 30px;
    }

    .customer_btn ul li p {
        font-size: 14px;
    }

    .f2 {
        padding: 30px 0;
        display: block;
    }

    .logo_address {
        width: 100%;
        gap: 15px 0;
    }

    .f_logo {
        width: 100px;
    }

    .f_logo img {
        width: 100%;
    }

    .logo_address address {
        font-size: 12px;
        line-height: 22px;
    }

    .logo_address address span {
        margin-right: 0;
        display: block;
    }

    .logo_address address br {
        display: none;
    }

    .footer_more_info {
        width: 100%;
        margin-top: 50px;
        display: block;
    }

    .sns ul {
        width: 100%;
        gap: 0 10px;
    }

    .sns ul li {
        width: 30px;
        cursor: inherit;
    }

    .sns ul li img {
        width: 100%;
    }

    .family_site {
        width: 100%;
        display: block;
        margin-top: 20px;
    }

    .family_site > a {
        font-size: 12px;
        margin-bottom: 15px;
        display: block;
    }

    .site_select {
        width: 180px;
        height: 35px;
    }

    .site_select p {
        cursor: inherit;
    }

    .site_select p span {
        font-size: 12px;
    }

    .site_select p i {
        font-size: 10px;
    }

    .site_select ul {
        bottom: 35px;
        gap: 12px 0;
    }

    .site_select ul li {
        font-size: 12px;
        cursor: inherit;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    #footer .center {
        width: 90%;
        min-width: auto;
    }

    .f1 {
        padding: 30px 0;
    }

    .f1 > p {
        font-size: 14px;
    }

    .f1_inner {
        margin-top: 20px;
        flex-direction: column;
        gap: 30px 0;
        padding: 0;
    }
    
    .customer_number{
        width: 100%;
    }

    .customer_number ul {
        flex-direction: column;
        gap: 15px 0;
    }

    .customer_number ul li {
        flex-direction: row;
        gap: 0 20px;
    }

    .customer_number ul li p {
        font-size: 13px;
    }

    .customer_btn ul li:hover img {
        transform: none;
    }

    .number {
        gap: 0 10px;
    }

    .number img {
        width: 15px;
    }

    .number span {
        font-size: 13px;
    }
    
    .customer_btn{
        width: 100%;
    }

    .customer_btn ul {
        gap: 0 35px;
    }

    .customer_btn ul li {
        gap: 0 20px;
        cursor: inherit;
    }

    .customer_btn ul li img {
        width: 30px;
    }

    .customer_btn ul li p {
        font-size: 14px;
    }

    .f2 {
        padding: 30px 0;
        display: block;
    }

    .logo_address {
        width: 100%;
        gap: 15px 0;
    }

    .f_logo {
        width: 100px;
    }

    .f_logo img {
        width: 100%;
    }

    .logo_address address {
        font-size: 12px;
        line-height: 22px;
    }

    .logo_address address span {
        margin-right: 0;
        display: block;
    }

    .logo_address address br {
        display: none;
    }

    .footer_more_info {
        width: 100%;
        margin-top: 50px;
        display: block;
    }

    .sns ul {
        width: 100%;
        gap: 0 10px;
    }

    .sns ul li {
        width: 30px;
        cursor: inherit;
    }

    .sns ul li img {
        width: 100%;
    }

    .family_site {
        width: 100%;
        display: block;
        margin-top: 20px;
    }

    .family_site > a {
        font-size: 12px;
        margin-bottom: 15px;
        display: block;
    }

    .site_select {
        width: 180px;
        height: 35px;
    }

    .site_select p {
        cursor: inherit;
    }

    .site_select p span {
        font-size: 12px;
    }

    .site_select p i {
        font-size: 10px;
    }

    .site_select ul {
        bottom: 35px;
        gap: 12px 0;
    }

    .site_select ul li {
        font-size: 12px;
        cursor: inherit;
    }

}





















/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px) {

    #footer .center {
        width: 1150px;
        min-width: auto;
    }

    .f1 > p {
        font-size: 16px;
    }

    .f1_inner {
        margin-top: 20px;
        padding: 0;
    }

    .customer_number ul li p {
        font-size: 14px;
    }

    .number img {
        width: 15px;
    }

    .number {
        gap: 0 10px;
    }

    .number span {
        font-size: 14px;
    }

    .customer_btn ul {
        gap: 0 30px;
    }

    .customer_btn ul li {
        gap: 0 20px;
    }

    .customer_btn ul li img {
        width: 40px;
    }

    .customer_btn ul li p {
        font-size: 16px;
    }

    .logo_address {
        width: 70%;
        gap: 25px 0;
    }

    .f_logo {
        width: 100px;
    }

    .f_logo img {
        width: 100%;
    }

    .logo_address address span {
        margin-right: 20px;
    }

    .footer_more_info {
        gap: 0 30px;
    }

    .sns ul li {
        width: 35px;
    }

    .sns ul li img {
        width: 100%;
    }

    .family_site > a {
        font-size: 14px;
    }

}



































/* pc */
@media screen and (min-width: 1401px) and (max-width: 1600px) {

    .f1 > p {
        font-size: 16px;
    }

    .f1_inner {
        margin-top: 20px;
        padding: 0;
    }

    .customer_number ul li p {
        font-size: 14px;
    }

    .number img {
        width: 15px;
    }

    .number {
        gap: 0 10px;
    }

    .number span {
        font-size: 14px;
    }

    .customer_btn ul {
        gap: 0 30px;
    }

    .customer_btn ul li {
        gap: 0 20px;
    }

    .customer_btn ul li img {
        width: 40px;
    }

    .customer_btn ul li p {
        font-size: 16px;
    }

    .logo_address {
        width: 70%;
        gap: 25px 0;
    }

    .f_logo {
        width: 100px;
    }

    .f_logo img {
        width: 100%;
    }

    .logo_address address span {
        margin-right: 20px;
    }

    .footer_more_info {
        gap: 0 30px;
    }

    .sns ul li {
        width: 35px;
    }

    .sns ul li img {
        width: 100%;
    }

    .family_site > a {
        font-size: 14px;
    }

}
