/* カレンダーのページャー非表示 */
.smooooth-calendar .fc-prev-button,
.smooooth-calendar .fc-next-button {
    display: none !important;
}

.topCalendarBox {
    display: grid;
      grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.topCalendar {
    padding: 0 0 60px 0;
}

.fc-toolbar-title {
    font-size: 18px !important;
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: 0.05em;
    font-family: var(--fontB);
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 768px) {

  .topCalendarBox {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .topCalendar {
    padding: 0 0 130px 0;
  }
  
  .fc-toolbar-title {
    font-size: 24px !important;
  }

}

/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

@media screen and (min-width: 1200px) {
  
  .fc-toolbar-title {
    font-size: 30px !important;
  }
  
}