@charset "utf-8";
/* ==================================================================================
    [main.css]
        - stylesheets of main page
================================================================================== */

@font-face {
    font-family: 'Nanum Pen';
    font-weight: 800;
    font-style: normal;
    src: url('/fonts/nanumPen/NanumPen.otf');
    src: url('/fonts/nanumPen/NanumPen.ttf');
}


/* ==================================================================================
    메인배너 - main-banner-area
================================================================================== */
.main-banner-area .bg-black-transition {
    background-color: rgb(0 0 0 / 15%);
}
.main-banner-area .inner-wrap {
    height: 480px;
}
.main-banner-area .main-banner-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 10%);
    z-index: -999;
}
.main-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 80px 0 0;
}
.main-banner .main-banner-left {
    display: flex;
    align-items: center;
    gap: 65px;
}
.main-banner .main-banner-left .main-banner-logo {
    display: flex;
}

.main-banner .main-banner-notion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.main-banner .main-banner-logo img {
    width: 318px;
}
.main-banner .main-banner-notion p {
    line-height: 1.4;
    letter-spacing: -0.45px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 78%)
}
.main-banner .main-banner-notion p.date {
    padding-top: 40px;
}
.main-banner .main-banner-notion p.place {
}
.main-banner .main-banner-notion p.main-title b {
    margin-left: -5px;
    font-size: 65px;
    font-weight: 900;
    color: #fff;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 78%)
}
.main-banner .main-banner-notion p.main-title b span {
    color: #fff;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 78%);
}
.main-banner .main-banner-notion p.main-title > span:first-child {
    letter-spacing: -1px;
}
.main-banner .main-banner-notion p.main-title > span:last-child {
    letter-spacing: 1px;

}
.main-banner .main-banner-notion h2 {
    font-size: 24px;
    letter-spacing: -0.65px;
    font-weight: 700;
    color: #FFFFC8;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 78%);
}

/* quick-button */
.quick-button {
    position: absolute;
    bottom: -50px;
    width: 100%;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.25);
}
.quick-button > ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    border-radius: 0 ;
    overflow: hidden;
}
.quick-button > ul > li {
    flex-grow: 1;
    width: 100%;
}
.quick-button > ul > li > a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 0;
    height: 110px;
    padding: 30px 20px;
    text-align: center;
    color: #333;
    background-color: rgba(255, 255, 255, 1);
    /*box-shadow: 0 2px 4px rgb(0 0 0 / 13%);*/
    transition: all 0.25s;
}

.quick-button > ul > li > a:hover {
    color: #fff;
    background-color: #3CCE9E;
}
.quick-button > ul > li > a ion-icon {
    display: inline-block;
    margin: 0;
    font-size: 46px;
}
.quick-button > ul > li > a span.title {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

/* 기본 hover 색상 */
.quick-button > ul > li.highlight a {
    color: #fff;
    background-color: #057eff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.25);
}
.quick-button > ul > li.highlight a:hover {
    background-color: #046ddc;
    box-shadow: 0 4px 6px rgba(0,0,0,0.45);
}
.quick-button > ul > li.highlight-red a {
    color: #fff;
    background-color: #fa835c;
    box-shadow: 0 4px 6px rgba(0,0,0,0.25);
}
.quick-button > ul > li.highlight-red a:hover {
    background-color: #e5714b;
    box-shadow: 0 4px 6px rgba(0,0,0,0.45);
}
.quick-button > ul > li.highlight-green a {
    color: #fff;
    background-color: #3CCE9E;
    box-shadow: 0 4px 6px rgba(0,0,0,0.25);
}
.quick-button > ul > li.highlight-green a:hover {
    background-color: #30C092;
    box-shadow: 0 4px 6px rgba(0,0,0,0.45);
}
/*.schedule-status*/
.schedule-status {

}
.schedule-status a {
    display: flex;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-radius: 5px;
    background: #FFF;
    cursor: pointer;
    animation: star-twinkle 3s infinite alternate;
}
@keyframes star-twinkle {
    0% {
        box-shadow:
                0 0 6px rgba(243,80,71,0.3),
                0 0 9px rgba(241,135,135,0.3);
        animation-timing-function: ease-out;
    }
    50% {
        box-shadow:
                0 0 6px rgba(243,80,71,0.4),
                0 0 12px rgba(234,68,68,0.7);
        animation-timing-function: ease-in;
    }
    100% {
        box-shadow:
                0 0 6px rgba(243,80,71,0.3),
                0 0 9px rgba(241,135,135,0.3);
    }
}
.schedule-status a:hover {
    box-shadow: 0px 4px 20px 8px rgba(239, 54, 30, 0.16);
}
.schedule-status .status-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 8px;
}

