
/* 서브네비 */
.weblocation {
    margin-top: 14rem;
}
.location_box:has(.no_link) {
    display: none;
}
.location_box {
	position:relative;
}
.location_box .location {
	display:flex;
    flex-flow: row wrap;
	position:relative;
	align-items:center;
    gap: 2rem;
    padding-inline: 2.5rem;
    background: var(--bg-color);
    border-radius: 6rem;
}
.location_box .location>li {
    position: relative;
}
.location_box .location>li>a.location_list_a {
	position:relative;
	display:block;
    font-size: max(14px,1.8rem);
    font-weight: 600;
    color: var(--point-color);
    padding: 1.8rem 2rem;
}
.location_box .location>li:first-child>a.location_list_a::before {
    content: "";
    position: absolute;
    top:50%;
    right: -1rem;
    width: 1px;
    height: 15px;
    transform: translateY(-50%);
    background: var(--point-color);
}
.location_box .location>li>a.location_list_a i {
    margin-left: 1rem;
    font-size: 0.7em;
}
.location_box .location>li>a:hover,
.weblocation_box .location>li>a:focus {
	text-decoration:none
}
.location_box .location_list {
	display:none;
	position:absolute;
    min-width: 100%;
    width: max-content;
	top:calc(100% + 1rem);
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
	z-index:9999 !important;
    border: 1px solid #d0d0d0;
}
.location_list>li>a {
	display:block;
    font-size: max(13px,1.7rem);
    padding: 1rem ;
    border-radius: 0.5rem;
}
.location_list>li>a:hover,
.location_list li a.on {
    background: var(--bg-color);
}
@media (max-width:768px) {
    .location_box .location {
        padding-inline: 2rem;
    }
    .location_box .location>li>a.location_list_a {
        padding: 2.5rem 1.5rem;
    }
    .location_box .location>li>a.location_list_a i {
        margin-left: 1rem;
    }
}


/* 서브 공통 */
.sub {
    margin-block: 2.5rem 12rem;
    font-size: max(14px,1.8rem);
    letter-spacing: -0.04em;
}
.sub:has(+ .sub-board) {
    margin-bottom: 0;
}
.sub-top {
    border-radius: 3rem;
    overflow: hidden;
    position: relative;
    height: 35rem;
    align-items: flex-end;
    background-size: cover;
    background-position: 60% center;
    margin-bottom: 7.5rem;
}
.sub-top .txt {
    padding: 0 4.5rem 6rem;
    font-size: 2.4rem;
    font-weight: 500;
    color: #fff;
}
.sub-top .txt h2 {
    font-size: 1.67em;
    font-weight: 700;
}
.sub-top .txt h4 {
    margin-top: 2rem;
}
.sub-tab-menu {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}
.sub-tab-menu li {
    display: block;
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--point-color);
    text-align: center;
    border: 2px solid #dff2ff;
    padding: 2rem 1rem;
    border-radius: 1.2rem;
    cursor: pointer;
}
.sub-tab-menu li.on  {
    background: #dff2ff;
    font-weight: 700;
}
.sub .cont-tit1 {
    font-size: max(22px,2.9rem);
    font-weight: 700;
    margin-bottom: 3rem;
}

