@charset "UTF-8";
/**
 * reset
 */
body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width:100%;
	height:auto;
	vertical-align:bottom;
}
strong {
	font-weight: bolder;
}
a {
	outline: none;
	color: #eee;
	text-decoration: none;
	transition: opacity 0.3s;
}
/*a:hover,
button:hover,
input[type="submit"]:hover {
	opacity: 0.5;
}*/
html {
	font-size: 62.5%;
}
body {
	margin: 0;
	padding: 0;
	background-color: #111;
	text-align: left;
	font-family: 'Segoe UI', メイリオ, sans-serif;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.4;
	color:#eee;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;

	/*user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-drag:none;
	-khtml-user-drag:none;*/
}
@media screen and (max-width: 1024px) {
	html {
		font-size: 50%;
	}
}

/**
 * #contents
 */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
strong {
	font-weight: bolder;
}
*::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background-color: transparent;
}
*:hover::-webkit-scrollbar {
	background-color: #111;
}
*::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 5px;
}
*:hover::-webkit-scrollbar-track {
	background-color: #000;
}
*::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 5px;
}
*:hover::-webkit-scrollbar-thumb{
	background-color: #888;
}
*::-webkit-scrollbar-track-corner {
	display: none;
}
@media screen and (max-width: 1024px) {
	*::-webkit-scrollbar,
	*:hover::-webkit-scrollbar {
		width: 4px;
		height: 4px;
	}
}

/* micro clearfix  */
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after { clear: both; }
.clear {
	clear: both;
}
.tal {
	text-align: left;
}
.tac {
	text-align: center;
}
.tar {
	text-align: right;
}
.inact {
	opacity: 0.3 !important;
	pointer-events: none;
}

/**
 * input
 */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="submit"],
input[type="datetime"],
input[type="datetime-local"],
input.datetimepicker,
textarea,
select,
button {
	box-sizing: border-box;
	min-width: 200px;
	margin: 5px;
	padding: 9px 15px;
	background: #333;
	border: none;
	border-radius: 4px;
	vertical-align: middle;
	font-family: 'Segoe UI', メイリオ, sans-serif;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #eee;

	-webkit-appearance:none;
	-moz-appearance:none;
	-o-appearance:none;
	-ms-appearance:none;
	appearance:none;
}
input:disabled,
textarea:disabled,
select:disabled,
button:disabled {
	opacity: 0.3;
	pointer-events: none;
}
select::-ms-expand {
	display:none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type="datetime"],
input[type="datetime-local"] {
	padding: 7px 15px;
}

select {
	width: auto;
	padding-right: 40px;
	background: #333 url("../img/icon_select.svg") no-repeat right 15px center / 12px auto;
	transition: background 0.8s;
	cursor: pointer;
}
label.file {
	box-sizing: border-box;
	display: inline-block;
	min-width: 190px;
	background-color: #6700FF;
	border-radius: 4px;
	padding: 10px 20px;
	text-decoration: none !important;
	text-align: center;
	color: #eee !important;
	line-height: 1.4;
	cursor: pointer;
}
label.file:hover {
	background-color: #B17DFF;
}
label.file input[type="file"] {
	display: none;
}
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label {
	position: relative;
	display: inline-block;
	padding-left: 25px;
	cursor: pointer;
}
input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
	content: '';
}
input[type="checkbox"] + label::before {
	transition: all 0.15s;
	background-color: #eee
}
input[type="checkbox"]:checked + label::after {
	transition: all 0.3s;
	background: url('../img/icon_checkbox.svg') no-repeat center center / contain;
	opacity: 0;
	transform: scale(0.2);
}
input[type="checkbox"]:checked + label::before {
	background-color: #6700FF;
}
input[type="checkbox"]:checked + label::after {
	opacity: 1;
	transform: scale(1);
}

input[type="radio"] {
	display: none;
}
input[type="radio"] + label,
input[type="radio"] + span {
	margin-right: 2em;
	cursor: pointer;
}
input[type="radio"] + label::before,
input[type="radio"] + span::before {
	display: inline-block;
	position: relative;
	top: -0.1em;
	width: 1em;
	height: 1em;
	background: #fff;
	border-radius: 100%;
	border: 1px solid #fff;
	margin-right: 0.5em; 
	vertical-align: middle;
	text-align: center;
	content: '';
	transition: all 0.25s ease;
}
input[type="radio"]:checked + label::before,
input[type="radio"]:checked + span::before {
	background-color: #B17DFF;
	border: 1px solid #B17DFF;
	box-shadow: inset 0 0 0 3px #fff;
}

/**
 * datetimepicker
 */
.xdsoft_datetimepicker {
	z-index: 10001;
}

/**
 * header
 */
header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 60px;
	background-color: #4100A4;
	background: linear-gradient(90deg, #210052, #4100A4);
	z-index: 1000;
}
header h2.ttl {
	margin: 15px 0 0 20px;
	line-height: 1;
}
header h2.logo {
	position: absolute;
	top: 10px;
	right: 22px;
}
header .attention {
	position: absolute;
	top: 50%;
	left: 220px;
	transform: translateY(-50%);
	border: solid 2px #D54200;
	padding: 5px 25px;
	border-radius: 4px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #D54200;
}
header.arxive .attention {
	border: solid 2px #C59700;
	color: #C59700;
}
header .time {
	position: absolute;
	top: 11px;
	right: 125px;
	text-align: right;
	font-size: 1.4rem;
}
header .time .now {
	color: #E4D2FF;
}
header .time .renew {
	color: #B17DFF;
}
header .message {
	display: none;
	position: absolute;
	top: 15px;
	right: 380px;
	width: calc(100vw - 610px);
	background-color: rgba(0,0,0,0.3);
	border-radius: 4px;
	padding: 5px;
	overflow: hidden;
}
header.record .message {
	width: calc(100vw - 815px);
}
header.arxive.detail .message {
	width: calc(100vw - 860px);
}

header .message span {
	position: relative;
	display: inline-block;
	min-width: 100%;
	white-space: nowrap;
}
@media screen and (max-width: 1024px) {
	header {
		height: 56px;
	}
	header h2.ttl {
		margin: 15px 0 0 20px;
	}
	header h2.logo {
		top: 8px;
		right: 10px;
	}
	header .time {
		top: 13px;
		right: 100px;
	}
	header .time p + p {
		margin-left: 1em;
	}
	header .attention {
		left: 210px;
	}
	header .message {
		right:290px;
		width: calc(100vw - 660px);
	}
}
#delete {
	display: none;
	position: absolute;
	top: 50px;
	right: 0;
	box-shadow: 0 0 10px rgba(0,0,0,1);
	background-color: #222;
	padding: 10px;
	text-align: center;
}
#delete button {
	margin-top: 10px;
	border-radius: 4px;
	background-color: #4100A4;
}

main {
	box-sizing: border-box;
	display: flex;
	justify-content: stretch;
	padding-top: 60px;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}
@media screen and (max-width: 1024px) {
	main {
		padding-top: 56px;
	}
}
.btns a + a {
	margin-left: 15px;
}
.btn,
.btn_inv {
	box-sizing: border-box;
	display: inline-block;
	min-width: 150px;
	background-color: #6700FF;
	border-radius: 4px;
	padding: 15px 20px;
	text-decoration: none !important;
	text-align: center;
	color: #eee !important;
	line-height: 1.4;
	cursor: pointer;
}
.btn:hover {
	background-color: #B17DFF;
}
.btn_inv {
	background-color: #555;
}
.btn_inv:hover {
	background-color: #888;
}
.btn_link {
	position: relative;
	box-sizing: border-box;
	display: inline-block;
	min-width: 230px;
	background-color: #333;
	padding: 10px 20px;
	line-height: 1.4;
	text-decoration: none !important;
	color: #eee !important;
}
.btn_link:hover {
	background-color: #888;
}
.btn_link::after {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 10px;
	height: 10px;
	margin: auto;
	border-right: solid 1px #eee;
	border-bottom: solid 1px #eee;
	transform: rotate(-45deg);
	content: '';
}

.btn_toggle span {
	box-sizing: border-box;
	display: inline-block;
	border: solid 1px #888;
	padding: 0 12px;
	font-size: 1.3rem;
	color: #888;
	cursor: pointer;
}
.btn_toggle span:nth-child(1) {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-color: #B17DFF;
	color: #B17DFF;
}
.btn_toggle span:nth-child(2) {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-left: none;
}
.btn_toggle.on span:nth-child(1) {
	border-color: #888;
	border-right: none;
	color: #888;
}
.btn_toggle.on span:nth-child(2) {
	border-left: solid 1px #B17DFF;
	border-color: #B17DFF;
	color: #B17DFF;
}

.btn_switch {
	display: flex;
}
.btn_switch li {
	box-sizing: border-box;
	border: solid 1px #888;
	padding: 1px 12px;
	font-size: 1.3rem;
	color: #888;
	cursor: pointer;
}
.btn_switch li:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.btn_switch li:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.btn_switch li.on {
	border-color: #B17DFF;
	color: #B17DFF;
}
.btn_switch li + li {
	margin-left: -1px;
}
.btn_switch li.on + li {
	border-left-color: transparent;
}

.toggle {
	width: auto;
	padding: 0;
	white-space: nowrap;
	font-size: 1.6rem;
}
.toggle h4 {
	display: inline-block;
	vertical-align: middle;
}
.toggle h4:first-child,
.toggle.on h4:last-child {
	color: #eee;
}
.toggle.on h4:first-child,
.toggle h4:last-child {
	color: #888;
}
.toggle div {
	display: inline-block;
	position: relative;
	width: 60px;
	height: 28px;
	margin: 0 0.5em !important;
	background-color: #111;
	border: solid 2px #111;
	border-radius: 100px;
	vertical-align: middle;
	cursor: pointer;
}
.toggle div::before {
	position: absolute;
	width: 28px;
	height: 28px;
	background-color: #6700FF;
	border-radius: 100px;
	content: '';
	left: 0%;
	transform: translate3d(0,0,0);
	transition: left 0.2s;
}
.toggle.on div::before {
	left: 32px;
}

.modal,
.confirm,
.errors,
.server_err {
	position: fixed;
	opacity: 0;
	top: -100vh;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.75);
	z-index: 10000;
}
.modal > .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.modal.act,
.confirm.act,
.errors.act,
.server_err.act {
	top: 0;
	opacity: 1;
	transition: opacity 0.3s;
}
.modal .inner,
.confirm .inner,
.errors .inner,
.server_err .inner {
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 80vw;
	max-height: 90vh;
	padding: 30px;
	border-radius: 10px;
	background-color: #fff;
	overflow: auto;
}
.modal .inner {
	box-shadow: 0 0 10px rgba(0,0,0,1);
	background-color: #222;
}
.modal .col2 {
	display: flex;
}
.modal .col2 > * {
	box-sizing: border-box;
	width: 50%;
	padding: 0 15px;
	margin: 15px 0;
}
.modal .col2 > *:nth-child(even) {
	border-left: solid 1px #707070;
}
.modal .col2 textarea {
	width: 100% !important;
	height: 100px !important;
}
.modal .col2 table {
	width: 100%;
}
.modal .col2 th,
.modal .col2 td {
	vertical-align: top;
	padding: 5px;
}
.modal .col2 th {
	width: 20%;
	white-space: nowrap;
	text-align: right;
}
.modal .inner h3 {
	margin-bottom: 0.5em;
	font-size: 2.2rem;
	font-weight: bold;
}
.confirm .inner h3,
.errors .inner h3 {
	text-align: center;
	font-size: 1.6rem;
	color: #333;
}
.errors .inner p {
	text-align: center;
	font-size: 1.6rem;
	color: #FF7D7D;
}
.errors .inner p strong {
	display: block;
	margin-top: 1em;
}
.modal h4 {
	font-size: 1.4rem;
	margin: 1em 0 0.5em 0;
}
.modal h4 + select,
.modal h4 + textarea {
	margin-top: 0 !important;
}
.modal .inner .btns,
.confirm .inner .btns,
.errors .inner .btns {
	margin-top: 2em;
	text-align: center;
}
.modal .inner .btns .btn,
.modal .inner .btns .btn_inv,
.confirm .inner .btns .btn,
.confirm .inner .btns .btn_inv,
.errors .inner .btns .btn,
.errors .inner .btns .btn_inv {
	margin: 0 10px;
}

.server_err .inner {
	width: 80vw;
	height: 85vh;
	background-color: #4100A4;
}
.server_err h2 {
	margin-bottom: 0.5em;
	white-space: nowrap;
	font-weight: bold;
	font-size: 2rem;
	color: #fff;
}
.server_err h2 span {
	display: inline-block;
	margin-left: 1em;
	font-weight: normal;
	font-size: 1.4rem;
}
.server_err iframe {
	width: 100%;
	height: calc(100% - 110px);
}
.server_err .btns {
	margin-top: 20px;
	text-align: center;
}
.server_err .btn {
	background-color: #fff;
	color: #4100A4 !important;
}
@media screen and (max-width: 767px) {
	.modal .col2 {
		display: block;
	}
	.modal .col2 > * {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.modal .col2 > *:nth-child(even) {
		border-left: none;
	}
}

.notice {
	position: fixed;
	bottom: 40px;
	left: 50%;
	transform: translate(-50%, 150px);
	background-color:#086B4D; /* rgba(0,197,137,0.5); */
	border-radius: 100px;
	padding: 15px 30px;
	z-index: 10000;
	pointer-events: none;
}
.notice span {
	display: inline-block;
	padding-left: 2em;
	background: url('../img/icon_checked_b.svg') no-repeat left center / 1.5em auto;
}

.error {
	display: none;
	margin-top: 0.3em !important;
	color: #FF7D7D;
}
.error br:last-child {
	display: none;
}

/**
 * #side : サイドメニュー
 */
main #side {
	position: absolute;
	box-sizing: border-box;
	width: 250px;
	min-width: 250px;
	height: 100%;
	max-height: calc(100vh - 60px);
	overflow: auto;
	overflow-x: hidden;
	background-color: #201A2E;
	z-index: 200;
}
main #side .btn_toggle {
	position: relative;
	height: 50px;
	cursor: pointer;
}
main #side .btn_toggle::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 15px;
	height: 15px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	margin: auto;
	transform: rotate(-135deg);
	content: '';
}
main #side .user {
	padding: 0 0 35px 0;
	text-align: center;
	transition: heigth 0.3s;
}
main #side .user figure {
	display: block;
	width: 130px;
	margin: auto auto 15px auto;
	transition: all 0.2s;
}
main #side .user figure a {
	display: block;
	background: #333 url('../img/user.png') no-repeat center center / cover;
	border-radius: 100%;
} 
main #side .user figure a::before {
	display: block;
	padding-top: 100%;
	content: '';
}
main #side .user h2 {
	font-weight: bold;
	font-size: 1.8rem;
}
main #side .user p {
	margin-top: 0.5em;
}
main #side .user .btn_logout {
	display: inline-block;
	margin-top: 2em;
	padding: 6px 20px;
	border: solid 1px #B17DFF;
	border-radius: 4px;
	font-size: 1rem;
	color: #B17DFF;
	white-space: nowrap;
}
main #side .user .btn_logout:hover {
	background-color: #B17DFF;
	color: #eee;
}
main #gnav {
	padding-bottom: 30px;
}
main #gnav a {
	display: block;
	background: no-repeat 20px center / 18px auto;
	padding: 16px 10px 15px 55px;
	font-size: 1.4rem;
	white-space: nowrap;
}
main #side #gnav a span {
	display: inline-block;
}
main #gnav .act a,
main #gnav a:hover {
	background-color: #000;
	font-weight: bold;
	color: #B17DFF;
}

