@charset "UTF-8";

/*既定のテーマカラー*/
:root {
	--theme-accent-background: #265e96;
	--theme-accent-textcolor: white;
	--theme-header-color: #777;
	--theme-header-background: #fff;
	--theme-header-bordercolor: #8884;
	--theme-form-color: #6b7381;
	--theme-form-background: #ffffff;
	--theme-form-bordercolor: #8884;
}

/* ------------------------------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

@media print {
	body {
		display: none
	}
}

body {
	width: 100%;
	/*bootstrap対応*/
	/*min-width: 1000px;*/
	height: 100%;
	color: var(--theme-form-color);
	background-color: var(--theme-form-background);
	font-family: Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", 'Hiragino Sans', "メイリオ", Meiryo, sans-serif;
	font-weight: normal;
	letter-spacing: normal;
}

article, aside, dialog, figure, footer, header, hgroup, menu, nav, section {
	margin: 0;
	padding: 0;
	display: block;
}

h1, h2, h3{
	font-size: 1.5rem;
}

a {
	text-decoration: none;
}

a:hover {
	opacity: 0.6;
	transition: all 0.5s;
}

ul,
li,
dt, dl, dd,
table,
table tr,
table th,
table td {
	list-style: none;
}

p {
	margin-bottom: 0;
}

input[type=number] {
	text-align: right;
}

.f-currency {
	text-align: right;
}

/* ------------------------------------------------------------------------- */

/* .modal-dialog下にあるform類はボックスを作らない （スクロール不良対策）*/
.modal-dialog form {
	display: contents;
}

/*大型switch*/
.form-switch-lg {
	padding-left: 3.5em;
}

.form-switch-lg .form-check-input {
	width: 3em;
	margin-left: -3.5em;
	height: 1.2em;
}

/*TOPへ戻る*/
#topbtn {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	right: 0px;
	bottom: 0px;
	width: 60px;
	height: 60px;
	border: 0;
	outline: 0;
	cursor: pointer;
	z-index: 999;
	color: var(--theme-accent-textcolor);
	background-color: var(--theme-accent-background);
	opacity: 0.75;
}

#topbtn::before {
	content: "";
	width: 20px;
	height: 20px;
	margin: 0px 0px -12px;
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	transform: rotate(-45deg);
}

#topbtn:hover {
	background-color: #777E;
}

@media screen and (max-width: 800px) {
	#topbtn {
		width: 40px;
		height: 40px;
	}

	#topbtn::before {
		content: "";
		width: 16px;
		height: 16px;
		margin: 0px 0px -10px;
	}
}

/*標準テーブル*/
.list_table {
	width: 100%;
	margin-bottom: 15px;
}

.list_table th {
	min-height: 22px;
	/*background-color: #f5f5f5;*/
	background-color: #b8daff;
	border: 1px solid #bbbbbb;
	font-size: 12px;
	/*line-height: 22px;*/
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	padding: 5px;
}

.list_table td {
	min-height: 22px;
	border: 1px solid #bbbbbb;
	font-size: 12px;
	/*line-height: 22px;*/
	vertical-align: top;
	padding: 5px;
	overflow: hidden;
}

.list_table th a {
	color: #333333;
}

.list_table th a:hover {
	color: #111111;
}

.list_table td.date {
	width: 90px;
	text-align: center;
}

.list_table td.time {
	width: 150px;
	text-align: center;
}

.list_table td.day {
	width: 50px;
	text-align: right;
}

.list_table td.id {
	width: 90px;
	text-align: right;
}

.list_table td.num {
	width: 130px;
	text-align: right;
}

.list_table td.state {
	width: 90px;
	text-align: center;
}

.list_table td.state2 {
	width: 140px;
	text-align: center;
}

.list_table td.nmae {
	min-width: 90px;
	text-align: left;
}

.list_table td.addr {
	text-align: left;
}

.list_table td.price {
	width: 110px;
	text-align: right;
}

.list_table td.small {
	font-size: 11px;
}

.list_table .his::after {
	content: '必須';
	font-size: 80%;
	padding: 2px;
	margin-left: 2px;
	font-weight: bold;
	color: white;
	background-color: maroon;
}

.list_page {
	color: #666666;
	text-align: center;
	margin-bottom: 15px;
}

/* ------------------------------------------------------------------------- */

.inlineblocks {
	display: inline-block;
}
