@charset "UTF-8";

footer {
    padding: 30px 0;
    background-color: #FAFAFA;
}

#MOVE_TOP_BTN {
	position: fixed;
	right: 2%;
	bottom: 3%;
	display: none;
	z-index: 999;
	background: #fff;
	border: 1px solid #DEDEDE;
	width: 60px;
	height: 60px;
	box-sizing: border-box;
	text-align: center;
	color: #111;
	cursor: pointer;
	border-radius: 30px;
}

#MOVE_TOP_BTN:hover {
	background-color: #535353;
}

#MOVE_TOP_BTN .top_img {
	width: 60px;
	height: 60px;
	background: url(/roda/images/front/top_arrow.png) no-repeat center;
}

#MOVE_TOP_BTN:hover .top_img {
	background: url(/roda/images/front/top_arrow_w.png) no-repeat center;
	animation: verMove 1s infinite linear;
}

@keyframes verMove {
  50%{margin-top:-.5rem}
  100%{margin-top:0}
}

.footer_wrap {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 50px;
}

.ft_logo_box {
    width: 179px;
    height: 37px;
}

.ft_logo_box .ft_logo {
    width: 100%;
    height: 100%;
    display: block;
    background: url(/roda/images/admin/ft_logo.png) no-repeat center/contain;
}

.ft_info {}

.ft_info .address {
    font-size: 0.875rem;
    color: #999;
    font-weight: 400;
    margin-bottom: 6px;
}

.ft_info .call_number {
    font-size: 0.875rem;
    color: #999;
    font-weight: 400;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 10px;
}

.ft_conts ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.ft_conts ul li {
    margin-right: 10px;
}

.ft_conts ul li:last-child {
    margin-right: 0;
}

.ft_conts ul li a:not(.user) {
    color: #999;
    font-size: 0.875rem;
    font-weight: 500;
}

.ft_conts ul li::after {
    content: "ㆍ";
    display: inline-block;
    padding-left: 10px;
    color: #999;
}


.ft_conts ul li:last-child:after {
    display: none;
}

.ft_conts ul li a.user {
    font-size: 0.875rem;
}

.ft_conts .copyright {
    font-size: 0.875rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 0.5px;
}


@media all and (max-width: 1441px) {

    .footer_wrap {
        max-width: 1280px;
    }

}

@media all and (max-width: 1281px) {
    .footer_wrap {
        max-width: 1180px;
        padding: 0 30px;
    }
}

@media all and (max-width: 1279px) {
    .footer_wrap {
        display: block;
    }

    .ft_logo_box {
        width: 174px;
        height: 46px;
        margin: 0 auto;
    }

    .ft_info {
        margin-top: 20px;
    }

    .ft_info .address {
        font-size: 14px;
        color: #999;
        font-weight: 400;
        margin-bottom: 6px;
        text-align: center;
    }

    .ft_info .call_number {
        font-size: 0.875rem;
        color: #999;
        font-weight: 400;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0 10px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .ft_conts {
        margin-top: 20px;
    }

    .ft_conts ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .ft_conts ul li {
        margin-right: 2px;
    }

    .ft_conts ul li:last-child {
        margin-right: 0;
    }

    .ft_conts ul li a:not(.user) {
        color: #999;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .ft_conts ul li::after {
        content: "ㆍ";
        display: inline-block;
        padding-left: 2px;
        color: #999;
    }

    .ft_conts .copyright {
        font-size: 0.875rem;
        color: #999;
        font-weight: 400;
        letter-spacing: 0.5px;
        text-align: center;
    }
}


@media all and (max-width: 481px) {
    .ft_logo_box {
        width: 132px;
        height: 38px;
        margin: 0 auto;
    }

    .ft_info {
        margin-top: 20px;
    }

    .ft_info .address {
        font-size: 0.75rem;
        color: #999;
        font-weight: 400;
        margin-bottom: 6px;
        text-align: center;
    }

    .ft_info .call_number {
        font-size: 0.75rem;
        color: #999;
        font-weight: 400;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0 6px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .ft_conts {
        margin-top: 10px;
    }

    .ft_conts ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 20px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .ft_conts ul li {
        margin-right: 2px;
        line-height: 1.4;
    }

    .ft_conts ul li:last-child {
        margin-right: 0;
    }

    .ft_conts ul li a:not(.user) {
        color: #999;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .ft_conts ul li a.user {
        font-size: 0.75rem;
    }
    
    .ft_conts ul li::after {
        content: "ㆍ";
        display: inline-block;
        padding-left: 2px;
        color: #999;
    }

    .ft_conts .copyright {
        font-size: 0.75rem;
        color: #999;
        font-weight: 400;
        letter-spacing: 0.5px;
        text-align: center;
    }
}








