@charset "utf-8";

/* sub common */
#content {
	margin-top: 117px;
	padding: 100px 0;
}

.sub_title .inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.sub_title h1 {
	font-family: 'NanumSquareNeo';
	font-size: 60px;
	font-weight: 700;
	display: inline-block;
	padding-right: 25px;
	position: relative;
}

.sub_title h1::after {
	display: inline-block;
	content: '';
	width: 22px;
	height: 60px;
	background: url(../images/common/mark.svg) no-repeat top;
	background-size: contain;
}

.breadcrumb {
	display: flex;
	align-items: center;
}

.breadcrumb li {
	color: #888888;
	font-weight: 500;
	line-height: 1.4;
}

.breadcrumb li~li {
	padding-left: 26px;
	position: relative;
}

.breadcrumb li~li::after {
	display: block;
	content: '';
	width: 2px;
	height: 2px;
	position: absolute;
	left: 12px;
	top: 10px;
	background: #888888;
}

.breadcrumb li.home {
	padding-left: 18px;
	background: url(../images/sub/icon_home.svg) no-repeat left center;
}

.breadcrumb li:last-of-type {
	color: #363636;
}

.sub_visual {
	margin-top: 20px;
	position: relative;
	overflow: hidden;
}

.sub_visual .img {
	width: 100%;
	height: 500px;
}

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

.sub_desc {
	display: block;
	padding: 100px 20px;
	text-align: center;
}

.sub_desc p {
	font-size: 32px;
	font-weight: 500;
	color: #181818;
}

.sub_visual::before,
.sub_visual::after {
	content: "";
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	background: #fff;
	z-index: 2;
	animation: reveal-side 1.5s ease forwards;
}

.sub_visual::before {
	left: 0;
	transform-origin: left;
	animation-delay: 0s;
}

.sub_visual::after {
	right: 0;
	transform-origin: right;
	animation-delay: 0s;
}

/* 애니메이션 정의 */
@keyframes reveal-side {
	0% {
		transform: scaleX(1);
	}

	100% {
		transform: scaleX(0);
	}
}

@media screen and (max-width: 1024px) {
	#content {
		margin-top: 60px;
		padding: 40px 0 60px;
	}

	.sub_title h1 {
		font-size: 32px;
		padding-right: 15px;
	}

	.sub_title h1::after {
		width: 12px;
		height: 32px;
	}

	.breadcrumb {
		display: none;
	}

	.sub_visual .img {
		height: 300px;
	}

	.sub_desc {
		padding: 60px 20px;
	}

	.sub_desc p {
		font-size: 20px;
	}
}

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

	.sub_visual .img {
		height: 160px;
	}
}

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

/* sub tab */
.sub_tab {
	margin: 30px 0;
	margin: 60px 0;
	position: sticky;
	top: 146px;
	z-index: 4;
}

.sub_tab ul {
	display: flex;
	justify-content: center;
	filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.12))
}

.sub_tab ul li {
	background-color: #F6F6F6;
	position: relative;
}

.sub_tab ul li:first-child {
	border-radius: 28px 0 0 28px;
}

.sub_tab ul li:last-child {
	border-radius: 0 28px 28px 0;
}

.sub_tab ul li::before {
	width: 100%;
	height: 100%;
	background-color: #00A9A7;
	border-radius: 28px 6px;
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	/* transition: .3s; */
	transition-delay: .3s;
    transition-duration: .3s;
}

.sub_tab ul li.active::before {
	opacity: 1;
	visibility: visible;
}

.sub_tab ul li a {
	padding: 20px 50px;
	font-size: 24px;
	font-weight: 500;
	color: #363636;
	transition: .3s;
}

.sub_tab ul li a strong {
	font-weight: 500;
	position: relative;
	z-index: 1;
	/* transition: .3s; */
	transition-duration: .3s;
    transition-delay: .3s;
}

.sub_tab ul li.active a {
	color: #fff;
}

.sub_tab ul li.active a strong {
	font-weight: 600;
}

.sub_tab ul li a span {
	padding-left: 20px;
	position: relative;
	z-index: 1;
}

.sub_tab ul li a span::after {
	display: block;
	content: '';
	width: 1px;
	height: 16px;
	background-color: rgba(0, 0, 0, .15);
	position: absolute;
	left: 10px;
	top: 8px;
}

.sub_tab ul li.active a span::after {
	background-color: rgba(255, 255, 255, .5);
}

@media screen and (max-width: 1200px) {
	.sub_tab {
		margin: 30px 0;
	}

	.sub_tab ul li a {
		padding: 20px 35px;
		font-size: 20px;
	}
}

@media screen and (max-width: 1024px) {
	.sub_tab {
		top: 90px;
	}
}

.sub_tab_mo {
	position: relative;
	display: none;
	z-index: 4;
}

.sub_tab_mo a.current {
	color: #fff;
	background: #00A9A7 url(../images/sub/arr_sub_tab.svg) no-repeat right 20px center;
	background-size: 14px auto;
	border-bottom: none;
}

.sub_tab_mo a.current span::before {
	background-color: rgba(255, 255, 255, .5);
}

.sub_tab_mo a {
	display: flex;
	align-items: center;
	padding: 14px 20px;
	background-color: #fff;
	color: #363636;
	border-bottom: 1px solid #D9D9D9;
}

.sub_tab_mo a strong {
	font-size: 18px;
	font-weight: 600;
}

.sub_tab_mo a span {
	margin-left: 10px;
	padding-left: 10px;
	font-weight: 500;
	font-size: 18px;
	position: relative;
}

.sub_tab_mo a span::before {
	display: block;
	content: '';
	width: 1px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 3px;
	background-color: rgba(0, 0, 0, .15);
}

.sub_tab_mo ul {
	position: absolute;
	left: 0;
	top: 53px;
	width: 100%;
	display: none;
}

.sub_tab_mo ul li a:hover,
.sub_tab_mo ul li a:active,
.sub_tab_mo ul li a:focus,
.sub_tab_mo ul li.active a {
	background-color: #F6F6F6;
}

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

	.sub_tab_mo {
		display: block;
		position: sticky;
		top: 65px;
	}
}

/* Why kt m&s */
.select_map {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 120px;
}

.select_map .cont_l {
	flex: 1;
}

.select_map .cont_l strong {
	display: flex;
	font-weight: 600;
	font-size: 28px;
}

.select_map .cont_l strong img {
	width: 91px;
	height: 34px;
	margin-right: 4px;
}

.select_map .cont_l h2 {
	margin-top: 4px;
	font-size: 40px;
	font-weight: 600;
}

.select_map .cont_l p {
	margin-top: 20px;
	font-size: 24px;
}

.select_map .cont_l .btn_map {
	margin-top: 60px;
	gap: 20px;
	display: flex;
	flex-wrap: wrap;
	max-width: 562px;
	width: 100%;
}

.select_map .cont_l .btn_map li {
	width: calc(33.33% - 14px);
}

.select_map .cont_l .btn_map li button {
	width: 100%;
	border: 1.5px solid #000;
	border-radius: 25px;
	font-size: 18px;
	font-weight: 600;
	height: 49px;
	transition: color .3s, background-color .3s;
	background-image: url(../images/sub/btn_arr.svg);
	background-repeat: no-repeat;
	background-size: 12px auto;
	background-position: right 36px center;
	text-align: left;
	padding-left: 36px;
}

.select_map .cont_l .btn_map li.active button,
.select_map .cont_l .btn_map li button:hover {
	background-color: #000;
	color: #fff;
	background-image: url(../images/sub/btn_arr_on.svg);
}

.select_map .cont_r {
	width: 410px;
	height: 547px;
	position: relative;
}

