@charset "utf-8";

.inner {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 35px;
    box-sizing: border-box;
}
.inner h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 47px;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 3px;
}
.inner_title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.inner_title p {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
}
.inner_title #more_btn {
    display: block;
    font-size: 0;
    width: 35px; height: 35px;
    background: url('../images/main/more_btn.svg') center center no-repeat;
}
#more_btn:hover {
    background: url('../images/main/more_btn_hover.svg') center center no-repeat;
}
@media screen and (max-width: 768px) {
    .inner {
        padding: 0 16px;
    }
    .inner h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 4px;
    }
    .inner_title {
        margin-bottom: 24px;
    }
    .inner_title p {
        font-size: 14px;
        line-height: 16px;
    }
    .inner_title #more_btn {
        width: 18px; height: 18px;
        background-size: contain;
    }
}

/* header */
header {
    z-index: 99;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 2px solid #1C1C1C;
    box-sizing: border-box;
}
header#sub {
    backdrop-filter: none;
    background-color: #fff;
}
header .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header h1 {
    width: 302px; height: 39px;
    flex-shrink: 0;
    margin-right: 20px;
}
header h1 a {
    display: block;
    width: 100%; height: 100%;
    font-size: 0;
    background: url('../images/main/logo.svg') center center no-repeat;
}
header .nav_right {
    width: 100%;
    max-width: 756px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .nav_menu {
    width: 100%; height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .nav_menu > li {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}
header .nav_menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    display: block;
    width: 0; height: 2px;
    background-color: #1C1C1C;
    transition: all 0.2s;
}
header .nav_menu > li > a:hover {
    font-weight: 700;
}
header .nav_menu > li > a:hover::after {
    width: 100%;
    left: 0;
}
header .nav_menu > li:not(:last-of-type) {
    margin-right: 20px;
}
header .nav_menu > li > a {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.05em;
}
header .nav_button {
    width: 100%;
    max-width: 180px;
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
}
header .nav_button button {
    font-size: 0;
    width: 29px; height: 29px;
}
header .nav_button li:nth-of-type(3) a {
    display: block;
    font-size: 0;
    width: 29px; height: 29px;
}
header .nav_button li:nth-of-type(3) a {
    background: url('../images/main/menu_icon.svg') center center no-repeat;
}
header .nav_button li:nth-of-type(3) button {
    display: none;
    background: url('../images/main/menu_icon.svg') center center no-repeat;
}
header .nav_button li:nth-of-type(2) button {
    background: url('../images/main/search_icon.svg') center center no-repeat;
}
header .nav_button li:nth-of-type(3) a:hover {
    background: url('../images/main/menu_icon_hover.svg') center center no-repeat;
}
header .nav_button li:nth-of-type(2) button:hover {
    background: url('../images/main/search_icon_hover.svg') center center no-repeat;
}
header .nav_button li:nth-of-type(1) > div {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 82px; height: 29px;
    border: 2px solid #1C1C1C;
    border-radius: 15px;
    box-sizing: border-box;
}
header .nav_button li:nth-of-type(1) > div a {
	white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    width: 36px;
}
header .nav_button li:nth-of-type(1) > div a:nth-of-type(2) {
    /* padding-left: 6px; */
    transition: color 0.3s;
}
header .nav_button li:nth-of-type(1) > div.kr a:nth-of-type(1) {
    color: #fff;
    transition: color 0.3s;
}
header .nav_button li:nth-of-type(1) > div.kr::after {
    content: '';
    z-index: -1;
    position: absolute;
    left: -2px; top: 0;
    display: block;
    height: 100%; width: 44px;
    border-radius: 14px;
    background-color: #1C1C1C;
    padding: 0;
    flex-shrink: 0;
    transition: all 0.3s;
}
header .nav_button li:nth-of-type(1) > div.kr:hover::after {
    left: 36px;
}
header .nav_button li:nth-of-type(1) > div.kr:hover a:nth-of-type(1) {
    color: #1C1C1C;
}
header .nav_button li:nth-of-type(1) > div.kr:hover a:nth-of-type(2) {
    color: #fff;
}

header .nav_button li:nth-of-type(1) > div.en a:nth-of-type(2) {
    color: #fff;
    transition: color 0.3s;
}
header .nav_button li:nth-of-type(1) > div.en a:nth-of-type(1) {
    color: #1C1C1C;
    transition: color 0.3s;
}
header .nav_button li:nth-of-type(1) > div.en::after {
    content: '';
    z-index: -1;
    position: absolute;
    left: 36px; top: 0;
    display: block;
    height: 100%; width: 44px;
    border-radius: 14px;
    background-color: #1C1C1C;
    padding: 0;
    flex-shrink: 0;
    transition: all 0.3s;
}
header .nav_button li:nth-of-type(1) > div.en:hover::after {
    left: 0;
}
header .nav_button li:nth-of-type(1) > div.en:hover a:nth-of-type(1) {
    color: #fff;
}
header .nav_button li:nth-of-type(1) > div.en:hover a:nth-of-type(2) {
    color: #1C1C1C;
}
header .nav_box {
    position: absolute;
    left: -9999px; bottom: -70px;
    opacity: 0.1;
    height: 70px;
}
header .nav_box.active {
    left: 2px;
    opacity: 1;
}
header .nav_box ul {
    position: relative;
    display: flex; align-items: center;
    width: 100vw; height: 100%;
}
header .nav_box ul::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%; height: 100%;
    left: -100%;
}
header .nav_box ul li {
    margin-right: 40px;
}
header .nav_box ul li a {
    font-size: 16px;
}
header .nav_box ul li a:hover {
    font-weight: 700;
}
header .nav_bg {
    z-index: -1;
    position: relative;
    width: 100%; height: 70px;
    border-top: 1px solid #1C1C1C;
}
header .search_con {
    display: none;
    width: 100%;
    border-top: 1px solid #1C1C1C;
    padding: 30px 0;
}
header .search_inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; max-width: 1470px;
    padding: 0 35px;
    margin: 0 auto;
}
header .search_inner .search_box {
    display: flex;
    align-items: center;
}
header .search_inner .search_box div input {
    width: 428px; height: 36px;
    padding-left: 14px;
    border-radius: 22px;
    outline: none;
    border: 1px solid #1C1C1C;
}
header .search_inner .search_box div input::placeholder {
    font-family: 'pretendard';
    font-size: 14px;
    font-weight: 500;
    color: #9D9D9D;
}
header .search_inner .search_box div {
    margin-right: 8px;
}
header .search_inner .search_box button {
    width: 26px; height: 26px;
    font-size: 0;
    background: url('../images/main/search_icon_small.svg') center center no-repeat;
}
header .search_inner .search_cancel {
    width: 36px; height: 36px;
    background: url('../images/main/search_cancel.svg') center center no-repeat;
    position: absolute;
    right: 35px;
    font-size: 0;
}
/* �깭釉붾┸ */
@media screen and (max-width: 1200px) {
    header h1 {
        width: 280.2px;
        height: 36px;
    }
    header h1 a {
        background-size: contain;
    }
    header .nav_menu {
        display: none;
    }
    header .nav_right {
        width: auto;
        height: 64px;
    }
    header .nav_button {
        margin-left: 0;
    }
    header .nav_button li {
        margin-left: 20px;
    }
    header .nav_button li:nth-of-type(1) > div {
        width: 64px; height: 24px;
    }
    /*header .nav_button li:nth-of-type(1) > div a.on {
        width: 34px;
    }*/
    header .nav_button li:nth-of-type(1) > div a {
        font-size: 12px;
        padding: 0 9px;
        width: 28px;
    }
    header .nav_button button {
        width: 24px; height: 24px;
        background-size: cover;
    }
    header .nav_button li:nth-of-type(3) a {
        display: none;
    }
    header .nav_button li:nth-of-type(3) button {
        display: block;
    }
    header .nav_button li:nth-of-type(1) > div.kr::after {
        width: 34px; height: 24px;
        top: -2px; left: -2px;
    }
    header .nav_button li:nth-of-type(1) > div.kr:hover::after {
        left: 28px;
    }
    header .nav_button li:nth-of-type(1) > div.en::after {
        width: 34px; height: 24px;
        top: -2px; left: 28px;
    }
    header .nav_button li:nth-of-type(1) > div.en:hover::after {
        left: -2px;
    }
}
@media screen and (max-width: 768px) {
    header h1 {
        width: 186px; height: 24px;
        margin: 0;
    }
    header .nav_right {
        height: 56px;
    }
    header .nav_button li {
        margin-left: 10px;
    }
    header .search_con {
        padding: 16px 0;
    }
    header .search_inner {
        padding: 0 16px;
        justify-content: flex-start;
    }
    header .search_inner .search_cancel {
        right: 16px;
    }
    header .search_inner .search_box div input {
        width: 100%;
    }
    header .search_inner .search_box {
        width: calc(100% - 41px);
    }
    header .search_inner .search_box div {
        width: calc(100% - 34px);
    }
}
@media screen and (max-width: 320px) {
	header h1 {
		width: 105px;
	}
}

