@charset "utf-8";
/* CSS Document */

*{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

body{
	font-size: 0.85em;
	margin: 0;
	padding: 0;
	background: #666 url("../images/back.png");
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, th, td{
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 100%;
	font-weight: normal;
}

a{
	text-decoration: none;
	color: #006393;
}

a:hover{
	color: #BF0029;
	color: #BF0029;
	text-decoration: underline;
}

input[type="text"],input[type="submit"]{
	border-radius: 0;
}

input[type="submit"],input[type="checkbox"],input[type="radio"],button{
	cursor: pointer;
}

/*#########################################################
ヘッダー
#########################################################*/
#header{
	border-bottom: 3px solid #333;
	background-color: #FFF;
	height: 50px;
	box-sizing: border-box;
}

.logo{
	display: block;
	background: url("../images/logo.svg") no-repeat center center / auto 60px;
	width: 70px;
	height: 47px;
	float: left;
}

#header h1{
	padding-left: 5px;
	font-size: 120%;
	float: left;
	line-height: 1;
	height: 47px;
	display: flex;
	align-items: center;
}



#header .rightmenu{
	float: right;
	width: calc(100% - 500px);
	padding-right: 80px;
}

.authority{
	float: right;
	padding-right: 110px;
	line-height: 50px;
	background: url("../images/account-k.svg") no-repeat top 10px right 70px / 30px 30px;
}

/*##################################################
ドロワーメニュー
##################################################*/
#drawernav{
	position: fixed;
	top: 0;
	right: -260px;
	width: 260px;
	background: #333;
	color: #fff;
	z-index: 200;
	box-sizing: border-box;
	transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
	height: 100%;
}

#drawernav .hidden_box{
	width: calc(100% + 17px);
	overflow-y: scroll;
	height: 100%;
}

.sys_title{
	padding-left:10px;
	line-height: 47px;
}

#drawernav .menu_title{
	background-color: #000;
	padding: 10px;
	font-weight: 200;
	color: #FFF;
}

#drawernav ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

#drawernav ul li{
	margin: 0;
	text-decoration: none;
}

#drawernav ul li a{
	color: #fff;
	display: block;
	font-weight: 200;
	font-size: 90%;
	padding: 10px 10px 10px 50px;
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: 20px 20px;
	transition: .3s;
}

.hidden_box a:hover{
	background-color: rgba(0,0,0,0.6);
}

#drawernav h4{
	padding: 0 15px; 
}

#humberger{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 203;
	width: 25px;
	height: 20px;
	padding: 16px 12.5px 12px;
	cursor: pointer;
	background: #333;
}

#humberger .hum_title{
	font-size: 80%;
	margin: -3px -10px auto;
	display: block;
	height: 20px;
	color: #FFF;
	text-align: center;
}

.icon-bar{
	height: 3px;
	background: #FFF;
	display: block;
	margin-bottom: 5px;
	transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
}

.fixed-content{
	right: inherit;
	width: 100%;
	z-index: 202;
	transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
}

#overlay{
	z-index:-1;
	opacity: 0;
	background: #000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
	   -moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
		 -o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
			transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
	-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
		 -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); 
			transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
}

body.drawer-opened #page{
	left: -240px;
	box-shadow: 1px 0 2px #000;
	-webkit-box-shadow: 1px 0 2px #000;
}

body.drawer-opened .fixed-content{
	left: -240px;
}

body.drawer-opened #drawernav{
	right: 0;
}

body.drawer-opened #humberger .icon-bar{
	background: #fff;
}

body.drawer-opened #humberger{
	background-color: #000;
}

body.drawer-opened #humberger :nth-child(1){
	transform:translate(0,8px) rotate(45deg);
	-webkit-transform:translate(0,8px) rotate(45deg);
}

body.drawer-opened #humberger :nth-child(2){
	transform:translate(-20px ,0);
	-webkit-transform:translate(-20px ,0);
	opacity:0;
}

body.drawer-opened #humberger :nth-child(3){
	transform:translate(0,-8px) rotate(-45deg);
	-webkit-transform:translate(0,-8px) rotate(-45deg);
}

body.drawer-opened #overlay{
	z-index: 203;
	opacity: 0.3;
	left: -260px;
}


/*#########################################################
ログイン
#########################################################*/
#login{
	max-width: 400px;
	margin: 30px auto;
	text-align: center;
	padding: 15px 30px;
	background-color: #FFF;
	border-radius: 5px;
}

#login *{
	margin: 15px auto;
}

#login input{
	padding: 10px;
}

