﻿@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500|Roboto:400&subset=japanese');
@import url('https://use.fontawesome.com/releases/v5.6.0/css/all.css');

/*----------------------------------------------------------------
* Basic
----------------------------------------------------------------*/
* {
	margin: 0;
}

html {
  height: 100%;
}

body {
  position: relative;
  min-width: 1024px;
  min-height: 100%;
	line-height: 1.5;
	color: #333;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-size: 13px;
  font-weight: normal;
  text-rendering: auto;
  background: #fff;
}
body.lock {
  overflow: hidden;
}

/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  body {
    -webkit-text-stroke-width: 0.1px;
  }
}
*/


/*----------------------------------------------------------------
* Styles
----------------------------------------------------------------*/
a {
  color: #007aff;
  text-decoration: none;
  transition: color .3s;
  outline: none;
}
a:hover {
  color: #ff7a00;
}

ul,ol {
  list-style: none;
  padding: 0;
}

pre {
  font-family: inherit;
}

form {
  display: block;
  margin: auto;
}


/* Font Color
----------------------------------------*/
.fc-gray {
  color: #999;
}
.fc-red {
  color: #a94442;
}
.fc-blue {
  color: #31708f;
}
.fc-green {
  color: #3c763d;
}
.fc-orange {
  color: #8a6d3b;
}


/* Font Style
----------------------------------------*/
.fs-comment,
.fs-counter {
  color: #999;
  font-size: 11px;
}
.fs-counter {
  font-style: italic;
}
.fs-counter.over {
  color: #a94442;
  font-weight: bold;
}


/* Text Over Flow
----------------------------------------*/
.tof,
table.tof th,
table.tof td {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
table.tof {
  table-layout: fixed;
}


/* Col & Row Size
----------------------------------------*/
.col-group {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
}

.col-em-1  { width: 2em; }
.col-em-2  { width: 3em; }
.col-em-3  { width: 4em; }
.col-em-4  { width: 5em; }
.col-em-5  { width: 6em; }
.col-em-6  { width: 7em; }
.col-em-7  { width: 8em; }
.col-em-8  { width: 9em; }
.col-em-9  { width: 10em; }
.col-em-10 { width: 11em; }
.col-em-15 { width: 16em; }
.col-em-20 { width: 21em; }
.col-em-25 { width: 26em; }
.col-em-30 { width: 31em; }
.col-em-40 { width: 41em; }
.col-em-50 { width: 51em; }

.col-per-1 { width: 10%; }
.col-per-2 { width: 20%; }
.col-per-3 { width: 30%; }
.col-per-4 { width: 40%; }
.col-per-4-9 { width: 49%; }
.col-per-5 { width: 50%; }
.col-per-6 { width: 60%; }
.col-per-7 { width: 70%; }
.col-per-8 { width: 80%; }
.col-per-9 { width: 90%; }
.col-per-10 { width: 100%; }

.row-em-1  { height: 1.75em; }
.row-em-2  { height: 2.75em; }
.row-em-3  { height: 3.75em; }
.row-em-4  { height: 4.75em; }
.row-em-5  { height: 5.75em; }
.row-em-6  { height: 6.75em; }
.row-em-7  { height: 7.75em; }
.row-em-8  { height: 8.75em; }
.row-em-9  { height: 9.75em; }
.row-em-10 { height: 10.75em; }
.row-em-20 { height: 20.75em; }
.row-em-30 { height: 30.75em; }


/*----------------------------------------------------------------
* Alert
----------------------------------------------------------------*/
.alert-box {
  border-radius: 3px;
  padding: 8px 16px;
  margin-bottom: 16px;
}

.alert-info {
  color: #31708f;
  background: #d9edf7;
  border: 1px solid #bce8f1;
}
.alert-success {
  color: #3c763d;
  background: #dff0d8;
  border: 1px solid #d6e9c6;
}
.alert-danger {
  color: #a94442;
  background: #f2dede;
  border: 1px solid #ebccd1;
}
.alert-warning {
  color: #8a6d3b;
  background: #fcf8e3;
  border: 1px solid #faebcc;
}

.alert-notification {
  display: none;
	position: fixed;
	text-align: center;
	top: 240px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
	z-index: 50000;
}
.alert-notification .alert-box {
  display: inline-block;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}


/*----------------------------------------------------------------
* Layout
----------------------------------------------------------------*/
.wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  min-height: 100vh;
}


/*----------------------------------------------------------------
* Header
----------------------------------------------------------------*/
header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 48px;
  line-height: 1;
  background: #fff;
  border-bottom: 2px solid #007aff;
  box-sizing: border-box;
  padding: 8px 16px 0;
}

