﻿@charset "utf-8";
@import url(./font.css);


*,
::after,
::before {
    box-sizing: border-box;
}

.ver2-wrap .btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #212529;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.375rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    background-color: transparent;


    transition: color .15s 
    ease-in-out, background-color .15s 
    ease-in-out, border-color .15s 
    ease-in-out, box-shadow .15s 
    ease-in-out;
}

.ver2-wrap .btn:hover {
    border-color: transparent;
}



/*modal*/
/* -- CSS 변수 (Variables) - 완벽한 작동을 위해 필요할 수 있습니다. -- */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}
.modal.fade .modal-dialog {
transition: transform 0.3s ease-out;
transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
    transition: none;
}
}
.modal.show .modal-dialog {
transform: none;
}
.modal.modal-static .modal-dialog {
transform: scale(1.02);
}

.modal-dialog-scrollable {
height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
max-height: 100%;
overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
overflow-y: auto;
}

.modal-dialog-centered {
display: flex;
align-items: center;
min-height: calc(100% - 1rem);
}

.modal-content {
position: relative;
display: flex;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
outline: 0;
}

.modal-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop.show {
opacity: 0.6;
}

.modal-header {
display: flex;
flex-shrink: 0;
align-items: center;
justify-content: space-between;
padding: 1rem 1rem;
border-bottom: 1px solid #dee2e6;
border-top-left-radius: calc(0.3rem - 1px);
border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
padding: 0.5rem 0.5rem;
margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
margin-bottom: 0;
line-height: 1.5;
}

.modal-body {
position: relative;
flex: 1 1 auto;
padding: 1rem;
}

.modal-footer {
display: flex;
flex-wrap: wrap;
flex-shrink: 0;
align-items: center;
justify-content: flex-end;
padding: 0.75rem;
border-top: 1px solid #dee2e6;
border-bottom-right-radius: calc(0.3rem - 1px);
border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
margin: 0.25rem;
}

@media (min-width: 576px) {
.modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}

.modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
}

.modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
}

.modal-sm {
    max-width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg,
.modal-xl {
    max-width: 800px;
}
}
@media (min-width: 1200px) {
.modal-xl {
    max-width: 1140px;
}
}
.modal-fullscreen {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
}
.modal-fullscreen .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-fullscreen .modal-header {
border-radius: 0;
}
.modal-fullscreen .modal-body {
overflow-y: auto;
}
.modal-fullscreen .modal-footer {
border-radius: 0;
}

@media (max-width: 575.98px) {
.modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}
.modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}
.modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
}
.modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
}
.modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
}
}
@media (max-width: 767.98px) {
.modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}
.modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}
.modal-fullscreen-md-down .modal-header {
    border-radius: 0;
}
.modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
}
.modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
}
}
@media (max-width: 991.98px) {
.modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}
.modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}
.modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
}
.modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
}
.modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
}
}
@media (max-width: 1199.98px) {
.modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}
.modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}
.modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
}
.modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
}
.modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
}
}
@media (max-width: 1399.98px) {
.modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}
.modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}
.modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
}
.modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
}
.modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
}
}

.modal-dialog .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: .5;
    
    cursor: pointer;
    transition: ease all 0.3s;
}
.btn-close:hover {
    scale: 1.2;
    opacity: 1;
}
.modal .btn-close:before {
	content: unset;
}








/*banner-area*/
.ver2-banner-area {
    position: relative;
}
.ver2-banner-area .ver2-inner {
    position: absolute;
    left: 50%;
    bottom: 60px;
    width: 100%;
    transform: translateX(-50%);
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 20px;
}

