/* Miligram overrides */
body {
  font-family: 'Cormorant Upright', serif;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
}

.row .column.column-85{flex:0 0 85%;max-width:85%}
.row .column-responsive.column-85{flex:0 0 85%;max-width:85%}

.top-nav-links,
.side-nav,
h1 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 400;
}

h2 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 400;
}

h3, h4, h5, h6 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  color: #296AAF;
  letter-spacing: 0.2rem;
}

a {
  color:#296AAF;
  -webkit-transition:all 0.2s linear;
  transition:all 0.2s linear;
  font-weight: 400;
}

a:hover,
a:focus,
a:active  {
  color:#9dc4ed;
  -webkit-transition:all 0.2s easeout;
  transition:all 0.2s ease-out;
}

.side-nav a,
.top-nav-links a {
  color: #333;
  font-weight: 400;
}

.side-nav a:hover,
.side-nav a:focus{
  color:#2f85ae;
}

/* Utility */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Color */
.base_color {
  color: #296AAF;
}

.red_color {
  color: #BC2323;
}

.green_color {
  color: #2E8857;
}

.yel_color {
  color: #E6A800;
}

.glayl_color {
  color: #707070;
}

/* Main */
body {
  background: #fff;
  margin: 0;
  padding: 0;
  color: #333;
}
.container {
  /*display: flex;/*追加*/
  margin:0 auto;
  max-width:100%;/*112rem変更*/
  padding:0 2.0rem 0 0;
  position:relative;
  width:100%;
  margin: 0;
}
.side {
  box-shadow: 8px 0px 3px -3px rgba(0, 0, 0, 0.06);
  min-height: calc(100vh - 200px);
  display:block;
  margin-left:0;
  max-width:100%;
  width:100%
}
.side-nav {
  margin: 2rem 0;
  padding: 0;
}
.side-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-nav-list li {
  padding: 1rem 2rem 1rem 5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  margin: 0;
}

.side-nav-list li a {
  color: #296AAF;
}

.side-nav-list li.category {
  background: #296AAF;
  color: #fff;
  padding-left: 3rem;
}

.side-nav-item {
    display: block;
    padding: 0.5rem 0;
}
.content {
  padding: 2rem;
  margin: 0;
  width: 100%;
}

/* Nav bar */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;/*112rem変更*/
  padding: 2rem;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  height: 100px;
}
.top-nav-title a {
  font-size: 3rem;
  color: #296AAF;
  letter-spacing: 0.3rem;
  font-family: 'Cormorant Upright', serif;
}
.top-nav-links a {
  margin: 0 0.5rem;
  color: #296AAF;
}

/* View action */
.view.content .text {
    margin-top: 1.2rem;
}
.related {
    margin-top: 2rem;
}

/* Flash messages */
.message {
    padding: 1rem;

    background: #eff8ff;
    color: #2779bd;

    border-color: #6cb2eb;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    margin-bottom: 2rem;
}
.message.hidden {
    display: none;
}
.message.success {
    background: #e3fcec;
    color: #1f9d55;
    border-color: #51d88a;
}
.message.warning {
    background: #fffabc;
    color: #8d7b00;
    border-color: #d3b800;
}
.message.error {
    background: #fcebea;
    color: #cc1f1a;
    border-color: #ef5753;
}

/* Forms */
.input.radio,
.input.checkbox {
    margin-bottom: 2.0rem;
}
.input.radio input,
.input.checkbox input {
    margin: 0;
}
.input.radio label,
.input.checkbox label {
    margin: 0;
    display: flex;
    align-items: center;
}
.input.radio label > input,
.input.checkbox label > input {
    margin-right: 1.0rem;
}
.input.radio label:first-of-type {
    margin-bottom: 2.0rem;
}

/* Paginator */
.paginator {
    text-align: right;
}
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.pagination li {
    margin: 0 0.5rem;
}
.prev.disabled a,
.next.disabled a {
    cursor: not-allowed;
    color: #606c76;
}
.asc:after {
    content: " \2193";
}
.desc:after {
    content: " \2191";
}

/* Error */
.error-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

@media screen and (max-width: 640px) {
    .top-nav {
        margin: 0 auto;
    }
    .side-nav {
        margin-bottom: 1rem;
    }
    .heading {
        margin-bottom: 1rem;
    }
    .side-nav-item {
        display: inline;
        margin: 0 1.5rem 0 0;
    }
    .asc:after {
        content: " \2192";
    }
    .desc:after {
        content: " \2190";
    }
}

