@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	vertical-align: top;
	font-family: "Pretendard", sans-serif;
}
body {
	position: relative;
}
body.no-scroll {
	overflow-y: hidden;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 100px 0;
}

.top {
	background-color: #000;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 18px; /* 112.5% */
	padding: 9px 0;
	position: relative;
	z-index: 2;
}

/* 헤더 */
#header {
	background-color: #f3f0eb;
	border-bottom: 1px solid #111;
	position: relative;
	z-index: 1;
}
.header_container {
	max-width: 1320px;
	height: 68px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_container .m_logo {
	display: none;
}
#header .gnb .main_gnb ul {
	display: flex;
	align-items: center;
}
#header .gnb .main_gnb ul li a {
	color: #111;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding: calc((68px - 20px) / 2) 0;
}
#header .gnb .main_gnb ul li {
	display: inline-block;
	padding: 0 20px;
}
#header .gnb .main_gnb ul li a {
	position: relative;
}
#header .gnb .main_gnb ul li a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #111;
	left: 0;
	bottom: 16px;
	transition: width 0.3s ease; /* 선 애니메이션 속도와 효과 설정 */
}

#header .gnb .main_gnb ul li:hover a::before {
	width: 100%;
}
#header .gnb .main_gnb ul li a img {
	width: 24px;
	height: 24px;
}
#header .gnb .main_gnb ul li.pc_gnb_btn {
	cursor: pointer;
}
#header .gnb .main_gnb ul li.pc_gnb_btn a::before {
	display: none;
}
#header .gnb .main_gnb ul li.pc_gnb_btn a {
	display: flex;
	flex-direction: column;
	gap: 8px 0;
	padding: calc((68px - 20px) / 2) 2px;
}
#header .gnb .main_gnb ul li.pc_gnb_btn span {
	display: inline-block;
	width: 20px;
	height: 2px;
	background-color: #111;
}

#header .member ul {
	display: flex;
	align-items: center;
	gap: 0 20px;
}
#header .member ul li a {
	padding: calc((68px - 14px) / 2) 0;
	color: #111;
	font-size: 14px;
	font-weight: 400;
	line-height: 100%;
	text-transform: uppercase;
}
.m_gnb,
.m_menu,
.m_search,
.m_search_page {
	display: none;
}
/* pc 전체 메뉴 */

/* pc 검색 */
/* .pc_search_pop {
	display: none;
	position: fixed;
	right: 0;
	top: 0;
	width: 800px;
	padding: 36px 48px;
	height: 100vh;
	background-color: #000;
}
.pc_search_pop .input_area {
	display: flex;
	width: 100%;
	height: 60px;
	padding: 12px 0px;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	align-self: stretch;
	border-bottom: 1px solid #9a9a9a;
}
.pc_search_pop .input_area .icon {
	cursor: pointer;
	padding: 10px 16px 10px 0;
}
.pc_search_pop .input_area .search_close {
	cursor: pointer;
	padding: 10px 0 10px 16px;
}
.pc_search_pop .input_area input {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1 0 0;
	align-self: stretch;
	color: #9a9a9a;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -0.36px;
	background-color: transparent;
	outline: none;
}
.pc_search_pop .recommended {
	width: 100%;
	padding: 32px 0;
	display: flex;
	flex-direction: column;
	gap: 8px 0;
}
.pc_search_pop .recommended p {
	color: #666;
	font-size: 14px;
	font-weight: 600;
	line-height: 130%;
	letter-spacing: -0.28px;
}
.pc_search_pop .recommended ul li a {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -0.36px;
	display: inline-block;
	width: 100%;
	padding: 12.5px 0;
} */

/* pc gnb 전체보기 */
.pc_gnb_all {
	display: none;
	position: absolute;
	left: 0;
	top: 105px;
	height: calc(100vh - 105px);
	width: 100%;
	padding: 40px 0px 64px 0px;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: #f3f0eb;
	box-sizing: border-box;
	z-index: 10;
}
.pc_gnb_all .gnb_container {
	position: relative;
	transform: translateY(100px);
	opacity: 0;
	display: flex;
	gap: 0 48px;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.3s ease-in-out;
}