.ver2-main-banner {
    position: relative;
    height: 100vh;
}
.ver2-main-banner .swiper-slide {
    position: relative;
}
.ver2-main-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ver2-main-banner .swiper-slide .bg {
    position: absolute;
    display: block;
    background: linear-gradient(rgba(0, 0, 0, 0.59) 0%, rgba(84, 84, 84, 0) 29%);

    width: 100%;
    height: 100%;
}
.ver2-main-banner .swiper-slide .bg2 {
    position: absolute;
    display: block;
    /* background: linear-gradient(rgba(84, 84, 84, 0) 0%, rgba(0, 0, 0, 0.59) 99%); */
    /* background: linear-gradient(rgba(84, 84, 84, 0) 0%, rgba(0, 0, 0, 0.1) 99%); */
    background: linear-gradient(rgba(84, 84, 84, 0) 0%, rgba(0, 0, 0, 0.3) 99%);

    width: 100%;
    height: 100%;
}

.ver2-main-banner .swiper-pagination {
    display: inline-block;
    width: fit-content;
    font-family: "Paperlogy";
    color: #fff;
    font-size: 12px;
    letter-spacing: -0.01em;

    position: unset;
}
.ver2-main-banner .swiper-pagination .swiper-pagination-current {
    font-weight: bold;
}

.ver2-main-banner .group .btn {
    background: rgba(255, 255, 255, 0.1);
    width: 30px;
    height: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}
.ver2-main-banner .group .btn:hover {
    background: rgba(255, 255, 255, 0.2);
}


.ver2-main-banner .banner-tit {
    position: absolute;
    bottom: 86px;
}
.ver2-main-banner .banner-tit .tit {
    font-family: "Paperlogy";
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.01em;
    line-height: 46px;
    color: #fff;
    text-align: left;
    
}
.ver2-main-banner .banner-tit .sub-tit {
    font-family: "Paperlogy";
    font-weight: normal;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: #fff;    
    text-align: left;
}



/*search-menu*/
.ver2-search-area {
    position: fixed;
    bottom: 156px;
    right: 40%;
    transform: translateX(50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 14px;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    -webkit-transition-duration: 0.4s;
    -webkit-transition-timing-function: ease;
}

.ver2-search-area.scrollMove {
    bottom: 40px;
}

.ver2-search-area.hidden-scroll {
    opacity: 0;
    visibility: hidden;
    /* transition: ease all 0.7s; */
    transition: opacity 0.7s ease-out, visibility 0s 0.7s;
}

.ver2-search-area .search {
    position: relative;
}

.ver2-search-area .search .blind {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}

.ver2-search-area .search input[type="text"] {
    font-size: 18px;
    padding-left: 70px;
    padding-right: 74px;
    width: 679px;
    height: 60px;
    color: #444;


    border: 1px solid #ddd;
    border-radius: 12px;
    background: transparent;
    backdrop-filter: blur(32px);
    --webkit-backdrop-filter: blur(32px);
    background-color: rgba(255, 255, 255, 0.5);
}

.ver2-search-area .search input::placeholder {
    font-size: 18px;
    color:#444;
}
.ver2-search-area .search input:focus,
.ver2-search-area .search input:active,
.ver2-search-area .search button:active,
.ver2-search-area .search button:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(255,255,255,0.25);
}

.ver2-search-area .search .img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    z-index: 1;
}
.ver2-search-area .search .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    padding: 10px 14px;
    background: #5393bd;
    border: unset;
    border-radius: 8px;
}


.ver2-search-area .list {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    height: 60px;
    border-radius: 12px;

    min-width: fit-content;
}
.ver2-search-area .list .item {
    font-weight: 500;
    font-size: 16px;
    color: #fff;

    width: 100%;
    min-width: fit-content;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 8px;

    position: relative;
}
.ver2-search-area .list .item:hover {
    background-color: #ffffff0a;
}
.ver2-search-area .list .item:not(:last-child):after {
    content: '';
    display: block;
    width: 2px;
    height: 10px;
    background: #fff;
    opacity: 0.3;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1px;
}

