@charset "utf-8";
/*───────────────────────────────────────────────────────────
	
	header, footer, main 관련 작성 css 파일입니다.

	** 이와 서브페이지 관련 css는 /css/sub.css 에 있습니다.

───────────────────────────────────────────────────────────*/

.layer-popup {
	font-size: 12px;
	background: #fff;
	border: 1px #000 solid;
}

.pop_closed {
	text-align: right;
	padding: 4px 12px;
	box-sizing: border-box;
	line-height: 20px;
	font-size: 12px;
	vertical-align: middle;
}

.pop_closed input[type="checkbox"] {}

.pop_closed input[type="checkbox"]+label {
	font-size: 12px;
}

.pop_closed a {
	vertical-align: top;
	display: inline-block;
	line-height: 20px;
	margin-left: 12px;
	position: relative;
	z-index: 1;
	width: 20px;
	height: 20px;
	font-size: 0;
}

.pop_closed a:before,
.pop_closed a:after {
	display: inline-block;
	content: "";
	width: 24px;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0;
	top: 50%;
}

.pop_closed a:before {
	transform: rotate(45deg)
}

.pop_closed a:after {
	transform: rotate(-45deg)
}

/*───────────────────────────────────────────────────────────
	layout common
───────────────────────────────────────────────────────────*/
/** PC 일반 **/
#wrap {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}

/* #header 와 #container, #footer 전체 감싸는 영역 */
#wrap #container {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/* #container 안의 레이아웃 */
#contents_wrap,
.w_custom {
	position: relative;
	width: calc(100% - 60px);
	max-width: 1500px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* #container 안의 컨텐츠 감싸는 영역 */
#contents_wrap {
	padding: 0 0 60px;
}

#contents_wrap #side_box {
	width: 100%;
	padding: 110px 0 0 0;
	box-sizing: border-box;
}

/* lnb 감싸는 영역 */
#contents_wrap #contents_box {
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}

/* 컨텐츠를 감싸는 영역 */
#contents_wrap #side_box+#contents_box {
	padding-top: 0;
}

/* lnb와 컨텐츠가 float 일때 사이즈 재설정 */
/* #content */
#content {
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: left;
	box-sizing: border-box;
}

/* navigation 을 제외한 컨텐츠 */
#content .sub_content {
	width: 100%;
	margin: 0 auto;
	background: #fff;
	box-sizing: border-box;
}

#content .sub_content:after {
	clear: both;
	content: "";
	display: block;
}

@media screen and (max-width:1023px) {

	#contents_wrap,
	.w_custom {
		width: calc(100% - 30px);
	}
}

@media screen and (max-width:360px) {

	#contents_wrap,
	.w_custom {
		width: calc(100% - 20px);
	}

	.sub_practice .bg_title {
		padding: 30px 5px;
	}
}

/*───────────────────────────────────────────────────────────

	 HEADER

───────────────────────────────────────────────────────────*/
#header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	background: var(--point-white);
	transition: all 0.4s;
}

#header .cont {
	position: relative;
	width: calc(100% - 60px);
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	box-sizing: border-box;
}

#header .logo {
	font-size: 0;
	display: inline-flex;
	align-items: center;
	height: 100%;
}

#header .logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

#header .gnb {
	position: absolute;
	top: 0;
	left: 55%;
	height: 100%;
	display: inline-flex;
	transform: translateX(-50%);
	width: calc(100% - 600px);
	justify-content: center;
	align-items: center;
	text-align: center;
}

#header .gnb>li {
	position: relative;
	height: 100%;
	font-size: var(--title-20);
}

#header .gnb>li+li:before {
	position: absolute;
	content: '';
	width: 4px;
	height: 4px;
	background: var(--black-color10);
	border-radius: 100%;
	top: 50%;
	left: -2px;
	/* margin-top:-2px; */
}

#header .gnb>li>a {
	display: flex;
	align-items: center;
	height: 100%;
	font-weight: 500;
	color: var(--black-color00);
	padding: 0px 1.62vw 0;
	transition: all 0.4s;
}

#header .gnb>li.on>a {
	color: var(--point-color01);
}

#header .gnb .dep02 {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 120%;
	padding: 5px 10px 10px 5px;
	background: var(--point-white);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s;
	border-radius: 0 0 5px 5px;
}

#header .gnb .dep02>li>a {
	position: relative;
	display: block;
	padding: 10px;
	font-size: 85%;
	color: var(--black-color03);
	transition: all 0.4s;
}

#header .gnb .dep03 {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 110%;
	padding: 5px 10px 10px 5px;
	background: var(--point-white);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s;
	border-radius: 0 0 5px 5px;
}

#header .gnb .dep03>li>a {
	position: relative;
	display: block;
	padding: 10px;
	font-size: 85%;
	color: var(--black-color03);
	transition: all 0.4s;
}

#header .right_link {
	display: inline-flex;
	align-items: center;
}

#header .link_list {
	display: inline-flex;
	align-items: center;
	font-size: var(--title-20);
	gap: 46px;
}

#header .link_list li a {
	position: relative;
	font-size: 75%;
	font-weight: 400;
	color: var(--black-color03);
	border: 1px solid;
	border-color: var(--border-color02);
	border-radius: 50px;
	padding: 4px 16px;
	background-color: var(--transparent);
}

#header .link_list li a:hover {
	background: var(--point-color01);
	border-color: var(--border-color05);
	color: var(--point-white);
}

#header .menu_trigger {
	position: relative;
	font-size: 0;
	width: 36px;
	height: 22px;
}

/* #header .menu_trigger:before, #header .menu_trigger:after{position:absolute; content:''; top:0; left:0; width:2px; height:2px; border-radius:100%; background:var(--black-color03);} */
#header .menu_trigger:after {
	top: auto;
	left: auto;
	right: 0;
	bottom: 0;
}

#header .menu_trigger span {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 2px;
	border-radius: 5px;
	background: var(--black-color03);
	transition: all 0.4s;
}

#header .menu_trigger span:nth-child(1) {
	width: calc(100% - 8px);
}

#header .menu_trigger span:nth-child(2) {
	top: 50%;
	margin-top: -1px;
}

#header .menu_trigger span:nth-child(3) {
	top: 100%;
	margin-top: -2px;
	right: 0;
	left: auto;
	width: calc(100% - 7px);
}

#header .menu_trigger span:nth-child(3):before {
	right: auto;
	left: calc(100% + 6px);
}

/* on */
#header.on {
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.10);
}

/* main */
.main_index #header {
	position: fixed;
	background: var(--transparent);
}

.main_index #header.on {
	background: var(--point-white);
}

/* over */
@media screen and (min-width:1024px) {
	#header .gnb .dep02>li>a:before {
		position: absolute;
		content: '';
		width: 4px;
		height: 4px;
		background: var(--point-color04);
		border-radius: 100%;
		top: 3px;
		left: 50%;
		margin-left: -2px;
		opacity: 0;
		transition: all 0.4s;
	}

	#header .menu_trigger:hover :is(span) {
		width: 100%;
	}

	#header .gnb>li:hover>a {
		color: var(--point-color01);
	}

	/* #header .gnb > li:nth-child(5):hover .dep02, #header .gnb:has(*:focus) .dep02{opacity:1; pointer-events:inherit;} */
	/* #header .gnb > li:nth-child(5):hover .dep02, #header .gnb > li:nth-child(5):has(*:focus) .dep02{opacity:1; pointer-events:inherit;} */
	#header .gnb>li:nth-child(5):hover .dep02,
	#header .gnb>li:nth-child(5):focus .dep02 {
		opacity: 1;
		pointer-events: inherit;
	}

	#header .gnb .dep02>li>a:hover,
	#header .gnb .dep02>li>a:focus {
		color: var(--point-color02);
	}

	#header .gnb .dep02>li>a:hover:before,
	#header .gnb .dep02>li>a:focus:before {
		opacity: 1;
	}


	#header .gnb .dep03>li>a:before {
		position: absolute;
		content: '';
		width: 4px;
		height: 4px;
		background: var(--point-color04);
		border-radius: 100%;
		top: 3px;
		left: 50%;
		margin-left: -2px;
		opacity: 0;
		transition: all 0.4s;
	}

	#header .gnb>li:nth-child(8):hover .dep03,
	#header .gnb>li:nth-child(8):focus .dep03 {
		opacity: 1;
		pointer-events: inherit;
	}

	#header .gnb .dep03>li>a:hover,
	#header .gnb .dep03>li>a:focus {
		color: var(--point-color02);
	}

	#header .gnb .dep03>li>a:hover:before,
	#header .gnb .dep03>li>a:focus:before {
		opacity: 1;
	}

	/* main */
	.main_index #header:hover {
		background: var(--point-white);
		box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.10);
	}

	/* .main_index  #header:has(> .cont *:focus){background:var(--point-white);}  */

}

