@charset "UTF-8";
/* 
    Created on : 2016/06/28, 14:50:11
    Author     : ooki
*/
/*

このファイルは変数の宣言をまとめておくためのファイルです。
共有で使用する変数は、本ファイルにまとめて記述します。

通常の設定ではコンパイル外になります。（先頭アンダーバー）
各scssでimportして使用して下さい。
        
*/
html {
  font-size: 14px;
}
@media not screen and (max-width: 991px) {
  html {
    font-size: 13px;
  }
}

.templete-list {
  display: none;
}

@media screen and (max-width: 991px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* 各画面のパーツごとのスタイル */
header {
  min-height: 50px;
  margin-bottom: 10px;
  padding-top: 10px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzg3Y2VlYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #87ceeb), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(top, #87ceeb, #ffffff);
  background-image: -webkit-linear-gradient(top, #87ceeb, #ffffff);
  background-image: linear-gradient(to bottom, #87ceeb, #ffffff);
}
@media screen and (max-width: 991px) {
  header {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzg3Y2VlYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzg3Y2VmYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #87ceeb), color-stop(100%, #87cefa));
    background-image: -moz-linear-gradient(top, #87ceeb, #87cefa);
    background-image: -webkit-linear-gradient(top, #87ceeb, #87cefa);
    background-image: linear-gradient(to bottom, #87ceeb, #87cefa);
  }
}
header #logo {
  max-width: 360px;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  header #logo {
    height: 40px;
    margin-bottom: 5px;
  }
}
header #loginUserLabel {
  color: blue;
}
header #loginUserLabel:hover {
  cursor: pointer;
  text-decoration: underline;
}
header .user {
  font-weight: bold;
  color: #f61594;
  text-align: right;
  padding-right: 20px;
  padding-top: 30px;
  position: absolute;
  top: 1px;
  right: 45px;
}
header .header-icon {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  height: 28px;
  width: 28px;
  opacity: 0.6;
  padding: 0;
  border-radius: 5px;
}
header .header-icon:hover, header .header-icon.on {
  opacity: 1;
}
header .header-icon:hover {
  cursor: pointer;
}
header .header-icon#menu-btn {
  background-image: url("images/menu2.png");
}
header .header-icon.home {
  background-image: url("./images/menuicon/home.png");
}
header .header-icon.parent {
  background-image: url(./images/menuicon/attendance.png);
}
header .header-icon.mail {
  background-image: url(./images/menuicon/mail.png);
}
header .header-icon.write {
  background-image: url(./images/menuicon/write.png);
}
header .header-icon.student {
  background-image: url(./images/menuicon/student.png);
}
header .header-icon.staff {
  background-image: url(./images/menuicon/staff.png);
}
header .header-icon.myself {
  background-image: url(./images/menuicon/myself.png);
}
header .header-icon.setting {
  background-image: url(./images/menuicon/kanri.png);
}
header .header-icon.roster {
  background-image: url(./images/menuicon/roster.png);
}
header .header-icon.card {
  background-image: url(./images/menuicon/card.png);
}
header .header-icon.obshealth {
  background-image: url(./images/menuicon/health.png);
}
header .header-icon.enq {
  background-image: url(./images/menuicon/enq.png);
}
header .header-icon.event {
  background-image: url(./images/menuicon/event.png);
}
header .header-icon.regist {
  background-image: url(./images/menuicon/regist.png);
}

#menu {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  #menu {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 5px;
    background-color: snow;
  }
}
#menu .head-top {
  color: white;
  background-color: skyblue;
  font-weight: bold;
  text-align: center;
  padding: 0.5em 0;
  width: 100%;
}
#menu .head-top a {
  color: white;
}
#menu .head-top a:link {
  color: white;
}
#menu .head-top a:visited {
  color: white;
}
#menu .head-top a:hover {
  color: white;
  cursor: pointer;
}
#menu .head-top a:active {
  color: white;
}