.schedule-status .status-info h3 {
    margin: 0 0 10px;
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
}
.schedule-status .status-info p.date {
    display: flex;
    align-items: center;
    gap: 0;
    color: #000;
    font-size: 15px;
    font-weight: 700;
}
.schedule-status .status-info p.date .ion-android-calendar {
    display: flex;
    margin-right: 7px;
    font-size: 19px;
    color: #EF361E;
}
.schedule-status .status-info p.date s {
    margin-right: 7px;
    color: #999;
}
.schedule-status .status-btn {
    display: flex;
    padding: 7px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    background: #EF361E;
}
.schedule-status .status-btn p {
    color: #fff;
    font-weight: 800;
    font-size: 19px;
}

/* quick-info */
.quick-info {
    position: relative;
    display: flex;
    background: url(/2026s/images/bg/d_day_bg_pattern.png) center center no-repeat, linear-gradient(90deg, #379aff 9.62%, #004cc1 100%);
    background-size: cover;
}
.quick-info .inner-wrap {

}
.quick-info .inner-wrap .d-day-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 92px;
    padding: 30px 0;
}
.quick-info .inner-wrap .d-day-area {
    display: flex;
    width: 290px;
    flex-direction: column;
    align-items: center;
}
.quick-info p {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

/* ebook */
.quick-info .ebook-area {
    position: absolute;
    right: 0;
    bottom: 25px;
}
.quick-info .ebook-area h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}
.quick-info .ebook-area ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: baseline;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.quick-info .ebook-area ul li {
    padding: 3px 18px;
    background-color: #fff;
    border-radius: 50px;
    transition: all 0.4s;
}
.quick-info .ebook-area ul li:hover {
    background-color: #000;
}
.quick-info .ebook-area ul li:hover a {
    color: #fff;
}
.quick-info .ebook-area ul li a {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #000;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.4s;
}
.quick-info .ebook-area ul li a .arrow {
    width: 15px;
}
.quick-info .ebook-area ul li a img {
    display: block;
}

/* ==================================================================================
    컨텐츠 영역 - 공통
================================================================================== */
#container {

}

.main-contents {
    display: flex !important;
    justify-content: space-between;
    gap: 2%;
    margin-top: 50px;
    padding: 50px 0 0;
}

.main-contents h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 26px;
    font-weight: 900;
    color: #333;
    letter-spacing: -0.75px;
}
.main-contents h3 a.more {
    display: flex;
    align-items: center;
    justify-content: center;
}
#container .main-contents > div {
    width: 48%;
}

/* ==================================================================================
    컨텐츠 영역 - 좌측 컨텐츠 : 인사말
================================================================================== */
.main-none {
    display: none;
}
#container .main-contents.col1 .section-left h3 {
    border-bottom: 0;
    margin-bottom: 0;
}
#container .main-contents.col1 .content a {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 30px 25px 0;
    border-radius: 10px;
    background: #f9f9f9 url("/2026s/images/bg/greetings_bg_2026s.png") left bottom no-repeat;
    background-size: cover;
}
#container .main-contents.col1 .content .text-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 55px;
    margin-bottom: 25px;
    color: #000;
}
#container .main-contents.col1 .content .text-area h4 {
    word-break: keep-all;
    font-size: 36px;
    font-family: "Nanum Pen";
}
#container .main-contents.col1 .content .text-area p {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-right: 15px;
    font-size: 17px;
    font-weight: 700;
}
#container .main-contents.col1 .content .text-area p b {
    font-size: 40px;
    font-family: "Nanum Pen";
}

/* ==================================================================================
    컨텐츠 영역 - 우측 컨텐츠 : 주요일정
================================================================================== */
/* 주요일정 */
.section-right {

}
.important-dates {
    display: flex;
    gap: 2%;
    height: 296px;
}
.important-dates li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32%;
    overflow: hidden;
}
.important-dates li .progress-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 5px;
    color: #fff;
    border: 1px solid #dfdfdf;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    font-weight: 700;
}
.important-dates li .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 27px 0;
    color: #000;
    font-size: 19px;
    font-weight: 800;
    border: 1px solid #dfdfdf;
    border-top: 0;
    border-bottom: 0;
    text-align: center;
}
.important-dates li .title small {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    line-height: 1;
}
.important-dates li .title b {
    font-weight:700;
    color: #000;
    font-size: 16px;
    line-height: 1.4;
}

