@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 {
    /*background: url("/2025f/images/bg/main_banner_bg.png") right bottom no-repeat;*/
}
.main-banner-area .main-banner-bg {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -999;
}
.main-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 90px 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: 20px;
}
.main-banner .main-banner-logo img {
    width: 318px;
}
.main-banner .main-banner-notion p {
    line-height: 1.3;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.45px;
}
.main-banner .main-banner-notion p.main-title {
    margin-left: -5px;
    font-size: 70px;
    font-weight: 900;
    color: #000;
}
.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: 20px;
    letter-spacing: -0.65px;
    font-weight: bold;
    color: #9C9C9C;
}

/* quick-button */
.quick-button {
    margin-top: 80px;
}
.quick-button > ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
    width: 100%;
}
.quick-button > ul > li {
    flex-grow: 1;
    width: 100%;
}
.quick-button > ul > li > a {
    margin: 0 15px 0 0;
    padding: 15px 3px;
    text-align: center;
    color: #333;
    border-radius: 5px 20px;
    background-color: rgb(255 253 251 / 93%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
    transition: all 0.25s;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.quick-button > ul > li > a:hover {
    color: #fff;
    background-color: rgb(245 212 109);
    box-shadow: 0 4px 6px rgba(0,0,0,0.45);
}
.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: 20px;
    font-weight: 800;
}

/* 기본 hover 색상 */
.quick-button > ul > li.highlight a {
    color: #fff;
    background-color: rgb(17 93 166 / 100%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.25);
}
.quick-button > ul > li.highlight a:hover {
    background-color: rgb(17 93 166 / 100%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.45);
}
.quick-button > ul > li.highlight-red a {
    color: #fff;
    background-color: #ca6039;
    box-shadow: 0 4px 6px rgba(0,0,0,0.25);
}
.quick-button > ul > li.highlight-red a:hover {
    background-color: #c93c09;
    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: 33px;
    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;
    gap: 8px;
    align-self: stretch;
    align-items: center;
}

.schedule-status .status-info h3 {
    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: 7px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
}
.schedule-status .status-info p.date .ion-android-calendar {
    display: flex;
    font-size: 19px;
    color: #EF361E;
}
.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;
}

