/* ============================== [ 메인 레이아웃 ] ========================================================================================== */

@import url(/assets/css/popup.css);

.inner.inside {
	position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
	z-index: 1;
    pointer-events: none;
}

.mob-link {
	pointer-events: none;
}

.sec_tit {
	text-align: center;
	z-index: 1;
	position: relative;
}

.sec_tit h2 {
	font-size: 52px;
	font-weight: 700;
	font-family: 'NanumSquareNeo';
	display: inline-block;
	padding-right: 21px;
	background: url(../images/common/mark.svg) no-repeat right top;
	background-size: 18px auto;
}

.sec_tit p {
	margin-top: 16px;
	font-size: 22px;
	font-weight: 500;
}

.sec_tit p br {
	display: none;
}

.sec_tit.wh h2,
.sec_tit.wh p {
	color: #fff;
}

.sec_tit.tl {
	text-align: left;
}

section {
	padding: 90px 0;
}

@media screen and (max-width: 1024px) {
	.sec_tit h2 {
		font-size: 28px;
		padding-right: 15px;
		background-size: 12px auto;
	}

	.sec_tit p {
		margin-top: 8px;
		font-size: 18px;
	}

	.sec_tit p br {
		display: block;
	}

	.sec_tit.tl {
		text-align: center;
	}

	section {
		padding: 60px 0;
	}
}

/* 메인 슬라이드 */
.sec_01 {
	position: relative;
	padding: 0;
}

.main_visual {
	position: relative;
}

.sec_01 .scroll {
	display: block;
	content: '';
	border: 2px solid #fff;
	border-radius: 25px;
	width: 32px;
	height: 52px;
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	z-index: 1;
}

.sec_01 .scroll::after {
	display: block;
	content: '';
	width: 2px;
	height: 7px;
	background-color: #fff;
	position: absolute;
	left: calc(50% - 1px);
	bottom: 13px;
	animation: scrollMove 2s infinite ease-in-out;
}

.main_visual .img {
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.main_visual .img::after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .3);
}

@keyframes scrollMove {
	0% {
		transform: translateY(-5px);
	}

	50% {
		transform: translateY(5px);
	}

	100% {
		transform: translateY(-5px);
	}
}

.main_visual .img img {
	height: 100%;
	animation: img-scale-2 2s linear;
	transition: .3s;
}

.main_visual .swiper-slide-active .img img {
	animation: img-scale 4s linear;
}

@keyframes img-scale {
	from {
		transform: scale(1.2);
	}

	to {
		transform: scale(1);
	}
}

@keyframes img-scale-2 {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.2);
	}
}

.main_visual .item {
	position: relative;
}

.main_visual .item p {
	color: #fff;
	font-size: 60px;
	font-weight: 700;
	position: absolute;
	left: 9%;
	left: 20px;
	top: 43%;
	font-family: 'NanumSquareNeo';
}

.main_visual .item p {
	transform: translateY(30px);
	opacity: 0;
	transition: 1s .3s;
}

.main_visual .swiper-slide-active p {
	transform: translateY(0);
	opacity: 1;
}

.main_visual .main_bullet {
	position: absolute;
	left: 9%;
	left: 20px;
	top: 65%;
	z-index: 1;
	height: 10px;
	width: auto;
	bottom: inherit;
	background-color: transparent;
    pointer-events: all;
}

.main_visual .main_bullet .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border: 1.5px solid #fff;
	margin: 0 7px;
	background-color: transparent;
	opacity: 1;
	transition: .3s;
}

.main_visual .main_bullet .swiper-pagination-bullet:first-child {
	margin-left: 0;
}

.main_visual .main_bullet .swiper-pagination-bullet-active {
	width: 60px;
	height: 10px;
	background-color: #fff;
	border-radius: 60px;
}

.menu_box {
	width: 410px;
	padding: 40px;
	border-radius: 5px;
	border: 1px solid #FFFFFF4D;
	background-color: rgba(0, 0, 0, .25);
	position: absolute;
	right: 9%;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
    pointer-events: all;
}

.menu_box .prd_box h3 label,
.menu_box .prd_box h3 {
	font-weight: 600;
	font-size: 18px;
	color: #fff;
}