main #gnav .btn_mypage {
	background-image: url('../img/icon_mypage.svg');
}
main #gnav .act .btn_mypage,
main #gnav .btn_mypage:hover {
	background-image: url('../img/icon_mypage_on.svg');
}
main #gnav .btn_observe {
	background-image: url('../img/icon_observe.svg');
}
main #gnav .act .btn_observe,
main #gnav .btn_observe:hover {
	background-image: url('../img/icon_observe_on.svg');
}
main #gnav .btn_batch {
	background-image: url('../img/icon_batchlist.svg');
}
main #gnav .act .btn_batch,
main #gnav .btn_batch:hover {
	background-image: url('../img/icon_batchlist_on.svg');
}
main #gnav .btn_middle {
	background-image: url('../img/icon_middle.svg');
}
main #gnav .act .btn_middle,
main #gnav .btn_middle:hover {
	background-image: url('../img/icon_middle_on.svg');
}
main #gnav .btn_inspect {
	background-image: url('../img/icon_log.svg');
}
main #gnav .act .btn_inspect,
main #gnav .btn_inspect:hover {
	background-image: url('../img/icon_log_on.svg');
}
main #gnav .btn_event {
	background-image: url('../img/icon_event.svg');
}
main #gnav .act .btn_event,
main #gnav .btn_event:hover {
	background-image: url('../img/icon_event_on.svg');
}
main #gnav .btn_database {
	background-image: url('../img/icon_database.svg');
}
main #gnav .act .btn_database,
main #gnav .btn_database:hover {
	background-image: url('../img/icon_database_on.svg');
}
main #gnav .btn_report_output {
	background-image: url('../img/icon_report.svg');
}
main #gnav .act .btn_report_output,
main #gnav .btn_report_output:hover {
	background-image: url('../img/icon_report_on.svg');
}
main #gnav .btn_master {
	background-image: url('../img/icon_master.svg');
}
main #gnav .act .btn_master,
main #gnav .btn_master:hover {
	background-image: url('../img/icon_master_on.svg');
}
main #gnav .btn_system {
	background-image: url('../img/icon_system.svg');
}
main #gnav .act .btn_system,
main #gnav .btn_system:hover {
	background-image: url('../img/icon_system_on.svg');
}
main #gnav .btn_backup {
	background: url('../img/icon_backup.svg') no-repeat 15px center / 27px auto;
}
main #side.close #gnav .btn_backup {
	background-position: 18px center;
}
main #gnav .act .btn_backup,
main #gnav .btn_backup:hover {
	background-image: url('../img/icon_backup_on.svg');
}

main #gnav .btn_analysis {
	background: url('../img/icon_analysis.svg') no-repeat 18px center / 24px auto;
}
main #side.close #gnav .btn_analysis {
	background-position: 18px center;
}
main #gnav .act .btn_analysis,
main #gnav .btn_analysis:hover {
	background-image: url('../img/icon_analysis_on.svg');
}
main #gnav .btn_manual {
	background: url('../img/icon_manual.svg') no-repeat 18px center / 24px auto;
}
main #side.close #gnav .btn_manual {
	background-position: 18px center;
}
main #gnav .act .btn_manual,
main #gnav .manual:hover {
	background-image: url('../img/icon__manual.svg');
}

main #side.close {
	width: 60px;
	min-width: 60px;
}
main #side.close .btn_toggle::before {
	right: 24px;
	transform: rotate(45deg);
}
main #side.close .user figure {
	width: 42px;
}
main #side.close .user {
	height: 50px;
}
main #side.close #gnav {
	padding-bottom: 10px;
}
main #side.close .user > h2,
main #side.close .user > p,
main #side.close .user > a,
main #side.close #gnav a span {
	visibility: hidden;
	white-space: nowrap;
}
main #side.close .user > h2,
main #side.close .user > p,
main #side.close .user > a {
	display: none;
}
main #side.close #gnav a {
	background-position: 23px center;
}
main > .cover {
	display: none;
}
main > .cover.act {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.75);
	z-index: 100;
}
@media screen and (max-width: 1024px) {
	main #side {
		position: absolute;
		max-height: calc(100vh - 56px);
	}
	main #side .user {
		padding-bottom: 20px;
	}
	main #gnav a {
		padding-top: 12px;
		padding-bottom: 12px;
	}
}

#loading {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	z-index: 20000;
}
#loading > div {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%, -50%);
}

#loading .ball-scale-multiple > div:nth-child(2) {
	animation-delay:-.4s;
}
#loading .ball-scale-multiple > div:nth-child(3) {
	animation-delay:-.2s;
}
#loading .ball-scale-multiple > div {
	position: absolute;
	left: -30px;
	top: 0;
	opacity: 0;
	margin: 0;
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 100%;
	animation: ball-scale-multiple 1s 0s linear infinite;
}
@keyframes ball-scale-multiple {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity:0
	}
	5% {
		opacity:1
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity:0
	}
}

#loading .bars {
	position: relative;
	height: 100px;
	width: 150px;
}
#loading .bars__bar {
	position: absolute;
	top: 40%;
	bottom: 40%;
	width: 7%;
	background-color: #fefefe;
	animation: bars 1.5s infinite ease-out;
}
#loading .bars__bar--alt {
	background-color: rgba(254, 254, 254, 0.4);
}
#loading .bars__bar--0 {
	left: 0%;
	animation-delay: 0s;
}
#loading .bars__bar--0--alt {
	left: 0%;
	animation-delay: 0.5s;
}
#loading .bars__bar--1 {
	left: 18.6%;
	animation-delay: 0.1s;
}
#loading .bars__bar--1--alt {
	left: 18.6%;
	animation-delay: 0.6s;
}
#loading .bars__bar--2 {
	left: 37.2%;
	animation-delay: 0.2s;
}
#loading .bars__bar--2--alt {
	left: 37.2%;
	animation-delay: 0.7s;
}
#loading .bars__bar--3 {
	left: 55.8%;
	animation-delay: 0.3s;
}
#loading .bars__bar--3--alt {
	left: 55.8%;
	animation-delay: 0.8s;
}
#loading .bars__bar--4 {
	left: 74.4%;
	animation-delay: 0.4s;
}
#loading .bars__bar--4--alt {
	left: 74.4%;
	animation-delay: 0.9s;
}
#loading .bars__bar--5 {
	left: 93%;
	animation-delay: 0.5s;
}
#loading .bars__bar--5--alt {
	left: 93%;
	animation-delay: 1s;
}
@keyframes bars {
	0%, 60% {
		top: 40%;
		bottom: 40%;
	}
	20% {
		top: 0;
		bottom: 40%;
	}
	40% {
		top: 40%;
		bottom: 0;
	}
}

#loading .steps {
	position: relative;
	width: 120px;
	height: 90px;
}
#loading .steps:before {
	content: "";
	position: absolute;
	bottom: 30px;
	left: 50px;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background: #fff;
	animation: loading-bounce 0.5s ease-in-out infinite alternate;
}
#loading .steps:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	height: 7px;
	width: 45px;
	border-radius: 4px;
	box-shadow: 0 5px 0 #fff, -35px 50px 0 #fff, -70px 95px 0 #fff;
	animation: loading-step 1s ease-in-out infinite;
}
@keyframes loading-bounce {
	0% { transform: scale(1, 0.7)}
	40% { transform: scale(0.8, 1.2)}
	60% { transform: scale(1, 1)}
	100% { bottom: 140px }
}
@keyframes loading-step {
	0% {
	box-shadow: 0 10px 0 rgba(0,0,0,0),
				0 10px 0 #fff,
				-35px 50px 0 #fff,
				-70px 90px 0 #fff;
	}
	100% {
	box-shadow: 0 10px 0 #fff,
				-35px 50px 0 #fff,
				-70px 90px 0 #fff,
				-70px 90px 0 rgba(0,0,0,0);
	}
}

#loading .pacman {
	position: relative;
	width: 0;
	height: 0;
}
#loading .pacman > div:nth-child(2) {
	animation: pacman-balls 1s -0.99s infinite linear;
}
#loading .pacman > div:nth-child(3) {
	animation: pacman-balls 1s -0.66s infinite linear;
}
#loading .pacman > div:nth-child(4) {
	animation: pacman-balls 1s -0.33s infinite linear;
}
#loading .pacman > div:nth-child(5) {
	animation: pacman-balls 1s 0s infinite linear;
}
#loading .pacman > div:first-of-type {
	width: 0px;
	height: 0px;
	border-right: 25px solid transparent;
	border-top: 25px solid #fff;
	border-left: 25px solid #fff;
	border-bottom: 25px solid #fff;
	border-radius: 25px;
	animation: rotate_pacman_half_up 0.5s 0s infinite;
	position: relative;
	left: -30px;
}
#loading .pacman > div:nth-child(2) {
	width: 0px;
	height: 0px;
	border-right: 25px solid transparent;
	border-top: 25px solid #fff;
	border-left: 25px solid #fff;
	border-bottom: 25px solid #fff;
	border-radius: 25px;
	animation: rotate_pacman_half_down 0.5s 0s infinite;
	margin-top: -50px;
	position: relative;
	left: -30px;
}
#loading .pacman > div:nth-child(3),
#loading .pacman > div:nth-child(4),
#loading .pacman > div:nth-child(5),
#loading .pacman > div:nth-child(6) {
	background-color: #fff;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	margin: 2px;
	width: 10px;
	height: 10px;
	position: absolute;
	transform: translate(0, -6.25px);
	top: 25px;
	left: 70px;
}

@keyframes rotate_pacman_half_up {
  0% { transform: rotate(270deg); }
  50% { transform: rotate(360deg); }
  100% { transform: rotate(270deg); }
}
@keyframes rotate_pacman_half_down {
  0% { transform: rotate(90deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(90deg); }
}
@keyframes pacman-balls {
  75% { opacity: 0.7; }
  100% { transform: translate(-100px, -6.25px); }
}

/**
 * #contents : メインエリア
 */
main > div {
	position: relative;
	box-sizing: border-box;
	min-height: 100%;
	flex-grow: 1;
}
main #contents {
	box-sizing: border-box;
	width: calc(100vw - 60px);
	max-height: 100%;
	position: relative;
	margin-left: 60px;
	padding: 40px 3% 0 3%;
	overflow: auto; /*画面のスクロール 可否 要検証*/
	overflow-x: hidden;
	z-index: 1;
}
main #contents > h2.ttl,
main #body > h2.ttl {
	line-height: 1;
	font-size: 2.4rem;
	font-weight: bold;
}
main #contents > h2.ttl .batch_no b {
	margin-left: 0.5em;
	font-size: 1.4rem;
}
main #contents > .btn_back,
main #contents > .btn_workbench,
main #contents > .btn_arxive {
	position: absolute;
	top: 38px;
	left: calc(3% + 10px);
	padding: 3px 10px;
	background: #555;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	font-size: 1.6rem;
	color: #fff;
	will-change: opacity;
}
main #contents > .btn_back::before,
main #contents > .btn_workbench::before,
main #contents > .btn_arxive::before {
	display: block;
	position: absolute;
	top: 0;
	left: -11.5px;
	width: 12px;
	height: 100%;
	background: url('../img/icon_back.png') no-repeat center center / 100%;
	content: '';
}
main #contents > .btn_back:hover,
main #contents > .btn_workbench:hover,
main #contents > .btn_arxive:hover {
	opacity: 0.5;
}
main #contents > .btn_back + h2.ttl {
	margin-left: 85px;
}
main #contents > .btn_workbench + h2.ttl {
	margin-left: 155px;
}
main #contents > .btn_arxive + h2.ttl {
	margin-left: 185px;
}
main #contents > .box {
	box-sizing: border-box;
	background: #222;
	padding: 30px;
	border-radius: 10px;
}
main #contents > h2.ttl + .box {
	margin-top: 40px;
}
main #contents > .box th,
main #contents > .box td {
	padding: 5px;
}
main #contents > .box th {
	white-space: nowrap;
}
main #contents > .box table a {
	text-decoration: underline;
	color: #B17DFF;
}
main #contents > .box .btns {
	margin-top: 3em;
	text-align: right;
}
@media screen and (max-width: 1024px) {
	main #contents {
		margin-left: 0;
		padding: 30px 15px 0px 75px;
		width: 100vw;
		max-height: calc(100vh - 60px);
	}
	main #contents > .btn_back,
	main #contents > .btn_workbench {
		top: 28px;
		left: 90px;
	}
	main #contents > h2.ttl + .box {
		margin-top: 20px;
	}
}

/**
 * main .hovers : 画面下
 */
main .tab {
	position: absolute;
	top: 10px;
	right: 0px;
	width: 70px;
	height: 70px;
	background: #6700FF no-repeat center center / 30px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	transition: opacity 0.3s;
	cursor: pointer;
	z-index: 100;
}
main .tab:hover {
	background-color: #B17DFF;
}
main .tab.log {
	background-image: url('../img/icon_event.svg');
}
main .tab.inspect {
	background-image: url('../img/icon_check.svg');
}
main .tab.comment {
	background-image: url('../img/icon_comment.svg');
}
main .tab.comment.act::before {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 16px;
	height: 16px;
	background: #f40000;
	border-radius: 100px;
	content: '';
}
main .tab.loss {
	background-image: url('../img/icon_loss.svg');
}
@media screen and (max-width: 1024px) {
	main .tab {
		width: 50px;
		height: 50px;
		background-size: 23px;
	}
	main .tab.comment.act::before {
		top: 8px;
		right: 8px;
		width: 12px;
		height: 12px;
	}
}

main .hovers {
	box-sizing: border-box;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	max-height: 440px;
	background-color: #222;
	padding: 0 3% 40px 3%;
	transform: translateY(100%);
	transition: transform 0.2s;
	z-index: 2000;
}
main .hovers.act {
	box-shadow: 5px -15px 15px rgba(0,0,0,0.3);
	transform: translateY(0%);
	transition: transform 0.4s;
}
main .hovers .btn_close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 21px;
	height: 21px;
	cursor: pointer;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
main .hovers .btn_close:hover {
	transform: rotate(180deg);
}
main .hovers .btn_close::before,
main .hovers .btn_close::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 3px;
	margin: auto;
	background-color: #fff;
	content: '';
}
main .hovers .btn_close::before {
	transform: rotate(-45deg);
}
main .hovers .btn_close::after {
	transform: rotate(45deg);
}
main .hovers .head {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
	font-size: 1.8rem;
	font-weight: bold;
}
main .hovers .head ul {
	display: flex;
	font-size: 1.4rem;
	font-weight: normal;
}
main .hovers .head li {
	margin-right: 1.5em;
}
main .hovers .list {
	max-height: 355px;
	overflow: auto;
}
main .hovers .list table {
	width: 100%;
}
main .hovers .list thead {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1;
}
main .hovers .list th,
main .hovers .list td {
	padding: 19px 10px;
}
main .hovers .list th.time,
main .hovers .list td.time {
	width: 200px;
}
main .hovers .list th:first-child,
main .hovers .list td:first-child {
	padding-left: 20px;
}
main .hovers .list th {
	background-color: #444;
}
main .hovers .list td {
	background-color: #333;
	border-top: solid 1px #222;
	cursor: pointer;
}
main .hovers .list td.warning {
	background-color: #7E0000 !important;
}
main .hovers .list td.caution {
	background-color: #00875E !important;
}
/*main .hovers .list tr:hover td {
	background-color: #4D3E65;
}*/

main #log.hovers h2 {
	padding-left: 30px;
	background: url('../img/icon_event.svg') no-repeat left center / 1em auto;
}
main #loss.hovers h2 {
	padding-left: 30px;
	background: url('../img/icon_loss.svg') no-repeat left center / 1em auto;
}
main #log.hovers .list th:nth-child(2),
main #log.hovers .list td:nth-child(2) {
	width: 80px;
	text-align: center;
}

main #comment .btns {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 20px 0;
}
main #comment .btns > div:nth-child(n+2) {
	margin-left: 2em;
}
main #comment .btns label {
	margin: 0 1.5em 1em 0;
}
main #comment .list {
	max-height: 350px;
}


/**
 * login : ログイン画面　
 */
 .login {
	height: 100vh;
	background-color:rgba(0,0,0,0);
	/**
	background: url('../img/bg0.jpg') no-repeat center center / cover;
	*/
}
#login {
	position: absolute;
	top: calc(50% - 40px);
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(34, 34, 34, 0.4);
	border-radius: 20px;
	padding: 90px 120px 70px 120px;
	text-align: center;
}
#login label {
	display: none;
}
#login h1 {
	margin-bottom: 70px;
	color: #B17DFF;
}
#login input[type="text"],
#login input[type="password"] {
	display: block;
	padding: 14px 15px;
	margin-bottom: 25px;
	min-width: 400px;
	background-color: #DDD;
	color: #000;
}
#login input[type="submit"] {
	padding: 14px 15px;
	margin-top: 25px;
	min-width: 400px;
	background-color: #6700FF;
}
#login input[type="submit"]:hover {
	background-color: #B17DFF;
}
#login a {
	display: block;
	margin-top: 30px;
	text-decoration: underline;
	color: #B17DFF;
}

/**
 * plotly : グラフ
 */
svg .legend .traces:hover > * {
	opacity: 0.5 !important;
}


/**
 * mypage : マイページ
 */
