/* ---------------------------------------
	footerComponents
--------------------------------------- */
footer {
	padding: 4rem 1.6rem 11rem;
	background-color: #000;
}

#app_wrapper:has(.floating_actions_container) footer {
	padding-bottom: 4.2rem;
}

footer .footer_top_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer .footer_top_container .logo {
	width: 2.4rem;
	height: 2.4rem;
}

footer .footer_top_container .btn_business_toggle {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.2rem;
	color: #8f8f8f;
	font-size: 1.3rem;
}

footer .footer_top_container .btn_business_toggle img {
	width: 1.2rem;
	height: 1.2rem;
	transition: transform 0.2s;
	opacity: 0.56;
}

footer .footer_top_container .btn_business_toggle.active img {
	transform: rotate(180deg);
}

footer .footer_business_information_container {
	display: none;
	margin-top: 1.6rem;
}

footer .footer_business_information_container.active {
	display: block;
}

footer .footer_business_information_container p {
	color: #8f8f8f;
	font-size: 1.1rem;
	line-height: 1.48;
	letter-spacing: -0.01em;
}

footer .footer_service_container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 1.6rem;
}

footer .footer_service_container a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-right: 1.6rem;
	padding-right: 1.6rem;
	color: #8f8f8f;
	font-weight: 700;
	font-size: 1.1rem;
}

footer .footer_service_container a:last-child {
	margin-right: 0;
	padding-right: 0;
}

footer .footer_service_container a:after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 1.1rem;
	background-color: #8f8f8f;
}

footer .footer_service_container a:last-child:after {
	display: none;
}

footer .footer_notice {
	margin-top: 1.6rem;
	color: #8f8f8f;
	font-size: 1.1rem;
}

footer copy {
	display: block;
	margin-top: 1.6rem;
	color: #8f8f8f;
	font-size: 1.1rem;
}

/* ---------------------------------------
	footerComponents - renew 2026.04
--------------------------------------- */
footer.v2 {
	display: none;
	padding: 4rem 1.6rem 11rem;
	background-color: #000;
}

body.index footer.v2,
body.main footer.v2,
body.detail footer.v2,
body.mypage:has(.is_mypage) footer.v2 {
	display: block;
}

/* 플로팅 버튼 대응 */
#app_wrapper:has(.floating_actions_container) footer.v2 {
	padding-bottom: 4.2rem;
}

body.bs #app_wrapper footer.v2 {
	padding-bottom: 11rem;
}


/* 정렬 공통 그룹화 */
footer.v2 .btn_business_toggle,
footer.v2 .copy_wrap,
footer.v2 .footer_top_container .sns_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

footer.v2 .footer_top_container {
	display: grid;
	grid-template-columns: auto auto 1fr;
	align-items: center;
	gap: 0.8rem;
}

footer.v2 .footer_top_container .logo {
	width: 2.8rem;
	height: 2.8rem;
}

footer.v2 .footer_top_container .logo+img {
	width: auto;
	height: 1.9rem;
	object-fit: contain;
}

footer.v2 .footer_top_container .logo,
footer.v2 .footer_top_container .logo+img {
	flex: 0 0 auto;
}

footer.v2 .footer_top_container .sns_area {
	grid-column: 1 / span 3;

	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-top: 1.2rem;
}

footer.v2 .footer_top_container .sns_area .mo a {
	font-size: 1.6rem;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}

footer.v2 .footer_top_container .sns_box {
	gap: 1rem;
}

footer.v2 .footer_top_container .sns_box li {
	width: 3.2rem;
	height: 3.2rem;
}

footer.v2 .footer_content_wrap {
	display: flex;
	flex-direction: column;
	row-gap: 2.4rem;
	padding-top: 2.4rem;
	margin-top: 2.4rem;
	border-top: 1px solid rgba(225, 227, 225, 0.18);
}

footer.v2 .footer_service_container {
	margin-top: 0;
	justify-content: center;
}

footer.v2 .footer_service_container a:not(:last-child) {
	margin-right: 0.6rem;
	padding-right: 0.7rem;
}

/* 비즈니스 토글 */
footer.v2 .btn_business_toggle {
	gap: 0.6rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.2rem;
}

footer.v2 .btn_business_toggle img {
	width: 1.4rem;
	height: 1.4rem;
	transition: transform 0.2s;
}

