@charset "UTF-8";
/* Scss Document */
/*////////////////////////////////////////////////////////

Base Setting

////////////////////////////////////////////////////////*/
/* define aaaaaa
------------------------------------------------------- */
/* reset
------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  line-height: 150%;
  vertical-align: baseline;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
}

ul, li {
  list-style: none;
}

p {
  margin-bottom: 1rem;
}

img {
  vertical-align: bottom;
}

strong {
  color: #f89d96;
}

i {
  font-size: 18px;
  font-style: normal;
}

a {
  color: #666;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/*////////////////////////////////////////////////////////

Base layout

////////////////////////////////////////////////////////*/
html, body {
  width: 100%;
  height: 100%;
}

body {
  color: #666;
  font-size: 16px;
  line-height: 150%;
  font-family: "ヒラギノ丸ゴ Pro W3","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#container {
  min-height: 100%;
  min-width: 1000px;
  margin-bottom: -50px;
  padding-bottom: 50px;
}
#container header {
  width: 100%;
  min-width: 1000px;
  border-bottom: 1px solid #bfbfbf;
  background: #F7F7F7;
  position: fixed;
  z-index: 99;
}
#container header #logo {
  margin-bottom: 0;
  padding: 8px;
}
#container header #logo img {
  height: 30px;
}
#container header #user {
  padding-right: 1.5rem;
  position: absolute;
  top: 12px;
  right: 320px;
}
#container header #user span {
  position: relative;
  top: -2px;
}
#container header #user:after {
  position: absolute;
  right: 0;
}
#container header nav {
  position: absolute;
  top: 8px;
  right: 5px;
}
#container header nav ul {
  position: relative;
}
#container header nav ul li {
  float: left;
  display: table;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border-radius: 100%;
  position: relative;
}
#container header nav ul li:nth-child(1) {
  background: #f19ec2;
}
#container header nav ul li:nth-child(1) a {
  font-size: 20px !important;
}
#container header nav ul li:nth-child(2) {
  background: #84ccc9;
}
#container header nav ul li:nth-child(3) {
  background: #88abda;
}
#container header nav ul li:nth-child(4) {
  background: #aa89bd;
}
#container header nav ul li:nth-child(5) {
  background: #f29295;
}
#container header nav ul li:nth-child(6) {
  background: #d1c0a5;
}
#container header nav ul li:nth-child(7) {
  margin-right: 10px;
  background: #f6b37f;
}
#container header nav ul li:nth-child(8) {
  padding-left: 10px;
  border-left: 1px solid #999;
  border-radius: 0;
  position: relative;
  top: -5px;
}
#container header nav ul li:nth-child(8) a {
  color: #666 !important;
  font-size: 10px;
}
#container header nav ul li:nth-child(8) a i {
  font-size: 20px;
  position: relative;
  top: 2px;
}
#container header nav ul li a {
  display: table-cell;
  color: #FFF;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
  border-radius: 100%;
}
#container header nav ul li a span {
  display: none;
  width: 120px;
  padding: 3px 0;
  color: #FFF;
  font-size: 12px;
  text-align: center;
  background: #333;
  position: absolute;
  left: -45px;
  bottom: -40px;
  transition: .3s;
}
#container header nav ul li a span:before {
  background: #111;
  position: absolute;
  top: -5px;
  left: 55px;
}
#container header nav ul li a:hover {
  opacity: 1;
}
#container header nav ul li a:hover span {
  display: block;
  bottom: -40px;
}
#container section {
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#container section .contents {
  margin-bottom: 30px;
}
#container section h1 {
  margin-bottom: 10px;
  font-size: 36px;
}
#container section h1 span {
  font-size: 26px;
}
#container section h2 {
  margin-bottom: 30px;
  font-size: 30px;
}
#container section h3 {
  margin-bottom: 5px;
  padding-left: 10px;
  font-size: 20px;
  position: relative;
}
#container section h3:before {
  content: '';
  display: block;
  width: 5px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: 0;
}
#container section #times {
  position: absolute;
  top: 110px;
  right: 0;
}
#container section #breadcrumb {
  margin-bottom: 50px;
}
#container section #breadcrumb li {
  display: inline-block;
  margin-right: 8px;
  padding-right: 20px;
  font-size: 12px;
  position: relative;
}
#container section #breadcrumb li:after {
  content: '>';
  position: absolute;
  top: -1px;
  right: 0;
}
#container section #breadcrumb li:last-child:after {
  display: none;
}