.mypage #contents h3 {
	margin-bottom: 1em;
	font-weight: bold;
	font-size: 1.6rem;
}
.mypage #contents .profile {
	display: inline-flex;
	margin-top: 40px;
	padding: 20px;
	background-color: #222;
	border-radius: 4px;
}
.mypage #contents .profile p {
	line-height: 2.1;
	padding-right: 4em;
}
.mypage #contents .profile .btns .btn:nth-child(n+2)  {
	margin-top: 1em;
}
.mypage #contents .btn_photo {
	padding-left: 50px;
	background-image: url('../img/icon_photo.svg');
	background-repeat: no-repeat;
	background-position: 20px center;
	background-size: 1.5em auto;
}
.mypage #contents .btn_password {
	padding-left: 50px;
	background-image: url('../img/icon_revise.svg');
	background-repeat: no-repeat;
	background-position: 20px center;
	background-size: 1.5em auto;
}
.mypage #contents .favorite > div {
	margin-top: 40px;
}
.mypage #contents .favorite > div > h3 {
	position: relative;
	padding: 15px 25px;
	background-color: #333;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	cursor: pointer;
}
.mypage #contents .favorite > div > h3::after {
	position: absolute;
	top: 0;
	bottom: 6px;
	right: 20px;
	width: 12px;
	height: 12px;
	margin: auto;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(135deg);
	content: '';
}
.mypage #contents .favorite > div > h3.close::after {
	transform: rotate(-45deg);
	bottom: -2px;
}
.mypage #contents .btn_mypage,
.mypage #contents .btn_favorite {
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	background: no-repeat center center / contain;
	opacity: 0.3;
}
.mypage #contents .btn_mypage:hover,
.mypage #contents .btn_favorite:hover {
	background-color: transparent !important;
}
.mypage #contents .btn_favorite {
	background-image: url('../img/icon_favorite.svg');
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
.mypage #contents .btn_mypage.on {
	opacity: 1;
	background-image: url('../img/icon_mypage_on.svg');
}
.mypage #contents .btn_favorite.on {
	opacity: 1;
	background-image: url('../img/icon_favorite_on.svg');
	transform: rotate(360deg);
}
.mypage #contents .subbatch ul {
	display: flex;
	margin: -10px;
}
.mypage #contents .subbatch li {
	box-sizing: border-box;
	position: relative;
	width: 33.33%;
	padding: 10px;
}
.mypage #contents .subbatch li > a,
.mypage #contents .subbatch li > span {
	display: block;
	position: relative;
	padding: 10px 20px 14px;
	background-color: #222;
	border-radius: 4px;
}
.mypage #contents .subbatch li > a:hover {
	background-color: #333;
}
.mypage #contents .subbatch .btn_mypage {
	right: 40px;
	background-image: url('../img/icon_mypage.svg');
}
.mypage #contents .subbatch p {
	padding-right: 50px;
	line-height: 1.8;
}
.mypage #contents .subbatch p + p {
	margin-top: 0.5em;
	line-height: 1;
}
.mypage #contents .subbatch .term {
	padding: 0;
	font-size: 2rem;
}
.mypage #contents .log {
	margin-top: 40px;
	padding-bottom: 60px;
}

.mypage #contents .log .header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 20px;
}
.mypage #contents .log .head {
	margin-bottom: 20px;
}
.mypage #contents .log .filter {
	margin-top: 0;
}
.mypage #contents .log .head .operation h4 {
	margin-right: 1.5em;
}
.mypage #contents .log .head .operation label {
	margin-right: 1em;
}
.mypage #contents .log .list {
	max-height: 600px;
	overflow: auto;
}

.mypage .modal.password th,
.mypage .modal.password td,
.mypage .modal.photo th,
.mypage .modal.photo td {
	padding-top: 8px;
	padding-bottom: 8px;
	text-align: left;
}
.mypage .modal.password th,
.mypage .modal.photo th {
	padding-right: 1em;
}
@media screen and (max-width: 1024px) {
	.mypage #contents .profile,
	.mypage #contents .favorite > div,
	.mypage #contents .log {
		margin-top: 20px;
	}
	.mypage #contents .subbatch li {
		width: 50%;
	}
}

/**
 * 札掛モーダル
 */
.modal.tag label.tag::after {
	display: inline-block;
	width: 17px;
	height: 17px;
	border-radius: 100px;
	background: url('../img/icon_tag.svg') #888 no-repeat center center / contain;
	margin: auto auto 2px 5px;
	opacity: 0.7;
	vertical-align: middle;
	content: '';
}
.modal.tag .btn_delete,
.modal.tag .btn_ok {
	min-width: 100px;
}

.btn_tag {
	background: #333 url('../img/icon_arrow_b.svg') no-repeat right 10px center / 7px auto;
	padding: 10px 30px 10px 10px;
	vertical-align: middle;
	text-align: left;
	font-size: 1.2rem;
	cursor: pointer;
}
.btn_tag:hover {
	background-color: #444;
}
.btn_tag::before {
	display: inline-block;
	width: 17px;
	height: 17px;
	border-radius: 100px;
	background: #888 url('../img/icon_tag.svg') no-repeat center center / contain;
	margin: auto 0.6em auto auto;
	vertical-align: middle;
	opacity: 0.7;
	content: '';
}

/**
 * observe : 稼働監視画面
 */
.observe #contents {
	display: flex;
	padding: 0;
	min-height: 100%;
	overflow: hidden;
}
.observe #room {
	box-sizing: border-box;
	width: 15%;
	max-width: 190px;
	max-height: 100%;
	min-width: 110px;
	background-color: #222;
	padding: 0;
}
.observe #room .inner {
	overflow: auto;
}
.observe #room h2 {
	padding: 30px 20px 20px 20px;
	font-size: 2.4rem;
	font-weight: bold;
}
.observe #room ul {
	padding: 0 0 30px 20px;
}
.observe #room li {
	position: relative;
	padding: 8px 20px 8px 10px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	color: #bbb;
	cursor: pointer;
}
.observe #room li + li {
	margin-top: 10px;
}
.observe #room li.act,
.observe #room li:hover {
	background-color: #111;
	color: #fff;
}
.observe #room li.warn {
	color: #D54200;
}
.observe #body {
	position: relative;
	flex-grow: 1;
	padding: 0;
	width: calc(100vw - 670px);
}
.observe #body h2.ttl {
	padding: 40px 4% 30px 4%;
}
.observe #body h2.ttl .btn_tag {
	visibility: hidden;
	pointer-events: none;
	margin-left: 2em;
}
.observe #body h2.tag .btn_tag {
	visibility: visible;
	pointer-events: all;
}
.observe #body .inner {
	padding: 0 4%;
	overflow: auto;
}
.observe #body ul,
.mypage #contents .machine ul {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	margin: -10px;
	padding-bottom: 30px;
}
.mypage #contents .machine ul {
	padding-bottom: 0;
	margin: -8px;
}
.observe #body li,
.mypage #contents .machine li {
	box-sizing: border-box;
	position: relative;
	width: 25%;
	padding: 10px;
}
.observe #body li a,
.observe #body li span,
.mypage #contents .machine li a,
.mypage #contents .machine li span {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background-color: #222;
	border-radius: 4px;
	font-size: 1.6rem;
	color: #eee;
}
.observe #body li a:hover,
.observe #body li span:hover,
.mypage #contents .machine li a:hover,
.mypage #contents .machine li span:hover {
	background-color: #333;
}
.observe #body li .btn_favorite,
.mypage #contents .machine li .btn_favorite {
	display: inline-block;
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	padding: 0;
	background: no-repeat center center / contain;
	opacity: 0.3;
	cursor: pointer;
}
.observe #body li .btn_favorite,
.mypage #contents .machine li .btn_favorite {
	background-image: url('../img/icon_favorite.svg');
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
.observe #body li .btn_favorite.on,
.mypage #contents .machine li .btn_favorite.on {
	opacity: 1;
	background-image: url('../img/icon_favorite_on.svg');
	transform: rotate(360deg);
}
.observe #body li figure,
.mypage #contents .machine li figure {
	position: relative;
	width: 25%;
	background: no-repeat center top / contain;
	text-align: center;
}
.observe #body li.kind1 figure,
.mypage #contents .machine li.kind1 figure {
	background-image: url('../img/icon_machine1.svg');
}
.observe #body li.kind2 figure,
.mypage #contents .machine li.kind2 figure {
	background-image: url('../img/icon_machine2.svg');
}
.observe #body li.kind3 figure,
.mypage #contents .machine li.kind3 figure {
	background-image: url('../img/icon_machine3.svg');
}
.observe #body li.kind4 figure,
.mypage #contents .machine li.kind4 figure {
	background-image: url('../img/icon_machine4.svg');
}
.observe #body li.kind5 figure,
.mypage #contents .machine li.kind5 figure {
	background-image: url('../img/icon_machine5.svg');
}
.observe #body li.kind6 figure,
.mypage #contents .machine li.kind6 figure {
	background-image: url('../img/icon_machine6.svg');
}
.observe #body li.kind7 figure,
.mypage #contents .machine li.kind7 figure {
	background-image: url('../img/icon_machine7.svg');
}
.observe #body li.kind8 figure,
.mypage #contents .machine li.kind8 figure {
	background-image: url('../img/icon_machine8.svg');
}
.observe #body li.kind9 figure,
.mypage #contents .machine li.kind9 figure {
	background-image: url('../img/icon_machine9.svg');
}
.observe #body li figure::before,
.mypage #contents .machine li figure::before {
	display: block;
	padding-top: 80%;
	content: '';
}
.observe #body li figure figcaption,
.mypage #contents .machine li figure figcaption {
	font-size: 0.8em;
}
.observe #body li.ftp figure::after,
.mypage #contents .machine li.ftp figure::after {
	position: absolute;
	width: 18px;
	height: 18px;
	top: 0;
	right: 0;
	border-radius: 100px;
	background: #B17DFF url('../img/icon_ftp.svg') no-repeat center center / 50%;
	content: '';
}
.observe #body li .txt,
.mypage #contents .machine li .txt {
	box-sizing: border-box;
	width: 65%;
}
.observe #body li .status,
.mypage #contents .machine li .status {
	display: flex;
	margin-top: 1em;
}
.observe #body li .status b,
.mypage #contents .machine li .status b {
	margin-right: 1.5em;
	text-align: center;
	font-size: 1.4rem;
}
.observe #body li .status b::before,
.mypage #contents .machine li .status b::before {
	display: block;
	width: 1.2em;
	height: 1.2em;
	border-radius: 100px;
	background: #888 no-repeat center center / contain;
	margin: auto auto 0.5em auto;
	opacity: 0.7;
	content: '';
}
.observe #body li .status b.isrun::before,
.mypage #contents .machine li .status b.isrun::before {
	background-image: url('../img/icon_run.svg');
}
.observe #body li .status b.isconnect::before,
.mypage #contents .machine li .status b.isconnect::before {
	background-image: url('../img/icon_connect.svg');
}
.observe #body li .status b.iswarn::before,
.mypage #contents .machine li .status b.iswarn::before {
	background-image: url('../img/icon_warn.svg');
}
.observe #body li .status b.istaged::before,
.mypage #contents .machine li .status b.istaged::before {
	background-image: url('../img/icon_tag.svg');
}
.observe #body li.run .status b.isrun::before,
.mypage #contents .machine li.run .status b.isrun::before {
	background-color: #00C589;
	opacity: 1;
}
.observe #body li .status b.isconnect::before,
.mypage #contents .machine li .status b.isconnect::before {
	background-color: #D54200;
	opacity: 1;
}
.observe #body li.connect .status b.isconnect::before,
.mypage #contents .machine li.connect .status b.isconnect::before {
	background-color: #888;
	opacity: 0.7;
}
.observe #body li.warn .status b.iswarn::before,
.mypage #contents .machine li.warn .status b.iswarn::before {
	background-color: #D54200;
	opacity: 1;
}
.btn_tag.tag0 {
	color: #777 !important;
}
.modal.tag label.tag1::after,
.btn_tag.tag1::before,
.observe #body li.tag1 .status b.istaged::before,
.mypage #contents .tag1 li.warn .status b.istaged::before {
	background-color: #D5A70F;
	opacity: 1;
}
.modal.tag label.tag2::after,
.btn_tag.tag2::before,
.observe #body li.tag2 .status b.istaged::before,
.mypage #contents .tag2 li.warn .status b.istaged::before {
	background-color: #C81B1B;
	opacity: 1;
}
@media screen and (max-width: 1440px) {
	.observe #body li {
		width: 33.33%;
	}
}
@media screen and (max-width: 1024px) {
	.observe #contents {
		padding-left: 60px;
	}
	.observe #room h2 {
		padding: 30px 10px 10px 10px;
	}
	.observe #room ul {
		padding: 0 0 30px 10px;
	}
	.observe #body .inner,
	.observe #body h2.ttl {
		padding-left: 15px;
		padding-right: 15px;
	}
	.observe #body li {
		width: 33.33%;
	}
	.mypage #contents .machine li {
		width: 50%;
	}
	.mypage #contents .subbatch .term {
		font-size: 1.6rem;
	}
}

/*
 * observe_detail : 稼働監視 詳細画面
 */
.observe_detail {
	height: 100%;
}
.observe_detail #event {
	min-width: 280px;
}
.observe_detail #contents > .btn_back {
	top: 20px;
	left: 40px;
}
.observe_detail #contents {
	padding-left: 0;
	padding-right: 0;
	overflow: hidden;
}
.observe_detail #contents .inner {
	box-sizing: border-box;
	margin-top: 30px;
	padding: 0 3%;
	overflow: auto;
	overflow-x: hidden;
}
.observe_detail #contents .inner > *:last-child {
	margin-bottom: 40px;
}
.observe_detail #contents .inner .head {
	display: flex;
	justify-content: flex-start;
	background-color: #222;
	border-radius: 4px;
}
.observe_detail #contents .inner .head > div {
	display: flex;
	align-items: center;
}
.observe_detail #contents .inner .head > div:nth-child(n+2) {
	border-left: solid 1px #111;
}
.observe_detail #contents .inner .head > div:nth-child(1) {
	padding: 20px 40px 20px 10px;
}
.observe_detail #contents .inner .head h1 {
	font-size: 3.8rem;
}
.observe_detail #contents .inner .head h2 {
	font-size: 1.6rem;
}
.observe_detail #contents .inner .head figure {
	position: relative;
	width: 80px;
	margin-right: 1em;
	background: no-repeat center center / contain;
}
.observe_detail #contents .inner .head figure::before {
	display: block;
	padding-top: 85%;
	content: '';
}
.observe_detail #contents .head .ftp figure::after {
	position: absolute;
	width: 18px;
	height: 18px;
	top: 0;
	right: 0;
	border-radius: 100px;
	background: #B17DFF url('../img/icon_ftp.svg') no-repeat center center / 50%;
	content: '';
}
.observe_detail #contents .head .kind1 figure {
	background-image: url('../img/icon_machine1.svg');
}
.observe_detail #contents .head .kind2 figure {
	background-image: url('../img/icon_machine2.svg');
}
.observe_detail #contents .head .kind3 figure {
	background-image: url('../img/icon_machine3.svg');
}
.observe_detail #contents .head .kind4 figure {
	background-image: url('../img/icon_machine4.svg');
}
.observe_detail #contents .head .kind5 figure {
	background-image: url('../img/icon_machine5.svg');
}
.observe_detail #contents .head .kind6 figure {
	background-image: url('../img/icon_machine6.svg');
}
.observe_detail #contents .head .kind7 figure {
	background-image: url('../img/icon_machine7.svg');
}
.observe_detail #contents .head .kind8 figure {
	background-image: url('../img/icon_machine8.svg');
}
.observe_detail #contents .head .kind9 figure {
	background-image: url('../img/icon_machine9.svg');
}
.observe_detail #contents .inner .head .state {
	margin-left: 1em;
}
.observe_detail #contents .inner .head .status {
	display: flex;
}
.observe_detail #contents .head .status b {
	display: block;
	margin: 0.5em 0;
}
.observe_detail #contents .head .status b + b {
	margin-left: 1em;
}
.observe_detail #contents .head .status b::before {
	display: inline-block;
	width: 1em;
	height: 1em;
	border-radius: 100px;
	background: #888 no-repeat center center / contain;
	margin: auto 0.5em auto auto;
	opacity: 0.7;
	content: '';
}
.observe_detail #contents .head .status b.isrun::before {
	background-image: url('../img/icon_run.svg');
}
.observe_detail #contents .head .status b.isconnect::before {
	background-image: url('../img/icon_connect.svg');
}
.observe_detail #contents .head .status b.iswarn::before {
	background-image: url('../img/icon_warn.svg');
}
.observe_detail #contents .run .status b.isrun::before {
	background-color: #00C589;
	opacity: 1;
}
.observe_detail #contents .status b.isconnect::before {
	background-color: #D54200;
	opacity: 1;
}
.observe_detail #contents .connect .status b.isconnect::before {
	background-color: #888;
	opacity: 0.7;
}
.observe_detail #contents .warn .status b.iswarn::before {
	background-color: #D54200;
	opacity: 1;
}
.observe_detail #contents .head .info {
	justify-content:flex-start;
	padding: 30px;
	flex-grow: 1;
}
.observe_detail #contents .head .info p {
	font-size: 1.6rem;
	padding: 0 5% 0 0;
}
.observe_detail #contents .head .info p:last-child {
	padding: 0;
}
.observe_detail #contents .head .info span {
	display: block;
	margin-bottom: 1em;
	font-size: 1.2rem;
}
.observe_detail #contents .instant,
.observe_detail #contents .trend {
	box-sizing: border-box;
	margin-top: 40px;
}