@media (max-width:1530px) {
	.ver2-banner-area .ver2-inner {
		bottom: 20%;
		left: unset;
		transform: unset;
	}
    .ver2-main-banner .banner-tit {
    	display: none;
    }
}
@media (max-width:1300px) {
    .ver2-search-area .search input[type="text"] {
        width: 500px;
    }
}

@media (max-width:991px) {
    .ver2-search-area .search input[type="text"] {
        width: 100%;
    }
    .ver2-search-area {
        right: 20px;
        flex-direction: column-reverse;
        transform: unset;
        gap: 6px;
    }
}

@media (max-width: 575px) {
    .ver2-search-area .search {
        display: none;
    }
/*     .ver2-main-banner .banner-tit .tit {
    	font-size: 22px;
    }
    .ver2-main-banner .banner-tit .sub-tit {
    	font-size: 15px;
    } */
}

@media (max-width: 425px) {
	.ver2-banner-area .ver2-inner {
		bottom: 30%;
	}
    .ver2-search-area {
        right: 16px;
        left: 16px;
    }
    .ver2-search-area .list {
        display: flex;
        align-items: center;
        padding: 8px 2px;
        height: 60px;
        border-radius: 12px;
        min-width: fit-content;
    }
}








/*pknu-today*/
.ver2-pknu-today {
    padding: 90px 0;
}

.ver2-pknu-today .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.ver2-pknu-today .top .tit {
    font-family: "Paperlogy";
    font-weight: bold;
    font-size: 46px;
    color: #111111;

    margin-bottom: 14px;
}
.ver2-pknu-today .top .tit span {
    color: #164692;
}
.ver2-pknu-today .top .txt {
    font-family: "Paperlogy";
    font-weight: normal;
    font-size: 18px;
    color: #34332f;
}

.ver2-pknu-today .list {
    padding-top: 40px;
    display: flex;
    gap: 60px
}

.ver2-pknu-today .list .left,
.ver2-pknu-today .list .right {
    width: 50%;
    margin: -16px;
}

.ver2-pknu-today .list .item {
    padding: 16px;
}
.ver2-pknu-today .list .item:hover {
    border-radius: 26px;
    background: #f6f8fb;
}
.ver2-pknu-today .list .item .img-box { 
    border-radius: 20px;
    overflow: hidden;
    height: 560px;
    margin-bottom: 24px;
}
.ver2-pknu-today .list .right .item .img-box { 
    overflow: hidden;
    height: 250px;
}

.ver2-pknu-today .list .item .img-box img { 
    width: 100%;
    height: 100%;
    object-fit: cover;

    scale: 1;
    transition: all 0.2s ease-out;
}
.ver2-pknu-today .list .item:hover .img-box img {
    scale: 1.07;
}

.ver2-pknu-today .list .item .tit {
    font-weight: bold;
    font-size: 22px;
    line-height: 29px;
    color: #333;    

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;

    height: fit-content;
    text-align: left;
}
.ver2-pknu-today .list .item .txt {
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: #2c1e1a;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    min-height: 51px;
    margin-top: 14px;
}
.ver2-pknu-today .list .right .item .txt {
    display: none;
}


.ver2-pknu-today .list .right {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 34px;
    row-gap: 34px;
}
.ver2-pknu-today .list .right .item {
    width: 47%;
}
@media (max-width:1200px) {
    .ver2-pknu-today .list {
        flex-direction: column;
        gap: 40px;
    }
    .ver2-pknu-today .list .left, 
    .ver2-pknu-today .list .right {
        width: 100%;
        margin: auto;
    }
    .ver2-pknu-today .list .right {
        column-gap: 26px;
    }
}

@media (max-width:767px){
	.ver2-pknu-today .list .right {
        column-gap: 6px;
    }
}
@media (max-width:575px){
	.ver2-pknu-today .list .right {
	    flex-direction: column;
	    column-gap: unset;
	}
	.ver2-pknu-today .list .right .item {
		width: 100%;
	}
}
@media (max-width:425px) {
	.ver2-pknu-today .list .item {
		padding: unset;
	}
}