.important-dates li .date-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 25px 14px 20px;
    border: 1px solid #dfdfdf;
    border-radius: 0 0 10px;
    background-color: #FAFAFA;
}
.important-dates li .date-area > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.important-dates li .date-area p {
    display: flex;
    align-items: flex-start;
    gap: 6px;

    line-height: 1.2;
    letter-spacing: -0.45px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
}
.important-dates li .date-area p .date-label {
    min-width: 42px;
    padding: 4px 7px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
}
.important-dates li .date-area p.multi .date-label {
    position: relative;
    top: -11px;
}
.important-dates li .date-area p .date {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    /*padding-top: 2px;*/
    line-height: 1.4;
    word-break: keep-all;
}
.important-dates li .date-area p .date s {
    color: #999;
}
.important-dates li .date-area p .date b {
    color: #f33;
}
.important-dates li .date-area > div.btn-area a {
    display: flex;
    gap: 10px;
    flex-direction: row;
    font-size: 15px;
    justify-content: flex-end;
    align-items: center;
    font-weight: 700;
    transition: all 0.4s;
}
.important-dates li .date-area > div.btn-area a:hover {
    color: #000;
}

.important-dates li .date-area > div.btn-area a:hover .arrow {
    padding-left: 10px;
}
.important-dates li .btn-area .arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    color: #fff;
    border-radius: 36px;
    transition: all .25s;
}
.important-dates li .btn-area .arrow .feather {
    width: 20px;
    height: 20px;
}

/* 일정 마감 */
.important-dates li.deadline .progress-label,
.important-dates li.deadline .date-area .date-label,
.important-dates li.deadline .btn-area .arrow {
    border-color: #B9B9B9;
    background: #B9B9B9;
}

/* 일정 진행중 */
.important-dates li.in-progress .progress-label,
.important-dates li.in-progress .date-area .date-label,
.important-dates li.in-progress .btn-area .arrow {
    border-color: #EF361E;
    background: #EF361E;
}

/* 일정 진행예정 */
.important-dates li.oncoming .progress-label,
.important-dates li.oncoming .date-area .date-label,
.important-dates li .btn-area .arrow {
    border-color: #4aceaf;
    background: #4aceaf;
}
/* ==================================================================================
    컨텐츠 영역 - 좌측 컨텐츠 :  프로그램표
================================================================================== */
#container .main-contents.col2 {
    padding: 0 0 50px;
}
#container .main-contents.col2 .section-left .table-responsive .table tbody td b {
    font-weight: 800;
    color:#000;
}

/* ==================================================================================
    컨텐츠 영역 - 우측 컨텐츠 :  공지사항
================================================================================== */
#container .main-contents.col2 .section-right .ion-ios-plus-empty {
    height: 26px;
}
.notice-list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    margin: 0 0 6px;
    padding: 12px 20px 12px 24px;
    border-radius: 5px;
    background-color: #F7F7F7;
    overflow: hidden;
}
.notice-list li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #057eff;
}
.notice-list li a {
    max-width: 500px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}
.notice-list li a:hover {
    color: #057eff;
}
.notice-list li span.date {
    min-width: 100px;
    font-size: 14px;
    font-weight: 400;
    color: #919191;
}

/* ==================================================================================
    layer popup
================================================================================== */
.layer-popup-area {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 3px 7px rgba(0,0,0,0.45);
    z-index: 999;
}
.layer-popup-area .cont {
    border-top: 7px solid #0068B7;
}
.layer-popup-area .close {
    float: none;
    padding: 10px;
    font-size: 13px;
    font-weight: 300;
    text-align: right;
    color: #fff;
    text-shadow: none;
    background-color: #0068b7;
    opacity: 1;
}
.layer-popup-area .close .check input {
    vertical-align: middle;
}
.layer-popup-area .close .check label {
    margin: 0 0 0 5px;
    vertical-align: middle;
    cursor: pointer;
}
.layer-popup-area .close .btn-close {
    display: inline-block;
    margin: 0 0 0 10px;
    vertical-align: middle;
}

