/* 캘린더 */
.calendar{position:relative; margin-bottom: 40px;}
.calendar > p{
    width:100%;
    font-size: 30px !important;
    line-height: 180%;
    display: flex; align-items: center;justify-content: center; gap: 30px;
    font-family: GmarketSans700;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 50px;
    text-align: center;
}
.calendar > p > button{
    width: 42px; height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-family: Pretendard500;
    font-size: 16px;
    letter-spacing: -0.2px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 7px;
    transition: all 0.1s ease-in;
}
.calendar > p > button:hover{
    opacity: 0.6;
}

#monthYear{min-width: 160px;}

.calendar .cal_notice{
    font-family: SCDream700;
    color: #4251D6;
    line-height: 150%;
    font-size: 20px;
    text-align: right;
    padding: 0 10px 16px 0;
    width: 100%;
}
/* ====================================== */
/* 반응형 대응 - scroll 처리 부분 */
.fc .fc-toolbar{
    margin: 10px 0 !important;
    padding: 0 !important;
    height: 100% !important;
    flex-wrap: wrap;
    gap: 10px;
}
@media screen and (max-width: 600px){
    .fc .fc-toolbar{margin-top: 30px !important;}
    .calendar .cal_notice{font-size: 14px; padding: 10px;}
    .calendar > p{gap: 10px;}
}
.fc .fc-view-harness{
    overflow: auto;
    white-space: nowrap;
}
.fc .fc-view{min-width: 1000px;}
/* ====================================== */