// カレンダー
.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%;
  }
}

.tasteSec .taste_title {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: .05em;
  padding: 0 0 4px 4px;
  margin-bottom: 25px;
  border-bottom: solid 1px #D7D1C6;
}
.taste_graph {
  position: relative;
}
.tastebox.row {
  margin: 0px -20px 40px;
}
.tastebox.row [class*=col-] {
  padding-right: 20px;
  padding-left: 20px;
}
.taste_graph .taste_list {
  list-style: none;
}
@media (max-width: 991px) {
  .tastebox.row {
    margin: 0px 0px 40px;
  }
  .tastebox.row [class*=col-] {
    padding-right: 0px;
    padding-left: 0px;
  }
  .tastebox.row .slick-slide {
    margin-right: 10px;
    margin-left: 10px;
  }
  .tastebox .slick-arrow {
    /* position: relative; */
    top: calc(50% + 40px);
  }
  .tastebox .slick-arrow:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    transform-origin: top center;
    transition: 0.15s;
  }
  .tastebox .slick-prev {
    left: -7px;
  }
  .tastebox .slick-prev:after {
    border-bottom: 2px solid #1b1b1b;
    border-left: 2px solid #1b1b1b;
    transform: rotate(45deg) translateY(-50%);
  }
  .tastebox .slick-next {
    right: -7px;
  }
  .tastebox .slick-next:after {
    border-top: 2px solid #1b1b1b;
    border-right: 2px solid #1b1b1b;
    transform: rotate(45deg) translateY(-50%);
  }
}