/* d-day */
.quick-info {
    display: flex;
    background: url("/2025f/images/bg/d_day_bg_pattern.png") center center no-repeat, linear-gradient(90deg, #267E29 9.62%, #15632C 100%) ;
    background-size: cover;
}
.quick-info .inner-wrap {
    display: flex;
    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;
}
.d-day-area .d-day {
    padding: 16px 18px;
    background-color: #fff;
    font-family: 'Poppins', Sans-Serif;
    color: #267E29;
    line-height: 1;
    border-radius: 5px;
    font-size: 52px;
}
.d-day-area .d-day b {
    display: inline-block;
    vertical-align: middle;
    font-weight: 300;
}
.d-day-area .d-day em {
    display: inline-block;
    vertical-align: middle;
    font-weight: 300;
    text-shadow: 1px 1px 1px rgba(255,255,255,1);

}
.d-day-area .d-day strong {
    display: inline-block;
    vertical-align: middle;
    text-shadow: 1px 1px 1px rgba(255,255,255,1);
}



/*!* ==================================================================================*/
/*    메인배너 - main-banner type2 */
/*================================================================================== *!*/
/*.main-banner {*/
/*    position: relative;*/
/*    padding-top: 50px;*/
/*}*/
/*.main-banner h1 {*/
/*    margin: 0 0 15px;*/
/*    line-height: 1.3;*/
/*    font-size: 22px;*/
/*    font-weight: 400;*/
/*    color: #fff;*/
/*    letter-spacing: -0.25px;*/
/*    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);*/
/*}*/
/*.main-banner h1 b {*/
/*    color: #FFFF80;*/
/*}*/
/*.main-banner h1 .main-title {*/
/*    font-size: 52px;*/
/*    font-weight: 600;*/
/*    color: #fff;*/
/*    letter-spacing: -0.25px;*/
/*    text-shadow: 1px 1px 4px rgba(0,0,0,0.75);*/
/*}*/
/*.main-banner h2 {*/
/*    margin: 0 0 37px;*/
/*    font-size: 25px;*/
/*    font-weight: bold;*/
/*    color: #bee4ff;*/
/*    text-shadow: 1px 1px 2px rgb(0 0 0 / 85%);*/
/*}*/
/*.main-banner p.date {*/
/*    font-size: 24px;*/
/*    font-weight: 500;*/
/*    color: #ffffff;*/
/*    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);*/
/*}*/
/*.main-banner p.date b {*/
/*    font-size: 28px;*/
/*    color: #FFFF80;*/
/*    !*text-shadow: 1px 1px 1px rgba(255,255,255,1);*!*/
/*}*/
/*.main-banner p.place {*/
/*    font-size: 24px;*/
/*    font-weight: 500;*/
/*    color: #ffffff;*/
/*    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);*/
/*}*/
/*.main-banner-notion{*/
/*    width: 740px;*/
/*    padding: 55px 50px;*/
/*    border-radius: 15px;*/
/*    background-color: rgb(102 148 197 / 74%);*/
/*}*/
/*!* quick-button *!*/
/*.quick-button {*/
/*    margin-top: 50px;*/
/*}*/
/*.quick-button > ul {*/

/*}*/
/*.quick-button > ul > li {*/
/*    display: inline-block;*/
/*}*/
/*.quick-button > ul > li > a {*/
/*    display: block;*/
/*    width: 260px;*/
/*    height: 160px;*/
/*    margin: 0 15px 0 0;*/
/*    padding: 20px;*/
/*    text-align: center;*/
/*    color: #333;*/
/*    border-radius: 15px;*/
/*    background-color: rgb(244 249 255 / 90%);*/
/*    box-shadow: 0 2px 4px rgba(0,0,0,0.25);*/
/*    transition: all 0.25s;*/
/*}*/

/*.quick-button > ul > li > a:hover {*/
/*    color: #fff;*/
/*    background-color: rgba(0,104,183,0.9);*/
/*    box-shadow: 0 4px 6px rgba(0,0,0,0.45);*/
/*}*/
/*.quick-button > ul > li > a ion-icon {*/
/*    display: inline-block;*/
/*    margin: 0 0 10px;*/
/*    font-size: 64px;*/
/*}*/
/*.quick-button > ul > li > a span.title {*/
/*    display: block;*/
/*    font-size: 21px;*/
/*}*/

/*!* 기본 hover 색상 *!*/
/*.quick-button > ul > li.highlight a {*/
/*    color: #fff;*/
/*    background-color: rgb(17 93 166 / 100%);*/
/*    box-shadow: 0 4px 6px rgba(0,0,0,0.25);*/
/*}*/
/*.quick-button > ul > li.highlight a:hover {*/
/*    background-color: rgb(17 93 166 / 100%);*/
/*    box-shadow: 0 4px 6px rgba(0,0,0,0.45);*/
/*}*/
/*.quick-button > ul > li.highlight-red a {*/
/*    color: #fff;*/
/*    background-color: #FF6A6A;*/
/*    box-shadow: 0 4px 6px rgba(0,0,0,0.25);*/
/*}*/
/*.quick-button > ul > li.highlight-red a:hover {*/
/*    background-color: #FF3131;*/
/*    box-shadow: 0 4px 6px rgba(0,0,0,0.45);*/
/*}*/


/* ==================================================================================
    컨텐츠 영역 - 공통
================================================================================== */
#container {

}

.main-contents {
    display: flex !important;
    justify-content: space-between;
    gap: 2%;
    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;
}
#container .main-contents > div {
    width: 48%;
}
/* ==================================================================================
    컨텐츠 영역 - 좌측 컨텐츠 : 인사말
================================================================================== */
#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: #EEEEEE url("/2025f/images/bg/greetings_bg.png") left bottom no-repeat;
}
#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;
}
.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: center;
    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;
}
.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: #1577dc;
}

.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: #13952a;
    background: #13952a;
}
/* ==================================================================================
    컨텐츠 영역 - 좌측 컨텐츠 :  프로그램표
================================================================================== */
#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: #13952a;
}
.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: #13952a;
}
.notice-list li span.date {
    min-width: 100px;
    font-size: 15px;
    font-weight: 400;
    color: #767676;
}

/* ==================================================================================
    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 .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;
    word-break: keep-all;
    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: 35%;
    top: -87%;
    width: 640px;
    margin-left: -320px;
}
.layer-popup-area.pop2 .cont {
    padding: 30px;
}
.layer-popup-area.pop2 .close {
    width: 640px;
}
.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: #13952a;
    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;
}