/*Footer*/
.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  height: 100px;
}

.copyright {
  padding: 2rem 0;
  text-align: center;
}

/*icon*/
.fa-sharp, .fa-solid {
  padding-right: 1rem;
}


/*Original*/

/*Form*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='email'],input[type='number'],input[type='password'],input[type='search'],input[type='tel'],input[type='text'],input[type='url'],input[type='color'],input[type='date'],input[type='month'],input[type='week'],input[type='datetime'],input[type='datetime-local'],input:not([type]),textarea,select {
  margin: 0;
}

input[type="number"] {
  -moz-appearance:textfield;
}

.input_row {
  display: flex;
  justify-content: space-between;
  align-content: space-around;
}

.input_row_n {
  display: flex;
  align-content: space-around;
}

.inputarea {
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid #f5f5f5;
}

.withtext {
  display: flex;
  align-items: flex-end;
}

.withtext span {
  padding-left: 1rem;
}

.labeltext {
  font-weight: 400;
  letter-spacing: 0.2rem;
  color: #333333;
  padding-bottom: 0.5rem;
  font-size: 1.4rem;
  margin: 0;
}

.required-txt {
  color: #296AAF;
}

.required-txt_w {
  color: #2e8857;
}

.input.radio {
  display: flex;
  padding: 1rem 0 0;
  margin-bottom: -1.5rem;
}

.radio-small {
  padding-right: 2rem;
  margin: 0;
  padding-bottom: 0;
  align-items: baseline;
}

.radio-small:last-child {
  padding-right: 0;
}

.input.radio label,
.input.checkbox label,
.radio label{
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
}

.checkbox label{
  margin: 0;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  padding-right: 2rem;
  margin-right: 1.0rem;
}

.checkbox label > input {
    margin-right: 1.0rem;
}

.checkbox_group {
  display: flex;
  align-content: stretch;
  flex-wrap: wrap;
}

.check_set {
  margin-top: -1rem;
  padding-bottom: 2rem;
}

.input.radio {
  display: flex;
  align-content: stretch;
  flex-wrap: wrap;
}

.input_area {
  padding: 1rem 0;
}

.input_subarea {
  display: flex;
  width: 100%;
}

.sub_input {
  padding-right: 2rem;
}

.sub_input:first-child {
  padding-right: 2rem;
}

.label_subtext {
  font-size: 1.4rem;
}

.help_text {
  display: inline-block;
  padding: 1rem;
  font-size: 1.3rem;
  background: #fafafa;
  color: #666;
}

.error-message {
  font-size: 1.4rem;
  color: #cc1f1a;
  background: #fdfce0;
  margin-top: 0.2rem;
  padding: 0 1rem;
  display: block;
}

textarea {
  height: auto;
}

input[type='text'].input_large, input[type='number'].input_large, input[type='date'].input_large, select.input_large, textarea.input_large {
  width: 500px;
}

input[type='text'].input_middle, input[type='number'].input_middle, input[type='date'].input_middle, select.input_middle, textarea.input_middle {
  width: 300px;
}

input[type='text'].input_half, input[type='number'].input_half, input[type='date'].input_half, select.input_half, textarea.input_half {
  width: 200px;
}

input[type='text'].input_num, input[type='number'].input_num {
  width: 150px;
}

input[type='text'].input_num_m, input[type='number'].input_num_m {
  width: 100px;
}

input[type='text'].input_num_s, input[type='number'].input_num_s {
  width: 50px;
}

.type_title {
  padding: 1rem 0 0 0;
  color: #296AAF;
  font-size: 1.4rem;
}

.displayarea {
  width: 100%;
  padding: 1rem;
}

.displayarea span {
  font-size: 1.4rem;
}

.form_grop {
  padding-bottom: 3rem;
}

.item_sub_title {
  padding: 0 1rem;
  font-size: 1.4rem;
}

.form_part_row {
  display: flex;
  align-items: baseline;
}

.form_part_row label {
  padding-right: 2rem;
}

/*BUTTON*/
.button,button,input[type='button'],input[type='reset'],input[type='submit']{
  background-color:#296AAF;
  border:0.1rem solid #296AAF;
  border-radius:.4rem;
  color:#fff;
  cursor:pointer;
  display:inline-block;
  font-size:1.7rem;
  font-weight:500;
  height:3.8rem;
  letter-spacing: 0.5rem;
  line-height:3.8rem;
  padding:0 4.0rem;
  margin: 0 1.4rem 3rem;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  white-space:nowrap;
}

