@charset "UTF-8";
.cal_sec {
  margin: 2.5rem 0;
}
.cal_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0 0 20px;
}
.cal_header_ttl {
  margin: 0;
  font-size: 1.8em;
  text-align: center;
}
.cal_nav_btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--txt-pink);
  color: #FFF !important;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.2s;
}
.cal_grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
@media screen and (max-width: 767px) {
  .cal_grid_wrap {
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  .cal_grid {
    width: 1000px;
  }
}
.cal_day {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px; /* スケジュールがない日の最低高さ */
  padding: 10px;
  border: 1px solid var(--cal-bd-clr);
  position: relative;
  overflow: hidden; /* 日付のテキストがあふれないように */
}
.cal_day_header {
  background-color: var(--cal-bd-clr);
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border: 1px solid var(--cal-bd-clr);
}
.cal_day_header0 {
  background-color: #FFEAF8;
}
.cal_day_header6 {
  background-color: #EAEDFF;
}
.cal_day.other-month {
  background-color: rgba(204, 204, 204, 0.8666666667);
  color: #aaa;
}
.cal_day.today {
  border: 2px solid var(--txt-pink);
}
.cal_day_num {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: right;
}
.cal_sche {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cal_sche li {
  font-size: 0.85rem;
  border-radius: 4px;
  overflow: hidden;
}
.cal_sche li:not(:first-child) {
  margin-top: 5px;
}
.cal_sche_inner {
  display: block;
  background: #fff;
  text-decoration: none;
  color: var(--txt-black);
  padding: 5px;
  overflow: hidden;
}
.cal_sche_inner .yt_list_type {
  margin: 3px auto;
  font-size: 0.625rem;
}
.cal_sche_thumb {
  flex-shrink: 0;
  border-radius: 3px;
  object-fit: cover;
}
.cal_sche_info {
  margin-top: 0.3rem;
}
.cal_sche_title {
  font-weight: bold;
}
.cal_sche_title .yt_list_title_main {
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2行で省略 */
  -webkit-box-orient: vertical;
}
.cal_sche_time.yt_list_date {
  --yt-list-date-font-size: 0.8rem;
  max-width: 100%;
  width: 100%;
}