.pc_gnb_all.show .gnb_container {
	transform: translateY(0);
	opacity: 1;
}

.pc_gnb_all .gnb_container > div {
	width: 100px;
}
.pc_gnb_all .gnb_container > div h2 {
	color: #9f9f9f;
	font-size: 13px;
	font-weight: 600;
	line-height: 100%;
	margin-bottom: 12px;
}
.pc_gnb_all .gnb_container > div ul {
	display: flex;
	flex-direction: column;
}
.pc_gnb_all .gnb_container > div ul li a {
	display: inline-block;
	color: #111;
	font-size: 15px;
	font-weight: 400;
	line-height: 100%;
	align-self: stretch;
	width: 100%;
	padding: 8px 0;
}
.pc_gnb_all .gnb_container > div ul:last-child {
	margin-bottom: 0;
}
.pc_gnb_all .gnb_container .pc_menu02 {
	display: flex;
	flex-direction: column;
	gap: 32px 0;
}

/* 2차 GNB */
.pc_gnb_part {
	position: absolute;
	width: 100%;
	left: 0;
	top: 105px;
	background-color: #f3f0eb;
}
.pc_gnb_part > div {
	display: none;
	justify-content: center;
	align-items: center;
}
.pc_gnb_part > div > ul {
	display: flex;
	gap: 0 40px;
	align-items: start;
}
.pc_gnb_part > div > ul li {
}
.pc_gnb_part > div > ul li a {
	color: #111;
	font-size: 15px;
	font-weight: 400;
	line-height: 100%;
	display: inline-block;
	padding: 20px 0;
}
/* 메인 */
#main {
	background-color: #f3f0eb;
}

/* 메인 공통 타이틀 */
.main_common_tit span {
	color: #111;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	display: inline-block;
	margin-bottom: 8px;
}
.main_common_tit h2 {
	color: #111;
	font-size: 28px;
	font-weight: 600;
	line-height: 130%; /* 46.8px */
	letter-spacing: -2%;
	text-transform: uppercase;
}

/* 메인 배너 */
#main_hero {
	width: 100%;
	height: 640px;
	overflow-x: hidden;
}
#main_hero .hero_slider {
	width: 100%;
	height: 100%;
}
#main_hero .swiper-container,
#main_hero .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}
#main_hero .swiper-slide {
	position: relative;
	cursor: pointer;
	width: 100%;
	height: 100%;
}
#main_hero .img {
	width: 100%;
	height: 100%;
}
#main_hero .swiper-slide .txt {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	letter-spacing: -2%;
}
#main_hero .swiper-slide .txt h3 {
	color: #FFF;
	text-align: center;
	font-family: "Cormorant", sans-serif;
	font-size: 40px;
	line-height: 100%;
	margin-bottom: 16px;
}
#main_hero .swiper-slide .txt p {
	color: rgba(255, 255, 255, 0.60);
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}
#main_hero .swiper-slide .txt h3 {opacity: 0;transform: translateY(50px);transition: all 0.8s ease;} 
#main_hero .swiper-slide .txt p {opacity: 0;transform: translateY(50px);transition: all 0.8s ease;} 
#main_hero .swiper-slide-active .txt h3 {opacity: 1;transform: translateY(0);transition-delay: 0.5s;} 
#main_hero .swiper-slide-active .txt p {opacity: 1;transform: translateY(0);transition-delay: 0.7s;} 

/* Swiper 페이지네이션 */
#main_hero .hero_slider .swiper-pagination {
	display: none;
}
#main_hero .hero_slider .fraction {
	position: absolute;
	color: #fff;
	z-index: 5;
	display: flex;
	justify-content: right;
	padding: 52px 112px;
}
#main_hero .hero_slider .fraction span {
	display: inline-block;
	margin: 0 8px;
	color: #FFF;
	font-size: 14px;
	font-weight: 400;
	line-height: 100%;
}
#main_hero img {
	width: 100.1%;
	height: 100%;
	object-fit: cover;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	vertical-align: top ;
}
#main_hero .hero_slider .swiper-button-next {
	background: url(../img/main/swiper-next-btn.svg) no-repeat;
	background-size: 28% auto;
	background-position: center;
	position: absolute;
	right: 88px;
  top:auto;
	bottom:46px;
	
}