.observe_detail #contents .instant ul {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.observe_detail #contents .instant li {
	box-sizing: border-box;
	width: 33.33%;
	padding: 10px;
}
.observe_detail #contents .instant li > div {
	box-sizing: border-box;
	height: 100%;
	background-color: #222;
	padding: 20px 25px;
	border-radius: 4px;
}
.observe_detail #contents .instant li .label {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 2.8rem;
	line-height: 1;
}
.observe_detail #contents .instant li .label span {
	display: inline-block;
	line-height: 1;
}
.observe_detail #contents .instant li .label i {
	line-height: 1;
	font-size: 1.9rem;
}
.observe_detail #contents .instant li .label b {
	line-height: 1;
	font-size: 2.4rem;
}
.observe_detail #contents .instant .graph {
	margin-top: 1.5em;
}
.observe_detail #contents .instant .graph {
	display: flex;
}
.observe_detail #contents .instant .graph .bar {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 20px;
	border-left: solid 1px #777;
	border-right: solid 1px #777;
}
.observe_detail #contents .instant .graph .bar::before,
.observe_detail #contents .instant .graph .bar::after,
.observe_detail #contents .instant .graph .bar > div::before {
	position: absolute;
	display: block;
	width: 1px;
	height: 100%;
	background-color: #333;
	content: '';
}
.observe_detail #contents .instant .graph .bar::before {
	left: 25%;
}
.observe_detail #contents .instant .graph .bar::after {
	left: 75%;
}
.observe_detail #contents .instant .graph .bar > div::before {
	left: 50%;
}
.observe_detail #contents .instant .graph .bar div div {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 10px;
	margin: auto;
	background-color: rgba(255,255,255,0.08);
	z-index: 2;
}
.observe_detail #contents .instant .graph .bar b {
	display: block;
	width: 58%;
	height: 100%;
	background-color: #B17DFF;
}

.observe_detail #contents .trend {
	position: relative;
	background-color: #222;
	padding: 30px;
	border-radius: 4px;
}
.observe_detail #contents .trend #graph {
	width: 100%;
	height: 100%;
	height: 600px;
}
.observe_detail #contents .trend .btn_switch {
	position: absolute;
	top: 68px;
	right: 85px;
}
.observe_detail #contents .trend .toggle {
	position: absolute;
	top: 30px;
	left: 30px;
}
.observe_detail .hovers .list tr:hover td {
	background-color: #4D3E65;
}
@media screen and (max-width: 1024px) {
	.observe_detail #contents .instant,
	.observe_detail #contents .trend {
		margin-top: 20px;
	}
	.observe_detail #contents {
		padding-left: 60px;
	}
	.observe_detail #contents .inner {
		padding: 0 15px;
	}
	.observe_detail #contents > .btn_back {
		left: 90px;
	}

	.observe_detail #contents .inner .head > div {
		flex-wrap: wrap;
	}
	.observe_detail #contents .inner .head > div:nth-child(1) {
		width: 24%;
		padding: 10px;
	}
	.observe_detail #contents .inner .head > div .state {
		margin: 0;
	}
}

/**
 * batch_list : バッチ一覧画面
 * audit_trail : 操作変更履歴画面
 * event_alert_log : イベント・警報履歴画面
 */
.mypage #contents .filter,
.batch_list #contents .head .filter,
.middle #contents .head .filter,
.audit_trail #contents .head .filter,
.event_alert_log #contents .head .filter,
.database #contents .head .filter,
.master #contents .head .filter,
.system #contents .head .filter,
.arxive #contents .head .filter {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	background-color: #222;
	border-radius: 4px;
	margin-top: 40px;
	padding: 0 20px;
}
.mypage #contents .filter > div,
.batch_list #contents .head .filter > div,
.middle #contents .head .filter > div,
.audit_trail #contents .head .filter > div,
.event_alert_log #contents .head .filter > div,
.database #contents .head .filter > div,
.master #contents .head .filter > div,
.system #contents .head .filter > div,
.arxive #contents .head .filter > div {
	display: flex;
	align-items: center;
	padding: 4px 0;
	margin-right: 1.5em;
}
.mypage #contents .filter > div:last-child,
.batch_list #contents .head .filter > div:last-child,
.middle #contents .head .filter > div:last-child,
.audit_trail #contents .head .filter > div:last-child,
.event_alert_log #contents .head .filter > div:last-child,
.database #contents .head .filter > div:last-child,
.master #contents .head .filter > div:last-child,
.system #contents .head .filter > div:last-child,
.arxive #contents .head .filter > div:last-child {
	margin-right: 0;
}
.mypage #contents .filter select,
.batch_list #contents .head .filter select,
.middle #contents .head .filter select,
.audit_trail #contents .head .filter select,
.event_alert_log #contents .head .filter select,
.database #contents .head .filter select,
.master #contents .head .filter select,
.system #contents .head .filter select,
.arxive #contents .head .filter select {
	margin-left: 1em;
}
.mypage #contents .btn_filter,
.batch_list #contents .head .btn_filter,
.middle #contents .head .btn_filter,
.audit_trail #contents .head .btn_filter,
.event_alert_log #contents .head .btn_filter,
.database #contents .head .btn_filter,
.master #contents .head .btn_filter,
.system #contents .head .btn_filter,
.arxive #contents .head .btn_filter {
	min-width: 80px;
	height: auto;
	padding: 10px;
	font-size: 1.4rem;
	color: #fff;
}
.batch_list #contents .list,
.middle #contents .list,
.middle .detail .list,
.audit_trail #contents .list,
.event_alert_log #contents .list,
.hash_compare #contents .list,
.arxive #contents .list {
	box-sizing: border-box;
	margin-top: 40px;
	border-radius: 4px;
	overflow: auto;
	overflow-x: hidden;
}
.mypage #contents table,
.batch_list #contents table,
.middle #contents table,
.middle .detail table,
.audit_trail #contents table,
.event_alert_log #contents table,
.hash_compare #contents table,
.arxive #contents table {
	width: 100%;
}
.mypage #contents thead,
.batch_list #contents thead,
.middle #contents thead,
.middle .detail thead,
.audit_trail #contents thead,
.event_alert_log #contents thead,
.hash_compare #contents thead,
.arxive #contents thead {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 5;
}
.mypage #contents thead th:first-child,
.batch_list #contents thead th:first-child,
.middle #contents thead th:first-child,
.middle .detail thead th:first-child,
.audit_trail #contents thead th:first-child,
.event_alert_log #contents thead th:first-child,
.hash_compare #contents thead th:first-child,
.arxive #contents thead th:first-child {
	border-top-left-radius: 4px;
}
.mypage #contents thead th:last-child,
.batch_list #contents thead th:last-child,
.middle #contents thead th:last-child,
.middle .detail thead th:last-child,
.audit_trail #contents thead th:last-child,
.event_alert_log #contents thead th:last-child,
.hash_compare #contents thead th:last-child,
.arxive #contents thead th:last-child {
	border-top-right-radius: 4px;
}
.mypage #contents thead {
	position: static;
}
.mypage #contents th,
.mypage #contents td,
.batch_list #contents th,
.batch_list #contents td,
.middle #contents th,
.middle #contents td,
.middle .detail th,
.middle .detail td,
.audit_trail #contents th,
.audit_trail #contents td,
.event_alert_log #contents th,
.event_alert_log #contents td,
.hash_compare #contents th,
.hash_compare #contents td,
.arxive #contents th,
.arxive #contents td {
	padding: 19px 5px;
	vertical-align: middle;
	text-align: left;
}
.mypage #contents th,
.batch_list #contents th,
.middle #contents th,
.audit_trail #contents th,
.event_alert_log #contents th,
.hash_compare #contents th,
.arxive #contents th {
	background-color: #333;
}
.mypage #contents td,
.batch_list #contents td,
.middle #contents td,
.audit_trail #contents td,
.event_alert_log #contents td,
.hash_compare #contents td,
.arxive #contents td {
	background-color: #222;
	border-top: solid 1px #111;
}
.mypage #contents tr > *:nth-child(1),
.middle #contents tr > *:nth-child(1),
.audit_trail #contents tr > *:nth-child(1),
.event_alert_log #contents tr > *:nth-child(1),
.hash_compare #contents tr > *:nth-child(1),
.arxive #contents tr > *:nth-child(1) {
	padding-left: 20px;
}

@media screen and (max-width: 1024px) {
	.mypage #contents .filter,
	.batch_list #contents .head .filter,
	.middle #contents .head .filter,
	.audit_trail #contents .head .filter,
	.event_alert_log #contents .head .filter,
	.database #contents .head .filter,
	.system #contents .head .filter,
	
	.batch_list #contents .list,
	.middle #contents .list,
	.middle .detail .list,
	.audit_trail #contents .list,
	.event_alert_log #contents .list,
	.hash_compare #contents .list,
	.arxive #contents .list {
		margin-top: 20px;
	}
	.mypage #contents .filter > div,
	.batch_list #contents .head .filter > div,
	.middle #contents .head .filter > div,
	.audit_trail #contents .head .filter > div,
	.event_alert_log #contents .head .filter > div,
	.database #contents .head .filter > div,
	.master #contents .head .filter > div,
	.system #contents .head .filter > div {
		flex-wrap: wrap;
	}

	#contents .list {
		width: 100%;
		max-width: calc(100vw - 90px);
		overflow: auto;
		overflow-x: auto !important;
	}
	#contents .list th,
	#contents .list td {
		white-space: nowrap;
	}
}
/**
 * .batch_list : バッチ一覧
 */
.batch_list #contents .head > div:first-child {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.batch_list #contents .head > div:first-child .btn {
	min-width: 265px;
	height: 100%;
	padding: 17px 20px;
	font-size: 1.8rem;
}
.batch_list #contents .head > div:first-child .btn span {
	padding-left: 30px;
	background: url('../img/icon_batchlist.svg') no-repeat left center / 1em auto;
}
.batch_list #contents .head .btn_archive {
	min-width: 0 !important;
	padding: 9px 30px !important;
}
.batch_list #contents .head .btn_archive span {
	display: block;
	padding-left: 20px;
	background: url('../img/icon_batchlist.svg') no-repeat left center / 1em auto;
	font-size: 1.4rem;
}
.batch_list #contents .head .flex {
	display: flex;
	align-items: flex-start;
	margin-top: 40px;
}
.batch_list #contents .head .filter {
	margin-top: 0;
}
.batch_list #contents .head .flex .paging {
	margin-left: 40px;
}
.batch_list #contents th,
.batch_list #contents td {
	text-align: center;
}
.batch_list #contents td {
	cursor: pointer;
}
.batch_list #contents td:nth-child(1) span {
	display: inline-block;
	position: relative;
	padding-right: 25px;
}
.batch_list #contents td:nth-child(1) span::after {
	display: inline-block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 20px;
	height: 20px;
	background: url('../img/icon_check.svg') no-repeat center center / contain;
	border-radius: 100px;
	margin: auto;
	opacity: 0.2;
	content: '';
}
.batch_list #contents .dblcheck td:nth-child(1) span::after {
	background-image: url('../img/icon_check_on.svg');
	background-color: #fff;
	opacity: 1;
}
.batch_list #contents .open td:nth-child(4) {
	background-color: #56921B;
	text-transform: uppercase;
}
.batch_list #contents .close td {
	color: #888;
}
.batch_list #contents tr:hover td {
	background-color: rgba(177,125,255,0.3) !important;
}
@media screen and (max-width: 1024px) {
	.batch_list #contents .head > div:first-child .btn {
		min-width: 120px;
		padding: 7px 20px;
		font-size: 1.5rem;
	}
	.batch_list #contents .head > div:first-child .btn span {
		padding-left: 18px;
	}
}
/**
 * .middle : 中間製品一覧
 */
.middle .list .btn_detail {
	background-image: url('../img/icon_batchlist.svg');
}
.middle .list .btn_toggle {
	min-width: 75px;
	margin: -10px 0;
	text-align: right;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
	background-color: #56921B;
	cursor: pointer;
}
.middle .list .btn_toggle.off {
	background-color: #333333;
	color: #666 !important;
}
.middle .list .btn_toggle:hover {
	background-color: #7FC13E;
	color: #fff !important;
}
.middle .detail .tablebox {
	max-height: 348px;
	overflow: auto;
	overflow-x: hidden;
}
.middle .detail th {
	background-color: #444;
}
.middle .detail td {
	background-color: #333;
	border-top: solid 1px #222;
}
.middle .detail th,
.middle .detail td {
	padding-left: 15px;
	padding-right: 15px;
	white-space: nowrap;
}
.middle .detail tr:hover td {
	background-color: rgba(177,125,255,0.3) !important;
	cursor: pointer;
}
.middle .detail tr > *:first-child {
	padding-left: 20px;
}
.middle .detail tr > *:last-child {
	padding-right: 20px;
}
.middle .detail tr > *:nth-child(3) {
	text-align: center;
}
.middle .detail tr > *:nth-child(3).open {
	background-color: #56921B !important;
}
.middle .detail .btns {
	margin-top: 1em;
	text-align: right;
}
.middle .modal.status p + p {
	margin-top: 1em;
}
.middle .modal.status h4 {
	margin-bottom: 0.5em;
}
.middle .modal.status textarea {
	width: 420px;
	height: 200px;
	margin: auto;
}
/**
 * .audit_trail : 操作変更履歴
 */
.audit_trail #contents .paging {
	float: none;
	position: absolute;
	right: 3%;
	top: 40px;
}
.audit_trail #contents .head {
	margin-top: 60px;
}
.audit_trail #contents .head .filter .operation h3,
.audit_trail #contents .head .filter .operation label {
	margin-right: 2em;
}
.audit_trail #contents tr > *:nth-child(2),
.audit_trail #contents tr > *:nth-child(3),
.audit_trail #contents tr > *:nth-child(8),
.audit_trail #contents tr > *:nth-child(9),
.audit_trail #contents tr > *:nth-child(10) {
	text-align: center;
}
.audit_trail td.judge0,
.audit_trail td.judge1 {
	background-repeat:no-repeat ;
	background-position: center;
	background-size: 1.4em auto;
}
.audit_trail td.judge0 {
	background-image: url('../img/icon_false.svg');
}
.audit_trail td.judge1 {
	background-image: url('../img/icon_true.svg');
}
/**
 * database : データベース
 * system : システム設定
 */
.system {
	max-height: 100%;
	overflow: auto;
}
.database #contents .head,
.system #contents .head {
	margin-bottom: 40px;
}
.database #contents .head .filter,
.system #contents .head .filter {
	display: block;
	margin-top: 40px;
	padding: 20px 20px 15px 20px;
}
.database #contents .head .filter > div > div,
.system #contents .head .filter > div > div {
	display: flex;
	align-items: center;
	margin: 0.5em 1em 0 0;
}
.database #contents .inner,
.system #contents .inner {
	box-sizing: border-box;
}
.database #contents .inner pre,
.system #contents .inner pre {
	box-sizing: border-box;
	background-color: #222;
	padding: 30px;
	line-height: 1.8;
}
@media screen and (max-width: 1024px) {
	.database #contents .head,
	.system #contents .head {
		margin-bottom: 20px;
	}
	.database #contents .head .filter,
	.system #contents .head .filter {
		margin-top: 20px;
	}
}
/**
 * event_alert_log : イベント・警報履歴
 */
.event_alert_log #contents .paging {
	float: none;
	position: absolute;
	right: 3%;
	top: 40px;
}
.event_alert_log #contents .head .filter {
	margin-top: 70px;
}
@media screen and (max-width: 1024px) {
	.event_alert_log #contents .paging {
		top: 25px;
		right: 15px;
	}
	.event_alert_log #contents .head .filter {
		margin-top: 30px;
	}
}


/**
 * workbench : ワークベンチ
 */