.select_map .cont_r .img_list {
	background: url(../images/sub/customer-support/open-store/map_00.webp) no-repeat 0 0;
	height: 547px;
	background-size: 100% auto;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.select_map .cont_r .img_list li {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: .2s;
}

.select_map .cont_r .img_list li img {
	width: 100%;
	height: 100%;
}

.select_map .cont_r .img_list li.active {
	opacity: 1;
}

.select_map .cont_r .img_map {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.select_map .cont_r .img_map img {
	width: 100%;
	height: 100%;
}

.res_map {
	margin-top: 50px;
}

.res_map table th {
	border-top: 2px solid #000;
	border-bottom: 1px solid #b9b9b9;
	height: 80px;
	font-size: 20px;
	font-weight: 500;
	color: #363636;
}

.res_map table td {
	border-bottom: 1px solid #cbcbcb;
	text-align: center;
	height: 108px;
	font-size: 22px;
	font-weight: 500;
	transition: .3s;
}

.res_map table tr:hover td {
	background-color: #F6F6F6;
}

@media screen and (max-width: 1200px) {
	.select_map .cont_l .btn_map {
		max-width: 368px;
	}

	.select_map .cont_l .btn_map li {
		width: calc(50% - 10px);
	}
}

@media screen and (max-width: 1024px) {
	.select_map {
		flex-direction: column;
		margin-top: 60px;
		gap: 0;
		position: relative;
	}

	.select_map .cont_l {
		width: 100%;
		flex: none;
		text-align: center;
	}

	.select_map .cont_l strong {
		font-size: 20px;
		justify-content: center;
	}

	.select_map .cont_l strong img {
		width: 70px;
		height: 23px;
	}

	.select_map .cont_l h2 {
		font-size: 24px;
	}

	.select_map .cont_l p {
		margin-top: 16px;
		font-size: 16px;
	}

	.select_map .cont_l .btn_map {
		gap: 20px 10px;
		margin: 410px auto 0;
	}

	.select_map .cont_l .btn_map li {
		width: calc(33.33% - 7px);
	}

	.select_map .cont_l .btn_map li button {
		font-size: 14px;
		height: 44px;
		background-position: right 15px center;
		padding-left: 18px;
		background-size: 10px;
	}

	.select_map .cont_r {
		width: 256px;
		height: 342px;
		position: absolute;
		left: 40%;
		bottom: 200px;
	}

	.select_map .cont_r .img_list {
		height: 342px;
	}

	.res_map {
		margin-top: 60px;
	}

	.res_map table th {
		height: 40px;
		font-size: 13px;
	}

	.res_map table td {
		height: 56px;
		font-size: 14px;
	}
}

@media screen and (max-width: 768px) {
	.select_map .cont_r {
		left: 30%;
	}
}

/* paging */
.paging {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

.paging a {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.paging a.first {
	background-image: url(../images/sub/paging_01.svg);
}

.paging a.prev {
	background-image: url(../images/sub/paging_02.svg);
}

.paging a.next {
	background-image: url(../images/sub/paging_03.svg);
}

.paging a.last {
	background-image: url(../images/sub/paging_04.svg);
}

.paging ol {
	display: flex;
	gap: 8px;
	padding: 0 16px;
}

.paging ol a {
	font-size: 18px;
	font-weight: 500;
	color: #636363;
}

.paging ol a.active {
	background-color: #000;
	color: #fff;
}

@media screen and (max-width: 1024px) {
	.paging {
		margin-top: 30px;
	}

	.paging ol li:nth-child(n+4) {
		display: none;
	}
}

/* 고객문의 */
.cs_order {
	display: flex;
}

.cs_order li~li {
	margin-left: 56px;
	position: relative;
}

.cs_order li~li::before {
	display: block;
	content: '';
	background: url(../images/sub/customer-support/icon_cs_arr.svg) no-repeat 0 0;
	background-size: 100% auto;
	width: 40px;
	height: 40px;
	position: absolute;
	left: -48px;
	top: calc(50% - 20px);
}

.cs_order li {
	border: 1px solid #CCCCCC;
	border-radius: 10px;
	flex: 1;
	padding: 26px 20px 26px 126px;
	background-position: left 26px center;
	background-repeat: no-repeat;
	background-size: 100px auto;
	counter-increment: counter;
}

.cs_order li:nth-child(1) {
	background-image: url(../images/sub/customer-support/icon_cs_01.svg);
}

.cs_order li:nth-child(2) {
	background-image: url(../images/sub/customer-support/icon_cs_02.svg);
}

.cs_order li:nth-child(3) {
	background-image: url(../images/sub/customer-support/icon_cs_03.svg);
}

.cs_order li h2 {
	font-family: 'NanumSquareNeo';
	font-size: 24px;
	font-weight: 700;
}

.cs_order li h2::before {
	display: inline-block;
	content: counter(counter, decimal-leading-zero);
	color: #B9B9B9;
	margin-right: 8px;
}

.cs_order li p {
	margin-top: 6px;
	font-size: 18px;
	font-weight: 500;
}

.cs_wrap {
	margin-top: 50px;
}

.cs_wrap .policy_box {
	margin-top: 30px;
	border-radius: 10px;
	background-color: #f6f6f6;
	padding: 40px;
}

.cs_wrap .policy_box h2 {
	font-weight: 500;
	color: #636363;
	margin-bottom: 14px;
}

.cs_wrap .policy_box ol li {
	font-weight: 500;
	color: #636363;
}

.cs_wrap .policy_box>p {
	font-weight: 500;
	color: #636363;
	margin-top: 14px;
}

.cs_wrap .policy_box .chk_wrap {
	margin-top: 20px;
}

.cs_form {
	margin-top: 50px;
	border-top: 2px solid #000;
}

.cs_form .group {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #F3F3F3;
	padding: 24px 40px;
	min-height: 108px;
}

.cs_form .group.txtarea {
	align-items: flex-start;
}

.cs_form .group .item {
	flex: 1;
}

.cs_form .group .item:has(.alert) {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 30px;
	align-items: center;
}

.cs_form .group .item .alert {
	color: var(--kt-red);
	font-size: var(--f18-size);
	font-style: normal;
	font-weight: 400;
}

.cs_form .group .item .alert::before {
	width: 18px;
	height: 18px;
	display: inline-flex;
	margin-right: .5em;
	justify-content: center;
	align-items: center;
	border-radius: 9999em;
	background-color: var(--kt-red);
	content: '!';
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
}

.file-message p,
.common-form .file-message p {
    color: var(--gray-6e);
    font-size: var(--f14-size);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-left: .7rem;
    position: relative;
}

.file-message p:first-child,
.common-form .file-message p:first-child {
    margin-top: 10px;
}

.file-message p::before {
    content: '* ';
    position: absolute;
    left: 0;
}

/* .cs_form .group h2, */
.common-form .form-title {
	display: block;
	width: 220px;
	font-size: 22px;
	font-weight: 600;
}

.cs_form .group select,
.cs_form .group input {
	width: 100%;
	max-width: 540px;
	height: 60px;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 0 16px;
	font-size: 18px;
	font-weight: 500;
}

.cs_form .group .item:not(:has(.file)) input:read-only {
	background-color: #eee;
}

.cs_form .group select {
	padding-right: 40px;
	background: url(../images/sub/icon_select.svg) no-repeat right 16px center;
}

.cs_form .group .num {
	display: flex;
	align-items: center;
}

.cs_form .group .num .selected,
.cs_form .group .num input {
	max-width: 171px;
}

.cs_form .group .num .selected {
	min-width: 150px;
}

.cs_form .group .num input.num1 {
	max-width: 150px;
}

.cs_form .group .num span {
	margin: 0 8px;
	width: 8px;
	height: 1px;
	background-color: #B9B9B9;
}

.cs_form .group .mail {
	display: flex;
	align-items: center;
}

.cs_form .group .mail input {
	max-width: 253px;
}

.cs_form .group .mail span {
	margin: 0 8px;
	font-size: 20px;
	font-weight: 500;
	color: #B9B9B9;
}

.cs_form .group .mail select {
	width: 253px;
	margin-left: 12px;
}

.cs_form .group textarea {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 16px;
	resize: none;
	width: 100%;
	height: 200px;
	/* outline: none;  */
	font-size: 18px;
}

.cs_form .group .file {
	display: flex;
}

.cs_form .group .file label:not(.sr-only) {
	position: relative;
	cursor: pointer;
	margin-left: 11px;
}


.cs_form .group .file input[type="file"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
	pointer-events: none;

	display: none;
}

/* 폼 전송 이상 있을 때 
display none => tab-index=-1 로 변경하기 */

.cs_form .group .file .file-btn {
	width: 110px;
	height: 60px;
	border-radius: 5px;
	background-color: #6E6E6E;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}

.common-form .file .file-btn:focus,
.common-form .file .file-btn:hover {
	background-color: #000;
}

.cs_wrap .btn_wrap {
	margin-top: 60px;
	text-align: center;
}

.cs_wrap .btn_wrap .cs_btn {
	width: 180px;
	height: 62px;
	background-color: #EC1B23;
	border-radius: 5px;
	font-weight: 600;
	font-size: 22px;
	color: #fff;
	transition: .3s;
}

.cs_wrap .btn_wrap .cs_btn:hover {
	background-color: #000;
}

@media screen and (max-width: 1200px) {
	.cs_order li {
		padding-left: 100px;
		background-position: left center;
	}
}

@media screen and (max-width: 1024px) {
	.cs_wrap {
		margin-top: 60px;
	}

	.cs_order {
		flex-direction: column;
	}

	.cs_order li~li {
		margin: 40px 0 0 0;
	}

	.cs_order li~li::before {
		transform: rotate(90deg);
		left: calc(50% - 20px);
		top: -40px;
	}

	.cs_order li {
		padding-left: 116px;
		background-position: left 10px center;
	}

	.cs_order li h2 {
		font-size: 18px;
	}

	.cs_order li p {
		font-size: 16px;
	}

	.cs_wrap .policy_box {
		margin-top: 60px;
		padding: 24px;
	}

	.cs_wrap .policy_box h2 {
		font-size: 14px;
	}

	.cs_wrap .policy_box ol li {
		font-size: 14px;
		margin-top: 8px;
	}

	.cs_wrap .policy_box>p {
		font-size: 14px;
		margin-top: 8px;
	}

	.cs_wrap .policy_box .chk_wrap {
		margin-top: 12px;
	}

	.cs_form {
		margin-top: 60px;
	}

	.cs_form .group {
		padding: 24px 10px;
		min-height: auto;
		display: block;
	}

	.common-form .form-title,
	.cs_form .group h2 {
		width: auto;
		margin-bottom: 20px;
		font-size: 18px;
	}

	.common-form .group .form-subject {
		margin-bottom: 0;
	}

	.cs_form .group select,
	.cs_form .group input {
		/* flex: 1 1 0; */
		height: 48px;
		font-size: 16px;
	}

	.cs_form .group .file > input {
		flex: 1 1 0;
	}

	.common-form .group .num .selected,
	.cs_form .group .num input {
		flex: 1;
	}

	.cs_form .group .mail {
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	.cs_form .group .mail input {
		max-width: calc(50% - 17px);
	}

	.cs_form .group select, .cs_form .group .num .selected {
		min-width: auto;
	}

	.cs_form .group .mail select {
		flex: none;
		width: calc(50% - 17px);
		margin-top: 10px;
		font-size: 16px;
	}

	.cs_form .group textarea {
		height: 144px;
		font-size: 16px;
	}

	
	.cs_form .group .file .file-btn {
		width: 80px;
		height: 48px;
		font-size: 16px;
	}

	.cs_wrap .btn_wrap {
		margin-top: 30px;
	}

	.cs_wrap .btn_wrap .cs_btn {
		width: 130px;
		height: 42px;
		font-size: 16px;
	}
}

/* 주요연혁 */
.history_wrap {
	margin-top: 80px;
	position: relative;
}

.history_wrap .row {
	display: flex;
	padding-bottom: 60px;
    /* min-height: 250px; */
}

.history_wrap .row:last-of-type {
	padding-bottom: 0;
}

.history_wrap .row .year_col {
	width: 33.33%;
}

.history_wrap .row .year_col .history_title_area {
	position: sticky;
	top: 200px;
}

.history_wrap .row .year_col .history_title_area h2 {
	font-weight: 700;
	font-size: 56px;
	font-family: 'NanumSquareNeo';
}

.history_wrap .row .year_col .history_title_area p {
	font-weight: 500;
	font-size: 20px;
	color: #EC1B23;
	color: #888;
}

.history_wrap .row .list_col {
	flex: 1;
}

.history_wrap .row .list_col .history_detail_area li {
	position: relative;
	display: flex;
	padding-left: 50px;
	border-left: 1px solid #DDDDDD;
	border-left: 1px solid transparent;
}

.history_wrap .row .list_col .history_detail_area li~li {
	/* padding-top: 50px; */
	padding-bottom: 50px;
}

.history_wrap .row .list_col .history_detail_area .dot {
	width: 114px;
	font-size: 30px;
	font-weight: 500;
}

.history_wrap .row .list_col .history_detail_area .dot strong {
	display: block;
	margin-top: -7px;
	font-weight: 500;
}

.history_wrap .row .list_col .history_detail_area .dt_txt {
	flex: 1;
}

.history_wrap .row .list_col .history_detail_area .dt_txt .txt {
	display: flex;
}

.history_wrap .row .list_col .history_detail_area .dt_txt .txt~.txt {
	margin-top: 20px;
}

.history_wrap .row .list_col .history_detail_area .dt_txt .txt span {
	font-size: 22px;
	width: 59px;
	height: 31px;
	display: block;
}

.history_wrap .row .list_col .history_detail_area .dt_txt .txt p {
	flex: 1;
	font-size: 22px;
}

.history_wrap .row:not(:first-child) .list_col .history_detail_area li:first-child {
	/* padding-top: 60px; */
	padding-bottom: 50px;
}

.history_wrap .row:last-child .list_col .history_detail_area li:last-child {
	padding-bottom: 0;
}

.history_wrap .row .list_col .history_detail_area li::after {
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	left: -5px;
	top: 8px;
	background-color: #ddd;
	transition: 0.5s;
	transition-delay: .1s;
}

.history_wrap .row .list_col .history_detail_area li.active::after {
	background-color: #46D7D5;
}

.history_wrap .row:first-child .list_col .history_detail_area li:first-child::after {
	top: 0;
}

.history_wrap>.line {
	position: absolute;
	top: 8px;
	left: calc(33.33% + 6px);
	width: 3px;
	height: calc(100% - 8px);
	background: #ddd;
	z-index: 3;
	overflow: hidden;
}

.history_wrap .row .history_detail_area li:only-child {
	min-height: 106px;
}

.history_wrap>.line .fill {
	width: 100%;
	height: 0%;
	background: #46D7D5;
	transition: height 0.4s ease;
}

.history_detail_area li {
	z-index: 2;
}

@media screen and (max-width: 1600px) {
	.history_wrap .row .year_col .history_title_area h2 {
		font-size: 45px;
	}

	.history_wrap .row .year_col .history_title_area p {
		font-size: 18px;
	}

	.history_wrap .row .list_col .history_detail_area .dot {
		font-size: 25px;
		width: 80px;
	}

	.history_wrap .row .list_col .history_detail_area .dt_txt .txt span {
		font-size: 20px;
		width: 50px;
		height: auto;
	}

	.history_wrap .row .list_col .history_detail_area .dot strong {
		margin-top: -4px;
	}

	.history_wrap .row .list_col .history_detail_area .dt_txt .txt p {
		font-size: 18px;
	}

	.history_wrap .row .list_col .history_detail_area li {
		padding-left: 30px;
	}
}

@media screen and (max-width: 1025px) {
	.history_wrap .row .year_col .history_title_area h2 {
		font-size: 38px;
	}
}

@media screen and (max-width: 768px) {
	.history_wrap {
		margin-top: 60px;
	}

	.history_wrap .row:first-child .year_col {
		margin-bottom: 30px;
	}

	.history_wrap .row~.row .year_col .history_title_area {
		padding-top: 60px;
		border-top: 1px solid #CCCCCC;
	}

	.history_wrap .row {
		flex-direction: column;
		position: relative;
	}

	.history_wrap .row~.row .year_col {
		position: absolute;
		left: 0;
		top: 0;
		height: 133px;
	}

	.history_wrap .row~.row .list_col .history_detail_area li:first-child {
		padding-top: 180px !important;
	}

	.history_wrap .row .year_col {
		width: 100%;
	}

	.history_wrap .row .year_col .history_title_area {
		margin-left: 20px;
		position: relative;
		top: 0;
	}

	.history_wrap .row .year_col .history_title_area h2 {
		font-size: 34px;
	}

	.history_wrap .row .year_col .history_title_area p {
		color: #888;
	}

	.history_wrap .row .list_col .history_detail_area li {
		flex-direction: column;
	}

	.history_wrap .row .list_col .history_detail_area .dot {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.history_wrap .row .list_col .history_detail_area .dt_txt .txt span {
		font-size: 16px;
		width: 44px;
	}

	.history_wrap .row .list_col .history_detail_area .dt_txt .txt p {
		font-size: 16px;
	}

	.history_wrap .row .list_col .history_detail_area .dt_txt .txt~.txt {
		margin-top: 12px;
	}

	.history_wrap .row .list_col .history_detail_area li {
		padding-left: 20px;
	}

	.history_wrap .row .list_col .history_detail_area li~li {
		padding-top: 30px;
		padding-bottom: 0px;
	}

	.history_wrap .row .list_col .history_detail_area li::after {
		top: 35px;
	}

	.history_wrap .row .list_col .history_detail_area li.his_first::after {
		top: 35px !important;
	}

	.history_wrap .row:not(:first-child) .list_col .history_detail_area li:first-child::after {
		top: 187px;
	}

	.history_wrap .row .history_detail_area li:only-child {
		min-height: none;
	}

	.history_wrap .row:not(:first-child) .list_col .history_detail_area li:first-child {
		padding-top: 30px;
	}

	.history_wrap .row:not(:last-child) .list_col .history_detail_area li:last-child {
		padding-bottom: 60px;
	}

	.history_wrap>.line {
		left: 19px;
		top: 115px;
		/* height: calc(100% - 110px); */
	}

}

/* 매장상담예약 */
.store_step {
	margin-top: 50px;
	padding: 50px 0;
	background-color: #F6F6F6;
}

.store_step ol {
	display: flex;
}

.store_step ol li {
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.store_step ol li~li {
	padding-left: 80px;
	position: relative;
}

.store_step ol li~li::after {
	display: block;
	content: '';
	background: url(../images/sub/arr_step.svg) no-repeat 0 0;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 32px;
	top: calc(50% - 8px);
}

.store_step ol li span {
	padding-top: 144px;
	color: #05A4BC;
	font-size: 17px;
	font-weight: 700;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 120px;
}

.store_step ol li:nth-child(1) span {
	background-image: url(../images/sub/about-store/icon_store_01.svg);
}

.store_step ol li:nth-child(2) span {
	background-image: url(../images/sub/about-store/icon_store_02.svg);
}

.store_step ol li:nth-child(3) span {
	background-image: url(../images/sub/about-store/icon_store_03.svg);
}

.store_step ol li:nth-child(4) span {
	background-image: url(../images/sub/about-store/icon_store_04.svg);
}

.store_step ol li strong {
	margin-top: 6px;
	font-weight: 500;
	font-size: 24px;
}

.store_step ol li p {
	margin-top: 10px;
	font-size: 18px;
	font-weight: 500;
	color: #636363;
}

.store_srch {
	margin-top: 100px;
}

.store_srch h2 label {
	display: block;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
}

.srch_wrap {
	position: relative;
	height: 63px;
	max-width: 540px;
	width: 100%;
	margin: 30px auto 0;
	position: relative;
}

.srch_wrap input {
	height: 100%;
	width: 100%;
	border-bottom: 2px solid #000;
	padding: 0 40px 0 14px;
	font-size: 20px;
	font-weight: 500;
}

.srch_wrap button {
	background: url(../images/sub/btn_search.svg) no-repeat 0 0;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 14px;
	top: calc(50% - 12px);
}

.store_srch .result_wrap {
	margin-top: 60px;
}

.store_srch .result_wrap .res_txt {
	font-size: 18px;
	font-weight: 500;
}

.store_srch .result_wrap .res_txt em {
	color: #EC1B23;
}

.store_srch .result_wrap ul {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.store_srch .result_wrap ul li {
	border-radius: 10px;
	border: 1px solid #E0E0E0;
	padding: 30px;
	width: calc(33.33% - 34px);
	position: relative;
}

.store_srch .result_wrap ul li .icon {
	position: absolute;
	right: 30px;
	top: 30px;
	display: flex;
	gap: 3px;
}

.store_srch .result_wrap ul li .icon i {
	width: 28px;
	height: 28px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}

.store_srch .result_wrap ul li .icon i.apple {
	background-image: url(../images/sub/icon_apple.svg);
}

.store_srch .result_wrap ul li .icon i.set {
	background-image: url(../images/sub/icon_set.svg);
}

.store_srch .result_wrap h3 {
	font-weight: 600;
	font-size: 24px;
	padding-right: 60px;
}

.store_srch .addr {
	margin-top: 4px;
	font-size: 17px;
	color: #262626;
}

.store_srch .btm_cont {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.store_srch .btm_cont .tel {
	font-size: 18px;
	color: #636363;
	padding-left: 21px;
	background: url(../images/sub/icon_tel.svg) no-repeat left center;
}

.store_srch .btm_cont .btn_wrap {
	display: flex;
	gap: 8px
}

.store_srch .btm_cont .btn_wrap a {
	width: 88px;
	height: 30px;
	border-radius: 15px;
	font-weight: 500;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.store_srch .btm_cont .btn_wrap a.btn_bk {
	border: 1px solid #000;
	color: #000;
}

.store_srch .btm_cont .btn_wrap a.btn_bk:hover {
	background-color: #000;
	color: #fff;
}

.store_srch .btm_cont .btn_wrap a.btn_red {
	border: 1px solid #EC1B23;
	color: #EC1B23;
}

.store_srch .btm_cont .btn_wrap a.btn_red:hover {
	background-color: #EC1B23;
	color: #fff;
}

@media screen and (max-width: 1400px) {
	.store_srch .result_wrap ul {
		gap: 20px;
	}

	.store_srch .result_wrap ul li {
		width: calc(50% - 10px);
	}
}

@media screen and (max-width: 1024px) {
	.store_step {
		margin-top: 20px;
	}

	.store_step ol li span {
		font-size: 13px;
		padding-top: 140px;
	}

	.store_step ol li strong {
		margin-top: 2px;
		font-size: 18px;
	}

	.store_step ol li p {
		margin-top: 6px;
		font-size: 14px;
	}

	.store_srch {
		margin-top: 60px;
	}

	.store_srch h2 label {
		font-size: 28px;
	}

	.srch_wrap {
		margin-top: 20px;
		height: 50px;
	}

	.srch_wrap input {
		font-size: 16px;
	}

	.store_srch .result_wrap {
		margin-top: 30px;
	}

	.store_srch .result_wrap .res_txt {
		font-size: 14px;
	}

	.store_srch .result_wrap ul {
		margin-top: 14px;
	}

	.store_srch .result_wrap ul li {
		padding: 24px 20px;
	}

	.store_srch .result_wrap h3 {
		font-size: 16px;
		padding-right: 45px;
	}

	.store_srch .addr {
		font-size: 14px;
	}

	.store_srch .btm_cont {
		margin-top: 20px;
	}

	.store_srch .btm_cont .tel {
		font-size: 15px;
		padding-left: 15px;
		background-size: 13.2px auto;
	}

	.store_srch .btm_cont .btn_wrap a {
		width: 77px;
		height: 26px;
		font-size: 13px;
	}

	.store_srch .result_wrap ul li .icon {
		right: 20px;
		top: 24px;
		gap: 2px;
	}

	.store_srch .result_wrap ul li .icon i {
		width: 20px;
		height: 20px;
	}
}

@media screen and (max-width: 768px) {
	.store_step {
		padding: 60px 0;
	}

	.store_step ol {
		flex-direction: column;
	}

	.store_step ol li~li {
		padding: 76px 0 0 0;
	}

	.store_step ol li~li::after {
		transform: rotate(90deg);
		top: 30px;
		left: calc(50% - 8px);
	}

	.store_srch .result_wrap ul li {
		width: 100%;
	}

}

/* 세일즈 전설 */
.mem_wrap .txt_area {
	text-align: center;
}

.mem_wrap .txt_area h2 {
	font-size: 40px;
	font-weight: 500;
	color: #333;
}

.mem_wrap .txt_area p {
	margin-top: 12px;
	color: #555;
	font-size: 22px;
	font-weight: 500;
}

.mem_wrap .txt_area p br {
	display: none;
}

.mem_wrap .txt_area span {
	font-family: 'NanumSquareNeo';
	font-weight: 700;
	font-size: 20px;
	color: #555;
	margin-top: 2px;
	position: relative;
	display: inline-block;
}

.mem_wrap .txt_area span::before {
	display: block;
	content: '';
	width: calc(100% + 7px);
	height: 16px;
	background-color: #D6EFEF;
	position: absolute;
	left: -3.5px;
	bottom: 0;
	z-index: -1;
}

.mem_wrap ul {
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.mem_wrap ul li {
	width: calc(25% - 45px);
}

.mem_wrap ul li .img {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	padding-top: 124.25%;
}

.mem_wrap ul li .img img {
	position: absolute;
	left: 0;
	top: 0;
}

.mem_wrap ul li .img::after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	background-image: url(../images/sub/about-store/mem_arr.svg);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: .3s;
}

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

.mem_wrap ul li span {
	margin-top: 20px;
	font-weight: 500;
	font-size: 22px;
	color: #555;
	text-align: center;
	display: block;
}

.mem_wrap ul li p {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	text-align: center;
}

@media screen and (max-width: 1400px) {
	.mem_wrap ul {
		gap: 40px;
	}

	.mem_wrap ul li {
		width: calc(25% - 30px);
	}
}

@media screen and (max-width: 1024px) {
	.mem_wrap .txt_area h2 {
		font-size: 22px;
	}

	.mem_wrap .txt_area p {
		font-size: 18px;
		margin-top: 16px;
	}

	.mem_wrap .txt_area p br {
		display: block;
	}

	.mem_wrap .txt_area span {
		font-size: 16px;
		margin-top: 6px;
	}

	.mem_wrap .txt_area span::before {
		height: 10px;
	}

	.mem_wrap ul {
		gap: 30px;
	}

	.mem_wrap ul li {
		width: calc(33.33% - 20px);
	}
}

@media screen and (max-width: 768px) {
	.mem_wrap .txt_area {
		margin-top: 60px;
	}

	.mem_wrap ul {
		gap: 30px 18px;
	}

	.mem_wrap ul li {
		width: calc(50% - 9px);
	}

	.mem_wrap ul li span {
		font-size: 14px;
		margin-top: 14px;
	}

	.mem_wrap ul li p {
		font-size: 16px;
	}

	.mem_wrap ul li .img::after {
		background-size: 60px;
	}
}

.pop_wrap {
	display: none;
	max-width: 1340px;
	width: calc(100% - 40px);
	height: 750px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	border-radius: 80px 0 80px 0;
	overflow: hidden;
}

.mem_pop_wrap .close {
	width: 42px;
	height: 42px;
	position: absolute;
	right: 10px;
	top: 10px;
	background: url(../images/sub/about-store/mem_pop_cloe.svg) no-repeat 0 0;
}

.mem_pop_wrap {
	display: flex;
	width: 100%;
	height: 100%;
}

.mem_pop_wrap .img_area {
	width: 50%;
}

.mem_pop_wrap .img_area .img img,
.mem_pop_wrap .img_area .img {
	height: 100%;
}

.mem_pop_wrap .txt_area {
	width: 50%;
	background-color: #fff;
	background: url(/assets/images/sub/about-store/popup-bg.png) no-repeat top left 30px, #fff;
	padding: 60px;
	overflow-y: auto;
	overflow-x: hidden;
}

.mem_pop_wrap .txt_area h3 {
	font-size: 34px;
	font-weight: 600;
}

.mem_pop_wrap .txt_area .txt {
	margin-top: 12px;
	font-weight: 500;
	font-size: 20px;
	color: #777;
}

.mem_pop_wrap .qna_wrap {
	margin-top: 24px;
}

.mem_pop_wrap .qna_wrap strong {
	font-size: 24px;
	font-weight: 600;
	padding-bottom: 10px;
	display: block;
	position: relative;
}

.mem_pop_wrap .qna_wrap strong::after {
	display: block;
	content: '';
	width: 200%;
	height: 1px;
	background-color: #ccc;
	position: absolute;
	left: 0;
	bottom: 0;
}

.mem_pop_wrap .qna_wrap span {
	color: #0F8C8A;
	font-size: 20px;
	font-weight: 500;
	margin-left: 15px;
}

.mem_pop_wrap ul {
	margin-top: 24px;
}

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

.mem_pop_wrap ul li .que {
	font-family: 'NanumSquareNeo';
	font-size: 20px;
	font-weight: 700;
	padding-left: 30px;
	background: url(../images/sub/q_mark.png) no-repeat left top;
	background-size: 22px auto;
}

.mem_pop_wrap ul li .que mark {
	background-color: #C2F2F1;
}

.mem_pop_wrap ul li .ans {
	padding-left: 30px;
	margin-top: 6px;
	color: #636363;
}

.mem_pop_wrap .store_btn {
	margin: 30px auto 0;
	padding-left: 36px;
	font-size: 18px;
	color: #25C3C2;
	font-weight: 600;
	width: 204px;
	height: 49px;
	display: flex;
	align-items: center;
	border: 1.5px solid #25C3C2;
	border-radius: 25px;
	background-image: url(../images/sub/about-store/icon_store_arr.svg);
	background-repeat: no-repeat;
	background-size: 12px auto;
	background-position: right 36px center;
	transition: .3s;
}

.mem_pop_wrap .store_btn:hover {
	background-color: #25C3C2;
	color: #fff;
	background-image: url(../images/sub/about-store/icon_store_arr_on.svg);
}


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

	.mem_pop_wrap .txt_area {
		padding: 30px 24px;
		background-size: 50px;
	}

	.mem_pop_wrap .txt_area h3 {
		font-size: 22px;
	}

	.mem_pop_wrap .txt_area .txt {
		font-size: 16px;
	}

	.mem_pop_wrap .qna_wrap strong {
		font-size: 18px;
		padding-bottom: 6px;
	}

	.mem_pop_wrap .qna_wrap span {
		margin-left: 8px;
		font-size: 14px;
	}

	.mem_pop_wrap ul {
		margin-top: 16px;
	}

	.mem_pop_wrap ul li .que {
		font-size: 15px;
		padding-left: 24px;
		background-size: 16px auto;
	}

	.mem_pop_wrap ul li .ans {
		padding-left: 24px;
		font-size: 14px;
	}

	.mem_pop_wrap .store_btn {
		width: 196px;
		height: 49px;
		padding-left: 32px;
		background-position: right 32px center;
	}
}

@media screen and (max-width: 768px) {
	.pop_wrap {
		height: 90vh;
		border-radius: 10px;
	}

	.mem_pop_wrap {
		flex-direction: column;
	}

	.mem_pop_wrap .img_area {
		width: 100%;
	}

	.mem_pop_wrap .img_area .img {
		height: 404px;
	}

	.mem_pop_wrap .txt_area {
		width: 100%;
	}

	.mem_pop_wrap .txt_area h3 {
		position: relative;
		z-index: 1;
	}

	.mem_pop_wrap .txt_area {
		background: #fff;
	}

	.mem_pop_wrap .txt_area h3::after {
		display: block;
		content: '';
		width: 61px;
		height: 47px;
		background: url(../images/sub/about-store/qu.svg) no-repeat 0 0;
		position: absolute;
		left: -7px;
		top: -30px;
		z-index: -1;
	}
}

/* 매장찾기 */
#content.map {
	padding: 0;
	position: relative;
}

.map_page {
	height: 964px;
	position: relative;
}

.map_area {
	overflow: hidden;
	height: 964px;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.map_page .sidebar {
	width: 460px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #fff;
	box-shadow: 4px 0px 8px 0px #00000026;
	z-index: 10;
	transition: .3s;
	display: flex;
	flex-direction: column;
}

.map_page .sidebar h1 {
	font-family: 'NanumSquareNeo';
	margin-top: 30px;
	padding: 0 20px 0 30px;
	font-size: 36px;
	font-weight: 700;
	background: url(../images/common/mark.svg) no-repeat right top;
	background-size: 17px auto;
	display: inline-block;
	align-self: flex-start;
}

.map_page .sidebar .line_tab {
	display: flex;
	padding: 0 30px;
	margin-top: 20px;
}

.map_page .sidebar .line_tab li {
	flex: 1;
}

.map_page .sidebar .line_tab li a {
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b9b9b9;
	font-size: 18px;
	font-weight: 500;
	border-bottom: 1px solid #B9B9B9;
}

.map_page .sidebar .line_tab li.active a {
	font-size: 20px;
	font-weight: 600;
	border-bottom: 2px solid #000;
	color: #000;
	font-weight: 600;
	font-size: 20px;
}

.map_page .sidebar .tab_content {
	padding: 20px 30px;
}

.map_page .sidebar .tab_content .srch_opt {
	display: none;
}

.map_page .sidebar .tab_content .srch_opt.active {
	display: block;
}

.map_page .sidebar .tab_content .srch_opt div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.map_page .sidebar .tab_content .srch_opt div~div {
	margin-top: 8px;
}

.map_page .sidebar .tab_content .srch_opt select {
	height: 46px;
	font-weight: 500;
	color: #363636;
	border-radius: 5px;
	flex: 1;
	padding: 0 40px 0 16px;
	position: relative;
	cursor: pointer;
}

.map_page .sidebar .tab_content .srch_opt select {
	background: #F6F6F6 url(../images/sub/icon_select.svg) no-repeat right 12px center;
}

.map_page .sidebar .tab_content .srch_opt button {
	width: 60px;
	height: 46px;
	background-color: #363636;
	border-radius: 5px;
	color: #fff;
	font-weight: 600;
	transition: .3s;
}

.map_page .sidebar .tab_content .srch_opt button:hover {
	background-color: #EC1B23;
}

.map_page .sidebar .tab_content .srch_opt input {
	border-radius: 5px;
	background-color: #F6F6F6;
	flex: 1;
	padding: 0 14px;
}

.map_page .sidebar .tab_content .srch_opt input::placeholder {
	color: #000;
}

.map_page .sidebar .res_txt {
	padding: 8px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.map_page .sidebar .res_txt p {
	font-weight: 600;
}

.map_page .sidebar .res_txt p em {
	color: #ec1b23;
}

.map_page .sidebar .res_txt ul {
	display: flex;
	gap: 10px
}

.map_page .sidebar .res_txt ul li {
	padding-left: 26px;
	line-height: 24px;
	color: #636363;
	font-size: 14px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 24px;
}

.map_page .sidebar .res_txt ul li.apple {
	background-image: url(../images/sub/icon_apple.svg);
}

.map_page .sidebar .res_txt ul li.global {
	background-image: url(../images/sub/icon_set.svg);
}

.map_page .sidebar .res_li {
	overflow-y: auto;
	/* height: calc(100% - 340px); */
}

.map_page .sidebar .res_li li {
	position: relative;
	padding: 24px 30px;
	transition: .3s;
}

.map_page .sidebar .res_li li::before {
	display: block;
	content: '';
	width: calc(100% - 60px);
	position: absolute;
	left: 30px;
	top: 0;
	height: 1px;
	background-color: #e0e0e0;
}
/* active 랑 hover 된것도 같이 */
.map_page .sidebar .res_li li:hover,
.map_page .sidebar .res_li li.active,
.map_page .sidebar .res_li li.active:hover {
  background-color: #F3FAFB;
}


.map_page .sidebar .res_li li .icon {
	position: absolute;
	right: 30px;
	top: 24px;
	display: flex;
	gap: 3px;
}

.map_page .sidebar .res_li li .icon i {
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}

.map_page .sidebar .res_li li .icon i.apple {
	background-image: url(../images/sub/icon_apple.svg);
}

.map_page .sidebar .res_li li .icon i.set {
	background-image: url(../images/sub/icon_set.svg);
}

.map_page .sidebar .res_li h4 {
	font-weight: 600;
	font-size: 18px;
	padding-right: 50px;
}

.map_page .sidebar .addr {
	margin-top: 4px;
	font-size: 15px;
	color: #262626;
}

.map_page .sidebar .btm_cont {
	margin-top: 13px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.map_page .sidebar .btm_cont .tel {
	color: #636363;
	padding-left: 21px;
	background: url(../images/sub/icon_tel.svg) no-repeat left center;
}

.map_page .sidebar .btm_cont .btn_wrap {
	display: flex;
	gap: 8px
}

.map_page .sidebar .btm_cont .btn_wrap a {
	width: 81px;
	height: 28px;
	border-radius: 15px;
	font-size: 14px;
	font-weight: 500;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map_page .sidebar .btm_cont .btn_wrap a.btn_bk {
	background-color: #fff;
	border: 1px solid #000;
	color: #000;
}

.map_page .sidebar .btm_cont .btn_wrap a.btn_bk:hover {
	background-color: #000;
	color: #fff;
}

.map_page .sidebar .btm_cont .btn_wrap a.btn_red {
	background-color: #fff;
	border: 1px solid #EC1B23;
	color: #EC1B23;
}

.map_page .sidebar .btm_cont .btn_wrap a.btn_red:hover {
	background-color: #EC1B23;
	color: #fff;
}

.map_page .sidebar .btn_side_bar {
	position: absolute;
	right: -30px;
	top: 160px;
	border-radius: 0 12px 12px 0;
	box-shadow: 4px 0px 8px 0px #0000001A;
	background: #fff;
	width: 30px;
	height: 80px;
}

.map_page .sidebar .btn_side_bar::after {
	display: block;
	content: '';
	background: url(../images/sub/icon_sidebar.svg) no-repeat 0 0;
	width: 30px;
	height: 18px;
	position: absolute;
	left: calc(50% - 15px);
	top: calc(50% - 9px);
}

.map_page .sidebar .btn_side_bar.active::after {
	transform: rotate(180deg);
}

.map .mo_tit {
	font-family: 'NanumSquareNeo';
	display: none;
	font-size: 32px;
	font-weight: 700;
	margin-top: 40px;
	padding: 0 15px 20px 20px;
	background: url(../images/common/mark.svg) no-repeat right top;
	background-size: 12px auto;
}

@media screen and (min-width: 769px) {
	.map_page .sidebar.hide {
		left: -460px;
	}
}

@media screen and (max-width: 768px) {
	.map .mo_tit {
		display: inline-block;
	}

	.map_page .sidebar h1 {
		display: none;
	}

	.map_area {
		height: 260px;
		position: relative;
	}

	.map_page {
		height: auto;
	}

	.map_page .sidebar .btn_side_bar {
		display: none;
	}

	.map_page .sidebar {
		width: 100%;
		position: relative;
		box-shadow: none;
	}

	.map_page .sidebar .line_tab {
		padding: 0 20px;
		margin-top: 16px;
	}

	.map_page .sidebar .line_tab li a {
		height: 50px;
		font-size: 15px;
	}

	.map_page .sidebar .line_tab li.active a {
		font-size: 16px;
	}

	.map_page .sidebar .tab_content {
		padding: 16px 20px;
	}

	.map_page .sidebar .tab_content .srch_opt select {
		height: 44px;
		font-size: 14px;
		background-size: 10px auto;
	}

	.map_page .sidebar .tab_content .srch_opt button {
		height: 44px;
		width: 57px;
		font-size: 14px;
	}

	.map_page .sidebar .tab_content .srch_opt input {
		font-size: 14px;
		height: 44px;
	}

	.map_page .sidebar .res_txt {
		padding: 10px 20px;
	}

	.map_page .sidebar .res_txt p {
		font-size: 14px;
	}

	.map_page .sidebar .res_txt ul li {
		font-size: 13px;
		line-height: 20px;
		background-size: 20px;
		padding-left: 21px;
	}

	.map_page .sidebar .res_li li::before {
		width: calc(100% - 40px);
		left: 20px;
	}

	.map_page .sidebar .res_li li {
		padding: 24px 20px;
	}

	.map_page .sidebar .res_li h4 {
		font-size: 16px;
	}

	.map_page .sidebar .res_li li .icon i {
		width: 20px;
		height: 20px;
		top: 25px;
		right: 20px;
	}

	.map_page .sidebar .addr {
		font-size: 14px;
	}

	.map_page .sidebar .btm_cont {
		margin-top: 12px;
	}

	.map_page .sidebar .btm_cont .tel {
		font-size: 15px;
		padding-left: 17px;
		background-size: 13px auto;
		background-position: left top 2px;
	}

	.map_page .sidebar .btm_cont .btn_wrap a {
		width: 77px;
		height: 26px;
		font-size: 13px;
	}
}

/* 이벤트 list */
.tab_wrap {
	margin-top: 64px;
}

.tab_menu ul {
	display: flex;
}

.tab_menu ul li {
	flex-grow: 1;
	border-bottom: 1px solid #b9b9b9;
	text-align: center;
}

.tab_menu ul li a {
	display: block;
	padding: 14px 0;
	font-size: 20px;
	font-weight: 500;
	color: #b9b9b9;
}

.tab_menu ul li a:hover,
.tab_menu ul li a:active,
.tab_menu ul li a:focus {
	color: #777;
}

.tab_menu ul li.active {
	border-bottom: 2px solid #000;
}

.tab_menu ul li.active a {
	color: #000;
	font-weight: 600;
}

.tab_wrap .tab_content {
	margin-top: 40px;
}

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

.tab_top_wrap .total_wrap span {
	font-size: 18px;
	font-weight: 500;
}

.tab_top_wrap .total_wrap strong {
	color: #EC1B23;
	font-weight: inherit;
}

.tab_top_wrap .sort_wrap select {
	width: 140px;
	padding: 12px 16px;
	background: url('../images/sub/arr_select.svg') no-repeat right 16px center;
	font-size: 16px;
	font-weight: 500;
	color: #363636;
}

.evt_list_wrap {
	margin-top: 20px;
}

.evt_list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -40px;
	margin-top: -40px;
}

.evt_item {
	overflow: hidden;
	width: calc((100% - 80px)/2);
	margin-left: 40px;
	margin-top: 40px;
	border: 1px solid #ccc;
	border-radius: 20px;
}

.evt_item .img_wrap {
	overflow: hidden;
	position: relative;
	height: 200px;
	display: flex;
	justify-content: center;
}

.evt_item .img_wrap img {
	/* position: absolute;top: 0;right: 0;transition: 0.4s; */
	/* transform-origin:right center; width: auto; height: 100%; */
	object-fit: cover;
	position: relative;
	top: 0;
	left: 0;
	transition: 0.4s;
	transform: translateX(-22%);
}

/* .evt_item .img_wrap img.mo {display: none;} */
.evt_item:hover img {
	/* transform: scale(1.02); */
	/* transform: translateX(-24%) scale(1.1); */
	transform: translateX(-23%) scale(1.05);
	/* transform: translateX(-22.5%) scale(1.02); */
}

.evt_item .label {
	display: flex;
	justify-content: flex-end;
	position: absolute;
	top: 30px;
	right: 30px;
}

.evt_item .label span {
	display: inline-block;
	padding: 4px 20px;
	border: 1px solid transparent;
	border-radius: 20px;
	font-size: 16px;
	font-weight: 500;
}

.evt_item .label span+span {
	margin-left: 10px;
}

.evt_item .label .label_ongoing {
	border-color: #DE161E;
	color: #EC1B23;
}

.evt_item .label .label_fin {
	border-color: #000;
	color: #000;
}

.evt_item .label .label_type {
	border-color: #049A98;
	color: #00A9A7;
}

.evt_item .txt_wrap {
	position: relative;
	padding: 30px;
	padding-right: 240px;
}

.evt_item .txt_wrap .tit {
	font-size: 20px;
	font-weight: 600;
	color: #363636;
}

.evt_item .txt_wrap .date {
	display: inline-block;
	margin-top: 8px;
	font-size: 16px;
	font-weight: 500;
	color: #666;
}

.evt_list_wrap .btn_wrap {
	margin-top: 60px;
	text-align: center;
}

.btn_wrap .btn_more {
	display: inline-block;
	padding: 12px 50px;
	border: 1px solid #000;
	border-radius: 50px;
	transition: 0.3s;
}

.btn_wrap .btn_more span {
	display: inline-block;
	padding-right: 30px;
	background: url('./../images/sub/arr_btn_more.svg') no-repeat right center;
	font-size: 24px;
	font-weight: 500;
	transition: 0.3s;
}

.btn_wrap .btn_more:hover {
	background-color: #000;
}

.btn_wrap .btn_more:hover span {
	background: url('./../images/sub/arr_btn_more_active.svg') no-repeat right center;
	color: #fff;
}

@media screen and (max-width: 1400px) {
	/* .evt_item .img_wrap img{right: 50%; transform: translateX(50%);} */
	/* .evt_item:hover img{transform: scale(1.02) translateX(50%);} */
	/* .evt_item .img_wrap img.pc {display: none;}
	.evt_item .img_wrap img.mo {display: block;} */
}

@media screen and (max-width: 1024px) {
	.tab_menu ul li a {
		font-size: 18px;
	}

	.tab_wrap .tab_content {
		margin-top: 50px;
	}

	.tab_top_wrap .sort_wrap select {
		width: 90px;
		padding: 1.5px 4px;
		background-position: right 4px center;
		background-size: 12px;
	}

	.evt_list {
		margin-left: -20px;
		margin-top: -20px;
	}

	.evt_item {
		overflow: hidden;
		width: calc((100% - 40px)/2);
		margin-left: 20px;
		margin-top: 20px;
		border-radius: 15px;
	}

	/* .evt_item:hover img{transform: unset;} */
	.evt_item .label {
		position: static;
		justify-content: flex-start;
		top: auto;
		right: auto;
	}

	.evt_item .label span {
		padding: 4px 16px;
		font-size: 13px;
	}

	.evt_item .label span+span {
		margin-left: 8px;
	}

	.evt_item .txt_wrap {
		padding: 20px;
	}

	.evt_item .txt_wrap .tit {
		margin-top: 12px;
		font-size: 16px;
	}

	.evt_item .txt_wrap .date {
		margin-top: 4px;
		font-size: 14px;
	}

	.evt_list_wrap .btn_wrap {
		margin-top: 30px;
	}

	.btn_wrap .btn_more {
		padding: 10px 32px;
	}

	.btn_wrap .btn_more span {
		font-size: 18px;
	}
}

@media screen and (max-width: 768px) {
	.tab_wrap {
		margin-top: 20px;
	}

	.tab_menu {
		display: none;
	}

	.evt_list {
		margin-left: 0;
	}

	.evt_item {
		width: 100%;
		margin-left: 0;
	}

	.evt_item .img_wrap {
		/* height: 0;padding-top: 22.5vw; */
		height: 22.5vw;
	}

	.evt_item .img_wrap img {
		/* width: 100%; */
		transform: translateX(-20%);
	}
}


/* 이벤트 상세 페이지 */
.board_tit_wrap {
	padding-bottom: 30px;
	border-bottom: 2px solid #000;
}

.board_tit_wrap .board_tit {
	word-break: keep-all;
	overflow-wrap: break-word;
	font-family: 'NanumSquareNeo';
	display: inline-block;
	position: relative;
	padding-right: 21px;
	font-size: 36px;
	font-weight: 700;
	vertical-align: middle;
}

main.view.job-openings .board_tit_wrap .board_tit .status_wrap::after,
.board_tit_wrap .board_tit::after {
	display: inline-block;
	content: '';
	width: 18px;
	height: 50px;
	background: url(../images/sub/mark_board.svg) no-repeat top;
	background-size: contain;
	vertical-align: middle;
}

main.view.job-openings .board_tit_wrap .board_tit:has(> h1)::after {
	display: none;
}

.board_tit_wrap .board_info {
	display: flex;
	margin-top: 10px;
	align-items: center;
}

.board_tit_wrap .board_info span {
	position: relative;
	font-size: 20px;
	color: #888;
}

.board_tit_wrap .board_info span strong {
	display: inline-block;
	margin-left: 6px;
	font-size: 20px;
	font-weight: 500;
	color: #636363;
}

.job-openings.view .board_tit_wrap .board_info .date+span,
.board_tit_wrap .board_info span+span {
	margin-left: 20px;
	padding-left: 20px;
}

.job-openings.view .board_tit_wrap .board_info .date+span {
	position: relative;
}

.job-openings.view .board_tit_wrap .board_info .date+span::before,
.board_tit_wrap .board_info span+span::before {
	display: block;
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 1px;
	height: 12px;
	background-color: #ccc;
}

.job-openings.view .board_tit_wrap .board_info .date::after {
	left: auto;
	right: -20px;
}

.board_content {
	padding-top: 100px;
	padding-bottom: 100px;
	border-bottom: 1px solid #000;
}

.board_content .img_wrap {
	text-align: center;
}


.board_content img,
.board_content .img_wrap img {
	max-width: 100%;
}

.board_content .btn_wrap {
	margin-top: 60px;
	text-align: center;
}

.btn_wrap .btn_quick_store {
	display: inline-block;
	padding: 16px 66px;
	border-radius: 50px;
	background-color: #00a9a7;
	transition: 0.3s;
}

.btn_wrap .btn_quick_store span {
	display: inline-block;
	padding-right: 58px;
	background: url('./../images/sub/arr_btn_quick.svg') no-repeat right center;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
}

.btn_wrap .btn_quick_store:hover {
	background-color: #ec1b23;
}

.prev_next_item {
	display: flex;
	padding: 30px 20px;
	border-bottom: 1px solid #ccc;
}

.prev_next_item span {
	display: inline-block;
	padding-right: 28px;
	background: url('./../images/sub/arr_prev.svg') no-repeat right center;
	font-size: 20px;
	font-weight: 500;
	color: #636363;
}

.prev_next_item+.prev_next_item span {
	background: url('./../images/sub/arr_next.svg') no-repeat right center;
}

.prev_next_item a {
	overflow: hidden;
	display: block;
	max-width: 100%;
	margin-left: 20px;
	font-size: 20px;
	font-weight: 500;
	color: #636363;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.board_btn_wrap {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
}

.btn_wrap .btn_list {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 66px;
	border-radius: 5px;
	background-color: #363636;
	transition: 0.3s;
}

.btn_wrap .btn_list:hover {
	background-color: #ec1b23;
}

.btn_wrap .btn_list span {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
}

.job-openings.view .board_tit_wrap .board_info .date {
	position: relative;
	vertical-align: middle;
	display: flex;
	color: var(--gray_63, #636363);
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	max-width: 70%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}


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

	main.view .board_tit_wrap {
		padding-bottom: .6rem;
	}
	
	.board_tit_wrap .board_tit {
		font-size: 28px;
		padding-right: 0;
	}

	main.view.job-openings .board_tit_wrap .board_tit .status_wrap::after,
	.board_tit_wrap .board_tit::after {
		width: 12px;
		height: 28px;
		margin-left: 2px;
	}

	main.view.job-openings .board_tit_wrap .board_tit .status_wrap::after {
		height: 33px;
	}

	.board_tit_wrap .board_info {
		margin-top: 1rem;
	}

	.job-openings.view .board_tit_wrap .board_info .date,
	.board_tit_wrap .board_info span {
		font-size: 14px;
	}

	.board_tit_wrap .board_info span strong {
		font-size: 14px;
	}

	.job-openings.view .board_tit_wrap .board_info .date+span,
	.board_tit_wrap .board_info span+span {
		margin-left: 14px;
		padding-left: 14px;
	}

	.job-openings.view .board_tit_wrap .board_info .date+span::before,
	.board_tit_wrap .board_info span+span::before {
		top: 3px;
	}

	.board_content {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.board_content .btn_wrap {
		margin-top: 30px;
	}

	.btn_wrap .btn_quick_store {
		padding: 12px 32px;
	}

	.btn_wrap .btn_quick_store span {
		font-size: 18px;
		padding-right: 34px;
		background-size: 12px;
	}

	.btn_wrap .btn_quick_store:hover {
		background-color: #00a9a7;
	}

	.prev_next_item {
		padding: 18px 10px;
	}

	.prev_next_item span {
		font-size: 14px;
	}

	.prev_next_item a {
		margin-left: 16px;
		font-size: 14px;
	}

	.board_btn_wrap {
		margin-top: 30px;
	}

	.btn_wrap .btn_list {
		width: 130px;
		height: 42px;
	}

	.btn_wrap .btn_list:hover {
		background-color: #363636;
	}

	.btn_wrap .btn_list span {
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	.board_tit_wrap .board_tit {
		font-size: 24px;
	}
}


/* 인재육성 */
.recruit_map_wrap {
	display: none;
	padding: 100px 0;
	margin-bottom: -100px;
	background-color: #f7f8fb;
}

.recruit_map_wrap .img_wrap {
	position: relative;
	text-align: center;
}

.recruit_map_wrap .img_wrap img {
	max-width: 100%;
}

.recruit_map_wrap .img_wrap .btn_click {
	display: none;
}

.recruit_area {
	background-color: #F7F8FB;
	padding: 100px 20px;
	margin-bottom: -100px;
}

.recruit_wrap {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.recruit_wrap .rec_title {
	padding: 30px;
	color: #fff;
	text-align: center;
	background: linear-gradient(86.71deg, #02ACAA 39.9%, #3B58EA 157.51%);
	border-radius: 8px;
}

.recruit_wrap .rec_title strong {
	font-size: 32px;
	font-weight: 700;
}

.recruit_wrap .rec_title p {
	margin-top: 6px;
	font-size: 24px;
	font-weight: 600;
	color: #fff;
}

.recruit_wrap .rec_sub_title {
	position: relative;
	margin-top: 60px;
}

.recruit_wrap .rec_sub_title .in {
	background-color: #fff;
	border: 1px solid #00A9A7;
	padding: 20px;
	text-align: center;
	border-radius: 8px;
	z-index: 1;
	position: relative;
}

.recruit_wrap .rec_sub_title::before {
	display: block;
	content: '';
	background: url(../images/sub/career/hr-policy/rec_arr_01.webp) no-repeat center;
	width: 1194px;
	height: 205px;
	position: absolute;
	left: 50%;
	top: -52px;
	transform: translateX(-50%);
	z-index: 0;
}

.recruit_wrap .rec_sub_title strong {
	font-size: 28px;
	font-weight: 600;
	color: #EC1B23;
}

.recruit_wrap .rec_sub_title strong span {
	color: #363636;
}

.recruit_wrap .rec_sub_title p {
	margin-top: 6px;
	font-size: 20px;
	font-weight: 500;
	color: #363636;
}

.recruit_wrap ul {
	margin-top: 30px;
	display: flex;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.recruit_wrap ul li {
	flex: 1;
}

.recruit_wrap ul li .list_title {
	border-radius: 8px;
	border: 1px solid #00A9A7;
	background: #E1F3F2;
	padding: 16px;
	text-align: center;
}

.recruit_wrap ul li .list_title strong {
	font-size: 24px;
	color: #363636;
	font-weight: 600;
	margin-bottom: 4px;
}

.recruit_wrap ul li .list_title strong::before {
	content: 'L';
	color: #ec1b23;
}

.recruit_wrap ul li .list_title span {
	margin-top: 4px;
	display: block;
	font-size: 22px;
	font-weight: 500;
	color: #363636;
}

.recruit_wrap ul li .list_cont {
	border-radius: 8px;
	margin-top: 16px;
	border: 1px solid #00A9A7;
	background-color: #fff;
	padding: 30px;
	text-align: center;
}

.recruit_wrap ul li .list_cont h2 {
	font-weight: 500;
	font-size: 20px;
	color: #049A98;
}

.recruit_wrap ul li .list_cont p {
	margin-top: 20px;
	padding: 20px 10px;
	background-color: #F5F7FB;
	border-radius: 8px;
	font-weight: 500;
	color: #363636;
	height: 90px;
	vertical-align: middle;
	display: flex;
	align-items: center;
	justify-content: center;
	;
}

.recruit_wrap ul li:not(:last-child) .list_cont p:nth-of-type(1) {
	position: relative;
}

.recruit_wrap ul li:not(:last-child) .list_cont p:nth-of-type(1)::after {
	display: block;
	content: '';
	background: url(../images/sub/career/hr-policy/rec_arr_02.svg) no-repeat 0 0;
	width: 91px;
	height: 12px;
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.recruit_wrap .res {
	margin-top: 30px;
	border-radius: 8px;
	background-color: #fff;
	border: 1px solid #3B58EA;
	padding: 20px 10px;
	text-align: center;
	position: relative;
}

.recruit_wrap .res::after {
	display: block;
	content: '';
	width: 1.5px;
	height: 30px;
	position: absolute;
	left: 16%;
	top: -31px;
	background-color: #363636;
}

.recruit_wrap .res::before {
	display: block;
	content: '';
	width: 1.5px;
	height: 30px;
	position: absolute;
	right: 16%;
	top: -31px;
	background-color: #363636;
}

.recruit_wrap .res strong {
	color: #DE161E;
	font-size: 28px;
	font-weight: 600;
}

.recruit_wrap .res p {
	margin-top: 6px;
	font-size: 20px;
	font-weight: 500;
	color: #222;
}

@media screen and (max-width: 1024px) {
	.recruit_area {
		display: none;
	}

	.recruit_map_wrap {
		display: block;
	}

	.recruit_map_wrap {
		padding: 60px 0;
		margin-bottom: -60px;
	}

	.recruit_map_wrap .img_wrap .btn_click {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
	}
}


/* 채용절차 */
.recruit_prs {
	display: flex;
	margin-left: -60px;
}

.recruit_prs .prs_item {
	position: relative;
	width: calc((100% - 300px)/5);
	padding: 60px 0;
	margin-left: 60px;
	border: 1px solid #ccc;
	border-radius: 20px;
	text-align: center;
	transition: .3s;
}

.recruit_prs .prs_item::after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 20px;
	transition: .3s;
}

.recruit_prs .prs_item .num,
.recruit_desc .desc_item .num {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
}

.recruit_prs .prs_item .num {
	width: 100%;
	max-width: 120px;
	padding-top: 150px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	transition: .3s;
}

.recruit_prs .prs_item:nth-child(1) .num {
	background-image: url('./../images/sub/career/hiring-guide/icon_recruit_01.svg');
}

.recruit_prs .prs_item:nth-child(2) .num {
	background-image: url('./../images/sub/career/hiring-guide/icon_recruit_02.svg');
}

.recruit_prs .prs_item:nth-child(3) .num {
	background-image: url('./../images/sub/career/hiring-guide/icon_recruit_03.svg');
}

.recruit_prs .prs_item:nth-child(4) .num {
	background-image: url('./../images/sub/career/hiring-guide/icon_recruit_04.svg');
}

.recruit_prs .prs_item:nth-child(5) .num {
	background-image: url('./../images/sub/career/hiring-guide/icon_recruit_05.svg');
}

.recruit_prs .prs_item+.prs_item::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	width: 6px;
	height: 12px;
	background: url('./../images/sub/arr_recruit.svg') no-repeat center / cover;
}

.recruit_prs .prs_item h2,
.recruit_desc .desc_item strong {
	font-size: 24px;
	font-weight: 500;
}

.recruit_prs .prs_item h2 {
	margin-top: 20px;
	color: #363636;
}

.recruit_prs .prs_item.active {
	border-color: #00A9A7;
	box-shadow: 0px 0px 25px 0px #00000026;
}

.recruit_prs .prs_item.active .num {
	color: #00a9a7;
	transition: .3s;
}

.recruit_prs .prs_item:nth-child(1).active .num {
	background-image: url('./../images/sub/career/hiring-guide/icon_recruit_01_active.svg');
}

.recruit_prs .prs_item:nth-child(2).active .num {
	background-image: url('./../images/sub/career/hiring-guide/icon_recruit_02_active.svg');
}

.recruit_prs .prs_item:nth-child(3).active .num {
	background-image: url('./../images/sub/career/hiring-guide/icon_recruit_03_active.svg');
}

.recruit_prs .prs_item:nth-child(4).active .num {
	background-image: url('./../images/sub/career/hiring-guide/icon_recruit_04_active.svg');
}

.recruit_prs .prs_item:nth-child(5).active .num {
	background-image: url('./../images/sub/career/hiring-guide/icon_recruit_05_active.svg');
}

.recruit_desc_wrap {
	margin-top: 100px;
}

.recruit_desc {
	border-top: 2px solid #000;
}

.recruit_desc .desc_item {
	display: flex;
	align-items: center;
	padding: 30px;
	border-bottom: 1px solid #ccc;
}

.recruit_desc .desc_item .num {
	color: #00a9a7;
}

.recruit_desc .desc_item .tit {
	display: flex;
	align-items: center;
	width: 240px;
}

.recruit_desc .desc_item .tit strong {
	display: inline-block;
	margin-left: 16px;
}

.recruit_desc .desc_item p {
	width: calc(100% - 240px);
	font-size: 18px;
	color: #222;
}

@media screen and (max-width: 1200px) {
	.recruit_prs {
		margin-left: -40px;
	}

	.recruit_prs .prs_item {
		width: calc((100% - 200px)/5);
		margin-left: 40px;
	}

	.recruit_prs .prs_item+.prs_item::before {
		left: -20px;
	}
}

@media screen and (max-width: 1024px) {
	.recruit_prs {
		flex-wrap: wrap;
		justify-content: center;
		margin-left: 0;
	}

	.recruit_prs .prs_item {
		width: calc((100% - 40px)/3);
		margin-left: 20px;
		margin-top: 20px;
		padding: 20px 10px;
		border-radius: 10px;
	}

	.recruit_prs .prs_item:nth-child(-n+3) {
		margin-top: 0;
	}

	.recruit_prs .prs_item:nth-child(3n+1) {
		margin-left: 0;
	}

	.recruit_prs .prs_item+.prs_item::before {
		display: none;
	}

	.recruit_prs .prs_item .num {
		padding-top: 134px;
	}

	.recruit_prs .prs_item .num,
	.recruit_desc .desc_item .num {
		font-size: 13px;
	}

	.recruit_prs .prs_item h2,
	.recruit_desc .desc_item strong {
		font-size: 18px;
	}

	.recruit_prs .prs_item h2 {
		margin-top: 4px;
	}

	.recruit_desc_wrap {
		margin-top: 60px;
	}

	.recruit_desc .desc_item {
		flex-direction: column;
		align-items: start;
		padding: 20px 10px;
	}

	.recruit_desc .desc_item .tit {
		width: unset;
	}

	.recruit_desc .desc_item .tit strong {
		margin-left: 10px;
	}

	.recruit_desc .desc_item p {
		width: unset;
		margin-top: 4px;
		padding-left: 26px;
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	.recruit_prs .prs_item {
		width: calc((100% - 20px)/2);
	}

	.recruit_prs .prs_item:nth-child(-n+3) {
		margin-top: 20px;
	}

	.recruit_prs .prs_item:nth-child(3n+1) {
		margin-left: 20px;
	}

	.recruit_prs .prs_item:nth-child(-n+2) {
		margin-top: 0;
	}

	.recruit_prs .prs_item:nth-child(2n+1) {
		margin-left: 0;
	}
}

/* 기업개요 */
.company .highlight {
	display: inline-block;
	position: relative;
	font-weight: 600;
	font-size: 32px;
}

.company .highlight::before {
	display: block;
	content: '';
	background-color: #d0f8f7;
	height: 22px;
	width: calc(100% + 14px);
	position: absolute;
	left: -7px;
	bottom: 0;
	z-index: -1;
}

.company_txt {
	padding: 100px 0;
}

.company_txt p {
	font-size: 32px;
	font-weight: 600;
	color: #181818;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
}

.company_txt p~p {
	margin-top: 4px;
}

.company_txt p img {
	width: 120px;
	height: 44px;
	margin-left: 12px;
	display: inline-block;
}

.company .info {
	display: flex;
	gap: 30px 120px;
}

.company .info .img {
	width: 700px;
	border-radius: 10px;
	overflow: hidden;
}

.company .info .txt_wrap {
	flex: 1;
}

.company .info .txt_wrap dl:nth-of-type(1) {
	margin-top: 30px;
	border-top: 1px solid #eee;
}

.company .info .txt_wrap dl {
	border-bottom: 1px solid #eee;
	padding: 28px 0;
	display: flex;
	align-items: center;
}

.company .info .txt_wrap dl dt {
	width: 180px;
	font-size: 24px;
	font-weight: 600;
	color: #222;
}

.company .info .txt_wrap dl dd {
	font-size: 18px;
	color: #363636;
	flex: 1;
}

.bsi {
	margin-top: 100px;
}

.bsi ul {
	display: flex;
	gap: 30px;
	margin-top: 30px;
}

.bsi ul>li {
	width: calc(50% - 15px);
	background-color: #f6f6f6;
	padding: 50px 60px;
	border-radius: 20px;
}

.bsi ul li h3 {
	color: #181818;
	font-size: 24px;
	font-weight: 600;
}

.bsi .txt_wrap {
	padding-top: 25px;
	margin-top: 25px;
	border-top: 1px solid #ccc;
}

.bsi .txt_wrap strong {
	color: #00A9A7;
	font-size: 20px;
	font-weight: 500;
}

.bsi .txt_wrap p {
	margin-top: 2px;
	font-size: 18px;
	font-weight: 500;
	color: #363636;
}

.bsi .txt_wrap ol {
	margin-top: 14px;
}

.bsi .txt_wrap ol li {
	font-size: 18px;
	color: #363636;
}

.bsi .txt_wrap ol li~li {
	margin-top: 2px;
}

.bsi_li {
	margin-top: 100px;
}

.bsi_li ul {
	display: flex;
	transition: .3s;
	margin-top: 30px;
	border-radius: 10px;
	overflow: hidden;
}

.bsi_li ul li {
	width: calc(100% / 6);
	transition: .5s;
	height: 540px;
	padding: 30px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
}

.bsi_li ul li::after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
	opacity: 0;
	transition: .5s;
}

.bsi_li ul li:hover::after {
	opacity: 1;
}

.bsi_li ul li:nth-child(1) {
	background: url(../images/sub/about-us/bsi_01.webp) no-repeat left 50% center;
	background-size: cover;
}

.bsi_li ul li:nth-child(2) {
	background: url(../images/sub/about-us/bsi_02.webp) no-repeat left 10% center;
	background-size: cover;
}

.bsi_li ul li:nth-child(3) {
	background: url(../images/sub/about-us/bsi_03.webp) no-repeat 0 0;
	background-size: cover;
}

.bsi_li ul li:nth-child(4) {
	background: url(../images/sub/about-us/bsi_04.webp) no-repeat left 50% center;
	background-size: cover;
}

.bsi_li ul li:nth-child(5) {
	background: url(../images/sub/about-us/bsi_05.webp) no-repeat left 20% center;
	background-size: cover;
}

.bsi_li ul li:nth-child(6) {
	background: url(../images/sub/about-us/bsi_06.webp) no-repeat left 40% center;
	background-size: cover;
}

.bsi_li ul li .txt {
	opacity: 0;
	transition: .5s;
	position: relative;
	bottom: -120px;
	max-height: 0;
	z-index: 1;
	width: 495px;
}

.bsi_li ul li:hover .txt {
	opacity: 1;
	bottom: 0;
	max-height: 110px;
}

.bsi_li ul li h3 {
	font-size: 32px;
	color: #fff;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

.bsi_li ul li p {
	margin-top: 12px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	width: 100%;
}

.bsi_li ul li span {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #fff;
	width: 100%;
}

@media screen and (max-width: 1300px) {
	.company .info {
		gap: 30px 60px;
	}

	.company .info .img {
		width: 600px;
	}

	.company .info .txt_wrap dl dt {
		width: 120px;
	}

	.bsi_li ul li h3 {
		font-size: 24px;
	}

	.bsi_li ul li p {
		font-size: 16px;
	}

	.bsi_li ul li .txt {
		width: 395px;
	}
}

@media screen and (max-width: 1024px) {
	.company .highlight {
		font-size: 24px;
	}

	.company .highlight::before {
		height: 16px;
		width: calc(100% + 7px);
		left: -3px;
	}

	.company_txt {
		padding: 60px 0;
	}

	.company_txt p {
		font-size: 20px;
	}

	.company_txt p~p {
		margin-top: 2px;
	}

	.company_txt p img {
		width: 70px;
		height: 23px;
		margin-left: 8px;
	}

	.company .info {
		flex-direction: column;
	}

	.company .info .img {
		width: 100%;
	}

	.company .info .txt_wrap {
		width: 100%;
		flex: none;
	}

	.company .info .txt_wrap dl:nth-of-type(1) {
		margin-top: 20px;
	}

	.company .info .txt_wrap dl {
		padding: 20px 0;
	}

	.company .info .txt_wrap dl dt {
		width: 100px;
		font-size: 18px;
	}

	.company .info .txt_wrap dl dd {
		font-size: 16px;
	}

	.bsi {
		margin-top: 60px;
	}

	.bsi ul {
		flex-direction: column;
		gap: 16px;
		margin-top: 20px;
	}

	.bsi ul>li {
		width: 100%;
		padding: 24px;
		border-radius: 15px;
	}

	.bsi ul li h3 {
		font-size: 18px;
	}

	.bsi .txt_wrap {
		padding-top: 16px;
		margin-top: 16px;
	}

	.bsi .txt_wrap strong {
		font-size: 16px;
	}

	.bsi .txt_wrap p {
		font-size: 14px;
	}

	.bsi .txt_wrap ol {
		margin-top: 8px;
	}

	.bsi .txt_wrap ol li {
		font-size: 14px;
	}

	.bsi_li {
		margin-top: 60px;
	}

	.bsi_li ul {
		flex-direction: column;
		margin-top: 20px;
	}

	.bsi_li ul li {
		width: 100% !important;
		height: 134px;
		padding: 20px;
	}

	.bsi_li ul li:nth-child(1) {
		background: url(../images/sub/about-us/bsi_01.webp) no-repeat center;
		background-size: cover;
	}

	.bsi_li ul li:nth-child(2) {
		background: url(../images/sub/about-us/bsi_02.webp) no-repeat center;
		background-size: cover;
	}

	.bsi_li ul li:nth-child(3) {
		background: url(../images/sub/about-us/bsi_03.webp) no-repeat center;
		background-size: cover;
	}

	.bsi_li ul li:nth-child(4) {
		background: url(../images/sub/about-us/bsi_04.webp) no-repeat center;
		background-size: cover;
	}

	.bsi_li ul li:nth-child(5) {
		background: url(../images/sub/about-us/bsi_05.webp) no-repeat center;
		background-size: cover;
	}

	.bsi_li ul li:nth-child(6) {
		background: url(../images/sub/about-us/bsi_06.webp) no-repeat center;
		background-size: cover;
	}

	.bsi_li ul:hover li {
		width: auto;
	}

	.bsi_li ul li:hover {
		width: auto;
		height: 402px;
	}

	.bsi_li ul li .txt {
		width: 100%;
	}

	.bsi_li ul li:hover .txt {
		opacity: 1;
		bottom: 0;
		max-height: 110px;
	}

	.bsi_li ul li h3 {
		font-size: 24px;
	}

	.bsi_li ul li p {
		margin-top: 8px;
	}

	.bsi_li ul li::after {
		opacity: 1;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.3) 100%);
	}

	.bsi_li ul li:hover::after {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
	}

}