#main_hero .hero_slider .swiper-button-prev {
	background: url(../img/main/swiper-prev-btn.svg) no-repeat;
	background-size: 28% auto;
	background-position: center;
	left: auto;
	right: 160px;
	top:auto;
	bottom:46px;
}

#main_hero .hero_slider .swiper-button-next::after,
#main_hero .hero_slider .swiper-button-prev::after {
	display: none !important;
}
.m_img {
	display: none;
}

/* 베스트케어 */
#main_best .best_con {
	margin-top: 36px;
	display: flex;
	align-items: flex-start;
	gap: 0 24px;
}
#main_best .best_con li {
	width: calc(100% / 3 - 12px);
	display: flex;
	flex-direction: column;
	gap: 24px 0;
}
#main_best .best_con li .img {
	background-color: #cdcbc7;
	width: 100%;
	aspect-ratio: 424/332;
}
#main_best .best_con li .txt h3 {
	color: #111;
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -2%;
	margin-bottom: 8px;
}
#main_best .best_con li .txt p {
	color: #666;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -2%;
}
#main_best .best_slider {
	display: none;
}

/* 텔로액트 + 스페셜 케어 */
.care .container {
	display: flex;
	align-items: center;
}
#main_care01 .container {
	padding-bottom: 0;
}
#main_care02 .container {
	padding-top: 0;
}
.care .container > div {
	width: 50%;
}
.care .container .img {
	aspect-ratio: 660 / 446;
	background-color: #cdcbc7;
}
.care .container .txt {
	display: flex;
	flex-direction: column;
}
.care .container .txt .txt_area {
	width: 340px;
	margin: 0 auto;
}
#main_care01 .container .txt .txt_area {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	letter-spacing: -2%;
}
#main_care01 .container .txt .txt_area p {
	text-align: right;
}
.care .container .txt span {
	color: #111;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
}
.care .container .txt h2 {
	color: #111;
	font-size: 30px;
	margin-top: 8px;
	font-weight: 600;
	line-height: 130%;
}
.care .container .txt p {
	color: #666;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	margin: 12px 0 36px;
}
.care .container .txt a {
	display: flex;
	width: 172px;
	height: 50px;
	padding: 12px 0px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background-color: #000;
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
}

/* 메인 컨텐츠 */
.etc_list {
	display: flex;
	align-items: flex-end;
	gap: 0 24px;
}
.etc_list li {
	width: calc(100% / 3 - 12px);
}
.etc_list li:nth-child(2) {
	margin-bottom: 80px;
}
.etc_list li .img {
	margin-top: 24px;
	background-color: #cdcbc7;
	width: 100%;
	aspect-ratio: 424 / 240;
}
.etc_list li .main_common_tit span {
	font-size: 16px;
	line-height: 130%;
	letter-spacing: -2%;
	color: #666;
	margin-bottom: 4px;
}
.etc_list li .main_common_tit h2 {
	font-size: 28px;
	line-height: 130%;
	letter-spacing: -2%;
	color: #111;
	font-weight: 600;
	font-family: "Cormorant", sans-serif;
}
.etc_slider {
	display: none;
}

/* 정보 */
#main_info .container {
	padding: 40px 0 100px;
}
#main_info .main_common_tit h2 {
	font-size: 28px;
	font-family: "Cormorant", sans-serif;
}
.info_con {
	margin-top: 24px;
	padding-top: 40px;
	border-top: 1px solid #111;
	display: flex;
	align-items: center;
	gap: 0 24px;
}
.info_con .img {
	width: calc(100% - 424px - 12px);
	aspect-ratio: 109/53;
	background-color: #cdcbc7;
}
.info_con .txt {
	width: 424px;
}
.info_con .txt ul {
	display: flex;
	flex-direction: column;
	gap: 32px 0;
}
.info_con .txt ul li {
	padding: 0 20px;
	letter-spacing: -2%;
}
.info_con .txt ul li span {
	color: #111;
	font-size: 16px;
	font-weight: 600;
	line-height: 130%;
	display: inline-block;
	margin-bottom: 5px;
}
.info_con .txt ul li p {
	color: #666;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
}