header .logo img {
  width: auto;
  max-height: 32px;
}

header .tab {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
header .tab li {
  margin-right: 4px;
}
header .tab li a {
  display: block;
  height: 38px;
  color: #333;
  border: 1px solid #dbe1e8;
  border-bottom: none;
  box-sizing: border-box;
  padding: 13px 16px 0;
}
header .tab li a:hover {
  background: #dbe1e8;
}

header .tab li.current a {
  color: #fff;
  background: #007aff;
  border-color: #007aff;
}

header .link {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding-bottom: 8px;
}
header .link li {
  display: inline-block;
  padding-left: 16px;
}

/*
header ul.icon-nav > li {
  border: none;
}
header ul.icon-nav > li a {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  color: #999;
  font-size: 15px;
}
header ul.icon-nav > li a::before {
  line-height: 22px;
  vertical-align: bottom;
}
header ul.icon-nav > li a.blue {
  color: #007aff;
}
*/


/*----------------------------------------------------------------
* Sidebar
----------------------------------------------------------------*/
.sidebar {
  flex-shrink: 0;
  width: 200px;
  min-height: 100%;
  line-height: 2;
  box-sizing: border-box;
  border-right: 1px solid #dbe1e8;
  overflow-x: hidden;
  transition: width .3s;
}

.sidebar a {
  position: relative;
  display: block;
  color: #333;
  transition: .3s;
}
.sidebar a:hover {
  background: #eaedf1;
}

.sidebar a.cursor::after {
  content: "\f104";
  position: absolute;
  color: #9ba8b9;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .3s;
}
.sidebar li.current a.cursor::after,
.sidebar li.active a.cursor::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.sidebar li.current a.cursor::after {
  color: #fff;
}

.sidebar i {
  width: 16px;
  color: #007aff;
  font-size: 16px;
  text-align: center;
  vertical-align: text-bottom;
  margin-right: 11px;
}

.sidebar-tab {
  width: 200px;
}

.sidebar-tab > li > a {
  padding: 8px;
}
.sidebar-tab > li > a::before {
  width: 20px;
  color: #007aff;
  padding-right: 12px;
}

.sidebar-tab > li.panel > a {
  position: relative;
  height: 42px;
  background: #f9fafc;
  box-sizing: border-box;
}
.sidebar-tab > li.panel > a::after {
  content: "\f104";
  position: absolute;
  color: #9ba8b9;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .3s;
}

.sidebar-tab > li > ul {
  display: none;
  background: #f9fafc;
  overflow: hidden;
}

.sidebar-tab > li > ul li a {
  padding: 4px 0 4px 40px;
}


/* active
----------------------------------------*/
.sidebar-tab > li.active {
  background: #eaedf1;
}


/* current
----------------------------------------*/
.sidebar-tab > li.current > a {
  color: #fff;
  background: #007aff;
}
.sidebar-tab > li.current > a::before {
  color: #fff;
}

.sidebar-tab > li.current > a i {
  color: #fff;
}

.sidebar-tab > li.current > ul {
  display: block;
}
.sidebar-tab > li > ul li a.current {
  color: #007aff;
  font-weight: bold;
}

.sidebar-tab li.icon-new > a::before,
.sidebar-tab li.icon-update > a::before,
.sidebar-tab a.icon-new::after,
.sidebar-tab a.icon-update::after {
    position: absolute;
    display: inline-block;
    line-height: 1;
    color: #dd0000;
    font-size: 9px;
    top: 4px;
    right: 8px;
    z-index: 1;
}

.sidebar-tab li.icon-new > a::before,
.sidebar-tab li.icon-update > a::before {
    right: -3px;
}

.sidebar-tab li.icon-new > a::before,
.sidebar-tab a.icon-new::after {
    content: 'NEW';
}

.sidebar-tab li.icon-update > a::before,
.sidebar-tab a.icon-update::after {
    content: 'UP';
}

/* separate
----------------------------------------*/
.sidebar li.separate {
  border-top: 1px solid #dbe1e8;
  margin-top: 8px;
  transition: all .3s;
}
.sidebar li.separate span {
  display: block;
  color: #999;
  height: 32px;
  line-height: 32px;
  font-size: 12px;
  padding: 0 8px;
  transition: all .3s;
}


/* Panel Close
----------------------------------------*/
.sidebar.close {
  width: 34px;
}

.sidebar.close > ul > li > ul {
  display: none;
  position: absolute;
  width: 200px;
  border: 1px solid #dbe1e8;
  box-shadow: 5px 5px 10px -5px rgba(0,0,0,.2);
  z-index: 10000;
}
.sidebar.close > ul > li > ul > li > a {
  padding: 8px;
}

.sidebar.close > ul > li.panel > a::after {
  content: "\f105";
  -webkit-transform: translate(-166px, -50%);
  transform: translate(-166px, -50%);
}

.sidebar.close li.separate {
  margin-top: 0;
}
.sidebar.close li.separate span {
  height: 0;
  opacity: 0;
}


/*----------------------------------------------------------------
* Main
----------------------------------------------------------------*/
.main-content {
  -webkit-box-flex: 1;
  flex-grow: 1;
  position: relative;
  min-height: 100%;
  box-sizing: border-box;
  padding-bottom: 40px;
}


/*----------------------------------------------------------------
* Footer
----------------------------------------------------------------*/
footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 40px;
  border-top: 1px solid #dbe1e8;
  box-sizing: border-box;
  text-align: center;
  padding: 0 16px;
  margin: 0;
  bottom: 0;
}

