/* common */
.section{
	padding: 110px 0;
}

.subTit{
	font-size: 16px;
	color: #002101;
	display: inline-block;
	padding: 6px 8px;
	background: rgba(0,189,6,0.2);
	line-height: 1.6;
	margin-bottom: 20px;
}

.tit{
	font-size: 40px;
	color: #1f1f1f;
	font-weight: 600;
	margin-bottom: 25px;
	line-height: 1.5;
}

.tit strong{
	font-weight: 600;
}

.tit.line{
	margin-bottom: 0;
}

.tit.line::after{
	content: '';
	display: block;
	width: 75px;
	height: 4px;
	background: var(--mainCol);
	margin: 85px 0;
}

.conTxt{
	font-size: 18px;
	color: #585858;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 50px;
}

.conTxt strong{
	font-weight: bold;
} 

.imgBox img{
	max-width: 100%;
}

.col{
	color: #cdc081;
}

/* visual */
.visual{
	position: relative;
	height: calc(100vh - 90px);
	max-height: 884px;
	overflow: hidden;
	background: url(/include/img/visual01.jpg) no-repeat center / cover;
	display: flex;
	align-content: center;
}

.visual h2{
	color: #fff;
	font-size: 60px;
	line-height: 1.4;
	margin-bottom: 20px;
}

.visual p{
	color: #fff;
	line-height: 1.4;
	font-size: 25px;
}


/* scrollBox */
.scrollBox{
	position: fixed;
	left: 50%;
	/* bottom: 100px; */
	bottom: 110px;
	transform: translate(-50%,0);
	z-index: 20;
	display: flex;
	align-items: center;
}

.scrollBox.off{
	display: none;
}

.scrollBox p{
	color: #fff;
	font-weight: 300;
	font-size: 14px;
}

.scrollBox .scroll{
	width: 10px;
	height: 34px;
	border-radius: 100px;
	box-sizing: border-box;
	background: rgba(255,255,255,0.2);
	display: block;
	position: relative;
	margin-left: 20px;
}

.scrollBox .scroll span{
	display: block;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	left: 0%;
	top: 0%;
	animation: scroll 5s infinite;
}

@keyframes scroll{
	0%{top: 0%;transform: translateY(0%);}
	30%{top: 100%;transform: translateY(-100%);}
	80%{top: 0%;transform: translateY(0%);}
}

