/* テンプレートが出力する「イベント一覧」へ戻るを消す */
.tribe-events-back {
  display: none;
}

.schedule-list {
  list-style: none;
}

.schedule-list li {
  display: flex;
  gap: 5px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.date {
  font-weight: bold;
}

/* 一覧ページで前月・当月・次月表示 */
.schedule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.schedule-title {
  margin: 0;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  flex: 1;
}
.schedule-title span {
  font-size: 70%;
}
.month-nav-link {
  display: inline-block;
  min-width: 90px;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  color: #333;
  background: #fff;
  transition: .3s;
}
.month-nav-link:hover {
  background: #f5f5f5;
}
.month-nav-link.prev {
  text-align: left;
}
.month-nav-link.next {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .schedule-header {
    gap: 10px;
  }
  .schedule-title {
    font-size: 2.4rem;
  }
  .month-nav-link {
    min-width: auto;
    padding: 8px 12px;
    font-size: 1.2rem;
  }
}


/* 個別ページ二重<header>対策 */
#tribe-events{padding-top:0;}


/* 個別ページ */
.event-title {
  font-size: 3rem;font-weight:700;margin-bottom:1em;
}
@media (max-width: 767px) {
	.event-title{font-size:2.25rem;}
}
.event-content a{color:red;text-decoration:underline}


.event-date {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.ticket-btn {
  display: inline-block;
  background: #f65252;
  color: #fff;
  padding: 10px 20px;
  margin-top: 20px;
}

/* スケジュール一覧へ戻る */
.more{margin:4rem 0 0 0;padding-top:1rem;text-align:right;}


/* カテゴリ表示 --------- */
.cat-item {
  display: inline-block;
  padding: 1px;
  font-size: 1.2rem;
  line-height:1em;
  border-radius: 3px;
  letter-spacing: 0;
}

/* =========================
   NEWS系（お知らせ）
========================= */
.cat-news {
  background-color: #f39c12; /* オレンジ */
  color: #fff;
}

.cat-info {
  background-color: #f1c40f; /* イエロー */
  color: #fff;
}


/* =========================
   ライブ・出演系
========================= */
.cat-live {
  background-color: #e74c3c; /* 赤 */
  color: #fff;
}


/* =========================
   メディア・イベント
========================= */
.cat-media {
  background-color: #e84393; /* ピンク寄り */
  color: #fff;
}

.cat-event {
  background-color: #3498db; /* 青 */
  color: #fff;
}


/* =========================
   リリース
========================= */
.cat-release {
  background-color: #27ae60; /* 緑 */
  color: #fff;
}


/* =========================
   配信
========================= */
.cat-streaming {
  background-color: #8e44ad; /* 紫 */
  color: #fff;
}