* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: small;
}

/* ローダー */
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0,0,0,.5);
  z-index: 2;
}
#loader {
  display: none;
  position: fixed;
  top: 300px;
  left: 50%;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 3;
}

/* ポップアップ */
#popup-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0,0,0,.5);
  z-index: 2;
}
#popup-content {
  display: none;
  position: fixed;
  width: 50%;
  top: 100px;
  left: 25%;
  height: 300px;
  text-align: center;
  background-color: #fff;
  z-index: 3;
}
#popup-msg {
  text-align: left;
  color: red;
}

/* ページレイアウト */
.app {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
}

.sidebar {
  width: 10em;
  //min-width: 10em;
  color: white;
  background-color: #43425D;
  box-sizing: border-box;
}

.content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.header {
  height: 3.5em;
  background-color: white;;
  box-sizing: border-box;
  vertical-align: middle;
  width: 100%;
  position: fixed;
  border: 1px solid rgba(112,112,112,0.216);
}

.page {
  flex-grow: 1;
  box-sizing: border-box;
  border: 1px solid rgba(112,112,112,0.216);
}

.page-body {
  flex-grow: 1;
  box-sizing: border-box;
  background-position: top;
  background-position-y: 5em;
  margin-top: 30px;
}

/* ロゴ */
.header-logo {
  height: 38px;
  margin: 5px 5px 5px 20px;
}

.login-logo {
  height: 60px;
}

/* サイドバー */
.side-title {
  background-color: #333348;
  height:3em;
  text-align: left;
  vertical-align: middle;
  padding-top: 0.75em;
  padding-left: 1em;
  font-weight: bold;
}

.side-item {
  height:3em;
  text-align: left;
  vertical-align: middle;
  padding-top: 0.75em;
  padding-left: 1em;
  font-size: 0.8em;
}
.side-item:hover {
  background-color: #333348;
}
.side-item a {
  text-decoration: none;
  color:inherit;
}


/* 入力項目 */
.input-group {
  width:24em;
  height:3em;
}

.input-group-text {
  width:8em;
  color: white;
  background-color: #4d5aaf;
}

/* ボタン */
.btn-secondary {
  background-color: #4d5aaf;
}

.btn-secondary:hover {
  background-color: #4a488e;
  color: #fff
}

.user-icon {
  background-color: #e6e6fa;
  border: 0;
  border-radius: 50%;
  width: 2.2em;
  height: 2.2em;
  margin: 5px 5px 5px 20px;
}

.act {
  background-color: rgba(221, 236, 250) !important;
}

/* ローダー */
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0,0,0,.5);
  z-index: 2;
}
#loader {
  display: none;
  position: fixed;
  top: 300px;
  left: 50%;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 3;
}

.site-footer-copyright {
  text-align: center;
  font-size: x-small;
  color: #808080;
}

.site-footer-link {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
  -webkit-text-decoration-color: rgba(0,0,0,.3);
  text-decoration-color: rgba(0,0,0,.3);
  text-decoration-thickness: 1px;
  color: #808080;
}

input[type=checkbox] {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.paginationjs-pages ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paginationjs-pages li:not(:first-child, :last-child) {
  padding: .3em;
  border: 1px solid #000;
}

.paginationjs-pages li {
  margin-right: 0.5em;
}

.paginationjs-pages li a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.active {
  background-color: #000;
}

.paginationjs-pages .active a {
  color: #fff;
}