/*#########################################################
メニュー画面
#########################################################*/
.menu#content{
	padding: 0 0 20px;
}

.mainmenu_title{
	color: #FFF;
	text-align: center;
	padding: 20px;
	font-size: 120%;
}

.menu_bt{
	overflow: hidden;
	max-width: 830px;
	margin: auto;
}

.menu_bt li,.menu_bt li a{
	width: 200px;
	height: 200px;
}

@media only screen and (max-width:830px){
	.menu_bt li,.menu_bt li a{
		width: calc(25vw - 4px);
		height: calc(25vw - 4px);
	}
}
@media only screen and (max-width:500px){
	.menu_bt li,.menu_bt li a{
		width: calc(50vw - 4px);
		height: calc(50vw - 4px);
	}
}

.menu_bt li{
	float: left;
	margin: 2px;
}

.menu_bt li a{
	display: block;
	background-repeat: no-repeat;
	background-position: center calc(50% - 25px);
	background-size: 60px;
	padding-top:66%;
	box-sizing: border-box;
	color: #FFF;
	text-align: center;
	transition: .2s;
}

.menu_bt li a:hover{
	background-size: 80px;
	text-decoration: none;
}

.top a{
	background-image:url("../images/top.svg");
}

.new a{
	background-image:url("../images/new.svg");
}

.menu_bt .new a,.new a:hover{
	background-color: rgba(255,218,0,0.6);
}

.monitor a{
	background-image:url("../images/monitor.svg");
}

.menu_bt .monitor a,.monitor a:hover{
	background-color: rgba(54,219,0,0.6);
}

.status a{
	background-image:url("../images/status.svg");
}

.menu_bt .status a,.status a:hover{
	background-color: rgba(2,206,200,0.6);
}

.report a{
	background-image:url("../images/report.svg");
}

.menu_bt .report a,.report a:hover{
	background-color: rgba(255,66,0,0.6);
}

.break a{
	background-image:url("../images/break.svg");
}

.menu_bt .break a,.break a:hover{
	background-color: rgba(239,46,112,0.60);
}

.breakgraph a{
	background-image:url("../images/breakgraph.svg");
}

.menu_bt .breakgraph a,.breakgraph a:hover{
	background-color: rgba(79,68,221,0.60);
}

.account-w a{
	background-image:url("../images/account-w.svg");
}

.menu_bt .account-w a,.account-w a:hover{
	background-color: rgba(255,77,247,0.6);
}

.user a{
	background-image:url("../images/user.svg");
}

.menu_bt .user a,.user a:hover{
	background-color: rgba(110,145,255,0.6);
}

.equipment a{
	background-image:url("../images/equipment.svg");
}

.menu_bt .equipment a,.equipment a:hover{
	background-color: rgba(240,142,0,0.60);
}

.model a{
	background-image:url("../images/model.svg");
}

.menu_bt .model a,.model a:hover{
	background-color: rgba(0,175,49,0.6);
}

.studylist a{
	background-image:url("../images/studylist.svg");
}

.menu_bt .studylist a,.studylist a:hover{
	background-color: rgba(0,175,150,0.60);
}

.study a{
	background-image:url("../images/study.svg");
}

.menu_bt .study a,.study a:hover{
	background-color: rgba(239,103,141,0.60);
}

.lambda a{
	background-image:url("../images/lambda.svg");
}

.menu_bt .lambda a,.lambda a:hover{
	background-color: rgba(162,96,235,0.60);
}

.label a{
	background-image:url("../images/label.svg");
}

.menu_bt .label a,.label a:hover{
	background-color: rgba(212,97,53,0.60);
}

.dbbackup a{
	background-image:url("../images/dbbackup.svg");
}

.menu_bt .dbbackup a,.dbbackup a:hover{
	background-color: rgba(176,200,0,0.60);
}

.testjikkou a{
	background-image:url("../images/testjikkou.svg");
}

.menu_bt .testjikkou a,.testjikkou a:hover{
	background-color: rgba(80,144,212,0.60);
}

.jikkou a{
	background-image:url("../images/jikkou.svg");
}

.menu_bt .jikkou a,.jikkou a:hover{
	background-color: rgba(184,23,0,0.60);
}

.system a{
	background-image:url("../images/system.svg");
}

.menu_bt .system a,.system a:hover{
	background-color: rgba(195,195,195,0.60);
}

.logauto a{
	background-image:url("../images/logauto.svg");
}


/*#########################################################
コンテンツ
#########################################################*/
#content{
	padding: 10px 20px;
	position: relative;
	z-index: 0;
	clear: both;
}