/* .main_visual */
.main_visual {
    position: relative;
    /* height: 684px; */
    padding: 120px 0;
}
.main_visual .swiper {
    overflow: visible;
    width: 100%;
}
.main_visual .swiper-slide {
    position: relative;
    padding-right: 35px;
}
.main_visual .swiper-slide .slide_box {
    display: flex;
    align-items: flex-end;
}
.main_visual .swiper-slide .slide_img_box {
    position: relative;
    width: 100%; 
    max-width: 683px;
    height: 684px;
    text-align: right;
    margin-right: 50px;
    flex-shrink: 0;
}
.main_visual .swiper-slide .slide_img_box img {
    position: absolute;
    right: 0; height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.main_visual .swiper-slide .slide_text_box {
    max-width: 658px;
    width: 100%;
    padding-bottom: 82px;
}
.main_visual .swiper-slide .slide_text_box > span {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #1C1C1C;
    margin-bottom: 24px;
}
.main_visual .swiper-slide .slide_text_box .img_title {
    margin-bottom: 24px;
}
.main_visual .swiper-slide .slide_text_box .img_title strong {
    font-size: 80px;
    line-height: 98px;
    font-weight: 800;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    word-break: break-all;
    width: 100%;
    max-height: 294px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.main_visual .swiper-slide .slide_text_box .img_writer {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 10px;
}
.main_visual .swiper-slide .slide_text_box .date {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}
/* 2023-11-29 메인 슬라이드 버튼 영역 수정 */
.main_visual .swiper-slide .slide_text_box .btn_detail {
	height: 40px;
	margin-top: 50px;
}
.main_visual .swiper-slide .slide_text_box .btn_detail > a {
	margin: 0;
}
/* 2023-11-29 메인 슬라이드 버튼 영역 수정 */
.main_visual .swiper-slide .slide_text_box a {
    position: relative;
    display: block;
    width: 117px;
    margin-top: 50px;
    background-color: #1C1C1C;
    color: #fff;
    padding: 8px 37px 8px 10px;
}

.main_visual .swiper-slide .slide_text_box a:hover::after {
    right: -4px;
}
.main_visual .swiper-slide .slide_text_box a::after {
    content: '';
    display: block;
    width: 35px; height: 35px;
    background: url('../images/main/more_arrow.svg') center center no-repeat;
    position: absolute;
    right: 2px; top: 1px;
    transition: all 0.2s;
}
.main_visual .inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    text-align: right;
    bottom: 49px;
    width: 100%;
}
.main_visual .inner .wall {
    max-width: 683px;
    width: 100%;
    margin-right: 50px;
}
.main_visual .swiper-slide {
    background-color: #fff;
    width: 100%!import;
}
.main_visual .swiper-slide-active {
    opacity: 1 !important;
}
.main_visual .slide_ctrl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    width: 100%; max-width: 668px;
}
.main_visual .big_ctrl {
    display: block;
    z-index: 3;
    opacity: 0;
    position: absolute;
    top: -634px;
    background-color: transparent;
    width: 500px; height: 600px;
    background-image: url('../images/main/main_big_arrow.svg');
    background-repeat: no-repeat;
    transition: all 0.3s;
}
.main_visual .big_ctrl.main-prev-big {
    transform: rotate(180deg);
    background-position: left center;
    left: -309px;
}
.main_visual .big_ctrl.main-next-big {
    background-position: left center;
    right: -309px;
}
.main_visual .big_ctrl.main-next-big:hover, .main_visual .big_ctrl.main-prev-big:hover {
    opacity: 1;
}
.main_visual .slide_ctrl > div:nth-of-type(1) {
    display: flex;
    align-items: center;
    width: calc(100% - 60px);
}
.main_visual .slide_ctrl .main-prev, .main_visual .slide_ctrl .main-next {
    cursor: pointer;
    width: 24px; height: 24px;
    background-color: transparent;
    background-image: url('../images/main/slide_arrow.svg');
    background-position: center center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: transform 0.5s;
}
.main_visual .slide_ctrl .main-prev:hover {
    transform: translateX(-4px);
}
.main_visual .slide_ctrl .main-next:hover {
    transform: rotate(180deg) translateX(-4px);
}
.main_visual .slide_ctrl .main-next {
    transform: rotate(180deg);
}
.main_visual .slide_ctrl .main-number {
    font-size: 0;
    display: flex;
    justify-content: space-between;
    max-width: 530px;
    width: 100%;
}
.main_visual .slide_ctrl .main-number span {
    font-size: 16px;
    text-shadow: none;
}
.main_visual .slide_ctrl .main-pagination {
    position: relative;
    height: 2px; width: 100%;
    max-width: 514px;
    background-color: #D4D4D4;
    margin: 0 16px;
}
.main_visual .slide_ctrl .main-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: #1C1C1C !important;
}
.main_visual .slide_ctrl .autoplay-progress span {
    font-size: 0;
}
.main_visual .slide_ctrl div {
    word-break: keep-all;
}
.main_visual .slide_ctrl .autoplay-progress .btn_stop_play {
    z-index: 11;
    display: block;
    cursor: pointer;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    background-image: url('../images/main/slide_pause.svg');
    background-position: center center;
    background-repeat: no-repeat;
    width: 30px; height: 30px;
}
.main_visual .slide_ctrl .autoplay-progress .btn_stop_play:hover {
    background-image: url('../images/main/slide_play.svg');
	left: 26px;
    top: 23px;
}
.main_visual .slide_ctrl .autoplay-progress .btn_stop_play.stop {
    background-image: url('../images/main/slide_play.svg');
	left: 26px;
    top: 23px;
}
.autoplay-progress {
    position: relative;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
}
.border {
    fill: none;
    stroke: #D4D4D4;
    stroke-width: 1.5;
}
.progress {
    fill:none;
    stroke: #1C1C1C;
    stroke-width: 3;
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
    transform-origin: center;
    transform: rotate(-90deg);

}
.progress.time_animation {
    animation: progress 7s linear infinite;
}
/* progress �븷�땲硫붿씠�뀡 */
@keyframes progress {
    100%
    {
        stroke-dashoffset: 0;
    }
}