footer {
  height: 49px;
  border-top: 1px solid #bfbfbf;
  background: #f7f7f7;
}
footer small {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
}

/*////////////////////////////////////////////////////////

Common settings

////////////////////////////////////////////////////////*/
/* table (list)
------------------------------------------------------- */
.table_list {
  width: 100%;
}
.table_list th, .table_list td {
  width: inherit;
  padding: 8px;
  font-weight: normal;
}
.table_list th {
  min-width: 3rem;
  color: #FFF;
  text-align: center;
}
.table_list th.id_cell {
  width: 150px !important;
}
.table_list td {
  text-align: left;
  vertical-align: middle;
}
.table_list td .btn {
  display: inline-block;
  padding: 2px 8px;
  color: #FFF;
  font-size: 0.9rem;
  border-radius: 3px;
}
.table_list td .btn i {
  padding: 3px 0;
}
.table_list td .disabled {
  background: #999 !important;
}
.table_list td.btn_cell {
  width: 130px;
  text-align: right !important;
}

.table_data {
  border-top: 1px solid;
  border-right: 1px solid;
}
.table_data th, .table_data td {
  border-left: 1px solid;
}
.table_data th {
  text-align: center !important;
}
.table_data td {
  font-size: 0.8rem;
  text-align: center;
  vertical-align: middle;
}
.table_data td span {
  color: #8859a4;
  font-size: 1.8rem;
  position: relative;
  top: 3px;
}

.table_delete tr {
  cursor: pointer;
}
.table_delete tr td:last-child {
  width: 30px;
  text-align: center !important;
}