footer.v2 .btn_business_toggle.active img {
	transform: rotate(180deg);
}

/* 리스트 및 링크 공통 */
footer.v2 .footer_information_container ul li,
footer.v2 .footer_service_container a {
	position: relative;
	font-size: 1.2rem;
	line-height: 2rem;
	letter-spacing: -0.024rem;
	color: rgba(255, 255, 255, 0.8);
}

footer.v2 .footer_information_container ul li::after,
footer.v2 .footer_service_container a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 0.8rem;
	background-color: rgba(255, 255, 255, 0.4);
}

footer.v2 .footer_information_container ul li:last-child {
	margin-right: 0;
	padding-right: 0;
}


/* 모바일 전용 스타일 */
footer.v2 .footer_information_container {
	display: none;
}

footer.v2 .footer_information_container.active {
	display: block;
}

footer.v2 .footer_information_container ul li {
	font-weight: 500;
	color: rgba(142, 145, 143, 0.8);
	margin-right: 0.6rem;
	padding-right: 0.7rem;
	display: inline-block;
}

footer.v2 .footer_information_container ul {
	display: flex;
	flex-wrap: wrap;
	row-gap: 0.2rem;
}

footer.v2 .footer_information_container ul li:nth-child(3) {
	display: block;
	width: 100%;
}

/* 구분선/요소 숨김 처리 */
footer.v2 .footer_information_container ul li.email {
	display: none;
}

footer.v2 .footer_information_container ul li:nth-child(2)::after,
footer.v2 .footer_information_container ul li:nth-child(3)::after,
footer.v2 .footer_information_container ul li:last-child::after {
	display: none;
}

footer.v2 .copy_wrap {
	justify-content: space-between;
}

footer.v2 copy {
	display: block;
	margin-top: 0;
	color: #8E918F;
	font-size: 1.2rem;
}

footer.v2 .mo {
	display: block;
}

footer.v2 .pc {
	display: none;
}

/* PC 반응형 */
@media (min-width: 1001px) {
	footer.v2 .mo {
		display: none;
	}

	footer.v2 .pc {
		display: inline-block;
	}

	footer.v2 {
		display: block;
		padding: 60px 16px;
	}

	footer.v2 .inner {
		position: relative;
		max-width: 1400px;
		margin: 0 auto;
	}

	footer.v2 .footer_top_container {
		gap: 24px;
	}

	footer.v2 .footer_top_container .logo {
		width: 43px;
		height: 43px;
	}

	footer.v2 .footer_top_container .logo+img {
		width: 319px;
		height: auto;
		object-fit: cover;
	}

	footer.v2 .footer_top_container .sns_area {
		position: absolute;
		right: 0;
		bottom: 0;
		width: auto;
	}

	footer.v2 .footer_content_wrap {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		row-gap: 8px;
		padding-top: 32px;
		margin-top: 32px;
	}

	footer.v2 .footer_information_container {
		display: block;
		order: 1;
		max-width: 65%;
	}

	footer.v2 .footer_information_container ul li {
		font-size: 14px;
		color: #8E918F;
		font-weight: 700;
	}

	/* PC에서 복구해야 할 요소들 */
	footer.v2 .footer_information_container ul li:nth-child(3) {
		display: inline-block;
		width: fit-content;
	}

	footer.v2 .footer_information_container ul li.email {
		display: inline-block;
	}

	footer.v2 .footer_information_container ul li.email::after {
		display: none;
	}

	footer.v2 .footer_information_container ul li:nth-child(2)::after,
	footer.v2 .footer_information_container ul li:nth-child(3)::after {
		display: inline-block;
	}

	footer.v2 .footer_service_container {
		order: 2;
		margin-top: 0;
		align-items: flex-start;
	}

	footer.v2 .footer_service_container a {
		color: #8E918F;
	}

	footer.v2 .copy_wrap {
		order: 3;
		width: 100%;
	}

	footer.v2 .btn_business_toggle {
		display: none;
	}

	footer.v2 copy.pc {
		font-size: 14px;
		line-height: 38px;
		font-weight: 700;
		color: #5C5F5E;
	}

	footer.v2 .footer_top_container .sns_box {
		gap: 0;
	}

	footer.v2 .footer_top_container .sns_box li {
		width: 38px;
		height: 38px;
	}

	body.bs #app_wrapper footer.v2 {
		padding-bottom: 60px;
	}
}