/* 푸터 */
#footer {
	background-color: #111;
}
#footer .footer_container {
	max-width: 1328px;
	margin: 0 auto;
	padding: 40px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 0;
	text-align: right;
}
.footer_logo {
	width: 10%;
}
.footer_info {
	width: 90%;
}
.footer_info ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 24px;
}
.footer_info ul:last-child {
	margin-top: 8px;
}
.footer_info ul li {
	display: flex;
	align-items: center;
	font-family: "Noto Sans KR", sans-serif;
	gap: 0 8px;
}
.footer_info ul li span {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
}
.footer_info ul li em {
	color: #9a9a9a;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
}
.footer_m_info {
	display: none;
}
.copyright {
	width: 100%;
	color: #676767;
	text-align: right;
	font-family: "Noto Sans KR", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
}
/* 768px ~ 1320px */
@media (max-width: 1320px) {
	.container {
		padding: 80px 24px;
	}
	.top {
		font-size: 13px;
		padding: 7px 0;
	}

	/* 헤더 */
	#header {
		position: fixed;
		left: 0;
		top: 32px;
		width: 100%;
		background-color: transparent;
		border: 0;
		z-index: 9999;
	}
	.header_container {
		width: 100%;
		max-width: 100%;
		height: 60px;
		padding: 0 20px;
		align-items: center;
	}
	.header_container .pc_logo {
		display: none;
	}
	.header_container .m_logo {
		display: block;
	}
	#header .gnb .main_gnb ul,
	#header .member {
		display: none;
	}

	/* 햄버거 메뉴 */
	#header .m_gnb {
		display: flex;
		width: 24px;
		height: 24px;
		align-items: center;
	}
	#header .m_gnb .ham_btn {
		width: 100%;
		padding: 0 2px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 8px 0;
		cursor: pointer;
		transition: transform 0.3s ease-in-out;
	}
	#header .m_gnb .ham_btn span {
		display: inline-block;
		width: 100%;
		height: 2px;
		transition: transform 0.3s ease-in-out;
		background-color: #fff;
	}
	/* 햄버거 버튼 애니메이션 (X 모양) */
	#header .m_gnb .ham_btn.active span:nth-child(1) {
		transform: translateY(5px) rotate(45deg);
	}
	#header .m_gnb .ham_btn.active span:nth-child(2) {
		transform: translateY(-5px) rotate(-45deg);
	}
	.m_search {
		display: block;
		position: absolute;
		right: 66px;
		top: 22px;
		cursor: pointer;
	}
	.m_menu {
		display: none;
		position: fixed;
		left: 0;
		top: 32px;
		width: 100%;
		height: 100vh;
		background-color: #000;
		text-align: center;
		padding-top: 60px;
		z-index: 9998;
	}
	.m_menu.show {
		display: block;
	}
	.m_menu .m_member {
		padding: 0 20px;
		border-bottom: 1px solid #464646;
		border-top: 1px solid #464646;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.m_menu .m_member .left a {
		color: #ededed;
		font-size: 14px;
		font-weight: 600;
		line-height: 100%;
		letter-spacing: -2%;
		padding: 13px 0;
		display: inline-block;
	}
	.m_menu .m_member ul {
		display: flex;
		align-items: center;
	}
	.m_menu .m_member ul li a {
		display: inline-block;
		color: #828282;
		text-align: center;
		font-size: 13px;
		font-weight: 400;
		line-height: 100%;
		letter-spacing: -2%;
		display: inline-block;
		padding: 13px 10px;
		text-transform: uppercase;
	}
	.m_menu .m_member ul li a:last-child {
		padding-right: 0;
	}
	.m_menu .m_gnb {
		display: flex;

		border-bottom: 1px solid #464646;
	}
	.m_menu .m_gnb .m_gnb_all {
		border-right: 1px solid #464646;
	}
	.m_menu .m_gnb .m_gnb_all li a {
		display: inline-block;
		padding: 20px 24px;
		color: #828282;
		font-size: 14px;
		font-weight: 400;
		line-height: 100%;
		letter-spacing: -0.28px;
	}
	.m_menu .m_gnb .m_gnb_all li.active a {
		color: #ededed;
		font-weight: 600;
	}
	.m_menu .m_gnb_part {
		padding: 0 20px;
		text-align: left;
		flex: 1 0 0;
		min-height: 430px;
	}
	.m_menu .m_gnb_part h2 {
		margin-top: 12px;
		color: #828282;
		font-size: 12px;
		font-weight: 600;
		line-height: 100%;
		letter-spacing: -0.24px;
		padding: 4px 0 8px;
	}
	.m_menu .m_gnb_part ul li a {
		display: inline-block;
		padding: 11px 0;
		color: #fff;
		font-size: 14px;
		font-weight: 300;
		line-height: 100%;
		letter-spacing: -0.28px;
		width: 100%;
	}
	.m_menu .m_gnb_part h2:first-child {
		padding: 8px 0;
	}

	/* .m_search_page {
		display: none;
		position: fixed;
		left: 0;
		top: 32px;
		width: 100%;
		height: 100vh;
		background-color: #000;
		z-index: 10000;
	}
	.m_search_page.show {
		display: block;
	}
	.m_search_page .search_close {
		cursor: pointer;
		position: absolute;
		right: 20px;
	}
	.m_search_page .input_area {
		display: flex;
		border-bottom: 1px solid #9a9a9a;
		padding: 12px 20px;
		height: 60px;
		align-items: center;
	}
	.m_search_page .input_area .icon {
		cursor: pointer;
	}
	.m_search_page .input_area input {
		background-color: #000;
		color: #9a9a9a;
		font-family: "Pretendard", sans-serif;
		font-size: 18px;
		font-weight: 400;
		line-height: 100%;
		letter-spacing: -0.36px;
		margin-left: 16px;
		width: 80%;
		outline: none;
	}
	.m_search_page .recommended {
		padding: 32px 20px;
	}
	.m_search_page .recommended p {
		color: #666;
		font-size: 14px;
		font-weight: 600;
		line-height: 130%;
		letter-spacing: -0.28px;
		margin-bottom: 8px;
	}
	.m_search_page .recommended ul li a {
		color: #fff;
		font-size: 18px;
		font-weight: 400;
		line-height: 130%;
		letter-spacing: -0.36px;
		display: inline-block;
		width: 100%;
		padding: 12.5px 0;
	} */

	/* 메인 공통 타이틀 */
	.main_common_tit span {
		font-size: 18px;
	}
	.main_common_tit h2 {
		font-size: 28px;
	}

	/* 메인 배너 */
	#main_hero {
		width: 100%;
		height: 440px;
	}

	/* 베스트케어 */
	#main_best .best_con {
		margin-top: 24px;
		gap: 0 24px;
	}
	#main_best .best_con li .txt h3 {
		font-size: 20px;
	}
	#main_best .best_con li .txt p {
		font-size: 16px;
	}

	/* 텔로액트 */
	#main_care01 .container {
		padding-bottom: 0;
	}
	#main_care02 .container {
		padding-top: 0;
	}
	#main_care01 .container .txt .txt_area {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#main_care01 .container .txt .txt_area p {
		text-align: center;
	}
	.care .container {
		gap: 0;
	}
	.care .container > div {
		width: 50%;
	}
	.care .container .txt .txt_area {
		width: 100%;
		margin: 0 auto;
		align-items: center;
		text-align: center;
	}
	.care .container .txt span {
		font-size: 18px;
	}
	.care .container .txt h2 {
		font-size: 28px;
	}
	.care .container .txt p {
		font-size: 16px;
	}
	.care .container .txt a {
		margin: 0 auto;
		width: 172px;
		height: 42px;
		font-size: 16px;
	}

	/* 메인 컨텐츠 */
	#main_etc .main_common_tit span {
		color: #666;
		font-size: 16px;
		margin-bottom: 8px;
	}
	.etc_list li .main_common_tit h2 {
		font-size: 28px;
	}
	.etc_list li:nth-child(2) {
		margin-bottom: 0;
	}

	/* 정보 */
	#main_info .container {
		padding: 40px 24px 80px;
	}
	#main_info .main_common_tit h2 {
		font-size: 28px;
	}
	.info_con {
		margin-top: 16px;
		padding-top: 28px;
	}
	.info_con .img {
		width: 100%;
	}
	.info_con .txt {
		width: 100%;
	}
	.info_con .txt ul {
		gap: 16px 0;
	}
	.info_con .txt ul li {
		padding: 0;
	}
	.info_con .txt ul li span {
		font-size: 16px;
	}
	.info_con .txt ul li p {
		font-size: 16px;
	}

	/* 푸터 */
	#footer {
		background-color: #111;
	}
	#footer .footer_container {
		width: 100%;

		padding: 40px 24px;
	}
	.footer_logo {
		width: 14%;
	}
	.footer_info {
		width: 86%;
	}
}