.overflow, .overflow_s, .overflow_m, .overflow_l, .overflow_ll {
  display: inline-block;
  margin: 0 !important;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.overflow_s {
  max-width: 10em;
}

.overflow_m {
  max-width: 15em;
}

.overflow_l {
  max-width: 20em;
}

.overflow_ll {
  max-width: 30em;
}

.fa-male {
  width: 1.6em;
  color: #46adde;
  font-size: 1.2rem !important;
  text-align: center;
}

.fa-female {
  width: 1.6em;
  color: #e46c70;
  font-size: 1.2rem !important;
  text-align: center;
}

/* table (detail)
------------------------------------------------------- */
.table_detail {
  width: 100%;
  border-top: 1px solid;
}
.table_detail th, .table_detail td {
  padding: 8px;
  font-weight: normal;
  text-align: left;
  border-bottom: 1px solid;
}
.table_detail th {
  width: 170px;
  color: #FFF;
  vertical-align: top;
  position: relative;
}
.table_detail th i {
  color: #DC3437;
  position: absolute;
  top: 11px;
  right: 10px;
}
.table_detail td table {
  width: 100%;
  border: none;
}
.table_detail td td {
  padding: 3px 3px 8px;
  border-bottom: 1px solid;
}
.table_detail td tr:last-child td {
  border-bottom: none;
}
.table_detail .sub_head {
  margin-bottom: 5px;
}

/* table (head & foot)
------------------------------------------------------- */
.table_head {
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.table_foot {
  padding-top: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* sort */
.sort {
  float: left;
  margin-bottom: 0;
}
.sort a, .sort strong {
  display: inline-block;
  padding: 0 10px;
}

/* filter */
.filter {
  /*display: none;*/
  width: 100%;
  margin: 0 0 10px;
  padding: 10px 20px;
  border: 1px dotted #CCC;
  /*border-radius: 5px;*/
  position: relative;
  /*&:after {
  	display: block;
  	content: "";
  	border: 15px solid transparent;
  	border-top: 20px solid #666;
  	position: absolute;
  	left: 50px;
  	bottom: -37px;
  }*/
}
.filter td {
  padding: 10px 10px 10px 0;
  border-bottom: 1px dotted #CCC;
}
.filter tr:last-child td {
  border-bottom: none;
}
.filter label {
  margin-right: 15px;
}
.filter select {
  max-width: 12rem !important;
}

/* pager */
.pager {
  float: right;
  position: relative;
  overflow: hidden;
}
.pager li {
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
}
.pager li a, .pager li strong {
  display: block;
}

/* result */
.result_num {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* form
------------------------------------------------------- */
input {
  padding: 2px;
  font-size: 14px;
}

select, option {
  height: 1.5em;
  font-size: 1em;
  line-height: 150%;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* IE11 */
}

textarea {
  width: 700px;
  height: 250px;
  font-size: 1rem;
  line-height: 130%;
  border: 1px solid #CCC;
}

label.select {
  display: inline-block;
  border: 1px solid #999;
  position: relative;
}
label.select select {
  max-width: 15em;
  height: 1.8rem;
  padding: 3px 30px 3px 7px;
  font-size: 1rem;
}
label.select select option {
  width: 100%;
}
label.select:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-top: 8px solid #999;
  border-right: 5px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  top: 50%;
  right: 9px;
  z-index: 2;
}

.check_type label {
  display: inline-block;
  width: 200px;
  padding: 5px 10px;
  font-size: 1.1rem;
  text-align: center;
  border: 1px solid;
  border-radius: 3px;
  position: relative;
}
.check_type label:hover {
  cursor: pointer;
}
.check_type label.checked {
  background: #FFF2E4;
}
.check_type label.checked i {
  display: inline-block;
}
.check_type label input {
  display: none;
}

/* button */
.btn_link {
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
}
.btn_link a {
  display: block;
  padding: 5px 20px;
  text-decoration: none !important;
}
.btn_link a:hover {
  color: #FFF !important;
  opacity: 1;
}
.btn_link.exec {
  border: 3px solid #ff782e !important;
  background: #ff782e;
}
.btn_link.exec a {
  color: #FFF !important;
  font-weight: bold;
}
.btn_link.exec a:hover {
  background: #ff782e !important;
  opacity: 0.8;
}

.btn_base, input.btn_back, input.btn_submit {
  display: inline-block;
  padding: 3px 20px;
  font-size: 18px;
  border: 1px solid;
  border-radius: 5px;
  -webkit-appearance: none;
  appearance: none;
}
.btn_base:hover, input.btn_back:hover, input.btn_submit:hover {
  opacity: 0.8;
  cursor: pointer;
}

input.btn_back {
  color: #FFF;
  background: #999;
  border-color: #999;
}

input.btn_submit {
  color: #FFF;
  background: #ff782e;
  border-color: #ff782e;
}

.btn_box {
  margin-bottom: 50px;
  padding: 10px;
  text-align: center;
}
.btn_box input {
  margin: 0 5px;
}
.btn_box .btn {
  display: inline-block;
  padding: 5px 20px;
  color: #FFF;
  background: #ff782e;
  border-radius: 5px;
}
.btn_box.line {
  padding: 40px 10px !important;
  border: 1px solid #CCC;
}

.error {
  color: #F00;
}
.error input {
  margin-right: 5px;
  background: #FFCCCC;
}
.error i {
  display: inline-block;
  margin-right: 5px;
}

.executing {
  display: none;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  position: fixed;
  top: 50%;
  left: 50%;
}

/* arrow
------------------------------------------------------- */
.arrow_box, #container header nav ul li a span:before, .arrow:before, #main_menu li a p:before, .arrow:after, #main_menu li a p:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.arrow, #main_menu li a p {
  position: relative;
}
.arrow:before, #main_menu li a p:before {
  background: #666;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}
.arrow:after, #main_menu li a p:after {
  background: #FFF;
  position: absolute;
  top: 10px;
  right: 13px;
  z-index: 2;
}

/*////////////////////////////////////////////////////////

login

////////////////////////////////////////////////////////*/
.page_login header #user {
  right: 10px !important;
}
.page_login section {
  text-align: center;
}
.page_login section form,
.page_login section .login_info {
  width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  border: 1px solid #CCC;
  border-radius: 10px;
  box-sizing: border-box;
}
.page_login section form table,
.page_login section .login_info table {
  width: 380px !important;
  margin: 0 auto 15px;
  border: none !important;
}
.page_login section form table th, .page_login section form table td,
.page_login section .login_info table th,
.page_login section .login_info table td {
  color: #666 !important;
  border: none !important;
}
.page_login section form table th input, .page_login section form table td input,
.page_login section .login_info table th input,
.page_login section .login_info table td input {
  width: 250px;
}
.page_login section h2 {
  margin-bottom: 15px !important;
  font-size: 20px !important;
}
.page_login section .btn_box {
  margin-bottom: 0;
}
.page_login section a {
  color: #f19ec2;
  text-decoration: underline;
}
.page_login section label {
  display: inline-block;
  padding: 3px;
  text-decoration: underline;
  cursor: pointer;
}
.page_login section input[type="checkbox"].on-off {
  display: none;
}
.page_login section .menu ul {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page_login section .menu ul li {
  padding-left: 100px;
  text-align: left;
  position: relative;
}
.page_login section .menu ul li span {
  position: absolute;
  top: 0;
  left: 0;
}
.page_login section input[type="checkbox"].on-off + ul {
  height: 0;
  overflow: hidden;
}
.page_login section input[type="checkbox"].on-off:checked + ul {
  height: 220px;
  padding: 10px;
  border: 1px dotted #999;
}

/*////////////////////////////////////////////////////////

main menu

////////////////////////////////////////////////////////*/
#main_menu {
  text-align: center;
  position: relative;
  overflow: hidden;
}
#main_menu li {
  display: inline-table;
  width: 320px;
  margin: 0 10px 10px 0;
  border-radius: 10px;
  position: relative;
}
#main_menu li a {
  display: block;
}
#main_menu li a div {
  display: table-cell;
  width: 330px;
  padding: 25px;
  color: #FFF;
  font-size: 24px !important;
  text-align: right;
  vertical-align: middle;
  box-sizing: border-box;
}
#main_menu li a div i {
  font-size: 64px;
  position: absolute;
  top: 10px;
  left: 20px;
}
#main_menu li a p {
  margin: 0 2px 2px 2px;
  padding: 15px 10px;
  text-align: left;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #FFF;
}
#main_menu li a p:before {
  margin-top: -5px;
  top: 50%;
}
#main_menu li a p:after {
  margin-top: -5px;
  top: 50%;
}
#main_menu li:nth-child(1) {
  background: #84ccc9;
}
#main_menu li:nth-child(1) a {
  color: #51aeaa;
}
#main_menu li:nth-child(1) a p:before {
  background: #51aeaa;
}
#main_menu li:nth-child(2) {
  background: #88abda;
}
#main_menu li:nth-child(2) a {
  color: #5381bf;
}
#main_menu li:nth-child(2) a p:before {
  background: #5381bf;
}
#main_menu li:nth-child(3) {
  margin-right: 0;
  background: #aa89bd;
}
#main_menu li:nth-child(3) a {
  color: #8859a4;
}
#main_menu li:nth-child(3) a p:before {
  background: #8859a4;
}
#main_menu li:nth-child(4) {
  background: #f29295;
}
#main_menu li:nth-child(4) a {
  color: #dc6468;
}
#main_menu li:nth-child(4) a p:before {
  background: #dc6468;
}
#main_menu li:nth-child(5) {
  background: #d1c0a5;
}
#main_menu li:nth-child(5) a {
  color: #b6996a;
}
#main_menu li:nth-child(5) a p:before {
  background: #b6996a;
}
#main_menu li:nth-child(6) {
  margin-right: 0;
  background: #f6b37f;
}
#main_menu li:nth-child(6) a {
  color: #df8a49;
}
#main_menu li:nth-child(6) a p:before {
  background: #df8a49;
}