@media screen and (max-width:1480px) {
	#header .logo {
		width: 250px;
	}

	#header .link_list {
		margin-right: 40px;
		gap: 36px;
	}
}

@media screen and (max-width:1300px) {
	#header .gnb {
		left: 57%;
	}
}

@media screen and (max-width:1200px) {
	#header .logo {
		width: 230px;
	}

	/* #header .gnb{left:57%;} */
	#header .gnb>li>a {
		font-size: 85%;
	}

	#header .gnb .dep02 {
		padding: 5px 5px 10px 5px;
		width: 145%;
	}

	#header .gnb .dep02>li>a {
		font-size: 80%;
		padding: 5px;
	}

	#header .gnb .dep03 {
		padding: 5px 5px 10px 5px;
		width: 130%;
	}

	#header .gnb .dep03>li>a {
		font-size: 80%;
		padding: 5px;
	}

	#header .link_list {
		margin-right: 30px;
		gap: 26px;
	}
}

@media screen and (max-width:1023px) {
	#header .cont {
		height: 80px;
	}

	#header .cont {
		width: calc(100% - 30px);
		height: 80px;
		padding: 10px 0;
		box-sizing: border-box;
	}

	#header .gnb {
		display: none;
	}

	#header .link_list {
		display: none;
	}

	#header .menu_trigger {
		width: 32px;
	}
}

@media screen and (max-width:860px) {

	/* #header .cont{height:100px;} */
	#header .menu_trigger {
		width: 30px;
	}
}

@media screen and (max-width:640px) {
	#header.on {
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	}

	#header .cont {
		height: 80px;
	}

	#header .link_list {
		margin-right: 25px;
		gap: 20px;
	}

	#header .menu_trigger {
		width: 28px;
		height: 20px;
	}
}

@media screen and (max-width:479px) {
	/* #header .cont{height:70px;} */
}

/*───────────────────────────────────────────────────────────

	 HEADER

───────────────────────────────────────────────────────────*/
.sub_header {
	background-color: var(--point-color10) !important;
}

.sub_header:hover {
	background-color: var(--point-white) !important;
}

.sub_header.on {
	background-color: var(--point-white) !important;
}

/*───────────────────────────────────────────────────────────

	 ASIDE

───────────────────────────────────────────────────────────*/
#aside {
	position: fixed;
	top: 50%;
	left: 50%;
	transition: all 0.4s;
	box-sizing: border-box;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%);
	width: 100%;
	pointer-events: none;
}

.aside_bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	pointer-events: none;
	transition: 0.4s;
	z-index: 999;
	display: none;
}

body:has(#aside.on) {
	overflow: hidden;
	touch-action: none;
}

body:has(#aside.on) .aside_bg {
	opacity: 1;
	pointer-events: inherit;
}

#aside .cont {
	background: var(--point-white);
	padding: 40px;
	border-radius: 20px;
	overflow-y: auto;
	max-height: 75vh;
	box-sizing: border-box;
}

#aside.on .cont {
	pointer-events: all;
}

#aside .gnb {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

#aside .gnb>li {
	width: calc(100% / 6 - 20px);
	box-sizing: border-box;
	font-size: var(--title-20);
	text-align: center;
}

#aside .gnb>li>a {
	position: relative;
	font-size: 110%;
	font-weight: 500;
	color: var(--point-white);
	border-radius: 10px 10px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 58px;
	padding: 0 10px;
	box-sizing: border-box;
}

#aside .gnb>li:nth-child(1n)>a {
	background: var(--point-color16);
}

#aside .gnb>li:nth-child(2n)>a {
	background: var(--point-color01);
}

#aside .gnb>li:nth-child(3n)>a {
	background: var(--point-color40);
}

#aside .gnb>li:nth-child(4n)>a {
	background: var(--point-color04);
}

#aside .gnb>li:nth-child(5n)>a {
	background: var(--point-color42);
}

#aside .gnb>li:nth-child(6n)>a {
	background: var(--point-color45);
}

#aside .gnb .dep02>li>a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 100%;
	font-weight: 400;
	height: 54px;
	border: 1px solid var(--border-color01);
	border-top: 0;
	background: var(--point-white);
	padding: 0 10px;
	transition: all 0.4s;
	box-sizing: border-box;
}

#aside .gnb .dep02>li:last-child>a {
	border-radius: 0 0 10px 10px;
}

#aside .gnb .dep03>li>a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 100%;
	font-weight: 400;
	color: var(--black-color07);
	height: 54px;
	border: 1px solid var(--border-color01);
	border-top: 0;
	background: var(--point-white);
	padding: 0 10px;
	transition: all 0.4s;
	box-sizing: border-box;
}

#aside .gnb .dep03>li:last-child>a {
	border-radius: 0 0 10px 10px;
}

#aside .menu-trigger2 {
	position: absolute;
	width: 36px;
	height: 36px;
	top: 15px;
	left: calc(100% + 15px);
}

#aside.on .menu-trigger2 {
	pointer-events: all;
}

#aside .menu-trigger2 span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	background: var(--point-white);
	width: 100%;
	height: 2px;
	border-radius: 3px;
}

#aside .menu-trigger2 span+span {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* over */
@media screen and (min-width:1024px) {
	#aside .gnb .dep02>li>a:hover {
		background: var(--gray-bg);
		color: var(--black-color03);
	}

	#aside .gnb .dep03>li>a:hover {
		background: var(--gray-bg);
		color: var(--black-color03);
	}

	#header .menu_trigger {
		display: none;
	}
}

@media screen and (max-width:1560px) {
	#aside .menu-trigger2 {
		top: auto;
		bottom: calc(100% + 15px);
		left: auto;
		right: 15px;
	}
}

@media screen and (max-width:1200px) {
	#aside .gnb {
		gap: 20px;
	}

	#aside .gnb>li {
		width: calc(100% / 6 - 16.67px);
	}
}

@media screen and (max-width:1023px) {
	#aside .gnb {
		gap: 15px;
	}

	#aside .gnb>li {
		width: calc(100% / 6 - 12.5px);
	}

	#aside .menu-trigger2 {
		width: 30px;
		height: 30px;
		right: 10px;
		bottom: calc(100% + 10px);
	}
}

@media screen and (max-width:1023px) {
	#header .menu_trigger {
		display: block;
	}

	#aside {
		top: 0;
		left: auto;
		right: -100%;
		width: 50%;
		transform: none;
		box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.3);
	}

	#aside.on {
		right: 0;
		opacity: 1;
	}

	.aside_bg {
		display: block;
	}

	#aside .menu-trigger2 {
		top: 24px;
		right: 20px;
		width: 25px;
		height: 25px;
	}

	#aside .menu-trigger2 span {
		background: var(--black-color05);
	}

	#aside .cont_wrap {
		width: 100%;
	}

	#aside .cont {
		border-radius: 0;
		min-height: 100vh;
		padding: 15px 20px 10px;
	}

	#aside .logo {
		font-size: 0;
		margin-bottom: 18px;
		margin-top: 5px;
	}

	#aside .logo a {
		display: block;
		width: 250px;
	}

	#aside .gnb {
		display: block;
		border-top: 1px solid var(--black-color03);
	}

	#aside .gnb>li {
		width: 100%;
		text-align: left;
	}

	#aside .gnb>li>a {
		height: auto;
		border-radius: 0;
		padding: 17px 0;
		background: none !important;
		border: 0;
		border-bottom: 1px solid var(--border-color01);
		color: var(--black-color03);
		justify-content: flex-start;
	}

	#aside .gnb>li>a:has(+ ul):before {
		position: absolute;
		content: '';
		width: 7px;
		height: 7px;
		border: 2px solid var(--transparent);
		border-right-color: var(--black-color08);
		border-bottom-color: var(--black-color08);
		top: 20px;
		right: 10px;
		transform: rotate(45deg);
		border-radius: 2px;
	}

	#aside .gnb>li>a.on:has(+ ul):before {
		top: 26px;
		border-right-color: var(--point-color01);
		border-bottom-color: var(--point-color01);
		transform: rotate(45deg) scale(-1, -1);
	}

	#aside .gnb .dep02 {
		background: var(--point-bg04);
		;
		padding: 10px 0;
		display: none;
	}

	#aside .gnb .dep02>li>a {
		border: 0;
		background: none;
		justify-content: flex-start;
		height: auto;
		padding: 10px 25px;
		height: auto;
	}

	#aside .gnb .dep03 {
		background: var(--point-bg04);
		;
		padding: 10px 0;
		display: none;
	}

	#aside .gnb .dep03>li>a {
		border: 0;
		background: none;
		justify-content: flex-start;
		height: auto;
		padding: 10px 25px;
		height: auto;
	}

	#aside .link_list {
		display: flex;
		justify-content: center;
		text-align: center;
		gap: 10px 30px;
		font-size: var(--title-20);
		margin-top: 32px;
	}

	#aside .link_list>li>a {
		font-weight: 400;
		color: var(--black-color07);
	}
}