/* 모바일 ~ 768px */
@media (max-width: 768px) {
	.container {
		padding: 80px 20px;
	}
	/* 헤더 */
	.header_container {
		padding: 0 20px;
	}

	/* 메인 배너 */
	.pc_img {
		display: none;
	}
	.m_img {
		display: block;
	}

	/* 메인 공통 타이틀 */
	.main_common_tit span {
		font-size: 16px;
		margin-bottom: 4px;
	}
	.main_common_tit h2 {
		font-size: 24px;
	}

	/* 메인 배너 */
	#main_hero {
		width: 100%;
		height: auto;
		aspect-ratio: 340 / 300;
	}
	#main_hero img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#main_hero .swiper-slide .txt {
		position: absolute;
		width: 100%;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
		letter-spacing: -2%;
	}
	#main_hero .swiper-slide .txt h3 {
		font-size: 28px;
		margin-bottom: 12px;
	}
	#main_hero .swiper-slide .txt h3 svg {
		width: 160px;
	}
	#main_hero .swiper-slide .txt p {
		font-size: 14px;
	}
	#main_hero .swiper-slide .txt h3 {opacity: 0;transform: translateY(50px);transition: all 0.8s ease;} 
	#main_hero .swiper-slide .txt p {opacity: 0;transform: translateY(50px);transition: all 0.8s ease;} 
	#main_hero .swiper-slide-active .txt h3 {opacity: 1;transform: translateY(0);transition-delay: 0.5s;} 
	#main_hero .swiper-slide-active .txt p {opacity: 1;transform: translateY(0);transition-delay: 0.7s;} 
	#main_hero .hero_slider .swiper-pagination {display: block; bottom: 30px;}
	#main_hero .hero_slider .swiper-pagination-bullet { width: 24px; height: 2px;margin: 0 6px 0 0; background: rgba(255, 255, 255, 0.40); opacity: 1; transition: background 0.3s, transform 0.3s; border-radius: 0;}
	#main_hero .hero_slider .swiper-pagination-bullet-active {background: #fff;}
	#main_hero .hero_slider .fraction {
		display: none;
	}
	#main_hero .hero_slider .swiper-button-next,
	#main_hero .hero_slider .swiper-button-prev {
		display: none;
	}
	/* 베스트 케어 */
	#main_best .best_con {
		display: none;
	}
	#main_best .main_common_tit h2 {
		font-size: 22px;
	}
	#main_best .container {
		padding: 40px 20px 80px;
	}
	#main_best .best_slider {
		display: block;
		position: relative;
		overflow-x: hidden;
		margin-top: 24px;
		padding-bottom: 43px;
	}

	#main_best .best_slider .swiper-slide {
		width: 232px;
	}
	#main_best .best_slider .swiper-slide .img {
		width: 100%;
		aspect-ratio: 424/332;
	}
	#main_best .best_slider .swiper-slide .txt {
		margin-top: 20px;
	}
	#main_best .best_slider .swiper-slide .txt h3 {
		color: #111;
		font-size: 18px;
		font-weight: 600;
		line-height: 150%;
		margin-bottom: 4px;
	}
	#main_best .best_slider .swiper-slide .txt p {
		color: #666;
		font-size: 14px;
		font-weight: 400;
		line-height: 150%;
	}

	#main_best .best_slider .swiper-pagination-bullets {
		bottom: 0 !important;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#main_best .best_slider .swiper-pagination-bullet-active {
		background: #111;
	}

	#main_best .best_slider .swiper-pagination-bullet-active {
		background: #111;
		width: 22px;
		border-radius: 20px;
	}

	/* 텔로액트 */
	#main_care01 .container {
		padding-top: 0;
		padding-bottom: 48px;
	}
	#main_care02 .container {
		padding-top: 0;
	}
	#main_care02 .container {
		flex-direction: column-reverse;
	}
	.care .container {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px 0;
	}
	.care .container > div {
		width: 100%;
	}
	.care .container .img {
	}
	.care .container .txt span {
		font-size: 16px;
	}
	.care .container .txt h2 {
		font-size: 20px;
		margin-top: 4px;
	}
	.care .container .txt p {
		font-size: 14px;
		margin: 10px 0 24px;
	}
	.care .container .txt a {
		margin: 0 auto;
		width: 60%;
		height: 42px;
		font-size: 14px;
	}

	#main_etc .container {
		padding-top: 0;
	}
	.etc_list {
		display: none;
	}
	#main_etc .etc_slider {
		display: block;
		position: relative;
		overflow-x: hidden;
		padding-bottom: 43px;
		
	}
	.etc_slider h2 {
		font-family: "Cormorant", sans-serif;
	}
	#main_etc .main_common_tit span {
		color: #666;
		font-size: 14px;
		margin-bottom: 4px;
	}
	#main_etc .etc_slider .swiper-slide {
		width: 232px !important;
	}
	#main_etc .etc_slider .swiper-slide .img {
		width: 100%;
		aspect-ratio: 232 / 132;
		background-color: #cdcbc7;
		margin-top: 24px;
	}
	#main_etc .etc_slider .swiper-pagination-bullets {
		bottom: 0 !important;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#main_etc .etc_slider .swiper-pagination-bullet-active {
		background: #111;
		width: 22px;
		border-radius: 20px;
	}
	#main_info .container {
		padding: 40px 20px;
	}		
	#main_info .main_common_tit h2 {
		font-size: 24px;
	}
	.info_con {
		flex-wrap: wrap;
		margin-top: 12px;
		padding-top: 20px;
		gap: 24px 0;
	}
	.info_con .img {
		width: 100%;
		height: auto;
		aspect-ratio: 300 / 220;
	}
	.info_con .txt ul li span {
		font-size: 16px;
	}
	.info_con .txt ul li p {
		font-size: 16px;
	}

	/* 푸터 */
	#footer {
		background-color: #111;
	}
	#footer .footer_container {
		padding: 32px 20px;
	}
	.footer_logo {
		width: 25%;
	}
	.footer_info {
		display: none;
	}
	.footer_m_info {
		display: flex;
		width: 100%;
		flex-wrap: wrap;
		gap: 8px 0;
	}
	.footer_m_info > ul {
		width: 100%;
		text-align: left;
	}
	.footer_m_info > ul li {
		/* display: inline-block; */
	}
	.footer_m_info > ul li span {
		display: inline-block;
		margin-right: 8px;
		color: #fff;
		font-family: "Noto Sans KR";
		font-size: 12px;
		font-weight: 400;
		line-height: 100%; /* 12px */
	}
	.footer_m_info > ul li em {
		color: #9a9a9a;
		font-family: "Noto Sans KR";
		font-size: 12px;
		font-weight: 400;
		line-height: 100%; /* 12px */
		margin-right: 8px;
	}
	.copyright {
		text-align: left;
	}
}

@media (max-width: 950px) {
	#main_best .best_con {
		gap: 0 20px;
	}
	#main_best .best_con li .txt p {
		font-size: 14px;
	}

	.care .container .txt p {
		margin: 10px 0 24px;
	}
	.care .container .txt a {
		width: 172px;
		height: 38px;
	}
}