.sub .cont-tit2 {
    font-size: max(17px,2.1rem);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 3rem;
}
.sub .cont-tit2::before {
    content: "";
    position: absolute;
    top:50%;
    left:0; 
    width: 3px;
    height: 94%;
    background: var(--point-color);
    transform: translateY(-50%);
}
.sub .cont-tit2 h3 {
    font-size: 1.35em;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sub .list-type1 {
    padding-left: 1rem;
    text-indent: -1rem;
}
.sub .list-type2 {
    padding-left: 2.8rem;
    line-height: 1.7;
    margin-top: 1.7rem;
    position: relative;
}
.sub .list-type2 b {
    position: absolute;
    left: 0;
}

.sub .list-type3 {
    padding-left: 2.4rem;
    text-indent: -2.4rem;
    line-height: 1.7;
    margin-top: 1.7rem;
}
.sub .list-type3 b {
    margin-right: 0.3em;
}
@media (max-width:1080px) {
    .sub-top {
        height: 32rem;
    }
    .sub-top .txt {
        padding: 0 3rem 5rem;
    }
}

/* 테이블 공통 */
.table-wrap table {
    width: 100%;
}
@media (max-width:768px) {
    .table-wrap {
        width: 100%;
        overflow-x: scroll;
        padding-bottom: 1rem;
    }
    .table-wrap::-webkit-scrollbar {
        height: 1rem;
        width: 90%;
    }
    .table-wrap::-webkit-scrollbar-thumb {
        background: var(--point-color);
        border-radius: 1rem;
    }
    .table-wrap::-webkit-scrollbar-track {
        background: #f2f5f7;
    }
}

/* 테이블타입1 */
.table-type1 th:first-child {
    border-radius: 1.2rem 0 0 1.2rem;
}
.table-type1 th:last-child {
    border-radius: 0 1.2rem 1.2rem 0;
}
.table-type1 th  {
    padding: 1.5rem 0.5rem;
    font-size: 1.8rem;
    background: #dff2ff;
    font-weight: 600;
}
.table-type1 td {
    padding:2rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid #dfe2e5;
}
@media (max-width:768px) {
    .table-type1 table {
        min-width: 700px;
    }
}

/* 테이블타입2 */
.table-type2 table {
    border-top: 1px solid #000;
}
.table-type2 .border-bt {
    border-bottom: 1px solid #9d9d9d;
}
.table-type2 .border-l {
    border-left: 1px solid #9d9d9d;
}
.table-type2 th {
    padding: 2rem 1rem;
    font-size: max(16px,2rem);
    font-weight: 700;
    background: #eee;
}
.table-type2 td {
    padding: 1.4rem 2.5rem;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    line-height: 2;
    letter-spacing: -0.02em;
}
.table-type2 th + th,
.table-type2 td + td {
    border-left: 1px solid #9d9d9d;
}
@media (max-width:768px) {
    .table-type2 table {
        min-width: 700px;
    }
}

/* 타입1 */
.sub .cont-type1 {
    line-height: 2;
    color: #333;
    font-weight: 500;
}
.sub .cont-type1 h4 {
    font-size: max(16px,2rem);
    padding-top: 3rem;
    margin-top: 6rem;
    border-top: 1px solid #b7b7b7;
    text-align: right;
    font-weight: 700;
    line-height: 1.4;
}

/* 타입2 */
.sub .cont-type2 {
    color: #333;
    font-weight: 500;
}
.sub .cont-type2 .box {
    padding-block: 2.5rem;
    border-bottom: 1px solid #b7b7b7;
}
.sub .cont-type2 .box:first-child {
    padding-top: 0;
}
.sub .cont-type2 .box-tit {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--point-color);
    width: 24rem;
}
.sub.en .cont-type2 .box-tit {
    letter-spacing: -0.03em;
}

.sub .cont-type2 .box-cont {
    line-height: 1.7;
    width: calc(100% - 24rem);
}
@media (max-width:1200px) {
    .sub .cont-type2 .box-tit {
        width: 20rem;
    }
    .sub .cont-type2 .box-cont {
        width: calc(100% - 20rem);
    }
}
@media (max-width:1200px) {
    .sub .cont-type2 .box-tit {
        width: 100%;
        margin-bottom: 2rem;
    }
    .sub .cont-type2 .box-cont {
        width: 100%;
    }
}

/* 타입3 */
.sub .cont-type3 {
    font-weight: 500;
    letter-spacing: -0.05em;
}
.sub .cont-type3 .box {
    padding-block: 3rem;
    border-bottom: 1px solid #b7b7b7;
    color: #333;
}
.sub .cont-type3 .box:first-child {
    padding-top: 0;
}
.sub .cont-type3 h4 {
    font-size: max(17px,2.2rem);
    font-weight: 700;
    color: var(--point-color);
    margin-bottom: 0.5rem;
}
.sub .cont-type3 p {
    line-height: 2;
}

/* 타입4 */
.sub .cont-type4 p {
    font-weight: 500;
    line-height: 2;
}
.sub .cont-type4 > ul {
    margin-top: 3rem;
    gap: 1.5rem;
}
.sub .cont-type4 > ul > li {
    padding: 1.5rem 2rem;
    background: var(--bg-color);
    border-radius: 1.2rem;
    padding-left: calc(3rem + 2em);
    text-indent: -2.3em;
}
.sub .cont-type4 > ul > li .num {
    font-weight: 700;
    color: var(--point-color);
    padding-right: 1.5rem;
}

