.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

// カレンダー
.tbl_calendar {
  border: none !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
}
.tbl_calendar th, .tbl_calendar td {
  padding: 4px !important;
  text-align: center !important;
  border-bottom: 1px solid #ccc !important;
}

.mainCalendar {
  display: flex;
  justify-content: space-between;
}
.mainCalendar table.tbl_calendar {
    max-width: calc(50% - 30px);
}
.mainCalendar table.tbl_calendar caption{
  font-weight: bold;
    margin: 0px auto 15px;
    font-size: 18px;
}
@media (max-width: 991px) {
  .mainCalendar {
    display: block;
  }
  .mainCalendar table.tbl_calendar {
      max-width: 100%;
  }
}



/*スマホ時、おすすめ、ランキングの表示数を変更（テンプレート「トップ」→「CSS編集」に記載*/
@media (max-width: 768px) {
  	/*変更ができないmain.css記載のものを打ち消すためのもの*/
    .recommend__sec .itemList__unit:nth-of-type(n + 5),
    .ranking__sec .itemList__unit:nth-of-type(n + 5) {
        display: block !important;
    }
  	/*「n + 5」で4つ表示、「n + 7」で6つ表示、*/
    .recommend__sec .itemList__unit:nth-of-type(n + 7),
    .ranking__sec .itemList__unit:nth-of-type(n + 7) {
        display: none !important;
    }
}