.workbench #contents {
	height: calc(100vh - 80px);
	overflow: hidden;
}
.workbench #contents .inner {
	position: relative;
	margin-top: 40px;
}
.workbench #contents > .btn_back + h2.ttl {
	margin-left: 145px;
}
.workbench #contents .btn_timeline {
	position:absolute;
	top: 23px;
	right: 20%;
	padding: 6px 20px 6px 40px;
	background-image: url('../img/icon_timeline.svg');
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: auto 1em;
}
.workbench #contents .inner > .btns a {
	display: block;
}
.workbench #contents .inner > div,
.workbench .details {
	display: flex;
}
.workbench .head {
	margin-bottom: 5px;
	text-align: center;
}
.workbench .head h3 {
	box-sizing: border-box;
	width: 17.5%;
}
.workbench .head h3 p {
	font-size: 1.1rem;
}
.workbench .head h3 span {
	display: inline-block;
}
.workbench .head h3 .temp {
	color: #D9A600;
}
.workbench .head h3 .remand {
	color: #C81B1B;
}
.workbench .register,
.workbench .approval,
.workbench .details > div:first-child,
.workbench .details > div:last-child {
	position: relative;
	box-sizing: border-box;
	width: 15%;
}
.workbench .register,
.workbench .approval,
.workbench .body {
	box-sizing: border-box;
	overflow: auto;
}
.workbench .register {
	overflow: visible;
}

.workbench .register .info {
	overflow: auto;
	max-height: calc(100vh - 505px);
}
.workbench .head h3:first-child,
.workbench .register,
.workbench .details > div:first-child {
	margin-right: 4%;
}
.workbench .head h3:last-child,
.workbench .approval,
.workbench .details > div:last-child {
	margin-left: 4%;
}
.workbench .approval .btns:last-child {
	margin-top: 150px;
}
.workbench .btn_approval span {
	display: inline-block;
	padding-left: 1.5em;
	background: url('../img/icon_unlock.svg') no-repeat left center / auto 1.2em;
}
.workbench .btn_approval.inact span {
	background-image: url('../img/icon_lock.svg');
}
.workbench .approval .user {
	display: none;
	margin-bottom: 10px;
}
.workbench #contents .approval > .btns:first-child,
.workbench #contents .approval .user + .btns {
	margin-top: 0;
}
.workbench .box {
	box-sizing: border-box;
	background: #222;
	padding: 15px;
	border-radius: 4px;
}
.workbench .box + .box {
	margin-top: 10px;
	word-break: break-all;
}
.workbench .box.user {
	text-align: center;
}
.workbench .box.user figure {
	max-width: 80px;
	background: #333 no-repeat center center / cover;
	border-radius: 100%;
	margin: auto auto 10px auto;
}
.workbench .box.user figure::before {
	display: block;
	padding-top: 100%;
	content: '';
}
.workbench .box.user .none {
	display: none;
}
.workbench .register .user .btns {
	display: flex;
	justify-content: space-between;
	margin-top: 1em !important;
}
.workbench .register .user .btns .btn {
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0 !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40% auto;
	cursor: pointer;
}
.workbench .register .user .btns .btn_info {
	background-image: url('../img/icon_info.svg');
}
.workbench .register .user .btns .btn_edit {
	background-image: url('../img/icon_edit.svg');
}
.workbench .register .user .btns .btn_check {
	background-image: url('../img/icon_check1.svg');
}
.workbench #contents * + .btns,
.workbench .hovers * + .btns {
	margin-top: 1.5em;
}
.workbench #contents .btn,
.workbench .hovers .btn {
	display: block;
	min-width: 0;
}
.workbench #contents * + .btn,
.workbench .hovers * + .btn {
	margin: 10px 0 0 0;
}
.workbench .btns p {
	margin-top: 0.5em;
	font-weight: bold;
	font-size: 1.2rem;
}
.workbench .box.info h3 {
	position: relative;
	padding-right: 40px;
	margin-bottom: 1.5em;
}
.workbench .box.info h3 .btn {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: auto;
	background-image: url('../img/icon_edit.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 50% auto;
	cursor: pointer;
}
.workbench .box.info h3 .btn.dbl_check {
	background-image: url('../img/icon_checked.svg');
	background-size: 70% auto;
}
.workbench .box.info p {
	margin-top: 1em;
	font-weight: bold;
	font-size: 1.2rem;
}
.workbench .box.info p span {
	display: inline-block;
	padding-left: 1em;
	font-weight: normal;
}
.workbench .body,
.workbench .details table {
	width: 70%;
}
.workbench .body table {
	width: 100%;
	margin: 4px 0;
	border-radius: 4px;
	overflow: hidden;
}
.workbench .body table:first-child {
	margin-top: 0;
}
.workbench .body table:first-child {
	margin-top: 0;
}
.workbench .body thead {
	display: block;
	position: relative;
	width: 100%;
	background-color: #222;
	cursor: pointer;
}
.workbench .body thead::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 20px;
	height: 20px;
	background: url('../img/icon_slide.svg') no-repeat center center / contain;
	margin: auto;
	content: '';
}
.workbench .body thead.act::after {
	transform: rotate(180deg);
}
.workbench .body thead th {
	position: relative;
}
.workbench .body tbody {
	display: block;
	width: 100%;
	background-color: #393939;
	overflow: hidden;
}
.workbench .body tr {
	display: flex;
	align-items: stretch;
	width: 100%;
}
.workbench .body th,
.workbench .body td {
	box-sizing: border-box;
	width: 20%;
	border-right: dashed 1px #707070;
	padding: 15px 20px;
	vertical-align: middle;
	font-size: 1.2rem;
}
.workbench .body th:first-child,
.workbench .body td:first-child {
	position: relative;
	border-right: solid 4px #111;
}
.workbench .body tr.intermediate td:first-child::before {
	display: block;
	width: 120%;
	background-color: #6700FF;
	border-radius: 100px;
	margin: -8px auto 2px -10%;
	padding: 1px 0;
	transform-origin: center center;
	transform: scale(0.9);
	text-align: center;
	font-size: 0.9rem;
	content: '中間製品';
}
.workbench .body th:last-child,
.workbench .body td:last-child {
	border-right: none;
}
.workbench .body th:nth-child(n+2) {
	text-align: center;
	line-height: 0.5;
	padding: 20px 5px 0 5px;
	vertical-align: middle;
	font-size: 2.5rem;
	font-weight: bold;
}
.workbench .body thead tr:first-child:hover th {
	background-color: #4D3E65;
}
.workbench .body thead b {
	position: relative;
	display: inline-block;
	margin-left: 5px;
	padding: 7px 7px 7px 20px;
	border-radius: 100px;
	font-size: 1.2rem;
	transform: translateY(-0.5em);
}
.workbench .body th b.fin {
	background: #00C589 url('../img/icon_fin.svg') no-repeat 2px center / contain;
}
.workbench .body th b.temp {
	background: #D9A600 url('../img/icon_temp.svg') no-repeat 2px center / contain;
}
.workbench .body th b.remand {
	background: #C81B1B url('../img/icon_remand.svg') no-repeat 2px center / contain;
}
.workbench .body th b.denial {
	background: #8E8E8E url('../img/icon_denial.svg') no-repeat 2px center / contain;
}
.workbench .body thead.act b {
	padding: 7px;
	background-image: none;
}
.workbench .body thead b i {
	display: none;
}
.workbench .body thead.act b i {
	display: inline;
	background-image: none;
}

.workbench .body td > div {
	display: flex;
	align-items: center;
	margin: -10px;
	padding: 8px;
	border-radius: 5px;
	background-color: #222;
	box-shadow: 0 0 4px rgba(0,0,0,0.5);
}
.workbench .body td > div:hover {
	background-color: #57486F;
}
.workbench .body td figure {
	width: 35px;
	border-radius: 1000px;
	background: #474747 no-repeat center center / contain;
}
.workbench .body td .fin figure {
	background-color: #00C589;
	background-image: url('../img/icon_fin.svg');
}
.workbench .body td .temp figure {
	background-color: #D9A600;
	background-image: url('../img/icon_temp.svg');
}
.workbench .body td .remand figure {
	background-color: #C81B1B;
	background-image: url('../img/icon_remand.svg');
}
.workbench .body td .denial figure {
	background-color: #474747;
	background-image: url('../img/icon_denial.svg');
}
.workbench .body td figure::before {
	display: block;
	padding-top: 100%;
	content: '';
}
.workbench .body td p {
	padding-left: 8px;
	line-height: 1.2;
	font-size: 1rem;
}
.workbench .body td p span {
	display: block;
	line-height: 1.2;
	font-size: 1.2rem;
}
/*.workbench .body td .temp span::before {
	display: block;
	content: '一時保存中';
}
.workbench .body td .remand span::before {
	display: block;
	content: '差し戻し';
}*/

.workbench .details {
	padding: 40px 3%;
}
.workbench .details .btn_close {
	top: -20px;
	right: -20px;
}
.workbench .details h2 {
	position: relative;
	padding-right: 10px;
	font-size: 2.4rem;
	font-weight: bold;
}
.workbench .details h2 span::before {
	display: inline-block;
	width: 0.85em;
	height: 0.85em;
	margin-right: 0.3em;
	border-radius: 50%;
	border: 3px solid #555;
	border-bottom-color: #555;
	box-sizing: border-box;
	content:'';
}
.workbench .details h2.run span::before {
	border: 3px solid #B17DFF;
	border-bottom-color: #fff;
	animation: rotation 1s linear infinite;
}
@keyframes rotation {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.workbench .details h2 span {
	margin-right: 1em;
}
.workbench .details h2 b.no {
	display: block;
	font-size: 0.7em;
}
.workbench .details h2 b.time {
	display: block;
	font-size: 1rem;
	font-weight: normal;
}
.workbench .details h2 .btn_favorite {
	display: inline-block;
	position: absolute;
	top: 0;
	right: -20px;
	width: 20px;
	height: 20px;
	padding: 0;
	background: url('../img/icon_favorite.svg') no-repeat center center / contain;
	opacity: 0.3;
	cursor: pointer;
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
.workbench .details h2 .btn_favorite.on {
	opacity: 1;
	background-image: url('../img/icon_favorite_on.svg');
	transform: rotate(360deg);
}
.workbench .details .btns .btn {
	padding-top: 10px;
	padding-bottom: 10px;
}
.workbench .details .btns .btn_pdf {
	display: none;
	background-color: #00C589;
}
.workbench .details th,
.workbench .details td {
	box-sizing: border-box;
	width: 20%;
	padding: 20px;
	background-color: #393939;
	border-right: dashed 1px #707070;
	text-align: center;
	word-break: break-all;
}
.workbench .details td span {
	position: relative;
}
.workbench .details td span::after {
	display: inline-block;
	width: 1.3em;
	height: 1.3em;
	border-radius: 100%;
	background: no-repeat center center / 80% auto;
	margin-left: 0.2em;
	vertical-align: middle;
}
.workbench .details td.fin span::after {
	background-color: #00C589;
	background-image: url('../img/icon_fin.svg');
	content: '';
}
.workbench .details td.remand span::after {
	background-color: #C81B1B;
	background-image: url('../img/icon_remand.svg');
	content: '';
}
.workbench .details td.temp span::after {
	background-color: #D9A600;
	background-image: url('../img/icon_temp.svg');
	content: '';
}
.workbench .details td.denial span::after {
	background-color: #8E8E8E;
	background-image: url('../img/icon_denial.svg');
	content: '';
}
.workbench .details th:last-child,
.workbench .details td:last-child {
	border-right: none;
}
.workbench .details tr:first-child th {
	background-color: #333;
}
.workbench .details tr:nth-child(n+2) th {
	text-align: left;
	font-weight: bold;
}
.workbench .details tr:nth-child(n+2) th,
.workbench .details tr:nth-child(n+2) td {
	border-bottom: solid 1px #222;
}
.workbench .details table.step1 th:nth-child(2),
.workbench .details table.step2 th:nth-child(3),
.workbench .details table.step3 th:nth-child(4),
.workbench .details table.step9 th:nth-child(5) {
	background-color: #594F69;
}
.workbench .details table.step1 td:nth-child(2),
.workbench .details table.step2 td:nth-child(3),
.workbench .details table.step3 td:nth-child(4),
.workbench .details table.step9 td:nth-child(5) {
	background-color: #4C425C;
}
.workbench .details table td .btn {
	display: none;
	font-size: 1.2rem;
}
.workbench .details table td .btn span {
	padding-right: 1.5em;
	background: url('../img/icon_edit.svg') no-repeat right center / 1em auto;
}
.workbench .details table.step1 td:nth-child(2) .btn,
.workbench .details table.step2 td:nth-child(3) .btn,
.workbench .details table.step3 td:nth-child(4) .btn,
.workbench .details table.step9 td:nth-child(5) .btn {
	display: inline-block;
}
.workbench .details table td .btn.hide,
.workbench .details table td .btn.denial {
	display: none !important;
}
.workbench .body table.tablehead {
	pointer-events: none;
}
.workbench .body table.tablehead,
.workbench .approval > h3 {
	display: none;
}
.workbench .modal.info #info table {
	width: 300px;
}
.workbench .modal.info #info th,
.workbench .modal.info #info td {
	text-align: left;
	padding: 0.25em 0;
}
.workbench .modal.info #info .seg th,
.workbench .modal.info #info .seg td {
	padding-top: 2em;
}
.workbench .modal.info #info .btn_pdf {
	display: none;
	min-width: 40px;
	height: 40px;
	margin-left: 3em;
	background-image: url('../img/icon_file.svg');
	background-position: center center;
	background-size: 60% auto;
	background-repeat: no-repeat;
	vertical-align: middle;
}
.workbench .modal.timeline .inner {
	width: 80vw;
	max-width: 80vw;
}
.workbench .modal.timeline .inner .btn_ok {
	position: absolute;
	top: 30px;
	right: 20px;
	width: 20px;
	height: 20px;
}
.workbench .modal.timeline .inner .btn_ok:hover {
	opacity: 0.5;
}
.workbench .modal.timeline .inner .btn_ok::before,
.workbench .modal.timeline .inner .btn_ok::after {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	content: '';
}
.workbench .modal.timeline .inner .btn_ok::before {
	transform: rotate(45deg);
}
.workbench .modal.timeline .inner .btn_ok::after {
	transform: rotate(-45deg);
}
.workbench #timeline svg .hoverlayer {
	display: none;
}
.workbench .timeline_hover {
	display: none;
	position: absolute;
	transform: translate(-100%, calc(-100% - 60px));
	background-color: #333;
	padding: 10px 20px;
	border-radius: 4px;
	z-index: 10001;
}
.workbench .timeline_hover:hover {
	display: block !important;
}
.workbench .timeline_hover li {
	display: flex;
	margin: 5px 0;
}
.workbench .timeline_hover li p {
	margin-left: 1em;
	white-space: nowrap;
}
.workbench .timeline_hover li a {
	text-decoration: underline;
	color: #B17DFF;
	white-space: nowrap;
}
.workbench .timeline_hover li a:hover {
	text-decoration: none;
}
@media screen and (min-width: 1025px) {
	.workbench .hovers .tablet {
		display: none;
	}
}
@media screen and (max-width: 1024px) {
	.workbench #contents {
		box-sizing: border-box;
		height: auto;
		max-height: calc(100vh - 86px);
		padding-bottom: 20px;
		overflow: auto;
	}
	.workbench #contents .inner {
		margin-top: 20px;
	}
	
	.workbench #contents > .btn_back + h2.ttl {
		margin-left: 125px;
	}
	.workbench #contents .inner > div {
		display: block;
		padding-bottom: 80px;
	}
	.workbench #contents .inner .head {
		display: none;
	}
	.workbench #contents .inner .register,
	.workbench #contents .inner .body,
	.workbench #contents .inner .approval {
		width: 100%;
		height: auto !important;
		margin: auto;
	}
	.workbench #contents .inner .register,
	.workbench #contents .inner .approval {
		display: flex;
		flex-wrap: wrap;
	}
	.workbench #contents .inner .body,
	.workbench #contents .inner .approval {
		margin-top: 20px;
		height: auto !important;
	}
	.workbench #contents .inner .register .box.user,
	.workbench #contents .inner .approval .box.user {
		width: 200px;
	}
	.workbench .box.user figure {
		margin-bottom: 10px;
	}
	.workbench #contents .inner .register .box.info,
	.workbench #contents .inner .approval .box.info {
		width: calc(100% - 215px);
		margin-top: 0;
		margin-left: 15px;
	}
	.workbench #contents .inner .register .box.info > div,
	.workbench #contents .inner .register .box.info > div > div {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.workbench .box.info h3 {
		width: 60px;
	}
	.workbench .register .box.info p + p {
		margin-left: 2em;
	}
	.workbench .register .box.info p span {
		padding: 0;
	}
	.workbench .register .box.info br + span {
		margin-top: 0.5em;
	}
	.workbench .register .btns {
		width: 100%;
		margin-top: 15px !important;
		text-align: right;
	}
	.workbench .register .btns .btn {
		display: inline-block !important;
	}
	.workbench .details {
		padding: 40px 15px 20px 15px;
	}
	.workbench .details table {
		width: 100%;
	}
	.workbench .details > div:last-child {
		width: 0;
		max-width: 0;
		margin: 0;
	}
	.workbench .details .btn_close {
		top: -30px;
		right: 0;
	}
	.workbench .body table.tablehead {
		display: table;
	}
	.workbench .body table.tablehead thead {
		background-color: transparent;
	}
	.workbench .body table.tablehead thead::after {
		display: none;
	}
	.workbench .body table.tablehead td {
		padding: 0;
		background: none;
		border: none;
		text-align: center;
		pointer-events: none;
	}
	.workbench .approval {
		padding-top: 1.5em;
	}
	.workbench .approval::before {
		display: block;
		position: absolute;
		top: 0;
		width: 20%;
		text-align: center;
		content: 'バッチ確定';
	}
	.workbench .hovers .pc {
		display: none;
	}
}