/* 타입5 */
.sub .cont-type5 {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 0 auto;
}
.sub .cont-type5 .box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
}
.sub .cont-type5 .box .img {
    width: 18rem;
    display: flex;
    border: 1px solid var(--bg-color);
    border-radius: 1.2rem;
    overflow: hidden;
}
.sub .cont-type5 .box .txt {
    width: calc(100% - 20rem);
    display: flex;
    flex-direction: column;
    background: var(--bg-color);
    padding:4.5rem;
    border-radius: 1.2rem;
}
.sub.en .cont-type5 .box .img {
    width: 20rem;
}
.sub.en .cont-type5 .box .img img {
    width: 100%;
}
.sub.en .cont-type5 .box .txt {
    width: calc(100% - 22rem);
}
.sub .cont-type5 .box .txt > h3 {
    font-size: 2.6rem;
    font-weight: 700;
    width: 100%;
    margin-bottom: 2rem;
}
.sub .cont-type5 .box .txt .info {
    display: grid;
    grid-template-columns: minmax(0, 3.3fr) minmax(0, 4fr) minmax(0, 5fr);
    grid-auto-flow: column;
    grid-template-rows: repeat(3,auto);
}
.sub .cont-type5 .box .txt .info.large {
    grid-template-columns: minmax(0, 3.3fr) minmax(0, 4.6fr) minmax(0, 5fr);
}
.sub.en .cont-type5 .box .txt .info,
.sub.en .cont-type5 .box .txt .info.large {
    grid-template-columns: repeat(2,1fr);
    grid-auto-flow: row;
    grid-template-rows: auto;
}


.sub .cont-type5 .box .txt ul {
    display: contents;
}

.sub .cont-type5 .box .txt ul li {
    display: flex;
    align-items: baseline;
    padding: 0.75rem 1rem;
    letter-spacing: -0.05em;
    justify-content: space-between;
    border-left: 1px solid #dfe2e5;
    height: fit-content;
    line-height: 1;
}

.sub .cont-type5 .box .txt ul li b {
    color: var(--point-color);
    white-space: nowrap;
    flex-shrink: 0;
    width: 8rem;
}
.sub .cont-type5 .box .txt ul li p,
.sub .cont-type5 .box .txt ul li a {
    word-break: break-all;
    width: calc(100% - 8rem);
}
.sub .cont-type5 .box .txt ul li:nth-of-type(6) ~ li p {
    width: calc(100% - 9rem);
}