@media screen and (max-width:640px) {
	#aside {
		width: 100%;
	}
}

@media screen and (max-width:479px) {}

@media screen and (max-width:431px) {}

@media screen and (min-width:1024px) {
	/* #aside .logo{display:none;}
        #aside .gnb .dep02{display: block !important;}
        #aside .gnb .dep03{display: block !important;}
        #aside .link_list{display: none;} */
}

/*───────────────────────────────────────────────────────────

	 FOOTER

───────────────────────────────────────────────────────────*/
/* PC 일반 */
#footer {
	position: relative;
	background: var(--point-color13);
	padding: 0;
}

#footer .ftr_path {
	position: absolute;
	top: -70px;
	left: 0;
	width: 100%;
	height: auto;
}

#footer .ftr_path path {
	fill: var(--point-color13);
}

#footer .top_sec {
	display: flex;
	align-items: center;
}

#footer .logo {
	font-size: 0;
	margin-right: 90px;
}

#footer .link_list {
	display: flex;
	font-size: var(--title-20);
	gap: 30px;
	padding-bottom: 5px;
	line-height: 1.5;
	margin-right: 30px;
}

#footer .link_list li {
	font-size: 75%;
	font-weight: 400;
	color: var(--black-color05);
}

#footer .link_list li strong {
	font-weight: 700;
	color: var(--point-color06);
}

#footer .link_list li p {
	font-size: 82%;
	margin-top: 3px;
}

#footer .bullet_list>li {
	font-family: var(--font-type02, inherit);
}

#footer .blank_list {
	display: inline-flex;
	gap: 10px;
}

#footer .blank_list li a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	width: 40px;
	height: 40px;
	border: 1px solid var(--border-color03);
	padding: 0;
	box-sizing: border-box;
	border-radius: 100%;
	transition: all 0.4s;
}

#footer .info {
	margin-top: 25px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	justify-content: space-between;
	width: calc(100% - 125px);
}

#footer .exp_list {
	margin-right: 30px;
	min-width: 380px;
}

#footer .exp_list dl {
	display: inline-flex;
	font-size: var(--title-20);
}

#footer .exp_list dl:not(:last-child) {
	margin-right: 35px;
}

#footer .exp_list dl :where(dt, dd) {
	font-size: 75%;
	font-weight: 400;
	color: var(--black-color08);
	line-height: 1.5;
}

#footer .copy dl :where(dt, dd) {
	font-size: 75%;
	font-weight: 400;
	color: var(--black-color01);
	line-height: 1.6;
}

/* #footer .exp_list .copy{margin-top:17px;} */
#footer .exp_list .copy dl :where(dt, dd) {
	font-size: 75%;
}

#footer .exp_list .copy dl dt+dd {
	padding-left: 40px;
}

#footer .family_site {
	position: relative;
	display: inline-block;
	font-size: var(--title-20);
	z-index: 5;
}

#footer .family_site dt span {
	position: relative;
	display: flex;
	align-items: center;
	width: 231px;
	height: 51px;
	border: 1px solid var(--black-color10);
	border-radius: 8px;
	font-size: 90%;
	font-weight: 500;
	color: var(--black-color05);
	padding: 0 20px;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 0.4s;
}

#footer .family_site dt span:before {
	position: absolute;
	content: '';
	width: 8px;
	height: 8px;
	border: 2px solid var(--transparent);
	border-top-color: var(--black-color05);
	border-right-color: var(--black-color05);
	top: calc(50% + 3px);
	right: 20px;
	transform: translateY(-50%) rotate(-45deg);
	border-radius: 3px;
	transition: all 0.4s;
}

#footer .family_site dt.on span:before {
	top: calc(50% - 5px);
	transform: translateY(-50%) rotate(-45deg) scale(-1, -1);
}

#footer .family_site dd {
	position: absolute;
	bottom: calc(100% - 1px);
	left: 0;
	width: 100%;
	border: 1px solid var(--black-color10);
	background: var(--point-color13);
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 80%;
	font-weight: 400;
	color: var(--black-color09);
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s;
}

#footer .family_site dt.on+dd,
#footer .family_site dd:has(> ul a:focus) {
	opacity: 1;
	pointer-events: inherit;
}

#footer .family_site dd a {
	display: block;
	padding: 5px 0;
}

#footer .number {
	display: flex;
	justify-content: flex-end;
}

#footer .number li {
	margin-right: 5px;
	background: var(--black-color10);
	font-weight: 500;
	color: var(--point-white);
	font-size: 65%;
	padding: 5px;
	min-width: 90px;
	text-align: center;
}

#footer .number li:last-child {
	margin-left: 5px;
}


@media screen and (max-width:1600px) {
	#footer:before {
		left: 15px;
		top: -10%;
	}
}

@media screen and (max-width:1480px) {
	.quick_list {
		right: 30px;
		bottom: 30px;
	}
}

@media screen and (max-width:1200px) {
	#footer {
		padding: 30px 20px;
	}

	#footer .top_sec {
		display: block;
	}

	#footer .logo {
		margin-right: 0;
	}

	#footer .link_list {
		padding: 20px 0 0;
	}

	#footer .cs_center {
		display: block;
	}

	#footer .agree {
		margin-top: 40px;
	}

	#footer .agree_list {
		margin: 0 0 10px;
	}

	#footer .blank_list li a {
		width: 38px;
		height: 38px;
	}

	#footer .info {
		margin-top: 30px;
		display: block;
		margin-bottom: 0;
	}

	#footer .family_site {
		margin-top: 30px;
		position: absolute;
		bottom: -2px;
		right: 20px;
	}

	#footer .family_site dt span {
		width: 180px;
		height: 45px;
	}

	#footer .family_site dt span:before {
		width: 7px;
		height: 7px;
	}

	#footer .family_site dt.on span:before {
		top: calc(50% - 3px);
	}

	.quick_list li a {
		width: 45px;
		height: 45px;
	}

	#footer .number li {
		font-size: 75%;
	}
}

@media screen and (max-width:860px) {
	#footer .top_sec {
		display: block;
	}

	#footer .logo {
		margin-right: 0;
	}

	#footer .link_list {
		padding: 10px 0 0;
	}

	#footer .cs_center {
		display: block;
	}

	#footer .agree {
		margin-top: 40px;
	}

	#footer .agree_list {
		margin: 0 0 10px;
	}

	#footer .blank_list li a {
		width: 38px;
		height: 38px;
	}

	#footer .info {
		margin-top: 15px;
		display: block;
		width: 100%;
	}

	#footer .exp_list dl :where(dt, dd) {
		font-size: 85%;
	}

	#footer .link_list {
		width: 100%;
	}

	#footer .link_list li {
		font-size: 85%;
	}

	#footer .family_site {
		margin-top: 15px;
		position: relative;
		bottom: auto;
		right: auto;
	}

	#footer .family_site dt span {
		width: 180px;
		height: 45px;
	}

	#footer .family_site dt span:before {
		width: 7px;
		height: 7px;
	}

	#footer .family_site dt.on span:before {
		top: calc(50% - 3px);
	}

	.quick_list li a {
		width: 45px;
		height: 45px;
	}
}

@media screen and (max-width:640px) {
	#footer .logo {
		width: 200px;
	}

	#footer .link_list {
		gap: 20px;
	}

	#footer .agree {
		margin-top: 30px;
	}

	#footer .agree:before {
		width: 60px;
		height: 110px;
	}

	#footer .agree_list>li:not(:last-child) {
		margin-right: 34px;
	}

	#footer .agree_list>li+li:before {
		right: calc(100% + 15px);
	}

	#footer .exp_list dl:not(:last-child) {
		margin-right: 25px;
	}

	#footer .exp_list .copy dl {
		display: block;
	}

	#footer .exp_list .copy dl dt+dd {
		padding: 10px 0 0;
	}

	#footer .family_site dt span {
		border-radius: 4px;
	}

	#footer .family_site dd {
		border-radius: 4px;
	}

	.quick_list li a {
		width: 40px;
		height: 40px;
	}
}