/*main-notice*/
.ver2-main-notice {
    background: #f9f9f9;
    padding: 120px 0;
}

.ver2-main-notice .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.ver2-main-notice .top .tit {
    font-family: "Paperlogy";
    font-weight: bold;
    font-size: 46px;
    color: #111111;

    margin-bottom: 14px;
}
.ver2-main-notice .top .tit span {
    color: #164692;
}
.ver2-main-notice .top .txt {
    font-family: "Paperlogy";
    font-weight: normal;
    font-size: 18px;
    color: #34332f;
    text-align: left;
}

.ver2-main-notice .tab {
    display: flex;
    gap: 30px;
}

.ver2-main-notice .tab li {
    font-family: "Paperlogy";
    font-weight: 400;
    font-size: 18px;
    color: #333;

    cursor: pointer;
}
.ver2-main-notice .tab li.active {
    font-weight: 600;
    color: #164692;
}



.ver2-main-notice .list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    
    padding-top: 40px;
}
.ver2-main-notice .list .item {
    width: 23.8%;
    border-radius: 20px;
    background: #fff;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;

    transition: all 0.2s ease-out;
    top: 0;
}
.ver2-main-notice .list .item:hover {
    top: -6px;
}

.ver2-main-notice .list .item a {
    display: block;
    padding: 40px;
}

.ver2-main-notice .list .item .label {
    padding: 8px 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    display: block;
    width: fit-content;
}

.ver2-main-notice .list .item .label.label-txt-01 {
    background-color: #1d5097;
}
.ver2-main-notice .list .item .label.label-txt-02 {
    background-color: #1D9397;
}
.ver2-main-notice .list .item .label.label-txt-03 {
    background-color: #e88718;
}
.ver2-main-notice .list .item .label.label-txt-04 {
    background-color: #0083D2;
}
.ver2-main-notice .list .item .label.label-txt-05 {
    background-color: #D55353;
}


.ver2-main-notice .list .item .tit {
    font-weight: bold;
    font-size: 20px;
    line-height: 29px;
    color: #333;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    margin-top: 22px;
    margin-bottom: 70px;

    min-height: 58px;
    text-align: left;
    
}

.ver2-main-notice .list .item .date {
    font-weight: normal;
    font-size: 16px;
    color: #888;
}
@media (max-width:1600px) {
    .ver2-main-notice .list {
        gap: 16px;
    }
    .ver2-main-notice .list .item {
        width: 23%;
    }
    .ver2-main-notice .list .item a {
        padding: 20px;
    }
}
@media (max-width:991px) {
    .ver2-main-notice .top {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }
    .ver2-main-notice .tab {
        flex-wrap: wrap;
        gap: 14px;
    }
}
@media (max-width:768px) {
    .ver2-main-notice .list {
        gap: 14px;
    }
    .ver2-main-notice .list .item {
        width: 48%;
    }
}
@media (max-width:575px) {
    .ver2-main-notice .list .item {
        width: 100%;
    }
}








/*pknu-now*/
.ver2-pknu-now {
    padding: 120px 0;
}
.ver2-pknu-now .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.ver2-pknu-now .top .tit {
    font-family: "Paperlogy";
    font-weight: bold;
    font-size: 46px;
    color: #111111;

    margin-bottom: 14px;
}
.ver2-pknu-now .top .tit span {
    color: #164692;
}
.ver2-pknu-now .top .txt {
    font-family: "Paperlogy";
    font-weight: normal;
    font-size: 18px;
    color: #34332f;
}

.ver2-pknu-now .tab {
    display: flex;
    gap: 30px;
}

.ver2-pknu-now .tab li {
    font-family: "Paperlogy";
    font-weight: 400;
    font-size: 18px;
    color: #333;

    cursor: pointer;
}
.ver2-pknu-now .tab li.active {
    font-weight: 600;
    color: #164692;
}


.ver2-pknu-now .list {
    padding-top: 40px;

    display: flex;
    flex-wrap: wrap;
}

