@charset "utf-8";


.pc_navi{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
}

.pc_navi .logo{
    cursor: pointer;
}
.pc_navi .logo img{
    width: 180px;
}
.pc_navi .menu{
    display: flex;
    gap: 5rem;
    
}
.pc_navi .menu_a{
    font-size: 1.6rem;
    font-weight: 500;
}
.pc_navi .ct_btn{
    padding: .6rem 2rem;
    background: var(--po-color);
    border-radius: 50px;
    color: var(--font-white);
    font-size: 1.6rem;
}



/* footer */
footer{
    margin-top: 20rem;
    margin-bottom: 5rem;
}

.foot_wrap{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.foot_wrap .foot_logo{
    border-bottom: 1px solid #ccc;
    padding-bottom: 3rem;
}

.foot_wrap .bot{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10rem;
}
.foot_wrap .bot .left, .foot_wrap .bot .right{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.foot_wrap .bot .right{
    display: flex;
    align-items: end;
    flex-direction: column;
}

.foot_wrap .bot p, .foot_wrap .bot a, .foot_wrap .bot span{
    font-size: 1.6rem;
}