/*////////////////////////////////////////////////////////

status

////////////////////////////////////////////////////////*/
#page_status {
  /* parts color */
  /* contents setting */
}
#page_status h3 {
  color: #51aeaa;
}
#page_status h3:before {
  background: #51aeaa;
}
#page_status .table_detail th,
#page_status .table_detail td {
  border-color: #84ccc9;
}
#page_status .table_list th,
#page_status .table_list td {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #84ccc9;
}
#page_status th {
  background: #84ccc9;
}
#page_status td .btn {
  background: #84ccc9;
}
#page_status .sort a, #page_status .sort strong {
  color: #51aeaa;
  border: 2px solid #84ccc9;
}
#page_status .sort strong {
  color: #FFF;
  background: #84ccc9;
}
#page_status .filter {
  border-color: #84ccc9;
}
#page_status .filter:after {
  border-top-color: #84ccc9;
}
#page_status .pager a {
  color: #51aeaa;
  border: 2px solid #84ccc9;
}
#page_status .pager strong {
  color: #FFF;
  border: 2px solid #84ccc9;
  background: #84ccc9;
}
#page_status .btn_link {
  border: 3px solid #84ccc9;
}
#page_status .btn_link a {
  color: #51aeaa;
}
#page_status .btn_link a:hover {
  background: #84ccc9;
}
#page_status #chart_box {
  margin-bottom: 50px;
  padding-bottom: 45px;
  position: relative;
}
#page_status #chart_box .total {
  width: 2.5em;
  margin-left: -1.25em;
  color: #51aeaa;
  font-size: 38px;
  text-align: center;
  position: absolute;
  top: 77px;
  left: 105px;
}
#page_status #chart_box #graph {
  width: 250px;
  border-collapse: separate;
  position: absolute;
  top: 13px;
  left: 220px;
}
#page_status #chart_box #graph td {
  padding: 10px 15px;
  color: #FFF;
  text-align: center;
  background: #84ccc9;
}
#page_status #chart_box #graph td:nth-child(2) {
  width: 50%;
  background: #f29295 !important;
}
#page_status #chart_box #graph td span {
  display: block;
  font-size: 30px;
}
#page_status #chart_box #list {
  width: 520px;
  border-collapse: collapse;
  border-top: 1px solid #84ccc9;
  position: absolute;
  top: 15px;
  right: 0;
}
#page_status #chart_box #list th, #page_status #chart_box #list td {
  padding: 10px;
  border-right: 1px solid #FFF !important;
  border-bottom: 1px solid #84ccc9;
}
#page_status #chart_box #list th {
  padding: 7px 10px 6px;
  color: #FFF;
}
#page_status #chart_box #list .office_cell {
  width: 13em;
}
#page_status #chart_box .btn_link {
  position: absolute;
  right: 0;
  bottom: 0;
}
#page_status .stead {
  margin-bottom: 50px;
}
#page_status .stead th.title {
  padding-left: 35px !important;
  text-align: left !important;
  position: relative;
}
#page_status .stead th.title span {
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 15px;
}
#page_status .stead td {
  position: relative;
}
#page_status .stead td span {
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 5px;
}
#page_status .stead td label {
  display: inline-block;
  font-size: 0.9rem;
}
#page_status .stead td label:nth-child(1) {
  width: 140px;
}
#page_status .stead td label:nth-child(2), #page_status .stead td label:nth-child(3) {
  width: 125px;
}
#page_status .stead td label:nth-child(4) {
  width: 170px;
}
#page_status .stead tr td:first-child {
  width: 400px;
  padding-left: 35px;
}

