@charaset "utf-8";

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
}

@media all and (-ms-high-contrast: none) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

@media all and (-ms-high-contrast: active) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

/* リンク */
a {
  transition: .3s all ease;
  color: #0054a7;
}

a:hover {
  color: #40bc3a;
}

input[type=button],
button[type=button] {
  transition: .3s all ease;
}

button:hover {
  opacity: .7;
}

/* クリア */
.cf:after {
  content: "";
  display: block;
  clear: both;
}

/* フッタ最下部 */
.allcontents {
  min-height: 100vh;
  position: relative;
  padding-bottom: 60px;
  box-sizing: border-box;
  background-color: #f3f3f3;
}

/* ヘッダ */
#header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 3px #ccc;
  position: relative;
  z-index: 1000;
}

.h__box {
  width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  float: left;
  line-height: 35px;
  color: #0054a7;
  font-weight: bold;
  font-size: 21px;
  display: flex;
}

h1 img {
  width: 40px;
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
}

h2 {
  font-size: 21px;
  border-left: 6px solid #696969;
  padding: 3px 0 3px 10px;
  color: #696969;
  margin: 25px 0 20px;
}

.h__menu_list {
  display: flex;
  align-items: center;
}

.h__menu_list li {
  margin-right: 20px;
}

.h__menu_list li:last-child {
  margin-right: 0;
}

.h__menu_list li a {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.h__menu_list li a::before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.h__menu_news a::before {
  background-image: url(../img/img_icon_news.svg);
}

.h__menu_contact a::before {
  background-image: url(../img/img_icon_contact.svg);
  margin-top: 2px;
}

.h__menu_logout button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  font-size: 14px;
}

.h__menu_logout img {
  width: auto;
  height: 17px;
  margin-right: 5px;
}

/* コンテナ */
#container {
  padding-top: 20px;
  padding-bottom: 10px;
  background: #f3f3f3;
  width: 100%;
}

/* タブメニュー */
#tabmenu {
  width: 1110px;
  margin: 0 auto;
  border-bottom: 5px solid #0054a7;
  box-shadow: 1px 1px 3px #ccc;
  position: relative;
  z-index: 1000;
  font-size: 15px;
  border-radius: 5px 5px 0 0;
}

#tabmenu ul {
  display: flex;
}

#tabmenu li {
  width: 270px;
  margin-right: 10px;
}

#tabmenu li:last-child {
  margin-right: 0;
}

#tabmenu span,
#tabmenu a {
  display: flex;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  border-radius: 5px 5px 0 0;
  justify-content: center;
  align-items: center;
}

#tabmenu span {
  background: #0054a7;
  color: #fff;
}

#tabmenu a {
  background: #d9d9d9;
  color: #000;
}

#tabmenu a:hover {
  background: #0054a7;
  color: #fff;
}

#tabmenu span::before,
#tabmenu a::before {
  content: "";
  display: block;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: .3s all ease;
}

.tab__list_real span::before {
  background-image: url(../img/img_icon_real_on.svg);
}

.tab__list_real a::before {
  background-image: url(../img/img_icon_real_off.svg);
}

.tab__list_real a:hover::before {
  background-image: url(../img/img_icon_real_on.svg);
}

.tab__list_p1 span::before,
.tab__list_p2 span::before,
.tab__list_p3 span::before,
.tab__list_p4 span::before,
.tab__list_p5 span::before {
  background-image: url(../img/img_icon_point_on.svg);
}

.tab__list_p1 a::before,
.tab__list_p2 a::before,
.tab__list_p3 a::before,
.tab__list_p4 a::before,
.tab__list_p5 a::before {
  background-image: url(../img/img_icon_point_off.svg);
}

.tab__list_p1 a:hover::before,
.tab__list_p2 a:hover::before,
.tab__list_p3 a:hover::before,
.tab__list_p4 a:hover::before,
.tab__list_p5 a:hover::before {
  background-image: url(../img/img_icon_point_on.svg);
}

/* コンテンツ */
#content {
  background: #fff;
  width: 1060px;
  margin: 0 auto;
  padding: 25px;
  box-shadow: 1px 1px 3px #ccc;
  position: relative;
  z-index: 1000;
  border-radius: 0 0 5px 5px;
}

/* 設定 */
.settei input[type="text"] {
  border: 1px solid #999;
  padding: 9px 10px;
  border-radius: 5px;
  font-size: 13px;
}

.settei input[type="button"] {
  border-radius: 5px;
  border: none;
}

.settei input[type="button"]:hover {
  opacity: .7;
  cursor: pointer;
}

#datepicker {
  margin: 0 5px;
}