#pankuzu{
	padding-bottom: 10px;
}

#pankuzu li{
	display: inline-block;
	color: #FFF;
	font-size: 85%;
}

#pankuzu li::after{
	content: "　>　"
}

#pankuzu li:last-child::after{
	content: ""
}

#pankuzu a{
	color: #CAE4FF;
	text-decoration: underline;
}

.label_wrap{
	display: flex;
	width: 100%;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.shinki,.henshuu{
	margin-left: 15px;
	min-height: calc(15px + 2em);
}

.shinki span,.henshuu span{
	display: block;
	color: #1334B0;
	background: #CADDFF;
	border: 1px solid #407CBC;
	padding: 5px;
	box-sizing: border-box;
	width: 100px;
	text-align: center;
}

.henshuu span{
	color: #B02613;
	background: #FFCECA;
	border: 1px solid #B02613;
}

#contenthead{
	overflow: hidden;
	padding-bottom: 10px;
}

#content h2{
	color: #FFF;
	font-size: 135%;
	text-align: center;
}

#contenthead h2{
	float: left;	
	text-align: left;
}

h3{
	color: #FFF;
	padding: 10px 0 5px;
}

.add,.reload {
	float: left;
	padding-left: 30px;
}

#content .add a,.reload a{
	display: block;
	color: inherit;
	background: #FFF;
	padding: 5px 10px 5px 30px;
	position: relative;
}

.reload a{
	background: #FFF url("../images/reload.svg") no-repeat left center / 30px 30px;
}

#content .add a::before,#content .add a::after{
	content: "";
	display: block;
	width: 15px;
	height: 3px;
	background: #333;
	position: absolute;
	left: 7px;
	top: 13px;
}

#content .add a::after{
	width: 3px;
	height: 15px;
	left: 13px;
	top: 7px;
}

#content .add a:hover{
	background:#EF8011;
	color: #FFF;
}

#content .add a:hover::before,#content .add a:hover::after{
	background: #FFF;
}

#search{
	float: right;
	overflow: hidden;
}

#content .keyword{
	padding: 5px;
	height: 20px;
	width: 200px;
	float: left;
	border: none;
	border-radius: 0;
	background: #FFF;
}

.search,#spsearch{
	border: none;
	width: 30px;
	height: 30px;
	display: inline-block;
	padding: 0;
	float: left;
	background:#FFF url("../images/search.svg") no-repeat center center / 18px;
}

#spsearch{
	display: none;
}

.edit_field .generate{
	display: inline-flex;
	margin-left: 10px;
	font-size: 90%;
}

input[type=text],
input[type=email],
input[type=password],
input[type=url]{
	height: 20px;
	border: 0;
	padding: 5px;
	border-radius: 5px;
	background-color: #EEE;
}


.edit_field input.wide_form{
	width: calc(100% - 10px);
}

.edit_field input:focus{
	background-color: #F4F2E8;
}

.edit_field select{
	padding: 5px;
	border: 0;
	background-color: #EFEFEF;
	border-radius: 5px 0 0 5px;
	cursor: pointer;
}
.bt_box{
	text-align: center;
}

.submit a,
a.update,.small_btn{
	display: inline-block;
	width: 10em;
	margin: 10px 5px;
	color: #FFF;
	background-color: #2280E4;
	text-align: center;
	padding: 10px;
	font-size: 110%;
	border-radius: 30px;
}

.small_btn{
	width: auto;
	margin: 3px 0px;
	padding: 3px 5px;
	font-size: 100%;
	border-radius: 5px;
	border: none;
	cursor: pointer;
}

a.long_btn{
	width: auto;
}

.submit a:hover,
a.update:hover,.small_btn:hover{
	background-color: #5CA5F4;
}

a.orange_bt{
	background-color: #FF6700;
}

a.orange_bt:hover{
	background-color: #FF9349;
}

a.cancel{
	display: inline-block;
	width: 8em;
	margin: 20px 5px;
	color: #FFF;
	background-color: #999;
	text-align: center;
	padding: 10px;
	font-size: 110%;
	border-radius: 30px;
}

a.cancel:hover{
	background-color: #BBB;
}


#content .generate a{
	background-color: #0086A5;
	color: #FFF;
	padding: 5px 10px;
	border-radius: 30px;
}

#content .generate a:hover{
	background-color: #005367;
}

.form{
	margin: 10px auto;
}

#content table[border="1"]{
	border-spacing:0px;
	border:none;
}

#content table[border="1"]>tbody>tr>td,#content table[border="1"]>tbody>tr>th,#content table[border="1"]>thead>tr>th{
	padding:4px 5px;
	background:#FFF;
	border:none;
    line-height: 1.25;
}