footer p {
  display: inline-block;
  line-height: 20px;
  color: #999;
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 11px;
}

footer a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #999;
  text-align: center;
}


/*----------------------------------------------------------------
* Title
----------------------------------------------------------------*/
.title-box {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  height: 96px;
  background: #f9fafc;
  border-bottom: 1px solid #dbe1e8;
  padding: 0 16px 0;
}

.title-box .title {
  display: inline-block;
  font-size: 24px;
}

.title-box div {
  display: inline-block;
}

/* Sub Title
----------------------------------------*/
.sub-title {
  font-size: 20px;
  padding: 80px 0 24px;
}
.sub-title:nth-of-type(1) {
  padding-top: 40px;
}


/*----------------------------------------------------------------
* Search
----------------------------------------------------------------*/
.search-box {
  border-bottom: 1px solid #dbe1e8;
  padding: 8px;
}

.search-box table {
  border-collapse: collapse;
}

.search-box td {
  padding: 8px;
}

.search-box td button {
  min-width: 100px;
  height: 32px;
  padding: 6px 0;
  margin-bottom: 1px;
}
.search-box td button i {
  margin-left: -1em;
}

.search-box .item {
  line-height: 1;
  color: #999;
  font-size: 12px;
  padding-bottom: 4px;
}


/*----------------------------------------------------------------
* Main
----------------------------------------------------------------*/
main {
  display: block;
  padding: 16px 16px 80px;
}


/*----------------------------------------------------------------
* Article
----------------------------------------------------------------*/
article {
  width: 90%;
  border: 1px solid #dbe1e8;
  box-sizing: border-box;
  padding: 1.5em;
  margin: 40px auto 0;
}

article h1 {
  font-size: 24px;
  font-weight: normal;
  border-left: 4px solid #007aff;
  padding: 4px 0 4px 8px;
  margin-bottom: 3em;
}

article h2 {
  font-size: 20px;
  font-weight: normal;
  padding: 1em 0 .5em;
}

article h3 {
  font-size: 18px;
  font-weight: normal;
  padding: .5em 0 .5em;
}

article p {
  padding-bottom: 1em;
}

article ol {
  list-style: decimal;
  padding-left: 1.5em;
}

article dl {
}
article dt {
	float:left;
	clear:both;
}
article dd {
  text-indent: -1em;
  margin-left: 120px;
}
article dd::after {
}

article img {
  max-width: 100%;
  height: auto;
}

/* Styles */
article .sub-headline {
  font-weight: bold;
  padding: 1em 0;
}

.indent li {
  text-indent: -1em;
  padding-left: 1em;
}

.right {
  text-align: right;
}
.center {
  text-align: center;
}

article .pb0 { padding-bottom: 0em; }
article .pb1 { padding-bottom: 1em; }
article .pb2 { padding-bottom: 2em; }

article .mb1 { margin-bottom: 1em; }
article .mb2 { margin-bottom: 2em; }


/*----------------------------------------------------------------
* Tables Header & Footer
----------------------------------------------------------------*/
.table-info {
  width: 100%;
  border-collapse: collapse;
}

.table-header {
  margin-bottom: 8px;
}

.table-footer {
  margin-top: 8px;
}


/*----------------------------------------------------------------
* Tab-List
----------------------------------------------------------------*/
.tab-list {
  height: 39px;
  border-bottom: 1px solid #dbe1e8;
  padding: 0 8px;
  margin: 0 0 32px;
}

.tab-list li {
  display: inline-block;
  height: 40px;
  background: #eaedf1;
  border: 1px solid #dbe1e8;
  box-sizing: border-box;
  padding: 8px 32px 0;
  cursor: pointer;
}
.tab-list li.current {
  background: #fff;
  border-bottom: 1px solid #fff;
}


/*----------------------------------------------------------------
* Data-List
----------------------------------------------------------------*/
.data-list {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #dbe1e8;
}