.menu_box .prd_box .prd_li {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.menu_box .prd_box .prd_li li {
	width: 33.33%;
}

.menu_box .prd_box .prd_li li a {
	width: 110px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}

.menu_box .prd_box .prd_li li a:hover {
	background-color: rgba(0, 0, 0, .6);
}

.menu_box .prd_box .prd_li li a span {
	color: #fff;
	font-weight: 500;
	padding-top: 54px;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 46px;
	width: 100%;
	text-align: center;
}

.menu_box .prd_box .prd_li li:nth-child(1) a span {
	background-image: url(../images/main/prd_01.svg);
}

.menu_box .prd_box .prd_li li:nth-child(2) a span {
	background-image: url(../images/main/prd_02.svg);
}

.menu_box .prd_box .prd_li li:nth-child(3) a span {
	background-image: url(../images/main/prd_03.svg);
}

.menu_box .prd_box .prd_li li:nth-child(4) a span {
	background-image: url(../images/main/prd_04.svg);
}

.menu_box .prd_box .prd_li li:nth-child(5) a span {
	background-image: url(../images/main/prd_05.svg);
}

.menu_box .prd_box .prd_li li:nth-child(6) a span {
	background-image: url(../images/main/prd_06.svg);
}

.menu_box .srch_box {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #FFFFFF80
}

.menu_box .srch_box h3 label {
	font-weight: 600;
	font-size: 18px;
	color: #fff;
}

.menu_box .srch_box .srch_wrap {
	margin-top: 20px;
	position: relative;
}

.menu_box .srch_box .srch_wrap input {
	width: 100%;
	height: 40px;
	border: 1px solid transparent;
	backdrop-filter: blur(10px);
	background: #FFFFFF80;
	padding: 0 40px 0 10px;
	color: #fff;
	transition: .3s;
}

.menu_box .srch_box .srch_wrap input:active {
	border-color: #fff;
}

.menu_box .srch_box .srch_wrap input:hover {
	border-color: #fff;
}

.menu_box .srch_box .srch_wrap input:focus {
	border-color: #fff;
}

.menu_box .srch_box .srch_wrap input::placeholder {
	color: #000 !important;
}

.menu_box .srch_box .srch_wrap button {
	width: 28px;
	height: 28px;
	background: url(../images/main/icon_search.svg) no-repeat 0 0;
	background-size: 100% auto;
	transition: .3s;
	position: absolute;
	right: 10px;
	top: calc(50% - 14px);
}

.menu_box .srch_box .srch_wrap input:active~button,
.menu_box .srch_box .srch_wrap input:hover~button,
.menu_box .srch_box .srch_wrap input:focus~button {
	background-image: url(../images/main/icon_search_wh.svg);
}

.menu_box .srch_box .tooltip {
	position: absolute;
	right: 0;
	top: -45px;
}

.menu_box .srch_box .tooltip::after {
	display: block;
	content: '';
	background: url(../images/main/tooltip.svg) no-repeat;
	width: 10px;
	height: 7px;
	position: absolute;
	right: 20px;
	bottom: -6px;
}

.menu_box .srch_box .tooltip p {
	font-weight: 500;
	font-size: 12px;
	padding: 4px 12px;
	background-color: #40EFEC;
	border-radius: 15px;
}

.menu_box .link_box {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #FFFFFF80
}

.menu_box .link_box a {
	width: 89px;
	font-size: 18px;
	padding-right: 26px;
	transition: .3s;
	color: #fff;
	background: url(../images/main/icon_goto.svg) no-repeat right center;
	background-size: 20px auto;
}

.menu_box .link_box a:hover {
	color: var(--mint);
	background-image: url(../images/main/icon_goto_on.svg);
}

@media screen and (max-width: 1500px) {
	.main_visual .item p {
		left: 40px;
		font-size: 50px;
	}

	.main_visual .main_bullet {
		left: 40px;
		top: 62%;
	}

	.menu_box {
		right: 40px;
	}
}

@media screen and (max-width: 1200px) {
	.main_visual .item p {
		left: 20px;
		font-size: 45px;
	}

	.main_visual .main_bullet {
		left: 20px;
		top: 60%;
	}

	.menu_box {
		right: 20px;
	}
}

@media screen and (max-width: 1024px) {

	.inner.inside {
		position: static;
		transform: none;
		top: auto;
	}

	.main_visual::after {
		display: none;
	}

	.main_visual .main_bullet {
		top: 63%;
	}

	.main_visual .img {
		height: 500px;
	}

	.main_visual .item p {
		font-size: 35px;
	}

	.menu_box {
		width: 100%;
		padding: 30px 20px 0;
		position: relative;
		right: 0;
		top: 0;
		transform: none;
		background-color: transparent;
		border: none;
	}

	.menu_box .prd_box {
		padding-bottom: 30px;
		border-bottom: 1px solid #e0e0e0;
	}

	.menu_box .prd_box .prd_li {
		margin-top: 0;
	}

	.menu_box .prd_box .prd_li li a {
		width: 100%;
		border-radius: 12px;
	}

	.menu_box .prd_box .prd_li li a span {
		font-weight: 500;
		color: #000;
	}

	.menu_box .prd_box .prd_li li a:hover {
		background-color: #ECF8FA;
	}

	.menu_box .prd_box h3 label,
	.menu_box .prd_box h3,
	.menu_box .srch_box,
	.menu_box .link_box {
		display: none;
	}

	.menu_box .prd_box .prd_li li:nth-child(1) a span {
		background-image: url(../images/main/prd_01_mo.svg);
	}

	.menu_box .prd_box .prd_li li:nth-child(2) a span {
		background-image: url(../images/main/prd_02_mo.svg);
	}

	.menu_box .prd_box .prd_li li:nth-child(3) a span {
		background-image: url(../images/main/prd_03_mo.svg);
	}

	.menu_box .prd_box .prd_li li:nth-child(4) a span {
		background-image: url(../images/main/prd_04_mo.svg);
	}

	.menu_box .prd_box .prd_li li:nth-child(5) a span {
		background-image: url(../images/main/prd_05_mo.svg);
	}

	.menu_box .prd_box .prd_li li:nth-child(6) a span {
		background-image: url(../images/main/prd_06_mo.svg);
	}
}

@media screen and (max-width: 768px) {
	.main_visual .img {
		height: 280px;
	}

	.main_visual .item p {
		font-size: 24px;
		top: inherit;
		bottom: 50px;
	}

	.main_visual .main_bullet {
		bottom: 30px;
		top: inherit;
	}

}

/* 이벤트 */
.evt_li {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
}

/* 이벤트 배너 3개까지만 보이게 */
.evt_li > li:nth-child(n+4) {
	display: none;
}

.evt_li a {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	height: 200px;
}

.evt_li a .img,
.evt_li a .img img {
	height: 100%;
}

.evt_li a .img {
	overflow: hidden;
	position: relative;
}

.evt_li a .img img {
	transition: .4s;
	width: 100%;
	height: 100%;
	transition: 0.4s;
}

.evt_li a:hover .img img {
	transform: translateX(-1%) scale(1.05);
}

.evt_li a .img img.mo {
	display: none;
}

.evt_li a .txt_wrap {
	position: absolute;
	left: 80px;
	top: 40px;
}

.evt_li a span {
	padding: 4px 14px;
	display: inline-block;
	font-weight: 600;
	background-color: #40EFEC;
	border-radius: 15px;
}

.evt_li a p {
	color: #fff;
	margin-top: 10px;
	font-size: 20px;
	font-weight: 700;
	font-family: 'NanumSquareNeo';
}

.evt_li a strong {
	margin-top: 4px;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	font-family: 'NanumSquareNeo';
}

@media screen and (max-width: 1024px) {
	.evt_li a {
		height: 140px;
	}

	.evt_li a .txt_wrap {
		top: 30px;
		left: 20px;
	}

	.evt_li a span {
		padding: 2x 14px;
		font-size: 14px;
	}

	.evt_li a p {
		margin-top: 6px;
		font-size: 14px;
	}

	.evt_li a strong {
		font-size: 18px;
	}

	.evt_li a .img img.pc {
		display: none;
	}

	.evt_li a .img img.mo {
		display: block;
	}
}

/* 매장찾기 */
.sec_03 {
	background: url(../images/main/bg_store.webp) no-repeat center;
	background-size: cover;
	position: relative;
}

.sec_03 .inner {
	position: relative;
	z-index: 1;
}

.sec_03 .search_box {
	display: flex;
	gap: 20px;
	margin-top: 40px;
	background-color: rgba(0, 0, 0, .8);
	border-radius: 20px;
	padding: 60px;
}

.sec_03 .search_box .item {
	width: 21.7%;
	width: 320px;
}

.sec_03 .search_box .item.inpt {
	flex: 1;
}

.sec_03 .search_box .item label {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, .7);
	font-weight: 500;
}

