/* カレンダーのタイトルエリア */
.calendarTitleArea {
  display: flex;
  justify-content: space-between;
}

.calendarTitleArea .buttonArea button {
  background-color: #fff;
  border: 0;
  cursor: pointer;
}

.calendarTitleArea .buttonArea button:hover {
  text-decoration: underline;
}

/* カレンダーエリア */
.calendatTable {
  font-size: 10px;
}

.calendatTable a {
  text-decoration: none;
}

.calendatTable a:hover {
  text-decoration: underline;
}

table.calendatTable tr:nth-of-type(2n + 1) {
  background-color: #fff;
}

table.calendatTable tr:nth-of-type(2n + 0) {
  background-color: #fff;
}

.calendatTable .calendatTableRow {
  background: linear-gradient(#ffffff, #dddddd);
  color: #000;
}

.calendatTable .calendatTableRow.sunday {
  background: linear-gradient(#ff0000, #990033);
  color: #fff;
}

.calendatTable .calendatTableRow.saturday {
  background: linear-gradient(#0000ff, #000080);
  color: #fff;
}

.calendatTable .calendatTableCellWrap {
  vertical-align: top;
  padding: 0;
}

.calendatTable .calendatTableCellWrap .dateTitle {
  text-align: center;
  margin-bottom: auto;
  font-weight: 900;
  background: linear-gradient(#eeeeee, #cccccc);
}

.calendatTable .calendatTableCellWrap.sunday .dateTitle {
  background: linear-gradient(#ffbbff, #ff5192);
  color: #fff;
}

.calendatTable .calendatTableCellWrap.sunday {
  background-color: #ffccff;
}

.calendatTable .calendatTableCellWrap.saturday .dateTitle {
  background: linear-gradient(#77eeff, #2c7cff);
  color: #fff;
}

.calendatTable .calendatTableCellWrap.saturday {
  background-color: #ccffff;
}

.calendatTable .calendatTableCellWrap .calendatTableCellUl {
  margin: 0;
  padding: 5px 3px;
  min-height: 30px;
}

.calendatTable .calendatTableCellWrap .calendatTableCellUl .postCellLi {
  list-style: none;
  line-height: 14px;
}
.calendatTable
  .calendatTableCellWrap
  .calendatTableCellUl
  .postCellLi:not(:last-child) {
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .calendatTable .calendatTableRow {
    width: 14%;
    min-width: 80px;
  }
}

@media screen and (max-width: 767px) {
  .calendarWrap {
    width: 100%;
    overflow-x: scroll;
  }

  .calendatTable .calendatTableRow {
    width: 14%;
    min-width: 80px;
  }
}

/* イベントページ */
.eventContent {
  margin-bottom: 50px;
  white-space: pre-wrap;
}

/* 講師の一覧  */
.lecturersUl a {
  color: #333;
  text-decoration: none;
}

.lecturersUl a:hover {
  text-decoration: underline;
}
