/**
 * カリキュラムトップの学年・時間帯別週間時間割を管理する。
 *
 * assets/js/pages/course/schedule.jsが切り替えるis-active状態とARIA表示に対応し、学年・午前午後ごとのパネルを同じレイアウト規則へ揃える。
 * カリキュラムページ以外へ配信せず、学校生活ページ群のCSSへ時間割固有の規則を持ち込まない。
 */

/**
 * 3.0 学年・時間帯別の週間時間割
 *
 * 通学型／オンライン型と学年を切り替えて比較できるよう、説明・タブ・表を一つの操作領域として扱う。
 */

.sl-schedule {
	padding: 110px 0 120px;
	background:
		radial-gradient(circle at 10% 16%, rgba(86, 209, 202, 0.12), transparent 28%),
		radial-gradient(circle at 92% 84%, rgba(239, 120, 188, 0.09), transparent 24%),
		#ffffff;
	border-block: 1px solid rgba(239, 120, 188, 0.24);
}

.sl-schedule__head {
	max-width: 850px;
	margin-bottom: 42px;
}

.sl-schedule__lead,
.sl-schedule__sublead,
.sl-schedule__closing {
	margin-inline: auto;
	max-width: 760px;
	color: var(--muted);
	line-height: 1.9;
	text-align: center;
}

.sl-schedule__lead {
	margin-top: 0;
	margin-bottom: 10px;
	color: #9e5369;
	font-size: 17px;
	font-weight: 700;
}

.sl-schedule__sublead {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 0;
}

/**
 * 2.0 授業編成サマリーと午前・午後クラス
 *
 * 2部制・学年・コマ数を先に要約し、その下で午前／午後のクラス構成を比較できるようにする。
 */

.sl-schedule__facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: min(100%, 820px);
	margin: 0 auto 34px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(86, 209, 202, 0.34);
	border-radius: 18px;
	box-shadow: 0 12px 34px rgba(158, 83, 105, 0.07);
}

.sl-schedule__facts > div {
	display: flex;
	min-height: 86px;
	align-items: baseline;
	justify-content: center;
	gap: 7px;
	padding: 18px 12px;
	color: #9e5369;
	border-right: 1px solid rgba(86, 209, 202, 0.28);
}

.sl-schedule__facts > div:last-child {
	border-right: 0;
}

.sl-schedule__facts strong {
	font-family: Georgia, serif;
	font-size: 34px;
	font-weight: 500;
	line-height: 1;
}

.sl-schedule__facts span {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.sl-schedule__formation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.sl-schedule__formation-card {
	padding: 25px 27px 23px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(239, 120, 188, 0.22);
	border-radius: 20px;
	box-shadow: 0 14px 36px rgba(158, 83, 105, 0.07);
}

.sl-schedule__formation-card--morning {
	border-top: 4px solid #56d1ca;
}

.sl-schedule__formation-card--afternoon {
	border-top: 4px solid #ef78bc;
}

.sl-schedule__formation-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 17px;
	border-bottom: 1px solid rgba(158, 83, 105, 0.18);
}

