.footer {
	background: #070506;
	padding: 3rem 0 1.5rem;
	margin-top: 1rem;
	
	.footer_inner {
		padding: 0 3rem;
		
		.f_menu {
			display: grid;
			grid-template-columns: repeat(4, minmax(0, 1fr));
			gap: 2rem;
			
			.f_title {
				color: #fff;
				letter-spacing: .05em;
				text-transform: uppercase;
				font-size: .75rem;
		    line-height: 1rem;
				margin-bottom: .75rem;
				font-weight: 500;
			}
			.f_into {
				.txt1 {
					font-size: 1.125rem;
					line-height: 1.75rem;
					font-weight: 700;
					color: #fff;
					font-family: "Outfit", "Noto Sans KR", sans-serif;
					margin-bottom: .5rem;
					letter-spacing: -.025em;
				}
				.txt2 {
					color: oklch(0.73 0 0);
					line-height: 1.625;
					font-size: .75rem;
					margin-bottom: 1rem;
				}
			}
			.menu_list {
				display: flex;
				flex-direction: column;
				
				> li {
					a, p {
						display: flex;
						gap: .5rem;
						font-size: .875rem;
						line-height: 1.25rem;
						color: oklch(0.73 0 0);
					}
					a:hover {
						color: #fff;
					}
				}
				> li.locat {
					a, p {
						line-height: 1.625;
					}
				}
			}
			.f_qmenu {
				.menu_list {
					gap: 0.5rem;
					> li a {
						display: inline;
					}
				}
			}
			.f_contact {
				.menu_list {
					gap: 0.625rem;
					> li a,
					> li p{
						i {
							font-size: .75rem;
							line-height: 1rem;
							margin-top: .125rem;
						}
					}
				}
			}
			.f_sns {
				.btn_list {
					display: flex;
					align-items: center;
					gap: .75rem;
					
					> li a {
						background: #24212199;
						color: #928e8f;
						border-radius: .5rem;
						display: flex;
						align-items: center;
						justify-content: center;
						width: 2.25rem;
						height: 2.25rem;
						
						&:hover {
							background: #e27900;
							color: #fff;
						}
					}
				}
			}
		}
		.f_info {
			padding-top: 1.5rem;
			margin-top: 2.5rem;
			border-top: 1px solid #242121;
			
			.f_infolist {
				display: flex;
				flex-wrap: wrap;
				gap: 0.25rem 1rem;
				font-size: .75rem;
				color: oklch(0.56 0.01 0 / 1);
				justify-content: center;
				
				> li {
					display: flex;
					gap: 0.25rem 1rem;
					line-height: 1rem;
					&:after {
						content: "|";
						color: #3d393a;
					}
				}
				> li:last-child {
					&:after {
						display: none;
					}
				}
			}
			.copyright {
				color: #3d393a;
				font-size: .75rem;
		    line-height: 1rem;
				text-align: center;
				margin-top: 0.5rem;
			}
		}
	}
}

@media (max-width: 1024px) {
	.footer {
    .footer_inner {
			.f_menu {
				grid-template-columns: repeat(2, minmax(0, 1fr));
			}
    }
	}
}

@media (max-width: 768px) {
	.footer {
    .footer_inner {
			padding: 0 1.5rem;
		}
	}
}

@media (max-width: 640px) {
	.footer {
    .footer_inner {
			.f_menu {
				grid-template-columns: repeat(1, minmax(0, 1fr));
			}
			.f_info {
        .f_infolist {
          > li {
						&:after {
							display: none;
						}
					}
				}
			}
    }
	}
}