.sec_03 .search_box .item select {
	height: 71px;
	border: 1px solid #FFFFFF66;
	width: 100%;
	border-radius: 5px;
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	padding: 0 50px 0 30px;
	background: url(../images/main/icon_select_arr.svg) no-repeat right 30px center;
	cursor: pointer;
}

.sec_03 .search_box .item option,
.sec_03 .search_box .item select,
.sec_03 .search_box .item ::picker(select) {
	transition: .1s ease-in-out;
	appearance: base-select;
	align-items: center;
}

.sec_03 .search_box .item select::picker-icon {
	display: none;
}

.sec_03 .search_box .item select:open {
	border-color: #fff;
	border-radius: 5px;
}

.sec_03 .search_box .item select select {
	margin-top: 5px;
}

.sec_03 .search_box .item ::picker(select) {
	background-color: rgba(0, 0, 0, .8);
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.80);
	max-height: 300px;
	scrollbar-width: thin;
	scrollbar-color: #939393 transparent;
	border: 1px solid #fff;
	margin: 8px 0;
}

.sec_03 .search_box .item::-webkit-scrollbar-track {
	background-color: grey;
}

.sec_03 .search_box .item::picker(select)::-webkit-scrollbar-button {
	display: none;
}

.sec_03 .search_box .item option {
	max-width: 320px;
	font-size: clamp(17px, 1.0417vw, 20px);
	color: #fff;
	padding: 16px 30px;
	gap: .8rem;
	appearance: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


.sec_03 .search_box .item option:first-child {
	position: relative;
}

.sec_03 .search_box .item option:hover {
	color: #40EFEC;
	background-color: transparent;
}

.sec_03 .search_box .item option::checkmark {
	display: none;
}


.sec_03 .search_box .item select {
	height: 71px;
	border: 1px solid #FFFFFF66;
	width: 100%;
	border-radius: 5px;
	font-size: clamp(18px, 1.1458vw, 22px);
	font-weight: 500;
	color: #fff;
	padding: 0 50px 0 30px;
	background: url(../images/main/icon_select_arr.svg) no-repeat right 30px center;
	cursor: pointer;
}

.sec_03 .search_box .item select:focus {
	border-color: #fff;
}

.sec_03 .search_box .item .srch {
	position: relative;
}

.sec_03 .search_box .item .srch input {
	height: 71px;
	border: 1px solid #FFFFFF66;
	width: 100%;
	border-radius: 5px;
	font-size: clamp(18px, 1.1458vw, 22px);
	font-weight: 500;
	color: #fff;
	background-color: transparent;
	padding: 0 70px 0 30px;
}

.sec_03 .search_box .item .srch button {
	width: 32px;
	height: 32px;
	background: url(../images/main/icon_search_wh_02.svg) no-repeat 0 0;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
}

.sec_03 .search_box .item .srch input::placeholder {
	color: #fff !important;
}

.sec_03 .more_btn {
	transition: .3s;
	margin: 40px auto 0;
	width: 208px;
	height: 49px;
	border: 1.5px solid #fff;
	border-radius: 25px;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	padding-left: 36px;
	display: flex;
	align-items: center;
	transition: .3s;
	background: url(../images/main/icon_goto_10.svg) no-repeat right 36px center;
	background-size: 10px auto;
}

.sec_03 .more_btn:hover {
	background-color: #fff;
	color: #000;
}

@media screen and (max-width: 1024px) {
	.sec_03 .search_box {
		padding: 20px;
		gap: 10px;
		margin-top: 30px;
	}

	.sec_03 .search_box .item {
		width: 26%;
	}

	.sec_03 .search_box .item option {
		max-width: none;
	}

	.sec_03 .search_box .item label {
		margin-bottom: 8px;
	}

	.sec_03 .search_box .item select,
	.sec_03 .search_box .item .srch input {
		height: 60px;
		font-size: 16px;
		padding: 0 60px 0 20px;
		background-position: right 20px center;
	}

	.sec_03 .search_box .item option {
		padding: 16px;
	}

	.sec_03 .search_box .item .srch button {
		right: 20px;
	}

	.sec_03 .more_btn {
		/* margin-top: 20px; */
		width: 197px;
		height: 46px;
		font-size: 16px;
	}

	.sec_03 .search_box .item {
		width: 220px;
	}
}

@media screen and (max-width: 768px) {
	.sec_03 .search_box .item {
		display: none;
	}

	.sec_03 .search_box .item.inpt {
		display: block;
	}
}

/* 고객후기 */
.rv_slide {
	margin-top: 60px;
}

.rv_slide .swiper-wrapper {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.rv_slide .swiper-slide {
	width: calc(25% - 30px);
}

.rv_slide .img {
	height: 240px;
	position: relative;
}

.rv_slide .img img {
	height: 100%;
}

.rv_slide .img::after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: .3s;
}

.rv_slide .img::before {
	display: block;
	content: '';
	width: 43px;
	height: 43px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0px 0px 20px 0px #00000040;
	background: #fff url(../images/main/icon_rv_go.svg) no-repeat center;
	z-index: 2;
	opacity: 0;
	transition: opacity .3s;
}

.rv_slide a:hover .img::before,
.rv_slide a:hover .img::after {
	opacity: 1;
}

.rv_slide h3 {
	margin-top: 20px;
	font-size: 22px;
	font-weight: 700;
	font-family: 'NanumSquareNeo';
}

.rv_slide p {
	margin-top: 8px;
	font-size: 18px;
	color: #222;
	display: -webkit-box;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.rv_slide span {
	margin-top: 16px;
	color: #636363;
	display: block;
}

.rv_bullet {
	display: none;
	width: auto;
	margin-top: 35px;
	text-align: center;
}

.rv_bullet .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 4px;
	background-color: #B9B9B9;
	opacity: 1;
	transition: .3s;
}

.rv_bullet .swiper-pagination-bullet:first-child {
	margin-left: 0;
}

.rv_bullet .swiper-pagination-bullet-active {
	width: 28px;
	height: 10px;
	background-color: #EC1B23;
	border-radius: 25px;
}

@media screen and (max-width: 1300px) {
	.rv_slide .swiper-wrapper {
		gap: 20px
	}

	.rv_slide .swiper-slide {
		width: calc(25% - 15px);
	}
}

@media screen and (max-width: 1025px) {
	.rv_slide .swiper-wrapper {
		gap: 0;
	}

	.rv_slide .swiper-slide {
		flex: none;
		width: 310px;
	}

	.rv_slide {
		margin-top: 30px;
	}

	.rv_slide .img {
		height: 120px;
	}

	.rv_slide h3 {
		margin-top: 10px;
		font-size: 16px;
	}

	.rv_slide p {
		margin-top: 4px;
		font-size: 14px;
	}

	.rv_slide span {
		margin-top: 8px;
		font-size: 12px;
	}

	.rv_bullet {
		display: flex;
		justify-content: center;
	}
}

.rv_popup {
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 9999;
	transform: translate(-50%, -50%);
}

.rv_popup_swiper {
	border-radius: 5px;
}

.rv_popup_inner {
	width: 1000px;
	position: relative;
}

.rv_popup_inner .swiper-slide {
	display: flex;
	height: 600px;
}

.rv_popup_inner .img {
	width: 50%;
	height: 100%;
}

.rv_popup_inner .img img {
	height: 100%;
}

.rv_slide span.tag {
	display: none;
}

.rv_popup .tag {
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: var(--f16-size);
	background-color: var(--kt-red);
	border-radius: 9999px;
	padding: 4px 16px;
	color: #fff;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	display: none;
}

.rv_popup_inner .txt_wrap .rv_tit p span.tag {
	color: #fff;
}

.rv_popup .swiper-slide-active .tag {
	display: block;
}

.rv_popup_inner .txt_wrap {
	width: 50%;
	background-color: #fff;
	padding: 40px;
}

.rv_popup_inner .txt_wrap .rv_tit {
	margin-bottom: 28px;
	padding-bottom: 8px;
	border-bottom: 1px solid #f0f0f0;
}

.rv_popup_inner .txt_wrap .rv_tit h4 {
	padding-right: 74px;
	font-size: 22px;
	font-weight: 700;
	font-family: 'NanumSquareNeo';
}

.rv_popup_inner .txt_wrap .rv_tit p {
	margin-top: 3px;
	display: flex;
}

.rv_popup_inner .txt_wrap .rv_tit p span {
	color: #999;
}

.rv_popup_inner .txt_wrap .rv_tit p span~span {
	padding-left: 20px;
	margin-left: 20px;
	position: relative;
}

.rv_popup_inner .txt_wrap .rv_tit p span~span::before {
	display: block;
	content: '';
	width: 1px;
	height: 12px;
	position: absolute;
	left: 0;
	top: 3px;
	background-color: #999;
}

.rv_popup_inner .txt_wrap .rv {
	height: 400px;
	overflow: auto;
	font-size: 18px;
	line-height: 1.6;
}

.rv_popup_inner .popup_close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 42px;
	height: 42px;
	background: url(../images/main/icon_rv_pop_close.svg) no-repeat 0 0;
	background-size: 100% auto;
	z-index: 1;
}

