@charset "utf-8";

/* sec01 */
#container .main section.n01 .swiper .bg {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
#container .main section.n01 .swiper .box {
	height: 800px;
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 60px;
}
#container .main section.n01 .swiper .box .content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
}
#container .main section.n01 .swiper .box .content .tag {
	background: url('../img/common/frame_msg1.png') no-repeat;
	background-size: 100%;
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	padding: 19px 25px;
	margin-bottom: 10px;
}
#container .main section.n01 .swiper .box .content .title {
	font-size: 86px;
	font-weight: bold;
	color: #fff;
}
#container .main section.n01 .swiper .box .content .desc {
	font-size: 20px;
	color: #fff;
	margin: 50px 0;
}
#container .main section.n01 .swiper .box .content .link {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	border-bottom: 2px solid #fff;
	padding-bottom: 3px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
#container .main section.n01 .swiper .box .content .link::after {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	transform: translate3d(-102%, 0, 0);
	content: "";
	display: block;
	height: 100%;
	background-color: #90b722;
	z-index: -1;
}
#container .main section.n01 .swiper .box .content .link:hover::after {
	-webkit-animation: underline-both 1s ease;
	animation: underline-both 1s ease;
}
#container .main section.n01 .swiper .controll {
	position: relative;
}

#visual .swiper-pagination {
	text-align: left;
	bottom: 60px;
}
#visual .swiper-pagination-bullet {
	width: 30px;
	height: 6px;
	background-color: #fff;
	border-radius: 3px;
	opacity: 0.4;
}
#visual .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}

/* sec02 */
#container .main section.n02 {
	padding: 150px 0;
	background-color: #F7FCE9;
}
#container .main section.n02 .title {
	font-size: 42px;
	font-weight: bold;
	text-align: center;
}
#container .main section.n02 .grd {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
#container .main section.n02 .grd .box {
	display: flex;
	flex: 1;
	width: 100%;
	height: 340px;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 20px;
	text-align: center;
	position: relative;
}
#container .main section.n02 .grd .box::before {
	content: '';
	position: absolute;
	top: 0;
	right: -15px;
	width: 1px;
	height: 100%;
	background-color: #90B722;
}
#container .main section.n02 .grd .box:last-child::before {
	display: none;
}
#container .main section.n02 .grd .box .name {
	color: #1FA490;
	font-size: 56px;
	font-weight: bold;
}
#container .main section.n02 .grd .box .msg {
	font-size: 24px;
	margin-top: 25px;
}
#container .main section.n02 .grd .box .link a {
	display: inline-block;
	width: 136px;
	height: 62px;
	line-height: 62px;
	background-image: url('../img/main/btn_frame_01.png');
	background-repeat: no-repeat;
	background-position: center;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}
#container .main section.n02 .grd .box .link a:hover,
#container .main section.n02 .grd .box .link a:focus {
	background-image: url('../img/main/btn_frame_01_ov.png');
}
#container .main section.n02 .qna {
	margin-top: 100px;
	border-radius: 30px;
	padding: 25px 60px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	background-color: #fff;
}
#container .main section.n02 .qna p {
	font-size: 26px;
}
#container .main section.n02 .qna a {
	display: inline-block;
	width: 200px;
	height: auto;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background-color: #1FA490;
	padding: 20px;
	border-radius: 20px;
}
#container .main section.n02 .qna a:hover,
#container .main section.n02 .qna a:focus {
	background-color: #127465;
}

/* sec03 */
#container .main section.n03 {
	background-color: #FBFBFF;
}
#container .main section.n03 .box {
	padding-top: 120px;
	padding-bottom: 65px;
}
#container .main section.n03 .title {
	font-size: 42px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 85px;
}
#container .main section.n03 .comp {
	display: grid;
	grid-template-columns: 300px 1fr;
	align-items: start;
	border-bottom: 1px solid #D2D2FF;
	margin-bottom: 80px;
	padding-bottom: 80px;
}
#container .main section.n03 .comp:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
#container .main section.n03 .comp > p {
	font-size: 20px;
	font-weight: bold;
	padding: 15px 0;
}
#container .main section.n03 .comp > p i {
	display: inline-block;
	width: 50px;
	height: 50px;
	vertical-align: middle;
	background-repeat: no-repeat;
	margin-right: 20px;
}
#container .main section.n03 .comp > p i.icon1 {
	background-image: url('../img/main/ic_university.png');
}
#container .main section.n03 .comp > p i.icon2 {
	background-image: url('../img/main/ic_organization.png');
}
#container .main section.n03 .comp > p i.icon3 {
	background-image: url('../img/main/ic_parliament.png');
}
#container .main section.n03 .comp > ul {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	align-items: center;
}
#container .main section.n03 .comp a {
	display: block;
	height: 100%;
	position: relative;
	overflow: hidden;
	padding-bottom: 10px;
}
#container .main section.n03 .comp a::after {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	transform: translate3d(-102%, 0, 0);
	content: "";
	display: block;
	height: 1px;
	background-color: #1FA490;
}
#container .main section.n03 .comp a:hover::after {
	-webkit-animation: underline-both 1s ease;
	animation: underline-both 1s ease;
}

