@charset "utf-8";


body::-webkit-scrollbar {
    display: none; /* 스크롤바를 숨깁니다 */
}

/* footer 스타일 */
footer {
	position: relative;
}
.footer_top {
	display: flex;
	justify-content: center;
	height: 60px;
	background: #303430;
}

.footer_bottom {
	display: flex;
	justify-content: center;
	height: 170px;
	background: #505651;
}

.footer_inner {
	width: 1284px;
	display: flex;
	justify-content: space-between;
}

.footer_left {
	display: flex;
	align-items: center;
}

.footer_left > div {
	display: flex;
	align-items: center;
	height: 20px;
}

.footer_call {
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    height: 26px;
    margin-right: 5px;
}

.footer_left > div p {
	height: 20px;
	margin-right: 5px;
}

.footer_left > div p img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer_right {
	display: flex;
    align-items: center;
    gap: 20px;
}

.select_site {
	display: inline-block;
    position: relative;
    padding: 5px;
    width: 180px;
    background-color: #ffffff;
    outline: none;
}

.toggle_btn {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'SBAggro';
    font-weight: 300;
    font-size: 18px;
    padding: 0;
}

.toggle_btn:focus-visible {
	outline: -webkit-focus-ring-color auto 0px;
}

.toggle_btn img {
	width: 13px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.toggle_btn img.rotated {
    transform: rotate(180deg);
}

.selectbox_menu {
	display: none;
	left: 0;
	top: 31px;
	position: absolute;
	background-color: #fff;
	width: 190px;
	padding: 0;
    font-weight: 300;
    font-size: 16px;
	box-sizing: border-box;
    border: 1px solid #BFBFBF;
}

.selectbox_item {
	padding: 5px;
   	cursor: pointer;
}

.selectbox_item a {
	color: #121212;
}

.selectbox_item:hover {
	background-color: #ddd;
}

.margin_top {
	margin-top: 20px;
}

.footer_logo {
	align-items: baseline;
}

.footer_content {
	display: flex;
	flex-direction: column;;
}

.footer_menu {
	display: flex;
	margin-bottom: 30px;
}

.footer_menu li a{
	font-size: 14px;
    font-weight: 300;
	color: #fff;
}

.footer_menu li button {
	font-size: 14px;
    font-weight: 300;
    color: #fff;
    font-family: 'SBAggro';
    padding: 0;
}

.footer_menu li a:hover, .footer_menu li button:hover {
	text-decoration: underline;
}

.footer_menu li:nth-of-type(1) a, .footer_menu li:nth-of-type(2) a {
	color: #F67E3B;
}

.footer_address, .footer_copyright {
	font-size: 14px;
    font-weight: 300;
	color: #838383;
	display: flex;
	margin-bottom: 20px;
}

address {
	margin: 0;
}

.footer_address address {
	font-style: normal;
}

.footer_top_btn button {
	padding: 0;
}