.rv_popup_inner .paging_wrap .prev {
	width: 70px;
	height: 70px;
	background: url(../images/main/arr_pop_l.svg) no-repeat 0 0;
	background-size: 70px auto;
	transition: background-image .3s;
	left: -100px;
}

.rv_popup_inner .paging_wrap .prev::after {
	display: none;
}

.rv_popup_inner .paging_wrap .next::after {
	display: none;
}

.rv_popup_inner .paging_wrap .prev:hover {
	background-image: url(../images/main/arr_pop_l_on.svg);
}

.rv_popup_inner .paging_wrap .next {
	width: 70px;
	height: 70px;
	background: url(../images/main/arr_pop_r.svg) no-repeat 0 0;
	background-size: 70px auto;
	transition: background-image .3s;
	right: -100px;
}

.rv_popup_inner .paging_wrap .next:hover {
	background-image: url(../images/main/arr_pop_r_on.svg);
}

.rv_popup_inner .paging_wrap .rv_paging {
	display: none;
	width: auto;
}

.rv_popup_inner .paging_wrap .rv_paging span {
	width: 20px;
	text-align: center;
}

@media screen and (max-width: 1260px) {

	.sec_03 .search_box .item {
		width: 260px
	}

	.sec_03 .search_box .item option {
		max-width: 260px;
	}
}