/*////////////////////////////////////////////////////////

person

////////////////////////////////////////////////////////*/
#page_person {
  /* parts color */
  /* contents setting */
}
#page_person h3 {
  color: #5381bf;
}
#page_person h3:before {
  background: #5381bf;
}
#page_person .table_detail th,
#page_person .table_detail td {
  border-color: #88abda;
}
#page_person .table_list th,
#page_person .table_list td {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #88abda;
}
#page_person th {
  background: #88abda;
}
#page_person td .btn {
  background: #88abda;
}
#page_person .sort a, #page_person .sort strong {
  color: #5381bf;
  border: 2px solid #88abda;
}
#page_person .sort strong {
  color: #FFF;
  background: #88abda;
}
#page_person .filter {
  border-color: #88abda;
}
#page_person .filter:after {
  border-top-color: #88abda;
}
#page_person .pager a {
  color: #5381bf;
  border: 2px solid #88abda;
}
#page_person .pager strong {
  color: #FFF;
  border: 2px solid #88abda;
  background: #88abda;
}
#page_person .btn_link {
  border: 3px solid #88abda;
}
#page_person .btn_link a {
  color: #5381bf;
}
#page_person .btn_link a:hover {
  background: #88abda;
}
#page_person .office_cell {
  width: 10em;
}