/* no_data */
.main_visual:has(.no_data) > .inner {
    display: none;
}
.main_visual:has(.no_data) .no_data .inner {
    position: relative;
    justify-content: flex-start;
    align-items: flex-end;
    bottom: 0;
    height: 100%;
}
.main_visual .swiper-slide.no_data {
    background-color: #EEEEEE;
    height: 684px;
    padding: 0;
}
.main_visual .swiper-slide.no_data img {
    margin-bottom: 120px;
}
@media screen and (max-width: 1200px) {
    .main_visual .big_ctrl {
        display: none;
    }
    .main_visual {
        margin-top: 64px;
        height: auto;
    }
    .main_visual .swiper-slide .slide_box {
        flex-direction: column;
        align-items: flex-start;
    }
    .main_visual .swiper-slide {
        padding: 0;
    }
    .main_visual .swiper-slide .slide_img_box {
        display: flex;
        justify-content: center;
        width: 100%; height: 550px;
        margin: 0;
        background-color: #1C1C1C;
    }
    .main_visual .swiper-slide .slide_img_box img {
        position: relative;
        right: 0;
    }
    .main_visual .swiper-slide .slide_text_box {
        max-width: 100%;
        padding: 0 35px;
        margin-top: 24px;
    }
    .main_visual .swiper-slide .slide_text_box .img_title strong {
        font-size: 50px;
        line-height: 59px;
        height: 59px;
        -webkit-line-clamp: 1;
    }
    /* 2023-11-29 메인 슬라이드 버튼 영역 수정 */
    .main_visual .swiper-slide .slide_text_box .btn_detail{
    	margin: 24px 0;
    }
    /* 2023-11-29 메인 슬라이드 버튼 영역 수정 */
    .main_visual .swiper-slide .slide_text_box a {
        margin: 24px 0;
    }
    .main_visual .inner {
        bottom: 0;
    }
    .main_visual .inner .wall {
        display: none;
    }
    .main_visual .slide_ctrl {
        max-width: 100%;
    }
    .main_visual .slide_ctrl .main-pagination {
        max-width: 100%;
    }

    /* no_data */
    .main_visual:has(.no_data) .no_data {
        height: 915px;
    }
    .main_visual .swiper-slide.no_data img {
        width: 418px; height: 120px;
        margin-bottom: 70px;
    }
}
@media screen and (max-width: 768px) {
    .main_visual {
        margin-top: 58px;
    }
    .main_visual .swiper-slide .slide_img_box {
        height: 258px;
    }
    .main_visual .swiper-slide .slide_text_box {
        padding: 0 15px;
        margin-top: 16px;
    }
    .main_visual .swiper-slide .slide_text_box > span {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .main_visual .swiper-slide .slide_text_box .img_title {
        margin-bottom: 20px;
    }
    .main_visual .swiper-slide .slide_text_box .img_title strong {
        font-size: 30px;
        line-height: 35px;
        height: 35px;
    }
    .main_visual .swiper-slide .slide_text_box .img_writer {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 8px;
    }
    .main_visual .swiper-slide .slide_text_box .date {
        font-size: 16px;
        line-height: 19px;
    }
    .main_visual .swiper-slide .slide_text_box a {
        width: 100px;
        margin-top: 20px;
        margin-bottom: 30px;
        font-size: 14px;
        padding: 8px;
        padding-right: 32px;
    }
    .main_visual .swiper-slide .slide_text_box a::after {
        width: 32px; height: 32px;
        right: 0; top: 1px;
    }
    .main_visual:has(.no_data) .no_data {
        height: 562px;
    }
    .main_visual:has(.no_data) .no_data img {
        width: 196px; height: 56px;
        margin-left: 24px; margin-bottom: 40px;
    }
}
.m_header {
    position: fixed;
    z-index: 100;
    top: 0; left: auto;
    width: 383px;
    height: 100%;
    display: block;
    right: -383px;
    /* right: 0; */
    background-color: #fff;
    transition: all 0.5s;
    backdrop-filter: none;
}
.m_header .gnb_box_mb {
    position: relative;
    z-index: 101;
    height: 100%;
    background-color: #fff;
}
.m_header .gnb_box_mb p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    box-sizing: border-box;
    background-color: #1C1C1C;
}
.m_header .gnb_box_mb p img {
    width: 203px; height: 26px;
}
.m_header .gnb_box_mb p button {
    display: block;
    width: 28px; height: 28px;
    background: url('../images/main/gnb_cancel.png') center center no-repeat;
    font-size: 0;
}
.m_header .gnb_box_mb .gnb_mb {
    padding: 24px 20px;
}
.m_header .gnb_box_mb .gnb_mb > li {
    margin-bottom: 24px;
}
.m_header .gnb_box_mb .gnb_mb > li:last-of-type {
    margin-bottom: 0;
}
.m_header .gnb_box_mb .gnb_mb > li > a > span {
    border-bottom: 2px solid #1C1C1C;
}
.m_header .gnb_box_mb .gnb_mb > li > a.plus > span {
    font-size: 20px;
    font-weight: 700;
    background: url('../images/main/lnb_arrow.svg') right top no-repeat;
}
.m_header .gnb_box_mb .gnb_mb > li > a.plus.open > span {
    background: url('../images/main/sub_cancel.svg') right top no-repeat;
}
.m_header .gnb_box_mb .gnb_mb > li > a > span {
    display: block;
    padding-bottom: 10px;
    font-weight: 500;
}
.m_header .gnb_box_mb .gnb_mb .sub {
    display: none;
}
.m_header .gnb_box_mb .gnb_mb .sub li {
    padding-left: 20px;
    box-sizing: border-box;
    margin-bottom: 10px;
    line-height: 19px;
    background: url('../images/main/lnb_bullet.svg') left top 2px no-repeat;
}
.m_header .gnb_box_mb .gnb_mb .sub li:last-of-type {
    margin-bottom: 0;
}
.m_header .gnb_box_mb .gnb_mb .sub li span {
    font-size: 16px;
    color: #1C1C1C;
    font-weight: 600;
}
.m_header .mask {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    background: rgba(0,0,0,0.5);
    transition: 0.5s linear;
}
@media screen and (max-width: 1200px) {
    .m_header {
        display: block;
    }
    .m_header {
        width: 360px;
    }
    .m_header .gnb_box_mb .gnb_mb .sub {
        padding-top: 16px;
    }
}
/* programs */
.programs {
    /* padding: 120px 0; */
   margin-top: 141px;
} 
.programs .inner {
    position: relative;
    text-align: center;
}
.programs h2 {
    margin-bottom: 3px;
}
.programs .program_wrap {
    display: flex;
    align-items: center;
}
.programs .program_swiper {
    position: relative;
    margin-left: 0;
}
.programs .program_swiper .swiper-slide {
    position: relative;
    height: 517px;
    width: 320px !important;
}
.programs .program_swiper .swiper-slide a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 40px;
    height: 100%;
    border-bottom: 2px solid #1C1C1C;
}
.programs .program_swiper .swiper-slide a .program_img {
    width: 320px; height: 320px;
    background-image: url('../images/main/what_01.png');
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.programs .program_swiper .swiper-slide:nth-of-type(1) a .program_img {
    background-image: url('../images/main/archive_02.png');
}
.programs .program_swiper .swiper-slide:nth-of-type(3) a .program_img {
    background-image: url('../images/main/program_no_img.png');
}
.programs .program_swiper .swiper-slide .program_slide_text {
    text-align: left;
}
.programs .program_swiper .swiper-slide .program_slide_text strong {
    position: relative;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 10px;
}
.programs .program_swiper .swiper-slide .program_slide_text strong em {
    position: relative;
    font-size: 20px;
    font-weight: 600;
}
.programs .program_swiper .swiper-slide .program_slide_text strong em::after {
    width: 0px;
    content: '';
    display: block;
    height: 2px;
    background-color: #1C1C1C;
    position: absolute;
    bottom: 2px; left: 0;
    transition: all 0.3s;
}
.programs .program_swiper .swiper-slide a:hover strong em::after {
    width: 100%;
}
.programs .program_swiper .swiper-slide .program_slide_text p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    word-break: break-all;
    width: 100%;
    height: 43px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 21.5px;
    margin-bottom: 16px;
}
.programs .program_swiper .swiper-slide .program_slide_text span {
    display: block;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 8px;
}
.programs .program_swiper .swiper-slide .program_slide_text > em {
    font-weight: 600;
}