@media screen and (max-width: 1200px) {
	.rv_popup_inner {
		width: 800px;
	}
}

@media screen and (max-width: 1024px) {
	.rv_popup_inner {
		width: calc(100vw - 40px);
	}

	.rv_popup_inner .paging_wrap .rv_paging {
		display: flex;
		justify-content: space-between;
		width: 60px;
		color: #fff;
		font-size: 14px;
		font-weight: 600;
	}

	.rv_popup_inner .paging_wrap {
		display: flex;
		align-items: center;
		padding: 4px;
		width: 128px;
		height: 38px;
		border-radius: 25px;
		background-color: rgba(0, 0, 0, .9);
		margin: 20px auto 0;
	}

	.rv_popup_inner .paging_wrap .prev {
		width: 30px;
		height: 30px;
		background: url(../images/main/rv_l.svg) no-repeat center;
		background-size: 100% auto;
		left: 0;
		top: 0;
		margin: 0;
		position: relative;
	}

	.rv_popup_inner .paging_wrap .next {
		width: 30px;
		height: 30px;
		background: url(../images/main/rv_r.svg) no-repeat center;
		background-size: 100% auto;
		right: 0;
		top: 0;
		margin: 0;
		position: relative;
	}

	.rv_popup_inner .paging_wrap .prev:hover {
		background-image: url(../images/main/rv_l.svg);
	}

	.rv_popup_inner .paging_wrap .next:hover {
		background-image: url(../images/main/rv_r.svg);
	}
}

