.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	max-width: 100%;
	flex-wrap: wrap;
	gap: 15px;
}

.header h4 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.header h4 img {
	width: auto;
	height: 55px;
}

.main {}

footer {
	padding: 5px 15px;
	margin-top: 15px;
	width: 100%;
	text-align: center;

}

.schedule-row {
	flex-wrap: wrap;
}

table td a {
	margin-right: 8px;
}

table td a:last-child {
	margin-right: 0px;
}

.week {
	flex-wrap: wrap;
	margin-bottom: 15px;
}

.week .input.checkbox {
	margin-bottom: 0;
}

.store-control {
display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 20px;
}

.table-wrap {
	overflow: hidden;
	height: 100%;
	/* ここ重要：tbodyのスクロールを有効にする */
}
/* 固定ヘッダにするテーブル */
.fixed-header {
	width: 100%;
	border-collapse: collapse;
}

/* theadを固定 */
/* .fixed-header thead, */
.fixed-header tbody {
	/* display: block; */
}

/* .fixed-header thead {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 2;
} */

/* tbody だけスクロール */
.fixed-header tbody {
	height: 100%;
	overflow-y: auto;
}