@charset "utf-8";
.content {
	padding-bottom: 30px;
	line-height: 1.5;
}
.schedule_ttl {
  padding-top: 30px;
}
.schedule_date {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
	position: relative;
	margin-top: 20px;
  padding-inline: 15px;
}
.schedule_date::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	height: 2px;
	margin: auto;
	background-color: #43be8b;
	content: "";
}
.schedule_date_day span {
  display: block;
  width: 60px;
  height: 65px;
  margin-inline: auto;
  padding-top: 12px;
  background: url(../img/schedule/off.png) no-repeat;
  background-size: cover;
  color: #43be8b;
  font-size: 12px;
	text-align: center;
}
.schedule_date_day a {
  color: #43be8b;
}
.schedule_date_day.on span {
  background: url(../img/schedule/on.png) no-repeat;
  background-size: cover;
  color: #fff;
}
.schedule_date_day.on a {
  color: #fff;
}

.schedule_wrap {
  margin-top: 20px;
}
.schedule_time {
  padding-block: 5px;
  border-top: 4px double #ddcd96;
  border-bottom: 4px double #ddcd96;
  color: #4b3c3c;
  font-size: 14px;
	font-weight: bold;
  text-align: center;
}
.schedule_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 20px 5px;
	margin-top: 20px;
  padding-inline: 10px;
}
.schedule-item_thumbnail {
	position: relative;
	aspect-ratio: 3/4;
}
.schedule-item_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.schedule_shift_time {
  margin-top: 10px;
	padding-block: 3px;
  border: 1px solid #43be8b;
  color: #43be8b;
  font-size: 11px;
	font-weight: bold;
	text-align: center;
}
.schedule_shift_name {
	display: flex;
	align-items: baseline;
	justify-content: center;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}
.schedule_shift_name span {
  font-size: 12px;
}
.schedule_shift_size {
	margin-top: 5px;
  font-size: 10px;
	text-align: center;
}