/* no_data */
.programs .program_swiper:has(.no_data) {
    width: 100%;
}
.programs .program_swiper .swiper-slide.no_data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    background-color: #EEEEEE;
}
@media screen and (max-width: 1200px) {
        /* no_data */
        .programs:has(.no_data) h2, .programs:has(.no_data) .inner_title {
            padding: 0 35px;
        }
        .programs:has(.no_data) .inner {
            padding: 0;
        }
}
/* 紐⑤컮�씪 */
@media screen and (max-width: 768px) {
    .programs .program_swiper .swiper-slide {
        width: 225px !important; height: 370px;
    }
    .programs .program_swiper .swiper-slide a {
        padding-bottom: 16px;
    }
    .programs .program_swiper .swiper-slide .program_slide_text strong {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 8px;
    }
    .programs .program_swiper .swiper-slide .program_slide_text p {
        height: 38px;
        line-height: 19px;
        margin-bottom: 12px;
    }
    .programs .program_swiper .swiper-slide .program_slide_text span {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .programs .program_swiper .swiper-slide .program_slide_text > em {
        font-size: 14px;
    }
    .programs .program_swiper .swiper-slide a .program_img {
        width: 225px; height: 225px;
    }
}
/* external */
.external {
    padding: 120px 0;
    background-color: #F8F8F8;
}
.external .external_swiper {
    position: relative;
}
.external .external_swiper .swiper-slide {
    position: relative;
    height: 485px;
    width: 320px !important;
}
.external .external_swiper .swiper-slide a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.external .external_swiper .swiper-slide a .external_img {
    width: 320px; height: 320px;
    background-image: url('../images/main/external.png');
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.external .external_swiper .swiper-slide:nth-of-type(1) a .external_img {
    background-image: url('../images/main/external_01.png');
}
.external .external_swiper .swiper-slide:nth-of-type(3) a .external_img {
    background-image: url('../images/main/program_no_img.png');
}
.external .external_swiper .swiper-slide .external_slide_text {
    text-align: left;
}
.external .external_swiper .swiper-slide .external_slide_text strong {
    position: relative;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 24px;
    overflow: hidden;
    margin-bottom: 10px;
}
.external .external_swiper .swiper-slide .external_slide_text strong em {
    position: relative;
    font-size: 20px;
    font-weight: 600;

}
.external .external_swiper .swiper-slide .external_slide_text strong em::after {
    width: 0px;
    content: '';
    display: block;
    height: 2px;
    background-color: #1C1C1C;
    position: absolute;
    bottom: 0px; left: 0;
    transition: all 0.5s;
}
.external .external_swiper .swiper-slide a:hover strong em::after {
    width: 100%;
}
.external .external_swiper .swiper-slide .external_slide_text p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    word-break: break-all;
    width: 100%;
    height: 43px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 21.5px;
    margin-bottom: 24px;
}
.external .external_swiper .swiper-slide .external_slide_text span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    margin-bottom: 10px;
}
.external .external_swiper .swiper-slide .external_slide_text > em {
    font-weight: 600;
}