/* sec04 */
#container .main section.n04 {
	margin-top: 100px;
	margin-bottom: 160px;
}
#container .main section.n04 a:hover,
#container .main section.n04 a:focus {
	color: #1FA490;
}
#container .main section.n04 .btitle {
	color: #000;
	font-size: 38px;
	font-weight: bold;
	position: relative;
	display: block;
}
#container .main section.n04 .btitle::after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	right: 0;
	width: 40px;
	height: 40px;
	background: url('../img/main/ic_arrow_right.png') no-repeat;
}
#container .main section.n04 .bbs1 {
	border-top: 2px solid #000;
	border-bottom: 1px solid #999;
	display: grid;
	grid-template-columns: 200px 1fr 340px;
	align-items: center;
	column-gap: 50px;
	padding: 20px;
	margin-top: 80px;
}
#container .main section.n04 .bbs1 .date {
	text-align: center;
	position: relative;
}
#container .main section.n04 .bbs1 .date::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #000;
	display: block;
}
#container .main section.n04 .bbs1 .date .d {
	display: block;
	font-size: 50px;
	font-weight: bold;
}
#container .main section.n04 .bbs1 .date .ym {
	display: block;
	font-size: 15px;
	color: #999999;
}
#container .main section.n04 .bbs1 .content {
	overflow: hidden;
	width: 100%;
	height: auto;
}
#container .main section.n04 .bbs1 .content .title {
	font-size: 26px;
}
#container .main section.n04 .bbs1 .content .desc {
	font-size: 18px;
	color: #666666;
	margin-top: 15px;
}
#container .main section.n04 .bbs1 .thumb {
	display: block;
	width: 100%;
	height: 190px;
	overflow: hidden;
	background-color: #ddd;
}
#container .main section.n04 .bbs1 .empty {
	font-size: 20px;
	text-align: center;
	display: grid;
	grid-column-start: 1;
	grid-column-end: 4;
}
#container .main section.n04 .group {
	display: grid;
	grid-template-columns: 1fr 2px 500px;
	column-gap: 7%;
}
#container .main section.n04 .group .line {
	width: 2px;
	height: 100%;
	background-color: #000;
}
#container .main section.n04 .group .btitle {
	margin-top: 120px;
}
#container .main section.n04 .group .bbs2 {
	width: 100%;
	overflow: hidden;
}
#container .main section.n04 .group .bbs2 .list {
	margin-top: 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
#container .main section.n04 .group .bbs2 .list .item {
	width: 100%;
	max-width: 368px;
}
#container .main section.n04 .group .bbs2 .list .item .thumb {
	display: block;
	width: 100%;
	height: 368px;
	overflow: hidden;
	background-color: #ddd;
}
#container .main section.n04 .group .bbs2 .list .item .title {
	font-size: 22px;
	margin-top: 30px;
}
#container .main section.n04 .group .bbs2 .list .item .desc {
	font-size: 18px;
	color: #666666;
	margin-top: 30px;
}
#container .main section.n04 .group .bbs2 .list .item .date {
	font-size: 15px;
	color: #999;
	margin-top: 40px;
}
#container .main section.n04 .group .bbs2 .empty {
	font-size: 20px;
}
#container .main section.n04 .group .bbs3 {
	width: 100%;
	overflow: hidden;
}
#container .main section.n04 .group .bbs3 .item {
	margin-top: 80px;
}
#container .main section.n04 .group .bbs3 .item .thumb {
	display: block;
	width: 500px;
	height: 640px;
	overflow: hidden;
	background-color: #ddd;
}
#container .main section.n04 .group .bbs3 .item .title {
	font-size: 30px;
	margin-top: 30px;
}
#container .main section.n04 .group .bbs3 .item .date {
	font-size: 15px;
	color: #999999;
	margin-top: 40px;
}
#container .main section.n04 .group .bbs3 .empty {
	font-size: 20px;
	margin-top: 80px;
}
#container .main section.n04 .cuttitle {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#container .main section.n04 .cutdesc {
	white-space: normal;
	line-height: 1.2;
	height: 2.5em;
	text-align: left;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 애니메이션 */