/* section1 */
.section1 .inner{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.section1 .inner > div{
	box-sizing: border-box;
}

.section1 .leftBox{
	width: 40%;
}

.section1 .leftBox ul li{
	border: 1px solid var(--mainCol);
	box-sizing: border-box;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	width: 80%;
	max-width: 450px;
	border-radius: 100px;
	line-height: 1.3;
}

.section1 .leftBox ul li + li{
	margin-top: 15px;
}

.section1 .leftBox ul li .fa{
	color: #405ca3;
	font-size: 20px;
}

.section1 .leftBox ul li .daySpan{
	font-weight: 600;
	color: #405ca3;
	font-size: 18px;
	margin: 0 10px;
}

.section1 .leftBox ul li p{
	font-size: 18px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.section1 .rightBox{
	width: 60%;
	background: #fafafa;
	padding: 40px 100px;
	border-radius: 30px;
}

.section1 .calendar .view{
	background: transparent;
}

.section1 .calendar-ct{
	border: 1px solid #ddd;
	border-radius: 20px;
}

.section1 .calendar .week li, 
.section1 .calendar .days li{
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-radius: 0px;
}

.section1 .calendar .week li{
	border-top: 0;
}

.section1 .calendar .week li:nth-child(7n-6), 
.section1 .calendar .days li:nth-child(7n-6){
	border-left: 0;
}

.section1 .calendar .calendar-views .dot{
	display: none;
}

.section1 .calendar-arrow .prev,
.section1 .calendar-arrow .next{
	display: flex;
	align-content: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	top: 50%;
	transform: translate(0,-50%);
}

.section1 .calendar-arrow .prev{
	margin-left: -120px;
}

.section1 .calendar-arrow .next{
	margin-right: -120px;
}

.section1 .calendar-arrow .prev .fa,
.section1 .calendar-arrow .next .fa{
	font-size: 34px;
	line-height: 30px;
}

/* section2 */
.section2{
	background: #f7f9ff;
}

.section2 .inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.section2 .inner > div{
	box-sizing: border-box;
	width: calc(100%/2 - 70px/2);
}

.section2 .inner > div .titBox{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.section2 .inner > div .tit{
	margin-bottom: 0;
}

.section2 .inner > div .titBox a{
	color: #375191;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
}

.section2 .inner > div ul{
	background: #fff;
	box-sizing: border-box;
	padding: 35px;
	border-radius: 20px;
}

.section2 .inner > div ul li + li{
	margin-top: 25px;
}

.section2 .inner > div ul li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section2 .inner > div ul li a p{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 18px;
	line-height: 1.5;
	width: calc(100% - 100px);
}

.section2 .inner > div ul li a span{
	color: #8a8a8a;
	font-size: 16px;
	text-align: right;
}

/* section3 */
.section.section3{
	background: url(/include/img/section3_bg.jpg) no-repeat center / cover;
    position: relative;
    padding: 100px 0 0;
    overflow: hidden;
}

.section.section3 .tit{
	text-align: center;
	color: #fff;
}

.section.section3 .inner {
    position: relative;
    z-index: 2;
	max-width: none;
	width: 100%;
}

.section.section3 .videoBox {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    /* align-items: center; */
    justify-content: center;
	box-sizing: border-box;
	padding-top: 20px;
}

.section.section3 .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.section.section3 .search-container {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 600px;
	display: block;
}

/* 검색 폼 스타일 완전 재설정 */
.section.section3 .search-form {
    position: relative;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.section.section3 .search-input {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 60px);
    height: 100%;
    padding: 0 20px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    border-radius: 30px;
}

.section.section3 .search-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 50px;
    background: #4b7bec;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 0 30px 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section.section3 .search-button:hover {
    background: #3867d6;
}

/* section4 */
.section4 + .section4{
	padding-top: 0 !important;
}

.section4 .titBox{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.section4 .titBox .leftBox{
	display: flex;
	align-items: center;
}

.section4 .titBox .leftBox ul{
	display: flex;
	margin-left: 35px;
}

.section4 .titBox .leftBox ul li{
	font-size: 18px;
	line-height: 1;
	position: relative;
	color: #8d8d8d;
	cursor: pointer;
}

.section4 .titBox .leftBox ul li.on{
	color: #375191;
	font-weight: 600;
}

.section4 .titBox .leftBox ul li + li{
	margin-left: 13px;
	padding-left: 13px;
}

.section4 .titBox .leftBox ul li + li::before{
	content: '';
	display: block;
	width: 1px;
	height: 18px;
	background: var(--mainCol);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-40%);
}

.section4 .titBox .more{
	display: inline-block;
	padding: 10px 50px;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	background: var(--mainCol);
	border-radius: 100px;
}

.section4 .tit{
	margin-bottom: 0;
}

.section4 article ul{
	flex-wrap: wrap;
	display: none;
}

.section4 article ul.on{
	display: flex;
}

.section4 article ul li{
	width: calc(100%/4 - 60px/4);
}

.section4 article ul li + li{
	margin-left: 20px;
}

.section4[data-kind="논문"] article ul li .imgBox{
	border-radius: 20px;
	overflow: hidden;
	box-shadow: rgba(0,0,0,0.08) 5px 5px 5px;
}

.section4 article ul li h5{
	font-size: 18px;
	line-height: 1.4;
	margin-top: 10px;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	/* -webkit-box-orient: vertical; */
	-webkit-line-clamp: 2;
}

/* section5 */
.section5{
	background: #eef1f8;
	padding: 110px 0 !important;
	text-align: center;
}

.section5::before{
	display: none !important;
}

.section5 .leftBox{
	text-align: center;
}

.section5 .tit{
	text-align: center;
	margin-bottom: 15px;
}

.section5 .leftBox p{
	text-align: center;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 30px;
}

.section5 .more{
	font-size: 16px;
	background: var(--mainCol);
	font-weight: bold;
	color: #fff;
	padding: 10px 25px;
	line-height: 1.3;
	margin: 20px 0;
	display: inline-block;
	border-radius: 100px;
}

.section5 #wordcloud-container{
	box-shadow: none !important;
	background: transparent !important;
}

/* section6 */
.section6{
	overflow: hidden;
}

.section6 .tit{
	text-align: center;
}

.section6 .slick-list{
	overflow: visible;
}

.section6 .slideUl{
	max-width: 1018px;
	margin: auto;
}

.section6 .slideLi{
	transform: scale(0.85);
	transition: all 0.4s;
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: rgba(0,0,0,0.2) 0 0 30px
}

.section6 .slideLi.slick-current{
	transform: scale(1);
	opacity: 1;
}

.section6 .slideLi img{
	max-width: 100%;
}

.section6 .slideLi .txtBox{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 40px;
	display: flex;
	align-items: flex-end;
	background: rgba(0,0,0,0.4);
}

.section6 .slideLi .txtBox h3{
	font-size: 28px;
	color: #fff;
	text-align: center;
	width: 100%;
}




/* ---------------------------------------------------------- 720 */
@media screen and (max-width: 720px){

/* common */
.tit{
	font-size: 5.5vw;
	margin-bottom: 3vw;
}

.tit .sm{
	font-size: 4vw;
	margin-bottom: 1vw;
}

.tit .hl{
	padding: 0 2vw;
}

.tit .sub{
	font-size: 4vw;
}

.tit.line::after{
	width: 12vw;
	height: 3px;
	margin: 8vw 0;
}

.subTit{
	font-size: 3vw;
	margin-bottom: 3vw;
}

.conTxt{
	font-size: 3.5vw;
	margin-bottom: 7vw;
}

.section{
	padding: 12vw 0;
}

/* visual */
.visual{
	height: calc(100vh - 60px);
}

.visual h2{
	font-size: 10vw;
	margin-bottom: 2vw;
}

.visual p{
	font-size: 4vw;
	margin-bottom: 20vw;
}

/* scrollBox */
.scrollBox{
	bottom: 12vw;
}

.scrollBox p{
	font-size: 12px;
}

.scrollBox .scroll{
	width: 8px;
	height: 28px;
	margin-left: 14px;
}

.scrollBox .scroll span{
	width: 8px;
	height: 8px;
}

/* section1 */
.section1 .leftBox{
	width: 100%;
}

.section1 .leftBox ul li{
	padding: 2vw 4vw;
	width: 100%;
	max-width: none;
}

.section1 .leftBox ul li + li{
	margin-top: 3vw;
}

.section1 .leftBox ul li .fa{
	font-size: 3.5vw;
}

.section1 .leftBox ul li .daySpan{
	font-size: 3.5vw;
	margin: 0 2vw;
}

.section1 .leftBox ul li p{
	font-size: 3.5vw;
}

.section1 .rightBox{
	width: 100%;
	padding: 6vw 5vw;
	border-radius: 5vw;
	margin-top: 5vw;
}

.section1 .calendar-ct{
	border: 1px solid #ddd;
	border-radius: 20px;
}

.section1 .calendar .week li, 
.section1 .calendar .days li{
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-radius: 0px;
}

.section1 .calendar .week li{
	border-top: 0;
	height: 35px !important;
	line-height:35px !important;
}

.section1 .calendar .week li:nth-child(7n-6), 
.section1 .calendar .days li:nth-child(7n-6){
	border-left: 0;
}

.section1 .calendar .calendar-views .dot{
	display: none;
}

.section1 .calendar-arrow .prev,
.section1 .calendar-arrow .next{
	display: flex;
	align-content: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	top: 50%;
	transform: translate(0,-50%);
}

.section1 .calendar-arrow .prev{
	margin-left: -120px;
}

.section1 .calendar-arrow .next{
	margin-right: -120px;
}

.section1 .calendar-arrow .prev .fa,
.section1 .calendar-arrow .next .fa{
	font-size: 34px;
	line-height: 30px;
}

.section1 .date-wrap {
	margin-bottom:35px;
}
.section1 .calendar-hd {
	margin:0;
}
.section1 .calendar ,
.section1 .calendar-ct {
	height: 253px !important;
}
.section1 .calendar-display {
	font-size: 18px;
}
.section1 .calendar ol li {
	font-size: 12px;
}
.section1 .calendar .date-items > li li {
	height:auto !important;
    /* width: auto !important; */
	line-height:35px !important;
}


/* section2 */
.section2 .inner > div{
	width: calc(100%);
}

.section2 .inner > div + div{
	margin-top: 10vw;
}

.section2 .inner > div .titBox{
	margin-bottom: 5vw;
}

.section2 .inner > div .titBox a{
	font-size: 3.5vw;
}

.section2 .inner > div ul{
	padding: 5vw;
	border-radius: 4vw;
}

.section2 .inner > div ul li + li{
	margin-top: 4vw;
}

.section2 .inner > div ul li a p{
	font-size: 3vw;
	width: calc(100% - 20vw);
}

.section2 .inner > div ul li a span{
	font-size: 2.5vw;
}

/* section3 */
.section.section3{
	background: url(/include/img/section3_bg.jpg) no-repeat center / cover;
	padding: 10vw 0 0;
}

.section.section3 .tit{
	text-align: center;
	color: #fff;
}

.section.section3 .videoBox {
    height: 30vw;
	padding-top: 3vw;
	margin-top: 0;
}

.section.section3 .search-container {
    width: 90%;
}

.section.section3 .search-form {
    height: 46px; /* 모바일용 높이 조정 */
	z-index: 2;
}

.section.section3 .search-input {
    width: calc(100% - 50px); /* 버튼 영역 조정 */
    padding: 0 15px;
	font-size: 13px;
}

.section.section3 .search-button {
    width: 50px; /* 버튼 너비 조정 */
    height: 46px; /* 폼 높이에 맞춤 */
}

/* section4 */
.section4 .titBox{
	margin-bottom: 5vw;
}

.section4 .titBox .leftBox ul{
	margin-left: 5vw;
}

.section4 .titBox .leftBox ul li{
	font-size: 3.5vw;
}

.section4 .titBox .leftBox ul li + li{
	margin-left: 2vw;
	padding-left: 2vw;
}

.section4 .titBox .leftBox ul li + li::before{
	height: 3vw;
	transform: translate(0,-40%);
}

.section4 .titBox .more{
	padding: 1.4vw 3vw;
	font-size: 3vw;display: flex;
	align-items: center;
}

.section4 .titBox .more .fa{
	font-size: 3vw;
	margin-top: 1vw;
	margin-left: 2vw;
}

.section4 article ul li{
	width: calc(100%/2 - 3vw/2);
	margin-top: 3vw;
}

.section4 article ul li:nth-child(2n){
	margin-left: 3vw;
}

.section4 article ul li:nth-child(-n+2){
	margin-top: 0;
}

.section4 article ul li + li{
	margin-left: 0px;
}

.section4 article ul li h5{
	font-size: 3.5vw;
	margin-top: 2vw;
}

/* section5 */
.section5 .tit{
	text-align: center;
	margin-bottom: 7vw;
}

.section5{
	padding: 12vw 0 !important;
}

.section5 .tit{
	margin-bottom: 3vw;
}

.section5 .leftBox p{
	font-size: 3.5vw;
	margin-bottom: 5vw;
}

.section5 .more{
	font-size: 3.5vw;
	padding: 2vw 4vw;
	margin: 4vw 0;
}

/* section6 */
.section6 .slideLi{
	border-radius: 5vw;
}

.section6 .slideLi .txtBox{
	padding: 4vw;
}

.section6 .slideLi .txtBox h3{
	font-size: 3.5vw;
	color: #fff;
}




}