#profile {
  text-align: center;
}
#profile .profile_head {
  margin-bottom: 50px;
}
#profile .profile_head p {
  text-decoration: underline;
}
#profile .chart_box {
  width: 800px;
  margin: 0 auto 30px;
  padding: 20px;
  border: 1px solid #999;
}
#profile .chart_box h3 {
  margin-bottom: 50px;
}
#profile .color_sample {
  text-align: center;
}
#profile .color_sample li {
  display: inline-block;
  margin: 0 10px;
  padding-left: 45px;
  position: relative;
}
#profile .color_sample li:before {
  content: '';
  display: block;
  width: 40px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 0;
}
#profile .color_sample li:first-child:before {
  background: rgba(255, 100, 100, 0.4);
}
#profile .color_sample li:last-child:before {
  background: rgba(100, 100, 255, 0.3);
}
#profile #canvas_stress_cause,
#profile #canvas_stress_reaction,
#profile #canvas_stress_impact {
  width: 100%;
}

/*////////////////////////////////////////////////////////

group

////////////////////////////////////////////////////////*/
#page_group {
  /* parts color */
}
#page_group h3 {
  color: #8859a4;
}
#page_group h3:before {
  background: #8859a4;
}
#page_group .table_detail th,
#page_group .table_detail td {
  border-color: #aa89bd;
}
#page_group .table_list th,
#page_group .table_list td {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #aa89bd;
}
#page_group .table_data th,
#page_group .table_data td {
  border-color: #8859a4 !important;
}
#page_group th {
  background: #aa89bd;
}
#page_group td .btn {
  background: #aa89bd;
}
#page_group .sort a, #page_group .sort strong {
  color: #8859a4;
  border: 2px solid #aa89bd;
}
#page_group .sort strong {
  color: #FFF;
  background: #aa89bd;
}
#page_group .filter i {
  color: #aa89bd;
}
#page_group .pager a {
  color: #8859a4;
  border: 2px solid #aa89bd;
}
#page_group .pager strong {
  color: #FFF;
  border: 2px solid #aa89bd;
  background: #aa89bd;
}

.table_group {
  width: 100%;
}
.table_group td {
  width: 25%;
  padding: 5px;
}
.table_group td label {
  display: inline-block;
  width: 90%;
  padding: 2px 10px 2px 30px;
  border: 1px solid #aa89bd;
  border-radius: 3px;
  position: relative;
}
.table_group td label i {
  display: none;
  color: #ff782e;
  font-size: 1.2rem;
  position: absolute;
  top: 5px;
  left: 5px;
}
.table_group td label:hover {
  cursor: pointer;
}
.table_group td label.checked {
  background: #FFF2E4;
}
.table_group td label.checked i {
  display: inline-block;
}
.table_group td label.unchecked i {
  display: none;
}
.table_group td label input {
  display: none;
}
.table_group td.head_cell {
  color: #FFF;
  text-align: left;
  background: #aa89bd;
}

.example_box {
  width: 500px;
  margin: 0 auto 20px;
  padding: 20px 0;
  text-align: center;
  border: 1px solid #999;
}
.example_box img {
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: -4px;
}

.popup {
  min-width: 100% !important;
}
.popup header,
.popup section {
  width: 100% !important;
  max-width: 1000px;
}
.popup section {
  padding: 50px 10px !important;
  box-sizing: border-box;
}
.popup .graph_box {
  width: 820px;
  margin: 0 auto;
}

/*////////////////////////////////////////////////////////

stress

////////////////////////////////////////////////////////*/
#page_stress {
  /* parts color */
}
#page_stress h3 {
  color: #dc6468;
}
#page_stress h3:before {
  background: #dc6468;
}
#page_stress .table_detail th,
#page_stress .table_detail td {
  border-color: #f29295;
}
#page_stress .table_list th,
#page_stress .table_list td {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #f29295;
}
#page_stress .table_data,
#page_stress .table_data th,
#page_stress .table_data td {
  border-color: #dc6468 !important;
}
#page_stress th {
  background: #f29295;
}
#page_stress td .btn {
  background: #f29295;
}
#page_stress .sort a, #page_stress .sort strong {
  color: #dc6468;
  border: 2px solid #f29295;
}
#page_stress .sort strong {
  color: #FFF;
  background: #f29295;
}
#page_stress .filter {
  border-color: #f29295;
}
#page_stress .filter:after {
  border-top-color: #f29295;
}
#page_stress .pager a {
  color: #dc6468;
  border: 2px solid #f29295;
}
#page_stress .pager strong {
  color: #FFF;
  border: 2px solid #f29295;
  background: #f29295;
}
#page_stress .btn_link {
  border: 3px solid #f29295;
}
#page_stress .btn_link a {
  color: #dc6468;
}
#page_stress .btn_link a:hover {
  background: #f29295;
}
#page_stress .office_cell {
  width: 10em;
}

