@charset "UTF-8";

/* ===============================================
	time table
================================================== */

/*部屋の名前*/
.time-table--room-name {
	margin-bottom: 2rem;
	text-align: center;
	/* border-bottom: 2px solid #aaa; */
}
/*アイコンの解説*/
.icon-selecter {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 1px solid #aaa;
	border-left: none;
	background-color: #fafafa;
}
.icon-selecter--dl {
	display: flex;
	flex-wrap: wrap;
}

.icon-selecter--dl dt {
	border-left: 1px solid #aaa;
	width: 3rem;
	text-align: center;
	background-color: #f0f0f0;
}
.icon-selecter--dl dd {
	font-size: 0.875rem;
}
/*ページャー*/
.pager {
	margin-bottom: 2rem;
	display: flex;
    align-items: center;
    justify-content: center;
}
.pager--prev,
.pager--now,
.pager--next {
	flex: 1;
}
.pager--prev,
.pager--prev a,
.pager--now,
.pager--next,
.pager--next a {
	display: flex;
    align-items: center;
    justify-content: center;
}
.pager--prev a,
.pager--next a {
	border-radius: 2px;
	width: 100%;
	padding: 0.25rem;
	color: #fff;
	text-decoration: none;
	background-color: #666;
	position: relative;
	box-shadow: 4px 4px 0px rgba(0,0,0,0.05);
}
.pager--prev a:hover,
.pager--next a:hover {
	text-decoration: underline;
	color: #ddd;
	cursor: pointer;
	background-color: #1a92a3;
	background-color: #444;
	transform: translate(2px,2px);
	box-shadow: none;
}
.pager--prev a::before,
.pager--next a::after {
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1rem;
	height: 1rem;
	text-align: center;
	line-height: 1em;
	text-decoration: none;
	color: #eee;
}
.pager--prev a::before {
	content: "<";
	right: auto;
}
.pager--next a::after {
	content: ">";
	left: auto;
}
.page--now {
    padding-right: 3rem;
    padding-left: 3rem;
    font-weight: bold;
    font-size: 1.25rem;
}
/*更新日時*/
.time-table--update-time p {
	text-align: right;
	color: #444;
	font-size: 0.875rem;
}
/*表のスタイル*/
.time-table tr {
	background-color: #fff;
}
.time-table tr:hover {
	filter: saturate(300%);
	background-color: #eee;
}
/*table*/
.time-table {
	margin-bottom: 2rem;
	position: relative;
	border-collapse: collapse;
	width: 100%;
	border: none;
	background-color: #fefefe;
	/*↓はみ出たらスクロール*/
	display: block;
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	/*↑はみ出たらスクロール**/
}
.time-table thead tr  {
	position: sticky;
	top: -1px;
	background: rgb(242,242,242);
	background: linear-gradient(0deg, rgba(242,242,242,1) 0%, rgba(255,255,255,1) 100%);
}
.time-table th,
.time-table td { 
	border: 1px solid #aaa;
	line-height: 1.5em;
}
.time-table td.Saturday {
	background-color: #cee9f1;
}
.time-table td.Sunday {
	background-color: #ffe1e4;
}
	/* -------------------------------------------
		time table > SP
	--------------------------------------------- */
	@media (min-width:0px) {
		.time-table--section {
			padding-top: 2rem;
			padding-bottom: 3rem;
		}
		.page--now {
			padding-right: 2rem;
			padding-left: 2rem;
		}
		.pager--prev a::before {
			left: 4px;
		}
		.pager--next a::after {
			right: 4px;
		}
		.icon-selecter--dl dd {
			width: calc( 100% - 3rem);
		}
		.icon-selecter--dl dt,
		.icon-selecter--dl dd {
			border-bottom: 1px solid #aaa;
			padding: 0.125rem;
		}
		.icon-selecter--dl dt:last-of-type,
		.icon-selecter--dl dd:last-of-type {
			border-bottom: none;
		}

		.time-table th,
		.time-table td {
			padding: 0.25rem 0.5rem;
		}
	}
	/* -------------------------------------------
		time table > TABLET
	---------------------------------------------- */
	@media (min-width:720px) {
		.icon-selecter--dl dd {
			width: calc( (100% / 3) - 3rem);
		}
		.icon-selecter--dl dt,
		.icon-selecter--dl dd {
			border-bottom: none;
			padding: 0.5rem;
		}
	}
	/* -------------------------------------------
		time table > PC
	---------------------------------------------- */
	@media (min-width:1028px) {
		
		.time-table--section {
			padding-top: 4rem;
			padding-bottom: 4rem;
		}
		.time-table th,
		.time-table td {
			padding: 0.25rem 1rem;
		}

		.page--now {
			padding-right: 3rem;
			padding-left: 3rem;
		}
		.pager--prev a::before {
			left: 1rem;
		}
		.pager--next a::after {
			right: 1rem;
		}
	}