/** schedule **/
#schedule {
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
}

.tab_class {
  width: 70px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  display: block;
  float: left;
  transition: all 0.2s ease;
  margin: 20px 4px 10px 2px;
  padding: 10px;
  border-top: solid 5px #f7b100;
  background-color: #222222;
  box-shadow: 3px 1px 4px rgba(255, 255, 255, 0.2);
}

.tab_class:hover {
  opacity: 0.75;
}

input[name="tab_name"] {
  display: none;
}

.content_class {
  display: none;
  clear: both;
  overflow: hidden;
}

.area input:checked + .tab_class {
  color: gray;
}

#tab1:checked ~ #content1_class,
#tab2:checked ~ #content2_class {
  display: block;
}

#calendar {
  font-family: "Lato", "Kosugi", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 15px;
  --fc-event-border-color: #f7b100;
  line-height: 1;
}

#schedule h2 {
  margin-bottom: -10px;
}

#schedule h3 {
  font-size: 18px;
  text-align: left;
}

#schedule h4 {
  font-size: 12px;
  text-align: right;
}

.fc-list-event-title,
.fc-list-event-graphic {
  display: none;
}

/* 予定リスト全体を2列レイアウトに */
.fc-listMonth-view .fc-scroller {
  display: flex;
  flex-wrap: wrap;
}

/* 左右のカラム */
.fc-list-left,
.fc-list-right {
  width: 50%;
  padding: 5px 15px 20px 15px;
  box-sizing: border-box;
}

/* 見出し (日付) のデザイン */
.fc-list-heading {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 3px;
  margin-top: 15px;
  padding-left: 5px;
  padding-bottom: 5px;
  border-bottom: 1.5px solid #a0a0a0;
}

/* 見出し (曜日) のデザイン */
.fc-list-heading .weekday {
  font-size: 13px;
}

.sunday {
  -webkit-text-stroke: 1.5px rgb(160, 0, 0);
  paint-order: stroke;
}

.saturday {
  -webkit-text-stroke: 1.5px rgb(0, 0, 160);
  paint-order: stroke;
}

/* 時間を表示するスタイル */
.event-time {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.3;
  margin-left: 10px;
}

/* 終日予定を示すスタイル */
.event-all-day {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.3;
  margin-left: 10px;
}

footer {
  margin-top: 10px;
}
