// カレンダー
.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%;
  }
}
@media (max-width: 768px) {
    .category__items ul li {
        width: calc(25% - 15px * 3 / 4)!important;
    }
}


.gallery__items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.gallery__items li:nth-child(1) {
    grid-area: 1 / 1 / 3 / 3;
}

.gallery__items li:nth-child(2) {
    grid-area: 3 / 1 / 4 / 2;
}

.gallery__items li:nth-child(3) {
    grid-area: 3 / 2 / 4 / 3;
}

.gallery__items li:nth-child(4) {
    grid-area: 1 / 3 / 2 / 4;
}

.gallery__items li:nth-child(5) {
    grid-area: 1 / 4 / 2 / 5;
}

.gallery__items li:nth-child(6) {
    grid-area: 2 / 3 / 4 / 5;
}

.gallery__items li:nth-child(7) {
    grid-area: 1 / 5 / 3 / 7;
}

.gallery__items li:nth-child(8) {
    grid-area: 3 / 5 / 4 / 6;
}

.gallery__items li:nth-child(9) {
    grid-area: 3 / 6 / 4 / 7;
}
.gallery__items li img {
    display: block;
    width: 100%;
}
@media (max-width: 768px) {
    .gallery__items li:nth-child(7) {
        display: none;
    }

    .gallery__items li:nth-child(8) {
        display: none;
    }

    .gallery__items li:nth-child(9) {
        display: none;
    }

    .gallery__items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

    .gallery__items li:nth-child(1) {
        grid-area: 1 / 1 / 3 / 3;
    }

    .gallery__items li:nth-child(2) {
        grid-area: 1 / 3 / 2 / 4;
    }

    .gallery__items li:nth-child(3) {
        grid-area: 2 / 3 / 3 / 4;
    }

    .gallery__items li:nth-child(4) {
        grid-area: 3 / 2 / 5 / 4;
    }

    .gallery__items li:nth-child(5) {
        grid-area: 3 / 1 / 4 / 2;
    }

    .gallery__items li:nth-child(6) {
        grid-area: 4 / 1 / 5 / 2;
    }
}

.popular .itemList__unit::before{
width: 30px!important;
}
@media (max-width: 768px) {
  .itemList__unit:nth-of-type(n + 3) {
    display: block !important;
}
  .itemList__unit:nth-of-type(n + 5) {
      display: none !important;
  }
}