/*------------------------------------------------------------------------------
	共通
------------------------------------------------------------------------------*/
html, body	{
	padding: 0px;
	margin: 0px;
	height: 100%;
	color: #333;
}

body	{
	margin: 0;
	padding: 0;
}

form {
	display: inline;
}

input[type=text], input[type=password], select, textarea {
	padding: 5px;
	border: 1px solid #ccc;
}

input[type=text], input[type=password], select {
	height: 30px;
}

input[type="radio"], input[type="checkbox"]  {
	accent-color:#559869;
}

select {
	background: white;
}

@media screen and (max-width: 480px) {
	input[type=text], input[type=password], textarea {
		font-size: 16px;
	}
}
/*------------------------------------------------------------------------------
	画面制御
------------------------------------------------------------------------------*/
.split-navi-wrap {
	display: flex;
}

.split-navi-wrap > li:first-of-type {
	width: 200px;
}

.split-navi-wrap > li:last-of-type {
	width: calc(100% - 220px);
	margin-left: 20px;
}

.split-half-wrap {
	justify-content: space-between;
	display: flex;
}

.split-half-wrap > li {
	width: 49.5%;
}
/*------------------------------------------------------------------------------
	行数制限
------------------------------------------------------------------------------*/
.line-clamp-1 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/*------------------------------------------------------------------------------
	ボタン
------------------------------------------------------------------------------*/
.btn-or {
	width: 150px;
	padding: 10px 0;
	border-radius: 4px;
	background: #707070;
	border: 1px solid #707070;
	color: white;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	line-height: 1;
}

.btn-or.small {
	width: auto;
	padding: 8px;	
}

.btn-or.rev {
	background: white;
	color: #707070;
}

.btn-or.red {
	background: red;
	border: 1px solid red;
}

.btn-or.red.rev {
	background: white;
	color: red;
}

.btn-or.blue {
	background: #3D6B99;
	border: 1px solid #3D6B99;
}

.btn-or.blue.rev {
	background: white;
	color: #3D6B99;
}

.btn-or.green {
	background: var(--main-color);
	border: 1px solid var(--main-color);
}

.btn-or.green.rev {
	background: white;
	color: var(--main-color);
}

.btn-or.orange {
	background: #f5733c;
	border: 1px solid #f5733c;
}

.btn-or.orange.rev {
	background: white;
	color: #f5733c;
}
/*------------------------------------------------------------------------------
	ダイアログ
------------------------------------------------------------------------------*/
.dialog-outer {
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: black;
	opacity: 0.2;
	position: fixed;
	display: none;
	z-index: 2;
}

.dialog-inner {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: white;
	position: fixed;
	display: none;
	z-index: 3;
}