@media screen and (max-width:479px) {
	#footer {
		padding: 20px 0;
	}

	#footer:before {
		width: 20px;
		top: -13%;
	}

	#footer .logo {
		width: 180px;
	}

	#footer .agree:before {
		bottom: -11px;
		width: 40px;
		height: 76px;
		clip-path: inset(0 0 10px 0);
	}

	#footer .agree_list {
		display: block;
	}

	#footer .agree_list>li:not(:last-child) {
		margin: 0 0 7px;
	}

	#footer .agree_list>li+li:before {
		display: none;
	}

	#footer .blank_list li a {}

	#footer .exp_list {
		min-width: auto;
		width: 170%;
		margin-right: 0px;
	}

	#footer .link_list {
		margin-right: 0;
	}

	#footer .family_site dt span {
		width: 160px;
		height: 42px;
	}

	#footer .family_site dt span:before {
		width: 6px;
		height: 6px;
	}
}


/*───────────────────────────────────────────────────────────

	 MAIN | index.html

───────────────────────────────────────────────────────────*/
.main_index #contents_wrap {
	width: 100%;
	max-width: 100%;
}

#wrap .swiper_arw {
	font-size: 0;
}

#wrap .swiper_arw:after {
	position: absolute;
	content: '';
	width: 7px;
	height: 11px;
	background: url('../../img/skin/swiper_arw.svg') no-repeat center;
	top: 50%;
	left: 50%;
	background-size: 100% auto;
	z-index: 3;
	margin-top: -5.5px;
	margin-left: -3.5px;
}

#wrap .swiper_arw.swiper-button-next {
	transform: scale(-1, -1);
}

/* 비주얼 */
.visualSwiper {
	position: relative;
	background: url('../../img/skin/top_bg_l.png'), url('../../img/skin/top_bg_r.png');
	background-color: var(--point-color10);
	background-repeat: no-repeat;
	background-position: left bottom, right bottom;
	min-height: 450px;
	position: relative;
}

.visualSwiper .swiper-slide {
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
	opacity: 0 !important;
	pointer-events: none;
}

.visualSwiper .swiper-slide.swiper-slide-active {
	opacity: 1 !important;
	pointer-events: inherit;
}

.visualSwiper .thumb {
	max-width: 1500px;
	margin: 0 auto;
	padding-top: 35px;
	background-image: url('../../img/skin/main_visual01.png');
	background-repeat: no-repeat;
	background-position: right 85px bottom;
	min-height: 415px;
	background-size: 50%;
}

.visualSwiper .thumb img {
	object-fit: cover;
	transform: scale(1.1);
	transition: all 1.2s;
}

.visualSwiper .thumb .for_pct {
	display: block;
}

.visualSwiper .thumb .for_m {
	display: none;
}

.visualSwiper .txt_wrap {
	position: absolute;
	top: 57%;
	left: 33%;
	transform: translate(-50%, -50%);
	font-size: var(--title-20);
	z-index: 3;
	text-align: center;
}

.visualSwiper .txt_wrap h2 {
	font-size: 250%;
	font-weight: 500;
	color: var(--black-color03);
	line-height: 1.4;
	letter-spacing: -0.04em;
}

.visualSwiper .txt_wrap h2+h6 {
	margin-top: 30px;
}

.visualSwiper .txt_wrap h2 strong {
	font-weight: inherit;
	color: var(--point-color03);
}

.visualSwiper .swiper-slide:nth-child(2) .txt_wrap h2 strong {
	color: var(--point-color04);
}

.visualSwiper .swiper-slide:nth-child(3) .txt_wrap h2 strong {
	color: var(--point-color05);
}

.visualSwiper .txt_wrap h6 {
	font-size: 110%;
	font-weight: 500;
	color: var(--black-color05);
	letter-spacing: -0.04em;
}

.visualSwiper .txt_wrap h6 strong {
	font-weight: 800;
}

.visualSwiper .txt_wrap .txtAni {
	transform: translateY(70px);
	opacity: 0;
	transition: all 1.2s;
	transition-delay: 0.2s;
}

.visualSwiper .txt_wrap .txtAni+.txtAni {
	transition-delay: 0.4s;
}

.search {
	display: flex;
	justify-content: space-between;
	background-color: #ffffff;
	border: 4px solid transparent;
	border-radius: 50px;
	background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #72CBCD 0%, #7F9BF9 60%);
	background-origin: border-box;
	background-clip: content-box, border-box;
	max-width: 450px;
	margin: 20px auto;
}

.search .search_input {
	padding: 5px 20px 5px 35px;
	background-color: #ffffff;
	font-size: 18px;
	color: #111111;
	border-radius: 50px;
	min-width: 315px;
	border: none;
}

.search button {
	padding: 14px 25px;
	border-radius: 0 50px 50px 0;
}

.visualSwiper .link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}

.visualSwiper .swiper-slide-active .thumb img {
	transform: scale(1);
}

.visualSwiper .swiper-slide-active .txt_wrap .txtAni {
	transform: translate(0);
	opacity: 1;
}