/* contents */
.layer-popup-area {
    display: none;
    top: 120px;
    width: 640px;
}
.layer-popup-area .header {
    padding: 10px 0 6px;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    background-color: #0068b7;
    color: #fff;
}
.layer-popup-area .cont {
    padding: 40px 30px 50px;
    line-height: 1.5;
    font-size: 15px;
    border-top: 5px solid #0068b7;
}
.layer-popup-area .cont h1 {
    margin: 0 0 30px;
    line-height: 1.3;
    text-align: center;
    font-size: 25px;
    font-weight: 800;
}
.layer-popup-area .cont h1 b {
    font-weight: 800;
}
.layer-popup-area .cont p {
    margin: 0 0 20px;
    font-size: 15px;
    text-align: justify;
    white-space: normal;
}
.layer-popup-area .cont p b {
    font-weight: bold;
}
.layer-popup-area .cont p.small {
    margin: 2px 0 3px;
    font-size: 13px;
}
.layer-popup-area .cont .box-small {
    margin: 5px 0;
    padding: 3px 10px;
    border-radius: 4px;
    background-color: #fafafa;
}
.layer-popup-area .cont ol {
    list-style-type: decimal;
    margin: 0 0 30px 20px
}
.layer-popup-area .cont ol li {
    margin: 0 0 20px;
}
.layer-popup-area .cont ul {
    list-style-type: disc;
    margin: 10px 0 30px 20px
}
.layer-popup-area .cont ul li {
    position: relative;
    margin: 0 0 10px;
}
.layer-popup-area .cont ul li .title {
    float: left;
}
.layer-popup-area .cont ul li .date {
    float: right;
}
.layer-popup-area .cont .text-danger {
    color: #f33;
}
.layer-popup-area .cont .button {
    margin: 20px 0 0;
    text-align: center;
}
.layer-popup-area .cont .button a.btn {
    margin: 0 10px;
    border-radius: 2px;
}
.layer-popup-area .close {
    width: 600px;
}

/* popup1 */
.layer-popup-area.pop1 {
    /*display: none;*/
    left: 55%;
    top: -87%;
    width: 600px;
    /*margin-left: -320px;*/
}
.layer-popup-area.pop1 h1 {
    font-size: 22px;
}
.layer-popup-area.pop1 .cont {
    padding: 30px;
}
.layer-popup-area.pop1 img {
    display: block;
}
.layer-popup-area.pop1 .table {
    text-align: center;
}
.layer-popup-area.pop1 .table th {
    color: #fff;
    text-align: center;
    background-color: #0068b7;
}
.layer-popup-area.pop1 .table thead th {
    color: #fff;
    text-align: center;
    border: 1px solid #0068b7;
    background-color: #0068b7;
}
.layer-popup-area.pop1 .cont p {
    margin-bottom: 5px;

}
.layer-popup-area.pop1 .cont p b {
    font-size: 17px;
    font-weight: 800;
}
.layer-popup-area.pop1 .table td {
    padding: 6px 8px;
}
.layer-popup-area.pop1 .close {
    width: 600px;
}
/* popup2 */
.layer-popup-area.pop2 {
    /*display: none;*/
    left: 50%;
    top: -630px;
    width: 900px;
    margin-left: -450px;
}
.layer-popup-area.pop2 .cont {
    padding: 30px;
}
.layer-popup-area.pop2 .close {
    width: 900px;
}
.layer-popup-area.pop2 .cont img {
    display: block;
}

/*main - information*/
.welcome-message .section h2.section-title {
    margin: 10px 0 15px;
    font-size: 21px;
    font-weight: 600;
    color: #0f5ba9;
}
.welcome-message .section ul.section-list {
    margin: 0 0 20px 20px;
    list-style: disc;
    font-size: 17px;
}
.welcome-message .section ul.section-list li{
    margin-bottom: 20px;
}

/*프로그램 일정표*/
.table-responsive .table thead th {
    padding: 8px 20px;
    text-align: center;
    background-color: #057eff;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
}
.table-responsive .table tbody th {
    text-align: center;
    background-color: #fbfbfb;
    font-weight: 800;
    font-size: 14px;
}
.table-responsive .table tbody td {
    padding: 6px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}
.table-responsive .table tbody td:last-child {
    text-align: left;
}