.data-list tr {
  border-bottom: 1px solid #dbe1e8;
}

.data-list th,
.data-list td,
fieldset .data-list th,
fieldset .data-list td {
  text-align: left;
  vertical-align: middle;
  padding: 8px;
}

.data-list th {
  line-height: 24px;
  font-weight: bold;
  background: #f9fafc;
}

.data-list th label,
.data-list td label {
  line-height: 20px;
  vertical-align: text-top;
  padding: 0;
  margin: 0;
}

.data-list .center {
  text-align: center;
}
.data-list .right {
  text-align: right;
}

.data-list tr.gray {
  background: #edf0f3;
}
.data-list tr.blue {
  background: #d9edf7;
}
.data-list tr.green {
  background: #dff0d8;
}
.data-list tr.red {
  background: #f2dede;
}
.data-list tr.orange {
  background: #fcf8e3;
}

/* ドラッグ＆ドロップ */
.data-list td.dragHandle {
  color: #dbe1e8;
  text-align: center;
}
.data-list td.showDragHandle {
  color: #3395ff;
	cursor: move;
}

/* Lattice-List
----------------------------------------*/
.lattice-list {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #dbe1e8;
}

.lattice-list th,
.lattice-list td {
  text-align: left;
  vertical-align: middle;
  border: 1px solid #dbe1e8;
  padding: 8px;
}

.lattice-list th {
  line-height: 24px;
  font-weight: bold;
  background: #f9fafc;
}

.lattice-list .center {
  text-align: center;
}
.lattice-list .right {
  text-align: right;
}

.lattice-list tr.light-blue {
  background: #f2f9fc;
}
.lattice-list tr.blue {
  background: #d9edf7;
}
.lattice-list tr.green {
  background: #dff0d8;
}
.lattice-list tr.red {
  background: #f2dede;
}
.lattice-list tr.orange {
  background: #fcf8e3;
}

.lattice-list td .meter {
  width: 80px;
}
.lattice-list td .meter i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid #eaedf1;
  box-sizing: border-box;
}
.lattice-list td .meter i.selected {
  background: #007aff;
  border: none;
}

/* Pagination
----------------------------------------*/
.pagination {
  display: block;
  width: 100%;
}

.pagination li {
  display: inline-block;
}

.pagination a,
.pagination span {
  display: inline-block;
  min-width: 1em;
  text-align: center;
  border: 1px solid #c6cfdb;
  border-radius: 3px;
  margin-left: 4px;
  padding: 3px 7px;
}

.pagination a:hover,
.pagination span {
  background: #f9fafc;
}

/* Icon Button
----------------------------------------*/
.icon-button {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  font-size: 16px;
  text-align: center;
  margin: 0 4px;
  transition: opacity .3s;
}
.icon-button:hover {
  opacity: .7;
}

.icon-button,
.icon-button:hover {
  color: #3395ff;
}

.icon-button.green,
.icon-button.green:hover {
  color: #5cb85c;
}

.icon-button.red,
.icon-button.red:hover {
  color: #d43f3a;
}

.icon-button.gray,
.icon-button.gray:hover {
  color: #c0c0c0;
}


/*----------------------------------------------------------------
* Calendar Box
----------------------------------------------------------------*/
.calendar-month {
  font-size: 24px;
  padding-bottom: 16px;
}
.calendar-month::after {
  content: "";
  clear: both;
  display: block;
  height: 0;
}

.calendar-month .l-box {
  float: left;
}

.calendar-month .r-box {
  float: right;
}

.calendar-month .btn {
  vertical-align: text-top;
}


/* box
----------------------------------------*/
.calendar-box {
  width: auto;
  margin: 0 -16px;
}

.calendar-box table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.calendar-box th,
.calendar-box td {
  border: 1px solid #ebe1e8;
}
.calendar-box th:first-child,
.calendar-box td:first-child {
  border-left: none;
}
.calendar-box th:last-child,
.calendar-box td:last-child {
  border-right: none;
}

.calendar-box th {
  line-height: 1;
  font-weight: normal;
  padding: 8px 0;
}
.calendar-box td {
  height: 9em;
  vertical-align: top;
  padding-bottom: 8px;
}
.calendar-box .day {
  display: block;
  width: auto;
  line-height: 1;
  color: #333;
  padding: 8px;
}
.calendar-box .day.holiday {
  color: #ff0000;
}
.calendar-box a.day:hover {
  text-decoration: none;
  background: rgba(0, 0, 0, .1);
}

.calendar-box td a {
  color: #333;
}
.calendar-box td a:hover {
  text-decoration: underline;
}