.visualSwiper .controller {
	position: absolute;
	font-size: 0;
	left: 50%;
	bottom: 39px;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.visualSwiper .swiper_btn,
.main_agency .swiper_btn {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	display: inline-flex;
	font-size: 0;
	width: 31px;
	height: 31px;
	border: 1px solid var(--border-color03);
	border-radius: 6px;
	box-sizing: border-box;
	background: var(--point-white);
	margin: 0 2.5px;
	opacity: 1;
	cursor: pointer;
	transition: all 0.4s;
}

.visualSwiper .swiper_arw:after,
.main_agency .swiper_arw:after {
	border-radius: 6px;
}

.visualSwiper .play_btn:before,
.visualSwiper .play_btn:after,
.main_agency .play_btn:before,
.main_agency .play_btn:after {
	position: absolute;
	content: '';
	width: 2px;
	height: 11px;
	background: var(--black-color02);
	top: 50%;
	left: 50%;
	margin-left: -4px;
	margin-top: -5.5px;
	border-radius: 4px;
}

.visualSwiper .play_btn:after,
.main_agency .play_btn:after {
	margin-left: 2px;
}

.visualSwiper .play_btn.stop:before,
.main_agency .play_btn.stop:before {
	background: none;
	border-radius: 0;
	width: auto;
	height: auto;
	border: 5px solid var(--transparent);
	border-left: 8px solid var(--black-color02);
}

.visualSwiper .play_btn.stop:after,
.main_agency .play_btn.stop:after {
	opacity: 0;
}

/* over */
@media screen and (max-width:1200px) {
	.visualSwiper .thumb {
		max-width: 1500px;
		margin: 0 auto;
		padding-top: 35px;
		background-image: none;
		background-repeat: no-repeat;
		background-position: right 85px bottom;
		min-height: 415px;
		background-size: 50%;
	}

	.visualSwiper .txt_wrap {
		left: 50%;
		top: 55%;
	}
}


@media screen and (min-width:1024px) {

	.visualSwiper .swiper_btn:hover,
	.main_agency .swiper_btn:hover {
		border-color: var(--black-color03);
	}
}

/* @media screen and (max-width:1417px){
			.visualSwiper .swiper-slide{ min-height:450px;}
		} */
@media screen and (max-width:1023px) {
	.visualSwiper .txt_wrap h2+h6 {
		margin-top: 25px;
	}

	.visualSwiper .controller {
		bottom: 30px;
	}
}

@media screen and (max-width:640px) {
	.visualSwiper {
		min-height: 350px;
		background-size: 49%;
	}

	.visualSwiper .thumb {
		min-height: 315px;
	}

	.visualSwiper .thumb .for_pct {
		display: none;
	}

	.visualSwiper .thumb .for_m {
		display: block;
	}

	.visualSwiper .txt_wrap {
		transform: translateX(-50%);
		top: 27%;
	}

	.visualSwiper .txt_wrap h2 {
		font-size: 190%;
	}

	.visualSwiper .txt_wrap h2+h6 {
		margin-top: 20px;
	}

	.visualSwiper .controller {
		bottom: 25px;
	}

	.visualSwiper .swiper_btn,
	.main_agency .swiper_btn {
		width: 30px;
		height: 30px;
		border-radius: 3px;
	}

	.search {
		max-width: 70%;
	}

	.search .search_input {
		padding: 10px 20px 10px 25px;
		min-width: 65%;
	}

	.search button {
		padding: 7px 15px;
	}
}

@media screen and (max-width:479px) {

	.visualSwiper {
		background-size: 60%;
	}

	.visualSwiper .txt_wrap {
		transform: translateX(-50%);
		top: 30%;
	}

	.visualSwiper .txt_wrap h2 {
		font-size: 175%;
	}

	.visualSwiper .txt_wrap h2+h6 {
		margin-top: 15px;
	}

	.visualSwiper .txt_wrap h6 {
		font-size: 81%;
	}

	.visualSwiper .controller {
		bottom: 20px;
	}

	.search {
		max-width: 90%;
	}

	.search .search_input {
		padding: 10px 20px 10px 25px;
		min-width: 65%;
	}

	.search button {
		padding: 7px 15px;
	}
}

@media screen and (max-width:360px) {
	.visualSwiper {
		background-size: 45%;
		min-height: 300px;
	}

	.visualSwiper .swiper-slide {
		min-height: 300px;
	}

	.visualSwiper .thumb {
		display: none;
	}

	.visualSwiper .txt_wrap h2 {
		font-size: 180%;
	}

	.visualSwiper .txt_wrap h2+h6 {
		margin-top: 10px;
	}

	.visualSwiper .txt_wrap h6 {
		font-size: 90%;
	}

	.visualSwiper .txt_wrap h2 {
		font-size: 185%;
	}
}

/* 공통 */
.main_title {
	position: relative;
	font-size: var(--title-20);
	box-sizing: border-box;
}

.main_title.cen {
	text-align: center;
}

.main_title .icon {
	display: block;
	font-size: 0;
	margin: 0 auto;
}

.main_title .icon+h2 {
	margin-top: 24px;
}

.main_title h2 {
	font-size: 280%;
	font-weight: 800;
	color: var(--black-color03);
	line-height: 1.15;
	letter-spacing: -0.04em;
}

.main_title h2+h6 {
	margin-top: 15px;
}

.main_title h2 strong {
	font-weight: inherit;
	color: var(--point-color04);
}

.main_title h2 em {
	font-weight: inherit;
	color: var(--point-color02);
}

.main_title h2 b {
	font-weight: inherit;
	color: var(--point-color10);
}

.main_title h3 {
	font-size: 200%;
	font-weight: 700;
	color: var(--black-color03);
	line-height: 1.2;
	letter-spacing: -0.02em;
	padding-left: 35px;
}

.main_title h3 strong {
	font-weight: inherit;
	color: var(--point-color08);
}

.main_title h4 {
	font-size: 200%;
	font-weight: 800;
	color: var(--black-color04);
	line-height: 1.25;
	letter-spacing: -0.04em;
}

.main_title h4+p {
	margin-top: 14px;
}

.main_title h6 {
	font-size: 120%;
	font-weight: 400;
	color: var(--black-color05);
	line-height: 1.4;
	letter-spacing: -0.04em;
}

.main_title p {
	font-weight: 500;
	color: var(--black-color07);
	line-height: 1.45;
	letter-spacing: -0.04em;
}

.main_content .gallery_list {
	display: flex;
}

.main_content .gallery_list>li {
	position: relative;
	width: 100%;
	padding: 20px 20px 24px;
	box-sizing: border-box;
	box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
	border-radius: 20px;
	overflow: hidden;
	transition: box-shadow 0.4s;
	background: var(--point-white);
}

.main_content .gallery_list .thumb {
	position: relative;
	font-size: 0;
	border-radius: 10px;
	overflow: hidden;
	box-sizing: border-box;
}

.main_content .gallery_list .thumb+.info {
	margin-top: 20px;
}

.main_content .gallery_list .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main_content .gallery_list .info {
	font-size: var(--title-20);
}

.main_content .gallery_list .info dt {
	font-weight: 400;
	color: var(--black-color00);
	letter-spacing: -0.04em;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.main_content .gallery_list .info dt+dd {
	margin-top: 14px;
}

.main_content .gallery_list .info dd {
	font-size: 90%;
	font-weight: 400;
	color: var(--black-color06);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.main_content .gallery_list .link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}

/* over */
@media screen and (min-width:1024px) {
	.main_content .gallery_list>li:before {
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
		border: 1px solid var(--black-color03);
		box-sizing: border-box;
		border-radius: 20px;
		top: 0;
		left: 0;
		opacity: 0;
		transition: all 0.4s;
	}

	.main_content .gallery_list>li:hover:before {
		opacity: 1;
	}
}

/* 카테고리 */
.main_category .menu_list {
	gap: 15px;
	display: flex;
	flex-wrap: wrap;
}

.main_category .menu_list>li {
	position: relative;
	width: calc(95% / 3);
	padding-bottom: 100px;
	background: var(--point-bg);
	border-radius: 7px;
	text-align: center;
	box-sizing: border-box;
	transition: all 0.4s;
	box-shadow: 0px 0px 7px rgba(191, 216, 255, 1);
}

.main_category .menu_list .info {
	position: absolute;
	top: 51%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 30px);
	box-sizing: border-box;
	font-size: var(--title-20);
}

.main_category .menu_list dl.icon01 {
	background: url(../../img/skin/main_category_icon01.png)no-repeat right bottom;
	background-size: 25%;
}

.main_category .menu_list dl.icon02 {
	background: url(../../img/skin/main_category_icon02.png)no-repeat right bottom;
	background-size: 25%;
}

.main_category .menu_list dl.icon03 {
	background: url(../../img/skin/main_category_icon03.png)no-repeat right bottom;
	background-size: 30%;
}

.main_category .menu_list dl.icon04 {
	background: url(../../img/skin/main_category_icon04.png)no-repeat right bottom;
	background-size: 29%;
}

.main_category .menu_list dl.icon05 {
	background: url(../../img/skin/main_category_icon05.png)no-repeat right bottom;
	background-size: 25%;
}

.main_category .menu_list dl.icon06 {
	background: url(../../img/skin/main_category_icon06.png)no-repeat right bottom;
	background-size: 27%;
}

.main_category .menu_list .info dt {
	font-size: 0;
	display: flex;
	align-items: center;
	justify-content: left;
	font-size: 100%;
	font-weight: 500;
	color: var(--point-color01);
	margin-bottom: 5px;
}

/* .main_category .menu_list .info dt + dd{margin-top: 22px;} */
.main_category .menu_list .info dd {
	font-size: 70%;
	font-weight: 400;
	color: var(--black-color01);
	text-align: left;
	min-height: 37px;
	margin-right: 50px;
}

.main_category .menu_list .link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}

/* over */
@media screen and (max-width:1235px) {
	.main_category .menu_list .info dt {
		font-size: 80%;
	}

	.main_category .menu_list .info dd {
		font-size: 70%;
	}
}

@media screen and (max-width:1210px) {
	.main_category .menu_list dl.icon01 {
		background-size: auto;
	}

	.main_category .menu_list dl.icon02 {
		background-size: auto;
	}

	.main_category .menu_list dl.icon03 {
		background-size: auto;
	}

	.main_category .menu_list dl.icon04 {
		background-size: auto;
	}

	.main_category .menu_list dl.icon05 {
		background-size: auto;
	}

	.main_category .menu_list dl.icon06 {
		background-size: auto;
	}

	.main_category .menu_list .info dt {
		font-size: 100%;
	}

	.main_category .menu_list .info dd {
		font-size: 80%;
	}

}

@media screen and (min-width:1024px) {
	.main_category .menu_list>li:before {
		position: absolute;
		content: '';
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: 1px solid var(--point-color18);
		border-radius: 7px;
		box-sizing: border-box;
		opacity: 0;
		transition: all 0.4s;
	}

	.main_category .menu_list>li:hover {
		background: var(--point-color19);
		box-shadow: 0px 2px 23px rgba(0, 0, 0, 0.10);
		transform: translateY(-15px);
	}

	.main_category .menu_list>li:hover .info dt {
		color: var(--point-color04);
	}

	.main_category .menu_list>li:hover:before {
		opacity: 1;
	}
}

/* 공지사항 틀 */
.main_welfare {
	position: relative;
	padding: 85px 0 60px;
	box-sizing: border-box;
}

.main_welfare .bnr_list {
	display: flex;
	gap: 40px;
}

.main_welfare .bnr_list>li {
	position: relative;
	overflow: hidden;
	padding: 44px 50px 56px;
	box-sizing: border-box;
}

/* over */
@media screen and (min-width:1024px) {
	.main_welfare .more_btn span:hover {
		background: var(--black-color06);
		color: var(--point-white);
	}
}


/* 공지사항 */
.main_welfare .w_custom>ul {
	display: flex;
	justify-content: space-between;
}

.main_welfare .w_custom>ul>li {
	width: 45%;
	display: inline-block;
	margin-right: 4%;
}