/*////////////////////////////////////////////////////////

config

////////////////////////////////////////////////////////*/
#page_config {
  /* parts color */
}
#page_config h3 {
  color: #b6996a;
}
#page_config h3:before {
  background: #b6996a;
}
#page_config .table_detail,
#page_config .table_detail th,
#page_config .table_detail td {
  border-color: #d1c0a5;
}
#page_config .table_list th,
#page_config .table_list td {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #d1c0a5;
}
#page_config th {
  background: #d1c0a5;
}
#page_config td .btn {
  background: #d1c0a5;
}
#page_config .pager a {
  color: #b6996a;
  border: 2px solid #d1c0a5;
}
#page_config .pager strong {
  color: #FFF;
  border: 2px solid #d1c0a5;
  background: #d1c0a5;
}
#page_config .btn_link {
  border: 3px solid #d1c0a5;
}
#page_config .btn_link a {
  color: #b6996a;
}
#page_config .btn_link a:hover {
  background: #d1c0a5;
}
#page_config #config_menu {
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
#page_config #config_menu li {
  float: left;
  width: 325px;
  margin: 0 10px 0 0;
  border-radius: 10px;
  position: relative;
}
#page_config #config_menu li:nth-child(3) {
  margin-right: 0;
}
#page_config #config_menu li a, #page_config #config_menu li strong {
  display: block;
  padding: 25px 10px;
  color: #FFF;
  font-size: 26px !important;
  text-align: right;
  border-radius: 10px;
  border: 2px solid #b6996a;
  background: #b6996a;
  box-sizing: border-box;
}
#page_config #config_menu li a i, #page_config #config_menu li strong i {
  font-size: 64px;
  position: absolute;
  top: 15px;
  left: 20px;
}
#page_config #config_menu li strong {
  color: #b6996a;
  border: 2px solid #b6996a;
  background: none;
}
#page_config .import .error {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px dotted #F00;
}

/*////////////////////////////////////////////////////////

manual

////////////////////////////////////////////////////////*/
#page_manual h3 {
  color: #df8a49;
}
#page_manual h3:before {
  background: #df8a49;
}
#page_manual .qa {
  border-bottom: 1px solid #CCC;
}
#page_manual .qa dt, #page_manual .qa dd {
  padding: 10px 10px 10px 40px;
  position: relative;
}
#page_manual .qa dt .icon, #page_manual .qa dd .icon {
  font-size: 1.3rem;
  position: absolute;
  top: 6px;
  left: 10px;
}
#page_manual .qa dt {
  padding-top: 15px;
  border-top: 1px solid #CCC;
  border-bottom: 1px dotted #CCC;
}
#page_manual .qa dt .icon {
  top: 10px;
}
#page_manual .qa dd {
  padding-bottom: 15px;
}

/*////////////////////////////////////////////////////////

other parts

////////////////////////////////////////////////////////*/
/* follow
------------------------------------------------------- */
#follow_message {
  width: 90%;
  height: 300px;
}

/* page top
------------------------------------------------------- */
#page-top {
  margin-bottom: 0;
  position: fixed;
  right: 30px;
  bottom: 0;
  z-index: 99;
}
#page-top a {
  display: block;
  padding: 5px 15px;
  color: #FFF;
  font-size: 0.8em;
  background: rgba(248, 157, 150, 0.95);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#page-top a i {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2em;
}
#page-topa:hover {
  text-decoration: none;
}

/* start
------------------------------------------------------- */
#start header ul li:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #FFF;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
#start header ul li:nth-child(6):after, #start header ul li:nth-child(7):after, #start header ul li:last-child:after {
  display: none;
}
#start #main_menu li:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #FFF;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
#start #main_menu li:nth-child(5):after, #start #main_menu li:nth-child(6):after {
  display: none;
}