@media screen and (max-width: 768px) {
	.rv_popup {
		top: calc(50% + 21px);
	}

	.rv_popup_inner .swiper-slide {
		flex-direction: column;
		height: auto;
	}

	.rv_popup_inner .img {
		width: 100%;
		height: 220px;
	}

	.rv_popup_inner .txt_wrap {
		width: 100%;
		height: 280px;
		padding: 20px;
	}

	.rv_popup_inner .txt_wrap .rv_tit {
		margin-bottom: 20px;
		padding-bottom: 8px;
	}

	.rv_popup_inner .txt_wrap .rv_tit h4 {
		padding-right: 0;
		font-size: 18px;
	}

	.rv_popup_inner .txt_wrap .rv_tit p {
		margin-top: 0;
	}

	.rv_popup_inner .txt_wrap .rv_tit p span~span::before {
		height: 10px;
		top: 6px;
	}

	.rv_popup_inner .txt_wrap .rv {
		height: 160px;
		font-size: 16px;
	}

	.rv_popup_inner .popup_close {
		width: 32px;
		height: 32px;
		right: 0;
		top: -42px;
	}
}

/* 인재채용 */
.sec_05 {
	padding: 120px 0;
	background: url(../images/main/bg_rec.webp) no-repeat center;
	background-size: cover;
	position: relative;
}