/**
 * batch_create : バッチ登録
 */
#camera {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	transform: translateY(-150%);
	pointer-events: none;
}
#capture {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	min-height: 0;
	transform: translate(-50%, -50%);
	z-index: 10000;
}
#capture .btns {
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.batch_create #contents {
	position: relative;
	overflow: auto;
}
.batch_create #capimg {
	box-sizing: border-box;
	position: absolute;
	top: 105px;
	right: 3%;
	width: calc(94% - 440px);
	padding-left: 40px;
}
.batch_create .box {
	width: 440px;
	max-width: 440px;
}
.batch_create #contents .box th {
	width: 100px;
	text-align: left;
}
.batch_create #contents .box .btns {
	text-align: center;
}
.batch_create #contents .box .btns a {
	margin: 0 7.5px;
	min-width: 160px;
}
.batch_create #contents tr.intermediate,
.batch_create .confirm #sent {
	display: none;
}
.batch_create #contents .box .btn_pdf {
	width: 40px;
	min-width: 40px;
	height: 40px;
	margin-left: 5px;
	background-image: url('../img/icon_file.svg');
	background-position: center center;
	background-size: 60% auto;
	background-repeat: no-repeat;
	vertical-align: middle;
}
.batch_create .modal.file label {
	display: block;
	margin: 1em 0 0 0;
}
.batch_create .modal.file label b {
	display: block;
	min-width: 460px;
	margin: 1em 0 0 0;
}
@media screen and (max-width: 1024px) {
	.batch_create #capimg {
		top: 70px;
		right: 15px;
		width: calc(100% - 90px - 440px);
		padding-left: 15px;
	}
}

/**
 * batch_edit : バッチ編集
 */
.batch_update #contents {
	overflow: auto;
}
.batch_update .box {
	max-width: 470px;
}
.batch_update .box h3 {
	margin-bottom: 1em;
	font-size: 2.4rem;
	font-weight: bold;
}
.batch_update #contents .box th,
.batch_update #contents .box td {
	padding: 10px 15px;
	text-align: left;
}
.batch_update #contents .box th {
	position: relative;
	width: 100px;
	padding-left: 0;
	padding-right: 22px;
}
.batch_update #contents .box .edit th::after {
	display: block;
	position: absolute;
	top: 19px;
	right: 0;
	width: 21px;
	height: 21px;
	background: #00C589 url('../img/icon_revise.svg') no-repeat center center / 50% auto;
	border-radius: 100px;
	content: '';
}
.batch_update #contents .box tr.edit:nth-child(n+3) th::after {
	top: 13px;
}
.batch_update #contents .box p {
	line-height: 2.4;
}
.batch_update #contents .box th p span {
	padding-left: 1em;
}
.batch_update #contents .box td .btn_revise {
	padding: 11px 28px 10px 12px;
	background-image: url('../img/icon_revise.svg');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 0.8em auto;
	min-width: 0;
	vertical-align: middle;
}
.batch_update #contents .box .btns {
	text-align: center;
}
.batch_update #contents .box .btns a {
	margin: 0 7.5px;
	min-width: 160px;
}
.batch_update .box .btn_pdf {
	display: none;
	width: 40px;
	min-width: 40px;
	height: 40px;
	margin-left: 8px;
	padding: 0;
	background-image: url('../img/icon_file.svg');
	background-position: center center;
	background-size: 60% auto;
	background-repeat: no-repeat;
	vertical-align: middle;
}
.batch_update .modal .inner {
	width: 500px;
}
.batch_update .modal h4 {
	font-weight: bold;
}
.batch_update .modal table {
	width: 100%;
}
.batch_update .modal .before,
.batch_update .modal .after {
	padding-bottom: 1.5em;
}
.batch_update .modal .after {
	border-top: solid 1px #707070;
	padding: 0.5em 0 0 0;
}
.batch_update .modal th,
.batch_update .modal td {
	padding: 0;
	text-align: left;
}
.batch_update .modal .before p {
	margin-top: 0.5em;
}
.batch_update .modal #product_name {
	padding: 15px 10px;
}
.batch_update .modal textarea {
	display: block;
	width: 100%;
	height: 150px;
	margin: 0.5em 0 0 0;
}


/**
 * subbatch_create : サブバッチ登録
 */
.subbatch_create #contents > .head {
	display: flex;
	margin-top: 30px;
}
.subbatch_create .info {
	border-radius: 4px;
	overflow: hidden;
}
.subbatch_create .info tr {
	border-bottom: solid 1px #111;
}
.subbatch_create .info th,
.subbatch_create .info td {
	padding: 10px 15px;
}
.subbatch_create .info th {
	background-color: #333;
}
.subbatch_create .info td {
	background-color: #222;
}
.subbatch_create .box {
	margin-left: 20px;
}
.subbatch_create .box > ul {
	display: flex;
}
.subbatch_create .box > ul li {
	min-width: 200px;
	padding: 10px 5px;
	margin-left: 10px;
	background-color: #333;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	text-align: center;
	color: #666;
	cursor: pointer;
}
.subbatch_create .box > ul li.act {
	background-color: #222;
	color: #B17DFF;
}
.subbatch_create .box > div {
	background-color: #222;
	border-radius: 4px;
	padding: 20px;
}
.subbatch_create .box table {
	display: none;
}
.subbatch_create .box table.act {
	display: table;
}
.subbatch_create .box th {
	padding-right: 10px;
}
.subbatch_create .box th:nth-child(n+2) {
	padding-left: 20px;
}
.subbatch_create .box tr.add,
.subbatch_create .box tr.outline {
	display: none;
}
.subbatch_create .box tr.outline span {
	display: inline-block;
	margin: 0.3em 20px 0.3em 0;
}
.subbatch_create .box tr.outline span:last-child {
	margin-right: 0;
}
.subbatch_create .btn_add {
	text-decoration: underline;
	white-space: nowrap;
	color: #B17DFF;
	cursor: pointer;
}
.subbatch_create .box .btns {
	text-align: right;
}
.subbatch_create .box .btns .btn {
	margin-top: 0.5em;
	padding: 8px 10px;
}
.subbatch_create .btn_add:hover {
	text-decoration: none;
}
.subbatch_create .list {
	margin-top: 40px;
	max-width: 100%;
}
.subbatch_create .list.inact {
	visibility: hidden;
}
.subbatch_create .list > .head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.subbatch_create .list h3 {
	font-weight: bold;
	font-size: 1.6rem;
}
.subbatch_create .list .btns {
	text-align: right;
}
.subbatch_create #datepick {
	display: none;
	position: fixed;
	padding: 10px 0;
	border-radius: 4px;
	background-color: #222;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	z-index: 1000;
}
.subbatch_create .btn_close {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 30px;
	height: 30px;
	border-radius: 100px;
	background-color: #6700FF;
	cursor: pointer;
}
.subbatch_create .btn_close:hover {
	background-color: #B17DFF;
}
.subbatch_create .btn_close::before,
.subbatch_create .btn_close::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 50%;
	height: 1px;
	background-color: #fff;
	margin: auto;
	content: '';
}
.subbatch_create .btn_close::before {
	transform: rotate(-45deg);
}
.subbatch_create .btn_close::after {
	transform: rotate(45deg);
}
.subbatch_create #datepick th,
.subbatch_create #datepick td {
	padding: 5px 20px;
	white-space: nowrap;
}
.subbatch_create #datepick .btns {
	padding: 10px 20px;
}
.subbatch_create #datepick .btn_delete {
	box-sizing: border-box;
	width: 100%;
	padding-top: 6px;
	padding-bottom: 6px;
}
@media screen and (max-width: 1024px) {
	.subbatch_create .list {
		margin-top: 20px;
	}
}

/**
 * memo_subbatch_list : 製造メモ一覧
 * attached_file_subbatch_list : 添付ファイル一覧
 */
.memo_subbatch_list .head,
.attached_file_subbatch_list .head {
	margin-top: 40px;
}
.memo_subbatch_list .btn_add {
	padding-left: 40px;
	background-image: url('../img/icon_pen.svg');
	background-repeat: no-repeat;
	background-position: 20px center;
	background-size: auto 1em;
}
.attached_file_subbatch_list .btn_add {
	padding-left: 40px;
	background-image: url('../img/icon_clip.svg');
	background-repeat: no-repeat;
	background-position: 20px center;
	background-size: auto 1em;
}
.attached_file_subbatch_list .btn_dl {
	padding-left: 40px;
	background-image: url('../img/icon_dl.svg');
	background-repeat: no-repeat;
	background-position: 20px center;
	background-size: auto 1em;
}
.memo_subbatch_list .list,
.attached_file_subbatch_list .list {
	max-height: calc(100vh - 300px);
	overflow: auto;
	overflow-x: hidden;
	margin-top: 30px;
}
.memo_subbatch_list .list table,
.attached_file_subbatch_list .list table {
	width: 100%;
}
.memo_subbatch_list .list th,
.memo_subbatch_list .list td,
.attached_file_subbatch_list .list th,
.attached_file_subbatch_list .list td {
	padding: 20px 15px;
	text-align: left;
	vertical-align: middle;
}
.memo_subbatch_list .list th,
.attached_file_subbatch_list .list th {
	position: sticky;
	top: 0;
	z-index: 5;
	background-color: #333;
}
.memo_subbatch_list .list td,
.attached_file_subbatch_list .list td {
	background-color: #222;
	border-top: solid 1px #111;
}
.memo_subbatch_list .modal p,
.attached_file_subbatch_list .modal p,
.record_create03 .modal p,
.record_create04 .modal p {
	margin-bottom: 0.5em;
	line-height: 2;
}
.memo_subbatch_list .modal textarea,
.attached_file_subbatch_list .modal textarea,
.record_create03 .modal textarea,
.record_create04 .modal textarea {
	width: 450px;
	height: 200px;
	margin: 1em 0 0 0;
}
.memo_subbatch_list .modal .btn_ok,
.record_create03 .modal .btn_ok,
.record_create04 .modal .btn_ok {
	min-width:90px;
}
@media screen and (max-width: 1024px) {
	.memo_subbatch_list .head,
	.attached_file_subbatch_list .head {
		margin-top: 20px;
	}
}

/**
 * subbatch_detail : サブバッチ詳細
 */
.subbatch_detail h2 span {
	display: block;
	margin-top: 1em;
	line-height: 1.8;
	font-weight: normal;
	font-size: 1.6rem;
}
.subbatch_detail h2 .btn_edit {
	min-width: 0;
	background-image: url('../img/icon_edit.svg');
	background-position: center center;
	background-size: 22px auto;
	background-repeat: no-repeat;
	margin: -13px 0 -13px 1em;
	padding: 20px;
}
.subbatch_detail #contents > .head {
	display: flex;
	flex-direction: row-reverse;
	margin: 40px 0 15px 0;
}
.subbatch_detail #gantt .cell,
.subbatch_detail #gantt .task {
	cursor: auto !important;
}
.subbatch_detail #gantt .ttl:nth-child(1) {
	left: 0;
}
.subbatch_detail #gantt .ttl:nth-child(2) {
	left: 120px;
}
.subbatch_detail #gantt .ttl:nth-child(3) {
	left: 240px;
}
.subbatch_detail #gantt .ttl:nth-child(4) {
	width: 80px;
	left: 360px;
}
/**
 * subbatch_update : サブバッチ編集
 */
.subbatch_update .modal h4 {
	font-size: 1.4rem;
	margin: 1em 0 0.5em 0;
}
.subbatch_update .modal p {
	margin-bottom: 0.5em;
	line-height: 2;
	text-indent: 1em;
}
.subbatch_update .modal textarea {
	width: 502px;
	height: 200px;
	margin: 1em 0 0 0;
}
/*.subbatch_update #gantt .cell {
	cursor: auto !important;
}*/


/**
 * record : 製造記録作成
 */
.record #contents {
	padding-bottom: 120px;
}
.record .step {
	display: flex;
	margin-top: 30px;
}
.record .step ol {
	position: relative;
	display: flex;
}
.record .step ol:first-child {
	width: 70%;
}
.record .step ol:last-child {
	width: 30%;
}
.record .step ol::before,
.record .step ol::after {
	position: absolute;
	bottom: 10px;
	height: 4px;
	background-color: #707070;
	content: '';
}
.record .step ol:first-child::before {
	width: calc(100% - 20%);
	left: 10%;
}
.record .step ol:first-child::after {
	left: 10%;
	background-color: #00C589;
}
.record .step ol:last-child::before {
	width: calc(100% - 50%);
	left: 25%;
}
.record .step ol:last-child::after {
	left: 25%;
	background-color: #00C589;
}
.record .step ol li {
	position: relative;
	width: 100%;
	flex-basis: 1;
	text-align: center;
	padding-bottom: 35px;
	z-index: 1;
}
.record .step ol li::after {
	box-sizing: border-box;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 24px;
	height: 24px;
	border-radius: 100px;
	background-color: #707070;
	margin: auto;
	content: '';
}
.record .step ol li.before::after,
.record .step ol li.act::after {
	background-color: #00C589;
}
.record .step ol li.keep::after {
	background-color: #C59700;
}
.record .step ol li.comment::after {
	background-color: #D54200;
}
.record .step ol li.checked::after {
	background: #00C589 url('../img/icon_checked.svg') no-repeat center center / contain;
	border: solid 2px #fff;
}
.record .step ol li span {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	padding: 8px 15px;
	color: #888;
}
.record .step ol li.act span {
	background-color: #6700FF;
	font-weight: bold;
	color: #fff;
}
.record .step ol li.act span::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	right: 0;
	bottom: -12px;
	margin: auto;
	border:solid  4px transparent;
	border-top:solid  8px #6700FF;
	content: '';
}
.record .inner > .head {
	display: flex;
	align-items: center;
	margin-top: 40px;
}
.record .inner > .head .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	padding: 17px 20px 17px 20px;
	font-size: 1.8rem;
}
.record .inner > .head * + .btn_checkguide {
	margin-left: 1em;
}
.record .inner > .head .filter {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	margin-left: 30px;
	background-color: #222;
	border-radius: 4px;
	padding: 0 20px;
}
.record .inner > .head {
	margin-bottom: 30px;
}
.record .inner > .head h2.icon_calendar {
	padding: 0 20px 0 25px;
	background: url('../img/icon_calendar.svg') no-repeat left center / 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
.record .inner > .head .filter h2 {
	padding: 17px 20px 17px 25px;
	border-right: solid 1px #707070;
}
.record .inner > .head .filter > div {
	display: flex;
	align-items: center;
	padding: 0 0 0 20px;
}
.record .inner > .head .filter input {
	margin-top: 0;
	margin-bottom: 0;
}
.record #contents .btns {
	position: relative;
	box-sizing: border-box;
	text-align: right;
}
.record #contents .checkall {
	margin-top: 1em;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
}
.record .list {
	max-height: calc(100vh - 480px);
	overflow: auto;
	overflow-x: hidden;
}
.record .list table {
	width: 100%;
}
.record .list th,
.record .list td {
	padding: 20px 15px;
	text-align: left;
	vertical-align: middle;
}
.record .list th {
	position: sticky;
	top: 0;
	z-index: 5;
	background-color: #333;
}
.record .list td {
	background-color: #222;
	border-top: solid 1px #111;
}
.record .list input[type="checkbox"] + label {
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	vertical-align: top;
}
.record .modal.comment input[type="text"] {
	display: block;
	width: 400px;
	margin: 1em 0 0 0;
}
.record .modal.comment textarea,
.middle .modal.memo textarea {
	display: block;
	width: 400px;
	height: 200px;
	margin: 1em 0 0 0;
}
.record .modal.comment textarea + p,
.middle .modal.memo textarea + p {
	text-align: right;
	font-size: 1rem;
}
.record .modal.comment ul,
.middle .modal.memo ul {
	margin: 1em 0 2em 0;
	width: 400px;
}
.record .modal.comment ul li,
.middle .modal.memo ul li {
	border-bottom: solid 1px #444;
	padding: 0.5em 0;
}
.record .modal.comment ul li:first-child,
.middle .modal.memo ul li:first-child {
	border-top: solid 1px #444;
}
.record .modal.comment li p,
.middle .modal.memo li p {
	margin: 0;
	line-height: 1.6;
}
.record .modal.comment li p.info,
.middle .modal.memo li p.info {
	margin-top: 0.3em;
	text-align: right;
	font-size: 0.8em;
}
.record .modal.comment .btn_add {
	color: #B17DFF;
}
.record .modal th {
	padding-right: 1em;
}
.record .trend .btn_switch {
	position: absolute;
	top: 68px;
	right: 35px;
}