.sub.en .cont-type5 .box .txt ul li b {
    width: 11rem;
}
.sub.en .cont-type5 .box .txt ul li p,
.sub.en .cont-type5 .box .txt ul li a,
.sub.en .cont-type5 .box .txt ul li:nth-of-type(6) ~ li p {
    width: calc(100% - 12rem);
}
.sub.en .cont-type5_1 .box .txt ul li {
    flex-direction: column;
}
.sub.en .cont-type5_1 .box .txt ul li p,
.sub.en .cont-type5_1 .box .txt ul li a,
.sub.en .cont-type5_1 .box .txt ul li:nth-of-type(6) ~ li p {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width:1200px) {
    .sub .cont-type5 .box .img {
        width: 17rem;
    }
    .sub .cont-type5 .box .txt {
        width: calc(100% - 19rem);
        padding: 3rem;
    }
}
@media (max-width:1080px) {
    .sub .cont-type5 .box .txt .info,
    .sub .cont-type5 .box .txt .info.large {
        grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
        grid-template-rows: repeat(4,auto);
        gap: 0 1rem;
    }
    .sub .cont-type5 .box .txt ul li {
        padding-inline: 0;
        border-left: 0;
    }
    .sub .cont-type5 .box .txt ul li p,
    .sub .cont-type5 .box .txt ul li a {
        width: calc(100% - 9rem);
    }
}
@media (max-width:768px) {
    .sub .cont-type5 .box .img,
    .sub.en .cont-type5 .box .img {
        width: 24rem;
    }
    .sub .cont-type5 .box .txt,
    .sub.en .cont-type5 .box .txt {
        width: calc(100% - 26rem);
    }
    .sub .cont-type5 .box .txt .info,
    .sub .cont-type5 .box .txt .info.large {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8,auto);
    }
    
    .sub.en .cont-type5 .box .txt .info,
    .sub.en .cont-type5 .box .txt .info.large {
        grid-template-columns: 1fr;
    }

}
@media (max-width:500px) {
    .sub .cont-type5 .box {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .sub .cont-type5 .box .img,
    .sub .cont-type5 .box .txt,
    .sub.en .cont-type5 .box .img,
    .sub.en .cont-type5 .box .txt {
        width: 100%;
    }
    .sub .cont-type5 .box .img img {
        width: 100%;
    }
    .sub .cont-type5 .box .txt ul li p,
    .sub .cont-type5 .box .txt ul li a,
    .sub .cont-type5 .box .txt ul li:nth-of-type(6) ~ li p {
        width: calc(100% - 10rem);
    }
}

.sub .cont-type5_1 {
    display: flex;
    flex-flow: row wrap;
    gap: 4rem 2.5rem;
}
.sub .cont-type5_1 .box {
    width: calc(50% - 1.25rem);
}
.sub .cont-type5_1 .box .txt .info,
.sub.en .cont-type5_1 .box .txt .info {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

@media (max-width:1080px) {
    .sub .cont-type5_1 .box {
        width: 100%;
    }
    .sub.en .cont-type5_1 .box .txt ul li {
        flex-direction: row;
    }
    .sub.en .cont-type5_1 .box .txt ul li b {
        width: 5rem;
    }
    .sub.en .cont-type5_1 .box .txt ul li p,
    .sub.en .cont-type5_1 .box .txt ul li a,
    .sub.en .cont-type5_1 .box .txt ul li:nth-of-type(6) ~ li p {
        width: calc(100% - 7rem);
        margin-top: 0;
    }
}

/* 링크걸리는 박스 */
.sub .link-box {
    display: grid;
    grid-template-columns: repeat(var(--box-num), 1fr);
    gap: 1.4rem;
}
.sub .link-box.link1 {
    grid-template-columns: repeat(1, 1fr);
}
.sub .link-box.link2 {
    grid-template-columns: repeat(2, 1fr);
}
.sub .link-box.link4 {
    grid-template-columns: repeat(4, 1fr);
}

.sub .link-box .box {
    padding: 2rem 2.3rem 2.5rem;
    border-radius: 1.2rem;
    background: #dff2ff;
    position: relative;
    color: #006db4;
}
.sub .link-box .box2 {
    background: #eaffe1;
    color :#4a9d24;
}
.sub .link-box .box3 {
    background: #f4f6f8;
    color: #6a6a6a;
}
.sub .link-box .box4 {
    background: #ffeee5;
    color: #df7138;
}


.sub .link-box .box span {
    font-size: max(13px,1.6rem);
    display: block;
    /* letter-spacing: -0.04em; */
}
.sub .link-box .box .tag {
    padding:0.2rem 1.3rem;
    border-radius: 3rem;
    border: 1px solid;
    display: inline-block;
}
.sub .link-box .box .tit {
    font-size: 2.6rem;
    font-weight: 700;
    margin-block: 1.3rem 1.8rem;
}
.sub .link-box .box i {
    font-size: 2.6rem;
    position: absolute;
    top:2rem;
    right:2.5rem;
}
@media (max-width:1080px) {
    .sub .link-box.link4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:768px) {
    .sub .link-box.link2,
    .sub .link-box.link4 {
        grid-template-columns: 1fr;
    }
}

/* 연혁 */
.history-wrap {
    position: relative;
    padding-bottom: 6rem;
}
.history-wrap .progress-bar {
    position: absolute; 
    left:50%; 
    top:0; 
    transform: translateX(-50%);
    width: 2px; 
    height: 100%; 
    background: #dadada;
}
.history-wrap .progress {
    position: absolute; 
    top:0; 
    left:0; 
    width: 100%; 
    background: var(--point-color);
}

.history-year {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: var(--point-color);
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 700;
    font-size: 2.4rem;
    color: #fff;
    margin-inline: auto;
    position: relative;
    margin-top: 5rem;
}
.history-year:first-child {
    margin-top: 0;
}
.history-year::before {
    content: "";
    position: absolute;
    bottom:0;
    left: 50%;
    transform: translate(-50%,50%);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--point-color);
}
.history-list-wrap {
    position: relative;
}
.history-list {
    width: 50%;
    padding-inline: 3.5rem;
    margin-top: 12rem;
    position: relative;
    z-index: 2;
}
.history-list::before {
    content: "";
    position: absolute;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--point-color);
    top: 0.2rem;
    right: 0;
    transform: translateX(50%);
}
.history-list:nth-of-type(2n+1)::before {
    right: auto;
    left: 0;
    transform: translateX(-50%);
}
.history-list:nth-of-type(2n) {
    text-align: right;
}
.history-list:nth-of-type(2n+1) {
    margin-inline: auto 0;
}
.history-list h4 {
    font-size: max(17px,2.4rem);
    font-weight: 700;
}
.history-list p {
    font-size: max(14px,1.9rem);
    margin-top: 0.3em;
}
@media (max-width:1200px) {
    .history-list {
        margin-top: 10rem;
    }
}
@media (max-width:768px) {
    .history-wrap .progress-bar {
        left:2rem; 
        transform: translateX(0);
    }
    .history-year {
        width: 100%;
        height: auto;
        border-radius: 0;
        background: #fff;
        display: block;
        text-align: left;
        color: var(--point-color);
        font-size: 3.2rem;
        padding-block: 1rem;
    }
    .history-year br {
        display: none;
    }
    .history-year::before {
        display: none;
    }
    .history-list {
        width: 100%;
        padding-inline: 6rem 0;
        margin-top: 5rem;
    }
    .history-list:nth-of-type(2n) {
        text-align: left;
    }
    .history-list:nth-of-type(2n+1)::before,
    .history-list::before {
        right: auto;
        left: 2rem;
        transform: translateX(-50%);
    }
}