.main_welfare .w_custom>ul>li:last-child {
	width: 51%;
	margin-right: 0;
	display: inline-block;
}

.main_welfare .main_title {
	display: flex;
	justify-content: space-between;
	margin-bottom: 26px;
	align-items: center;
	z-index: 5;
	position: absolute;
	top: -20px;
	width: 100%;
}

/* .main_welfare .main_title .link{display:inline-flex; align-items:center;} */
.main_welfare .main_title .link {
	position: absolute;
	right: 50px;
	top: 115px;
}

.main_welfare .all_more {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	background: var(--point-color17);
	border-radius: 100%;
	width: 42px;
	height: 42px;
}

.main_welfare .all_more:before {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	background: var(--point-color04);
	border-radius: 100%;
	opacity: 0;
	transition: all 0.4s;
}

.main_welfare .all_more span:before,
.main_welfare .all_more span:after {
	position: absolute;
	content: '';
	width: 2px;
	height: 18px;
	background: var(--point-white);
	top: 50%;
	left: 50%;
	margin-left: -1px;
	margin-top: -9px;
	transition: all 0.4s;
}

.main_welfare .all_more span:after {
	width: 18px;
	height: 2px;
	margin-left: -9px;
	margin-top: -1px;
}

.main_welfare .news {
	box-sizing: border-box;
	position: relative;
}

/* .main_welfare .news:has(+ .main_category){width:calc(100% - 125px);padding-right: 3.1vw;} */
.main_welfare .main_category {
	box-sizing: border-box;
}

.main_welfare .main_category .board_list {
	display: none;
}

.main_welfare .board_list {
	background-color: var(--point-color14);
	padding: 20px 40px 50px;
	box-sizing: border-box;
	border-radius: 10px;
	max-height: 406px;
}

.main_welfare .board_list>li {
	position: relative;
	display: flex;
	align-items: center;
	font-size: var(--title-18);
	padding: 15px 0 0px;
	box-sizing: border-box;
	transition: all 0.4s;
}

/* .main_welfare .board_list > li + li{border-top:1px solid var(--border-color03);} */
.main_welfare .board_list.all>li:nth-child(n+6) {
	display: none;
}

.main_welfare .board_list .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 30px;
	font-size: 80%;
	font-weight: 500;
	color: var(--point-white);
	background: var(--point-color06);
	border-radius: 15px;
}

.main_welfare .board_list .icon_point {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4px;
	height: 4px;
	background: var(--point-color04);
	border-radius: 5px;
}

.main_welfare .board_list .icon.yellow {
	background: var(--point-color07);
}

.main_welfare .board_list .icon.blue {
	background: var(--point-color08);
}

.main_welfare .board_list .icon.purple {
	background: var(--point-color09);
}

.main_welfare .board_list .info {
	display: inline-flex;
	width: calc(100% - 20px);
	padding-left: 15px;
	box-sizing: border-box;
	align-items: center;
}

.main_welfare .board_list .info dt {
	width: calc(100% - 100px);
	font-weight: 500;
	color: var(--black-color07);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 15px;
	box-sizing: border-box;
	letter-spacing: -0.04em;
}

.main_welfare .board_list .info dd {
	width: 100px;
	font-size: 90%;
	font-weight: 400;
	color: var(--black-color07);
	font-family: var(--font-type02, inherit);
	letter-spacing: -0.05em;
	text-align: right;
	padding-right: 9px;
	box-sizing: border-box;
}

.main_welfare .board_list .link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	font-size: 0;
}

.main_welfare .gallery_list {
	border: 1px solid var(--border-color01);
	padding: 20px 40px 5px;
	box-sizing: border-box;
	border-radius: 20px;
	height: calc(100% - 81px);
	transition: all 0.4s;
}

.main_content .main_welfare .gallery_list>li {
	text-align: center;
	box-shadow: none;
}

.main_content .main_welfare .gallery_list>li:not(:first-child) {
	display: none;
}

.main_content .main_welfare .gallery_list>li:before {
	display: none;
}

.main_welfare .gallery_list .thumb {
	width: 200px;
	border: 4px solid var(--border-color01);
	margin: 0 auto;
	padding-bottom: 274px;
}

.main_welfare .gallery_list .thumb+.info {
	margin-top: 30px;
}

.main_welfare .gallery_list .info dt {
	font-weight: 500;
}

.main_welfare .gallery_list .info dd {
	display: none;
}

.main_welfare .gallery_list .link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	font-size: 0;
}

/* 공지사항 내용 */
.main_welfare .notice {
	padding: 40px 0;
	margin-bottom: 20px;
	border-bottom: 1px solid;
	border-color: var(--border-color02);
}

.main_welfare .notice h3 {
	padding: 7px 12px;
	font-size: var(--title-17);
	font-weight: 500;
	color: var(--point-white);
	background: var(--point-color04);
	width: 63px;
	margin-bottom: 10px;
}

.main_welfare .notice h4 {
	font-size: var(--title-20);
	font-weight: 500;
	margin-bottom: 10px;
}

.main_welfare .notice li {
	font-size: 120%;
	font-weight: 400;
	line-height: 1.6;
	color: var(--black-color06);
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/* over */
@media screen and (max-width:1300px) {
	.main_welfare .notice {
		padding: 25px 0;
	}
}

@media screen and (max-width:1240px) {
	.main_welfare .w_custom>ul>li {
		margin-right: 2%;
	}

	.main_welfare .w_custom>ul>li:last-child {
		width: 53%;
	}
}

@media screen and (max-width:1210px) {
	.main_welfare .w_custom>ul {
		flex-direction: column;
	}

	.main_welfare .w_custom>ul>li {
		width: 100%;
		margin-right: 0;
	}

	.main_welfare .w_custom>ul>li:last-child {
		width: 100%;
		margin-top: 50px;
	}

	.main_welfare .main_title .link {
		top: 70px;
		right: 30px;
	}
}

@media screen and (min-width:1024px) {
	.main_welfare .board_list>li:hover {
		padding-left: 15px;
		padding-right: 15px;
	}

	.main_welfare .board_list>li:hover .info dt {
		color: var(--point-color01);
	}

	.main_welfare .all_more:hover:before {
		width: 100%;
		height: 100%;
		opacity: 1;
	}

	.main_welfare .all_more:hover span:before,
	.main_welfare .all_more:hover span:after {
		background: var(--point-white);
	}

	.main_welfare .tab_list>li:hover {
		color: var(--black-color03);
	}

	.main_welfare .gallery_list:hover {
		border-color: var(--black-color03);
	}
}


/* 사업 안내 */
.main_business {
	margin-top: 20px;
}

.main_business h3 {
	font-size: var(--title-20);
	font-weight: 500;
	letter-spacing: -1px;
	margin-bottom: 10px;
}

.main_business.main_category {
	background: var(--point-white);
	box-sizing: border-box;
	width: 100%;
}

.main_business .w_custom {
	display: flex;
	align-items: center;
	background: var(--point-white);
	box-shadow: 0px 0px 7px rgba(189, 189, 189, 0.8);
	border-radius: 10px;
	width: 100%;
}

.main_business .main_title {
	width: 24%;
}

.main_business .main_title img {
	vertical-align: text-top;
	transform: translateY(-18px);
}

.main_business .main_title h2+h6 {
	margin-top: 26px;
}

.main_business .main_title h6 {
	line-height: 1.33;
}

.main_business.main_category .menu_list {
	width: 100%;
	gap: 15px;
	padding: 22px 20px 11px 30px;
	display: inline-block;
}

.main_business.main_category .menu_list>li {
	background: var(--transparent);
	flex-wrap: wrap;
	width: 20%;
	text-align: left;
	padding-top: 5px;
	border-radius: 10px;
	box-shadow: none;
	padding-bottom: 40px;
}

.main_business.main_category .menu_list>li:last-child {
	background: var(--transparent);
	flex-wrap: wrap;
	width: 15%;
	border-radius: 10px;
	box-shadow: none;
	padding-bottom: 40px;
}

.main_business.main_category .menu_list .info {
	top: 0%;
	left: 0%;
	display: flex;
	width: auto;
	transform: none;
}

.main_business.main_category .menu_list .info dt {
	display: contents;
}

.main_business.main_category .menu_list .info dd {
	font-size: 90%;
	color: var(--black-color02);
	font-weight: 400;
	letter-spacing: -0.04em;
	min-height: auto;
	padding: 5px 0 0 5px;
}

/* over */
@media screen and (max-width: 1240px) {
	.main_business.main_category .menu_list>li {
		margin-right: 4%;
	}
}

@media screen and (max-width:1210px) {
	.main_business {
		margin-top: 30px;
	}

	.main_business.main_category .menu_list li:last-child {
		margin-top: auto;
	}
}

@media screen and (min-width:1024px) {
	.main_business.main_category .menu_list>li:before {
		position: absolute;
		content: '';
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 20px;
		box-sizing: border-box;
		opacity: 0;
		transition: all 0.4s;
		border: none;
	}

	.main_business.main_category .menu_list>li:hover {
		transform: translateY(-10px);
		background: var(--transparent);
	}

	.main_business.main_category .menu_list>li:hover .info dd {
		color: var(--point-color03);
	}

	.main_business.main_category .menu_list>li:hover:before {
		opacity: 1;
	}
}


/* 배너 */
.main_agency .w_custom {
	display: flex;
	align-items: center;
}

.main_agency .main_title {
	display: inline-flex;
	align-items: center;
	width: 320px;
}

.main_agency .main_title h6 {
	font-weight: 600;
	color: var(--black-color02);
}

.main_agency .controller {
	display: inline-flex;
	margin-left: 40px;
}

.main_agency .partnerSwiper {
	width: 100%;
	overflow: hidden;
}

.main_agency .partnerSwiper .swiper-slide {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-color03);
	height: 90px;
	border-radius: 10px;
	padding: 15px;
	box-sizing: border-box;
	pointer-events: inherit;
}


