﻿@charset "utf-8";

/* 予約フォームのみのスタイル */
main {
	font-size: 1.6rem;
}
input, select, textarea {
	font-size: 1.6rem;
}
.txt_yellow {
	color: yellow;
}
.txt_red {
	color: red;
}
.txt_blue {
	color: blue;
}
.month {
	text-align: center;
}
table.calendar {
	font-size: 1.4rem;
}
table.calendar td.yellow {
	background-color: yellow;
}
table.calendar td.red {
	background-color: red;
}
table.calendar td.blue {
	background-color: blue;
}
table.calendar td.holiday {
	background-color: blue;
}
table.calendar td.fullup {
	background-color: red;
}
table.calendar td.vacant {
	background-color: yellow;
}
table.calendar td.past {
	background-color: #cccccc;
}
.table_sticky {
	display: block;
	overflow-y: scroll;
	height: calc(100vh/2);
}
.table_sticky thead th {
	position: sticky;
	top: 0;
	z-index: 1;
}

.form_items {
	display: flex;
}
.form_items_label_name {
	width: 28%;
	display: flex;
}
.form_items_contents {
	width: 72%;
	padding: 4px 5px;
	text-align: left;
}

.number {
	width: 8em !important;
}

.reserved {
	text-decoration: line-through;
}
.err {
	color: red;
}
.nodisp {
	display: none;
}