.button:focus,.button:hover,button:focus,button:hover,input[type='button']:focus,input[type='button']:hover,input[type='reset']:focus,input[type='reset']:hover,input[type='submit']:focus,input[type='submit']:hover{
  background-color:#606c76;
  border-color:#606c76;
  color:#fff;
  outline:0
}

.button[disabled],button[disabled],input[type='button'][disabled],input[type='reset'][disabled],input[type='submit'][disabled]{cursor:default;opacity:.5}.button[disabled]:focus,.button[disabled]:hover,button[disabled]:focus,button[disabled]:hover,input[type='button'][disabled]:focus,input[type='button'][disabled]:hover,input[type='reset'][disabled]:focus,input[type='reset'][disabled]:hover,input[type='submit'][disabled]:focus,input[type='submit'][disabled]:hover{
  background-color:#296AAF;
  border-color:#296AAF
}

.button_w {
  background-color:#2e8857;
  border:0.1rem solid #2e8857;
}

.list_btn {
  padding: 0.5rem 2rem;
  background: #296AAF;
  color: #fff;
  letter-spacing: 0.2rem;
  border-radius: 5px;
  font-size: 1.4rem;
  display: inline-block;
}

.btn_yel {
  background: #E6A800;
}

.btn_grn {
  background: #2E8857;
}

.back_btn {
  margin: 2rem 0;
  border-top: 1px solid #e5e5e5;
  padding: 1rem;
}

.btn_large {
  display: inline-block;
  padding: 2rem 3rem;
  background: #E6A800;
  border-radius: 10px;
  color: #fff;
}

.btn_large:hover {
  background: #ff9d00;
  color: #666;
}

/*TABLE*/
table {
  border-spacing:0;
  width:100%;
  font-size: 1.4rem;
}

table tr:nth-child(odd) td, table tbody tr:nth-child(odd) td {
  background: #fafafa;
}

th {
  background: #a8a8a8;
  color: #ffffff;
  white-space: nowrap;
  font-weight: 400;
  font-size: 1.4rem;
  padding:0.8rem 1.5rem;
}

tr[data-href]{
  cursor: pointer;
}

tr[data-href]:hover td {
  background: rgba(102, 102, 102, 0.2)!important;
}

table.panel th {
  background: rgba(175, 193, 212, 0.3);
  color: #296AAF;
  white-space: nowrap;
  font-weight: 400;
  font-size: 1.4rem;
  padding:0.4rem 1.5rem;
}

table.panel tr:nth-child(odd) td{
  background: #fafafa;
}

table.panel.green th {
  background: rgba(46, 136, 87, 0.3);
  color: #2e8857;
}

th a{
  color: #ffffff;
}

td {
  border-bottom:0.1rem solid #e1e1e1;
  padding:1.2rem 1.5rem;
  text-align:left
}

td:first-child,th:first-child{
  padding-left:1rem;
}

td:last-child,th:last-child{
  padding-right:0
}

.actions {
  width: 200px;
  text-align: right;
}

.actions_l {
  text-align: left;
}

.actions a {
  padding: 0 0.5rem;
  color: #296AAF;
  font-weight: 400;
}

.actions a:hover,
.actions a:focus {
  color:#2f85ae;
}

.actions.w a {
  color: #2e8857;
}

.actions.w a:hover,
.actions.w a:focus {
  color:#89bea1;
}

.long_text {
  width: 40%;
}

.short_action {
  width: 10%;
}

.th_m {
  width: 30%;
}

.th_s {
  width: 20%;
}

.break_text {
  word-break: break-all;
  white-space: normal;
}

@media screen and (max-width: 640px){
  table {
    border-spacing:0;
    display:flex;
    width:100%
  }
  
  table thead {
    border-right:solid 0.1rem #e1e1e1
  }
  
  table thead td,table thead th {
    padding-left:0
  }
  
  table thead td:first-child,table thead th:first-child{
    padding-left:0
  }
  
  table thead td:last-child,table thead th:last-child{
    padding-right:1.2rem
  }
  
  table tbody {
    display:flex;
    overflow-x:auto;
    white-space:nowrap
  }
  
  table tbody tr {
    border-right:solid 0.1rem #e1e1e1
  }
  
  table tbody tr:last-child {
    border-right:none
  }
  
  table td,table th {
    display:block
  }
  
  table td:first-child,table th:first-child {
    padding-left:1.2rem
  }
  
  table td:last-child,table th:last-child{
    padding-right:1.2rem
  }
}