.dialog-inner > p {
	padding: 10px 0;
	background: var(--main-color);
	color: white;	
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

.dialog-inner > div:first-of-type {
	padding: 20px;
}

.dialog-inner > div:last-of-type {
	padding: 20px 0;
	background: #E0E0E0;
	text-align: center;
}
/*------------------------------------------------------------------------------
	必須・任意
------------------------------------------------------------------------------*/
.require {
	position: relative;
	padding-right: 40px;
	text-align: right;
	font-weight: bold;	
}

.require::after {
	content: '必須';
	right: 0;
	top: -2px;
	padding: 3px 5px;
	background: red;
	color: white;
	font-size: 12px;
	display: inline-block;
	position: absolute;
}

.any {
	position: relative;
	padding-right: 40px;
	text-align: right;
	font-weight: bold;	
}

.any::after {
	content: '任意';
	right: 0;
	padding: 3px 5px;
	background: #707070;
	color: white;
	font-size: 12px;
	display: inline-block;
	position: absolute;
}
/*------------------------------------------------------------------------------
	プライベートメニュー
------------------------------------------------------------------------------*/
.private-menu-wrap {
	flex-wrap: wrap;
	display: flex;
}

.private-menu-wrap > li {
	width: 100%;
	margin-bottom: 20px;
}

.private-menu-wrap > li > p {
	padding-bottom: 10px;
	border-bottom: 5px solid var(--line-color);
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

.private-menu-wrap > li > a {
	margin-top: 20px;
	color: #333;
	display: block;
	position: relative;
}

.private-menu-wrap > li > a::after {
	content: '\f105';
	font-family: 'FontAwesome';
	right: 5px;
	top: 0;
	color: #707070;
	position: absolute;
}
/*------------------------------------------------------------------------------
	タブメニュー
------------------------------------------------------------------------------*/
.tab-menu {
	width: 100%;
	display: flex;
}

.tab-menu > li {
	width: 150px;
	padding: 10px 0;
	background: #F2F2F2;
	border-bottom: 1px solid var(--line-color); 
	border-radius: 5px 5px 0 0;
/*	color: #CCCCCC;*/
	text-align: center;
	cursor: pointer;
}

.tab-menu > li:not(:first-of-type) {
	margin-left: 5px;
}
	
.tab-menu > li.curr {
	background: var(--main-color);
	border: 1px solid var(--main-color); 
	border-bottom: 0;
	color: white;
}

.tab-menu > li.empty {
	flex: 1;
	background: transparent;
	text-align: left;
	cursor: auto;
}
/*------------------------------------------------------------------------------
	テーブルヘッダフッタ固定
------------------------------------------------------------------------------*/
.fixed-row thead th {
	top: 0;
	position: sticky;
	z-index: 1;
}

.fixed-row tfoot th,
.fixed-row tfoot td {
	bottom: 0;
	position: sticky;
	z-index: 1;
}
/*------------------------------------------------------------------------------
	ページャー
------------------------------------------------------------------------------*/
/*
.pager {
	width: 100%;
	height: 24px;
	font-size: 12px;
	text-align: center;
	position: relative;
}

.pager > p {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #707070;
	position: absolute;
}

.pager > p > span {
	font-weight: bold;
}

.pager > a.prev-page,
.pager > a.next-page {
	width: 50px;
	height: 24px;
	background: #3D6B99;
	border-radius: 100vh;
	color: white;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	display: inline-block;
}

.pager > a.jump-page {
	width: 24px;
	height: 24px;
	background: white;
	border: 1px solid #CCCCCC;
	border-radius: 50%;
	color: #CCCCCC;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	display: inline-block;
}

.pager > a.jump-page.curr {
	background: #3D6B99;
	border: 1px solid #3D6B99;
	border-radius: 50%;
	color: white;
	cursor: auto;
}

.pager > a:not(:first-of-type) {
	margin-left: 5px;
}
*/
.pager {
	width: 100%;
	height: 24px;
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pager > p {
	color: #707070;
	flex: 1;
}

.pager > p:nth-of-type(2) {
	text-align: center;
	flex: 2;
}

.pager > p > span {
	font-weight: bold;
}

.pager > p > a.prev-page,
.pager > p > a.next-page {
	width: 50px;
	height: 24px;
	background: #3D6B99;
	border-radius: 100vh;
	color: white;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	display: inline-block;
}

.pager > p > a.jump-page {
	width: 24px;
	height: 24px;
	background: white;
	border: 1px solid #CCCCCC;
	border-radius: 50%;
	color: #CCCCCC;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	display: inline-block;
}

.pager > p > a.jump-page.curr {
	background: #3D6B99;
	border: 1px solid #3D6B99;
	border-radius: 50%;
	color: white;
	cursor: auto;
}

.pager > p > a:not(:first-of-type) {
/*	margin-left: 5px;*/
	margin-left: 10px;
}

/*------------------------------------------------------------------------------
	その他
------------------------------------------------------------------------------*/
.explanation {
	color: #AA9767;	
	font-size: 12px;
}

.explanation::before {
	content: '\f059';
	font-family: 'FontAwesome';
	color: var(--main-color);
	margin-right: 5px;
}

.no-scrollbar {
	-ms-overflow-style: none;
	 scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
	display: none;
}

.fa-magnifying-glass:before, .fa-search:before {
    margin-right: 5px;
}
/*------------------------------------------------------------------------------
	JQuery UI
------------------------------------------------------------------------------*/
.ui-datepicker-header {
	background: var(--main-color);
	border: 0;
}

.ui-dialog-titlebar {
	background: var(--main-color);
	border: 0;
}

.ui-dialog .ui-dialog-buttonpane button {
	font-size: 1.8rem;
    margin: .5em 1em .5em 0;
}
/*------------------------------------------------------------------------------
	施術アイコン
------------------------------------------------------------------------------*/
.operation-icon {
	width: 16px;
	height: 16px;
	border-radius: 2px;
	color: white;
	line-height: 16px;
	font-size: 12px;
	text-align: center;
	vertical-align: 1px;
	display: inline-block;
}
/*------------------------------------------------------------------------------
	スクローラー
------------------------------------------------------------------------------*/
/*
.scroll-wrap {
    overflow: scroll;
    overflow-y: hidden;
    overscroll-behavior: none;
}

.scroll-wrap th,
.scroll-wrap td {
    border-top: 0;
}

.scroll-wrap thead th {
    top: 0;
    left: 0;
    position: sticky;
}

.scroll-wrap tfoot th {
    bottom: 0;
    position: sticky;
}
*/