.menu-list {
  background-color: snow;
  border: solid 1px skyblue;
  margin-bottom: 10px;
}
.menu-list .head-top {
  color: white;
  background-color: skyblue;
  font-weight: bold;
  text-align: center;
  padding: 0.5em 0;
  width: 100%;
}
.menu-list .category-area {
  background-color: azure;
  border: 1px solid skyblue;
}
.menu-list .category-area .category-name {
  margin-bottom: 0px;
  margin-left: 3px;
  font-size: 0.9em;
  font-weight: bold;
}
.menu-list .category-area .childlist {
  margin-left: 10px;
}
.menu-list .menu-item {
  margin: 0px;
}
.menu-list .menu-item a {
  font-weight: bold;
  display: inline-block;
  text-align: left;
  padding-left: 10px;
}
.menu-list .menu-item a.work_btn {
  background-color: white;
  color: black;
  border: solid 1px gray;
  width: 100%;
  box-shadow: 0px 0px;
  font-weight: normal;
}
.menu-list .menu-item a.work_btn:hover {
  color: gray;
  font-weight: bold;
}
.menu-list .menu-item a.work_btn.work_kanri {
  color: white;
  background-color: hotpink;
}
.menu-list .menu-item a.work_btn.work_logout {
  color: white;
  background-color: darkgray;
}
.menu-list .menu-item a.work_btn:before {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-size: contain;
  margin-right: 5px;
  position: relative;
  top: -2px;
}
.menu-list .menu-item a.parent:before {
  background-image: url(./images/menuicon/attendance.png);
}
.menu-list .menu-item a.mail:before {
  background-image: url(./images/menuicon/mail.png);
}
.menu-list .menu-item a.write:before {
  background-image: url(./images/menuicon/write.png);
}
.menu-list .menu-item a.student:before {
  background-image: url(./images/menuicon/student.png);
}
.menu-list .menu-item a.staff:before {
  background-image: url(./images/menuicon/staff.png);
}
.menu-list .menu-item a.myself:before {
  background-image: url(./images/menuicon/myself.png);
}
.menu-list .menu-item a.kanri:before {
  background-image: url(./images/menuicon/kanri.png);
}
.menu-list .menu-item a.work_logout:before {
  background-image: url(./images/menuicon/logout.png);
}
.menu-list .menu-item a.roster:before {
  background-image: url(./images/menuicon/roster.png);
}
.menu-list .menu-item a.card:before {
  background-image: url(./images/menuicon/card.png);
}
.menu-list .menu-item a.obshealth:before {
  background-image: url(./images/menuicon/health.png);
}
.menu-list .menu-item a.doc:before {
  background-image: url(./images/menuicon/doc.png);
}
.menu-list .menu-item a.nendo1:before {
  background-image: url(./images/menuicon/nendo1.png);
}
.menu-list .menu-item a.nendo2:before {
  background-image: url(./images/menuicon/nendo2.png);
}
.menu-list .menu-item a.enquete:before {
  background-image: url(./images/menuicon/enquete.png);
}
.menu-list .menu-item a.event:before {
  background-image: url(./images/menuicon/event.png);
}
.menu-list .menu-item a.regist:before {
  background-image: url(./images/menuicon/regist.png);
}
.menu-list .menu-item #logout-menu-btn {
  font-weight: bold;
}

@media not screen and (max-width: 991px) {
  .main-head {
    background-color: lightskyblue;
    font-size: 20px;
  }
}

.search {
  background-color: cornsilk;
  margin: 10px 2px;
  padding: 10px 10px 5px 10px;
}
@media screen and (max-width: 991px) {
  .search {
    margin: 2px;
    padding: 5px 5px;
  }
}
.search .search-btn {
  margin: 5px 5px 3px 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  background-color: navajowhite;
}
.search .cond-table {
  background-color: ivory;
}
.search .cond-table .list-head {
  background-color: lightblue;
  color: black;
}

.page {
  margin: 3px 0;
  padding: 3px;
  background-color: lightcyan;
  border: 0px;
  vertical-align: middle;
  min-height: 40px;
}
.page .infoline {
  margin-top: 10px;
  font-size: 12px;
}
@media screen and (max-width: 991px) {
  .page .infoline a {
    font-size: 15px;
    padding: 3px 3px;
    margin-top: -5px;
    display: inline-block;
  }
}

.datatable table > tbody > tr > td {
  padding: 5px 8px;
}
.datatable a {
  font-size: 1.1em;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .datatable a {
    font-size: 1.2em;
  }
}
.datatable .rew_row {
  margin: 1px 1px;
  border: 1px solid silver;
  padding: 3px 1px 3px 2px;
}
.datatable .rew_row .header-info {
  font-size: 1.1em;
  padding-top: 5px;
  padding-bottom: 5px;
}
.datatable .rew_row .button-line {
  padding-top: 6px;
}
.datatable .head_row {
  margin: 10px 1px 2px 1px;
  font-size: 1.2em;
  font-weight: bold;
  padding: 5px 10px;
  background-color: #ffe9f3;
  border: 1px ridge  gray;
}
.datatable .head_row .title {
  margin-top: 8px;
  padding-left: 5px;
}
.datatable .head_row .sub-right {
  padding-right: 5px;
}
.datatable .idinfo {
  font-size: 0.9em;
  margin-right: 10px;
}

.order_div {
  padding-top: 3px;
  padding-bottom: 3px;
}

.command {
  margin: 3px 0;
  padding: 5px;
  background-color: lightskyblue;
}

.check-list tbody > tr[data-drawkey], .check-list li[data-drawkey] {
  background-color: white;
}
.check-list tbody > tr[data-drawkey]:hover, .check-list li[data-drawkey]:hover {
  cursor: pointer;
  background-color: lightskyblue;
}

.subject-info {
  vertical-align: middle;
}
.subject-info:before {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background-size: contain;
  margin-right: 5px;
  position: relative;
  top: -2px;
}
.subject-info.message:before {
  background-image: url(./images/menuicon/mail.png);
}
.subject-info.enquete:before {
  background-image: url(./images/menuicon/enquete.png);
}
.subject-info.anpi:before {
  background-image: url(./images/menuicon/alert.png);
}
.subject-info.msg-making {
  fore-color: green;
}
.subject-info.msg-waitapproval {
  fore-color: blue;
}
.subject-info.msg-waitsend {
  fore-color: brown;
}

/*# sourceMappingURL=ui_list.css.map */