#content table[border="1"]>tbody>tr>th,
#content table[border="1"]>thead>tr>th{
	background-color: #2280E4;
	text-align: left;
	color: #FFF;
	vertical-align: top;
}

#content table[border="1"].form>tbody>tr>th,
#content table[border="1"].form>thead>tr>th{
	background-color: #C8E5F1;
	color: #333;
	border-bottom: 1px solid #A7C9F1;
	vertical-align: middle;
}

#content table[border="1"].form>tbody>tr>td{
	border-bottom: 1px solid #BFE1EF;
}

#content table[border="1"].form>tbody>tr:last-child>th,
#content table[border="1"].form>thead>tr:last-child>th,
#content table[border="1"].form>tbody>tr:last-child>td{
	border-bottom: none;
}

#content table[border="1"]:not(.form)>tbody>tr:nth-of-type(2n+1)>td{
	background: #EFEFEF;
}

#content table[border="1"]:not(.form)>tbody>tr:hover>td{
	background: #CFECFF;
}

#content .hissu{
	background-color: #B50003;
	color: #FFF;
	font-size: 75%;
	margin-right: 5px;
	padding: 2px 5px;
	border-radius: 5px;
}

#content .nini{
	background-color: #0062AA;
	color: #FFF;
	font-size: 75%;
	margin-right: 5px;
	padding: 2px 5px;
	border-radius: 5px;
}

.pankuzu{
	margin: -20px -50px 20px;
	background-color: #FFF;
	padding: 10px 20px;
	font-size: 90%;

}

/****** on・offスイッチ *****/
#content .switch {
    border: solid 1px #ccc;
    border-radius: 20px;
    display: inline-block;
    height: 20px;
    overflow: hidden;
    -ms-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    width: 80px;
	margin: 3px 0 -3px;
	padding: 0;
}

#content .switch [type=checkbox] {
    display: none;
}
#content .switch .label {
    cursor: pointer;
    margin-left: -60px;
    -ms-transition: margin .1s;
    -moz-transition: margin .1s;
    -o-transition: margin .1s;
    -webkit-transition: margin .1s;
    transition: margin .1s;
    white-space: nowrap;
}
#content .switch :checked + .label {
    margin-left: 0;
}
#content .switch .label > * {
    vertical-align: top;
}
#content .switch .on,
#content .switch .off {
    display: inline-block;
    height: 20px;
    line-height: 20px;
    text-align: center;
    width: 70px;
}
#content .switch .on {
    background-color: #00f;
    background-image: -ms-linear-gradient(
        top,
        hsl(214,90%,40%),
        hsl(214,90%,70%)
        );
    background-image: -moz-linear-gradient(
        top,
        hsl(214,90%,40%),
        hsl(214,90%,70%)
        );
    background-image: -o-linear-gradient(
        top,
        hsl(214,90%,40%),
        hsl(214,90%,70%)
        );
    background-image: -webkit-linear-gradient(
        top,
        hsl(214,90%,40%),
        hsl(214,90%,70%)
        );
    background-image: linear-gradient(
        top,
        hsl(214,90%,40%),
        hsl(214,90%,70%)
        );
    box-shadow:
        3px 2px 10px rgba(0,0,0,.2) inset,
        -3px 2px 10px rgba(0,0,0,.2) inset;
    color: #fff;
    text-shadow: -1px -1px rgba(0,0,0,.3);

}
#content .switch .separator {
    background-color: #eee;
    border: solid 1px #999;
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow:
         1px 2px #fff inset,
        -1px 2px #fff inset,
        1px 1px 5px rgba(0,0,0,.2);
    display: inline-block;
    height: 20px;
    margin: 0 -15px;
    position: relative;
    width: 20px;
}
#content .switch .off {
    background-color: #eee;
    box-shadow: 5px 5px 10px rgba(0,0,0,.2) inset;
    color: #777;
    text-shadow: 1px 1px #fff;
}
.ime-mode_active {
	ime-mode: active;
}

.ime-mode_disabled {
	ime-mode: disabled;
}

.clear {
	clear: both;
}

.user_info{
	float:right;
	color:#FFF;
}

.user_info2{
	color:#FFF;
}

.user_info span,.user_info2 span{
	display: inline-block;
}

.formwrap{
	width: 900px;
	margin: auto;
}

.jqplot-target{
	color: #FFF !important;
}

.alert1 {
	background-color: #FFFF00 !important;
}

.alert2 {
	background-color: #FF8000 !important;
}

