/********** main **********/
.section {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 200px;
}
.fp-viewing-anchor1 #fp_menu,
.fp-viewing-anchor6 #fp_menu {
    display: none;
}
#fp_menu {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(calc(-50% + 70px));
    list-style: none;
    z-index: 10;
}
#fp_menu li + li {
    margin-top: 30px;
}
#fp_menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
#fp_menu li a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cfcfd3; /* 회색 */
}
#fp_menu li a span {
    display: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
#fp_menu li.active a::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #71a0e8;
}
#fp_menu li:nth-child(n + 4).active a::before {
    background: #f27c9a;
}
#fp_menu li.active a span {
    display: block;
    min-width: 63px;
    text-align: center;
}
#fp_menu li:last-child {
    display: none;
}

@media screen and (max-width: 1800px) {
    #fp_menu {
        display: none;
    }
}

@media screen and (max-width: 1600px) {
    .section {
        padding-top: 130px;
    }
}

@media screen and (max-width: 1280px) {
    .section {
        display: block;
        height: auto !important;
        padding: 50px 0;
    }
}

/* main_visual */
.main_wrap {
    width: 100%;
    overflow: hidden;
    padding-top: 200px;
}
.main_wrap .slide_area {
    width: 100%;
    padding-bottom: 40px;
    position: relative;
    padding: 0 20px;
}
.main_wrap .slide_area::before {
    content: "";
    width: 120%;
    height: 100vh;
    border-radius: 50%;
    background-color: #e8f0f9;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.main_slide.swiper {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    aspect-ratio: 16 / 6.5; /* 원하는 비율 */
}
.swiper-slide.main_visual a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}
.swiper-slide.main_visual a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_nav {
    position: absolute;
    bottom: 0;
    right: 60px;
    z-index: 10;
}
.main_nav .nav {
    display: flex;
    justify-content: flex-end;
}
.main_nav .nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #000;
    cursor: pointer;
    transition: all 0.2s;
}
.main_nav .nav button:hover {
    background-color: #71a0e8;
}
.main_nav .nav .nav_arrow span {
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.main_nav .nav .prev_btn span {
    transform: rotate(-135deg);
}
.main_nav .nav .next_btn span {
    transform: rotate(45deg);
}
.main_nav .nav .pause_btn span {
    position: relative;
    width: 10px;
    height: 14px;
}
.main_nav .nav .pause_btn span::before,
.main_nav .nav .pause_btn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #fff;
}
.main_nav .nav .pause_btn span::before {
    left: 0;
}
.main_nav .nav .pause_btn span::after {
    right: 0;
}
.main_nav .nav .pause_btn.is-play span {
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

@media screen and (max-width: 1600px) {
    .main_wrap {
        padding-top: 130px;
    }
}

@media screen and (max-width: 1280px) {
    .main_wrap {
        padding: 90px 0 50px;
    }
    .main_nav {
        right: 30px;
    }
    .main_nav .nav button {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .main_wrap {
        padding: 60px 0 0;
    }
    .main_wrap .slide_area {
        padding: 0;
    }
    .main_slide.swiper {
        border-radius: 0;
        aspect-ratio: unset;
    }
    .main_wrap .slide_area::before {
        display: none;
    }
    .main_nav {
        right: 0;
    }
    .main_nav .nav button {
        width: 30px;
        height: 30px;
    }
}

.inner {
    max-width: 1640px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.section .tit_wrap .tit h2 {
    font-family: "kita";
    font-size: 66px;
    font-weight: 400;
    line-height: 1;
    padding-top: 24px;
}
.section .tit_wrap .tit span {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 14px;
    font-weight: 700;
}
.section .tit_wrap .more_btn {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
}
.section .tit_wrap .more_btn::after {
    display: block;
    content: '';
    height: 2px;
    width: 0;
    background-color: #000;
    transition: all 0.3s;
}
.section .tit_wrap .more_btn:hover::after {
    width: 100%;
}

.section .inner:has(.data_none) {
    display: block;
}
.con_wrap .data_none {
    display: flex;
    min-height: 400px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.data_none .img {
    background: url(../images/data_none_b.svg) no-repeat center center;
    background-size: contain;
    width: 71px;
    height: 106px;
    margin: 0 auto;
}
.data_none .main_txt {
    margin: 25px auto 17px;
    font-size: 28px;
    color: #71a0e8;
    font-weight: 700;
}
.main_exhibition .data_none .img {
    background: url(../images/data_none_p.svg) no-repeat center center;
    background-size: contain;
}
.main_exhibition .data_none .main_txt {
    color: #f27c9a;
}
.data_none .sub_txt {
    font-size: 18px;
    color: #7f848e;
    font-weight: 600;
}

@media screen and (max-width: 1600px) {
    .section .tit_wrap {
        padding-top: 0;
    }
    .section .tit_wrap .tit span {
        font-size: 18px;
        letter-spacing: 10px;
    }
    .section .tit_wrap .tit h2 {
        font-size: 48px;
    }
    .section .tit_wrap .more_btn {
        font-size: 14px;
        margin-top: 20px;
    }
    .data_none .img {
        width: 44px;
        height: 67px;
    }
    .data_none .main_txt {
        font-size: 22px;
    }
    .data_none .sub_txt {
        font-size: 16px;
    }
}

@media screen and (max-width: 1280px) {
    .section .tit_wrap .tit h2 {
        font-size: 32px;
        padding-top: 10px;
    }
    .section .tit_wrap .tit span {
        font-size: 14px;
        letter-spacing: 5px;
    }
    .con_wrap .data_none {
        min-height: 200px;
    }
    .data_none .main_txt {
        font-size: 16px;
        margin: 10px 0;
    }
    .data_none .sub_txt {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .section .tit_wrap .tit h2 {
        font-size: 28px;
    }
}

/* main_notice */
.main_notice {
    background-color: #e8f0f9;
}
.main_notice .inner {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.main_notice .row {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.main_notice .row + .row {
    margin-top: 30px;
}
.main_notice .row:last-child::after {
    content: "";
    position: absolute;
    left: -129px;
    top: -129px;
    width: 258px;
    height: 258px;
    background: url(../images/notice_img.png) no-repeat center center;
    background-size: contain;
    z-index: -1;
    animation: spin 10s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.main_notice .con_wrap .con {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 350px;
}
.main_notice .con_wrap .con .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}
.main_notice .con_wrap .con .wrap span {
    color: #7f848e;
    font-weight: 700;
    font-size: 20px;
}
.main_notice .con_wrap .con .wrap span.date {
    font-size: 16px;
}
.main_notice .con_wrap .con h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 56px;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main_notice .con_wrap .con .link {
    font-size: 20px;
    font-weight: 700;
    color: #71a0e8;
    transition: all 0.3s;
}
.main_notice .con_wrap .con:hover .link {
    padding-left: 20px;
}
.main_notice .con_wrap .con .link i {
    margin-left: 10px;
    vertical-align: bottom;
}

@media screen and (max-width: 1600px) {
    .main_notice {
        padding-top: 130px;
    }
    .main_notice .tit_wrap {
        margin-top: 40px;
    }
    .main_notice .row {
        gap: 20px;
    }
    .main_notice .row + .row {
        margin-top: 20px;
    }
    .main_notice .con_wrap .con {
        padding: 30px;
        width: 320px;
    }
    .main_notice .con_wrap .con .wrap span {
        font-size: 16px;
    }
    .main_notice .con_wrap .con .wrap span.date {
        font-size: 14px;
    }
    .main_notice .con_wrap .con h4 {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    .main_notice .con_wrap .con .link {
        font-size: 16px;
    }
}

@media screen and (max-width: 1280px) {
    .main_notice {
        padding: 50px 0;
    }
    .main_notice .inner {
        flex-direction: column;
        gap: 24px;
    }
    .main_notice .tit_wrap {
        margin-top: 0;
        flex-shrink: 0;
    }
    .main_notice .tit_wrap .tit span {
        font-size: 15px;
        letter-spacing: 5px;
    }
    .main_notice .con_wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-end;
    }
    .main_notice .con_wrap:has(.data_none) {
        justify-content: center;
    }
    .main_notice .row {
        flex-direction: column;
        width: 100%;
    }
    .main_notice .row + .row {
        margin-top: 0;
    }
    .main_notice .con_wrap .con {
        padding: 20px;
        border-radius: 10px;
        width: 100%;
    }
    .main_notice .row:last-child .con:last-child,
    .main_notice .row:last-child::after {
        display: none;
    }
    .main_notice .con_wrap .con .wrap span {
        font-size: 14px;
    }
    .main_notice .con_wrap .con h4 {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    .main_notice .con_wrap .con .link {
        font-size: 14px;
    }
}


/* main_program */
.main_program {
    background-color: #e8f0f9;
    border-radius: 0 0 0 300px;
}
.main_program .tit_wrap {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}
.main_program .tit_wrap h2 {
    margin-bottom: 25px;
    padding-top: 0;
}
.main_program .tit_wrap .more_btn {
    position: absolute;
    right: 0;
    bottom: 0;
}
.main_program .con_wrap:has(.data_none) {
    display: block;
}
.main_program .con_wrap {
    display: flex;
    justify-content: space-between;
    gap: 82px;
}
.main_program .con_wrap .con {
    width: calc((100% - 82px * 4) / 5);
}
.main_program .con_wrap .con:nth-child(even) {
    margin-top: 80px;
}
.main_program .con_wrap .img_wrap {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
}
.main_program .con_wrap .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}
.main_program .con_wrap .con:hover .img_wrap img {
    transform: scale(1.1);
}
.main_program .con_wrap h4 {
    font-size: 22px;
    margin-top: 20px;
    font-weight: 600;
    line-height: 1.5;
}
.main_program .con_wrap span {
    font-size: 16px;
    margin-top: 5px;
    color: #7f848e;
    display: block;
}

@media screen and (max-width: 1600px) {
    .main_program {
        border-radius: 0 0 0 200px;
    }
    .main_program .con_wrap {
        gap: 60px;
    }
    .main_program .con_wrap .con {
        width: calc((100% - 60px * 4) / 5);
    }
    .main_program .con_wrap h4 {
        font-size: 18px;
    }
    .main_program .con_wrap span {
        font-size: 14px;
    }
}

@media screen and (max-width: 1280px) {
    .main_program {
        border-radius: 0 0 0 100px;
    }
    .main_program .con_wrap .con {
        width: calc((100% - 60px * 3) / 4);
    }
    .main_program .tit_wrap {
        margin-bottom: 30px;
    }
    .main_program .tit_wrap h2 {
        margin-bottom: 10px;
    }
    .main_program .tit_wrap .more_btn {
        position: static;
    }
    .main_program .tit_wrap .tit span {
        display: block;
        margin: 0 auto;
        letter-spacing: 5px;
    }
    .main_program .con_wrap .con:nth-child(even) {
        margin-top: 0;
    }
    .main_program .con_wrap .con:last-child {
        display: none;
    }
    .main_program .con_wrap .img_wrap {
        border-radius: 10px;
    }
    .main_program .con_wrap h4 {
        font-size: 16px;
        margin-top: 12px;
        line-height: 1.3;
    }
    .main_program .con_wrap span {
        font-size: 13px;
    }
}

@media screen and (max-width: 900px) {
    .main_program .con_wrap {
        gap: 30px;
        flex-wrap: wrap;
    }
    .main_program .con_wrap .con {
        width: calc((100% - 30px * 3) / 4);
    }
}

@media screen and (max-width: 768px) {
    .main_program .con_wrap .con {
        width: calc((100% - 30px * 1) / 2);
    }
}

@media screen and (max-width: 374px) {
    .main_program .con_wrap .con {
        width: 100%;
    }
}

/* main_exhibition */
.main_exhibition::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 455px;
    height: 457px;
    background: url(../images/main_exhibition_bg.svg) no-repeat left bottom;
    background-size: contain;
    z-index: -1;
}
.main_exhibition .more_btn,
.main_notice .more_btn {
    margin-top: 48px;
}

.main_exhibition .inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.section.main_exhibition .inner:has(.data_none) {
    display: flex;
}
.main_exhibition .tit_wrap {
    position: relative;
}
.main_exhibition .inner > * {
    min-width: 0;
}
.main_exhibition .con_wrap {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    max-width: 1080px;
}
.main_exhibition .poster_slide {
    width: 100%;
    overflow: hidden;
}
.main_exhibition .poster_slide .swiper-wrapper {
    align-items: flex-end;
}
.main_exhibition .poster_slide .swiper-slide a {
    display: flex;
    height: 623px;
    width: 264px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    margin-left: 80px;
}
.main_exhibition .poster_slide .swiper-slide img {
    transition: all 0.35s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 390px;
    border-radius: 20px;
}
.main_exhibition .poster_slide .swiper-slide a p {
    margin-top: 24px;
    font-size: 22px;
    font-weight: 600;
    min-height: 55px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}
.main_exhibition .poster_slide .swiper-slide a span {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #7f848e;
}
.main_exhibition .poster_slide .swiper-slide.swiper-slide-active a {
    margin-left: 0;
    width: 360px;
}
.main_exhibition .poster_slide .swiper-slide.swiper-slide-active a img {
    max-height: 500px;
}
.main_exhibition .poster_slide .swiper-slide a:hover p{
    text-decoration: underline;
}

.poster_nav {
    margin-top: 27px;
}
.poster_nav .nav {
    display: flex;
}
.poster_nav .nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #000;
    cursor: pointer;
    transition: all 0.2s;
}
.poster_nav .nav button:hover {
    background-color: #f27c9a;
}
.poster_nav .nav .nav_arrow span {
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.poster_nav .nav .prev_btn span {
    transform: rotate(-135deg);
}
.poster_nav .nav .next_btn span {
    transform: rotate(45deg);
}
.poster_nav .nav .pause_btn span {
    position: relative;
    width: 10px;
    height: 14px;
}
.poster_nav .nav .pause_btn span::before,
.poster_nav .nav .pause_btn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #fff;
}
.poster_nav .nav .pause_btn span::before {
    left: 0;
}
.poster_nav .nav .pause_btn span::after {
    right: 0;
}
.poster_nav .nav .pause_btn.is-play span {
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

@media screen and (max-width: 1600px) {
    .main_exhibition .con_wrap {
        max-width: 950px;
    }
    .main_exhibition::before {
        width: 290px;
        height: 326px;
    }
    .main_exhibition .poster_slide .swiper-slide a {
        margin-left: 40px;
        height: 517px;
    }
    .main_exhibition .poster_slide .swiper-slide a p {
        font-size: 16px;
        line-height: 1.4;
        min-height: 45px;
    }
    .main_exhibition .poster_slide .swiper-slide a span {
        margin-top: 5px;
        font-size: 14px;
    }
    .main_exhibition .poster_slide .swiper-slide.swiper-slide-active a {
        width: 280px;
    }
}

@media screen and (max-width: 1280px) {
    .main_exhibition::before {
        display: none;
    }
    .main_exhibition .poster_slide .swiper-slide a {
        width: 240px;
    }
    .main_exhibition .poster_slide .swiper-slide.swiper-slide-active a {
        width: 275px;
    }
    .poster_nav .nav button {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 1080px) {
    .main_exhibition .con_wrap {
        max-width: 560px;
    }
}

@media screen and (max-width: 768px) {
    .main_exhibition .inner {
        flex-direction: column;
    }
    .main_exhibition .con_wrap {
        max-width: none;
        flex: auto;
    }
    .main_exhibition .poster_slide .swiper-slide a,
    .main_exhibition .poster_slide .swiper-slide.swiper-slide-active a {
        width: 100%;
        height: auto;
        margin-left: 0;
    }
    .main_exhibition .poster_slide .swiper-slide a img,
    .main_exhibition .poster_slide .swiper-slide.swiper-slide-active a img {
        max-height: 430px;
    }
    .poster_nav .nav button {
        width: 30px;
        height: 30px;
    }
}

/* main_rental */
.main_rental {
    background-color: #fff7f8;
}
.section.main_rental .inner:has(.data_none) {
    display: flex;
}
.main_rental .inner {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.main_rental .row {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    align-items: center;
}
.main_rental .row + .row {
    margin-top: 40px;
}
.main_rental .link_wrap {
    padding: 40px;
    background-color: #fee7ec;
    border-radius: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: flex-end;
    transition: all 0.2s;
}
.main_rental .link_wrap h4 {
    font-size: 24px;
    font-weight: 700;
    width: 100%;
}
.main_rental .link_wrap .link_ic {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.2s;
    flex-shrink: 0;
}
.main_rental .link_wrap .link_ic i {
    color: #ccc;
    transition: all 0.2s;
}
.main_rental .link_wrap:hover {
    background-color: #f27c9a;
    color: #fff;
}
.main_rental .link_wrap:hover .link_ic i {
    color: #f27c9a;
}
.calendar-container {
    max-width: 1000px;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}
.calendar-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-right: 14px;
}
.legend {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #000;
}

.dot_blue {
    background: #55a1ec !important;
}
.dot_orange {
    background: #ffa82f !important;
}
.dot_green {
    background: #75d775 !important;
}
.dot_gray {
    background: #aaaaaa !important;
}
.main_rental .more_btn {
    font-size: 15px;
    font-weight: 700;
}
.main_rental .more_btn::after {
    display: block;
    content: '';
    height: 2px;
    width: 0;
    background-color: #000;
    transition: all 0.3s;
}
.main_rental .more_btn:hover::after {
    width: 100%;
}

/* FullCalendar 커스터마이징 */
.fc-hide-week {
    display: none !important;
}
.fc,
.fc-theme-standard .fc-scrollgrid,
.fc-theme-standard td,
.fc-theme-standard th {
    border: none;
}
.fc th {
    background-color: transparent;
    padding: 0;
    text-align: center;
}
.fc-col-header,
.fc-daygrid-body,
.fc .fc-scrollgrid-section-body table {
    width: 100% !important;
}
.fc .fc-daygrid-day-top {
    flex-direction: row;
    justify-content: center;
}
.fc .fc-col-header-cell-cushion {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    opacity: 50%;
    padding-bottom: 20px;
}
.fc .fc-day-sat .fc-col-header-cell-cushion {
    color: #55a1ec;
}
.fc .fc-day-sun .fc-col-header-cell-cushion {
    color: #e00000;
}

.fc .fc-daygrid-day-number {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc .fc-daygrid-day.fc-day-today {
    background: transparent;
}
.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    background: #ff6b9d;
    color: white;
    border-radius: 50%;
}
.fc .fc-daygrid-day.fc-day-sat .fc-daygrid-day-number {
    color: #5b9bd5;
}
.fc .fc-daygrid-day.fc-day-sun .fc-daygrid-day-number {
    color: #e00000;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    min-height: auto;
    margin: 9px 0 0;
    gap: 0;
}
.fc .fc-daygrid-day-bottom {
    display: none;
}
.fc-daygrid-event,
.legend_dot {
    border-radius: 50%;
    border: none;
    padding: 0;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}
.fc-event-title {
    display: none;
}
.fc-daygrid-day-events {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

/* event-item */
.schedule_list {
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.schedule_content {
    display: flex;
    gap: 8px;
    align-items: center;
}
.schedule_title {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.schedule_date {
    font-size: 14px;
    color: #aaa;
    margin-top: 4px;
}
.schedule_item .data_none {
    min-height: 150px;
    color: #aaa;
}

@media screen and (max-width: 1600px) {
    .main_rental .calendar .row {
        flex-direction: column;
    }
    .calendar-container {
        max-width: 860px;
        padding: 40px 30px;
    }
    .calendar-title {
        font-size: 24px;
    }
    .legend-item {
        font-size: 14px;
    }
    .fc .fc-col-header-cell-cushion {
        font-size: 18px;
        padding-bottom: 4px;
    }
    .fc .fc-daygrid-day-number {
        font-size: 18px;
        margin-top: 1px;
        width: 35px;
        height: 35px;
    }

    .schedule_list {
        flex-direction: row;
        width: 100%;
        gap: 20px;
        flex-wrap: wrap;
        border: none;
        padding: 5px 0 0 20px;
    }
    .schedule_list:has(.data_none) {
        justify-content: center;
    }
    .schedule_item {
        max-width: 220px;
    }
    .schedule_title {
        font-size: 15px;
    }
    .fc-daygrid-event,
    .legend_dot {
        width: 8px;
        height: 8px;
    }

    .main_rental .row {
        gap: 20px;
    }
    .main_rental .row + .row {
        margin-top: 20px;
    }
    .main_rental .link_wrap {
        gap: 20px;
        padding: 30px;
    }
    .main_rental .link_wrap h4 {
        font-size: 18px;
    }
    .main_rental .link_wrap .link_ic {
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 1280px) {
    .main_rental .inner {
        flex-direction: column;
        gap: 50px;
    }
    .main_rental .row,
    .calendar-container {
        max-width: none;
    }
}

@media screen and (max-width: 768px) {
    .main_rental .inner {
        gap: 30px;
    }
    .main_rental .row {
        flex-direction: column;
    }
    .calendar-container {
        padding: 30px 20px;
        border-radius: 10px;
        position: relative;
    }
    .calendar-title {
        width: 100%;
    }
    .main_rental .more_btn {
        position: absolute;
        top: 30px;
        right: 20px;
    }
    .fc .fc-col-header-cell-cushion,
    .fc .fc-daygrid-day-number {
        font-size: 15px;
    }
    .main_rental .link_wrap {
        padding: 14px 20px;
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
        align-items: center;
        border-radius: 10px;
    }
    .main_rental .link_wrap h4 {
        font-size: 16px;
    }
}