/* no_data */
.external .external_swiper .swiper-slide.no_data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    background-color: #EEEEEE;
}
@media screen and (max-width: 1200px) {
    /* no_data */
    .external:has(.no_data) h2, .external:has(.no_data) .inner_title {
        padding: 0 35px;
    }
    .external:has(.no_data) .inner {
        padding: 0;
    }
}
@media screen and (max-width: 768px) {
    .external .external_swiper .swiper-slide {
        width: 225px !important; height: 358px;
    }
    .external .external_swiper .swiper-slide .external_slide_text strong {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 8px;
    }
    .external .external_swiper .swiper-slide .external_slide_text span {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .external .external_swiper .swiper-slide .external_slide_text p {
        height: 38px;
        line-height: 19px;
        margin-bottom: 16px;
    }
    .external .external_swiper .swiper-slide .external_slide_text > em {
        font-size: 14px;
        line-height: 16px;
    }
    .external .external_swiper .swiper-slide a .external_img {
        width: 225px; height: 225px;
    }
}
/* archive */
.archive {
    padding: 100px 0;
    background: #1C1C1C;
}
.archive .inner {
    text-align: center;
}
.archive h2 {
    margin-bottom: 3px;
    color: #fff;
}
.archive .inner_title {
    color: #fff;
}
.archive .inner_title #more_btn {
    background: url('../images/main/more_btn_white.svg') center center no-repeat;
}
.archive .inner_title #more_btn:hover {
    background: url('../images/main/more_btn_hover.svg') center center no-repeat;
}
.archive .archive_swiper {
    overflow: visible;
    margin-bottom: 46px;
}
.archive .archive_swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 248px !important;
    height: 450px;
    overflow: hidden;
}
.archive .archive_swiper .swiper-slide a {
    position: relative;
}
.archive .archive_swiper .swiper-slide a img {
	width: 100%;
}
.archive .archive_swiper .swiper-slide p {
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    margin-top: 11px;
    margin-bottom: 10px;
    font-size: 18px;
    letter-spacing: -0.05em;
    color: #fff;
    text-align: left;
}
.archive .archive_swiper .swiper-slide span {
    letter-spacing: -0.05em;
    color: #9D9D9D;
}
.archive .archive_wrap .archive_scrollbar {
    display: flex;
    align-items: center;
    background-color: #fff;
    height: 1px;
}
.archive .archive_wrap .swiper-scrollbar-drag {
    height: 9px;
    background-color: #fff;
}
.archive .archive_wrap .detail_wrap {
    position: absolute;
    bottom: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    background-color: rgba(28, 28, 28, 0.5);
    transition: all 0.3s ease-in-out;
}
.archive .archive_wrap .detail_wrap div {
    position: relative;
    top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.archive .archive_swiper .swiper-slide:hover .detail_wrap {
    opacity: 1;
}
.archive .archive_swiper .swiper-slide:hover .detail_wrap div {
    top: 0;
}
.archive .archive_wrap .detail_wrap img {
    margin-bottom: 4px;
}
.archive .archive_wrap .detail_wrap span {
    color: #fff;
}

/* no data */
.archive .archive_swiper .swiper-slide.no_data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100% !important; height: 450px;
    background-color: rgba(255, 255, 255, 0.4);
    overflow: visible;
}
.archive .archive_swiper .swiper-slide.no_data::after, .archive .archive_swiper .swiper-slide.no_data::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
}
.archive .archive_swiper .swiper-slide.no_data::after {
    right: -100%;
}
.archive .archive_swiper .swiper-slide.no_data::before {
    left: -100%;
}
.archive .archive_swiper .swiper-slide.no_data p {
    color: #D4D4D4;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}
@media screen and (max-width: 1200px) {
    .archive {
        padding: 80px 0;
    }
}

/* 紐⑤컮�씪 */
@media screen and (max-width: 768px) {
    .archive {
        padding: 40px 0;
    }
    .archive .archive_text {
        height: 16px;
        margin-bottom: 24px;
    }
    .archive .archive_text p {
        font-size: 14px;
        line-height: 16px;
    }
    .archive .archive_text a {
        top: -30px;
        width: 18px; height: 18px;
        background: url('../images/main/more_btn_white_mb.png') center center no-repeat;
    }
    .archive .archive_swiper {
        margin-bottom: 26px;
    }
    .archive .archive_swiper .swiper-slide p {
        font-size: 14px;
        line-height: 16px;
        margin: 10px 0;
    }
    .archive .archive_swiper .swiper-slide span {
        font-size: 14px;
        line-height: 16px;
    }
    .archive .archive_swiper .swiper-slide.no_data {
        height: 316px;
    }
}
/* media */
.media {
    padding: 120px 0;
}
.media .swiper-slide {
    width: 320px !important;
}
.media .media_img {
    position: relative;
    width: 320px; height: 180px;
    background-color: #1C1C1C;
    background-image: url('https://img.youtube.com/vi/WGwP4-zYH5M/maxresdefault.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 16px;
}
.media .swiper-slide:nth-of-type(3) .media_img {
    background-image: url('../images/main/media_no_img.png');
}
.media .media_img span {
    display: block;
    width: 49px; height: 49px;
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: url('../images/main/media_btn.svg') center center no-repeat;
}
.media .swiper-slide > span {
    display: block;
    font-weight: 600;
}
.media .swiper-slide p {
    display: block;
    position: relative;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.media .swiper-slide p span {
    position: relative;
}
.media .swiper-slide p span::after {
    width: 0px;
    content: '';
    display: block;
    height: 2px;
    background-color: #1C1C1C;
    position: absolute;
    bottom: 0px; left: 0;
    transition: all 0.3s;
}
.media .swiper-slide a:hover p span::after {
    width: 100%;
}
.media .media_img div {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
}
.media .media_img::before, .media .media_img::after, .media .media_img div::before, .media .media_img div::after {
    content: '';
    position: absolute;
    display: block;
    background-color: #1C1C1C;
    transition: all ease-in-out 0.3s;
}
.media .media_img::before {
    left: 0; top: 0;
    width: 0px; height: 2px;
}
.media .media_img::after {
    right: 0; top: 0;
    width: 2px; height: 0px;
}
.media .media_img div::before {
    right: 0; bottom: 0;
    width: 0px; height: 2px;
}
.media .media_img div::after {
    left: 0; bottom: 0;
    width: 2px; height: 0px;
}
.media a:hover .media_img::after, .media a:hover .media_img div::after {
    height: 100%;
}
.media a:hover .media_img::before, .media a:hover .media_img div::before {
    width: 100%;
}
.media .no_data {
    display: flex;
    flex-direction: column;
    align-items: center; justify-content: center;
    background-color: #EEEEEE;
    width: 100%; height: 249px;
}
@media screen and (max-width: 768px) {
    .media .media_img {
        width: 260px;
        height: 146px;
        margin-bottom: 8px;
    }
    .media .swiper-slide {
        width: 260px !important;
    }
    .media .swiper-slide span {
        font-size: 14px;
        line-height: 16px;
    }
    .media .swiper-slide p {
        font-size: 16px;
        line-height: 19px;
        margin-top: 8px;
    }

    /* no_data */
    .media:has(.no_data) h2, .media:has(.no_data) .inner_title {
        padding: 0 16px;
    }
    .media:has(.no_data) .inner {
        padding: 0;
    }
    .media .no_data {
        height: 197px;
    }
}

/* notice */
.notice {
    padding: 120px 0;
}
.notice .notice_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.notice .community {
    width: 100%;
    margin-right: 20px;
}
.notice .banner {
    width: 100%;
}
.notice .banner h2 {
    margin-bottom: 16px;
}
.notice .community > p {
    font-size: 18px;
    font-weight: 500;
}
.notice .community ul {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.notice .community ul li {
    transition: all 0.3s;
    width: 48%;
    min-height: 322px;
    border-bottom: 2px solid #1C1C1C;
}
.notice .community ul li:hover {
    transform: translateY(-4px);
}
.notice .community ul li:hover a div:nth-of-type(2) p {
    background: url('../images/main/more_icon_hover.svg') right center no-repeat;
}
.notice .community ul li > a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.notice .community ul li:nth-of-type(1) {
    margin-right: 20px;
}
.notice .community ul li a div:nth-of-type(1) span {
    display: block;
    width: 84px;
    text-align: center;
    padding: 6px 0;
    background-color: #1C1C1C;
    color: #fff;
    margin-bottom: 16px;
}
.notice .community ul li a div:nth-of-type(1) strong {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    word-break: break-all;
    width: 100%;
    height: 60px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 30px;
}
.notice .community ul li a div:nth-of-type(1) p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    word-break: break-all;
    width: 100%;
    height: 130px;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-height: 26px;
}
.notice .community ul li a div:nth-of-type(2) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.notice .community ul li a div:nth-of-type(2) span {
    color: #9D9D9D;
}
.notice .community ul li a div:nth-of-type(2) p {
    display: inline-block;
    line-height: 19px;
    padding-right: 19px;
    background: url('../images/main/more_icon.svg') right center no-repeat;
}
.notice .community ul li a:hover div:nth-of-type(2) p {
    color: #FE7A39;
}
.notice .banner {
    position: relative;
}
.notice .banner .swiper-slide  {
    width: 100% !important; height: 398px;
    background-color: #eee;
    border: 1px solid #D4D4D4;
    box-sizing: border-box;
}
.notice .banner .swiper-slide:not(.no_data) img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.notice .banner .banner_ctrl {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 18px;
    margin-bottom: 16px;
}
.notice .banner .banner_pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.notice .banner .banner_ctrl .banner_stop {
    width: 18px; height: 18px;
    margin-left: 16px;
    background: url('../images/main/pause_btn.png') center center no-repeat;
}
.notice .banner .banner_ctrl .banner_stop:hover {
    background: url('../images/main/play_btn.png') center center no-repeat;
}
.notice .banner .banner_ctrl .banner_stop.pause {
    background: url('../images/main/play_btn.png') center center no-repeat;
}
.notice .banner .swiper-pagination-bullet {
    width: 6px; height: 6px;
    background-color: #B7B7B7;
    opacity: 1;
    margin-left: 20px;
}
.notice .banner .swiper-pagination-bullet-active {
    background-color: #1C1C1C;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}

/* no data */
.notice .community ul li:has(.no_data) {
    border-bottom: none;
    width: 100%;
    margin: 0;
}
.notice .community ul li .no_data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    background-color: #EEEEEE;
}

/* no data */
.notice .banner .swiper-slide.no_data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #EEEEEE;
    border: none;
}
@media screen and (max-width: 1200px) {
    .notice {
        padding: 80px 0;
    }
    .notice .notice_wrap {
        flex-direction: column;
        align-items: center;
    }
    .notice .community_text {
        justify-content: center;
    }
    .banner {
        margin-top: 40px;
    }
    .banner h2 {
        display: none;
    }
    .notice .community {
        margin: 0;
    }
    .notice .community, .notice .banner {
        padding-bottom: 34px;
    }
    .notice .banner .banner_ctrl {
        position: absolute; bottom: 0;
        margin: 0;
    }
    .notice .banner .swiper-slide {
        height: 377px;
    }
    /* no_data */
    .notice:has(.no_data) .community, .notice:has(.no_data) .banner {
        max-width: 100%;
        padding: 0;
    }
    .notice:has(.no_data) .banner .swiper-slide {
        height: 416px;
    }
}

/* 紐⑤컮�씪 */
@media screen and (max-width: 768px) {
    .notice {
        padding: 40px 0;
    }
    .notice .community_text {
        height: 16px;
        margin-bottom: 30px;
    }
    .notice .community_text p {
        font-size: 14px;
        line-height: 16px;
    }
    .notice .community_text a {
        top: -26px;
        width: 18px; height: 18px;
        background: url('../images/main/more_btn_mb.png') center center no-repeat;
    }
    .notice .community ul {
		margin-top: 0;
	}
    .notice .community ul li {
        min-height: 246px;
    }
    .notice .community ul li a div:nth-of-type(1) span {
        width: 52px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .notice .community ul li a div:nth-of-type(1) strong {
        font-size: 16px;
        line-height: 22.5px;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        word-break: break-all;
        width: 100%;
        height: 45px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-bottom: 10px;
    }
    .notice .community ul li a div:nth-of-type(1) p {
        font-size: 14px;
        line-height: 22px;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        word-break: break-all;
        width: 100%;
        height: 88px;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
    .notice .community ul li a div:nth-of-type(2) {
        margin-bottom: 8px;
    }
    .notice .community ul li a div:nth-of-type(2) span {
        font-size: 14px;
    }
    .notice .community ul li a div:nth-of-type(2) p {
        font-size: 14px;
        padding-right: 17px;
        background-size: 17px 17px;
    }
    .notice .community ul li:hover a div:nth-of-type(2) p {
        background: url('../images/main/more_icon_hover.svg') right top 1px no-repeat;
        background-size: 17px 17px;
    }
    .notice .community, .notice .banner {
        margin-top: 30px;
    }
    .notice .banner .swiper-slide {
        height: 189px;
    }
    .notice .banner .banner_ctrl {
        margin-top: 10px;
    }

    /* no data */
    .notice:has(.no_data) .banner .swiper-slide {
        height: 189px;
    }
}

/* authors */
.authors {
    padding: 120px 0;
    background-color: #F8F8F8;
}
.authors .inner {
    text-align: center;
}
.authors h2 {
    margin-bottom: 3px;
}
.authors .authors_img ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15%, 1fr));
    grid-gap: 20px 40px;
    justify-content: space-between;
}
.authors .authors_img ul li img {
	position: absolute;
	left: 0; top: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.authors .authors_img ul li .authors_list {
    position: relative;
    padding-bottom: 100%;
}
.authors .authors_img ul li .authors_list a {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.authors .authors_img ul li .authors_list::before, .authors .authors_img ul li .authors_list::after, .authors .authors_img ul li .authors_list a::before, .authors .authors_img ul li .authors_list a::after {
    content: '';
    position: absolute;
    display: block;
    background-color: #1C1C1C;
    transition: all ease-in-out 0.3s;
}
.authors .authors_img ul li .authors_list a::before {
    left: 0; top: 0;
    width: 0px; height: 2px;
}
.authors .authors_img ul li .authors_list a::after {
    right: 0; top: 0;
    width: 2px; height: 0px;
}
.authors .authors_img ul li .authors_list::before {
    right: 0; bottom: -2px;
    width: 0px; height: 2px;
}
.authors .authors_img ul li .authors_list::after {
    left: 0; bottom: 0;
    width: 2px; height: 0px;
}
.authors .authors_img ul li .authors_list:hover::after, .authors .authors_img ul li .authors_list:hover a::after {
    height: 100%;
}
.authors .authors_img ul li .authors_list:hover::before, .authors .authors_img ul li .authors_list:hover a::before {
    width: 100%;
}
.authors .authors_img ul li p {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    margin-top: 10px;
}
.authors .authors_img ul li p span {
    position: relative;
    font-weight: 700;
}
.authors .authors_img ul li p span::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    display: block;
    width: 0; height: 2px;
    background-color: #1C1C1C;
    transition: all 0.3s;
}
.authors .authors_img ul li:hover p span::after {
    width: 100%;
}
/* no data */
.authors .authors_img ul:has(.no_data) {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
}
.authors .authors_img ul li.no_data {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100% !important; height: 528px;
    max-width: 100% !important;
    background-color: #EEEEEE;
    margin: 0 !important;
}
.authors .authors_img ul li.no_data img {
    width: auto; height: auto;
}
.authors .authors_img ul li.no_data p {
    margin: 0;
    font-size: 16px;
    text-align: center;
}
.authors:has(.no_data) .inner_title, .authors:has(.no_data) h2 {
    width: 100%; max-width: 100%;
}
@media screen and (max-width: 1200px) {
    .authors h2 {
        margin: 0 auto;
    }
    .authors .inner_title {
        margin-bottom: 40px;
    }
    .authors {
        padding: 80px 0;
    }
    .authors .authors_img ul {
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
        justify-content: space-between;
    }
    .authors .authors_img ul li:nth-of-type(n + 10) {
        display: none;
    }
}
@media screen and (max-width: 1200px) {
    .authors .authors_img ul li.no_data {
        height: 789px;
    }
}
@media screen and (max-width: 768px) {
    .authors {
        padding: 40px 0;
    }
    .authors .inner_title {
        margin-bottom: 24px;
    }
    .authors .authors_img ul {
        grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
        grid-gap: 16px;
    }
    .authors .authors_text p {
        font-size: 14px;
        line-height: 16px;
        margin-top: 8px;
    }
    .authors .authors_text a {
        top: -28.5px;
        width: 18px; height: 18px;
        background: url('../images/main/more_btn_mb.png') center center no-repeat;
    }
    .authors .authors_img ul li .authors_list {
        margin-bottom: 8px;
    }

    .authors .authors_img ul li:nth-of-type(n + 7) {
        display: none;
    }

    .authors .authors_img ul li.no_data {
        height: 572px;
    }
}

/* footer */
footer {
    background-color: #1C1C1C;
}
.footer_link {
    border-bottom: 1px solid #707070;
}
.footer_link ul {
    max-width: 1470px;
    margin: 0 auto;
    display: flex;
    padding: 24px 35px;
}
.footer_link ul li:not(:last-of-type) {
    margin-right: 40px;
}
.footer_link ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #9D9D9D;
}
.footer_link ul li:nth-of-type(1) a {
    color: #fff;
}
.footer_wrap > div {
    display: flex;
    align-items: flex-start;
    max-width: 1470px;
    margin: 0 auto;
    padding: 32px 35px;
    background: url('../images/main/foot_logo.svg') right 35px bottom 32px no-repeat;
}
.footer_wrap .footer_logo {
    width: 138px; height: 40px;
    background: url('../images/main/footer_logo.png') center center no-repeat;
    margin-right: 20px;
    flex-shrink: 0;
}
.footer_wrap address {
    font-size: 18px;
    color: #9D9D9D;
}
.footer_wrap address p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 24.5px;
}
@media screen and (max-width: 1200px) {
    .footer_wrap > div {
        padding: 24px 35px;
        flex-direction: column;
    }
    .footer_wrap address p {
        margin: 24px 0;
        font-size: 14px;
        line-height: 19px;
    }
    .footer_wrap address {
        font-size: 12px;
        line-height: 14px;
    }
}
@media screen and (max-width: 768px) {
    .footer_link ul {
        padding: 16px;
    }
    .footer_link ul li a {
        font-size: 14px;
    }
    .footer_link ul li:not(:last-of-type) {
        margin-right: 16px;
    }
    .footer_wrap > div {
        padding: 24px 16px;
    }
    .footer_wrap address p {
        margin: 16px 0;
    }
    .footer_wrap address {
        font-size: 12px;
        line-height: 17px;
    }
    .footer_wrap > div {
        padding: 16px 16px 89px 16px;
        background: url('../images/main/foot_logo.svg') right 16px bottom 24px no-repeat;
    }
}