@media screen and (max-width:1600px) {

	.main_participation .partiSwiper_wrap,
	.main_share .shareSwiper_wrap {
		padding: 0 70px;
	}

	.main_participation .partiSwiper_wrap:before {
		left: 0;
	}

	.main_participation .swiper_arw,
	.main_share .swiper_arw {
		left: 0;
		right: auto;
	}

	.main_participation .swiper_arw.swiper-button-next,
	.main_share .swiper_arw.swiper-button-next {
		right: 0;
		left: auto;
	}

	.main_participation .partiSwiper .thumb {
		padding-bottom: 118%;
	}

	.main_share .shareSwiper .thumb {
		padding-bottom: 65%;
	}

	.main_share .shareSwiper_wrap:before {
		left: -5%;
		top: -8%;
	}

	.main_event:before {
		top: 30px;
		left: 15px;
	}
}

@media screen and (max-width:1417px) {
	.menu_list {
		gap: 30px;
	}

	.main_participation:before {
		width: 34vw;
		height: 34vw;
		border-width: 6.8vw;
		top: -12vw;
		right: 6vw;
	}

	.main_event .bnr_list {
		gap: 30px;
	}

	.main_agency .main_title {
		width: 300px;
	}

	.main_agency .controller {
		margin-left: 30px;
	}

	.main_agency .partnerSwiper {
		width: 100%;
	}
}

@media screen and (max-width:1200px) {
	.main_title h3 {
		font-size: 200%;
	}

	.menu_list {
		gap: 20px;
	}

	.main_welfare .notice {
		padding: 30px 0;
	}

	.main_welfare .tab_list>li {
		font-size: 100%;
	}

	.main_welfare .board_list {
		padding: 20px 40px 30px;
	}

	.main_welfare .board_list>li {
		padding: 10px 0 0px;
	}

	.main_event .bnr_list {
		gap: 20px;
	}

	.main_agency .main_title {
		width: 280px;
	}

	.main_agency .controller {
		margin-left: 25px;
	}

	/* .main_agency .partnerSwiper{width:calc(100% - 280px);} */

}

@media screen and (max-width:1100px) {
	.main_welfare .w_custom {
		display: block;
	}

	.main_welfare .news:has(+ .letter) {
		width: 100%;
		padding-right: 0;
	}

	.main_welfare .tab_cont {
		height: auto;
	}

	.main_welfare .letter {
		width: 100%;
		padding-top: 70px;
	}

	.main_welfare .gallery_list {
		height: auto;
		gap: 20px;
		padding: 35px;
	}

	.main_welfare .gallery_list>li {
		padding: 0;
		border-radius: 0;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.main_welfare .gallery_list .thumb {
		margin: 0;
	}

	.main_welfare .gallery_list .thumb+.info {
		margin-top: 0;
	}

	.main_welfare .gallery_list .info {
		padding-left: 27px;
		text-align: left;
		box-sizing: border-box;
	}

}

@media screen and (max-width:1023px) {
	.main_content .gallery_list>li {
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	}

	.menu_list {
		gap: 15px;
		flex-wrap: wrap;
	}

	.menu_list>li {
		width: calc(100% / 3 - 10px);
	}

	.main_welfare .main_title {
		margin-bottom: 20px;
	}

	/* .main_welfare .board_list{padding:15px 35px;} */
	.main_welfare .board_list .info {
		padding-left: 25px;
	}

	.main_welfare .gallery_list {
		gap: 15px;
	}

	.main_welfare .tab_list {
		gap: 20px;
		margin-right: 18px;
	}

	.main_participation .swiper_arw,
	.main_share .swiper_arw {
		width: 45px;
		height: 45px;
		margin-top: -22.5px;
	}

	.main_participation .partiSwiper_wrap,
	.main_share .shareSwiper_wrap {
		padding: 0 65px;
	}

	.main_share .tab_wrap {
		margin-top: 40px;
		position: relative;
		z-index: 3;
	}

	.main_share .tab_list>li {
		width: 150px;
	}

	.main_business .w_custom {
		display: block;
	}

	.main_business .main_title {
		width: 100%;
		margin-bottom: 30px;
	}

	.main_business .main_title h6 br {
		display: none;
	}

	.main_business.menu_list {
		width: 100%;
		gap: 15px;
	}

	.main_event .bnr_list {
		flex-wrap: wrap;
		gap: 15px;
	}

	.main_event .bnr_list>li {
		padding: 40px 45px 50px;
	}

	.main_event .more_btn span {
		width: 120px;
		height: 50px;
	}

	.main_agency .w_custom {
		display: block;
	}

	.main_agency .main_title {
		width: 100%;
	}

	/* .main_agency .partnerSwiper{width:100%; margin-top:30px;} */
}

@media screen and (max-width:860px) {
	.main_welfare .notice h3 {
		width: 55px;
	}

	.main_share:before {
		right: 7%;
		width: 50px;
		height: 50px;
		border-width: 25px;
	}

	.main_share .shareSwiper_wrap:before {
		top: -2%;
		width: 200px;
		height: 200px;
		border-width: 50px;
	}

	.main_share .tab_list>li {
		width: 130px;
		height: 55px;
	}

	.main_agency .partnerSwiper .swiper-slide {
		border-radius: 5px;
		height: 70px;
		padding: 10px;
	}
}

@media screen and (max-width:720px) {
	.main_business.main_category .menu_list {
		padding: 22px 20px 11px 20px;
	}
}

@media screen and (max-width:680px) {
	.main_category .menu_list>li {
		width: calc(95% / 2);
	}

	.main_business.main_category .menu_list>li {
		margin-right: 2%;
	}
}

@media screen and (max-width:640px) {
	#contents_wrap {
		padding: 0 0 40px;
	}

	.main_title .icon {
		height: 80px;
	}

	.main_title h2 {
		font-size: 250%;
	}

	.main_title .icon+h2 {
		margin-top: 20px;
	}

	.main_content .gallery_list>li {
		border-radius: 10px;
	}

	.main_content .gallery_list .thumb {
		border-radius: 10px;
	}

	.main_content .gallery_list .thumb+.info {
		margin-top: 13px;
	}

	.main_content .gallery_list .info dt+dd {
		margin-top: 8px;
	}

	.main_business h3 {
		font-size: var(--title-24);
	}

	/* .main_category{padding:50px 0 70px;} */
	.menu_list>li {
		padding-bottom: 31.37%;
		border-radius: 10px;
	}

	.menu_list .info {}

	/* .menu_list .info dt{height:50px;}
			.menu_list .info dt + dd{margin-top:18px;} */

	.main_welfare {
		padding: 75px 0 20px;
	}

	.main_welfare .main_title {
		display: block;
		margin-bottom: 15px;
	}

	.main_welfare .main_title .link {
		width: 100%;
		display: block;
	}

	.main_welfare .tab_list {
		width: 100%;
		margin-top: 15px;
		margin-right: 0;
	}

	.main_welfare .tab_list>li:before {
		width: 5px;
		height: 5px;
		right: auto;
		left: calc(100% + 4px);
	}

	.main_welfare .all_more {
		width: 40px;
		height: 40px;
		position: absolute;
		top: 0;
		right: 0;
	}

	.main_welfare .all_more span:before {
		height: 16px;
		margin-top: -8px;
	}

	.main_welfare .all_more span:after {
		width: 16px;
		margin-left: -8px;
	}

	/* .main_welfare .board_list{padding:15px 30px; border-radius:10px;} */
	/* .main_welfare .board_list > li{padding: 20px 0 15px;} */
	.main_welfare .board_list .icon {
		width: 70px;
		height: 28px;
	}

	.main_welfare .board_list .info {
		width: calc(100% - 70px);
		padding-left: 20px;
	}

	.main_welfare .board_list .info dt {
		width: calc(100% - 80px);
	}

	.main_welfare .board_list .info dd {
		width: 80px;
	}

	.main_welfare .letter {
		padding-top: 50px;
	}

	.main_welfare .gallery_list {
		border-radius: 10px;
		padding: 30px;
	}

	.main_welfare .gallery_list .thumb {
		border-width: 2px;
		width: 180px;
		padding-bottom: 250px;
	}

	.main_participation {
		padding: 100px 0 60px;
	}

	.main_participation .partiSwiper,
	.main_share .shareSwiper {
		padding: 40px 19.2vw;
		width: calc(100% + 30px);
		margin-left: -15px;
	}

	.main_participation .partiSwiper .swiper-slide {
		border-radius: 10px;
	}

	.main_participation .swiper_arw,
	.main_share .swiper_arw {
		width: 40px;
		height: 40px;
		margin-top: -20px;
		left: auto;
		right: calc(100% - 18vw);
	}

	.main_participation .swiper_arw.swiper-button-next,
	.main_share .swiper_arw.swiper-button-next {
		right: auto;
		left: calc(100% - 18vw);
	}

	.main_participation .partiSwiper_wrap,
	.main_share .shareSwiper_wrap {
		padding: 0;
	}

	#wrap .main_participation .swiper_arw:after,
	#wrap .main_share .swiper_arw:after {
		width: 7px;
		height: 11px;
		margin-top: -5.5px;
		margin-left: -3.5px;
	}

	.main_share {
		padding: 100px 0 30px;
	}

	.main_share:before {
		right: 4%;
		width: 40px;
		height: 40px;
		border-width: 20px;
	}

	.main_share .shareSwiper_wrap:before {
		top: -11%;
		width: 180px;
		height: 180px;
		border-width: 45px;
	}

	.main_share .tab_wrap {
		margin-top: 30px;
	}

	.main_share .tab_list>li {
		width: 120px;
		height: 50px;
	}

	.main_share .shareSwiper .swiper-slide:nth-child(2n) {
		transform: none;
	}

	/* .main_business.main_category{padding:40px 0;} */
	.main_business .main_title {
		margin-bottom: 25px;
	}

	.main_business .main_title img {
		width: 20px;
		transform: translateY(-10px);
	}

	.main_business.main_category .menu_list>li {
		width: 30%;
	}

	.main_event {
		padding: 100px 0;
	}

	.main_event:before {
		width: 50px;
		height: 74px;
		top: 20px;
	}

	.main_event .bnr_list>li {
		border-radius: 15px;
		padding: 30px 35px 45px;
	}

	.main_event .bnr_list>li:before {
		width: 260px;
		height: 200px;
	}

	.main_event .bnr_list>li:nth-child(2):before {
		width: 160px;
	}

	.main_event .more_btn {
		margin-top: 25px;
	}

	.main_event .more_btn span {
		width: 100px;
		height: 45px;
	}


	.main_agency .partnerSwiper {
		margin-top: 20px;
	}

	.main_agency .partnerSwiper .swiper-slide {
		border-radius: 5px;
		height: 60px;
		padding: 10px;
	}
}

