@import url('https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/static/pretendard-subset.min.css');

@charset 'utf-8';

html {
    font-size: 62.5%;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img, video, svg, picture {
    display: block;
    height: auto;
    max-width: 100%;
}

body {
    font-size: 1.4rem;
    color: #333D4B;
    overflow-x: hidden;
    font-family: "Pretendard", pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Hiragino Sans", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", Osaka, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    letter-spacing: -0.1px;
}

/* ====================== */
/* UI Reset */
/* ====================== */


a {
    text-decoration: none;
    cursor: pointer;
}

button {
    border: none;
    cursor: pointer;
    background-color: transparent;
}

sup {
    line-height: 1;
    vertical-align: 0px;
}

ul, ol, li {
    list-style: none;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input::-ms-clear {
    display: none;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type='number'] {
    -moz-appearance: textfield;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #F0F0F0;
    border-radius: 10px;
}

.blind {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

/* ====================== */
/* 공통 */
/* ====================== */

:root {
    --primary: #63008A;
    --secondary: #F5E8FF;
    --red: #FF3336;
    --blue: #3A54FF;
    --green: #00CE6A;

    --swiper-navigation-color: #5297FF;
    --swiper-pagination-color: #5297FF;
}

.inner {
    padding: 0 20px;
    max-width: 1180px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* ====================== */
/* 레이아웃 */
/* ====================== */

.header-wrap {
    border-bottom: 1px solid #F0F0F0;
    background: #FFF;
    box-shadow: 1px 1px 4px 0px rgba(140, 194, 215, 0.10);
}

.header-wrap header {
    display: flex;
    justify-content: space-between;
    height: 74px;
    align-items: center;
}

.header-wrap .hd-gnb {
    display: flex;
    gap: 40px;
}

.header-wrap .hd-gnb a {
    color: #333D4B;
}

.header-wrap .hd-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-wrap .hd-right .btn-register {
    display: flex;
    justify-content: center;
    padding: 8px 13px;
    background: #F9FAFB;
    gap: 6px;
    border-radius: 50px;
    color: #333D4B;
    align-items: center;
}

.header-wrap .hd-right .btn-login {
    display: flex;
    justify-content: center;
    padding: 8px 13px;
    background: #F9FAFB;
    gap: 6px;
    border-radius: 50px;
    color: #333D4B;
    align-items: center;
}

.header-wrap .hd-right .btn-register img {
    flex: none;
    width: 14px;
}

.header-wrap .hd-right .btn-login img {
    flex: none;
    width: 14px;
}

.header-wrap .hd-right .btn-menu {
    display: none;
    width: 40px;
    height: 40px;
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
    background: transparent url(../images/btn_menu.svg) no-repeat center;
    background-size: 50% auto;
}

.footer-wrap {
    border-top: 1px solid #F0F0F0;
    background: #FFF;
    padding: 40px 0 30px;
}

.footer-wrap .ft-logo {
    height: 33px;
    margin-bottom: 40px;
}

.footer-wrap .ft-link {
    margin-bottom: 30px;
}

.footer-wrap .ft-link a {
    color: #969696;
    font-size: 16px;
    margin-right: 20px;
}

.footer-wrap .ft-company {
    margin-bottom: 40px;
}

.footer-wrap .ft-company > div {
    display: flex;
    gap: 8px;
    align-items: start;
    font-size: 16px;
    color: #969696;
    margin-bottom: 13px;
    line-height: 1.55;
}

.footer-wrap .ft-copyright {
    font-size: 16px;
    color: #969696;
}

/* drawer */

.drawer-wrap {
    position: fixed;
    left: 0;
    top: 74px;
    bottom: 0;
    right: 0;
    z-index: 101;
    background-color: rgba(0, 0, 0, .4);
    overflow: hidden;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.drawer-wrap .drawer {
    width: 100%;
    height: 100%;
    padding-top: 20px;
    background-color: #fff;
    margin-left: auto;
    box-shadow: 0 0 13px 3px rgba(43, 43, 43, 0.1);
    transform: translateX(100%);
    transition: transform .5s ease;
}

.drawer-wrap.active {
    opacity: 1;
    pointer-events: inherit;
}

.drawer-wrap.active .drawer {
    transform: translateX(0);
}

.drawer-wrap .hd-auth {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.drawer-wrap .hd-auth .btn-register {
    display: flex;
    padding: 8px 13px;
    background: #F9FAFB;
    gap: 6px;
    border-radius: 50px;
    color: #333D4B;
    align-items: center;
}

.drawer-wrap .hd-auth .btn-login {
    display: flex;
    padding: 8px 13px;
    background: #F9FAFB;
    gap: 6px;
    border-radius: 50px;
    color: #333D4B;
    align-items: center;
}

.drawer-wrap .hd-auth .btn-register img {
    flex: none;
    width: 14px;
}

.drawer-wrap .hd-auth .btn-login img {
    flex: none;
    width: 14px;
}

.drawer-wrap .hd-gnb a {
    display: block;
    color: #333D4B;
    font-weight: 500;
    padding: 14px 20px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

/* ====================== */
/* 메인 */
/* ====================== */

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 17px;
}

.banner {
    overflow: hidden;
    margin-bottom: 60px;
}

.banner .swiper {
    max-width: 1180px;
    width: 100%;
    padding: 0 20px;
    overflow: visible;
}

.banner .swiper-slide {
    width: 100%;
}

.banner .banner-item {
    width: 100%;
    height: 520px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px
}

.banner .banner-item .banner-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner .banner-item .banner-title {
    font-size: 40px;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.banner .banner-item .banner-title strong {
    font-weight: 600;
}

.banner .banner-item .banner-text {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.banner .swiper-button-next,
.banner .swiper-rtl .swiper-button-prev {
    right: 40px;
}

.banner .swiper-button-prev,
.banner .swiper-rtl .swiper-button-next {
    left: 40px;
}

.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.banner .swiper-pagination {
    left: 50%;
    bottom: 20px;
    right: auto;
    width: auto;
    background-color: rgba(39, 39, 39, 0.4);
    padding: 12px 16px;
    border-radius: 50px;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}

.banner .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
    transition: width .5s ease;
    border-radius: 5px;
    height: 5px;
    width: 5px;
    margin: 0 !important;
}

.banner .swiper-pagination-bullet-active {
    width: 44px;
    background-color: #5297FF;
}

.board-area {
    display: flex;
    gap: 44px;
    margin-bottom: 60px;
}

.board-area .board {
    width: 100%;
}

.board-area .board-head .board-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #F0F0F0;
}

.board-area .board-body li {
    padding: 17px 0;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}

.board-area .board-body li a {
    color: #333D4B;
    flex: auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.board-area .board-body li span {
    color: #969696;
}

.board-area .board-head .board-desc p {
    color: #5297FF;
    font-size: 16px;
    font-weight: 500;
}

.board-area .board-head .board-desc .btn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #969696;
}

.board-area .board-head .board-desc .btn-more:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/btn_more.svg) no-repeat center/contain;
}

.line-banner {
    margin-bottom: 60px;
}

.line-banner .swiper {
    border-radius: 15px;
}

.line-banner .swiper img {
    width: 100%;
}

.line-banner .only-m {
    display: none;
}

.line-banner .swiper-pagination {
    left: auto;
    right: 25px;
    bottom: 15px;
    width: auto;
    display: flex;
    gap: 8px;
}

.line-banner .swiper-pagination-bullet {
    background-color: #F9FAFB;
    opacity: 1;
    transition: width .5s ease;
    border-radius: 100px;
    height: 10px;
    width: 10px;
    margin: 0 !important;
}

.line-banner .swiper-pagination-bullet-active {
    background-color: #5297FF;
}

.schedule {
    margin-bottom: 60px;
}

.schedule-wrap {
    display: flex;
    gap: 40px;
    height: 595px;
}

.schedule-wrap .schedule-title {
    font-size: 20px;
    font-weight: 600;
}

.schedule-wrap .calendar {
    width: 65%;
    border-radius: 15px;
    border: 1px solid #F0F0F0;
    box-shadow: 1px 1px 4px 0px rgba(140, 194, 215, 0.10);
    padding: 30px;
    height: 100%;
    position: relative;
}

.schedule-wrap .calendar-btn {
    position: absolute;
    right: 30px;
    top: 30px;
    display: flex;
    gap: 8px;
}

.schedule-wrap .calendar-btn button {
    border-radius: 35.385px;
    width: 26px;
    height: 26px;
    border: 1px solid #F0F0F0;
    background: #FFF;
    box-shadow: 1px 1px 4.175px 0px rgba(140, 194, 215, 0.25);
    font-size: 0;
    overflow: hidden;
}

.schedule-wrap .calendar-btn .btn-next {
    background: #fff url(../images/btn_calendar_next.svg) no-repeat center/12px;
}

.schedule-wrap .calendar-btn .btn-prev {
    background: #fff url(../images/btn_calendar_prev.svg) no-repeat center/12px;
}

.schedule-wrap .calendar table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    margin-top: 56px;
}

.schedule-wrap .calendar table th {
    font-weight: 600;
}

.schedule-wrap .calendar table th:first-child {
    color: #F46161;
}

.schedule-wrap .calendar table th:last-child {
    color: #5297FF;
}

.schedule-wrap .calendar table td {
    width: calc(100% / 7);
    padding: 3px 5px;
}

.schedule-wrap .calendar table td > div {
    height: 66px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 500;
}

.schedule-wrap .calendar table td > div.active {
    background-color: #5297FF;
    color: #fff;
}

.schedule-wrap .calendar table .disabled {
    opacity: .4;
}

.schedule-wrap .event {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.schedule-wrap .event .event-list {
    margin-top: 20px;
    background-color: #fff;
    overflow: auto;
    flex: auto;
    overflow: auto;
}

.schedule-wrap .event .event-item {
    margin-bottom: 20px;
    border-radius: 15px;
    border: 1px solid #F0F0F0;
    box-shadow: 1px 1px 4px 0px rgba(140, 194, 215, 0.10);
    padding: 20px;
}

.schedule-wrap .event .event-item:last-child {
    margin-bottom: 0;
}

.schedule-wrap .event .event-item .date {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #5297FF;
    margin-bottom: 20px;
}

.schedule-wrap .event .event-item span {
    color: #969696;
    display: block;
    margin-bottom: 4px;
}

.schedule-wrap .event .event-item p {
    font-weight: 500;
}

.gallery {
    margin-bottom: 60px;
}

.gallery .swiper-slide {
    width: 220px;
}

.gallery .gallery-item .gallery-thumb {
    width: 100%;
    height: 180px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.gallery .gallery-item .gallery-thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery .gallery-item .gallery-title {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery .gallery-item .gallery-date {
    font-size: 12px;
    color: #969696;
}

.gallery .gallery-list {
    position: relative;
}

.gallery .btn-gallery-next,
.gallery .btn-gallery-prev {
    width: 36px;
    height: 36px;
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 100px;
    background: #fff url(../images/gallery_arrow.svg) no-repeat center;
    background-size: 45% auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 1px 1px 5.9px 0px rgba(0, 0, 0, 0.25);
}

.gallery .btn-gallery-next {
    right: -18px;
    z-index: 1;
}

.gallery .btn-gallery-prev {
    left: -18px;
    z-index: 1;
    transform: translateY(-50%) rotate(-180deg);
}

.partner {
    margin-bottom: 120px;
}

.partner .partner-slide {
    position: relative;
    overflow: hidden;
    padding: 0 22px;
    margin-bottom: 20px;
}

.partner .partner-slide .partner-slide-group {
    display: flex;
    gap: 10px;
}

.partner .partner-slide .partner-slide-group > div {
    width: 194px;
    height: 66px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.partner .partner-slide .partner-slide-group > div img {
    margin: auto;
}

.partner .partner-slide .js-marquee + .js-marquee {
    margin-left: 10px;
}

/*.sns-navigation {*/
/*    position: fixed;*/
/*    right: 40px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    border-radius: 50px;*/
/*    border: 1px solid #F0F0F0;*/
/*    background: #FFF;*/
/*    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.06);*/
/*    width: 60px;*/
/*    text-align: center;*/
/*    padding: 20px 0;*/
/*    z-index: 10;*/
/*}*/

/*.sns-navigation img {*/
/*    margin: 0 auto 4px;*/
/*}*/

/*.sns-navigation a {*/
/*    display: block;*/
/*    font-size: 10px;*/
/*    color: #7A7A7A;*/
/*}*/

/*.sns-navigation a + a {*/
/*    margin-top: 40px;*/
/*}*/

/* 모바일
@media screen and (max-width: 960px) {
    .header-wrap .hd-gnb {
        display: none;
    }

    .header-wrap .hd-right .btn-menu {
        background-size: 60% auto;
        display: block;
    }

    .sns-navigation {
        display: none;
    }

    .schedule-wrap {
        flex-direction: column;
        height: auto;
    }

    .schedule-wrap .calendar {
        width: 100%;
        height: auto;
    }

    .schedule-wrap .event {
        width: 100%;
        height: auto;
    }

    .schedule-wrap .calendar table td > div {
        height: 55px;
    }

} */

/* 모바일 */
@media screen and (max-width: 960px) {
    .header-wrap .hd-right .btn-register {
        display: none;
    }

    .header-wrap .hd-right .btn-login {
        display: none;
    }
    
    .header-wrap .hd-right .btn-menu {
        background-size: 60% auto;
        display: block;
    }

    .banner .banner-item {
        height: 260px;
        padding: 0 40px 40px;
    }

    .banner .banner-item .banner-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .banner .banner-item .banner-text {
        font-size: 12px;
    }

    .banner .swiper-button-next:after, .banner .swiper-button-prev:after {
        font-size: 16px;
    }

    .banner .swiper-button-next, .banner .swiper-rtl .swiper-button-prev {
        right: 24px;
    }

    .banner .swiper-button-prev, .banner .swiper-rtl .swiper-button-next {
        left: 24px;
    }

    .board-area {
        flex-direction: column;
    }

    .board-area .board-body li {
        padding: 15px 0;
    }

    .board-area .board-head .board-desc p {
        font-size: 14px;
    }

    .schedule-wrap .calendar {
        padding: 20px 16px 16px;
        border-radius: 12px;
    }

    .schedule-wrap .calendar table td > div {
        height: 30px;
    }

    .schedule-wrap .calendar table td {
        padding: 3px;
    }

    .schedule-wrap .calendar table {
        margin-top: 32px;
    }

    .schedule-wrap .calendar-btn {
        right: 16px;
        top: 20px;
    }

    .schedule-wrap .event .event-item {
        padding: 14px 14px;
        margin-bottom: 10px;
        border-radius: 6px;
    }

    .gallery .swiper-slide {
        width: 200px;
    }

    .gallery .gallery-item .gallery-thumb {
        height: 140px;
    }

    .line-banner .only-m {
        display: block;
    }

    .line-banner .only-pc {
        display: none;
    }

    .partner {
        margin-bottom: 80px;
    }

    .footer-wrap .ft-logo {
        margin-bottom: 20px;
    }

    .footer-wrap .ft-link a {
        font-size: 14px;
    }

    .footer-wrap .ft-company {
        margin-bottom: 24px;
    }

    .footer-wrap .ft-company > div {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-wrap .ft-company > div img {
        height: 17px;
    }

    .footer-wrap .ft-copyright {
        font-size: 14px;
        line-height: 1.5;
    }
}

