@charset "UTF-8";

:root {
	--base-c: #000;
	--point-pink: #e4477a;
	--point-pink-w: #ffeef3;
	--point-gre: #009966;
	--gray-c1: #616161;
	--gray-c2: #9E9E9E;
	--bg-light-gray: #f4f5f6;
	--size-title: 30px;
	--size-big: 24px;
	--size-s-big: 20px;
	--size-base: 18px;
	--size-sm: 16px; 
	--form-size: 17px;
	--btn-size: 17px;
}
button,
a {cursor:pointer;}

.sr-only,
.hidden,
.accessibility {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}


/* 상단바 */
.topbar .topbar_util ul li .topbar_link {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 15px;
}

.topbar .topbar_util ul li .topbar_link:hover {
	font-weight: bold;
}

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

/* 상단바 */
.topbar {
	background: var(--point-pink);
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.topbar .topbar_util {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
    display: flex;
    height: 100%;
    justify-content: space-between;
}

.topbar .topbar_util > ul > li .topbar_link {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 15px;
	padding:12px 5px;
}

.topbar .topbar_util > ul > li .topbar_link:hover {
	font-weight: bold;
}

.topbar .topbar_util > ul.left {
    background: #c7134d;
    gap: 0;
    padding: 0;
}
.topbar .topbar_util > ul.left li {
    display: flex;
    border-right: 1px solid #f26190;
}
.topbar .topbar_util > ul.left li .topbar_link {
    padding: 10px 20px;
}

.topbar .topbar_util > ul.left li .topbar_link.kakao {
    color: #fdff00;
}
.topbar .topbar_util > ul {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	padding: 0 20px;
}

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

/* ▼ 패밀리사이트 드롭다운 리스트 */
.family_menu {
	position: relative;
	display: flex;
}

.family_menu .list {
	display: none;
	position: absolute;
	top: 35px;
	left: 0;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	width: 240px;
	z-index: 100;
}

.family_menu .list li {
	padding: 0;
}

.family_menu .list li a {
	display: block;
	padding: 10px 16px;
	color: #333;
	text-decoration: none;
}

.family_menu .list li a:hover {
	background: #f2f2f2;
	color: #0064b0; 
}

.btn_normal {border:1px solid #ddd;padding:0 10px;font-size:17px;height:40px;border-radius: 5px;}
.btn_normal span {font-size:17px;font-family:'suit';color:#000;}
.xi-refresh {display: flex;align-items: center;gap:0;}
/* 헤더 */
.header {
	position: relative; 
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px 20px 20px;
} 

.header .header_logo {
	display: flex;
	align-items: center;
	gap: 15px;
}

.header .header_logo .header_logo_img {
	height: 50px;
	display: block;
}

@media screen and (max-width: 768px) {
	.header .header_logo .header_logo_img {
		height: 35px;
	}
}

.header .search {
	position: absolute;
	left: 50%;
	top: 15px;
	transform: translateX(-50%);
	width: 400px;
	max-width: 100%;
	flex: 1;
	margin: 0 40px;
	display: flex;
	align-items: center;
}

.header .search .search_input {
	flex: 1;
	height: 50px;
	border-radius: 30px;
	border: 1px solid #eee;
	padding: 0 20px;
	font-size: 16px;
	outline: none;
	background-color: #f4f5f6;
}

.header .search .search_btn {
	margin-left: -48px;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: #9E9E9E;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #fff;
}

.header .icon-menu {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 32px;
	color: #333;
}

.header .icon-menu ul {
	display: flex;
	gap: 20px;
	font-size: 17px;
}

.header .icon-menu ul li a.point {
	color: var(--point-pink);
	font-weight: bold;
}

.header .icon-menu .icon-menu_item {
	cursor: pointer;
}

.header .icon-menu button {
	font-size: 32px;
}

@media screen and (max-width: 1280px) {
	.header .search {
		width: 300px;
	}
}

@media screen and (max-width: 1024px) {
	.header .icon-menu {
		gap: 10px;
	}

	.header .icon-menu ul {
		display: none;
	}
}

/* 화살표 애니메이션 */
.arrow-animate {
	display: inline-block;
	margin-right: 8px;
	animation: arrowMove 0.7s infinite alternate;
}

@keyframes arrowMove {
	0% {
		transform: translateX(-2px);
	}

	100% {
		transform: translateX(5px);
	}
}

/* footer */
.footer {
	background: #FAFAFA;
	border-top: 1px solid #ddd;
	font-size: 14px;
	color: #555;
	/* 📱 반응형 */
}

.footer .footer_top {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.footer .footer_top .footer_logo img {
	height: 40px;
	display: block;
}

.footer .footer_top .footer_info {
	line-height: 1.6;
	color: #555;
}

.footer .footer_top .footer_info p {
	margin: 2px 0;
	font-size: 16px;
}

.footer .footer_top .link {
	display: flex;
	gap: 20px;
	flex: 1 1 auto;
}

.footer .footer_top .web_mark {
	margin-left: auto;
}

.footer .footer_bottom {
	padding: 15px 20px 15px 20px;
	border-bottom: 1px solid #ddd;
}

.footer .footer_bottom .contents {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 20px;
}

.footer .footer_bottom .footer_links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.footer .footer_bottom .footer_links li {
	list-style: none;
	position: relative;
}

.footer .footer_bottom .footer_links li:not(:last-child)::after {
	content: "|";
	margin-left: 12px;
	color: #ccc;
}

.footer .footer_bottom .footer_links li a {
	color: #000;
	text-decoration: none;
	font-size: var(--size-sm);
}

.footer .footer_bottom .footer_links li a b {
	color: #E44779;
}

.footer .footer_bottom .footer_links li a:hover {
	color: #d62d72;
}

.footer .footer_bottom .footer_selects {
	display: flex;
	gap: 10px;
}

.footer .footer_bottom .footer_selects select {
	border: 1px solid #ddd;
	border-radius: 6px;
	height: 40px;
	width: 140px;
	padding: 0 10px;
	font-size: 16px;
	color: #444;
	background: #fff;
	cursor: pointer;
}

.footer .footer_bottom .footer_selects select:hover {
	border-color: #aaa;
}

@media (max-width: 1280px) {
	.footer .footer_top {
		flex-wrap: wrap;
		padding: 20px 15px;
	}

	.footer .footer_bottom {
		padding: 0;
	}

	.footer .footer_bottom .contents {
		padding: 20px 20px;
	}
}

@media (max-width: 1024px) {
	.footer .footer_top {
		flex-direction: row;
		gap: 15px;
	}

	.footer .footer_top .footer_logo img {
		height: 35px;
	}

	.footer .footer_top .footer_info p {
		font-size: 15px;
	}

	.footer .footer_bottom .contents {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		justify-content: center;
		align-items: center;
		padding: 20px 0;
	}
}

@media (max-width: 768px) {
	.footer .footer_top {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		align-items: center;
	}

	.footer .footer_top .web_mark {
		margin-left: 0;
	}

	.footer .footer_bottom .contents {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		padding-top: 5px;
	}

	.footer .footer_links {
		gap: 8px;
	}

	.footer .footer_links li:not(:last-child)::after {
		margin-left: 8px;
	}

	.footer .footer_selects {
		width: 100%;
	}

	.footer .footer_selects select {
		flex: 1;
	}
}

@media (max-width: 640px) {
	.footer {
		font-size: 13px;
	}

	.footer .footer_top {
		padding: 15px 10px;
	}

	.footer .footer_top .footer_logo img {
		height: 30px;
	}

	.footer .footer_top .footer_info p {
		font-size: 14px;
	}

	.footer .footer_bottom {
		padding: 10px;
	}

	.footer .footer_bottom .footer_links {
		gap: 8px;
	}

	.footer .footer_bottom .footer_links li {
		width: calc((100% - 8px) / 2);
	}

	.footer .footer_bottom .footer_links li a {
		display: block;
		text-align: center;
		padding: 5px 0;
	}

	.footer .footer_bottom .footer_links li::after {
		display: none;
	}

	.footer .footer_bottom .footer_selects {
		flex-direction: column;
		gap: 8px;
		width: 100%;
	}

	.footer .footer_bottom .footer_selects select {
		width: 100%;
		padding: 10px;
	}

	.footer .footer_top .link {
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* GNB */

/* 하위 메뉴 */
/* 활성화 */
/* 반응형 */
@media (max-width: 1024px) {
	.header .search {
		display: none;
	}

	.gnb .gnb_list {
		gap: 30px;
	}
}

@media (max-width: 768px) {
	#wrap,
	.wrap {
		padding-top: 67px;
	}

	.header_wrap {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background-color: #fff;
		z-index: 999;
	}

	.header {
		align-items: center;
		gap: 10px;
		padding: 10px 10px;
	}

	.gnb .gnb_list {
		flex-wrap: wrap;
		gap: 20px;
	}
}

.sitemap_wrap {
	display: flex;
	width: 100%;
	min-height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: none;
	/* 반응형 */
}

.sitemap_wrap .sitemap_top_wrap ul {
	display: none;
}

.sitemap_wrap .btn_close {
	position: absolute;
	right: 50px;
	top: 35px;
	font-size: 30px;
}

.sitemap_wrap .sitemap_inner {
	display: flex;
	width: 100%;
	height: 100%;
}

.sitemap_wrap .sitemap_side {
	width: 350px;
	background: #fbe3ec url("../images/main/bg_slider.png") repeat;
	padding: 40px 20px;
}

.sitemap_wrap .sitemap_side .logo img {
	max-width: 250px;
	height: auto;
}

.sitemap_wrap .gnb_list .gnb_item {
	margin-bottom: 10px;
}

.sitemap_wrap .gnb_list .gnb_item .gnb_link {
	display: block;
	font-weight: bold;
	font-size: 23px;
	margin-bottom: 0;
	font-family: "JalnanOTF";
}

.sitemap_wrap .gnb_list .gnb_item .gnb_link i {
	display: none;
}

.sitemap_wrap .submenu_inner .submenu_left {
	display: none;
}

.sitemap_wrap .submenu_inner .submenu_group {
	gap: 50px;
}

.sitemap_wrap .submenu_inner .submenu_group .submenu_col {
	padding: 0;
	border: 0;
	flex: 0 0 21%;
}

.sitemap_wrap .submenu_inner .submenu_group .submenu_col .submenu_col-title:focus-within {
	background-color: #d62d72;
	color: #fff;
}

.sitemap_wrap .submenu_inner .submenu_group .submenu_col .submenu_list {
	padding: 0 10px;
}

.sitemap_wrap .submenu_inner .submenu_group .submenu_col .submenu_item {
	text-align: left;
}

.sitemap_wrap .sitemap_contents {
	flex: 1;
	padding: 40px 60px;
	height: 100%;
	overflow-y: auto;
}

.sitemap_wrap .sitemap_contents .menu_group {
	margin-bottom: 50px;
}

.sitemap_wrap .sitemap_contents .menu_group .menu_title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}

.sitemap_wrap .sitemap_contents .menu_group .menu_list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.sitemap_wrap .sitemap_contents .menu_group .menu_list > li {
	flex: 1 1 calc(25% - 20px);
	min-width: 200px;
}

.sitemap_wrap .sitemap_contents .menu_group .menu_list > li > a {
	display: block;
	padding: 10px 16px;
	font-size: 16px;
	font-weight: 600;
	background: #f5f5f5;
	border-radius: 6px;
	margin-bottom: 12px;
	text-decoration: none;
	color: #222;
	transition: 0.2s;
}

.sitemap_wrap .sitemap_contents .menu_group .menu_list > li > a.active,
.sitemap_wrap .sitemap_contents .menu_group .menu_list > li > a:hover {
	background: var(--point-pink);
	color: #fff;
}

.sitemap_wrap .sitemap_contents .menu_group .menu_list > li ul {
	padding-left: 10px;
}

.sitemap_wrap .sitemap_contents .menu_group .menu_list > li ul li a {
	display: block;
	font-size: 14px;
	color: #444;
	padding: 6px 0;
	text-decoration: none;
	transition: 0.2s;
}

.sitemap_wrap .sitemap_contents .menu_group .menu_list > li ul li a:hover {
	color: var(--point-pink);
}


.m_bottom_menu {
	display: none;
	position: fixed;
	z-index: 999;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.m_bottom_menu .btm_menu {
	display: flex;
}

.m_bottom_menu .btm_menu li {
	flex: 1 1 33%;
}

.m_bottom_menu .btm_menu li + li {
}

.m_bottom_menu .btm_menu li a {
	text-align: center;
	padding: 0 10px;
	background-color: #242a31;
	font-size: 15px;
	height: 50px;
	color: #fff;
	line-height: 1.2;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}

.m_bottom_menu .btm_menu li.menu_1 a {
	background: #097451;
}

.m_bottom_menu .btm_menu li.menu_3 a {
	background: #d3124f;
}

.m_bottom_menu .btm_menu li.menu_2 a {
    background: #efaf00;
    color: #5b0303;
}

@media (max-width: 1400px) {
	.sitemap_wrap .sitemap_side {
		width: 300px;
	}

	.sitemap_wrap .sitemap_contents {
		padding: 40px 30px;
	}

	.sitemap_wrap .submenu_inner .submenu_group {
		gap: 15px;
	}

	.sitemap_wrap .submenu_inner .submenu_group .submenu_col {
		flex: 0 0 24%;
	}

	.submenu_group .submenu_col .submenu_col-title {
		padding: 7px;
	}

	.submenu_group .submenu_col .submenu_list .submenu_item .submenu_link {
		font-size: 16px;
	}
}

@media (max-width: 1024px) {
	.service-container {
		/* display: none;
    position: absolute;
    z-index: 999;
    width: 100%;
    bottom: 60px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); */
	}

	.m_bottom_menu {
		display: block;
	}

	.sitemap_wrap {
		flex-direction: column;
		flex-direction: column;
		max-width: 480px;
		left: auto;
		border-left: 1px solid #ddd;
	}

	.sitemap_wrap .sitemap_side {
		width: 100%;
		justify-content: flex-start;
	}

	.sitemap_wrap .sitemap_contents {
		padding: 20px;
	}

	.sitemap_wrap .menu_group .menu_list {
		flex-direction: column;
	}

	.sitemap_wrap .menu_group .menu_list > li {
		flex: 1 1 100%;
	}
}

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

	.sitemap_wrap .sitemap_side {
		display: none;
	}

	.sitemap_wrap .sitemap_top_wrap {
		display: flex;
		padding: 10px;
		align-items: center;
		justify-content: end;
		gap: 25px;
		border-bottom: 1px solid #ddd;
		background-color: #f4f5f6;
	}

	.sitemap_wrap .sitemap_top_wrap ul {
		display: flex;
		gap: 15px;
		align-items: center;
	}

	.sitemap_wrap .sitemap_top_wrap ul li a {
		font-size: 15px;
	}

	.sitemap_wrap .sitemap_top_wrap ul li i {
		display: flex;
		gap: 5px;
		align-items: center;
	}

	.sitemap_wrap .sitemap_top_wrap ul li a.point {
		color: var(--point-pink);
		line-height: 1;
	}

	.sitemap_wrap .sitemap_top_wrap ul li a.point i {
		font-weight: bold;
	}

	.sitemap_wrap .btn_close {
		position: static;
		width: 36px;
		background: #000;
		color: #fff;
		border-radius: 5px;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 36px;
		font-size: 22px;
		font-weight: bold;
	}

	.sitemap_wrap .submenu_inner .submenu_group {
		flex-direction: column;
		background-color: #f4f5f6;
		gap: 0;
		padding-top: 0;
	}

	.sitemap_wrap .submenu_inner .submenu_group .submenu_col {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.sitemap_wrap .submenu_inner .submenu_group .submenu_col .submenu_col-title {
		border-top: 1px solid #ddd;
		text-align: left;
		margin: 0;
		padding: 10px 15px;
		font-size: 16px;
	}

	.sitemap_wrap .submenu_inner .submenu_group .submenu_col .submenu_list {
		border-top: 1px solid #ddd;
		background-color: #ecf0f3;
		padding: 10px 0;
	}

	.sitemap_wrap .submenu_inner .submenu_group .submenu_col .submenu_list .submenu_item {
		margin: 0;
	}

	.sitemap_wrap .submenu_inner .submenu_group .submenu_col .submenu_list .submenu_item .submenu_link {
		padding: 4px 20px;
		display: block;
		color: #000;
		font-size: 15px;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.sitemap_wrap .submenu_inner .submenu_group .submenu_col .submenu_list .submenu_item .submenu_link:before {
		content: "";
		width: 3px;
		height: 3px;
		flex: 0 0 3px;
		border-radius: 50%;
		background-color: #777;
	}

	.sitemap_wrap .gnb_list .gnb_item {
		margin-bottom: 0;
		border-bottom: 1px solid #ddd;
	}

	.sitemap_wrap .gnb_list .gnb_item .gnb_link {
		font-size: 17px;
		font-family: "SUIT", "Noto Sans KR", "Noto Sans", "AppleGothic", "맑은 고딕", "돋움", "dotum", Helvetica, Arial, sans-serif;
		margin-bottom: 0;
		padding: 12px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.sitemap_wrap .gnb_list .gnb_item .gnb_link.on {
		background-color: #d62d72;
		color: #fff;
		font-weight: bold;
	}

	.sitemap_wrap .gnb_list .gnb_item .gnb_link i {
		display: block;
	}

	.sitemap_wrap .gnb_list .gnb_item .submenu {
		display: none;
	}

	.sitemap_wrap .gnb_list .gnb_item .submenu .submenu_inner .submenu_group .submenu_col .submenu_col-title:focus-within {
		background-color: #f4f5f6;
		color: #000;
		font-weight: bold;
	}

	.sitemap_wrap .gnb_list .gnb_item .submenu .submenu_inner .submenu_group .submenu_col .submenu_list.on {
		display: block;
	}

	.sitemap_wrap .sitemap_contents {
		padding: 0;
		height: calc(100% - 60px);
	}
}

.event_wrap h2.title,
.main_edu_wrap .title,
.faq_wrap .faq_header .title {
	font-family: "JalnanOTF";
	font-size: 25px;
	font-weight: 800;
	color: #111;
}

.service-container {
	border-bottom: 1px solid #ddd;
	padding: 25px 0;
	background-color: #FAFAFA;
}

.service-container .contents {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.service-container .menu-button {
	background: #fff;
	border: 1px solid #ddd;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	cursor: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.main_edu_wrap .title {
	margin-bottom: 20px;
}

@media screen and (max-width: 1280px) {
	.service-container {
		padding: 20px
	}

	.service-container .menu-button {
		display: none;
	}
}

.service-container .service-item {
	text-align: center;
	color: #333;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.service-container .service-item a {}

.service-container .service-item img {
	display: block;
	margin: 0 auto 0.5rem;
	width: 64px;
}

.login_box {
	position: absolute;
	top: 50px;
	/* 필요시 조정 */
	right: 0;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	padding: 10px 15px;
	width: 160px;
	z-index: 999;
}

.login_box ul li {
	margin: 5px 0;
}

.login_box ul li a {
	display: block;
	color: #333;
	text-decoration: none;
}

.login_box ul li a:hover {
	color: var(--point-dark-color, #083891);
}

/* ==========================
          📱 반응형
     ========================== */
@media (max-width: 1024px) {
	.contents {
		gap: 1rem;
		justify-content: center;
	}

	.service-item {
		flex: 1 1 160px;
	}

	.service-item img {
		width: 56px;
	}

	.service-container .service-item {
		width: calc((100% - 72px) / 4);
		flex: 0 0 auto;
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.service-container .contents {
		flex-direction: row;
		justify-content: center;
		gap: 15px;
	}

	.service-container .service-item {
		width: calc((100% - 45px) / 4);
		flex: 0 0 auto;
		font-size: 15px;
		line-height: 1.2;
	}

	.service-container .service-item img {
		width: 50px;
		margin: 0 auto;
	}

	.menu-button {
		font-size: 14px;
		padding: 0.4rem 0.8rem;
	}
}

@media (max-width: 480px) {
	.service-container .contents {
		gap: 15px 10px;
		padding: 0 ;
		align-items: start;
	}

	.service-container .service-item {
		width: calc((100% - 30px) / 4);
		font-size: 14px;
		word-break: keep-all;
	}

	.service-container .service-item img {
		width: 48px;
	}

	.service-container .menu-button {
		width: 100%;
		justify-content: center;
	}
}

.main_banner {
	position: relative;
	background-color: #fdebf2;
	background-image: url(../images/main/bg_slider.png);
	padding: 20px 0 30px 0;
}

.main_banner .container {
	max-width: 1024px;
}

.main_banner .banner_slider {
	width: 1280px;
	max-width: 100%;
	margin: 0 auto;
}

.main_banner .banner_slider .banner_item {
	border-radius: 20px;
	overflow: hidden;
	padding: 20px;
	border-radius: 20px;
	width: 100%;
}

.main_banner .banner_slider .banner_item a {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	overflow: hidden;
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.main_banner .banner_slider .banner_item img {
	width: 100%;
	height: auto;
	max-height:500px;
	display: block;
	 opacity: 0; 
}

.main_banner .banner_control {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 15px;
}

.main_banner .banner_control button {
	border: none;
	background: transparent;
	font-size: 18px;
	width: 20px;
	cursor: pointer;
}

.main_banner .banner_control button.pause {
	font-size: 20px;
	margin-left: 6px;
}

.main_banner .banner_control .dots_wrap {
	display: flex;
	gap: 8px;
}

.main_banner .banner_control .dots_wrap .slick-dots {
	position: static;
	display: flex !important;
}

.main_banner .banner_control .dots_wrap .slick-dots li {
	list-style: none;
	width: auto;
}

.main_banner .banner_control .dots_wrap .slick-dots li button {
	border: none;
	opacity: 0.5;
	border-radius: 50%;
	padding: 0;
	cursor: pointer;
}

.main_banner .banner_control .dots_wrap .slick-dots li.slick-active button {
	width: 28px;
	border-radius: 10px;
	opacity: 1;
	text-decoration: underline;
}

/* =======================
        📱 반응형
     ======================= */
@media (max-width: 1199px) {
	.main_banner .banner_slider {
		width: 100%;
		padding: 0 20px;
	}

	.main_banner .banner_item {
		padding: 10px;
	}
}

@media (max-width: 991px) {
	.main_banner .banner_slider .banner_item {
		padding: 8px;
	}

	.main_banner .banner_slider .banner_item a {
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
	}

	.main_banner .banner_control {
		gap: 10px;
	}

	.main_banner .banner_control button {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.main_banner {
		background: transparent;
		padding: 10px 0;
	}

	.main_banner .container {
		padding: 0;
	}

	.main_banner .main_banner {
		padding: 10px 0 25px 0;
		background-size: cover;
	}

	.main_banner .banner_slider {
		width: 100%;
		padding: 0 10px;
	}

	.main_banner .banner_slider .banner_item {
		padding: 5px;
		border-radius: 12px;
	}

	.main_banner .banner_slider .banner_item a {
		border-radius: 12px;
		border: 1px solid #ddd;
	}

	.main_banner .banner_slider .banner_item img {
		border-radius: 12px;
	}

	.main_banner .banner_control {
		gap: 6px;
	}

	.main_banner .banner_control button {
		font-size: 18px;
	}

	.main_banner .banner_control .dots_wrap .slick-dots li.slick-active button {
		width: 22px;
	}
}

.faq_wrap {
	max-width: 1280px;
	margin: 30px auto;
	padding: 0 20px;
	/* 반응형 */
}

.faq_wrap .faq_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.faq_wrap {
		margin: 25px auto;
	}

	.faq_wrap .faq_header .title {
		font-size: 21px;
	}
}

.faq_wrap .faq_header .faq_control {
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq_wrap .faq_header .faq_control button {
	border: none;
	background: transparent;
	font-size: 18px;
	/* color: #d62d72; */
	cursor: pointer;
}

.faq_wrap .faq_header .faq_control button:focus {
	color: var(--point-pink);
}

.faq_wrap .faq_slider .slick-list {
	margin: 0 -12px;
}
.faq_wrap .faq_slider .slick-list .slick-track {margin:0;}
.faq_wrap .faq_slider .slick-slide {
	padding: 0 12px;
	box-sizing: border-box;
}

.faq_wrap .faq_slider .faq_item a {
	display: block;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 20px 25px;
	background: #f4f5f6;
	text-align: center;
	color: #333;
	height: 100px;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	word-break: keep-all;
}

.faq_wrap .faq_slider .faq_item a:hover {
	border: 2px solid #d62d72;
	color: #d62d72;
	background: #fff;
	font-weight: 600;
}

@media screen and (max-width: 768px) {
	.faq_wrap .faq_slider .faq_item a {
		height: 80px;
		font-size: 17px;
	}
}

@media (max-width: 991px) {
	.faq_wrap .faq_slider .faq_item {
		font-size: 15px;
		padding: 15px;
	}
}

@media (max-width: 600px) {
	.faq_wrap .faq_header {
		align-items: center;
		gap: 10px;
	}

	.faq_wrap .faq_slider .faq_item {
		font-size: 14px;
		padding: 0 10px;
	}
}

.notice_bar {
	display: none;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	width: 100%;
	/* 반응형 */
}

.notice_bar .notice_inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 15px 20px;
}

.notice_bar .notice_title {
	white-space: nowrap;
	font-family: "JalnanOTF";
	font-size: 25px;
	font-weight: 800;
	color: #111;
}

.notice_bar .notice_list {
	flex: 1;
	display: flex;
	gap: 40px;
	overflow: hidden;
}

.notice_bar .notice_list .notice_item {
	flex: 1;
	font-size: var(--size-base);
	color: #444;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.notice_bar .notice_list .notice_item:focus,
.notice_bar .notice_list .notice_item:hover {
	text-decoration: underline;
}

.notice_bar .notice_more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.notice_bar .notice_more:hover {
	color: #d62d72;
}

@media (max-width: 991px) {
	.notice_bar .notice_inner {
		flex-wrap: wrap;
		gap: 10px;
	}

	.notice_bar .notice_title {
		font-size: 21px;
	}

	.notice_bar .notice_list {
		gap: 20px;
	}

	.notice_bar .notice_list .notice_item {
		font-size: 17px;
		display: block;
		white-space: normal;
	}
}

@media (max-width: 600px) {
	.notice_bar .notice_inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.notice_bar .notice_list {
		flex-direction: column;
		gap: 8px;
		width: 100%;
	}

	.notice_bar .notice_more {
		align-self: flex-end;
		font-size: 15px;
	}
}

.location_selectbox {
	display: none;
	width: 100%;
	padding: 0 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
	background-color: #fff;
}

@media (max-width: 768px) {
	.location_list {display: none;}
	.location_selectbox {
		display: block;
	}
}

.main_edu_wrap .contents {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 20px 10px 20px;
}

.container .main_edu_wrap .contents {
	padding: 0;
}

@media screen and (max-width: 768px) {
	.main_edu_wrap .title {
		font-size: 21px;
	}

	.main_edu_wrap .contents {
		padding-top: 20px;
	}
}

.search_wrap {
	flex: 1 1 auto;
	background: #f4f5f6; 
	/* padding: 18px;
	margin: 20px 0 0 0; */
	/* border-radius: 10px;
	background: #f4f5f6; */
	/* 📱 반응형 */
}

@media screen and (max-width: 768px) {
	.search_wrap {
		padding: 10px;
		margin-top: 10px;
		border-radius:5px;
	}

	/* 	.search_wrap {
		padding: 0;
		border-top: 0;
		background: transparent;
		padding-bottom: 15px;
		border-bottom: 1px solid #ddd;
		border-radius: 0;
	} */
}

.search_wrap .search_box {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
}

.search_wrap .search_box .radio_form {
	display: flex;
	float: left;
	gap: 10px;
	align-items: center;
}

.search_wrap .search_box .select_box {

	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 0 40px 0 15px;
	color: #333;
	height: 43px;
	background: #fff;
	cursor: pointer;
}

.search_wrap .search_box .search_input {
	border: 1px solid #ddd;
	border-radius: 6px;
	height: 45px;
	padding: 10px 15px;
	color: #333;
	width: 460px;
	max-width:100%;
}

.search_wrap .search_box .search_input::-moz-placeholder {
	color: #aaa;
}

.search_wrap .search_box .search_input::placeholder {
	color: #aaa;
}

.search_wrap .search_box .btn_search {
	background: #111;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0 20px;
	font-weight: 600;
	cursor: pointer;
	font-size: 17px;
	line-height: 45px;
}

.search_wrap .search_box .btn_search:hover {
	background: #333;
}

.search_wrap .search_box .btn_detail {
	background: var(--point-gre);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0px 20px;
	font-weight: 500;
	cursor: pointer;
	width: auto;
	height: auto;
	font-size: 17px;
	line-height: 45px;
}

.search_wrap .search_box .btn_detail:hover {
	background: rgb(58.2442396313, 133.2557603687, 100.6036866359);
}

.search_wrap .keyword_wrap {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.search_wrap .keyword_wrap .keyword_box {
	width: 490px;
	max-width: 100%;
}

.search_wrap .keyword_wrap .keyword_title {
	background: #111;
	color: #fff;
	font-size: 16px;
	border-radius: 20px;
	padding: 5px 15px;
	white-space: nowrap;
}

.search_wrap .keyword_wrap a {
	font-size: 16px;
	color: #333;
	text-decoration: none;
}

.search_wrap .keyword_wrap a:hover {
	color: var(--point-pink);
}

@media (max-width: 768px) {
	.search_wrap .search_box {
		flex-wrap: wrap;
		gap: 10px;
	}

	.search_wrap .search_box .select_box,
	.search_wrap .search_box .search_input {
		flex: 1 1 auto;
		height: 38px;
		font-size: 15px;
	}

	.search_wrap .search_box .btn_search,
	.search_wrap .search_box .btn_detail {
		flex: 1 1 45%;
		font-size: 15px;
		padding: 6px;
        line-height: 27px;
	}

	.search_wrap .keyword_wrap {
		display: none;
	}
}

.course_tab_wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 17px 0;
	background: #fff;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	/* 📱 반응형 */
}

.course_tab_wrap .tab_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid var(--point-pink);
	background: #fff;
}

.course_tab_wrap .tab_header .tab_menu {
	display: flex;
	flex-wrap: wrap;
}

.course_tab_wrap .tab_header .tab_menu li {
	list-style: none;
	margin: 0;
}

.course_tab_wrap .tab_header .tab_menu li.active a.tabs_i1:before {
	background-image: url("/resource/images/icon/tabs01_on.png");
}

.course_tab_wrap .tab_header .tab_menu li.active a.tabs_i2:before {
	background-image: url("/resource/images/icon/tabs02_on.png");
}

.course_tab_wrap .tab_header .tab_menu li.active a.tabs_i3:before {
	background-image: url("/resource/images/icon/tabs03_on.png");
}

.course_tab_wrap .tab_header .tab_menu li.active a.tabs_i4:before {
	background-image: url("/resource/images/icon/tabs04_on.png");
}

.course_tab_wrap .tab_header .tab_menu li.active a.tabs_i1:before {
	background-image: url(/resource/images/icon/tabs01_on.png);
}

.course_tab_wrap .tab_header .tab_menu li a {
	display: flex;
	cursor:pointer;
	align-items: center;
	gap: 6px;
	padding: 12px 24px;
	font-weight: 500;
	border-radius: 10px 10px 0 0;
	background: #f9f9f9;
	color: #333;
	text-decoration: none;
	border: 1px solid #ddd;
	border-bottom: none;
	transition: all 0.2s ease;
}

.course_tab_wrap .tab_header .tab_menu li a.tabs_i1 {
	display: flex;
	align-items: center;
	gap: 5px;
}

.course_tab_wrap .tab_header .tab_menu li a.tabs_i1:before {
	content: "";
	width: 22px;
	height: 22px;
	background-image: url("/resource/images/icon/tabs01.png");
	background-repeat: no-repeat;
	background-position: center;
}

.course_tab_wrap .tab_header .tab_menu li a.tabs_i2 {
	display: flex;
	align-items: center;
	gap: 5px;
}

.course_tab_wrap .tab_header .tab_menu li a.tabs_i2:before {
	content: "";
	width: 22px;
	height: 22px;
	background-image: url("/resource/images/icon/tabs02.png");
	background-repeat: no-repeat;
	background-position: center;
}

.course_tab_wrap .tab_header .tab_menu li a.tabs_i3 {
	display: flex;
	align-items: center;
	gap: 5px;
}

.course_tab_wrap .tab_header .tab_menu li a.tabs_i3:before {
	content: "";
	width: 22px;
	height: 22px;
	background-image: url("/resource/images/icon/tabs03.png");
	background-repeat: no-repeat;
	background-position: center;
}

.course_tab_wrap .tab_header .tab_menu li a.tabs_i4 {
	display: flex;
	align-items: center;
	gap: 5px;
}

.course_tab_wrap .tab_header .tab_menu li a.tabs_i4:before {
	content: "";
	width: 22px;
	height: 22px;
	background-image: url("/resource/images/icon/tabs04.png");
	background-repeat: no-repeat;
	background-position: center;
}

.course_tab_wrap .tab_header .tab_menu li a i {
	color: var(--point-pink);
}

.course_tab_wrap .tab_header .tab_menu li a:hover {
	background: #f1f1f1;
}

.course_tab_wrap .tab_header .tab_menu li.active a {
	background: var(--point-pink);
	color: #fff;
	font-weight: 600;
	border-color: var(--point-pink);
}

.course_tab_wrap .tab_header .tab_menu li.active a i {
	color: #fff;
}

.tab_more {
    text-decoration: none;
    padding: 5px 5px 5px 15px;
    border-radius: 30px;
    font-size:17px; 
    border: 1px solid var(--point-pink); 
    font-weight: bold;
    display: flex; 
    align-items: center;
    gap: 10px; 
}

.tab_more:after {
content: "\e914";
    font-family: 'xeicon';
    font-size: 16px;
    display: flex; 
    width: 25px;  
    height: 25px;
    background:var(--point-pink);
    border-radius: 50%;
    color: #fff;
    justify-content: center;
    align-items: center;
  
}  
  
.tab_more:focus,
.tab_more:hover {
	color: var(--point-pink);
    border-color:  var(--point-pink);
}

.tab_more:focus:after,
.tab_more:hover:after {
	background : var(--point-pink);
}
.course_tab_wrap .tab_content {
	padding: 20px 0;
	min-height: 300px;
}

.course_tab_wrap .tab_content .tab_panel {
	display: none;
}

.course_tab_wrap .tab_content .tab_panel.active {
	display: block;
}

@media (max-width: 991px) {
	.course_tab_wrap .tab_header .tab_menu li a {
		padding: 10px 16px;
		font-size: 15px;
	}

	.course_tab_wrap .tab_header .tab_more {
		margin: 0;
		font-size: 16px;
	}
}

@media (max-width: 600px) {
	.course_tab_wrap {
		padding: 15px 0;
	}

	.course_tab_wrap .tab_content {
		padding-bottom: 10px;
		min-height: auto;
		padding-top: 0;
	}

	.course_tab_wrap .tab_header {
		padding-bottom: 10px;
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.course_tab_wrap .tab_header .tab_menu {
		width: 100%;
		justify-content: space-between;
		gap: 6px;
	}

	.course_tab_wrap .tab_header .tab_menu li {
		flex: 1 1 calc(50% - 6px);
		max-width: calc(50% - 6px);
	}

	.course_tab_wrap .tab_header .tab_menu li a {
		justify-content: center;
		font-size: 15px;
		padding: 8px 10px;
		border-radius: 6px;
		border: 1px solid #ddd;
	}

	.course_tab_wrap .tab_header .tab_more {
		align-self: flex-end;
		font-size: 15px;
	}
}

.category_wrap {
	margin: 20px 0;
	/* 📱 모바일에서는 탭 숨기고 셀렉트 보이기 */
}

.category_wrap select {display: none;}

.category_wrap .category_tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.category_wrap .category_tabs li {
	list-style: none;
}

.category_wrap .category_tabs button {
	padding: 8px 16px;
	border: 1px solid #ddd;
	border-radius: 20px;
	background: #f5f5f5;
	cursor: pointer;
	font-size: 17px;
	transition: all 0.2s ease;
}

.category_wrap .category_tabs button.active {
	background: var(--point-pink);
	color: #fff;
	border-color: var(--point-pink);
	font-weight: 600;
}

.category_wrap .category_tabs button:hover {
	background: var(--point-pink);
	color: #fff;
	border-color: var(--point-pink);
}

.category_wrap .category_select {
	display: none;
	width: 100%;
	padding: 0 10px;
	font-size: 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
}

@media (max-width: 768px) {
	.category_wrap .category_tabs {
		display: none;
	}

	.category_wrap .category_select {
		display: block;
	}
	.category_wrap select {display: block;}
}

/* 강좌목록 */




/* edu */
.edu_list_map {
	background-color: #E0F4FC;
	background-image: url(../images/main/bg_patten2.png);
	padding: 50px 0;
}

@media screen and (max-width: 960px) {
	.s2-left__map {
		width: 451px;
		margin: 0 auto;
		max-width: 100%;
	}
}

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

.edu_list_map .contents {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px;
}

.edu_list_map .contents h2.title {
	font-family: "JalnanOTF";
	font-size: 25px;
	font-weight: 800;
	color: #111;
	margin-bottom: 15px;
}

.edu_list_map .contents h2.title .exp {
	font-size: var(--size-base);
	font-family: 'SUIT';
	font-weight: 500;
	margin-left: 5px;
}

@media screen and (max-width: 768px) {
	.edu_list_map .contents h2.title {
		font-size: 21px;
	}

	.edu_list_map .contents h2.title .exp {
		font-size: 17px;
		display: inline-block;
	}
}

.new_lesson_wrap {
	display: flex;
	gap: 20px;
	/* 📱 반응형 */
}

.new_lesson_wrap .lesson_left {
	flex: 1;
	min-width: 470px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 15px;
	padding: 25px;
}

.new_lesson_wrap .lesson_info_box {
	flex: 2;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 15px;
	overflow: hidden;
}

.new_lesson_wrap .lesson_info_box .lesson_header {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	flex-wrap: wrap;
	border-bottom: 1px solid #eee;
}

.new_lesson_wrap .lesson_info_box .lesson_header h3 {
	font-size: 19px;
	font-family: "JalnanOTF";
	font-weight: 700;
	color: #757575;
}

.new_lesson_wrap .lesson_info_box .lesson_header h3 b {
	color: #000;
	font-size: 21px;
}

.new_lesson_wrap .lesson_info_box .lesson_header .tab_more {
	text-decoration: none;
	margin-left: auto;
}

.new_lesson_wrap .lesson_info_box .lesson_header .tab_more:hover {
}

@media screen and (max-width: 768px) {
	.new_lesson_wrap .lesson_info_box .lesson_header h3 {
		font-size: var(--size-sm);
	}

	.new_lesson_wrap .lesson_info_box .lesson_header .lesson_more {
		font-size: 15px;
	}
}

.new_lesson_wrap .lesson_info_box .lesson_content {
	display: flex;
	min-height: 300px;
}

@media screen and (max-width: 768px) {
	.new_lesson_wrap .lesson_info_box .lesson_content {
		flex-direction: column;
	}
}

.new_lesson_wrap .lesson_info_box .lesson_content h4 {
	font-size: var(--size-base);
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_org_list {
	flex: 0 0 220px;
	border-right: 1px solid #eee;
	padding: 15px;
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_org_list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_org_list ul li {
	padding: 10px 12px;
	color: #444;
	cursor: pointer;
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_org_list ul li:hover {
	background: #f5f5f5;
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_org_list ul li.active {
	color: var(--point-pink);
	font-weight: 600;
	border-bottom: 3px solid var(--point-pink);
	background: #fff;
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_org_list ul li .arrow {
	float: right;
	font-size: var(--size-sm);
}

@media screen and (max-width: 768px) {
	.new_lesson_wrap .lesson_info_box .lesson_content .lesson_org_list ul li {
	padding:7px 12px;}
	.new_lesson_wrap .lesson_info_box .lesson_content .lesson_org_list {
		flex: 0 0 auto;
		padding-bottom: 0;
	}

	.new_lesson_wrap .lesson_info_box .lesson_content .lesson_org_list ul {
		/* display: none; */
	}
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list {
	flex: 1;
	padding: 15px;
	overflow-y: auto;
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_scroll {
	height: 400px;
	overflow: auto;
}

@media screen and (max-width: 768px) {
	.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_scroll {
		height: 280px;
	}
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_item {
	background: #f5f5f5;
	border-radius: 8px;
	padding: 5px 14px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

@media screen and (max-width: 768px) {
	.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_item {
		padding: 6px 12px;
	}
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_item .title {
	color: #333;
	margin: 5px 0;
}

@media screen and (max-width: 768px) {
	.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_item .title a {
		font-size: 16px;
	}
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_item .status {
	font-size: 16px;
	padding: 4px 10px;
	border-radius: 6px;
	color: #fff;
	width: 80px;
	text-align: center;
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
	.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_item .status {
		font-size: 14px;
	}
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_item .status.ing {
	background: var(--point-pink);
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_item .status.wait {
	background: var(--point-gre);
}

.new_lesson_wrap .lesson_info_box .lesson_content .lesson_list .lesson_item .status.end {
	background: #777;
}

@media (max-width: 1024px) {
	.new_lesson_wrap .lesson_left {
		background-color: transparent;
		padding: 0;
		min-width: auto;
	}
}

@media (max-width: 991px) {
	.new_lesson_wrap {
		flex-direction: column;
	}
}

.view_toggle {
	display: flex;
	gap: 10px;
	max-width: 350px;
}

.view_toggle .btn_view {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: var(--size-base);
	font-weight: 600;
	padding: 12px 15px;
	border-radius: 10px;
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
}

.view_toggle .btn_view i {
	font-size: 18px;
}

.view_toggle .btn_view:hover {
	background: #f5f5f5;
}

.view_toggle .btn_view.active {
	background: var(--point-pink);
	color: #fff;
	border-color: var(--point-pink);
}

.view_toggle .btn_view.active i {
	color: #fff;
}

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

@media screen and (max-width: 768px) {
	.view_toggle .btn_view {
		padding: 10px;
		font-size: 15px;
	}

	.view_toggle .btn_view i {
		display: none;
	}
}

.news_program_wrap {
	padding: 60px 0 0 0;
}

.news_program_wrap .news_section {
	border-bottom: 1px solid #ddd;
}

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

@media screen and (max-width: 768px) {
	.event_wrap h2.title {
		font-size: 21px;
	}
}

.event_wrap .event_header {
	position: absolute;
	top: 0;
	right: 20px;
	display: flex;
	gap: 10px;
}

.event_wrap .event_header .event_controls button.btn_more {

	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/* .event_wrap .event_header .event_controls button.btn_more:hover {
	background: #f9f9f9;
  color: var(--point-pink);
  font-weight: bold;
} */
@media screen and (max-width: 768px) {
	.event_wrap .event_header {
		position: static;
		justify-content: center;
		margin-bottom: 15px;
		margin-top: 10px;
	}

	.event_wrap .event_header .event_controls button.btn_more {
		position: absolute;
		right: 10px;
		top: 0;
	}
}

/* 


.event_wrap .event_list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 24px;
	반응형
}

@media screen and (max-width: 768px) {
	.event_wrap .event_list {
		gap: 12px;
	}
}

.event_wrap .event_list .event_item {
	width: calc((100% - 96px) / 5);
}

.event_wrap .event_list .event_item a {
	text-decoration: none;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.event_wrap .event_list .event_item a:hover {
	text-decoration: underline;
}

.event_wrap .event_list .event_item a .thumb {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
}

.event_wrap .event_list .event_item a .thumb img {
	width: 100%;
	height: auto;
	display: block;
}


@media (max-width: 1280px) {
	.event_wrap .event_list .event_item {
		width: calc((100% - 72px) / 4);
	}
}

@media (max-width: 1024px) {
	.event_wrap .event_list .event_item {
		width: calc((100% - 48px) / 3);
	}
}

@media (max-width: 768px) {
	.event_wrap .event_list .event_list {
		gap: 12px;
	}

	.event_wrap .event_list .event_item {
		width: calc((100% - 12px) / 2);
	}

	.event_wrap .event_list .event_item a .title {
		font-size: 17px;
	}
}

@media (max-width: 330px) {
	.event_wrap .event_list .event_item {
		width: 100%;
	}
}

 */
/* new event */
.event_wrap {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
}
.event_wrap .slick-track {margin:0;}
.event_wrap .title {
	font-weight: 700;
	margin-bottom: 20px;
	padding: 0 20px;
	color: #222;
}

.event_wrap .event_header .event_controls {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 21px;
}

.event_wrap .event_header .event_controls button {
/* 	background: none;
	border: none;
	color: #333;
	cursor: pointer; */
}

.event_wrap .event_header .event_controls button.btn_pause {
	width: 35px;
}

.event_wrap .event_header .event_controls button i {
	font-size: 21px;
}

.event_wrap .event_header .event_controls .paging {
	font-size: 18px;
	color: #555;
}

.event_wrap .event_header .event_controls .paging .current {
	text-decoration: underline;
	font-weight: 600;
}

.event_wrap .event_header .event_controls .paging .total {
	color: #aaa;
}

/* .event_wrap .event_header .btn_more {
  border: none;
  background: none;
  font-size: 22px;
  color: #444;
  cursor: pointer;
}
.event_wrap .event_header .btn_more i {
  vertical-align: middle;
} */
.event_wrap .event_list .slick-list {
	/* margin-left:-20px;
margin-right:-20px; */
}

.event_wrap .event_list .event_item {
	padding: 0 20px;
}

.event_wrap .event_list .event_item a {
	display: block;
	text-align: center;
	color: #222;
	text-decoration: none;
}

.event_wrap .event_list .event_item a .thumb {
	border-radius: 10px;
	overflow: hidden;
}

.event_wrap .event_list .event_item a .thumb img {
	width: 100%;
	display: block;
	transition: transform 0.3s;
}

.event_wrap .event_list .event_item a .title {
	margin-top: 10px;
	margin-bottom: 0px;
	padding: 0;
	font-weight: 500;

	line-height: 1.4;
	color: #222;
}

.event_wrap .event_list .event_item a:hover img {
	transform: scale(1.05);
}

.event_wrap .slick-prev,
.event_wrap .slick-next {
	z-index: 2;
	width: 21px;
	height: 35px;
	/* background: rgba(0, 0, 0, 0.3); */
	border-radius: 50%;
	color: #333;
}

.event_wrap .slick-prev::before,
.event_wrap .slick-next::before {
	color: #fff;
	font-size: 18px;
}

.event_wrap .slick-prev {
	left: -40px;
}

.event_wrap .slick-next {
	right: -40px;
}

@media screen and (max-width:1350px) {
	.event_wrap .event_list .slick-list {
		margin: 0;
	}
}

@media screen and (max-width:640px) {
	.event_wrap .event_list .event_item {
		padding: 0 10px;
	}
}

@media screen and (max-width:330px) {
	.event_wrap .event_list .event_item {
		padding: 0 30px;
	}
}

/* news  */
.news_section {
	display: flex;
	align-items: start;
	gap: 30px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 30px 20px;
}

/* ----- 좌측 타이틀/탭 ----- */
.news_list_wrap {
	display: flex;
	gap: 30px;
}

.news_left {
	flex: 0 0 170px;
}

.news_left h2 {
	font-size: 26px;
	/* 제목 */
	font-weight: 800;
	font-family: "JalnanOTF";
	margin-bottom: 20px;
}

.news_tab ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news_tab li {
	margin-bottom: 10px;
}

.news_tab .tab_btn {
	display: inline-block;
	padding: 10px 20px;
	font-size: var(--size-base);
	border-radius: 50px;
	background: #f2f2f2;
	color: #555;
	text-decoration: none;
	position: relative;
	width: 100%;
	text-align: left;
	box-sizing: border-box;
}

.news_tab .tab_btn.active {
	background: var(--point-pink);
	color: #fff;
	font-weight: 700;
	padding-right: 35px;
}

.news_tab .tab_btn.active::after {
	content: "\e93f";
	/* xi-angle-right */
	font-family: xeicon !important;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 13px;
}

/* ----- 가운데 리스트 ----- */
.news_list {
    flex: 1;
    padding: 20px;
    display: flex;
}

.news_item {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.news_item + .news_item {
	border-left: 1px solid #ddd;
}

.news_item .cate {
	font-size: var(--size-sm);
	color: var(--point-pink);
	font-weight: bold;
	margin-bottom: 8px;
}

.news_item .subject {
	font-size: var(--size-base);
	margin: 0 0 10px;
	line-height: 1.4;
	font-weight: 700;
}

.news_item .subject:hover {
	text-decoration: underline;
}

.news_item .date {
	font-size: var(--size-sm);
	color: #666;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
}

.news_item .date i {
	font-size: var(--size-sm);
	color: #888;
}

/* ----- 오른쪽 배너 ----- */
.news_banner {
	position: relative;
	max-width: 310px;
	margin: 0 auto;
	display: block;
}

.news_banner .banner_slider2 {
	width:310px;
	overflow: hidden;
	border-radius: 10px;
}

.news_banner .banner_slider2 .banner_box img {
	width: 100%;
	display: block;
}

.news_banner .banner_controls {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	background: #000;
	color: #fff;
	border-radius: 20px;
	padding: 3px 15px;
	gap: 10px;
}

.news_banner .banner_controls .arrow {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 10px;
}

.news_banner .banner_controls button {
	background: none;
	border: none;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
	line-height: 1;
}

.news_banner .banner_controls button i {
	vertical-align: middle;
}

.news_banner .banner_dots {
	text-align: center;
	display: flex;
	white-space: nowrap;
}

.news_banner .banner_dots span {
	display: inline-block;
	width: 13px;
}

.news_banner .banner_dots ul {
	display: inline-flex;
	gap: 6px;
}

.news_banner .banner_dots ul li button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	border: none;
	text-indent: -9999px;
	overflow: hidden;
	cursor: pointer;
}

.news_banner .banner_dots ul li.slick-active button {
	background: #333;
}

/* ================== 반응형 ================== */
@media (max-width: 1280px) {
	.news_list {
		gap: 0;
	}

	.news_item {
		padding: 15px;
	}

	.news_list_wrap {
		flex-direction: column;
		gap: 0;
		flex: 1 1 78%;
	}

	.news_banner {
		order: 3;
		width: 310px;
		flex: 1;
		padding-top: 61px;
	}

	.news_tab ul {
		display: flex;
		gap: 10px;
	}

	.news_list {
		order: 2;
	}

	.news_left {
		order: 1;
		flex: 0 0 auto;
	}

	.news_item h4 {
		font-size: 17px;
	}
}

@media (max-width: 960px) {
	.news_list_wrap {
		flex: 1 1 100%;
		width: 100%;
	}

	.news_section,
	.news_list {
		flex-direction: column;
		gap: 0;
		padding:10px;
	}

	.news_item {
		border-left: none;
		border-top: 1px solid #ddd;
		padding: 10px 0;
		padding: 10px;
	}

	.news_item + .news_item {
		border-left: 0;
		border: 0;
	}

	.news_item {
		border-bottom: 1px solid #ddd !important;
	}

	.news_item:first-child {
		border-top: none;
	}

	.news_item .cate {
		margin-bottom: 0;
	}

	.news_left h2 {
		font-size: 22px;
	}

	.news_tab a {
		font-size: var(--size-sm);
		padding: 8px 16px;
	}

	.news_item .date,
	.news_item .cate {
		font-size: 15px;
	}

	.news_item h4 {
		font-size: var(--size-base);
	}

	.news_item .subject {
		font-size: var(--size-base);
	}

	.news_banner {
		width: 100%;
		padding-top: 0;
		max-width: 500px;
		margin: 24px auto 0 auto;
	}
	.news_banner .banner_slider2 {width:100%;}
}

@media (max-width: 768px) {
	.news_tab .tab_btn {font-size:16px;}
	.news_item {
		padding: 10px 0;
	}

	.news_item .subject {
		font-size: 17px;
		line-height: 1.3;
	}

	.news_banner .banner_controls .arrow {
		gap: 5px;
	}
}

@media (max-width: 340px) {
	.news_tab a {
		font-size: 14px;
		padding: 8px 12px;
	}
}

.board_search_wrap {
	display: flex;
	justify-content: end;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
	font-family: Pretendard, sans-serif;
}

@media (max-width: 768px) {
	.board_search_wrap {
		margin-bottom: 10px;
	}
}

.board_search_wrap .board_total {
	font-size: 16px;
	color: #333;
	display: flex;
	align-items: center;
	margin-right: auto;
	gap: 4px;
}

.board_search_wrap .board_total .select {
	border-radius: 6px;
	height: 40px;
	padding: 0 35px 0 10px;
	font-size: 16px;
	background: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	min-width: auto;
	display: inline-block;
	/* margin-left: 10px; */
	border: 1px solid #ddd;
}

.board_search_wrap .board_total strong {
	font-weight: 700;
	color: #000;
}

.board_search_wrap .board_total span {
	color: #777;
	margin-left: 4px;
}

.board_search_wrap .select_r {
	display: flex;
	gap: 10px;
}

.board_search_wrap .select_r .select {
	border-radius: 6px;
	height: 40px;
	padding: 0 35px 0 10px;
	font-size: 16px;
	background: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	min-width: auto;
	display: inline-block;
	border: 1px solid #ddd;
	/* border: 0; */
}

.board_search_wrap .select_r .input_text {
	border: 1px solid #ccc;
	border-radius: 6px;
	height: 40px;
	padding: 0 12px;
	font-size: 15px;
	width: 160px;
}

.board_search_wrap .select_r .btn_sort {
	border: 1px solid #ddd;
	height: 40px;
	padding: 0 13px;
	font-size: 14px;
	border-radius: 5px;
	transition: all 0.25s ease;
}

.board_search_wrap .select_r .btn_sort:hover {
	background-color: #f4f5f6;
}

.board_search_wrap .select_r .btn_sort.on {
	border-color: var(--point-gre);
	background-color: var(--point-gre);
	color: #fff;
}

.board_search_wrap .select_r .btn_search {
	height: 40px;
	padding: 0 20px;
	border-radius: 6px;
	background: #555;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
}

.board_search_wrap .search_box .btn_search:hover {
	background: #333;
}

/* 버튼형 체크박스 */
.btn_chk_area {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.btn_chk_area .chk_btn {
	position: relative;
}

.btn_chk_area .chk_btn input[type="checkbox"] {
	display: none;
}

.btn_chk_area .chk_btn label {
	display: inline-block;
	padding: 7px 12px;
	height: 40px;
	font-size: 16px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
	cursor: pointer;
	user-select: none;
    line-height: inherit;
	transition: all 0.25s ease;
}

.btn_chk_area .chk_btn label:hover {
	background: #f4f5f6;
}

.btn_chk_area .chk_btn input[type="checkbox"]:checked + label {
	background: var(--point-pink);
	color: #fff;
	border-color: var(--point-pink);
}

.btn_chk_area .chk_btn input[type="checkbox"]:focus + label {
	outline: 2px solid var(--point-pink);
	outline-offset: 2px;
}


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

	.btn_chk_area .chk_btn label {
		padding: 5px 10px;
		height: auto;
	}

	.board_search_wrap {
		justify-content: center;
		gap: 10px;
	}

	.board_search_wrap .select_r .btn_sort {
		height: 35px;
	}

	.board_search_wrap .select_r {
		margin-left: auto;
	}
}

@media screen and (max-width:768px) {
	.board_search_wrap .board_total {
		font-size: 14px;
	}

	.board_search_wrap .board_total .select,
	.board_search_wrap .select_r .select {
		height: 35px;
		font-size: 15px;
		margin-left:0;
		padding-right:20px;
	}
}

@media screen and (max-width:336px) {
	.btn_chk_area .chk_btn label {
		padding: 5px 7px;
	}

	.board_search_wrap .select_r .btn_sort {
		height: 35px;
		padding: 0 10px;
	}

}

.keyword_area {
	position: relative;
	display: flex;
	align-items: center;
	width: 520px;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.search_input {
	flex: 1;
	height: 48px;
	border: none;
	outline: none;
	font-size: 16px;
	padding: 0 15px;
	background: transparent;
}

/* -----------------------------
   keyword-help 기본 상태
----------------------------- */
.keyword-help {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	/* font-size: 15px; */
	color: #555;
	transition: all 0.25s ease;
	opacity: 1;
	font-weight: bold;
}
.keyword-help.active {display: none;}

/* input 클릭 시(포커스) 위로 사라지게 */
.keyword_area.active .keyword-help {
	transform: translateY(-120%);
	opacity: 0;
}

/* 색상 강조 */
.keyword-help em.c1 {
	color: #e94b6b;
	font-style: normal;
}

.keyword-help em.c2 {
	color: #222;
	font-style: normal;
}

@media screen and (max-width:768px) {
	.keyword-help {
		font-size: 14px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		width: 90%;
	}
}

/* -----------------------------
   버튼 영역
----------------------------- */

.select_block {
	position: relative;
	display: inline-block;
}

.select_block select {
	appearance: none;
	/* 기본 화살표 제거 */
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 10px 40px 10px 12px;
	/* 오른쪽 여백 확보 */
	font-size: 16px;
	height: 42px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	color: #333;
}

/* XEIcon 화살표 */
.select_block .xi-angle-down {
	position: absolute;
	right: 10px;
	/* ← 화살표 왼쪽 이동은 이 값을 줄이면 됨 */
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #555;
	pointer-events: none;
	/* 클릭 방지 */
}

@media (max-width:768px) {
.select_block .xi-angle-down {
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}
}