.ver2-pknu-now .list .item {
    display: block;
    position: relative;

    padding-bottom: 50px;
    border-bottom: 1px dashed #ccc;

    width: 23.56%;
    height: fit-content;

    margin-right: 30px;
    margin-bottom: 30px;
}
.ver2-pknu-now .list .item:nth-child(4n) {
    margin-right: 0;
}

.ver2-pknu-now .list .item .label {
    padding: 9px 23px;
    border-radius: 20px;
    background: #164692;
    font-weight: bold;
    font-size: 15px;
    color: #fff;

    position: absolute;
    top: -18px;
    right: 23px;
    z-index: 1;
}

.ver2-pknu-now .list .item .label .list .item .label.label-txt-01 {
    background-color: #1d5097;
}
.ver2-pknu-now .list .item .label.label-txt-02 {
    background-color: #1D9397;
}
.ver2-pknu-now .list .item .label.label-txt-03 {
    background-color: #e88718;
}
.ver2-pknu-now .list .item .label.label-txt-04 {
    background-color: #0083D2;
}
.ver2-pknu-now .list .item .label.label-txt-05 {
    background-color: #D55353;
}

.ver2-pknu-now .list .item .img-box {
    display: block;
    background-color: #f8f8f8;
    overflow: hidden;
    min-height: 230px;
    max-height: 350px;

    margin-bottom: 14px;
}
.ver2-pknu-now .list .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    scale: 1;
    transition: all 0.2s ease-out;
}
.ver2-pknu-now .list .item:hover .img-box img {
    scale: 1.07;
}

.ver2-pknu-now .list .item .tit {
    display: block;
    font-weight: bold;
    font-size: 20px;
    color: #333;
    width: fit-content;
    text-align: left;

    margin-bottom: 10px;

    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    
    position: relative;
}
.ver2-pknu-now .list .item .tit::after {
    display: flex;
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #164692;
    transition: all .5s;
    content: "";
    
    transform: scaleX(0); /* 초기 상태: 밑줄이 없도록 */
    transform-origin: left; /* 기준점을 왼쪽으로 설정 */
}
.ver2-pknu-now .list .item:hover .tit::after {
    transform: scaleX(1);
}
.ver2-pknu-now .list .item:hover .tit {
    color: #164692;
}

.ver2-pknu-now .list .item .txt {
    font-weight: normal;
    font-size: 16px;
    text-align: left;
    color: #aaa;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    margin-bottom: 16px;
}

.ver2-pknu-now .list .item .date {
    font-weight: normal;
    font-size: 14px;
    color: #aaa;
}
@media (max-width:1600px) {
    .ver2-pknu-now .list .item {
        width: 23%;
    }
}
@media (max-width:1200px) {
    .ver2-pknu-now .list .item {
        width: 22%;
    }
}
@media (max-width:991px) {
    .ver2-pknu-now .list .item {
        width: 47.8%;
        margin-right: 16px;
    }
    .ver2-pknu-now .list .item:nth-child(2n) {
        margin-right: 0;
    }
    .ver2-pknu-now .top {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }
    .ver2-pknu-now .tab {
        flex-wrap: wrap;
        gap: 14px;
    }
}
@media (max-width:425px) {
    .ver2-pknu-now .list .item {
        width: 100%;
        margin-right: 0;
    }
}












/*pknu-calendar*/
.ver2-pknu-calendar {
    padding: 120px 0 100px;
    background-color: #f9f9f9;
}

.ver2-pknu-calendar .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ver2-pknu-calendar .top .tit {
    font-family: "Paperlogy";
    font-weight: bold;
    font-size: 46px;
    color: #111111;

    margin-bottom: 14px;
}
.ver2-pknu-calendar .top .tit span {
    color: #164692;
}
.ver2-pknu-calendar .top .txt {
    font-family: "Paperlogy";
    font-weight: normal;
    font-size: 18px;
    color: #34332f;
}

