@charset "UTF-8";
/* --------------------------------------------
calendar
ライブラリ「fullcalendar」スタイルカスタマイズ
-------------------------------------------- */
/* ページレイアウト */
.calendar-content {
  max-width: 1221px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* フルカレンダー表示 */
.fc .fc-scrollgrid {
  border-width: 0 0 0 0;
  /* 外側の枠線消す */
  font-size: 14px;
  font-weight: 500;
}

/* リンクの設定 */
.fc a {
  color: unset;
  /* 文字色解除 */
}

.fc a:hover {
  opacity: unset;
  text-decoration: none;
}

/* ヘッダー */
.fc .fc-header-toolbar {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.fc .fc-header-toolbar.fc-toolbar {
  margin-bottom: 10px;
}

/* タイトル */
.fc .fc-toolbar-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
}

/* ボタン */
.fc .fc-button-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: min(15vw,150px);
  padding: 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #dc8b8a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  border-radius: 5px;
  border: none;
  text-shadow: none;
  background-image: none;
  opacity: 1;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

/* 曜日の列 */
.fc-theme-standard th {
  height: 30px;
  /* 枠の高さ指定 */
  border: none;
  /* 枠のボーダー消す */
  background-color: #dc8b8a;
  color: #fff;
}

.fc-theme-standard th:not(:last-child) {
  border-right: 2px solid #eec8c5;
}

.fc-theme-standard td {
  min-height: 115px;
  /* 枠の高さ指定 */
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: none;
  /* 枠のボーダー消す */
  padding: 0;
}

/* 今日の背景 */
.fc .fc-daygrid-day.fc-day-today {
  background: none;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
  background: #f1ecf0;
}

/* 日付 */
/* 前月、次月の透過解除 */
.fc .fc-day-other .fc-daygrid-day-top {
  opacity: 1;
}

/* 日付を枠 */
.fc .fc-daygrid-day-frame {
  border-left: 2px solid #9a9697;
  border-bottom: 2px solid #9a9697;
  padding: 5px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
}

/* 右端の枠線 */
.fc tr .fc-day-sat .fc-daygrid-day-frame {
  border-right: 2px solid #9a9697;
}

/* 日付の位置 */
.fc .fc-daygrid-day-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 100%;
}

/* 日付の文字 */
.fc .fc-daygrid-day-number {
  color: #656766;
}

/* イベントタイトル */
/* 時間指定のあるイベントの表示スペース */
/* イベントのドット非表示 */
.fc-daygrid-event-dot {
  display: none;
}

/* イベントの表示 */
.fc .fc-daygrid-body-natural .fc-daygrid-day-events .fc-daygrid-event {
  margin-bottom: unset;
}

.fc-daygrid-event {
  display: -ms-grid;
  display: grid;
  grid: auto auto / 1fr;
  margin: 0;
  padding: 0 5px 10px;
}

/* イベントの長円、文字省略 */
.fc-daygrid-dot-event .fc-event-title {
  display: inline-block;
  text-align: left;
  line-height: 30px;
  height: 30px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #ccc;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* イベントの時間 */
.fc-event-time {
  line-height: 1;
  margin-bottom: 5px;
  font-size: 14px;
}

/* イベントごとの色 */
.meeting1.fc-daygrid-dot-event .fc-event-title {
  background-color: #7a7bbb;
  color: #fff;
}

.meeting2.fc-daygrid-dot-event .fc-event-title {
  background-color: #e597bf;
  color: #fff;
}

@media screen and (max-width: 767px) {
  /* フルカレンダー表示 */
  .fc .fc-scrollgrid {
    font-size: 12px;
  }
  .fc-daygrid-event {
    display: block;
    padding: 0;
  }
  /* イベントの長円、文字省略 */
  .fc-daygrid-dot-event .fc-event-title {
    display: none;
  }
  /* イベントの時間 */
  .fc-event-time {
    display: inline-block;
    text-align: left;
    line-height: 20px;
    height: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #ccc;
    border-radius: 10px;
    font-size: 12px;
  }
  /* イベントごとの色 */
  .meeting1.fc-daygrid-dot-event .fc-event-time {
    background-color: #7a7bbb;
    color: #fff;
  }
  .meeting2.fc-daygrid-dot-event .fc-event-time {
    background-color: #e597bf;
    color: #fff;
  }
}

@media screen and (max-width: 520px) {
  /* タイトル */
  .fc .fc-toolbar-title {
    font-size: 20px;
  }
  /* ボタン */
  .fc .fc-button-primary {
    height: 30px;
    padding: 0 5px;
    font-size: 12px;
  }
  /* 曜日の列 */
  .fc-theme-standard th {
    height: 20px;
    /* 枠の高さ指定 */
  }
  /* フルカレンダー表示 */
  .fc .fc-scrollgrid {
    font-size: 10px;
  }
  /* イベントの時間 */
  .fc-event-time {
    line-height: 16px;
    height: 16px;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 8px;
    font-size: 10px;
  }
}

@media screen and (max-width: 420px) {
  /* タイトル */
  .fc .fc-toolbar-title {
    font-size: 20px;
  }
  /* ボタン */
  .fc .fc-button-primary {
    width: 60px;
  }
  /* 日付を枠 */
  .fc .fc-daygrid-day-frame {
    padding: 5px 2px;
  }
}

@media screen and (max-width: 340px) {
  /* 日付を枠 */
  .fc .fc-daygrid-day-frame {
    padding: 5px 0;
  }
  /* イベントの時間 */
  .fc-event-time {
    padding-left: 2px;
    padding-right: 2px;
  }
}
/*# sourceMappingURL=fullcalendar.css.map */