@charset "UTF-8";

.span_adm {
	display: none;
}
.span_sch {
	display: inline;
}

.ctrl_btns {
	margin-left: 1em;
}

.check_all {
  user-select: none;
}

.table_title_row{
	font-size: 1em;
	line-height: 1.5em;
	background-color: #D7E9FF;
}

th.sortable {
  user-select: none;
}

.td_style1{
	position: relative;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666;
}

.td_style1 input {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.td_check {
  display:block;
  height:100%;
  user-select: none;
}

.bad_tr {
	background-color: #fdd1bc;
}

.bad_tr input, .bad_tr select {
	background-color: #fcecec;
}

.sortable{
	cursor: pointer;
}

.loader-base {
	width: 16px;
	height: 16px;
	position: relative;
}

.loader-16 {
	pointer-events:none;
	text-align:center;
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 4px solid #4169e1;
	border-right-color: transparent;
	animation: loader-spin 1s infinite linear;
}

@keyframes loader-spin {
	0% { transform: rotate(0deg); opacity:1; }
	50%  { transform: rotate(180deg); opacity: 1; }
	100%   { transform: rotate(360deg); opacity:1; }
}

/* チェックボタン */
.check_btn {
	position: relative;
	user-select: none;
}
.check_btn::before {
	width: 1em;
	height: 1em;
	border: 1px solid #575757;
	display: block;
	border-radius: 2px;
	box-sizing: border-box;
	position: absolute;
	left: 0.2em;
	top: 0.3em;
	content: "";
}
.check_btn[data-checked="on"]::after {
	font-size: 0.9em;
	color: #575757;
	font-weight: bold;
	position: absolute;
	left: 0.3em;
	top: 0.2em;
	content: "\2713";
}

/* アイコン右端 */
.icon_right {
	display: inline-block;
	position: absolute;
	right: 4px;
}
.icon_right::before {
	position: absolute;
	left: 0px;
	top: 0px;
}
/* アイコン相対 */
.icon_relative {
  position: relative;
}
.icon_relative::before {
	position: absolute;
	left: -0.5em;
	top: 0px;
}

/* ソートアイコン */
.sort_icon {
	user-select: none;
	width: 1em;
	height: 1.4em;
}
.sort_icon::before {
	content: "";
}
.sort_icon[data-dir="asc"]::before {
	content: "▼";
}
.sort_icon[data-dir="desc"]::before {
	content: "▲";
}

/* 3stateソートアイコン */
.sort_icon_3s {
	user-select: none;
	width: 1em;
	height: 1.4em;
}
.sort_icon_3s::before {
	content: "■";
}
.sort_icon_3s[data-dir="asc"]::before {
	content: "▼";
}
.sort_icon_3s[data-dir="desc"]::before {
	content: "▲";
}

/* 目アイコン */
.eye_icon {
	display: inline-block;
	height: 1.5em;
	width: 1.5em;
	vertical-align: middle;
	padding-left: 0.5em;
	cursor: pointer;
	user-select: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../image/eye_icn_off.png);
}
.eye_icon[data-checked="on"] {
	background-image: url(../image/eye_icn_on.png);
}

/* 印刷時にテーブルの途中で改ページさせない */
.res_table tr {
	break-inside: avoid;
}

/* 実行中 */
#busy {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 1s;
	background-color: rgba(0,0,0,0.5);
}

.busy-mes {
	width: 640px;
	height: 32px;
	position: fixed;
	inset: 0 0 240px;
	margin: auto;
	text-align: center;
	background-color: white;
	border-radius: 10px;
	padding: 10px 0;
	opacity: 0;
	animation: busy-fadein 1s ease forwards;
	animation-delay: 5s;
}

.busy-mes span {
	font-size: 24px;
	color: black;
}

@keyframes busy-fadein {
	100% {  opacity: 1;}
}

.busy-base {
	width: 96px;
	height: 96px;
	position: fixed;
	inset: 0;
	margin: auto;
}

.busy-64 {
	pointer-events:none;
	text-align:center;
	position: absolute;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 16px solid #33CCFF;
	border-right-color: transparent;
	animation: busy-spin 1s infinite linear;
}

@keyframes busy-spin {
	0% { transform: rotate(0deg); opacity:1; }
	50%  { transform: rotate(180deg); opacity: 1; }
	100%   { transform: rotate(360deg); opacity:1; }
}

.busy-progress {
  display: none;
	width: 640px;
	height: 44px;
	position: fixed;
	inset: 240px 0 0;
	margin: auto;
	border-radius: 24px;
  overflow: hidden;
	background-color: white;
}
.busy-bar {
  width: 0%;
	height: 100%;
  position: absolute;
	background-color: #FFCC33;
}


span.err {
	color: #ff0000;
	text-shadow: 1px 2px 2px #808080;
}

span.warn {
	color: #ff9a00;
	text-shadow: 1px 2px 2px #808080;
}