.calendar-box td.gray {
  background: #f9fafc;
}
.calendar-box td.today {
  background: #efffed;
}
.calendar-box td.holiday .day {
  color: #ff0000;
}


/*----------------------------------------------------------------
* Calendar Grid
----------------------------------------------------------------*/
.calendar-grid { 
  width: auto;
  border-top: #ebe1e8 1px solid;
  margin: 0 -16px;
  
 -ms-user-select: none;
 -moz-user-select: none;
 -webkit-user-select: none;
 user-select: none;
}


/* row
----------------------------------------*/
.calendar-grid .row-header,
.calendar-grid .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1 1 0%;
  flex: 1 1 0%;
  border-bottom: #ebe1e8 1px solid;
}

.calendar-grid .row-header {
  position: -webkit-sticky;
  position: sticky;
  background: #fff;
  top: 0;
  z-index: 2;
}

.calendar-grid .row {
  position: relative;
}


/* col
----------------------------------------*/
.calendar-grid .col-header,
.calendar-grid .col {
  width: 14.2857142857%;
  line-height: 25px;
  border-right: #ebe1e8 1px solid;
}

.calendar-grid .col-header:last-of-type,
.calendar-grid .col:last-of-type {
  border-right: none;
}

.calendar-grid .col-header {
  text-align: center;
}

.calendar-grid .col {
  min-height: 160px;
  background: #fff;
  padding-bottom: 20px;
}

.calendar-grid .col.gray {
  background: #f9fafc;
}
.calendar-grid .col.today {
  background: #efffed;
}


/* col-day
----------------------------------------*/
.calendar-grid .col-day {
  position: -webkit-sticky;
  position: sticky;
  text-align: center;
  background: #fff;
  top: 25px;
  z-index: 1;
}

.calendar-grid .col.gray .col-day {
  background: #f9fafc;
}
.calendar-grid .col.today .col-day {
  background: #efffed;
}


/*----------------------------------------------------------------
* Comment Box
----------------------------------------------------------------*/
.comment-box {
  color: #666;
  font-size: 12px;
  background: #f9fafc;
  border: 1px solid #dbe1e8;
  border-radius: 5px;
  margin-bottom: 40px;
  padding: 16px;
}