.ver2-pknu-calendar .top .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.ver2-pknu-calendar .top .border {
    width: 1100px;
    height: 4px;
    background: #111;
}
.ver2-pknu-calendar .top .right a {
    font-family: "Paperlogy 6";
    font-weight: 600;
    font-size: 18px;
    color: #333;    
    margin-top: 10px;
}

.ver2-pknu-calendar .list {
    padding-top: 70px;
    padding-bottom: 20px;
}

.ver2-pknu-calendar .list .item {
    display: flex;
    flex-direction: column;

    border-radius: 20px;
    background: #fff;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 20%;
    cursor: pointer;
}

.ver2-pknu-calendar .list .item .img-box {
    height: 250px;
    background-color: #ccc;
    overflow: hidden;
}
.ver2-pknu-calendar .list .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    scale: 1;
    transition: all 0.2s ease-out;
}
.ver2-pknu-calendar .list .item:hover .img-box img {
    scale: 1.07;
}

.ver2-pknu-calendar .list .item .bottom {
    padding: 24px 20px 30px;
}

.ver2-pknu-calendar .list .item .tit {
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    color: #333;
    margin-bottom: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    
    min-height: 48px;
}

.ver2-pknu-calendar .list .item .date {
    font-weight: normal;
    font-size: 14px;
    text-align: left;
    letter-spacing: -0.03em;
    color: #164692;   
    margin-top: 14px;
}

.ver2-pknu-calendar .list .item .txt {
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    color: #aaa;
    min-height: 40px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media (max-width:1600px) {
    .ver2-pknu-calendar .top .border {
        width: 800px;
    }
}
@media (max-width:1300px) {
    .ver2-pknu-calendar .top .border {
        width: 600px;
    }
}
@media (max-width:1200px) {
    .ver2-pknu-calendar .top .border {
        width: 500px;
    }
    .ver2-pknu-popup .swiper-slide {
        display: flex;
        flex-direction: column;
    }
}
@media (max-width:991px) {
    .ver2-pknu-calendar .top {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }
    .ver2-pknu-calendar .top .right{
        width: 100%;
    }
    .ver2-pknu-calendar .top .border {
        width: 100%;
    }
}








/*pknu-popup*/
.ver2-pknu-popup {
    padding: 110px 0;
    background-color: #eaf0f5;
    background-image: url(/images/front/main/new/pknu_bg_opacity.png);
    background-repeat: no-repeat;
    background-size: 22%;
    background-position: 40px -26px;
    /* background-position-y: bottom; */
}

.ver2-pknu-popup .top {
    min-width: 325px;
}

.ver2-pknu-popup .top .tit {
    font-family: "Paperlogy";
    font-weight: bold;
    font-size: 46px;
    color: #111111;

    margin-bottom: 14px;
}
.ver2-pknu-popup .top .tit span {
    color: #164692;
}
.ver2-pknu-popup .top .txt {
    font-family: "Paperlogy";
    font-weight: normal;
    font-size: 18px;
    color: #34332f;
}


.ver2-pknu-popup .ver2-inner {
    display: flex;
    gap: 80px;
}

.ver2-pknu-popup .bottom {
    display: flex;
    max-width: 290px;

    margin-top: 20px;
}
.ver2-pknu-popup .bottom .btn {
    height: fit-content;
    cursor: pointer;
    transition: ease all 0.3s;
    opacity: 0.6;
}
.ver2-pknu-popup .bottom .btn:hover {
    scale: 1.02;
    opacity: 1;
}

.ver2-pknu-popup .swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    font-family: "Paperlogy";
    font-size: 18px;
    color: #34332f;
    line-height: 42px;
    font-weight: 600;
}

.ver2-pknu-popup .swiper-pagination span {

}

.ver2-pknu-popup .swiper-slide {

}

.ver2-pknu-popup .swiper-slide .item {
	display: block;
	
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    
    background: #ccc;
}
.ver2-pknu-popup .swiper-slide .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease all 0.5s;
}
.ver2-pknu-popup .swiper-slide .item:hover img {
    scale: 1.1;
}