.sec_05 .inner {
	position: relative;
	z-index: 1;
}

.emp_sec {
	margin-top: 220px;
}

.emp_sec ul {
	display: flex;
	gap: 50px
}

.emp_sec ul li {
	flex: 1;
}

.emp_sec ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px;
	border-bottom: 1px solid #E5E5E5;
	font-size: 36px;
	color: #e0e0e0;
	background: url(../images/main/icon_rec_go.svg) no-repeat right 10px center;
	background-size: 40px auto;
	transition: .5s;
	position: relative;
}

.emp_sec ul li a:hover {
	background-image: url(../images/main/icon_rec_go_on.svg);
}

.emp_sec ul li a::after {
	display: block;
	content: '';
	width: 100%;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #fff;
	opacity: 0;
	transition: .6s;
}

.emp_sec ul li a:hover {
	color: #fff;
}

.emp_sec ul li a:hover::after {
	opacity: 1;
}

.emp_sec ul li a strong {
	font-weight: 500;
}

.emp_sec ul li a span {
	padding: 4px 16px;
	font-family: 'NanumSquareNeo';
	font-size: 18px;
	font-weight: 700;
	color: #4c4c4e;
	background-color: #E0E0E0;
	border-radius: 25px;
	transition: background .5s;
}

.emp_sec ul li a:hover span {
	background-color: #fff;
	font-weight: 800;
}

@media screen and (max-width: 1024px) {
	.sec_05 {
		padding: 90px 0;
	}

	.emp_sec {
		margin-top: 140px;
	}

	.emp_sec ul {
		flex-direction: column;
		gap: 0;
	}

	.emp_sec ul li a {
		font-size: 24px;
	}

	.emp_sec ul li a span {
		font-size: 14px;
	}

	.emp_sec ul li a::after {
		height: 3px;
	}
}

/* 파트너십 */
.prt_sec {
	margin-top: 60px;
}