.record #comment.hovers .list th:last-child,
.record #comment.hovers .list td:last-child {
	width: 60px;
	text-align: center;
}
.record #comment.hovers .list td:hover td {
	background-color: #333;
}
.record #comment.hovers .btn_detail {
	min-width: 0;
	background-image: url('../img/icon_edit.svg');
	background-position: center center;
	background-size: 22px auto;
	background-repeat: no-repeat;
	margin: -13px 0;
	padding: 20px;
}

/**
 * .record_create01
 * .subbatch_detail
 */
.record_create01 #contents .inner > .head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.record_create01 #contents .inner > .head > div {
	display: flex;
	align-items: center;
}
.record_create01 #contents .inner > .head .btn {
	margin-left: 2em;
}
.record_create01 #gantt .cell {
	cursor: auto !important;
}
.record_create01 #gantt .ttl:nth-child(1) {
	left: 0;
	width: 60px;
}
.record_create01 #gantt .ttl:nth-child(1).checked::before {
	box-sizing: border-box;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 20px;
	height: 20px;
	border-radius: 100px;
	background: #00C589 url('../img/icon_checked.svg') no-repeat center center / contain;
	margin: auto;
	content: '';
}
.record_create01 #gantt .ttl:nth-child(2) {
	left: 60px;
}
.record_create01 #gantt .ttl:nth-child(3) {
	left: 180px;
}
.record_create01 #gantt .ttl:nth-child(4) {
	left: 300px;
}
.record_create01 #gantt .ttl:nth-child(5) {
	left: 420px;
}
.record_create01 #gantt .ttl:nth-child(6) {
	width: 75px;
	left: 540px;
}
.record_create01 #gantt .ttl:nth-child(7) {
	width: 75px;
	left: 615px;
}
.record_create01 .modal.graph .inner {
	overflow: visible;
}
.record_create01 .modal .btn_close {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 30px;
	height: 30px;
	border-radius: 100px;
	background-color: #6700FF;
	cursor: pointer;
}
.record_create01 .modal .btn_close:hover {
	background-color: #B17DFF;
}
.record_create01 .modal .btn_close::before,
.record_create01 .modal .btn_close::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 50%;
	height: 1px;
	background-color: #fff;
	margin: auto;
	content: '';
}
.record_create01 .modal .btn_close::before {
	transform: rotate(-45deg);
}
.record_create01 .modal .btn_close::after {
	transform: rotate(45deg);
}
/**
 * .record_create01_detail
 */
.record_create01_detail #contents {
	overflow: auto;
}
.record_create01_detail h2 span {
	display: block;
	margin-top: 1em;
	line-height: 1.8;
	font-size: 1.8rem;
}
.record_create01_detail .trend {
	position: relative;
	background-color: #222;
	margin-top: 25px;
	padding: 30px;
	border-radius: 4px;
}
.record_create01_detail .trend #graph {
	width: 100%;
	height: 700px;
}
.record_create01_detail .term {
	margin-top: 20px;
}
.record_create01_detail .term > div {
	box-sizing: border-box;
	display: inline-flex;
	float: left;
	align-items: center;
	background-color: #111;
	border-radius: 4px;
	margin-right: 1em;
	padding: 5px 10px 5px 20px;
}
.record_create01_detail .term h2 {
	padding: 17px 20px 17px 25px;
	border-right: solid 1px #707070;
	padding: 0 20px 0 25px;
	background: url('../img/icon_calendar.svg') no-repeat left center / 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
.record_create01_detail .term > div > div {
	display: flex;
	align-items: center;
	padding: 0 0 0 20px;
}
.record_create01_detail .term input {
	margin-top: 0;
	margin-bottom: 0;
}
.record_create01_detail #graph .sd,
.record_create01_detail #graph .ed {
	position: absolute;
	top: 705px;
	width: 60px;
	text-align: center;
	line-height: 1.2;
	font-size: 0.9em;
	color: #777;
}
.record_create01_detail #graph .sd {
	left: 55px;
}
.record_create01_detail #graph .ed {
	right: 190px;
}
main .record_create01_detail .tab.loss {
	top: 90px;
}
.record_create01_detail .modal h4 {
	margin-top: 1em;
}
.record_create01_detail .modal textarea {
	width: 440px;
	height: 160px;
	margin: 0.5em 0 0 0;
}
@media screen and (max-width: 1024px) {
	main .record_create01_detail .tab.loss {
		top: 70px;
	}
}

/**
 * .record_create02
 */
.record_create02 .step ol:first-child::after {
	width: 20%;
}
/**
 * .record_create02_detail
 */
.record_create02_detail #contents {
	overflow: auto;
}
.record_create02_detail h2 span {
	display: block;
	margin-top: 1em;
	line-height: 1.8;
	font-size: 1.8rem;
}
.record_create02_detail .trend {
	position: relative;
	background-color: #222;
	margin-top: 25px;
	padding: 30px;
	border-radius: 4px;
}
.record_create02_detail .trend #graph {
	width: 100%;
	height: 600px;
}

.record_create02_detail .block {
	margin-top: 20px;
}
.record_create02_detail .block h3 {
	position: relative;
	background-color: #333;
	padding: 17px;
	font-size: 1.8rem;
}
.record_create02_detail .block h3::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 20px;
	height: 20px;
	background: url('../img/icon_slide.svg') no-repeat center center / contain;
	margin: auto;
	content: '';
}
.record_create02_detail .block.open h3::after {
	transform: rotate(180deg);
}
.record_create02_detail .block h3 .btn_delete {
	margin-left: 1em;
	padding: 15px;
	background-size: 50%;
	vertical-align: middle;
}
.record_create02_detail .block .inner {
	background-color: #222;
	padding: 20px;
}
.record_create02_detail .block h4 {
	margin-top: 0.3em;
	font-size: 1.8rem;
	font-weight: bold;
}
.record_create02_detail .body {
	display: none;
	margin-top: 25px;
}
.record_create02_detail .body > div {
	display: flex;
}
.record_create02_detail .body > div > ul {
	width: 20%;
	box-sizing: border-box;
}
.record_create02_detail .body li {
	margin-top: 0.4em;
}
.record_create02_detail .body li span {
	display: inline-block;
	padding: 5px 20px;
	background-color: #333;
	border-radius: 4px;
	cursor: pointer;
}
.record_create02_detail .body li span:hover {
	background-color: #B17DFF;
}
.record_create02_detail .body li span.act {
	background-color: #6700FF;
}
.record_create02_detail .body li span::before {
	content: '＋ ';
}
.record_create02_detail .body li span.act::before {
	content: '－ ';
}
.record_create02_detail .boxes {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
}
.record_create02_detail .body .box {
	box-sizing: border-box;
	width: 25%;
	padding: 0 10px 20px 10px;
}
.record_create02_detail .body .box > div {
	background-color: #333;
	border-radius: 4px;
}
.record_create02_detail .body .box h5 {
	padding: 15px 20px;
	font-size: 1.7rem;
	font-weight: bold;
}
.record_create02_detail .body .box table {
	width: 100%;
}
.record_create02_detail .body .box table + table {
	margin-top: 1em;
	border-top: solid 1px #707070;
	padding-top: 1em;
}
.record_create02_detail .body .box th {
	width: 20%;
	padding: 0 0 5px 20px;
	white-space: nowrap;
}
.record_create02_detail .body .box td {
	padding: 0 20px 5px 10px;
}
.record_create02_detail .body .box table + table tr:first-child th,
.record_create02_detail .body .box table + table tr:first-child td {
	padding-top: 1em;
}
.record_create02_detail .body .box input {
	min-width: 0;
	width:calc(100% - 4em);
	border-radius: 0;
	background-color: #444;
	padding: 5px 10px;
	margin: 0;
}
.record_create02_detail .body .box p {
	display: inline-block;
}
.record_create02_detail .body .box p.check {
	padding-right: 1.5em;
	background: url('../img/icon_check_g.svg') no-repeat right center / 1em auto;
}

.record_create02_detail .body .box .btns {
	padding: 20px;
	margin: 0 !important;
}
.record_create02_detail .body .box .btns .btn {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	padding: 5px;
}
.record_create02_detail #contents .btns0 {
	margin: 1em 0 0 0;
	text-align: left;
}
@media screen and (max-width: 1024px) {
	.record_create02_detail .body .box {
		width: 33.33%;
	}
}
/**
 * .record_create03
 */
.record_create03 .step ol:first-child::after {
	width: 40%;
}
.record_create03 .btn_memo span {
	display: inline-block;
	background: url('../img/icon_memo.svg') no-repeat left center / 1em auto;
	padding-left: 1.6em;
}
/**
 * .record_create04
 */
.record_create04 .step ol:first-child::after {
	width: 60%;
}
/**
 * .record_create05
 */
.record_create05 .step ol:first-child::after {
	width: 80%;
}
.record_create05 tr > *:nth-child(4) {
	text-align: center;
}
.record_create05 td.warning {
	background-color: #7E0000;
}

/**
 * .record_create06
 */
.record_create06 .step ol:first-child::after {
	width: 80%;
}

/**
 * .record_create07
 */
.record_create07 #contents {
	overflow: auto;
}
.record_create07 .step ol:first-child::after {
	width: 80%;
}
.record_create07 .step ol:last-child::after {
	width: 50%;
}
.record_create07 .list0 {
	height: auto;
}
.record_create07 .list1 {
	max-height: 460px;
	overflow: auto;
}
.record_create07 .list0 tr > *,
.record_create07 .list1 tr > *:nth-child(9),
.record_create07 .list1 tr > *:nth-child(10),
.record_create07 .list1 tr > *:nth-child(11) {
	text-align: center;
}
.record_create07 .list0 tr > *:first-child {
	text-align: left;
}
.record_create07 td.judge0,
.record_create07 td.judge1 {
	background-repeat:no-repeat ;
	background-position: center;
	background-size: 1.5em auto;
}
.record_create07 td.judge0 {
	background-image: url('../img/icon_false.svg');
}
.record_create07 td.judge1 {
	background-image: url('../img/icon_true.svg');
}
.record_create07 .btns0 {
	margin-bottom: 50px;
}
.record_create07 .btns .checkall {
	position: static !important;
}
.record_create07 .btns .checkall + .checkall {
	margin-top: 0.8em;
}
.record_create07 .review {
	display: none;
	justify-content: space-between;
	align-items: flex-end;
	margin: 30px 0;
}
.quality .record_create07 .review {
	display: flex;
}
.record_create07 .review .box {
	display: inline-flex;
	padding: 30px;
	background-color: #222;
	border-radius: 4px;
}
.record_create07 .review .box h3 {
	margin-bottom: 0.3em;
	font-size: 2.4rem;
	font-weight: bold;
}
.record_create07 .review .box > div + div {
	margin-left: 30px;
}
.record_create07 .review .box textarea {
	width: 300px;
	margin: 0;
}
.record_create07 .review .btn_review {
	margin-bottom: 0.5em;
}
.record_create07 .review .btn_preview {
	float: right;
}
.record_create07 .btns .btn_denial {
	float: left;
	vertical-align: middle;
	text-decoration: underline;
	color: #B17DFF;
}
.record_create07 .btns .btn_denial:hover {
	text-decoration: none;
}

.record_create07 .checkall input[type="checkbox"] + label {
	padding-left: 0;
	padding-right: 25px;
}
.record_create07 .checkall input[type="checkbox"] + label::before,
.record_create07 .checkall input[type="checkbox"] + label::after {
	left: auto;
	right: 0;
}
.record_create06 .modal.log p,
.record_create07 .modal.log p {
	margin: 0.5em 0 0.2em 0;
}
.record_create06 .modal.log textarea,
.record_create07 .modal.log textarea,
.record_create07 .modal.auto textarea {
	width: 400px;
	height: 200px;
	margin-left: 0;
	margin-right: 0;
}
.record_create07 .modal.auto th,
.record_create07 .modal.auto td {
	padding-top: 8px;
	padding-bottom: 8px;
	vertical-align: top;
	text-align: left;
}
.record_create07 .modal.auto th {
	padding-right: 1.5em;
}
.record_create07 .modal.log .col2 > * {
	width: 100%;
}
.record_create07 .modal.log a {
	text-decoration: underline;
}
.record_create07 .modal.log a:hover {
	text-decoration: none;
}

.record_create01_detail #contents .inner .head,
.record_create02_detail #contents .inner .head {
	display: flex;
	justify-content: flex-start;
	background-color: #222;
	border-radius: 4px;
}
.record_create01_detail #contents .inner .head > div,
.record_create02_detail #contents .inner .head > div {
	display: flex;
	align-items: center;
}
.record_create01_detail #contents .inner .head > div:nth-child(n+2),
.record_create02_detail #contents .inner .head > div:nth-child(n+2) {
	border-left: solid 1px #111;
}
.record_create01_detail #contents .inner .head > div:nth-child(1),
.record_create02_detail #contents .inner .head > div:nth-child(1) {
	padding: 20px 40px 20px 10px;
}
.record_create01_detail #contents .inner .head figure,
.record_create02_detail #contents .inner .head figure {
	width: 80px;
	margin-right: 1em;
	background: no-repeat center center / contain;
}
.record_create01_detail #contents .inner .head figure::before,
.record_create02_detail #contents .inner .head figure::before {
	display: block;
	padding-top: 85%;
	content: '';
}
.record_create01_detail #contents .head .kind1 figure,
.record_create02_detail #contents .head .kind1 figure {
	background-image: url('../img/icon_machine1.svg');
}
.record_create01_detail #contents .head .kind2 figure,
.record_create02_detail #contents .head .kind2 figure {
	background-image: url('../img/icon_machine2.svg');
}
.record_create01_detail #contents .head .kind3 figure,
.record_create02_detail #contents .head .kind3 figure {
	background-image: url('../img/icon_machine3.svg');
}
.record_create01_detail #contents .head .kind4 figure,
.record_create02_detail #contents .head .kind4 figure {
	background-image: url('../img/icon_machine4.svg');
}
.record_create01_detail #contents .head .kind5 figure,
.record_create02_detail #contents .head .kind5 figure {
	background-image: url('../img/icon_machine5.svg');
}
.record_create01_detail #contents .head .kind6 figure,
.record_create02_detail #contents .head .kind6 figure {
	background-image: url('../img/icon_machine5.svg');
}
.record_create01_detail #contents .head .txt,
.record_create02_detail #contents .head .txt {
	font-size: 3.8rem;
}
.record_create01_detail #contents .head .info,
.record_create02_detail #contents .head .info {
	justify-content:flex-start;
	padding: 30px;
	flex-grow: 1;
}
.record_create01_detail #contents .head .info p,
.record_create02_detail #contents .head .info p {
	font-size: 1.6rem;
	padding: 0 5% 0 0;
}
.record_create01_detail #contents .head .info p:last-child,
.record_create02_detail #contents .head .info p:last-child {
	padding: 0;
}
.record_create01_detail #contents .head .info span,
.record_create02_detail #contents .head .info span {
	display: block;
	margin-bottom: 1em;
	font-size: 1.2rem;
}

/**
 * middle : 中間製品一覧
 */
.middle #contents .paging {
	float: none;
	position: absolute;
	right: 3%;
	top: 40px;
}
.middle #contents .head .filter {
	margin-top: 70px;
}
@media screen and (max-width: 1024px) {
	.middle #contents .paging {
		top: 25px;
		right: 15px;
	}
	.middle #contents .head .filter {
		margin-top: 30px;
	}
}

/**
 * ftp_attached : 転送ファイル選択
 */
