@charset "utf-8";
.content {
	padding-bottom: 10px;
	line-height: 1.5;
}
.schedule_ttl {
  padding: 30px 15px 10px;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
  font-weight: bold;
}
.schedule_date {
  display: flex;
	column-gap: 10px;
  padding: 15px;
}
.schedule_date_day {
  display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
  height: 45px;
  border: 1px solid #000;
  border-radius: 4px;
  font-size: 12px;
}
.schedule_date_day.on {
  border: 1px solid #fe77a7;
  color: #fe77a7;
}
.schedule__wrap {
  position: relative;
  padding-block: 20px;
  border-top: 1px solid #ccc;
}
.schedule_time {
  position: relative;
  height: 30px;
  margin-inline: 15px;
  background-color: #fe77a7;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}
.schedule_time:after {
  position: absolute;
  top: 100%;
  inset-inline: 0;
  width: 16px;
	height: 8px;
	margin-inline: auto;
  background-color: #fe77a7;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
.schedule__items {
	margin-top: 20px;
}
.rank_icon {
	position: absolute;
	left: 5px;
}