.comment-box .headline {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.comment-box p:nth-of-type(n+2) {
  margin-top: 1.5em;
}

.comment-box b {
  color: #333;
  font-weight: 500;
}

.comment-box ul {
  margin-top: .75em;
}

.comment-box ul li {
  padding-left: 1em;
}
.comment-box ul li::before {
  content: "・";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}


/*----------------------------------------------------------------
* Edit
----------------------------------------------------------------*/
fieldset {
  width: 100%;
  border: 1px solid #dbe1e8;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 16px;
  padding: 16px 16px 8px 16px;
}
fieldset.half {
  width: 49%;
}

legend {
  color: #007aff;
}
legend i {
  color: #394263;
  font-size: 14px;
  vertical-align: bottom;
}

fieldset table:not(.data-list) {
  width: 100%;
  border-collapse: collapse;
}
fieldset table:not(.data-list) th {
  width: 120px;
  line-height: 1.5;
  color: #666;
  font-size: 12px;
  font-weight: normal;
  text-align: right;
  vertical-align: top;
  padding: 0px 16px 8px 0;
}
fieldset > fieldset table:not(.data-list) th {
  width: 100px;
}
fieldset table:not(.data-list) td {
  padding: 0 0 8px;
}

fieldset .uploads-list {
  border-top: 1px solid #dbe1e8;
}
fieldset .uploads-list tr {
  border-bottom: 1px solid #dbe1e8;
}
fieldset .uploads-list tr:nth-child(2n) {
  background: #f9fafc;
}
fieldset .uploads-list td {
  padding: 8px;
}


/*----------------------------------------------------------------
* Form Elements
----------------------------------------------------------------*/
*::input-placeholder {
  color: #aeb3Bf;
}
*::-webkit-input-placeholder {
  color: #aeb3Bf;
}
*:-ms-input-placeholder {
  color: #aeb3Bf;
}
*::-moz-placeholder {
  color: #aeb3Bf;
}

input[type=text],
input[type=password],
textarea,
button,
select {
  font: inherit;
  border: 1px solid #c6cfdb;
  border-radius: 3px;
  outline: none;
  transition: border-color .3s;
  margin-bottom: 1px;
}

input[type=text]:disabled,
input[type=password]:disabled,
textarea:disabled,
button:disabled,
select:disabled {
  background: #eaedf1 !important;
}

input[type='file']{
  display: none;
}

input,
select {
  height: 34px;
  box-sizing: border-box;
  padding: 0 .5em;
}

textarea {
  line-height: 1.25;
  box-sizing: border-box;
  padding: 4px;
}
textarea.auto-resize {
  overflow: hidden;
  resize: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #007aff;
}

/* Input[type=text]
----------------------------------------*/
.input-group {
  display: table;
  position: relative;
  border-collapse: separate;
  border-spacing: 0;
  vertical-align: top;
}

.input-group-text {
  padding-left: 38px;
}

.input-group-addon {
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 32px;
  line-height: 32px;
  color: #999;
  font-size: 10px;
  text-align: center;
  border-right: 1px solid #eaedf1;
  top: 1px;
  left: 1px;
}

/* Button
----------------------------------------*/
.btn {
  display: inline-block;
  min-width: 120px;
  line-height: 1em;
  color: #999;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  background: #fff;
  border: 1px solid #c6cfdb;
  border-radius: 3px;
  padding: 12px 16px;
  margin: 0;
  cursor: pointer;
  transition: opacity .3s;
}
.btn:hover {
  color: #999;
  opacity: .7;
}

.btn:disabled,
.btn.disabled {
  border-color: #ccc !important;
  background: #ccc !important;
  pointer-events: none;
}

.btn.btn-min {
  min-width: inherit;
  padding: 8px 12px;
}

.btn-blue {
  color: #fff;
  background: #3395ff;
  border-color: #3395ff;
}
.btn-blue:hover {
  color: #fff;
}

.btn-green {
  color: #fff;
  background: #5cb85c;
  border-color: #5cb85c;
}
.btn-green:hover {
  color: #fff;
}

.btn-red {
  color: #fff;
  background: #d43f3a;
  border-color: #d43f3a;
}
.btn-red:hover {
  color: #fff;
}

/* Select
----------------------------------------*/
.clip-select {
  display: inline-block;
  position: relative;
}
.clip-select select {
  padding-right: 34px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.clip-select select::-ms-expand {
  display: none;
}

.clip-select::after {
  content: '\f107';
  position: absolute;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  color: #007aff;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  text-align: center;
  vertical-align: text-top;
  margin: auto 0;
  top: 0;
  bottom: 0;
  right: 8px;
  
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}

.clip-select.focus::after {
  content: '\f106';
}


/* Radio & Checkbox
----------------------------------------*/
label {
  display: inline-block;
  cursor: pointer;
  margin-right: 16px;
}

/* Radio */
input[type='radio']{
  display: none;
}
input[type='radio'] + label {
  position: relative;
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding-left: 24px;
}
input[type='radio'] + label::before,
input[type='radio'] + label::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #c6cfdb;
  border-radius: 50%;
  box-sizing: border-box;
  top: 0;
  left: 0;
}
input[type='radio'] + label::before {
  background: #fff;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
}
input[type='radio']:checked + label::before {
  background: #007aff;
  border-width: 6px;
  border-color: #fff;
}

/* Check Box */
input[type='checkbox']{
  display: none;
}

input[type='checkbox'] + label {
  position: relative;
  display: inline-block;
  height: 24px;
  line-height: 24px;
  vertical-align: middle;
  padding-left: 24px;
}
input[type='checkbox'] + label::before,
input[type='checkbox'] + label::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #c6cfdb;
  box-sizing: border-box;
  top: 0;
  left: 0;
}
input[type='checkbox'] + label::before {
  background: #fff;
  transition:  0.2s linear 0s, color 0.2s linear 0s;
}
input[type='checkbox'] + label::after {
  content: '\f00c';
  line-height: 20px;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  text-align: center;
  vertical-align: text-top;
  
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
input[type='checkbox']:checked + label::before {
  border-width: 10px;
  border-color: #007aff;
}

/* Disabled */
input[type='radio']:disabled + label::before,
input[type='checkbox']:disabled + label::before {
  background: #eaedf1 !important;
}

input[type='checkbox']:disabled + label::after {
  content: '';
}


/* Input Necessary & Error
----------------------------------------*/
.input_necessary {
  background: #fcf8e3;
}

.input_error {
  background: #f2dede;
  border: 1px solid #dd6864 !important;
}


/*----------------------------------------------------------------
* Modal Editor
----------------------------------------------------------------*/
.modal-editor {
  position: fixed;
  background: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.modal-editor-box {
  position: fixed;
  padding: 0 80px;
  top: 40px;
  bottom: 40px;
  left: 0;
  right: 0;
  overflow: auto;
}

.modal-editor-header {
  text-align: right;
  margin-bottom: 16px;
  padding-top: 40px;
}

.modal-editor-footer {
  text-align: right;
  padding-bottom: 40px;
}


/*----------------------------------------------------------------
* Tooltip
----------------------------------------------------------------*/
.tooltip-box {
  display: inline-block;
  position: absolute;
  max-width: 320px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #c6cfdb;
  border-radius: 5px;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
  padding: 8px;
  z-index: 10000;
}

.tooltip-box .tooltip-cursor {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border: 1px solid #c6cfdb;
  border-left: none;
  border-bottom: none;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.tooltip-box.top .tooltip-cursor {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-bottom: 0;
  bottom: -5px;
}
.tooltip-box.bottom .tooltip-cursor {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 0;
  top: -5px;
}


/*----------------------------------------------------------------
* Multialert
----------------------------------------------------------------*/
.multialert-layer {
	display: none;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 20000;
	overflow: auto;
}

.multialert {
	opacity: 0;
	width: 480px;
	line-height: 24px;
	font-size: 14px;
	text-align: center;
	background-color: #fff;
  border-radius: 3px;
	padding: 24px 0;
	margin: 0 auto 80px;
	z-index: 6000;
}

.multialert .title {
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	padding: 0 0 16px;
}

.multialert .contents {
	padding: 32px 24px 0;
}

.multialert .contents .editor-wrap {
  text-align: left;
}

.multialert .button_area {
	padding: 32px 0 0;
}
.multialert .button_area button {
	margin: 0 8px !important;
}

.multialert ul {
	width: 320px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.multialert li {
	text-align: left;
	padding: 0;
	margin: 0;
}


/*----------------------------------------------------------------
* Datepicker
----------------------------------------------------------------*/
.datepicker-box {
  display: block;
  position: absolute;
  background: #fff;
  border: 1px solid #c6cfdb;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
  z-index: 10000;
}

.datepicker-box:before,
.datepicker-box:after {
  content: " ";
  display: table;
}

.datepicker-box:after {
	clear: both;
}

.datepicker-box.is-hidden {
  display: none;
}

.datepicker-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.datepicker-title {
  position: relative;
  text-align: center;
}

.datepicker-label {
  display: inline-block;
  position: relative;
  line-height: 20px;
  font-size: 14px;
  background-color: #fff;
  margin: 0;
  padding: 5px 3px;
  overflow: hidden;
  z-index: 9999;
}

.datepicker-prev,
.datepicker-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  width: 20px !important;
  height: 30px !important;
  border: 0 !important;
  background: #fff;
  padding: 0 !important;
  white-space: nowrap;
  overflow: hidden;
  opacity: .5;
}

.datepicker-prev:hover,
.datepicker-next:hover {
  opacity: 1;
}

.datepicker-prev,
.is-rtl .datepicker-next {
  float: left;
}

.datepicker-next,
.is-rtl .datepicker-prev {
  float: right;
}

.datepicker-prev.is-disabled,
.datepicker-next.is-disabled {
  cursor: default;
  opacity: .2;
}

.datepicker-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

.datepicker-table th,
.datepicker-table td {
  width: 14.285714285714286%;
  padding: 0;
}

.datepicker-table th {
  color: #999;
  line-height: 25px;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
}

.datepicker-button {
  cursor: pointer;
  display: block;
  width: 100% !important;
	height: auto !important;
  line-height:15px;
  color: #666;
  font-size: 12px;
  text-align: right;
  background: #fff !important;
  box-sizing: border-box;
  border: none !important;
  margin: 0 !important;
  padding: 5px !important;
  outline: none;
}

.is-today .datepicker-button {
  color: #33aaff !important;
  font-weight: bold;
}

.is-selected .datepicker-button {
  color: #fff !important;
  font-weight: bold;
  background: #33aaff !important;
  box-shadow: inset 0 1px 3px #178FE5;
  border-radius: 3px;
}

.is-disabled .datepicker-button,
.is-outside-current-month .datepicker-button {
  pointer-events: none;
  cursor: default;
  opacity: .3;
}

.datepicker-button:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none;
  border-radius: 3px;
}


/*----------------------------------------------------------------
* Timetable
----------------------------------------------------------------*/
.timetable {
  z-index: 10000;
}

.timetable-inline {
  display: inline;
}

.timetable-table {
  display: inline-table;
  width: 0;
  color: #999;
  font-size: 12px;
  background: #fff;
  border: 1px solid #c6cfdb;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.timetable-table > tbody > tr {
  vertical-align: top;
}

.timetable-table table {
  border-collapse: collapse;
  margin: 0.15em 0 0 0;
}

.timetable-table .timetable-hours,
.timetable-table .timetable-minutes {
  padding: 8px;
}

.timetable-table .timetable-title {
  color: #999;
  line-height: 25px;
  text-align: center;
}
.timetable-table td {
  width: 2.2em;
  padding: 0.1em;
}
.timetable-table th.periods {
  width: 2.2em;
  padding: 0.1em;
}

.timetable-table td span {
	display: block;
  width: 1.2em;
  text-align: right;
  text-decoration: none;
  padding: 0.2em 0.3em 0.2em 0.5em;
}

.timetable-table td a {
  display: block;
  padding: 0.2em 0.3em 0.2em 0.5em;
  width: 1.2em;
  color: #666;
  cursor: pointer;
  text-align: right;
  text-decoration: none;
}
.timetable-table td a:hover {
  color: #fff;
  background: #ff8000;
  box-shadow: none;
  border-radius: 3px;
}
.timetable-table td a.state-active {
  color: #fff;
  font-weight: bold;
  background: #33aaff;
  box-shadow: inset 0 1px 3px #178FE5;
  border-radius: 3px;
}

.timetable .timetable-buttonpane {
  padding: 0 .2em;
}
.timetable .timetable-buttonpane button {
  width: auto;
  margin: .5em .2em .4em;
  padding: .2em .6em .3em .6em;
  overflow: visible;
  cursor: pointer;
}

.timetable .timetable-close {
  float: right;
}

.timetable .timetable-now {
  float: left;
}

.timetable .timetable-deselect {
  float: left;
}


/*----------------------------------------------------------------
* Timepicker
----------------------------------------------------------------*/
.timepicker-box {
  display: block;
  position: absolute;
  background: #fff;
  border: 1px solid #c6cfdb;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
  z-index: 10000;
}

.timepicker-box.is-hidden {
  display: none;
}

.timepicker-head {
  position: relative;
  color: #b6daf3;
  font-size: 32px;
  text-align: center;
  background: #33aaff;
  padding: 16px 0;
}
.timepicker-head span {
  cursor: pointer;
}
.timepicker-head span.is-selected {
  color: #fff;
}

.timepicker-body {
  padding: 16px;
}

.timepicker-clock {
  position: relative;
  color: #999;
  border: 1px solid #c6cfdb;
  border-radius: 50%;
}

.timepicker-clock span {
  position: absolute;
  display: block;
  color: #999;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}

.timepicker-clock span.small {
  text-indent: -10000px;
  background: #ddd;
}

.timepicker-clock span.is-selected {
  color: #fff;
  font-weight: bold;
  background: #33aaff;
  box-shadow: inset 0 1px 3px #178FE5;
}

.timepicker-clock span:hover,
.timepicker-clock span.is-selected:hover {
  color: #fff;
  background: #ff8000;
  box-shadow: none;
}


/*----------------------------------------------------------------
* Floatpanel
----------------------------------------------------------------*/
.floatpanel-box {
  position: absolute;
  display: inline-block;
  background: #fff;
  border: 1px solid #c6cfdb;
  border-radius: 3px;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
  z-index: 10000;
  opacity: 0;
}

.floatpanel-box li {
  display: block !important;
  width: auto !important;
  height: auto !important;
  border-bottom: 1px solid #c6cfdb;
  word-break: keep-all !important;
  padding: 0 !important;
  margin: 0 !important;
}
.floatpanel-box li:last-child {
  border: none;
}

.floatpanel-box a {
  display: block !important;
  width: auto !important;
  height: auto !important;
  line-height: 1em !important;
  color: #394263 !important;
  font-size: 14px !important;
  font-weight: normal !important;
  text-align: left !important;
  padding: 16px 48px 16px 24px !important;
}
.floatpanel-box a:hover {
  background: #f9fafc;
}
.floatpanel-box li:first-child a {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.floatpanel-box li:last-child a {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}


/*----------------------------------------------------------------
* Editor Panel
----------------------------------------------------------------*/
.editor-panel-wrapper {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  top: 0;
  left: 0;
  z-index: 5000;
  opacity: 0;
}

.editor-panel-active {
  position: relative;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .2);
  z-index: 5001;
}

.editor-panel-box {
  position: absolute;
  display: block;
  width: 350px;
  height: auto;
  line-height: 1;
  font-size: 12px;
  background: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .2);
  padding: 0 16px 16px;
  z-index: 5002;
  opacity: 0;
}
.editor-panel-box.wide {
  width: 480px;
}

.editor-panel-box .item {
  color: #999;
  font-size: 10px;
  padding: 16px 0 8px;
}

.editor-panel-box .row {
  padding-bottom: 4px;
}

.editor-panel-box .bt-area {
  text-align: right;
  padding-top: 12px;
}

.editor-panel-box .delete-week {
  border-collapse: collapse;
}
.editor-panel-box .delete-week label {
  height: 20px;
  margin: 0;
}
.editor-panel-box .delete-week td {
  width: 20px;
  text-align: center;
}