/* 탭메뉴 슬라이드, progressbar, pagination숫자 */
.tab-slide-wrap {
    overflow: hidden;
}
.tab-slide-wrap .tab-menu {
    gap: 3rem;
    margin-bottom: 3rem;
}
.tab-slide-wrap .tab-menu li {
   
    color: #bdbdbd;
    font-weight: 700;
    padding-bottom: 0.5rem;
    position: relative;
    transition: color 0.3s;
    cursor: pointer;
}
.tab-slide-wrap .tab-menu li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom:0;
    height: 2px;
    width: 0;
    background: var(--point-color); 
    transition: width 0.3s;
}
.tab-slide-wrap .tab-menu li.active {
    color: var(--point-color);
}
.tab-slide-wrap .tab-menu li.active::before {
    width: 100%;
}

.tab-swiper .swiper-slide {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}
.tab-swiper .swiper-slide .img {
    width: min(596px,52%);
    display: flex;
    border-radius: 3rem;
    overflow: hidden;
}
.tab-swiper .swiper-slide .txt {
    width: 42%;
    margin-bottom: 5rem;
}
.tab-swiper .swiper-slide .txt h3 {
    font-size: 2.9rem;
    font-weight: 700;
}
.tab-swiper .swiper-slide .txt .tag {
    margin-top: 3.5rem;
    gap: 1.2rem;
}
.en .tab-swiper .swiper-slide .txt .tag {
    margin-top: 2rem;
    gap: 0.8rem;
}
.tab-swiper .swiper-slide .txt .tag li {
    font-size: 2rem;
    color: #858585;
    padding: 0.8rem 1.8rem;
    border-radius: 4rem;
    border: 1px solid; 
}
.en .tab-swiper .swiper-slide .txt .tag li {
    font-size: max(13px,1.6rem);
    letter-spacing: -0.05em;
}

.tab-slide-wrap .nav-bar {
    position: absolute;
    width: 42%;
    right: 0;
    bottom: 3rem;
    z-index: 9;
    align-items: center;
   
    gap: .5rem;
}
.tab-slide-wrap .nav-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.tab-slide-wrap .progress-wrap {
    width: 8rem;
    height: 3px;
    background: #e7e7e7;
    margin-inline: 0.5rem;
}
.tab-slide-wrap .progress-bar {
    height: 100%;
    background: #000;
}
@media (max-width:768px) {
    .tab-swiper .swiper-slide .img {
        width: 100%;
        margin-bottom: 4rem;
    }
    .tab-swiper .swiper-slide .img img {
        width: 100%;
    }
    .tab-swiper .swiper-slide .txt {
        width: 100%;
        margin-bottom: 0;
    }
    .tab-slide-wrap .nav-bar {
        margin-top: 6rem;
        position: static;
        width: 100%;
        justify-content: center;
    }
}