.prt_sec ul {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.prt_sec ul li {
	flex: 1;
	padding: 40px;
	border-radius: 20px;
}

.prt_sec ul li:first-child {
	background: #F6F6F6 url(../images/main/prt_01.webp) no-repeat right 50px bottom;
	background-size: 300px auto;
}

.prt_sec ul li:last-child {
	background: #F6F6F6 url(../images/main/prt_02.webp) no-repeat right bottom;
	background-size: 360px auto;
}

.prt_sec ul li h3 {
	font-weight: 700;
	font-size: 32px;
	font-family: 'NanumSquareNeo';
}

.prt_sec ul li p {
	margin-top: 12px;
	font-size: 20px;
	font-weight: 500;
	color: #222;
	width: 56%;
}

.prt_sec ul li a {
	margin-top: 100px;
	width: 189px;
	height: 49px;
	padding-left: 36px;
	font-size: 18px;
	font-weight: 600;
	background: #fff url(../images/main/icon_rec_go_on.svg) no-repeat right 36px center;
	background-size: 20px;
	border-radius: 25px;
	display: flex;
	align-items: center;
	transition: 0.3s;
}

.prt_sec ul li a:hover {
	background-color: #000;
	color: #fff;
}

@media screen and (max-width: 1200px) {
	.prt_sec ul li a {
		margin-top: 70px;
	}

	.prt_sec ul li p {
		width: 63%;
	}

	.prt_sec ul li:first-child {
		background-position: right -50px bottom;
		background-size: 250px auto;
	}

	.prt_sec ul li:last-child {
		background-position: right -60px bottom;
		background-size: 300px auto;
	}
}

@media screen and (max-width: 1024px) {

	.mob-link {
		pointer-events: auto;
	}

	.prt_sec ul {
		display: block;
	}

	.prt_sec ul li {
		padding: 30px;
	}

	.prt_sec ul li~li {
		margin-top: 20px;
	}

	.prt_sec ul li h3 {
		font-size: 22px;
	}

	.prt_sec ul li p {
		margin-top: 6px;
		font-size: 16px;
		width: 70%;
	}

	.prt_sec ul li a {
		background-size: 15px;
		margin-top: 40px;
		width: 147px;
		height: 42px;
		font-size: 16px;
		padding-left: 20px;
		background-position: right 20px center;
	}

	.prt_sec ul li:first-child {
		background-position: right -40px bottom;
		background-size: 200px auto;
	}

	.prt_sec ul li:last-child {
		background-position: right -40px bottom;
		background-size: 250px auto;
	}

	.sec_03 .search_box .item {
		width: 200px
	}

	.sec_03 .search_box .item option {
		max-width: 200px;
	}
}

@media screen and (max-width: 500px) {
	.prt_sec ul li p {
		font-size: 15px;
	}

	.prt_sec ul li:last-child {
		background-position: right -50px bottom;
		background-size: 220px auto;
	}
}

/* 지속가능성과 사회공헌 */
.work_slide {
	margin-top: 60px;
}

.work_slide .swiper-wrapper {
	display: flex;
	gap: 40px;
}

.work_slide .swiper-slide {
	flex: 1;
}

.work_slide .img {
	height: 260px;
	overflow: hidden;
}

.work_slide .img img {
	height: 100%;
	transition: .3s;
}

.work_slide .item:hover .img img {
	scale: 1.1;
}

.work_slide .txt_wrap {
	padding: 30px;
	background-color: #F6F6F6;
}

.work_slide .txt_wrap h3 {
	height: 56px;
	font-size: 20px;
	font-weight: 500;
	color: #222;
	display: -webkit-box;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.work_slide .txt_wrap p {
	height: 95px;
	margin-top: 20px;
	font-size: 17px;
	color: #222;
	display: -webkit-box;
	word-wrap: break-word;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.work_slide .txt_wrap span {
	text-align: right;
	display: block;
	margin-top: 40px;
	color: #636363;
}

.work_bullet {
	display: none;
	width: auto;
	margin-top: 35px;
	text-align: center;
}

.work_bullet .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 4px;
	background-color: #B9B9B9;
	opacity: 1;
	transition: .3s;
}

.work_bullet .swiper-pagination-bullet:first-child {
	margin-left: 0;
}

.work_bullet .swiper-pagination-bullet-active {
	width: 28px;
	height: 10px;
	background-color: #EC1B23;
	border-radius: 25px;
}

.sec_07 .more_btn {
	margin: 40px auto 0;
	width: 153px;
	height: 49px;
	border: 1.5px solid #000;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	align-items: center;
	padding-left: 36px;
	transition: .3s;
	background: url(../images/main/icon_rec_go_on.svg) no-repeat right 36px center;
	background-size: 20px auto;
}

.sec_07 .more_btn:hover {
	background-color: #000;
	color: #fff;
	transition: .3s;
}

@media screen and (max-width: 1300px) {
	.work_slide .swiper-wrapper {
		gap: 20px
	}
}

@media screen and (max-width: 1025px) {
	.work_slide .swiper-wrapper {
		gap: 0;
	}

	.work_slide {
		margin: 30px -20px 0;
	}

	.work_slide .swiper-slide {
		flex: none;
		width: 310px;
	}

	.work_bullet {
		display: block;
	}

	.work_slide .txt_wrap h3 {
		height: 44px;
		font-size: 16px;
	}

	.work_slide .txt_wrap p {
		height: 88px;
		font-size: 14px;
	}

	.work_slide .txt_wrap span {
		margin-top: 20px;
		font-size: 13px;
	}

	.sec_07 .more_btn {
		display: none;
	}
}