@charset "utf-8";

img {max-width: 100%;}
div, p, ul, li, span, b, strong, h1, h2, h3, h4, h5 {word-break: keep-all;}

.default-btn {
    display: block;
    height: 45px;
    line-height: 45px;
    min-width: 150px;
    background: #367dd5;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: all .2s;
}
.default-btn:hover {background: #0eae99;}
.more-btn {
    position: relative;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #367dd5;
    transition: all 0s;
    width: fit-content;
}
.more-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #367dd5;
    transition: width 0.5s ease;
}
.more-btn b {
    font-size: 14px;
    margin-right: 20px;
    color: #367dd5;
}
.more-btn svg {
    width: 12px !important;
    height: 10px !important;
}
.more-btn svg .st0 {
    fill: none;
    stroke: #367dd5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}
.more-btn:hover {border-bottom: 2px solid transparent;}
.more-btn:hover::after {width: 100%;}
.more-btn.white {border-bottom-color: #fff;}
.more-btn.white::after {background-color: #fff;}
.more-btn.white b {color: #fff;}
.more-btn.white svg .st0 {stroke: #fff;}
.more-btn.white:hover {border-bottom: 2px solid transparent;}
.more-btn.black {border-bottom-color: #000;}
.more-btn.black::after {background-color: #000;}
.more-btn.black b {color: #000;}
.more-btn.black svg .st0 {stroke: #000;}
.more-btn.black:hover {border-bottom: 2px solid transparent;}
.circle-btn {
    width: 26px;
    height: 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #0eae99;
    border-radius: 26px;
    transition: all .2s;
}
.circle-btn svg {
    width: 12px !important;
    height: 10px !important;
}
.circle-btn svg .st0 {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}
.circle-btn:hover {background: #367dd5;}
.admin-btn {
    font-size: 20px;
    color: #ff0000;
    margin-top: 15px;
}

@media all and (max-width: 767px) {
    .default-btn {
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
    .more-btn b {font-size: 12px;}
}

/*main*/
.main section {
    position: relative;
    padding: 100px 0;
}
.main .title {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.main .title h2 {
    font-weight: normal;
    font-size: 36px;
}
.main .hero {
    max-width: 1820px;
    margin: 0 auto;
    padding: 0;
}
.main .hero .hero-slider {
    border-radius: 30px;
    overflow: hidden;
    height: 650px;
}
.main .hero .hero-slider .swiper-slide {
    position: relative;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.main .hero .hero-slider .bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 105%;
    height: 105%;
    opacity: 0.5;
    filter: blur(5px);
}
.main .hero .hero-slider .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    margin: -50px auto 0;
    position: relative;
    z-index: 1;
}
.main .hero .hero-slider .txt {
    width: calc(100% - 350px);
    padding-right: 30px;
}
.main .hero .hero-slider .txt .label {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #0eae99;
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
}
.main .hero .hero-slider .txt .subject {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    margin: 20px 0 80px;
    line-height: 1.3;
}
.main .hero .hero-slider .img {
    width: 350px;
    position: relative;
}
.main .hero .hero-slider .img img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.main .hero .hero-slider .img::after {
    content: "";
    background: #0eae99;
    border-radius: 10px;
    position: absolute;
    right: 0;
    bottom: -10px;
    display: block;
    width: calc(100% - 10px);
    height: 100%;
}
.main .hero .slider-controls > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
}
.main .hero .slider-controls > div svg {
    width: 14px !important;
    height: 12px !important;
}
.main .hero .slider-controls > div svg .st0 {
    fill: none;
    stroke: #000;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}
.main .hero .slider-controls .prev-btn {left: 50px;}
.main .hero .slider-controls .prev-btn svg {transform: rotate(180deg)}
.main .hero .slider-controls .next-btn {right: 50px;}
.main .hero .keyword {
    margin-top: -50px;
    position: relative;
    z-index: 1;
}
.main .hero .keyword .box {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 20px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.main .hero .keyword .box h3 {
    font-size: 20px;
    color: #fff;
    background: #367dd5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    text-align: center;
}
.main .hero .keyword .box ul {
    width: calc(100% - 200px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px;
}
.main .hero .keyword .box ul li a {
    display: block;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    padding: 10px 15px;
    color: #333;
    transition: all .2s;
}
.main .hero .keyword .box ul li a:hover {opacity: 0.7;}
.main .ranking .title {margin-bottom: 0;}
.main .ranking .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
.main .ranking .inner ul {
    width: calc(100% - 400px);
    padding-right: 50px;
}
.main .ranking .inner ul li {
    border-bottom: 1px solid #ddd;
    padding: 22px 0;
}
.main .ranking .inner ul li a {
    display: flex;
    align-items: center;
}
.main .ranking .inner ul li .number {
    width: 26px;
    height: 26px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e5eb;
    font-size: 14px;
    font-weight: 600;
    color: #686b71;
}
.main .ranking .inner ul li .subject {
    width: calc(100% - 52px);
    padding: 0 35px;
    font-size: 20px;
    transition: all .2s;
}
.main .ranking .inner .img {width: 400px;}
.main .ranking .inner ul li:nth-child(1) .number {
    background: url(/img/assets/main_ranking_gold.png) center / cover no-repeat;
    height: 36px;
    font-size: 0;
    border-radius: 0;
}
.main .ranking .inner ul li:nth-child(2) .number {
    background: url(/img/assets/main_ranking_silver.png) center / cover no-repeat;
    height: 36px;
    font-size: 0;
    border-radius: 0;
}
.main .ranking .inner ul li:nth-child(3) .number {
    background: url(/img/assets/main_ranking_bronze.png) center / cover no-repeat;
    height: 36px;
    font-size: 0;
    border-radius: 0;
}
.main .ranking .inner ul li:nth-child(1) .subject,
.main .ranking .inner ul li:nth-child(2) .subject,
.main .ranking .inner ul li:nth-child(3) .subject {font-weight: 600;}
.main .ranking .inner ul li a:hover .subject {opacity: 0.7;}
.main .festival::before {
    content: "";
    background: url(/img/assets/main_local_bg.jpg) center / cover no-repeat;
    width: 100%;
    height: 400px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.main .festival .container {
    position: relative;
    z-index: 1;
}
.main .festival .festival-slider .swiper-slide {
    overflow: hidden;
    aspect-ratio: 300 / 424;
    border: 4px solid transparent;
    border-radius: 10px;
    transition: all .2s;
    transform: scale(0.9);
}
.main .festival .festival-slider .swiper-slide .img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main .festival .festival-slider .swiper-slide-active {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: #fff;
}
.main .festival .festival-slider .slider-controls {
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.main .festival .festival-slider .slider-controls > div svg {
    width: 20px !important;
    height: 17px !important;
}
.main .festival .festival-slider .slider-controls > div svg .st0 {
    fill: none;
    stroke: #000;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2px;
}
.main .festival .festival-slider .slider-controls .prev-btn,
.main .festival .festival-slider .slider-controls .next-btn {
    cursor: pointer;
    width: 25px;
}
.main .festival .festival-slider .slider-controls .prev-btn svg {transform: rotate(180deg)}
.main .festival .festival-slider .swiper-pagination {
    background: rgba(0,0,0,0.1);
    width: calc(100% - 90px);
    height: 2px;
    margin: 0 20px;
    position: static;
}
.main .festival .festival-slider .swiper-pagination span {background: #30312f;}
.main .link {padding-top: 0;}
.main .link .faq .faq-slider {
    overflow: hidden;
    border-radius: 10px;
}
.main .link .faq .faq-slider .swiper-slide {
    position: relative;
    padding: 60px 75px;
}
.main .link .faq .faq-slider .txt {
    position: relative;
    z-index: 1;
}
.main .link .faq .faq-slider .txt h3 {
    font-size: 30px;
    margin-bottom: 20px;
}
.main .link .faq .faq-slider .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.main .link .faq .faq-slider .slider-controls {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: rgba(0,0,0,0.5);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    z-index: 1;
    padding: 10px 20px;
}
.main .link .faq .faq-slider .slider-controls svg {
    width: 14px !important;
    height: 12px !important;
}
.main .link .faq .faq-slider .slider-controls svg .st0 {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}
.main .link .faq .faq-slider .slider-controls .prev-btn,
.main .link .faq .faq-slider .slider-controls .next-btn {cursor: pointer;}
.main .link .faq .faq-slider .slider-controls .prev-btn svg {transform: rotate(180deg)}
.main .link .faq .faq-slider .slider-controls .swiper-pagination {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 0 20px;
    position: static;
}
.main .link .banner {margin-top: 100px;}
.main .link .banner ul {
    display: flex;
    flex-wrap: wrap;
}
.main .link .banner ul li {
    width: calc((100% - 20px)/2);
    margin-right: 20px;
    margin-bottom: 20px;
}
.main .link .banner ul li:nth-child(2n) {margin-right: 0;}
.main .link .banner ul li a {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 540 / 200;
    overflow: hidden;
    border-radius: 10px;
}
.main .link .kakao a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    background: url(/img/assets/main_kakao_bg.jpg) center / cover no-repeat;
    padding: 50px;
}
.main .link .kakao p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.main .link .kakao p b {
    font-size: 20px;
    color: #3b1e1e;
    padding-left: 15px;
    text-align: center;
}
.main .link .kakao .default-btn {background: #3b1e1e;}

@media all and (max-width: 1820px) {
    .main .hero {padding: 0 40px;}
    .main .hero .slider-controls .prev-btn {left: 20px;}
    .main .hero .slider-controls .next-btn {right: 20px;}
}
@media all and (max-width: 1400px) {
    .main .hero .hero-slider .inner {max-width: 900px;}
}
@media all and (max-width: 1200px) {
    .main .hero {padding: 0 16px;}
    .main .hero .hero-slider {height: 600px;}
    .main .hero .hero-slider .inner {max-width: 700px;}
    .main .hero .hero-slider .txt {width: calc(100% - 300px)}
    .main .hero .hero-slider .txt .subject {font-size: 36px;}
    .main .hero .hero-slider .img {width: 300px;}
}
@media all and (max-width: 1024px) {
    .main .hero .keyword .box h3 {width: 150px;}
    .main .hero .keyword .box ul {width: calc(100% - 150px)}
    .main .link .faq .faq-slider .swiper-slide {padding: 60px 40px;}
    .main .link .kakao a {justify-content: center;}
    .main .link .kakao p {
        justify-content: center;
        margin-bottom: 20px;
        width: 100%;
    }
}
@media all and (max-width: 991px) {
    .main .hero .slider-controls {display: none;}
    .main .ranking .title {margin-bottom: 20px;}
    .main .ranking .inner ul {width: calc(100% - 300px)}
    .main .ranking .inner ul li {padding: 15px 0;}
    .main .ranking .inner .img {width: 300px;}
    .main .link .kakao p b {
        display: block;
        padding: 0;
        margin-top: 10px;
    }
}
@media all and (max-width: 767px) {
    .main section {padding: 50px 0;}
    .main .title {margin-bottom: 20px;}
    .main .title h2 {
        font-size: 24px;
        width: 100%;
    }
    .main .title .more-btn {margin-top: 15px;}
    .main .title {text-align: center;}
    .main .title .more-btn {margin: 15px auto 0;}
    .main .hero .hero-slider {
        border-radius: 0;
        height: auto;
        margin: 0 -16px;
    }
    .main .hero .hero-slider .swiper-slide {padding: 30px 20px;}
    .main .hero .hero-slider .inner {margin: 0;}
    .main .hero .hero-slider .txt {
        width: 100%;
        padding: 0 0 20px;
        text-align: center;
    }
    .main .hero .hero-slider .txt .label {
        font-size: 13px;
        padding: 2px 10px;
        border-radius: 3px;
    }
    .main .hero .hero-slider .txt .subject {
        font-size: 24px;
        margin: 15px 0 0;
    }
    .main .hero .hero-slider .txt .more-btn {display: none;}
    .main .hero .hero-slider .img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .main .hero .hero-slider .img::after {
        right: -6px;
        bottom: -6px;
        width: calc(100% - 6px);
    }
    .main .hero .keyword {margin-top: 16px;}
    .main .hero .keyword .container {padding: 0;}
    .main .hero .keyword .box {border-radius: 10px;}
    .main .hero .keyword .box h3 {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }
    .main .hero .keyword .box ul {
        width: 100%;
        padding: 15px;
        gap: 6px;
    }
    .main .hero .keyword .box ul li a {
        font-size: 14px;
        padding: 6px 10px;
    }
    .main .ranking .inner ul {
        width: 100%;
        padding: 0;
    }
    .main .ranking .inner ul li {padding: 10px 0;}
    .main .ranking .inner ul li .subject {
        font-size: 16px;
        padding: 0 15px;
    }
    .main .ranking .inner .img {display: none;}
    .main .festival::before {height: 300px;}
    .main .festival .festival-slider .slider-controls {margin-top: 30px;}
    .main .link .faq .faq-slider .swiper-slide {padding: 40px 20px;}
    .main .link .faq .faq-slider .txt h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .main .link .faq .faq-slider .slider-controls {
        right: 15px;
        bottom: 15px;
        height: 26px;
        line-height: 26px;
        padding: 0 12px;
        display: none;
    }
    .main .link .faq .faq-slider .slider-controls .prev-btn {margin-right: 10px;}
    .main .link .faq .faq-slider .slider-controls .swiper-pagination {display: none;}
    .main .link .banner {margin-top: 50px;}
    .main .link .banner ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .main .link .kakao a {padding: 30px;}
    .main .link .kakao p b {font-size: 16px;}
}

/*sub*/
.sub-title {margin-bottom: 30px;}
.sub-title h2 {font-size: 30px;}
.sub .festival-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -60px;
}
.sub .festival-list li {
    width: calc((100% - 60px)/3);
    margin-right: 30px;
    margin-bottom: 60px;
}
.sub .festival-list li:nth-child(3n) {margin-right: 0;}
.sub .festival-list li .img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 346 / 480;
}
.sub .festival-list li .img .progress {
    padding: 8px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 10px 0;
    z-index: 1;
}
.sub .festival-list li .img .bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: block;
    transition: all .2s;
}
.sub .festival-list li:hover .img .bg {transform: scale(1.1)}
.sub .festival-list li .txt {margin-top: 20px;}
.sub .festival-list li .txt .region {
    font-size: 14px;
    color: #fff;
    background: #0eae99;
    padding: 3px 8px;
    display: inline-block;
    font-weight: bold;
}
.sub .festival-list li .txt .subject {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0 10px;
}
.sub .festival-list li .txt .period {
    font-size: 16px;
    color: #666;
}
@media all and (max-width: 767px) {
    .sub-title {margin-bottom: 15px;}
    .sub-title h2 {font-size: 20px;}
    .sub .festival-list {margin-bottom: -30px;}
    .sub .festival-list li {
        width: calc((100% - 15px) / 2);
        margin-right: 15px;
        margin-bottom: 30px;
    }
    .sub .festival-list li:nth-child(3n) {margin-right: 15px;}
    .sub .festival-list li:nth-child(2n) {margin-right: 0;}
    .sub .festival-list li .img .progress {
        font-size: 14px;
        padding: 4px 10px;
        border-radius: 0 0 5px 0;
    }
    .sub .festival-list li .txt .region {font-size: 12px;}
    .sub .festival-list li .txt .subject {
        font-size: 16px;
        margin: 8px 0 4px;
    }
    .sub .festival-list li .txt .period {font-size: 12px;}
}

/*달력*/
.sub-calendar {margin-top: -50px;}
.sub-calendar .top-area {
    display: flex;
    flex-wrap: wrap;
}
.sub-calendar .top-area > div {min-height: calc(940px - 145px);}
.sub-calendar .inner {
    position: relative;
    height: 100%;
}
.sub-calendar .left {
    background: #367dd5;
    padding-top: 100px;
    padding-left: calc((100% - 1100px)/2);
    color: #fff;
    width: 36%;
}
.sub-calendar .left .inner {padding-right: 50px;}
.sub-calendar .left .label {
    color: #fff;
    border: 1px solid #fff;
    padding: 6px 20px;
    border-radius: 5px;
    font-size: 20px;
    display: inline-block;
}
.sub-calendar .left .year {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    margin: 15px 0 30px;
}
.sub-calendar .left .arrow-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sub-calendar .left .arrow-btn button {
    width: 42px;
    height: 42px;
    border-radius: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #fff;
}
.sub-calendar .left .arrow-btn button svg {
    width: 12px !important;
    height: 10px !important;
}
.sub-calendar .left .arrow-btn button svg .st0 {
    fill: none;
    stroke: #111;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}
.sub-calendar .left .arrow-btn .prev-btn svg {transform: rotate(180deg)}
.sub-calendar .left .object > div {
    position: absolute;
    bottom: 0;
}
.sub-calendar .left .object .object-1 {left: -36%;}
.sub-calendar .left .object .object-2 {left: 9%; z-index: 1}
.sub-calendar .left .object .object-3 {right: -10%;}
.sub-calendar .right {
    width: 64%;
    background: #f5f5f5;
    padding: 50px;
    padding-right: calc((100% - 1100px)/2);
}
.sub-calendar .right #calendar {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
    position: relative;
    z-index: 1;
}
.sub-calendar .right .object > div {position: absolute;}
.sub-calendar .right .object .object-4 {right: -30%; bottom: -50px;}
.sub-calendar .right .object .object-5 {right: -18%; bottom: 40%;}

.sub-calendar div, .sub-calendar p, .sub-calendar span {word-break: normal;}

.sub-calendar .fc-toolbar {display: none !important;}
.sub-calendar .fc-theme-standard th {
    background: #000;
    color: #fff;
    border: none;
}
.sub-calendar .fc-col-header-cell-cushion {
    font-size: 18px;
    padding: 15px;
    color: #fff;
    font-weight: normal;
}
.sub-calendar .fc-daygrid-event {margin: 10px 0 !important;}
.sub-calendar .fc-daygrid-day-frame {
    padding: 10px;
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.sub-calendar .fc-daygrid-day-frame.active {background: #f5f5f5;}
.sub-calendar .fc-daygrid-day-top {
    display: block;
    text-align: center;
}
.sub-calendar .fc-daygrid-day-events {display: none !important;}
.sub-calendar .fc-daygrid-day-number {padding: 0;}
.sub-calendar .fc-daygrid-day-number .day-num {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}
.sub-calendar .fc-daygrid-day-number .day-count .count {
    background: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #666;
    font-weight: normal;
    margin-top: 8px;
    display: inline-block;
}
.sub-calendar .fc-daygrid-day.fc-day-today {background: #0eae99 !important;}
.sub-calendar .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {color: #fff;}
.sub-calendar .fc-daygrid-day.fc-day-today .day-count .count {
    border-color: #0eae99;
    color: #0eae99;
    font-weight: bold;
}
.sub-calendar .fc-day-sun .fc-daygrid-day-number {color: #fe4747;}
.sub-calendar .fc-day-sat .fc-daygrid-day-number {color: #1b7ddf;}

.sub-calendar .bottom-area {padding-top: 100px;}

@media all and (min-width: 1921px) {
    .sub-calendar .left {width: 38%;}
    .sub-calendar .right {width: 62%;}
}
@media all and (max-width: 1200px) {
    .sub-calendar .top-area > div {min-height: auto;}
    .sub-calendar .left {
        width: 100%;
        padding: 50px;
        overflow: hidden;
    }
    .sub-calendar .left .inner {
        text-align: center;
        padding: 0;
    }
    .sub-calendar .left .year {margin: 10px 0 20px;}
    .sub-calendar .left .arrow-btn {justify-content: center;}
    .sub-calendar .left .object > div {margin-bottom: -50px;}
    .sub-calendar .left .object > div img {max-width: 80%;}
    .sub-calendar .left .object .object-1 {left: 0;}
    .sub-calendar .left .object .object-2 {left: 18%;}
    .sub-calendar .left .object .object-3 {right: 5%;}
    .sub-calendar .right {
        width: 100%;
        padding: 50px;
    }
    .sub-calendar .fc-daygrid-day-frame {min-height: 100px;}
    .sub-calendar .right .object {display: none;}
}
@media all and (max-width: 1024px) {
    .sub-calendar .left {padding: 50px 0;}
}
@media all and (max-width: 767px) {
    .sub-calendar {margin-top: -20px;}
    .sub-calendar .left {padding: 20px 0;}
    .sub-calendar .left .label {
        font-size: 15px;
        padding: 4px 12px;
        position: relative;
        z-index: 1;
    }
    .sub-calendar .left .year {
        font-size: 30px;
        line-height: 1;
        margin: 12px 0 0;
        position: relative;
        z-index: 1;
    }
    .sub-calendar .left .arrow-btn button {
        position: absolute;
        top: 32px;
        z-index: 2;
    }
    .sub-calendar .left .arrow-btn .prev-btn {left: 15px;}
    .sub-calendar .left .arrow-btn .next-btn {right: 15px;}
    .sub-calendar .left .object > div {margin-bottom: -20px;}
    .sub-calendar .left .object > div img {max-width: 30%;}
    .sub-calendar .left .object .object-1 {left: -17%;}
    .sub-calendar .left .object .object-2 {left: 5%;}
    .sub-calendar .left .object .object-3 {right: -14%;}
    .sub-calendar .right {padding: 15px;}
    .sub-calendar .fc-col-header-cell-cushion {
        font-size: 15px;
        padding: 10px;
    }
    .sub-calendar .fc-daygrid-day-frame {min-height: 85px;}
    .sub-calendar .fc-daygrid-day-number .day-num {font-size: 16px;}
    .sub-calendar .fc-daygrid-day-number .day-count .count {
        padding: 2px 6px;
        border-radius: 3px;
        font-size: 12px;
        line-height: 1.3;
        margin-top: 5px;
    }
    .sub-calendar .bottom-area {padding-top: 40px;}
}

/*축제찾기*/
.sub-search .search-box {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
    margin-bottom: 50px;
}
.sub-search .search-box .inner {
    display: flex;
    flex-wrap: wrap;
}
.sub-search .search-box .form-wrap {
    padding: 30px;
    display: flex;
    align-items: center;
    width: calc(100% - 150px);
}
.sub-search .search-box .form-group {
    width: calc((100% - 90px)/2);
    margin-right: 20px;
    position: relative;
}
.sub-search .search-box .form-group button {
    background: none;
    border: none;
    border-bottom: 1px solid #111;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    width: 100%;
}
.sub-search .search-box .form-group button .ico {width: 16px;}
.sub-search .search-box .form-group button b {
    font-size: 18px;
    padding: 0 12px;
    width: calc(100% - 28px);
    text-align: left;
}
.sub-search .search-box .form-group button .arrow {width: 12px;}
.sub-search .search-box .form-group .select-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 2;
}
.sub-search .search-box .form-group .select-list ul {
    background: #fff;
    border: 1px solid #111;
    padding: 10px;
    margin-top: -1px;
}
.sub-search .search-box .form-group .select-list ul li {
    font-size: 16px;
    padding: 5px 10px;
    display: block;
    transition: all .2s;
    cursor: pointer;
}
.sub-search .search-box .form-group .select-list ul li:hover {opacity: 0.7;}
.sub-search .search-box .reset-group {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}
.sub-search .search-box .btn-wrap {
    width: 150px;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}
.sub-search .search-box .btn-wrap button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #367dd5;
    border: none;
}
.sub-search .search-box .btn-wrap button span {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-left: 10px;
}
.sub-search .board-align {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 30px;
}
.sub-search .board-align li {
    display: flex;
    align-items: center;
}
.sub-search .board-align li::after {
    content: "";
    background: #ddd;
    width: 1px;
    height: 13px;
    margin: 0 10px;
    display: inline-block;
}
.sub-search .board-align li:last-child::after {content: none;}
.sub-search .board-align li a {
    display: block;
    font-size: 16px;
    transition: all .2s;
}
.sub-search .board-align li a:hover {opacity: 0.7;}
@media all and (max-width: 767px) {
    .sub-search .search-box {
        border-radius: 10px;
        margin-bottom: 30px;
    }
    .sub-search .search-box .form-wrap {
        width: 100%;
        padding: 15px;
    }
    .sub-search .search-box .form-group {
        width: calc((100% - 20px) / 2);
        margin-right: 10px;
    }
    .sub-search .search-box .form-group button .ico {width: 12px;}
    .sub-search .search-box .form-group button b {
        font-size: 14px;
        padding: 0 8px;
        width: calc(100% - 22px);
    }
    .sub-search .search-box .form-group button {padding-bottom: 10px;}
    .sub-search .search-box .form-group button .arrow {width: 10px;}
    .sub-search .search-box .reset-group {
        width: 30px;
        height: 30px;
        border-radius: 3px;
        margin-left: 0;
    }
    .sub-search .search-box .reset-group img {width: 12px;}
    .sub-search .search-box .btn-wrap {
        width: 100%;
        border-radius: 0 0 10px 10px;
    }
    .sub-search .search-box .form-group .select-list ul {padding: 5px;}
    .sub-search .search-box .form-group .select-list ul li {
        font-size: 14px;
        padding: 5px 10px;
    }
    .sub-search .search-box .btn-wrap button {padding: 10px;}
    .sub-search .search-box .btn-wrap button img {width: 16px;}
    .sub-search .search-box .btn-wrap button span {
        font-size: 16px;
        margin-left: 8px;
    }
    .sub-search .board-align {margin-bottom: 15px;}
    .sub-search .board-align li a {font-size: 14px;}
}