@-webkit-keyframes underline-both {
	to {
		transform: translate3d(101%, 0, 0);
	}
}
@keyframes underline-both {
	to {
		transform: translate3d(101%, 0, 0);
	}
}

/* 반응형 */
@media screen and (max-width: 1000px) {
	/* sec01 */
	#container .main section.n01 .swiper .box .content .tag {
		background-size: 100% 100%;
		font-size: 17px;
		padding: 17px;
	}
	#container .main section.n01 .swiper .box .content .title {
		font-size: 12vw;
	}
	#container .main section.n01 .swiper .box .content .desc {
		font-size: 4vw;
		margin: 25px 0;
	}
	#container .main section.n01 .swiper .box {
		height: 450px;
	}
	#container .main section.n01 .swiper .box2 {
		padding: 0 15px;
	}

	#visual .swiper-pagination {
		text-align: center;
		bottom: 20px;
	}

	/* sec02 */
	#container .main section.n02 {
		padding: 100px 0;
	}
	#container .main section.n02 .grd {
		margin-top: 70px;
	}
	#container .main section.n02 .title {
		font-size: 5.5vw;
	}
	#container .main section.n02 .grd .box {
		flex: none;
		height: max-content;
	}
	#container .main section.n02 .grd .box::before {
		width: 100%;
		height: 1px;
		left: 0;
		top: inherit;
		bottom: -15px;
	}
	#container .main section.n02 .grd .box .name {
		font-size: 9vw;
	}
	#container .main section.n02 .grd .box .msg {
		font-size: 20px;
	}
	#container .main section.n02 .grd .box .link {
		margin-top: 40px;
	}
	#container .main section.n02 .qna {
		grid-template-columns: 1fr;
		justify-items: center;
		row-gap: 15px;
		margin-top: 50px;
		padding: 50px 15px;
	}
	#container .main section.n02 .qna p {
		font-size: 5vw;
	}

	/* sec03 */
	#container .main section.n03 .box {
		padding-top: 80px;
	}
	#container .main section.n03 .title {
		font-size: 5.5vw;
	}
	#container .main section.n03 .comp {
		grid-template-columns: 1fr;
	}
	#container .main section.n03 .comp > p {
		margin-bottom: 30px;
		text-align: center;
	}
	#container .main section.n03 .comp > ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		padding: 0 30px;
		justify-items: center;
	}

	/* sec04 */
	#container .main section.n04 .bbs1 {
		grid-template-columns: 1fr;
		row-gap: 20px;
		margin-top: 50px;
		border-bottom-color: #000;
		border-bottom-width: 2px;
	}
	#container .main section.n04 .bbs1 .date {
		text-align: left;
	}
	#container .main section.n04 .bbs1 .date .d,
	#container .main section.n04 .bbs1 .date .ym {
		display: inline-block;
	}
	#container .main section.n04 .bbs1 .date::after {
		display: none;
	}
	#container .main section.n04 .bbs1 .thumb {
		margin: 0 auto;
	}
	#container .main section.n04 .group {
		grid-template-columns: 1fr;
	}
	#container .main section.n04 .group .btitle {
		margin-top: 70px;
	}
	#container .main section.n04 .group .bbs2 .list {
		justify-content: center;
		margin-top: 50px;
	}
	#container .main section.n04 .group .bbs2 .list .item {
		border-bottom: 1px dashed #999;
		padding-bottom: 20px;
	}
	#container .main section.n04 .group .bbs2 .list .item:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}
	#container .main section.n04 .group .bbs2 .list .item .desc {
		margin-top: 20px;
	}
	#container .main section.n04 .group .bbs2 .list .item .date {
		margin-top: 30px;
	}
	#container .main section.n04 .group .bbs3 .item {
		margin-top: 50px;
	}
	#container .main section.n04 .group .bbs3 .item .date {
		margin-top: 30px;
	}
	#container .main section.n04 .group .line {
		width: 100%;
		height: 2px;
		margin-top: 50px;
	}
}