.sl-schedule__formation-head small {
	display: block;
	margin-bottom: 5px;
	color: #56d1ca;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.sl-schedule__formation-head h3 {
	margin: 0;
	color: #56d1ca;
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.sl-schedule__formation-card--afternoon .sl-schedule__formation-head small {
	color: #ef78bc;
}

.sl-schedule__formation-card--afternoon .sl-schedule__formation-head h3 {
	color: #ef78bc;
}

.sl-schedule__formation-card--afternoon .sl-schedule__formation-head strong {
	color: #ef78bc;
}

.sl-schedule__formation-head strong {
	color: #56d1ca;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.sl-schedule__formation-card ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.sl-schedule__formation-card li {
	display: flex;
	min-height: 70px;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 12px 14px;
	background: rgba(86, 209, 202, 0.10);
	border-radius: 12px;
}

.sl-schedule__formation-card--afternoon li {
	background: rgba(239, 120, 188, .055);
}

.sl-schedule__formation-card li b {
	color: #56d1ca;
	font-size: 13px;
	font-weight: 700;
}

.sl-schedule__formation-card--afternoon li b {
	color: #ef78bc;
}

.sl-schedule__formation-card li span {
	color: #9e5369;
	font-size: 10px;
	line-height: 1.5;
}

.sl-schedule__formation-note {
	grid-column: 1 / -1;
	margin: -3px 0 0;
	color: rgba(158, 83, 105, 0.78);
	font-size: 11px;
	line-height: 1.8;
	text-align: center;
}

/**
 * 3.0 時間帯・学年切り替えと週間時間割
 *
 * 選択中の時間帯に応じてアクセント色を切り替え、同じ操作領域で学年別時間割を確認できるようにする。
 */

.sl-schedule__panel {
	--sl-schedule-accent: #56d1ca;
	--sl-schedule-accent-soft: rgba(86, 209, 202, 0.12);
	--sl-schedule-accent-border: rgba(86, 209, 202, 0.42);
	--sl-schedule-panel-start: rgba(86, 209, 202, 0.16);
	--sl-schedule-panel-end: rgba(86, 209, 202, 0.28);
	--sl-schedule-panel-border: rgba(86, 209, 202, 0.44);
	--sl-schedule-panel-shadow: rgba(86, 209, 202, 0.14);
	padding: 28px;
	background: linear-gradient(145deg, var(--sl-schedule-panel-start) 0%, var(--sl-schedule-panel-end) 100%);
	border: 1px solid var(--sl-schedule-panel-border);
	border-radius: 28px;
	box-shadow: 0 24px 58px var(--sl-schedule-panel-shadow);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sl-schedule__panel[data-schedule-theme="afternoon"] {
	--sl-schedule-accent: #ef78bc;
	--sl-schedule-accent-soft: rgba(239, 120, 188, 0.10);
	--sl-schedule-accent-border: rgba(239, 120, 188, 0.42);
	--sl-schedule-panel-start: rgba(239, 120, 188, 0.13);
	--sl-schedule-panel-end: rgba(239, 120, 188, 0.24);
	--sl-schedule-panel-border: rgba(239, 120, 188, 0.42);
	--sl-schedule-panel-shadow: rgba(158, 83, 105, 0.14);
}

.sl-schedule__controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 22px;
	margin-bottom: 18px;
}

.sl-schedule__control-group > p {
	margin: 0 0 8px 4px;
	color: #9e5369;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.sl-schedule__session-tabs {
	display: grid;
	overflow: hidden;
	padding: 0;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(158, 83, 105, 0.22);
	border-radius: 15px;
	box-shadow: 0 12px 32px rgba(158, 83, 105, 0.06);
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sl-schedule__grade-tabs {
	display: grid;
	overflow: hidden;
	padding: 0;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(158, 83, 105, 0.22);
	border-radius: 15px;
	box-shadow: 0 12px 32px rgba(158, 83, 105, 0.06);
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sl-schedule__session-tab {
	color: #9e5369;
	font: inherit;
	background: transparent;
	border: 0;
	border-right: 1px solid rgba(158, 83, 105, 0.18);
	border-radius: 0;
	cursor: pointer;
	transition: color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2px 10px;
	align-items: center;
	min-height: 72px;
	padding: 10px 16px;
	text-align: left;
}

.sl-schedule__grade-tab {
	min-height: 72px;
	padding: 10px 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: #9e5369;
	font: inherit;
	text-align: center;
	background: transparent;
	border: 0;
	border-right: 1px solid rgba(158, 83, 105, 0.18);
	border-radius: 0;
	cursor: pointer;
	transition: color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.sl-schedule__session-tab:last-child {
	border-right: 0;
}

.sl-schedule__grade-tab:last-child {
	border-right: 0;
}

.sl-schedule__session-tab small {
	grid-column: 1 / -1;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.sl-schedule__session-tab span {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.sl-schedule__session-tab b {
	font-size: 10px;
	font-weight: 700;
	white-space: nowrap;
}

.sl-schedule__grade-tab span {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 18px;
	font-weight: 600;
}

.sl-schedule__grade-tab small {
	font-size: 9px;
	font-weight: 700;
}

.sl-schedule__session-tab--morning {
	color: #56d1ca;
}

.sl-schedule__session-tab--afternoon {
	color: #ef78bc;
}

.sl-schedule__session-tab--morning:hover {
	color: #217d78;
	background: rgba(86, 209, 202, 0.12);
}

.sl-schedule__session-tab--morning.is-active {
color: #217d78;
	background: rgba(86, 209, 202, 0.12);
box-shadow: inset 0 -3px 0 #56d1ca;
}

.sl-schedule__session-tab--afternoon:hover {
	color: #9e5369;
	background: rgba(239, 120, 188, 0.08);
}

.sl-schedule__session-tab--afternoon.is-active {
	color: #9e5369;
	background: rgba(239, 120, 188, 0.08);
box-shadow: inset 0 -3px 0 #ef78bc;
}

.sl-schedule__grade-tab:hover {
	color: var(--sl-schedule-accent);
	background: var(--sl-schedule-accent-soft);
}

.sl-schedule__grade-tab.is-active {
color: var(--sl-schedule-accent);
	background: var(--sl-schedule-accent-soft);
box-shadow: inset 0 -3px 0 var(--sl-schedule-accent);
}

.sl-schedule__session-tab:focus-visible {
	outline: 2px solid var(--sl-schedule-accent);
	outline-offset: -2px;
}

.sl-schedule__grade-tab:focus-visible {
	outline: 2px solid var(--sl-schedule-accent);
	outline-offset: -2px;
}

.sl-schedule__legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 9px 16px;
	margin-bottom: 16px;
	padding: 0 5px;
}

.sl-schedule__legend-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #9e5369;
	font-size: 10px;
	font-weight: 700;
	white-space: nowrap;
}

.sl-schedule__legend-item i {
	width: 12px;
	height: 12px;
	border-radius: 4px;
}

.sl-schedule__legend-item--english i {
	background: #ef78bc;
}

.sl-schedule__legend-item--ai i {
	background: #56d1ca;
}

.sl-schedule__legend-item--career i {
	background: #a8c66c;
}

.sl-schedule__legend-item--homeroom i {
	background: #9e5369;
}

.sl-schedule__view {
	padding: 14px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 22px;
}

.sl-schedule__view-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: 8px 10px 18px;
}

.sl-schedule__view-head p {
	margin: 0 0 4px;
	color: var(--sl-schedule-accent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.sl-schedule__view-head h3 {
	margin: 0;
	color: #9e5369;
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 23px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.sl-schedule__view-head > span {
	max-width: 52%;
	color: var(--sl-schedule-accent);
	font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	text-align: right;
}

.sl-schedule__desktop-table {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--sl-schedule-accent-border);
	border-radius: 16px;
}

.sl-schedule__table {
	width: 100%;
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: 0;
}

.sl-schedule__table th {
	padding: 7px;
	border-right: 1px solid var(--sl-schedule-accent-border);
	border-bottom: 1px solid var(--sl-schedule-accent-border);
}

.sl-schedule__table td {
	padding: 7px;
	border-right: 1px solid var(--sl-schedule-accent-border);
	border-bottom: 1px solid var(--sl-schedule-accent-border);
}

.sl-schedule__table tr > *:last-child {
	border-right: 0;
}

.sl-schedule__table tbody tr:last-child > * {
	border-bottom: 0;
}

.sl-schedule__table thead th {
	height: 52px;
	color: #9e5369;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	background: var(--sl-schedule-accent-soft);
}

.sl-schedule__table thead th:first-child {
	width: 132px;
}

.sl-schedule__table tbody th {
	color: #9e5369;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.55;
	text-align: center;
	background: var(--sl-schedule-accent-soft);
}

.sl-schedule__table tbody th span {
	display: block;
	margin-bottom: 2px;
	color: var(--sl-schedule-accent);
	font-size: 10px;
	letter-spacing: 0.08em;
}

.sl-schedule__subject {
	display: flex;
	min-height: 88px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 14px 9px 14px 13px;
	text-align: center;
	background: #fff;
	border-left: 6px solid;
	border-radius: 10px;
	box-shadow: 0 7px 16px rgba(44, 75, 105, 0.08);
}

.sl-schedule__subject small {
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.11em;
}

.sl-schedule__subject strong {
	overflow-wrap: anywhere;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
}

.sl-schedule__subject--english {
	color: #ef78bc;
	background: rgba(239, 120, 188, .055);
	border-left-color: #ef78bc;
}

.sl-schedule__subject--ai {
	color: #56d1ca;
	background: rgba(86, 209, 202, 0.10);
	border-left-color: #56d1ca;
}

.sl-schedule__subject--career {
	color: #65763f;
	background: rgba(168, 198, 108, 0.12);
	border-left-color: #a8c66c;
}

.sl-schedule__subject--homeroom {
	color: #9e5369;
	background: rgba(158, 83, 105, 0.08);
	border-left-color: #9e5369;
}

.sl-schedule__break-row th {
	color: #9e5369;
	background: rgba(158, 83, 105, 0.05);
}

.sl-schedule__break-row td {
	padding: 8px 12px;
	background: rgba(158, 83, 105, 0.05);
}

.sl-schedule__break-row td div {
	display: flex;
	min-height: 45px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	color: #9e5369;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	background: #fff;
	border: 1px dashed rgba(158, 83, 105, 0.28);
	border-radius: 10px;
}

.sl-schedule__mobile-days {
	display: none;
}

.sl-note {
	margin: 22px 0 0;
	color: #7f878f;
	font-size: 11px;
	line-height: 1.8;
}
/**
 * 4.0 レスポンシブ表示
 *
 * 中間幅では操作部を1列へ、スマートフォンでは週間表を曜日カードへ切り替え、情報を省略せず可読性を保つ。
 */

@media (max-width: 1100px) {
	.sl-schedule__formation-card ul {
		grid-template-columns: 1fr;
	}

	.sl-schedule__formation-card li {
		min-height: 0;
	}

	.sl-schedule__controls {
		grid-template-columns: 1fr;
	}

	.sl-schedule__table thead th:first-child {
		width: 112px;
	}

	.sl-schedule__table th {
		padding: 5px;
	}

	.sl-schedule__table td {
		padding: 5px;
	}

	.sl-schedule__subject {
		min-height: 84px;
		padding: 12px 6px 12px 9px;
	}

	.sl-schedule__subject strong {
		font-size: 11px;
	}
}

@media (max-width: 760px) {
	.sl-schedule {
		padding: 74px 0 82px;
	}

	.sl-schedule__head {
		margin-bottom: 30px;
	}

	.sl-schedule__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-bottom: 24px;
		border-radius: 14px;
	}

	.sl-schedule__facts > div {
		min-height: 66px;
		gap: 4px;
		padding: 12px 6px;
		border-bottom: 1px solid rgba(86, 209, 202, 0.28);
	}

	.sl-schedule__facts > div:nth-child(2n) {
		border-right: 0;
	}

	.sl-schedule__facts > div:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.sl-schedule__facts strong {
		font-size: 25px;
	}

	.sl-schedule__facts span {
		font-size: 9px;
	}

	.sl-schedule__formation {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 24px;
	}

	.sl-schedule__formation-card {
		padding: 20px 18px;
		border-radius: 16px;
	}

	.sl-schedule__formation-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.sl-schedule__formation-head h3 {
		font-size: 21px;
	}

	.sl-schedule__formation-card ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 6px;
	}

	.sl-schedule__formation-card li {
		padding: 10px 8px;
		text-align: center;
	}

	.sl-schedule__formation-card li b {
		font-size: 11px;
	}

	.sl-schedule__formation-card li span {
		font-size: 8px;
	}

	.sl-schedule__panel {
		padding: 14px;
		border-radius: 20px;
	}

	.sl-schedule__controls {
		gap: 15px;
		margin-bottom: 14px;
	}

	.sl-schedule__control-group > p {
		margin-left: 2px;
	}

	.sl-schedule__session-tabs {
		padding: 0;
		border-radius: 12px;
	}

	.sl-schedule__grade-tabs {
		padding: 0;
		border-radius: 12px;
	}

	.sl-schedule__session-tab {
		display: block;
		min-height: 70px;
		padding: 10px 7px;
		text-align: center;
	}

	.sl-schedule__session-tab small {
		display: block;
		margin-bottom: 3px;
		font-size: 7px;
}

	.sl-schedule__session-tab span {
		display: block;
		font-size: 16px;
	}

	.sl-schedule__session-tab b {
		display: block;
		margin-top: 3px;
		font-size: 8px;
}

	.sl-schedule__grade-tab {
		min-height: 65px;
		padding: 8px 4px;
	}

	.sl-schedule__grade-tab span {
		font-size: 15px;
	}

	.sl-schedule__grade-tab small {
		font-size: 7px;
	}

	.sl-schedule__legend {
		justify-content: flex-start;
		gap: 8px 12px;
		margin-bottom: 13px;
	}

	.sl-schedule__legend-item {
		font-size: 9px;
	}

	.sl-schedule__view {
		padding: 10px;
		border-radius: 16px;
	}

	.sl-schedule__view-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
		padding: 7px 5px 14px;
	}

	.sl-schedule__view-head h3 {
		font-size: 19px;
	}

	.sl-schedule__view-head > span {
		max-width: none;
		font-size: 12px;
		text-align: left;
	}

	.sl-schedule__desktop-table {
		display: none;
	}

	.sl-schedule__mobile-days {
		display: grid;
		gap: 12px;
	}

	.sl-schedule__day-card {
		overflow: hidden;
		background: #fff;
		border: 1px solid var(--sl-schedule-accent-border);
		border-radius: 14px;
	}

	.sl-schedule__day-card h4 {
		margin: 0;
		padding: 12px 16px;
		color: var(--sl-schedule-accent);
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.06em;
		background: var(--sl-schedule-accent-soft);
		border-bottom: 1px solid var(--sl-schedule-accent-border);
	}

	.sl-schedule__day-card h4 span {
		font-family: Georgia, serif;
		font-size: 21px;
		font-weight: 500;
	}

	.sl-schedule__day-card ol {
		margin: 0;
		padding: 10px;
		list-style: none;
	}

	.sl-schedule__mobile-lesson {
		display: grid;
		grid-template-columns: 98px minmax(0, 1fr);
		gap: 11px;
		align-items: center;
		min-height: 66px;
		padding: 8px 10px;
		border-bottom: 1px solid rgba(158, 83, 105, 0.14);
		border-left: 5px solid;
	}

	.sl-schedule__mobile-lesson time {
		color: #9e5369;
		font-size: 9px;
		font-weight: 700;
		line-height: 1.5;
	}

	.sl-schedule__mobile-lesson time b {
		display: block;
		color: #9e5369;
		font-size: 10px;
	}

	.sl-schedule__mobile-lesson div {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
	}

	.sl-schedule__mobile-lesson small {
		font-size: 7px;
		font-weight: 700;
		letter-spacing: 0.08em;
	}

	.sl-schedule__mobile-lesson strong {
		overflow-wrap: anywhere;
		font-size: 12px;
		font-weight: 700;
		text-align: right;
	}

	.sl-schedule__mobile-lesson--english {
		color: #ef78bc;
		background: rgba(239, 120, 188, .030);
		border-left-color: #ef78bc;
	}

	.sl-schedule__mobile-lesson--ai {
		color: #56d1ca;
		background: rgba(86, 209, 202, 0.10);
		border-left-color: #56d1ca;
	}

	.sl-schedule__mobile-lesson--career {
		color: #65763f;
		background: rgba(168, 198, 108, 0.12);
		border-left-color: #a8c66c;
	}

	.sl-schedule__mobile-lesson--homeroom {
		color: #9e5369;
		background: rgba(158, 83, 105, 0.08);
		border-left-color: #9e5369;
	}

	.sl-schedule__mobile-break {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 48px;
		padding: 8px 12px;
		color: #9e5369;
		font-size: 10px;
		font-weight: 700;
		background: rgba(158, 83, 105, 0.05);
		border-bottom: 1px solid rgba(158, 83, 105, 0.14);
	}
}

@media (max-width: 600px) {
	.sl-schedule__lead,
	.sl-schedule__sublead,
	.sl-schedule__closing {
		max-width: 100%;
		font-size: 13px;
	}

	.sl-schedule__lead {
		font-size: 14px;
	}

	.sl-schedule__view-head > span {
		text-align: center;
	}
}

@media (max-width: 420px) {
	.sl-schedule__formation-card ul {
		grid-template-columns: 1fr;
	}

	.sl-schedule__formation-card li {
		text-align: center;
	}

	.sl-schedule__grade-tab small {
		line-height: 1.35;
	}
}

.sl-schedule__closing {
	margin-top: 14px;
	margin-bottom: 0;
	font-weight: 700;
}