.text_right {
  text-align: right;
}

table.list {
  border-collapse: collapse;
}

table.list th, table.list td {
  border: 1px solid #fff;
}

table.list.green th {
  background: #2e8857;
}

table.list th.th_m {
  width: 30%;
}

.no_text {
  padding: 2rem 0;
}

/*Title*/
.title_large {
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
.title_medium {
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
.title_small {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

/*Line*/
.pd_line {
  border-bottom: #333 1px solid;
  margin: 1rem 0;
}
.pd_dotline {
  border-bottom: #555 1px dotted;
  margin: 1rem 0;
}

/*ul li*/
.base_ul {
  list-style: none;
}

/*View*/

.view_panel {
  padding: 2rem;
  border: 1px solid #e5e5e5;
  margin-bottom: 3rem;
}

.view_panel_group {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: baseline;
  border-bottom: 1px solid #e5e5e5;
}

.view_panel_btn {
  margin: 1rem 0;
}

.view_panel_title{
  color: #296AAF;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

.view_panel_title_w{
  color: #2e8857;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

.list_title {
  color: #296AAF;
  border-bottom: 2px solid #296AAF;
  padding: 2rem 0 1rem;
  font-size: 1.5rem;
  font-size: 1.5rem;
}

.list_cate_title {
  color: #296AAF;
  border-bottom: 1px dotted #e5e5e5;
  padding: 1rem 0 0.2rem;
  font-size: 1.4rem;
}

.list_cate_title_w {
  color: #2e8857;
  border-bottom: 1px dotted #e5e5e5;
  padding: 1rem 0 0.2rem;
  font-size: 1.4rem;
}

.list_cate_subtitle {
  color: #296AAF;
  padding: 1rem 0 0.2rem;
  font-size: 1.3rem;
}

.list_cate_subtitle_w {
  color: #2e8857;
  padding: 1rem 0 0.2rem;
  font-size: 1.3rem;
}

.list_sub {
  padding: 1rem;
}

.list_row {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.list_line_dot {
  border-bottom: 1px dotted #e5e5e5;
}

.list_group {
  padding-top: 1rem;
}

.list_group_name_w {
  color: #2e8857;
  font-size: 1.2rem;
  display: block;
}

.list_row_sub {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.list_item {
  flex-basis: 25%;
}

.list_item_half {
  flex-basis: 50%;
}

.list_item_n {
  flex-grow: 1;
}

.list_item_auto {
  flex-basis: auto;
}

.item_name {
  color: #296AAF;
  font-size: 1.2rem;
  display: block;
}

.item_name_w {
  color: #2e8857;
  font-size: 1.2rem;
  display: block;
}

.error_item {
  background: rgba(204, 31, 26, 0.29);
  margin-right: 1rem;
}

.menu_panel {
  padding: 2rem 0;
  display: flex;
  align-content: center;
  align-items: baseline;
  border-bottom: 1px solid #e5e5e5;
}

/*Woker_menu*/
.worker_side, .affiliation_side {
  width: 100%;
  font-size: 1.4rem;
}
.worker_side_box, .affiliation_side_box {
  position: relative;
  box-shadow: 5px 0px 3px -3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e5e5;
  padding: 0.5rem 0.5rem;
  margin: 0 1rem;
}

.worker_photo {
  background: #2e8857;
  width: 90px;
  height: 120px;
  display: flex;
  margin: 1rem auto;
  justify-content: center;
  align-items: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.worker_photo img {
}

.worker_photo_link {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
}

.worker_photo i {
  font-size: 6rem;
  color: #fff;
  padding: 0;
}

.worker_name, .affiliation_name {
  padding: 1rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  border-bottom: 2px solid #ccc;
  color: #fff;
}

.worker_name {
  background: #2e8857;
}

.affiliation_name{
  background: #296aaf;
}

.worker_situation, .affiliation_situation {
  padding: 1rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}

.side_row {
  display: flex;
  justify-content: space-between;
}

.side_menu, .worker_side_menu {
  margin: 0;
  list-style: none;
}

.side_menu li {
  background: #296aaf;
  padding: 1rem;
  margin-bottom: 0.1rem;
}

.worker_side_menu li {
  background: #2e8857;
  padding: 1rem;
  margin-bottom: 0.1rem;
}

.side_menu li a, .worker_side_menu li a {
  display: block;
  width:100%;
  height:100%;
  color: #fff;
}

.side_menu li:hover {
  background: rgba(41, 106, 175, 0.7);
}

/*ぱんくず*/
.breadcrumbs {
  list-style: none;
  font-size: 1.2rem;
  padding: 1rem 0 0 2rem;
  background: #f5f5f5;
  margin: 1rem 0;
  border-radius: 3px;
}

.breadcrumbs li {
  display: inline-block;
  padding-right: 1rem;
}

/*Login*/
.login {
  display: block;
  width: 350px;
  margin: 0 auto;
}

/*ファイルアップロード*/
.upload-area {
    margin: 0;
    width: 50%;
    height: 200px;
    position: relative;
    border: 1px dotted rgba(0, 0, 0, .4);
}
.upload-area i {
    position: absolute;
    font-size: 100px;
    opacity: .1;
    width: 100%;
    left: 35%;
    top: 30px;
}
.upload-area p {
    width: 100%;
    position: absolute;
    top: 120px;
    left:20%;
    opacity: .8;
}

.upload-area div {
  position: absolute;
  width: 100%;
  background: #ccc;
  left: 0;
  top: 50px;
  text-align: center;
}
 
#input-files {
    top: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

/*検索*/
.search_box {
  margin: 2rem 0;
  padding: 0 1rem;
  background: #f5f5f5;
  border-radius: 10px;
}

/*書類作成部分*/
.document_title_w{
  color: #2e8857;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  border-bottom: 2px solid #2e8857;
}
.document_sub_title_w{
  color: #2e8857;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px dotted #2e8857;
  margin: 1rem 0;
}
.document_row {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
}
.document_item_row {
  display: flex;
  padding: 1rem 0;
  flex-grow: 1;
}

.document_item_name {
  width: 200px;
}

.document_sub_menu {
  display: flex;
  align-items: flex-end;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid #2e8857;
  margin: 2rem 0;
}

.document_sub_btn_n {
  color: #fff;
  background: #2e8857;
  padding: 1.5rem 1rem 1rem;
  border: 2px solid #215f3d;
}

.document_sub_btn {
  color: #2e8857;
  background: #fff;
  padding: 1rem;
  border: 1px solid #2e8857;
}

.document_sub_btn:hover {
  color: #fff;
  background: #2e8857;
}

.document_sub_no {
  color: #ccc;
  background: #fff;
  padding: 1rem;
  border: 1px solid #ccc;
}

.document_category_menu {
  display: flex;
  align-items: flex-end;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  border-bottom: 2px solid #666;
  margin: 2rem 0 0;
}

.document_category_btn_n {
  color: #fff;
  background: #e6a800;
  padding: 1.5rem 1rem 1rem;
  border: 1px solid #666;
}

.document_category_btn {
  color: #333;
  background: #fff;
  padding: 1rem;
  border: 1px solid #666;
}

.document_category_btn:hover {
  color: #fff;
  background: #ccc;
  /*background: rgba(41, 106, 175, 0.5);*/
}

.document_category_no {
  color: #ccc;
  background: #fff;
  padding: 1rem;
  border: 1px solid #ccc;
}

.document_header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 3px solid #666;
}

.document_action_menu {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  margin: 2rem 0 0;
}

.document_action_btn {
  color: #fff;
  background: #fff;
  padding: 1rem;
  border: 1px solid #666;
}

.document_action_btn:hover {
  color: #fff;
  background: #ccc;
}



.document_control {
  display: flex;
  justify-content: flex-end;
}

/**/
.compare_on {
  display: none;
}
.diag_open{
  display: block;
}
.diag_close{
  display: none;
}

/*TOP_navi*/
.nav_panel {
  display: flex;
  padding: 1rem 0;
}

.nav_btn {
  width: 200px;
  height: 120px;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 1rem;
}

.nav_btn i {
  font-size: 3rem;
  color: #666666;
}

/*TOP_list*/

.task_panel {
  padding: 2rem;
  border: 1px solid #e5e5e5;
  margin-bottom: 1rem;
}

.task_row {
  display: flex;
  flex-flow: wrap;
  align-items: baseline;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
}

.task_box {
  flex-basis: calc(25% - 1rem);
  position: relative;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  border: 1px solid #f5f5f5;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.task_box_title {
  color: #296aaf;
  font-size: 1.6rem;
  padding: 0.5rem 0;
}

.task_box_text {
  font-size: 1.2rem;
  color: #666;
  padding: 1rem 0;
}

.task_box_mtext {
  font-size: 1.5rem;
  padding: 1rem 0;
}

.task_box_stext {
  font-size: 1rem;
  color: #666;
  padding: 1rem 0;
}

.task_box_link a {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.task_box_link a:hover {
  cursor:pointer;
  background:rgba(41, 106, 175, 0.2);
}

.task_panel_title{
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
  background: #296AAF;
  border-radius: 3px;
  padding: 0.5rem 1rem;
}

.status_panel {
  padding: 0.5rem 1rem;
  border-bottom: 1px dotted #adadad;
  margin-bottom: 1rem;
}

.status_row {
  display: flex;
  flex-flow: wrap;
  align-items: baseline;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
}

.status_panel_title {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem;
  letter-spacing: 0.2rem;
  position: relative;
}

.status_box_mtext {
  padding: 0 1rem;
  font-size: 1.6rem;
  border-right: 1px solid #666;
}

.status_btn {
  font-size: 1.4rem;
  margin-left: 3rem;
}

.attention_text {
  background: #f5f5f5;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: #bc2323;
}

.attention_box {
  text-align: center;
  padding: 3rem 0;
  margin: 2rem auto;
}

.message_text {
  background: #f5f5f5;
  padding: 0.5rem;
  font-size: 1.5rem;
}

.badge {
  position:absolute;
  top: 0;
  right: 0;
  display: inline-block;
  color: #fff;
  padding: 0.2rem 0.3rem;
  border-radius: 0.1rem;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.badge_block {
  display: inline-block;
  color: #fff;
  padding: 0.2rem 1rem;
  margin-left: 3rem;
  border-radius: 0.1rem;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.badge-blue {
    background-color: #296AAF;
}

.badge-red {
    background-color: #BC2323;
}

.badge-green {
    background-color: #2E8857;
}

.badge-yellow {
    background-color: #E6A800;
}

.aff_header {
  display: flex;
  border-bottom: 2px solid #296AAF;
  margin-bottom: 2rem;
}

.worker_header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #2E8857;
  margin-bottom: 2rem;
}

.user_header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #296AAF;
  margin-bottom: 2rem;
}

.header_title {
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
}

.header_status {
  font-size: 1.4rem;
}

.page_title {
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
  background: #296AAF;
  padding: 1rem 1rem;
  border: 1px solid #e5e5e5;
  box-shadow: 5px 0px 3px -3px rgba(0, 0, 0, 0.1);
}

.page_title_w {
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
  background: #2e8857;
  padding: 1rem 1rem;
  border: 1px solid #e5e5e5;
  box-shadow: 5px 0px 3px -3px rgba(0, 0, 0, 0.1);
}

.f_text {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
}

.status_badge {
  display: inline-block;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 0.1rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  height: 3rem;
}

.name_block {
  padding: 2rem;
  border: 1px solid #f5f5f5;
  background: rgba(230, 230, 230, 0.49);
}

.name_sepalete {
  display: flex;
  border-bottom: 1px dotted #adadad;
}

.name_titles {
  font-size: 1.2rem;
  display: block;
  padding: 0;
}

.name_box {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  padding: 2rem;
  border-bottom: 1px dotted #adadad;
}

.name_setbox {
  flex-basis: 50%;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  padding: 2rem;
}

.no-data {
  padding: 2rem;
}

.font_b {
  font-weight: 500;
}

/*Dashboard*/
.dboard {
  padding: 2rem;
}

.dboard_box {
  padding: 2rem;
  border: 1px solid #296aaf;
  flex-basis: 33.3%;
  margin: 0 0.5rem;
  position: relative;
  border-radius: 5px;
  background: #296aaf;
  color: #fff;
}

.dboard_num {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 4rem;
  font-weight: 500;
  padding: 0 3rem;
}
.dboard_table_box {
  margin: 0 1rem;
  border: 1px solid #999;
  overflow:auto;
  height: 400px;
}

.dboard_title {
  margin: 0 1rem;
  padding: 1rem 1rem;
  background: #296aaf;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

/*BG_カラー*/
.darkb_bg {
  background-color: #1a4e86;
}
.green_bg {
  background-color: #2E8857;
}
.darkgray_bg {
  background-color: #333333;
}
.gray_bg {
  background-color: #666666;
}
.red_bg {
    background-color: #BC2323;
}
.yellow_bg {
    background-color: #E6A800;
}

/* ローディング画面背景 */
.loader_bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(41, 106, 175, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ローディングアニメーション */
.loader {
  margin: 100px auto;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