/* 학사일정 */
.schedule-wrap {
    margin-top: 8rem;
    font-size: max(13px,1.8rem);
}
.schedule-wrap .term {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid #000;
}
.schedule-wrap .month-wrap {
    display: grid;
    grid-template-columns: 16rem 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    position: relative;
}
.schedule-wrap .month-wrap:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: url(../img/sub/sub33_img01.png) bottom left ;
}
.schedule-wrap .month-wrap:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
.schedule-wrap .month {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--bg-color);
    color: var(--point-color);
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
}
.schedule-wrap .date-wrap {
    padding-block: 3rem;
}
.schedule-wrap .date-wrap li {
    display: flex;
    flex-flow: row wrap;
    gap: 3rem;
    letter-spacing: -0.05em;
    margin-bottom: 1.8rem;
}
.schedule-wrap .date-wrap li:last-child {
    margin-bottom: 0;
}
.schedule-wrap .date-wrap li .date {
    width: min(195px,20rem);
}
.schedule-wrap .date-wrap li .content {
    width: calc(100% - 23rem);
    max-width: fit-content;
    position: relative;
}
.schedule-wrap .date-wrap li p {
    display: inline;
    position: relative;
}
.schedule-wrap .date-wrap li .hl p {
    font-weight: 700;
    box-shadow: inset 0 -.4em 0 #cce2f0;
}
.schedule-wrap .date-wrap li .holidays.content  {
    padding-right: 7rem;
}
.schedule-wrap .date-wrap li .holidays.content::before {
    content:"공휴일";
    position: absolute;
    top:-0.15rem;
    right: 0;
    font-size: .88em;
    font-weight: 400;
    padding: 0.25rem 1rem;
    border-radius: 3rem;
    color: #e54242;
    border: 1px solid #e54242;
}
@media (max-width:768px) {
    .schedule-wrap .month-wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .schedule-wrap .month {
        padding-block: 3rem;
    }
    .schedule-wrap .date-wrap li {
        gap: 1rem;
    }
    .schedule-wrap .date-wrap li .date {
        letter-spacing: -0.07em;
    }
    .schedule-wrap .date-wrap li .content {
        width: calc(100% - 21.5rem);
    }
}
@media (max-width:500px) {

}


/* 연구실소개 뷰페이지 내용 */
.lab-content {
    font-size: max(14px,1.8rem);
    line-height: 1.8;
    margin-bottom: 5rem;
}
.lab-content ul {
    margin-top: 2.5rem;
}
.lab-content ul li {
    padding: 1.5rem 0 1.5rem 3.5rem ;
    border-bottom: 1px solid #c5c5c5;
    position: relative;
}
.lab-content ul li b {
    position: absolute;
    left: 0;
    color: var(--point-color);
}

/* sub14 연혁 */
.sub13 .cont-tit {
    margin-block: 9rem 5rem;
    font-size: 2.8rem;
    line-height: 1.4;
    text-align: center;
}
.sub13 .cont-tit h2 {
    font-size: 1.15em;
    margin-top: 0.25em;
    font-weight: 700;
}
.sub13 .cont-tit h2 span {
    color: var(--point-color);
}
.sub13 .history-list-wrap .bg {
    z-index: 1;
}
.sub13 .history-list-wrap .bg img {
    filter: grayscale(1);
}
.sub13 .history-list-wrap .bg {
    position: absolute;
    left: 0;
    top:0;
    max-width: 25rem;
}
.sub13 .history-list-wrap .bg img {
    max-width: 100%;
}
.sub13.en .history-list-wrap1 .bg {
    top: 15%;
}
.sub13 .history-list-wrap1 .bg::before {
    content: "";
    position: absolute;
    top:0;
    left: 0;
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    background: var(--point-color);
    border-radius: 50%;
    transform: translate(-15%,-15%);
}
.sub13 .history-list-wrap2 .bg {
    left: auto;
    right: 0;
    transform: translateY(-100%);
}
.sub13 .history-list-wrap2 .bg::before {
    content: "";
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../img/sub/sub13_img04.png) no-repeat center center / contain ;
    border-radius: 50%;
    transform: translate(20%,-20%);
}
.sub13 .history-list-wrap3 .bg {
    transform: translateY(-120%);
}
@media (max-width:1320px) {
    .sub13 .history-list-wrap .bg {
        left: 2%;
    }
    .sub13 .history-list-wrap2 .bg {
        left: auto;
        right: 2%;
    }
}
@media (max-width:1080px) {
    .sub13 .history-list-wrap .bg {
        display: none;
    }
}