/* �뙘�뾽 */
.main_notice_pop { display: flex; flex-wrap: wrap; position: absolute; top: 79px; /* right: 0; */ left: 35px; z-index:99; }
.main_notice_pop .pop_con { position: relative; width: 400px; z-index: 1; }
.main_notice_pop .pop_con .close_img { position: absolute; top: 0; right: 0; width: 40px; height: 40px; border: none; background: url('../images/main/btn_close_white.png') no-repeat center center rgba(28,28,28,0.5); background-size: 24px; text-indent: -9999px; overflow: hidden; z-index: 20; }
.main_notice_pop .pop_con .img img { width: 100%; }
.main_notice_pop .pop_con .btns { display: flex; background: #212121; }
.main_notice_pop .pop_con .btns .btn_invisible { flex:1; position: relative; padding: 13px 0; border: none; background: #3e3e3e; color: #fff; font-size: 1rem; line-height: 24px; font-weight: 500; letter-spacing: -0.8px; }
.main_notice_pop .pop_con .btns .btn_close { flex: 1; position: relative; padding: 13px 0; border: none; background: #212121; color: #fff; font-size: 1rem; line-height: 24px; font-weight: 500; letter-spacing: -0.8px; }
.main_notice_pop .pop_con .btns button span { display:inline-block; vertical-align:top; }
@media screen and (max-width: 1200px){
    .main_notice_pop { top: 64px; left: 0; right: 0; }
    .main_notice_pop .pop_con { position: absolute; left: 50%; transform: translateX(-50%); width: 400px; }
}
@media screen and (max-width: 768px){
    .main_notice_pop { top: 56px;}
    .main_notice_pop .pop_con {
        width: 328px;
    }
    .main_notice_pop .pop_con .btns button span {
        font-size: 14px;
    }
    .main_notice_pop .pop_con .btns .btn_close {
        line-height: 20px;
        padding: 10px 0;
    }
    .main_notice_pop .pop_con .btns .btn_invisible {
        line-height: 20px;
        padding: 10px 0;
    }
}

.no_data img {
    margin-bottom: 10px;
}
.no_data p {
    font-weight: 500;
    color: #B7B7B7;
    margin: 0;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .programs, .external, .archive, .media {
        padding: 80px 0;
    }
    .programs .program_swiper .swiper-slide .program_slide_text strong em::after, .external .external_swiper .swiper-slide .external_slide_text strong em::after, .media .swiper-slide p span::after, .authors .authors_img ul li p span::after {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .programs, .external, .archive, .media {
        padding: 50px 0;
    }
}
