@charset "UTF-8";

:root {
	--base-c: #000;
	--point-pink: #E96590;
	--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;
}

img {
	max-width: 100%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--base-c);
}

button {
	border: 0;
	background-color: transparent;
	cursor: pointer;
    font-family: SUIT, sans-serif;
}

.hide {
	text-indent: -99999px;
	font-size: 0;
	height: 0;
	opacity: 0;
}


.clear {
	clear: both;
}

.clearfix {
	display: block;
}

.clearfix:before,
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.skip {
	position: relative;
}

.skip a {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 2px;
	height: 2px;
	text-align: center;
	font-size: 1.3em;
	font-weight: normal;
	overflow: hidden;
}

.skip a:hover,
.skip a:focus,
.skip a:active {
	width: 250px;
	height: auto;
	opacity: 1;
	z-index: 5000000;
	top: 0;
	left: 0;
	padding: 15px 0;
	color: #fff;
	background: #1d60a7;
	line-height: 1;
	transform: translateY(0);
}

.map-skip a {
	display: inline-block;
	width: 250px;
	height: 1px;
	overflow: hidden;
	text-align: center;
	font-size: 1.3em;
	font-weight: normal;
	opacity: 0;
}

.map-skip a:hover,
.map-skip a:focus,
.map-skip a:active {
	height: auto;
	padding: 15px 21px;
	margin-top: 20px;
	color: #fff;
	background: #1d60a7;
	line-height: 1;
	opacity: 1;
}

/* 헤더 */
.header {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 20px 0;
}

.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 .icon-menu_item {
	cursor: pointer;
}

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

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

/* 화살표 애니메이션 */
.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 .web_mark {
	margin-left: auto;
}

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

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

.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: #555;
	text-decoration: none;
}

.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;
	padding: 5px 10px;
	font-size: 16px;
	color: #444;
	background: #fff;
	cursor: pointer;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

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

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

	.footer .footer_bottom {
		padding: 15px;
	}
}

@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;
	}
}

@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: flex-start;
		gap: 15px;
	}

	.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: 480px) {
	.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%;
	}
}

/* GNB */


.gnb {
	position: relative;
	padding: 0 20px 10px 20px;
	border-bottom: 1px solid #eee;
	position: relative;
}

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

.gnb .gnb_wrap {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gnb .gnb_wrap .guide {
	cursor: auto;
	border: 1px solid #ddd;
	padding: 6px 20px;
	border-radius: 30px;
	display: flex;
	gap: 10px;
	line-height: 1;
	align-items: center;
}

.gnb .gnb_wrap .guide.imp {
	padding: 8px 30px;
	border-radius: 30px;
	display: flex;
	gap: 10px;
	line-height: 1;
	align-items: center;
	font-size: 19px;
	font-weight: bold;
	background: #111;
	color: #fff;
}

.gnb .gnb_list {
	padding: 0 0 10px 0;
	max-width: none;
	display: flex;
	justify-content: end;
	gap: 60px;
	list-style: none;
}

.gnb .gnb_list .gnb_item .gnb_link {
	text-decoration: none;
	color: #222;
	font-size: 21px;
	padding: 10px 0;
	display: block;
	font-weight: bold;
}

i span {font-family: SUIT, sans-serif !important;
    font-weight: 500;}

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

.gnb .gnb_list .gnb_item.actives .gnb_link,
.gnb .gnb_list .gnb_item .gnb_link:hover {
	color: #e4477a;
}

.gnb .gnb_list .gnb_item .submenu {
	display: none;
	overflow: hidden;
	max-height: 0;
	height: 0;
	overflow: hidden;
	/* transition: max-height 0.4s ease; */
	position: absolute;
	left: 0;
	top: 98%;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #ddd;
	z-index: 100;
	border-top: 1px solid #ddd;
}

.gnb .gnb_list .gnb_item .submenu .submenu_inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	gap: 15px;
	padding: 0;
}

.gnb .gnb_list .gnb_item .submenu .submenu_inner .submenu_left {
	flex: 0 0 260px;
	border-right: 1px solid #eee;
	padding: 20px 20px;
	background-image: url(https://lifestudy.yangcheon.go.kr/static/lifeStudy/img/gnb-sub-nav-deco.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-size: 148px 161px;
	background-position: 126px calc(100% - 20px);
}

.gnb .gnb_list .gnb_item .submenu .submenu_inner .submenu_left .submenu_title {
	font-size: 28px;
	font-weight: 900;
	margin-bottom: 12px;
	line-height: 1.2;
}

.gnb .gnb_list .gnb_item .submenu .submenu_inner .submenu_left .submenu_desc {
	font-size: 16px;
	color: #666;
	line-height: 1.5;
}

.gnb .gnb_list .gnb_item.actives .submenu {
	display: block;
	max-height: 500px;
	height: auto;
}


.submenu_group .submenu_col .submenu_list .submenu_item .submenu_link:hover {
	color: #f04486;
	text-decoration: underline;
}


.submenu_group {
	flex: 1;
	display: flex;
	padding: 20px 0;
}

.submenu_group .submenu_col {
	flex: 1;
	border-right: 1px solid #eee;
	padding: 0 20px;
	max-width: 252px;
}

.submenu_group .submenu_col:last-child {
	border-right: none;
}

.submenu_group .submenu_col .submenu_col-title {
	display: block;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 12px;
	background: #f4f5f6;
	padding: 10px 10px;
	border-radius: 4px;
	text-align: center;
}

.submenu_group .submenu_col .submenu_list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.submenu_group .submenu_col .submenu_list .submenu_item {
	margin-bottom: 8px;
	text-align: center;
}

.submenu_group .submenu_col .submenu_list .submenu_item .submenu_link {
	text-decoration: none;
	color: #555;
}

.submenu_group .submenu_col .submenu_list .submenu_item .submenu_link:hover {
	color: #e4477a;
	text-decoration: underline;
}

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

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

@media (max-width: 768px) {
	.header {
		align-items: flex-start;
		gap: 10px;
		padding: 20px 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: #e4477a;
	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: #e4477a;
}

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

	.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: 10px;
		align-items: center;
	}

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

	.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);
	}
}