/* 졸업 후 진로 */
.sub14 .tab-slide-wrap {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #b7b7b7;
}
@media (min-width:1201px) {
    .sub14 .cont-type4 li:first-child:not(.num) {
        letter-spacing: -0.08em;
    }
}


/* 오시는길 */
.sub16  .sub-content {
    margin-top: 7.5rem;
    letter-spacing: -0.04em;
}
.sub16 .title {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}
.sub16 .title h3 {
    font-size: 3.4rem;
    font-weight: 700;
}
.sub16 .title h3 span {
    font-size: 0.825em;
    color: var(--point-color);
    padding-left: 1rem;
}
.sub16.en .title h3 span {
    font-size: 0.8em;
}
.sub16 .title ul {
    gap: 2rem;
}
.sub16.en .title ul {
    width: 100%;
    margin-top: 2rem;
}
.sub16 .title li {
    align-items: center;
    font-size: max(13px,1.7rem);
    gap: 1rem;
}
.sub16 .title .icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    background: var(--point-color);
    border-radius: 50%;
}
.sub16 .title .icon img {
    max-height: 60%;
}
.sub16 .title li:nth-of-type(2) .icon img {
    max-width: 50%;
}
.sub16 .map {
    border-radius: 3rem;
    overflow: hidden;
    display: flex;
}
.sub16 .link {
    margin-top: 2rem;
    padding: 2.5rem 3rem;
    background: var(--bg-color);
    border-radius: 1.5rem;
    align-items: center;
    justify-content: space-between;
}
.sub16 .link h4 {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 2rem;
    font-size: 2.4rem;
}
.sub16.en .link h4 {
    width: 100%;
    font-size: 2.2rem;
}
.sub16 .link h4 span {
    max-width: calc(100% - 5rem);
}
.sub16 .link h4 img {
    width: 2.2rem;
}
.sub16 .link a {
    padding: 0.9rem 2rem;
    border-radius: 3rem;
    background: #fff;
    color: var(--point-color);
    font-weight: 700;
}
.sub16.en .link a {
    margin-inline: auto 0;
}
.sub16 .list {
    margin-top: 4rem;
}
.sub16 .list h4 {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
}
.sub16 .list h4 img {
    width: 3rem;
    margin-right: 1rem;
}
.sub16 .list ul {
    gap: 2rem;
}
.sub16 .list ul li {
    margin-bottom: 2rem;
}
.sub16 .list-subway ul li {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* 내용관리 인라인 스타일태그가 안먹힘..*/
.sub16 .list-subway li span {
    padding: 0.5rem 1.1rem;
    border-radius: 0.6rem;
    background: var(--bg);
    font-weight: 700;
    color: #fff;
} 

/* .sub16 .list-subway li span {
    padding: 0.3rem 1.1rem;
    border-radius: 0.6rem;
    background: #ac8c03;
    font-weight: 700;
    color: #fff;
}
.sub16 .list-subway li span.subway2 {
    background: #788900;
}
.sub16 .list-subway li span.subway3 {
    background: #2c9ede;
} */


.sub16 .list-subway ul li p {
    max-width: calc(100% - 10rem);
    line-height: 3.2rem;
}
.sub16 .cont:not(:last-child) {
    padding-bottom: 7rem;
}
.sub16 .banner {
    padding: 2.5rem 5rem;
    border-radius: 1.6rem;
    background: url(../img/sub/sub16_img03.jpg) no-repeat center right / cover ;
    justify-content: space-between;
    align-items: center;
}
.sub16 .banner h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
}
.sub16 .banner a {
    padding: 1.3rem 2rem;
    border-radius: 3rem;
    background: #fff;
   
    font-weight: 700;
    color: var(--point-color);
    display: flex;
    align-items: center;
}
.sub16 .banner a img {
    width: 2.3rem;
    filter: invert(72%) sepia(95%) saturate(1163%) hue-rotate(179deg) brightness(100%) contrast(102%);
}
@media (max-width:1080px) {
    .sub16 .title ul {
        width: 100%;
        margin-top: 2rem;
    }
    .sub16 .link h4 {
        font-size: 2.2rem;
    }
}
@media (max-width:786px) {
    .sub16 .link h4 {
        font-size: 2.4rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    .sub16 .link h4 img {
        width: 2rem;
    }
    .sub16 .link a {
        margin-inline: auto 0;
    }
    .sub16.en .banner {
        justify-content: center;
    }
    .sub16.en .banner h3 {
        width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }
}
@media (max-width:500px) {
    /* .sub16 .banner {
        padding-inline: 2rem;
    }
    .sub16 .banner a {
        font-size: 13px;
        padding:1rem;
    } */
    .sub16 .banner {
        justify-content: center;
    }
    .sub16 .banner h3 {
        width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }
}


/* 교수진 */
.sub21 .cont {
    display: none;
}
.sub21 .cont.on {
    display: flex;
}

/* 학생회 */
.sub22 .banner-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8rem;
    margin-top: 6rem;
}
.sub22 .banner-wrap > div,
.sub22 .banner-wrap > a {
    align-items: center;
    gap: 1.5rem;
    position: relative;
    font-size: 2.6rem;
    background: #ffe0eb;
    padding: 1.7rem 7rem 1.7rem 2.5rem;
    border-radius: 1.2rem;
    color: #ed2466;
}
.sub22 .banner-wrap .tit {
    font-weight: 700;
}
.sub22 .banner-wrap .icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #d91052;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub22 .banner-wrap .icon img {
    width: 55%;
}
.sub22 .banner-wrap i {
    position: absolute;
    right: 3.5rem;
}
.sub22 .banner-wrap .banner2 {
    color: #3c1e1e;
    background: #fff8ca;
}
.sub22 .banner-wrap .banner2 .icon {
    background: #fae100;
}
@media (max-width:1200px) {
    .sub22 .banner-wrap {
        gap: 4rem;
    }
    .sub22 .banner-wrap > div,
    .sub22 .banner-wrap > a {
        font-size: 2.3rem;
    }
}
@media (max-width:768px) {
    .sub22 .banner-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* 동아리 */
.sub23 .cont:not(:first-child) {
    margin-top: 9rem;
}
.sub23 .cont .img {
    justify-content: space-between;
    margin-bottom: 5rem;
}
.sub23 .cont .img img {
    width: min(590px,49%);
    border-radius: 1.2rem;
}
.sub23 .cont .txt p {
    line-height: 2;
    padding-left: 1em;
    position: relative;
}
.sub23 .cont .txt p::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
}
.sub23 .cont .txt p + p {
    margin-top: 2rem;
}
@media (max-width:500px) {
    .sub23 .cont .img {
        gap: 1.5rem;
    }
    .sub23 .cont .img img {
        width: 100%;
    }
}