.prev,
.next {
  padding: 7px 12px 6px;
  background: #eeeeee;
}

.csv {
  margin: 0 0 0 10px;
  padding: 7px 20px 6px;
  background: #40bc3a;
  color: #fff;
}



.fdl {
  margin: 0 0 0 10px;
  padding: 7px 49px 6px;
  background-color: #0054a7;
  color: #fff;
}

.alarm {
  margin: 0 0 0 10px;
  padding: 7px 49px 6px;
  background-color: #0054a7;
  color: #fff;
}

.kakudai {
  float: left;
}

.enzan,
.zoom,
.reset {
  padding: 7px 30px 6px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}

.enzan,
.zoom {
  background: #0054a7;
  color: #fff;
  margin-right: 10px;
}

.reset {
  background: #eeeeee;
}

.settingbox {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.timebox {
  display: flex;
  align-items: center;
}

.starttime p,
.endtime p {
  margin: 10px 0 0 0;
}

.starttime,
.endtime {
  display: flex;
}

.kara {
  margin: 0 10px;
}

.starttime select:hover,
.endtime select:hover {
  cursor: pointer;
}

.select1,
.select2,
.select3,
.select4 {
  width: 60px;
  float: left;
  position: relative;
}

.select__label {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.select__label::after {
  position: absolute;
  right: 10px;
  transform: rotate(45deg);
  width: 4px;
  height: 4px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  content: '';
  pointer-events: none;
}

.select__label select {
  appearance: none;
  min-width: 60px;
  height: 2.8em;
  padding: .4em calc(.8em + 10px) .4em .8em;
  border-radius: 5px;
  border: 1px solid #999;
  color: #000;
  cursor: pointer;
}

.select__label select:focus {
  background-color: #d5ecff;
  outline: none;
}



.select1 {
  margin: 0 5px;
}

.select2 {
  margin: 0 5px;
}

.select3 {
  margin: 0 5px;
}

.select4 {
  margin: 0 5px;
}

.endtime {
  margin-right: 20px;
}

.alarmt h2,
.alarmt div,
.alarmt select {
  float: left;
}

.alarmt h2 {
  margin: 7px 0 22px 0;
}

.alarmt div {
  width: 80px;
  margin-left: 20px;
}

.alarmt select:hover {
  cursor: pointer;
}

.alarmt select {
  width: 100%;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #999;
  background: #eee;
  background: url(img/arrow01.png) right 50% no-repeat, -webkit-linear-gradient(top, #fff 0%, #efefef 100%);
  background: url(img/arrow01.png) right 50% no-repeat, linear-gradient(to bottom, #fff 0%, #efefef 100%);
  background-size: 20px, 100%;
}

/* 設定end */

.btn_set {
  border: 1px solid #999;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #efefef 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #efefef 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#efefef', GradientType=0);
  margin: 0 0 0 30px;
  padding: 8px 10px;
  color: #222;
  width: 100px;
}

.btn_set:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f7', GradientType=0);
  color: #79cfd7;
}

.set1 {
  margin-bottom: 20px;
}

.set1 p {
  float: left;
  line-height: 38px;
}

.set1 div {
  float: left;
  width: 100px;
  position: relative;
  margin: 0 5px;
}

.set1 select {
  width: 100%;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #999;
  background: #eee;
  background: url(img/arrow01.png) right 50% no-repeat, -webkit-linear-gradient(top, #fff 0%, #efefef 100%);
  background: url(img/arrow01.png) right 50% no-repeat, linear-gradient(to bottom, #fff 0%, #efefef 100%);
  background-size: 20px, 100%;
  font-size: 13px;
  cursor: pointer;
}

.set1 div::before {
  position: absolute;
  top: 1em;
  right: 0.6em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666666;
  pointer-events: none;
}



.set2 p,
.set2 div,
.set2 dt,
.set2 dd {
  float: left;
}

.set2 dl {
  margin-bottom: 10px;
}

.p1 dt::before,
.p2 dt::before,
.p3 dt::before,
.p4 dt::before {
  display: block;
  width: 12px;
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
}

.p1 dt::before {
  border-bottom: 3px solid #4e73be;
}

.p2 dt::before {
  border-bottom: 3px solid #df8244;
}

.p3 dt::before {
  border-bottom: 3px solid #f8d63b;
}

.p4 dt::before {
  border-bottom: 3px solid #929292;
}

.set2 dt {
  width: 55px;
  position: relative;
  padding-left: 17px;
  margin-left: 5px;
}

.set2 label:hover,
.set2 input:hover {
  cursor: pointer;
}

.chk-input {
  display: none;
}

.chk-input+label {
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
}

.chk-input+label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
}

.chk-input:checked+label {
  color: #0054a7;
}

.chk-input:checked+label::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 4px;
  width: 6px;
  height: 5px;
  border-left: 3px solid #0054a7;
  border-bottom: 3px solid #0054a7;
  transform: rotate(-45deg);
}

.content_real table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
}

.content_kobetu table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: separate;
  border-spacing: 0;
  box-sizing: border-box;
}

.content_real table th,
.content_kobetu table th {
  color: #fff;
  background: #0054a7;
  border-right: 1px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 10px 0;
  font-size: 13px;
  font-weight: bold;
}

.content_real table th:first-child,
.content_kobetu table th:first-child {
  border-radius: 5px 0 0 0;
}

.content_real table th:last-child,
.content_kobetu table th:last-child {
  border-radius: 0 5px 0 0;
}

.content_real table td,
.content_kobetu table td {
  padding: 10px 0;
  text-align: center;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-color: #ebebec;
}

.content_real table tr:last-child td:first-child,
.content_kobetu table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.content_real table tr:last-child td:last-child,
.content_kobetu table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

.content_real table td:first-child {
  width: 130px;
  background: #dde5f3;
}

.content_kobetu table td:first-child {
  width: 180px;
  background: #dde5f3;
}

.content_real table td:nth-child(2),
.content_real table td:nth-child(3),
.content_real table td:nth-child(4),
.content_kobetu table td:nth-child(2),
.content_kobetu table td:nth-child(3) {
  width: 180px;
}

.ijo {
  color: #fff;
  background: #ff0000;
}

.graphbox {
  margin: 20px 0;
}

.graphbox1,
.graphbox2 {
  margin: 5px 0 20px;
}

.graphbox img,
.graphbox1 img,
.graphbox2 img {
  width: 100%;
}

/* フッタ */
#footer {
  text-align: center;
  font-size: 10px;
  height: 30px;
  line-height: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0 -1px 3px #ccc;
  position: absolute;
  bottom: 0;
  z-index: 1000;
}

