@charset "utf-8";
/* 基本リセット */
#content-area {
  padding: 2rem 1rem;
  background-color: #111;
  color: #fff;
}

#content-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff;
}

.line-hr hr {
  width: 80px;
  border: 2px solid #fff;
  margin: 0 auto 2rem auto;
}

.fc-toolbar {
  position: relative; /* 相対位置の基準にする */
  text-align: center;  /* 中央揃え */
  height: 40px;        /* 必要に応じて高さ調整 */
}

.fc-left,
.fc-right {
  position: absolute;
  top: 0;
}

.fc-left {
  left: 0;
}

.fc-right {
  right: 0;
}

.fc-center {
  display: inline-block;
  line-height: 50px; /* 高さと揃えると縦中央に */
}


/* カレンダー部分 */
#schedule {
  margin-bottom: 3rem;
}

#schedule .fc {
  background-color: #222;
  border-radius: 10px;
  padding: 1rem;
}

/* 月ごとの見出し */
.event-month {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  border-left: 6px solid #fff;
  padding-left: 1rem;
  color: #fff;
}

.fc-day-number {
	color:#333;
}

.fc-sun {
    color:#cd0000;
	background-color:#efc5c8!important;
}

.fc-sat {
	color:#005cff;
	background-color:#bde5f4!important;
}

/* イベントリスト */
.schedule-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule-wrap li {
  margin: 0;
  padding: 1rem;
  background-color: #1c1c1c;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: background-color 0.2s ease;
}

.schedule-wrap li:hover {
  background-color: #333;
}

.schedule-wrap a {
  text-decoration: none;
  color: #fff;
  display: block;
}

.event-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.event-date {
  font-size: 0.95rem;
  color: #ccc;
}

/* 区切り線 */
.hr, .both {
  border: none;
  border-bottom: 1px solid #444;
  margin: 1rem 0;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .event-title {
    font-size: 1rem;
  }
  .event-date {
    font-size: 0.85rem;
  }
  #content-title {
    font-size: 1.5rem;
  }
}