/* 동문회 */
.sub24 .cont1 p {
    line-height: 2;
    letter-spacing: -0.042em;
}
.sub24 .cont:not(:first-child) {
    margin-top: 12rem;
}
.sub24 .cont2 .img {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 3rem 3.5rem;
    border-radius: 1.2rem;
    border: 1px solid #dadada;
}


/* 학부 교육과정 */
.sub31 .cont:not(:first-child) {
    margin-top: 7rem;
}
.sub31 .cont3 th {
    vertical-align: middle;
}
.sub31 .cont3 .table-type2 td { 
    padding-inline: 1rem;
}
.sub31.en .cont3 .table-type2 td {
    font-size: 0.95em;
}
.sub31.en .cont3 .table-type2 td span { 
    display: inline-block;
    line-height: 1.4;
}
.sub31 .cont3 .img {
    margin-top: 4rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    /* padding-inline: 3.5rem; */
    /* border-radius: 1.2rem; */
    border: 1px solid #dadada;
}

/* 학부 공학교육인증제도 */
.sub32 .cont:not(:first-child) {
    margin-top: 8rem;
}
.sub32 .cont .img {
    margin-top: 4rem;
    text-align: center;
}

/* 학부 장학제도 */
.sub34 .cont:not(:first-child) {
    margin-top: 8rem;
}


/* 대학원 교육과정 */
.sub41 .cont:not(:first-child) {
    margin-top: 7rem;
}
.sub41 .cont > p {
    line-height: 2;
}
.sub41 .cont3 th {
    vertical-align: middle;
}
.sub41 .cont3 .table-type2 td { 
    padding-inline: 1rem;
}
.sub41 .cont3 .img {
    margin-top: 4rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding-inline: 3.5rem;
    /* border-radius: 1.2rem; */
    border: 1px solid #dadada;
}