/* ログイン */
#loginbox {
  background: #fff;
  width: 260px;
  margin: 150px auto;
  padding: 15px 25px 25px;
  box-shadow: 1px 1px 3px #ccc;
  position: relative;
  z-index: 1000;
}

.login-page {
  text-align: center;
}

.login-page h2 {
  border-left: none !important;
  font-weight: bold;
}

.login-page p {
  margin: 20px 0;
}

.login-page input[type="text"],
.login-page input[type="password"] {
  border: 1px solid #999;
  padding: 9px 10px;
  border-radius: 5px;
  font-size: 13px;
  width: 200px;
}

.login-page input[type="submit"] {
  border: 1px solid #999;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #efefef 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #efefef 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#efefef', GradientType=0);
  padding: 10px 70px;
  width: 220px;
}

.login-page input[type="submit"]:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f7', GradientType=0);
  color: #999;
}

.login-page .message {
  color: #ff0000;
}

/*insert*/
.input_err {
  color: #FF0000;
  font-weight: bold;
  font-size: 11px;
}

/*load*/
.loadbox {
  position: relative;
  width: 100%;
  height: 532px;
}

.loadpos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

/*form*/
.monthbox {
  width: 100%;
  margin-bottom: 20px;
}

.monthbox th {
  background: #0054a7;
  border: 1px solid #636262;
  color: #fff;
}

.monthbox th div {
  float: left;
  margin: 10px 0;
}

.monthbox th .mt {
  padding: 4px 0 0;
  margin-left: 450px;
  margin-right: 10px;
}

.monthbox td {
  border: 1px solid #636262;
}

.monthbox ul {
  margin: 20px 0 20px 40px;
}

.monthbox li {
  float: left;
  width: 145px;
  padding: 10px 20px 10px 0;
}

/*alarmlist*/
.content_alarm table {
  width: 100%;
  margin-bottom: 30px;
  border-top: 1px solid #636262;
  border-left: 1px solid #636262;
}

.content_alarm table th {
  color: #fff;
  background: #0054a7;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #636262;
  padding: 10px 0;
  font-size: 13px;
  font-weight: bold;
}

.content_alarm table th:last-child {
  border-right: 1px solid #636262;
}

.content_alarm table td {
  padding: 10px 0;
  text-align: center;
  border-right: 1px solid #636262;
  border-bottom: 1px solid #636262;
}

.content_alarm table td:first-child {
  width: 180px;
  background: #ebebec;
}

.content_alarm table td:nth-child(2),
.content_alarm table td:nth-child(3) {
  width: 180px;
}

/* table */
.tbl-result {
  width: 100% !important;
}