.ftp_attached .box {
	width: 500px;
}
.ftp_attached .box ul {
	margin-top: 1em;
}
.ftp_attached .box li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0;
}
.ftp_attached .box li .btn,
.ftp_attached .modal .btn_preview {
	min-width: 40px;
	margin-left: 0.5em;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 18px 0;
	vertical-align: middle;
	cursor: pointer;
}
.ftp_attached .modal .btn_preview {
	display: none;
}
.ftp_attached .box li .btn_preview,
.ftp_attached .modal .btn_preview {
	background-image: url('../img/icon_preview.svg');
	background-size: 65% auto;
}
.ftp_attached .box li .btn_delete {
	background-image: url('../img/icon_delete.svg');
	background-size: 45% auto;
}
.ftp_attached .modal th {
	padding-right: 1em;
	text-align: left;
}
.ftp_attached .modal.delete p + p {
	margin-top: 0.8em;
}
.ftp_attached .modal.delete textarea {
	margin: 0.5em 0 0 0;
	width: 440px;
	height: 160px;
}
.ftp_attached .btn_get {
	min-width: 50px;
	padding: 10px 0;
}
.ftp_attached .btn_file {
	display: inline-block;
	background-color:#6700FF;
	border-radius: 4px;
	padding: 10px 30px;
	white-space: nowrap;
	color: #fff;
	content: '';
	cursor: pointer;
	transition: 0.3s;
}
.ftp_attached .btn_file:hover {
	background-color: #B17DFF;
}


/**
 * .master : マスター管理
 */
.btn_master:hover {
	background-color: #e6e6e6;
	color: #222;
}
.master #contents .head .filter {
	background-color: #fff;
}
.master #contents .head .filter .input > div {
	display: flex;
	align-items: center;
	margin-right: 2em;
}
.master #contents .head .filter input,
.master #contents .head .filter select {
	background-color: #ddd;
	color: #222;
}
.master {
	background-color: #e6e6e6;
	color: #222;
}
.master a {
	color: #6700FF;
}
.master a:hover {
	color: #B17DFF;
}
.master h2.ttl {
	margin-bottom: 30px;
}
.master #contents .head {
	margin: 30px 0;
}
.master #contents .list {
	overflow: auto;
}
.master #contents .list table {
	min-width: 100%;
}
.master #contents thead {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 10;
}
.master #contents thead th:first-child {
	border-top-left-radius: 4px;
	overflow: hidden;
}
.master #contents thead th:last-child {
	border-top-right-radius: 4px;
	overflow: hidden;
}
.master #contents th,
.master #contents td {
	padding: 19px 30px;
	vertical-align: middle;
	text-align: left;
}
.master #contents th {
	background-color: #474747;
}
.master #contents td {
	background-color: #fff;
	border-bottom: solid 1px #e6e6e6;
	color: #222;
}
.master #contents .trend {
	background-color: #fff;
	border-bottom: solid 1px #e6e6e6;
	color: #222;
}
.master #contents .toggle {
	display: flex;
	align-items: center;
}
.master #contents .toggle li {
	border: solid 1px #888;
	padding: 5px 10px;
	color: #888;
	cursor: pointer;
}
.master #contents .toggle li:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.master #contents .toggle li:last-child {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.master #contents .toggle li.act {
	background-color: #B17DFF;
	border-color: #B17DFF;
	font-weight: bold;
	color: #fff;
}
.master #contents .toggle h4:first-child {
	color: #B17DFF;
}
.master #contents .toggle.on h4:first-child,
.master #contents .toggle h4:last-child {
	color: #666;
}
.master #contents .toggle div {
	background-color: #ddd;
	border-color: #ddd;
}
.master #contents .toggle div::before {
	background-color: #6700FF;
}


/**
 * .backup : バックアップ
 */
.master.backup #contents h2.ttl {
	margin-bottom: 0;
	line-height: 1;
	font-size: 2.4rem;
	font-weight: bold;
}
.master.backup #contents .head {
	display: flex;
	align-items: center;
	margin: 40px 0 15px;
}
.master.backup #contents .head:first-child {
	margin-top: 0;
}
.master.backup #contents .list {
	max-height: 288px;
}
.master.backup #contents .btn_dl {
	min-width: 0px;
	padding: 18px;
	background-image: url('../img/icon_dl.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 55%;
}
.master.backup #contents .btn_restore {
	min-width: 0;
	padding: 8px 15px 8px 40px;
	margin-left: 30px;
	background-image: url('../img/icon_revise.svg');
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: auto 1.2em;
}
.master.backup #contents .progress {
	display: none;
	margin-left: 30px;
	font-size: 1.2rem;
	color: #888;
	pointer-events: none;
}
.master.backup #contents .progress .bar {
	display: inline-block;
	position: relative;
	width: 320px;
	height: 4px;
	margin-right: 1.5em;
	vertical-align: middle;
}
.master.backup #contents .progress .bar::before {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	margin: auto;
	background-color: #ccc;
	content: '';
}
.master.backup #contents .progress .bar b {
	display: block;
	position: relative;
	width: 0%;
	height: 100%;
	background-color: #6700FF;
}
.master.backup #contents .small {
	width: 140px;
}
.master.backup #contents td.status {
	background-repeat: no-repeat;
	background-position: 30px center;
	background-size: auto 1.5em;
}
.master.backup #contents td.success {
	background-image: url('../img/icon_true.svg');
}
.master.backup #contents td.error {
	display: table-cell;
	background-image: url('../img/icon_false.svg');
}

/**
 * .hash_compare : 改ざんチェック
 */
.hash_compare h2 + .btns {
	margin-top: 30px;
}
.hash_compare #contents .list {
	margin-top: 20px;
}
.hash_compare .list th:nth-child(1),
.hash_compare .list th:nth-child(2) {
	width: 150px;
}
.hash_compare .list th:last-child,
.hash_compare .list td:last-child {
	width: 60px;
	text-align: center !important;
}
.hash_compare td.result0 {
	padding-left: 2.2em !important;
	background: url('../img/icon_check_g.svg') no-repeat 5px center / 1.3em auto;
}
.hash_compare td.result1,
.hash_compare td.result2 {
	padding-left: 2.2em !important;
	background: url('../img/icon_false.svg') no-repeat 5px center / 1.3em auto;
	font-weight: bold;
	color: #C81B1B;
}
.hash_compare #file + label {
	display: block;
} 
.hash_compare #file + label::before {
	margin-bottom: 1em;
}
.hash_compare #file + label b {
	display: block;
	min-width: 360px;
	margin: 5px 0;
} 
.hash_compare .list + .btns {
	margin: 20px 0 0 0;
	text-align: right;
}

/**
 * #checklist : チェックリスト
 */
.btn_checkguide {
	vertical-align: middle;
}
.btn_checkguide span {
	padding-left: 1.5em;
	background: url('../img/icon_pen.svg') no-repeat left center / 1em auto;
}
#checklist {
	position: relative;
	box-sizing: border-box;
	min-width: 0;
	max-width: 0;
	background-color: #222;
	overflow: hidden;
	z-index: 101;
}
#checklist h2 {
	white-space: nowrap;
	margin-bottom: 0.5em;
	padding: 30px 15px 0;
	font-size: 2.4rem;
	font-weight: bold;
}
#checklist ul {
	box-sizing: border-box;
	width: 250px;
	max-height: calc(100% - 75px);
	padding: 0 10px 30px 15px;
	overflow: auto;
}
#checklist li {
	margin-top: 10px;
	background-color: #333;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
}
#checklist li.act {
	background-color: #B17DFF;
}
#checklist li h3 {
	font-size: 1.4rem;
	font-weight: bold;
}
#checklist li p {
	margin-top: 0.5em;
	font-size: 1.2rem;
}


/**
 * .arxive : バッチ改訂履歴
 */
header.arxive {
	background-color: #245A00;
}
header.arxive .time .renew {
	color: #00C589;
}
.arxive #contents .flex,
.arxive #contents .flex .head {
	display: flex;
	justify-content: space-between;
}
.arxive #contents .flex .head {
	margin-top: 30px;
}
.arxive #contents .flex .filter {
	margin-top: 0;
}
.arxive #contents .paging {
	float: none;
}
.arxive #contents .list {
	margin-top: 15px;
}
.arxive #contents .flex > div:nth-child(1) {
	width: 50%;
}
.arxive #contents .flex > div:nth-child(2) {
	width: calc(50% - 40px);
}
.arxive #contents .list.batch tr.act td,
.arxive #contents .list.batch tr:hover td {
	background-color: rgba(177,125,255,0.3) !important;
}
.arxive #contents .list.subbatch th:nth-child(3),
.arxive #contents .list.subbatch td:nth-child(3),
.arxive #contents .list.subbatch th:nth-child(4),
.arxive #contents .list.subbatch td:nth-child(4) {
	text-align: center;
}
.arxive #contents .list.subbatch .btn {
	min-width: 0;
	background-position: center center;
	background-size: 50% auto;
	background-repeat: no-repeat;
	margin: -13px 0;
	padding: 20px;
}
.arxive #contents .list.subbatch .btn_preview {
	background-image: url('../img/icon_preview.svg');

}
.arxive #contents .list.subbatch .btn_file {
	background-image: url('../img/icon_file.svg');
}

.arxive.record .step {
	display: block;
	margin-top: 30px;
}
.arxive.record .step ol {
	width: 100%;
}
.arxive.record .step ol::before {
	width: calc(100% - 16%);
	left: 8%;
}
.arxive.record .step ol::after {
	left: 8%;
}
.arxive.record_create01 .step ol::after {
	width: 0%;
}
.arxive.record_create02 .step ol::after {
	width: 14%;
}
.arxive.record_create03 .step ol::after {
	width: 28%;
}
.arxive.record_create04 .step ol::after {
	width: 42%;
}
.arxive.record_create05 .step ol::after {
	width: 56%;
}
.arxive.record_create06 .step ol::after {
	width: 70%;
}
.arxive.record_create07 .step ol::after {
	width: 84%;
}
.arxive.record_create02 #contents .list,
.arxive.record_create03 #contents .list,
.arxive.record_create04 #contents .list,
.arxive.record_create05 #contents .list,
.arxive.record_create06 #contents .list,
.arxive.record_create07 #contents .list {
	margin-top: 40px;
}
.arxive.record_create07 #contents .list0 th:nth-child(n+2),
.arxive.record_create07 #contents .list0 td:nth-child(n+2),
.arxive.record_create07 #contents .list1 th:nth-child(1),
.arxive.record_create07 #contents .list1 td:nth-child(1),
.arxive.record_create07 #contents .list1 th:nth-child(n+9),
.arxive.record_create07 #contents .list1 td:nth-child(n+9) {
	text-align: center;
}
.arxive.record_create07 .modal textarea {
	pointer-events: none;
}



/* .paging */
#contents .paging {
	float: right;
	display: flex;
	align-items: center;
}
#contents .paging p {
	margin-right: 20px;
}
#contents .paging .btn_prev,
#contents .paging .btn_next {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: #333;
}
#contents .paging .btn_prev:hover,
#contents .paging .btn_next:hover {
	background-color: #57486F
}
#contents .paging .btn_prev.inact,
#contents .paging .btn_next.inact {
	background-color: #333;
}
#contents .paging .btn_prev {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
#contents .paging .btn_next {
	margin-left: 1px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
#contents .paging .btn_prev::after,
#contents .paging .btn_next::after {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 10px;
	height: 10px;
	margin: auto;
	border-left: solid 1px #eee;
	border-bottom: solid 1px #eee;
	content: '';
}
#contents .paging .btn_prev::after {
	left: 5px;
	transform: rotate(45deg);
}
#contents .paging .btn_next::after {
	right: 5px;
	transform: rotate(-135deg);
}
@media screen and (max-width: 1024px) {#contents .paging .btn_prev,
	#contents .paging .btn_next {
		width: 32px;
		height: 32px;
	}
	#contents .paging .btn_prev::after,
	#contents .paging .btn_next::after {
		width: 7px;
		height: 7px;
	}
}

/* 位置固定ボタン */
#contents .btns.fixed {
	box-sizing: border-box;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 20px 40px;
	background-color: rgba(17,17,17,0.8);
	z-index: 100;
}
#checklist.open + .record #contents .btns.fixed {
	padding-left: 340px !important;
}

/* 表組の中のボタン */
.list .btn_trend,
.list .btn_edit,
.list .btn_preview,
.list .btn_delete,
.list .btn_detail,
.list .btn_ftp,
.list .btn_plus,
#gantt .btn_trend,
#gantt .btn_edit,
#gantt .btn_preview,
#gantt .btn_delete,
#gantt .btn_detail,
#gantt .btn_ftp,
.record_create02_detail .btn_delete {
	min-width: 0;
	background-image: url('../img/icon_trend.svg');
	background-position: center center;
	background-size: 50% auto;
	background-repeat: no-repeat;
	margin: -13px 0;
	padding: 20px;
}
.list .btn_edit,
#gantt .btn_edit {
	background-image: url('../img/icon_edit.svg');
}
.list .btn_delete,
#gantt .btn_delete,
.record_create02_detail .btn_delete {
	background-image: url('../img/icon_delete.svg');
	background-size: 48% auto;
}
.list .btn_preview,
#gantt .btn_preview {
	background-image: url('../img/icon_preview.svg');
}
.list .btn_detail,
#gantt .btn_detail {
	background-image: url('../img/icon_search.svg');
}
.list .btn_ftp,
#gantt .btn_ftp {
	background-color: #009BBB;
	background-image: url('../img/icon_ftp.svg');
}
.list .btn_ftp:hover,
#gantt .btn_ftp:hover {
	background-color: #61C3D8;
}
.list .btn_plus {
	background-image: url('../img/icon_plus.svg');
}
.list .btn_plus.act {

}


/* コメント全文表示 */
.btn_comment {
	display: inline-block;
	position: relative;
	cursor: pointer;
}
.btn_comment:hover {
	text-decoration: underline;
}
#comment_all {
	position: absolute;
	display: none;
	width: 0;
	height: 0;
	z-index: 100;
}
#comment_all > div {
	position: absolute;
	width: 300px;
	height: 80px;
	transform: translate(-100%, -100%);
	background-color: #333;
	box-shadow: 0 0 10px rgba(0,0,0,1);
	border-radius: 10px;
	padding: 20px;
	line-height: 1.6;
	font-size: 1.4rem;
	overflow: auto;
}

/**
 * #gantt : ガントチャート
 */
#gantt {
	overflow: auto;
}
#gantt .head,
#gantt .items {
	width: max-content;
	min-width: 100%;
	overflow: hidden;
}
#gantt .head,
#gantt .head .time,
#gantt .head .wide,
#gantt .head .minute,
#gantt .items .item,
#gantt .items .cells {
	position: relative;
	display: flex;
	text-align: center;
	white-space: nowrap;
}
#gantt .head {
	position: sticky !important;
	top: 0;
	z-index: 5;
}
#gantt .head .month,
#gantt .head .day,
#gantt .head .cell {
	padding: 8px 0;
	background-color: #413259;
	color: #fff;
}
#gantt .head .month,
#gantt .head .day,
#gantt .ttl,
#gantt .cell {
	border: solid #111 0.5px;
}
#gantt .ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky !important;
	left: 0;
	width: 120px;
	background-color: #333;
	z-index: 4;
}
#gantt .cell {
	box-sizing: border-box;
	min-width: 60px;
}
#gantt .wide .cell {
	min-width: 180px;
}
#gantt .items .ttl,
#gantt .items .cell {
	background-color: #222;
	padding: 20px 0;
}
#gantt .items .cells {
	position: relative;
}
#gantt .item .ttl,
#gantt .item .cell {
	cursor: pointer;
}
#gantt .item.select .ttl,
#gantt .item.select .cell {
	cursor: default;
}
#gantt .items .task,
#gantt .items .used_task {
	box-sizing: border-box;
	display: none;
	align-items: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin: auto;
	text-align: left;
	text-indent: 1em;
}
#gantt .items .task {
	padding: 5px 2px;
	background-color: #B17DFF;
	cursor: pointer;
	/*opacity: 0.9;*/
	z-index: 3;
}
#gantt .items .new .task {
	background-color: #6700FF;
}
#gantt .item.used .used_task {
	/*background-color: rgba(255,255,255,0.2);*/
	background-color: #666;
	pointer-events: none;
	padding: 12px 2px;
	z-index: 2;
}
#gantt .item.used .used_task,
#gantt .item.select .task {
	display: block;
	/*display: flex;
	justify-content: center;*/
}
#gantt .item.used .used_task span,
#gantt .item.select .task span {
	font-size: 1.2rem;
	white-space: nowrap;
}
#gantt .item .term {
	position: absolute;
	top: 0;
	width: 300px;
	height: 100%;
	background-color: #fff;
	opacity: 0.08;
	z-index: 1;
	pointer-events: none;
}


input[type="file"] {
	display: none;
}
input[type="file"] + label {
	display: flex;
	align-items: center;
	cursor: pointer;
}
input[type="file"] + label::before {
	display: inline-block;
	background-color:#6700FF;
	border-radius: 4px;
	padding: 10px 30px;
	white-space: nowrap;
	color: #fff;
	content: 'ファイルを選択';
	cursor: pointer;
	transition: 0.3s;
}
input[type="file"] + label:hover::before {
	background-color: #B17DFF;
}
input[type="file"] + label b {
	display: inline-block;
	margin-left: 1em;
}