@media (max-width:1600px) {
    .ver2-pknu-popup .top {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }
    .ver2-pknu-popup .bottom {
        margin-top: unset;
    }
    .ver2-pknu-popup .ver2-inner {
        flex-direction: column;
        gap: 40px;
    }
    .ver2-pknu-popup .list {
        width: 100%;
    }
    .ver2-pknu-popup {
        background-size: 50%;
    }
}
@media (max-width:1024px) {
    .ver2-pknu-popup {
        background-size: 80%;
        background-position-x: bottom !important;
    }
    .ver2-pknu-popup .swiper-slide .item {
        width: 100%;
        height: fit-content;
    }
}










/*pknu-sns*/
.ver2-pknu-sns {
    padding: 120px 0;
}

.ver2-pknu-sns .top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.ver2-pknu-sns .top .tit {
    font-family: "Paperlogy";
    font-weight: bold;
    font-size: 46px;
    text-align: left;
    color: #111111;

    margin-bottom: 14px;
}
.ver2-pknu-sns .top .tit span {
    color: #164692;
}
.ver2-pknu-sns .top .txt {
    font-family: "Paperlogy";
    font-weight: normal;
    font-size: 18px;
    color: #34332f;
}

.ver2-pknu-sns .tab {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ver2-pknu-sns .list {
    padding-top: 40px;
}

.ver2-pknu-sns .swiper-slide {
    width: fit-content;
    position: relative;
}
.ver2-pknu-sns .swiper-slide > a {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ver2-pknu-sns .swiper-slide span {
    width: 42px;
    height: 42px;
    background-color: #ccc;
    border-radius: 50%;

    position: absolute;
    right: 40px;
    top: -21px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}


.ver2-pknu-sns .swiper-slide span.insta {
    background: linear-gradient(100deg, #ffa303 0%, #fe016b 37.24%, #a21ae0 100%);
    background-size: 200%;
}
.ver2-pknu-sns .swiper-slide span.youtube {
    background: #f03;
}

.ver2-pknu-sns .swiper-slide span.insta ~ .tit {
    width: 350px;
}
.ver2-pknu-sns .swiper-slide span.youtube ~ .tit {
    /* width: 750px; */
    width: 350px;
}

.ver2-pknu-sns .swiper-slide .img-box {
    height: 450px;
    border-radius: 22px;
    overflow: hidden;
}
.ver2-pknu-sns .swiper-slide .img-box img {
    height: 100%;
    scale: 1;
    transition: all 0.2s ease-out;
}
.ver2-pknu-sns .swiper-slide:hover .img-box img {
    scale: 1.05;
    filter: brightness(0.3);
}

.ver2-pknu-sns .swiper-slide .tit {
    font-size: 18px;
    font-weight: bold;
    color: #fff;

    text-align: center;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    display: none;
}
.ver2-pknu-sns .swiper-slide .tit span {
    font-size: 12px;
    font-weight: normal;
    background-color: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;

    position: relative;
    left: 50%;
    transform: translateX(-50%);

    top: 30px;
    
}
.ver2-pknu-sns .swiper-slide:hover .tit {
    display: block;
}

@media (max-width:767px) {
    .ver2-pknu-sns .top {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }
    .ver2-pknu-sns .swiper-slide .img-box {
    	height: auto;
    }
    .ver2-pknu-sns .swiper-slide .img-box img {
        width: 100%;
    }
}











/*pknu-services*/
.ver2-pknu-services {
    padding: 40px 0;
    background-color: #f9f9f9;
}
.ver2-pknu-services .ver2-inner {
    display: flex;
    gap: 100px;
}

.ver2-pknu-services .top {
    min-width: 325px;
}

.ver2-pknu-services .top .tit {
    font-family: "Paperlogy";
    font-weight: bold;
    font-size: 46px;
    color: #111111;

    margin-bottom: 14px;
}
.ver2-pknu-services .top .tit span {
    color: #164692;
    margin-top: -16px;
}
.ver2-pknu-services .top .txt {
    font-family: "Paperlogy";
    font-weight: normal;
    text-align: left;
    font-size: 18px;
    color: #34332f;
}


.ver2-pknu-services .list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.ver2-pknu-services .list .item {
    display: flex;
    align-items: center;
    /* width: 20%; */
    width: 33%;
    height: 43px;
    padding: 10px 20px;

    font-weight: normal;
    font-size: 18px;
    text-align: left;
    color: #2c1e1a;
    gap: 14px;
}
.ver2-pknu-services .list .item span {
    width: 6px;
    height: 6px;
    background: #2c1e1a;
    border-radius: 50%;
}
.ver2-pknu-services .list .item:hover {
    color: #1d5097;
    font-weight: bold;
}
.ver2-pknu-services .list .item:hover span {
    background: #1d5097;
}

@media (max-width:1200px) {
    .ver2-pknu-services .ver2-inner {
        flex-direction: column;
        gap: 40px;
    }
}
@media (max-width:991px) {
    .ver2-pknu-services .list .item {
        width: 50%;
    }
}
@media (max-width:767px) {
    .ver2-pknu-services .list .item {
        width: 100%;
    }
}




/*footer*/
footer .top {
    background: #3c3c3c;
    padding: 20px ;
}
footer .top .ver2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .top .site-btn {
    font-weight: bold;
    font-size: 14px;
    color: #fff;  
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 22px;
    opacity: 0.8;
}
footer .top .site-btn:hover {
	opacity: 1;
}

footer .top .menu {
    display: flex;
    gap: 50px;
}
footer .top .menu li {
	text-align: left;
}
footer .top .menu li a {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
}

footer .top .menu li:first-child a {
    color: #97baff;    
}

footer .top .menu li a:hover {
	opacity: 1;
}

footer .info {
    padding: 40px 0;
    background: #333;
}

footer .logo {
    opacity: 0.8;
    display: block;
    margin-bottom: 26px;
}

footer .info .txt {
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    opacity: 0.6;
    margin-bottom: 10px;
}

footer .info .copyright {
    font-weight: normal;
    font-size: 12px;
    color: #fff;
    opacity: 0.34;    
    margin-top: 60px;
}
@media (max-width:1300px) {
    footer .top .ver2-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
    footer .top .menu {
        gap: 20px;
        flex-wrap: wrap;
    }
}
@media (max-width:475px) {
    footer .top .site-btn {
        width: 100%;
    }
}





/*quick-modal*/
.ver2-quick-modal .list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ver2-quick-modal .modal-header {
    border-color: #eee;
}
.ver2-quick-modal h1 {
    font-family: "Paperlogy";
    font-weight: bold;
    color: #111111;
}
.ver2-quick-modal h1 span {
    font-family: "Paperlogy";
    font-weight: bold;
    color: #164692;
}

.ver2-quick-modal .list .item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    /* padding: 20px 0; */
    padding: 20px 10px;
    border-radius: 8px;
    background: #f1f1f1;
    width: 18.88%;
    gap: 6px;
}
.ver2-quick-modal .list .item .img-box {
    width: 36px;
    height: 36px;
    overflow: hidden;
    margin-bottom: 6px;
}
.ver2-quick-modal .list .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ver2-quick-modal .list .item .tit {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    
    text-align: center;
}

@media (max-width:991px) {
	.ver2-quick-modal .list .item {
	    width: 23.33%;
	}
}
@media (max-width: 498px) {
    .ver2-quick-modal .list .item {
        /* width: 31.77%; */
        width: calc(50% - 10px);
    }
}
@media (max-width: 475px) {
    .ver2-quick-modal .list .item {
        width: calc(50% - 10px);
    }
}
@media (max-width: 375px) {
    .ver2-quick-modal .list .item {
        width: 100%;
    }
}