.alert3 {
	background-color: #FF0000 !important;
}
.alert3 font {
	color: #000000 !important;
}

	
select.search_sel{
    height: 30px;
    border: 0;
    min-width: 100px;
	float: left;
}


li.alert{
	display: inline-block;
	padding: 3px 5px;
	font-size: 85%;
}

li.level1{
	background-color: #FFFF00;
}

li.level2{
	background-color: #FF8000;
}


li.level3{
	background-color: #FF0000;
	margin-right: 15px;
}

.hanrei li{
	background: none;
	color: #FFF;
	position: relative;
	padding-left: 15px;
	margin-left: 10px;
}

.hanrei li::before{
	content: "";
	width: 10px;
	height: 60%;
	background: #FFF;
	position: absolute;
	top: 15%;
	left: 0;
}

.hanrei li.level1::before{
	background-color: #FFFF00;
}

.hanrei li.level2::before{
	background-color: #FF8000;
}

.hanrei li.level3::before{
	background-color: #FF0000;
}

/*故障予測リスト*/
.width_over{
    overflow: auto;
    max-height: calc(100vh - 120px)
}

.width_over table{
	width: 100%;
	min-width: 1200px;
}

.width_over table,.width_over thead,
.width_over tbody {
  display: block;
}

.width_over tr{
	display: flex;
	width: 100%;
}

.width_over thead {
	position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}

.redth{
    background: #A22E2E !important;
    color: #FFF;
}

.pinkth{
    background: #FFC0C1 !important;
	color: #000 !important;
}

.greenth{
    background: #ACE1A8 !important;
}

.koshouyosoku tr:nth-of-type(5n+1) th,.koshouyosoku tr:nth-of-type(5n+1) td{
    border-bottom-width: 2px !important;
}

.koshouyosoku td.ijou{
    background: #FFE8E8 !important;
}

.percent{
	text-align: right;
}

.pinkth,.redth,.percent{
	width: 3.5%;
}

.em4{
	width: 7%;
}

.em6{
	width: 10%;
}

.em10{
	width: 20.5%;
}

.circle{
    table-layout: fixed;
}

.circle td{
    font-size: 200%;
    font-weight: bold;
    padding: 0 !important;
}

/*選択ボタン*/
.choosewrap{
	display: flex;
	max-width: 900px;
	width: 100%;
	margin: 20px auto 10px;
}

.choose{
	width: 50%;
	padding: 0 10px;
	box-sizing: border-box;
}

.choose ul{
	max-height: 185px;
	overflow-y: scroll;
	padding-right: 10px;
}

.choose label{
	cursor: pointer;
	display: block;
	margin: 5px 0;
}

.choose span,.white_btn{
	display: block;
	background: #FFF;
	padding: 5px 5px 5px 30px;
	border-radius: 5px;
	position: relative;
}

.white_btn{
	padding: 5px;
	border: none;
	margin: 5px 0;
	color: #333;
}

.white_btn:hover{
	color: #333;
	text-decoration: none;
	background: #FFDEBD;
}

.choose span::before{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border: 2px solid #666;
	position: absolute;
	background: #CCC;
	top: 7px;
	left: 8px;
}

.choose input[type="radio"] + span::before{
	border-radius: 100%;
}

.choose span:hover{
	background: #FFDEBD;
}

.choose input:checked + span{
	background: #FF7518;
	color: #FFF;
}

.choose input:checked + span::before{
	background: #FFF;
	border-color: #000
}

.choose input[type="checkbox"]:checked + span::after{
	content: "";
	display: block;
	width: 6px;
	height: 3px;
	border-bottom: 2px solid #000;
	border-left: 2px solid #000;
	transform: rotate(-45deg);
	position: absolute;
	top: 10px;
	left: 11px;
}

.choose input{
	display: none;
}

.text{
	background: #FFF;
	padding: 10px 20px;
	font-size: 120%;
	max-width: 14em;
	margin: 20px auto;
}

.white{
	color:#FFF;
}

/*はみでるtable*/
.over {
	overflow-y: scroll;
	position: relative;
    max-height: calc(100vh - 120px);
}
.over table {
	min-width: 100%;
}
.over table:first-child {
	position: -webkit-sticky; /* Safari */
	position: sticky;
	top:0;
}
	
.over table:first-child tbody *,.over table:last-child thead *{
	visibility : hidden;
	overflow: hidden;
	line-height: 0px !important;
	padding-bottom: 0px !important;
	padding-top: 0px !important;
	height: 0px !important;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	border-top: 0px !important;
	border-bottom: 0px !important;
}