@media screen and (max-width:479px) {
	.main_title h2 {
		font-size: 175%;
	}

	.main_title h3 {
		padding-left: 25px;
	}

	/* .main_title h3{font-size:143%;} */
	.main_title h4 {
		font-size: 125%;
	}

	.main_title h6 {
		font-size: 100%;
	}

	.main_title p {
		font-size: 90%;
	}

	.main_category .menu_list .info {
		left: 52%;
	}

	.main_category .menu_list dl.icon01 {
		background-position: right 15px bottom;
	}

	.main_category .menu_list dl.icon02 {
		background-position: right 15px bottom;
	}

	.main_category .menu_list dl.icon03 {
		background-position: right 15px bottom;
	}

	.main_category .menu_list dl.icon04 {
		background-position: right 15px bottom;
	}

	.main_category .menu_list dl.icon05 {
		background-position: right 15px bottom;
	}

	.main_category .menu_list dl.icon06 {
		background-position: right 15px bottom;
	}

	.main_content .gallery_list .info dt {
		font-size: 90%;
	}

	.main_content .gallery_list .info dd {
		font-size: 80%;
	}

	/* .main_category{padding: 30px 0 35px;} */
	.main_category .menu_list>li {
		width: calc(100%);
	}

	.main_category .menu_list .info dt {
		font-size: 110%;
		margin-top: 5px;
	}

	.main_category .menu_list .info dd {
		font-size: 100%;
		margin-top: 5px;
	}

	/* .menu_list .info dt{height:40px;} */
	.menu_list .info dd {
		font-size: 110%;
	}


	.main_welfare .tab_list>li {
		font-size: 90%;
	}

	.main_welfare .all_more {
		width: 21px;
		height: 21px;
		position: absolute;
		top: 3px;
		right: 0;
	}

	.main_welfare .all_more span:before {
		width: 1px;
		height: 9px;
		margin-top: -4.5px;
	}

	.main_welfare .all_more span:after {
		width: 9px;
		height: 1px;
		margin-left: -4.5px;
		margin-top: -0.5px;
	}

	/* .main_welfare{padding-bottom:70px;} */
	.main_welfare .board_list {
		padding: 15px 25px;
	}

	/* .main_welfare .board_list > li{padding:15px 0;} */
	.main_welfare .board_list .icon {
		width: 65px;
		height: 25px;
	}

	.main_welfare .board_list .info {
		width: calc(100% - 65px);
		padding-left: 15px;
	}

	.main_welfare .board_list .info dt {
		width: 100%;
		padding-right: 0;
		font-size: 100%;
	}

	.main_welfare .board_list .info dd {
		display: none;
	}

	.main_welfare .letter {
		padding-top: 40px;
	}

	.main_welfare .gallery_list .thumb {
		border-width: 2px;
		width: 27vw;
		padding-bottom: 47%;
	}

	.main_welfare .gallery_list {
		padding: 25px;
	}

	.main_participation,
	.main_share {
		padding: 70px 0 30px;
	}

	.main_participation .swiper_arw,
	.main_share .swiper_arw {
		width: 34px;
		height: 34px;
		margin-top: -17px;
		right: calc(100% - 17.2vw);
	}

	.main_participation .swiper_arw.swiper-button-next,
	.main_share .swiper_arw.swiper-button-next {
		left: calc(100% - 17.2vw);
	}

	.main_share .tab_list>li {
		width: 110px;
		height: 45px;
		font-size: 110%;
	}

	.main_event {
		padding: 70px 0;
	}

	.main_event .bnr_list>li {
		padding: 23px 25px 28px;
	}

	.main_event .bnr_list>li:before {
		width: 220px;
		top: -16px;
		right: -11%;
	}

	.main_event .bnr_list>li:nth-child(2):before {
		width: 120px;
		height: 140px;
	}

	.main_event .more_btn {
		margin-top: 20px;
	}

	.main_event .more_btn span {
		width: 90px;
		height: 40px;
		font-size: 95%;
	}
}

@media screen and (max-width:431px) {

	.menu_list,
	.main_business.menu_list {
		gap: 10px;
	}

	.menu_list>li {
		width: calc(100% / 3 - 6.67px);
		padding-bottom: 31.4%;
	}

	/* .menu_list .info dt{height:31px;}
			.menu_list .info dt + dd{margin-top:12px;}
		.menu_list .info dd, .main_business.menu_list .info dd{font-size:90%;} */

	/* .main_welfare .board_list > li{padding:12px 0 10px;} */
	.main_welfare .board_list .icon {}

	.main_share .tab_list {
		width: 100%;
	}

	.main_share .tab_list>li {
		width: 100%;
		height: 45px;
		font-size: 100%;
	}

	.main_business.menu_list .info dt {
		height: 37px;
	}

	.main_business.main_category .menu_list {
		width: 90%;
		padding: 22px 20px 11px 35px;
	}

	.main_business.main_category .menu_list>li {
		width: 45%;
	}
}

@media screen and (max-width:360px) {
	.main_welfare .board_list {
		padding: 15px 25px;
	}

	.main_welfare .gallery_list {
		padding: 25px;
	}
}