#section5{
    width: 100%;
    height: inherit !important;
    background-color: #2c2c2c;
    padding: 40px 3%;
    box-sizing: border-box;
}

.f_01{
    width: 100%;
    border-bottom: 1px solid rgba(220, 220, 220, 0.2);
    padding-bottom: 20px;
}

.f_01 ul{
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 25px;
}

.f_01 ul li{
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.f_01 ul li:first-child{
    margin-right: 30px;
}

.f_01 ul li:last-child{
    margin-left: 30px;
}

.f_02{
    width: 100%;
    padding-top: 20px;
    font-family: 'Pretendard-Medium', sans-serif;
}

address{
    font-size: 14px;
    color: #aaa;
    font-style: normal;
    font-family: 'Pretendard-Light', sans-serif;
    line-height: 23px;
}

address span{
    margin: 0 10px;
    color: #777;
    font-family: 'Pretendard-Thin', sans-serif;
}

.f_02>span{
    font-size: 12px;
    color: #777;
    font-family: 'Pretendard-Thin', sans-serif;
    margin-top: 10px;
    display: block;
}


/* popup */
.pop_bg{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999;
    display: none;
}

.popup{
    width: 800px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    box-sizing: border-box;
}

.popup p{
    text-align: center;
    font-size: 24px;
    font-family: 'Pretendard-Bold', sans-serif;
}

.pop_innner{
    width: 100%;
    height: 90%;
    overflow: auto;
    background-color: #464646;
    color: #fff;
    margin-top: 15px;
    font-family: 'Pretendard-Thin', sans-serif;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
    line-height: 23px;
}

.pop_innner strong{
    font-family: 'Pretendard-Bold', sans-serif;
    font-size: 18px;
}

.pop_innner span{
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.popup button{
    position: absolute;
    font-size: 20px;
    font-family: 'Pretendard-Medium', sans-serif;
    top: 15px;
    right: 15px;
    background-color: #fff;
}



















/* mobile */
@media screen and (max-width: 767px){

    #section5{
        padding: 20px 3% 55px;
    }

    .f_01{
        padding-bottom: 10px;
    }

    .f_01 ul{
        justify-content: center;
        font-size: 10px;
    }

    .f_01 ul li{
        font-size: 12px;
    }

    .f_01 ul li:first-child{
        margin-right: 15px;
    }

    .f_01 ul li:last-child{
        margin-left: 15px;
    }

    .f_02{
        padding-top: 10px;
    }

    address{
        font-size: 10px;
        line-height: 18px;
        text-align: center;
        word-break: keep-all;
    }

    address span{
        margin: 0 5px;
        color: transparent;
        display: block;
        line-height: 0;
    }

    .f_02>span{
        font-size: 10px;
        margin-top: 5px;
        text-align: center;
    }


    /* popup */
    .popup{
        width: 80%;
        height: 80%;
        padding: 15px 10px;
    }

    .popup p{
        font-size: 16px;
    }

    .pop_innner{
        height: 95%;
        margin-top: 10px;
        font-size: 12px;
        padding: 5px;
        line-height: 20px;
    }

    .pop_innner strong{
        font-size: 14px;
    }

    .pop_innner span{
        margin-bottom: 5px;
        font-size: 13px;
    }

    .popup button{
        top: 10px;
        right: 10px;
    }

}












/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    /* popup */
    .popup{
        width: 85%;
        height: 400px;
        padding: 20px 15px;
    }

    .popup p{
        font-size: 20px;
    }

    .pop_innner{
        height: 90%;
        margin-top: 15px;
        font-size: 14px;
        padding: 10px;
        line-height: 23px;
    }

    .popup button{
        top: 10px;
        right: 10px;
    }

}
