/* 特定のID要素を解像度によって表示/非表示切替 */
#select-classroom-pc {
	display: block;
}
#select-classroom-mobile {
	display: none;
}

@media (max-width: 768px) {
	#select-classroom-pc {
		display: none;
	}
	#select-classroom-mobile {
		display: block;
	}
}

#select-classroom-mobile select {
	width: 200px;
	margin-bottom: 10px;
}

.table-wrapper {
	display: inline-block;
	margin-right: 20px; /* テーブル間のスペース */
	vertical-align: top;
}

table.classroom-custom-table-pc {
	border-collapse: collapse;
	table-layout: fixed;
	margin-bottom: 15px;
}

/* テーブル全体の枠線と背景 */
.classroom-custom-table-pc td {
	border: 1px solid #e9e9e9;
	width: 45px;
}

/* 各行 */
.classroom-custom-table-pc tr:nth-child(odd) {
	background-color: #e9e9e9; /* 奇数行の背景色 */
	text-align: center;
}

.classroom-custom-table-pc tr:nth-child(even) {
	background-color: #f9f9f9; /* 偶数行の背景色 */
	text-align: center;
}

.classroom-custom-table-pc .single {
	height: 80px;
}

/* 建屋表示セル */
.vertical-text {
	background-color: #ffffff;
}

.vertical-text span {
	writing-mode: vertical-lr;
	white-space: pre;
	text-align: center;
	vertical-align: middle;
	font-weight	: bold;
}

table.facility-custom-table-pc {
	border-collapse: collapse;
	table-layout: fixed;
	margin-bottom: 15px;
}

.facility-custom-table-pc td {
	text-align: center;
	border: 1px solid #e9e9e9;
	padding: 7px;
	width: 130px;
}

.facility-custom-table-pc td:nth-child(odd) {
	background-color: #f9f9f9; /* 奇数行の背景色 */
}

table.facility-custom-table-mobile {
	border-collapse: collapse;
	table-layout: fixed;
	margin-bottom: 15px;
}


.facility-custom-table-mobile td {
	border: 1px solid #e9e9e9;
	padding: 7px;
	width: 150px;
}

.facility-custom-table-mobile td:nth-child(odd) {
	background-color: #f9f9f9; /* 奇数行の背景色 */
}

