@charset "utf-8";
/* CSS Document */

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

.ui-state-disabled{
    
    opacity: 0.9;
}


html,body{
width:auto;
height:100%;
}

body{
padding:0;
margin:0 auto;
background: #f8f8f8;
/*background: #eff0f2;--*/
/*
font-family:'Lucida Grande', 'Hiragino Kaku Gothic ProN', '?q???M?m?p?S ProN W3', Meiryo, ???C???I, sans-serif;
*/
font-family:"ＭＳ Ｐゴシック" , "MS PGothic","メイリオ", sans-serif;

/*
font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto ,"ＭＳ ゴシック" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro"  , Meiryo ,  "MS PGothic" , sans-serif;
*/


font-size:12px;
color: #0e4354;
}
.clear{
clear:both;
}
a{
color:#256c89;
}
h2{
font-size:18px;
color:#256c89;
font-weight:normal;
padding:0px 0 15px 0;
margin:0px;
clear:both;
}
h3{
font-size:18px;
color:#256c89;
font-weight:normal;
padding:15px 0 5px 20px;
margin:0px;
float:left;
clear:both;
}
a.forgot_pass{
float:right;
color:#256c89;
text-decoration:none;
background:url(../images/help.png) no-repeat left;
padding:0 0 0 18px;
display:block;
margin:15px 20px 0 0;
}
/* レスポンシブ */
#main_container{
    width:100%;
    min-height: 100%;
    height: auto !important;
    padding:0px 0 0px 0;
    position:relative;
}

#shift #main_container,
#syain #main_container,
#Kibo #main_container,
#sagyo #main_container,
#Hibetu #main_container,
#GekkanKibo #main_container{
    width: 100%;
}


#main_container:before{
position: absolute;
display: block;
content: "";
top: 0;
left: 274px;
right: 0;
bottom: 0;
background: #fcfbf9;
z-index: -1;
}
.header{
width:100%;
height:100px;
}
.header_login{
width:600px;
margin:auto;
}
.logo{
float:left;
padding:35px 0 0 0;
}
#clock_a{
float:right;
padding:15px 0 0 0;
}
.jclock{
color:#FFFFFF;
float:right;
font-size:22px;
font-weight:bold;
padding:34px 25px 0 0;
}
.right_header{
width:350px;
float:right;
text-align:right;
color:#FFFFFF;
padding:40px 0 0 0;
}
.right_header a{
margin:0 5px 0 5px;
text-decoration:underline;
color:#FFFFFF;
}
.right_header a.messages{
background:url(../images/comment.png) no-repeat right;
padding-right:20px;
}
.right_header a.logout{
background:url(../images/user_logout.png) no-repeat right;
padding-right:20px;
}

.main_content{
margin:0 auto;
width:100%;
height:auto;
padding:0;
}
.footer{
	width:100%;height:auto;
}
.footer_login{width:600px;margin:auto;}

.left_footer{float:left;padding:25px 0 0 10px;color:#a8549b;font-size:11px;}
.left_footer a{color:#FFFFFF;text-decoration:none;}
.right_footer{float:right;padding:25px 10px 0 0;}

.left_footer_login{float:left;padding:15px 0 0 10px;color:#a8549b;font-size:11px;}
.left_footer_login a{color:#FFFFFF;text-decoration:none;}
.right_footer_login{float:right;padding:15px 10px 0 0;}
/*---------------- menu----------------------*/
/* ベースとなるメニュースタイル */
.menu {
    font-size: 11px;
    padding: 0px 10px 0 10px;
    width: 100%;
    background: #f8f8f8;
    overflow: hidden;
}

/* ベースのメニューリスト */
.menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    height: 34px;
    display: flex; /* フレックスボックスをベースとして使用 */
    width: 100%;
}

.menu ul li {
    flex: 1; /* 均等に幅を分配 */
}

/* 基本リンクスタイル */
.menu a, .menu a:visited {
    height: 34px;
    line-height: 34px;
    display: block;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 大きい画面サイズ（デフォルト）*/
@media screen and (min-width: 1681px) {
    .menu a, .menu a:visited {
        width: 150px;
    }
}

/* 1680px向けの設定 */
@media screen and (max-width: 1680px) and (min-width: 1301px) {
    .menu a, .menu a:visited {
        width: 130px;
        font-size: 11px;
    }
    
    .file-menu ul li a {
        padding: 0 20px;
    }
}

/* 1300px向けの設定 */
@media screen and (max-width: 1300px) and (min-width: 769px) {
    .menu a, .menu a:visited {
        width: 100px;
        font-size: 9px;
    }
    
    .file-menu ul li a {
        padding: 0 16px;
    }
}

/* モバイル向けの設定 */
/* @media screen and (max-width: 768px) {
    .menu a, .menu a:visited {
        width: 70px;
        font-size: 6px;
    }
    
    .file-menu ul li a {
        padding: 0 10px;
    }
} */

/* ファイルメニュー */
.fileBlock {
    position: relative;
}

.file-menu {
    font-size: 11px;
    padding: 0px 10px;
    width: 100%;
    background-color: #e4e4e5;
}

.file-menu ul {
    width: auto;
    display: flex;
}

.file-menu ul li a {
    width: auto;
    padding: 0 25px;
    border-bottom: none !important;
    color: #000 !important;
}

.file-menu ul li a:hover {
    background: #d1d1d1;
    border: none;
}

/* ロゴブロック */
.logoBlock {
    position: absolute;
    right: 15px;
    top: 7px;
    margin: 0;
}

/* 履歴メニュー */
.rirekiSimiMenu {
    background-color: #ff0;
}

/* サブメニュー関連 */
.menu ul ul {
    width: auto;
    display: block;
    visibility: hidden;
    position: absolute;
    height: 0;
    top: 34px;
    left: 0;
    width: 14em;
    z-index: 9999;
}

.menu ul ul li {
    display: block;
    width: auto;
    height: auto;
    position: relative;
    line-height: 1em;
    flex: none;
}

.menu ul ul a, .menu ul ul a:visited {
    display: block;
    background: #57c0e8;
    border-bottom: 1px #81dafc solid;
    color: #fff;
    width: 12em;
    height: 100%;
    line-height: 1em;
    padding: 1em 1em;
}

.menu ul table ul a, .menu ul table ul a:visited {
    width: 14em;
    width: 12em;
}

/* サブメニューの位置調整 */
.menu ul ul ul {
    left: 14em;
    top: 0;
    width: 14em;
}

.menu ul ul ul.left {
    left: -14em;
}

/* ホバー効果 */
.menu li:hover {
    position: relative;
}

* html .menu a:hover {
    position: relative;
}

.menu a:hover {
    border-bottom: medium solid blue;
}

.menu a.none:hover {
    border-bottom: medium solid #333;
}

.menu ul ul a:hover {
    color: #000;
    background-color: gainsboro;
}

.menu ul ul :hover > a {
    color: #000;
    background-color: gainsboro;
}

.menu ul ul ul a:hover {
    background-color: gainsboro;
}

.menu ul ul ul :hover > a {
    background-color: gainsboro;
}

.menu ul ul ul ul a:hover {
    background-color: gainsboro;
}

/* サブメニュー表示/非表示 */
.menu ul li:hover ul, .menu ul a:hover ul {
    visibility: visible;
    height: auto;
    padding-bottom: 3em;
    background: rgba(200, 200, 200, 0.5);
}

.menu ul :hover ul ul {
    visibility: hidden;
}

.menu ul :hover ul :hover ul ul {
    visibility: hidden;
}

.menu ul :hover ul :hover ul {
    visibility: visible;
}

.menu ul :hover ul :hover ul :hover ul {
    visibility: visible;
}

/* カレントメニュー */
.menu ul li a.currentMenu {
    border-bottom: medium solid blue;
    color: blue;
}

.file-menu ul li a{
	border-bottom:none !important;
	color:#000 !important;
}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {display:block;background:#57c0e8; border-bottom:1px #81dafc solid; color:#fff;width:12em;height:100%;line-height:1em;padding:1em 1em;}
.menu ul table ul a, .menu ul table ul a:visited  {width:14em; w\idth:12em;}


/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; left:0; top:0; font-size:1em; z-index:-1;}
.menu ul ul table {lef\t:-1px;}
.menu ul ul table ul.left {margin-lef\t:2px;}

.menu li:hover {position:relative;}
* html .menu a:hover {position:relative;}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#57c0e8;}
/* style the fourth level background */
.menu ul ul ul ul a, .menu ul ul ul ul a:visited {background:#57c0e8;}
/* style the sub level 1 background */
.menu ul :hover a.sub1 {background:url(../images/arrow.gif) no-repeat right #309dc7;}
/* style the sub level 2 background */
.menu ul ul :hover a.sub2 {background:url(../images/arrow.gif) no-repeat right #088bb4;}

/* style the level hovers */
/* first */
.menu a:hover {border-bottom: medium solid blue;}

.menu a.none:hover {border-bottom: medium solid #333;}
/* second */
.menu ul ul a:hover{color:#000; background-color: gainsboro;}
.menu ul ul :hover > a {color:#000; background-color: gainsboro;}
/* third */
.menu ul ul ul a:hover {background-color: gainsboro;}
.menu ul ul ul :hover > a {background-color: gainsboro;}
/* fourth */
.menu ul ul ul ul a:hover {background-color: gainsboro;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:34px;left:0;width:14em; z-index:9999;}

/* position the third level flyout menu */
.menu ul ul ul{left:14em;top:0;width:14em;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-14em;}


/* make the second level visible when hover on first level list OR link */

/*.menu ul li:hover ul, .menu ul a:hover ul {visibility:visible; height:auto; padding-bottom:3em; background:transparent url(../images/trans.gif);}
*/
/*
20210930 -- ++
.menu ul li:hover ul, .menu ul a:hover ul {visibility:visible; height:auto; padding-bottom:3em; background:transparent url(../images/trans.gif);}
*/
.menu ul li:hover ul, .menu ul a:hover ul {visibility:visible; height:auto; padding-bottom:3em; background:rgba(200,200,200,0.5);}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{visibility:visible;}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {visibility:visible;}


.center_content{
display:table;
clear:both;
width: 100%;
/*//zoom:1;*/
}

.left_content{
padding:0 12px 6px;
background: #eff0f2;
/*//width:226px;
//display:table-cell;
//display:inline;
//vertical-align:top;
//zoom:1;
*/
}

.left_content_hide{
padding:0 12px 6px;
/*//width:226px;
//display:table-cell;
//vertical-align:top;
*/
}




.work .left_content{
padding:0 0 0 6px;
background:#e4e4e5;
}
.right_content{
width:100%;
padding:0 0 10px;
display:table-cell;
vertical-align:top;
/*//display:inline;
//zoom:1;*/
}


span.sidebarmenu_title{
    float: right;
    background: url(../images/yokoclose.gif) no-repeat 4px 4px;
    padding-top: 0px;
    margin-top: 15px;
    margin-right: 15px;
    height: 20px;
    width: 20px;
}
@media screen and (max-width: 1300px) { /* レスポンシブ */
    #syain span.sidebarmenu_title,
    #sagyo span.sidebarmenu_title {
        margin-top: 15px;
        margin-right: 15px;
        }
}
@media screen and (max-width: 768px) { /* レスポンシブ */
    #syain span.sidebarmenu_title,
    #sagyo span.sidebarmenu_title {
        margin-top: 12px;
        margin-right: 12px;
    }
}


.statusicon_clos{
position: absolute;
top:11px;
right:7px;
border: none;
width: 20;
height :20;
border-top-width: 1px;
padding-top: 1px;
padding-right: 1px;
padding-bottom: 1px;
padding-left: 1px;
}

.sidebarmenu{
    margin:0px 0 10px;
    padding:0;
    width:250px;
    background:#fff;
    border:1px solid #b0b0b0;
}
@media screen and (max-width: 1300px) { /* レスポンシブ */
    #syain .sidebarmenu,
    #sagyo .sidebarmenu {
        width: 170px;
    }
}
@media screen and (max-width: 768px) { /* レスポンシブ */
    #syain .sidebarmenu,
    #sagyo .sidebarmenu {
        width: 150px;
    }
}


.sidebarmenu div.menu_title{
	font-size: 18px;
	font-weight: bold;
	background-color: #615f60;
	color: #fff;
    display: block;
    position: relative;
    width:249px;
    height:51px;
    margin:0;
    line-height:51px;
    padding:0px 0 0 10px;
    text-decoration: none;
}

@media screen and (max-width: 1300px) { /* レスポンシブ */
    #syain .sidebarmenu div.menu_title,
    #sagyo .sidebarmenu div.menu_title {
        width: 170px;
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) { /* レスポンシブ */
    #syain .sidebarmenu div.menu_title,
    #sagyo .sidebarmenu div.menu_title {
        width: 150px;
        font-size: 15px;
        height: 40px;
        line-height: 40px;
    }
}


.sidebarmenu .tab_n {
    width: 249px;
    margin:0;
    padding:0;
    border-bottom:1px solid #bebebe;
}
@media screen and (max-width: 1300px) { /* レスポンシブ */
    #syain .sidebarmenu .tab_n,
    #sagyo .sidebarmenu .tab_n {
        width: 170px;
    }
}
@media screen and (max-width: 768px) { /* レスポンシブ */
    #syain .sidebarmenu .tab_n,
    #sagyo .sidebarmenu .tab_n {
        width: 150px;
    }
}


.sidebarmenu .tab_n .tab_r{
color:#ffff00;
}
.sidebarmenu .tab_n a.menuitem .accordprefix{
display:block;
content:"";
position:absolute;
top:8px;
right:5px;
width:11px;
height:11px;
padding:7px;
border:1px solid #fff;
}
.sidebarmenu .tab_n a:hover.menuitem .accordprefix{
background:url(../images/plus_02.gif) no-repeat 2px 2px;
border:1px solid #ffff00;
}
.sidebarmenu .tab_n a:hover.menuitem .accordsuffix{
display:none;
}
.sidebarmenu .tab_n a.tab_r .accordprefix{
border:1px solid #ffff00;
}
.sidebarmenu .tab_n a.tab_r:hover .accordprefix{
background:url(../images/minus_02.gif) no-repeat 2px 6px;
}

.sidebarmenu a.menuitem{
	background:#5f93d0;
	color: #fff;display: block;position: relative;
    width:249px;
    height:31px;
    margin:0;
    line-height:31px;
    padding:0px 0 0 10px;
    text-decoration: none;
	font-size:16px;
}
@media screen and (max-width: 1300px) {
    #syain .sidebarmenu a.menuitem,
    #sagyo .sidebarmenu a.menuitem {
        width: 170px;
    }
}
@media screen and (max-width: 768px) {
    #syain .sidebarmenu a.menuitem,
    #sagyo .sidebarmenu a.menuitem {
        width: 150px;
        font-size: 10px;
    }
}


.sidebarmenu a.menuitem_green{background:url(../images/green_bt.gif) no-repeat center top;
color: #fff;display: block;position: relative;width:230px;height:31px;margin:0;line-height:31px;padding:0px 0 0 10px;text-decoration: none;
}
.sidebarmenu a.menuitem_red{background:url(../images/red_bt.gif) no-repeat center top;
color: #fff;display: block;position: relative;width:230px;height:31px;margin:0;line-height:31px;padding:0px 0 0 10px;text-decoration: none;
}
.sidebarmenu a.menuitem:hover{
color:#ffff00;
}
.sidebarmenu a.menuitem_green:hover{background:url(../images/green_bt_a.gif) no-repeat center top;}
.sidebarmenu a.menuitem_red:hover{background:url(../images/red_bt_a.gif) no-repeat center top;}


.sidebarmenu a.menuitem .statusicon{
position: absolute;
top:11px;
right:7px;
border: none;
}

.sidebarmenu div.submenu{
    width:230px;
}
@media screen and (max-width: 1300px) { /* レスポンシブ */
    #syain .sidebarmenu div.submenu,
    #sagyo .sidebarmenu div.submenu {
        width: 170px;
    }
}
@media screen and (max-width: 768px) { /* レスポンシブ */
    #syain .sidebarmenu div.submenu,
    #sagyo .sidebarmenu div.submenu {
        width: 150px;
    }
}

.sidebarmenu div.submenu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    border-right:1px solid #b0b0b0;
}
@media screen and (max-width: 1300px) { /* レスポンシブ */
    #syain .sidebarmenu div.submenu ul,
    #sagyo .sidebarmenu div.submenu ul {
        width: 151px;
    }
}
@media screen and (max-width: 768px) { /* レスポンシブ */
    #syain .sidebarmenu div.submenu ul,
    #sagyo .sidebarmenu div.submenu ul {
        width: 131px;
    }
}

.sidebarmenu div.submenu ul li{
border-bottom: 1px solid #b0b0b0;
}

/*
.sidebarmenu div.submenu ul li:first-child+li,
.sidebarmenu div.submenu ul li:first-child+li+li+li,
.sidebarmenu div.submenu ul li:first-child+li+li+li+li+li{
background:#f0f0f2;
}
*/
.sidebarmenu div.submenu ul li:nth-child(even){
background:#f0f0f2;
}


.sidebarmenu div.submenu ul li a{
    display: block;
    color: black;
    text-decoration: none;
    padding:5px 0 5px 30px;
    position:relative;
}

.sidebarmenu div.submenu ul li a:before{
display:block;
content:"";
width:8px;
height:22px;
background:#b1c8e3;
position:absolute;
top:0;
left:12px;
}
.sidebarmenu div.submenu ul li a:hover:before{
background:#4673b9;
}
.sidebarmenu div.submenu ul li a:after{
display:block;
content:"";
}

.sidebar_search{
background:url(../images/sidebar_menu_top.gif) no-repeat center;
width:195px;
height:31px;
margin:0 0 5px 0;
}
input.search_input{
width:155px;
height:16px;
margin:5px 0 0 5px;
border:1px #bdebfd solid;
background:#92dbf8;
padding:4px 0 0 2px;
float:left;
color:#096184;
font-size:11px;
}
input.search_submit{
float:left;
background:none;
border:none;
margin:7px 0 0 8px;
}



#rounded-corner
{
margin:0 0 10px 15px;
width:625px;
text-align: left;
border-collapse: collapse;
}
#rounded-corner thead th.rounded-company
{
width:26px;
background: #60c8f2 url('../images/left.jpg') left top no-repeat;
}
#rounded-corner thead th.rounded-q4
{
background: #60c8f2 url('../images/right.jpg') right top no-repeat;
}
#rounded-corner th
{
padding: 8px;
font-weight: normal;
font-size: 13px;
color: #039;
background: #60c8f2;
}
#rounded-corner td
{
padding: 8px;
background: #ecf8fd;
border-top: 1px solid #fff;
color: #669;
}
#rounded-corner tfoot td.rounded-foot-left
{
background: #ecf8fd url('../images/botleft.jpg') left bottom no-repeat;
}
#rounded-corner tfoot td.rounded-foot-right
{
background: #ecf8fd url('../images/botright.jpg') right bottom no-repeat;
}
#rounded-corner tbody tr:hover td
{
background: #d2e7f0;
}


.question {
position: absolute;
display: inline;
text-align: center;
width: 174px;
height: 78px;
font-size: 13px;
line-height: 1.5em;
background: url('../images/bubble.png') left top no-repeat;
padding: 10px 0 0 0;
text-shadow: 0px 1px 0px #fff;
margin-left: -7em;
margin-top: -6em;
opacity: 0;
}

.yes{
margin-top: .5em;
margin-right: .5em;
cursor: pointer;
display: inline-block;
width: 63px;
height: 21px;
color: #434d17;
text-shadow: 0px 1px 0px #fff;
background: url('../images/buttony.png') left top no-repeat;
}
.cancel {
margin-top: .5em;
margin-right: .5em;
cursor: pointer;
display: inline-block;
width: 63px;
height: 21px;
color: #fff;
text-shadow: 0px 1px 0px #000;
background: url('../images/buttonn.png') left top no-repeat;
}

a.bt_green{display:block; float:right; margin:10px 5px 10px 5px; line-height:31px; text-decoration:none; color:#FFFFFF; text-shadow:1px 1px #8fa42b;}
a.bt_green strong{width:auto;height:31px; padding:0 10px 0 10px;display:block; float:left;background:url(../images/bt_green_center.gif) repeat-x center;}
a.bt_green span.bt_green_lft{width:10px;height:31px;display:block; float:left;background:url(../images/bt_green_left.gif) no-repeat center right;}
a.bt_green span.bt_green_r{width:10px;height:31px;display:block; float:left;background:url(../images/bt_green_r.gif) no-repeat center right;}
a:hover.bt_green{ text-decoration:underline;}

a.bt_blue{
display:block;
float:right;
margin:10px 5px 5px;
line-height:33px;
text-decoration:none;
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
background:#5d8bbf;
color:#FFFFFF;
text-shadow:1px 1px #3597bf;
}
@media screen and (max-width: 768px) {
    #work-schedule a.bt_blue {
        margin:3px 5px 5px;
    }
}

a.leftreg{
float:left;
}

a.bt_blue strong{
width:auto;
height:31px;
padding:0 20px;
display:block;
float:left;
}
@media screen and (max-width: 768px) {
    #work-schedule a.bt_blue strong {
        padding:0 14px;
    }
}



a:hover.bt_blue{ text-decoration:underline;}

a.bt_none{
display:block;
float:right;
margin:10px 5px 5px;
line-height:33px;
text-decoration:none;
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
background:#ccc;
color:#FFFFFF;
text-shadow:1px 1px #3597bf;
}

a.bt_none strong{
width:auto;
height:31px;
padding:0 20px;
display:block;
float:left;
}

a.bt_red{display:block; float:right; margin:10px 5px 10px 5px; line-height:31px; text-decoration:none; color:#FFFFFF; text-shadow:1px 1px #c24739;}
a.bt_red strong{width:auto;height:31px; padding:0 10px 0 10px;display:block; float:left;background:url(../images/bt_red_center.gif) repeat-x center;}
a.bt_red span.bt_red_lft{width:10px;height:31px;display:block; float:left;background:url(../images/bt_red_left.gif) no-repeat center right;}
a.bt_red span.bt_red_r{width:10px;height:31px;display:block; float:left;background:url(../images/bt_red_r.gif) no-repeat center right;}
a:hover.bt_red{ text-decoration:underline;}

.sidebar_box{
width:195px;
padding:15px 0 5px 0;
}
.sidebar_box_top{width:195px;height:8px;background:url(../images/sidebar_box_top.gif) no-repeat center bottom;}
.sidebar_box_bottom{width:195px;height:8px;background:url(../images/sidebar_box_bottom.gif) no-repeat center bottom;}
.sidebar_box_content{width:175px;height:auto;background-color:#ecf8fd; padding:0 10px 0 10px;}

.sidebar_box_content h3{ color:#49bae8; float:left; font-size:18px; margin:0px;padding:0px; font-weight:normal;}
.sidebar_box_content h4{ color:#f75744; float:left; font-size:18px; margin:0px;padding:0px; font-weight:normal;}
.sidebar_box_content h5{ color:#a4bf40; float:left; font-size:18px; margin:0px;padding:0px; font-weight:normal;}
.sidebar_box_content p{padding:5px 0 5px 0; margin:0px; clear:both; font-size:11px; text-align:left; line-height:17px;}
img.sidebar_icon_right{
float:right; padding:0 0 0 0;
}
.sidebar_box_content ul{
list-style:none;
padding:10px 0 10px 0;
margin:0px;
clear:both;
}
.sidebar_box_content ul li{
padding:5px 0 5px 10px;
background:url(../images/list_bullet.gif) no-repeat left top;
background-position:0px 10px;
}


.warning_box{width:540px;clear:both;background:url(../images/warning.png) no-repeat left #fcfae9;
border:1px #e9e6c7 solid;background-position:15px 5px;padding:20px 20px 15px 60px;margin:0 0 10px 10px;}

.valid_box{width:540px;clear:both;background:url(../images/valid.png) no-repeat left #edfce9;
border:1px #cceac4 solid;background-position:15px 15px;padding:20px 20px 15px 60px;margin:0 0 10px 10px;}

.error_box{width:540px;clear:both;background:url(../images/error.png) no-repeat left #fce9e9;
border:1px #eac7c7 solid;background-position:15px 10px;padding:20px 20px 15px 60px;margin:0 0 10px 10px;}

.message_box{width:540px;clear:both;background:#edfcff;
border:1px #cceaff solid;background-position:15px 15px;padding:15px 20px 15px 30px;margin:0 0 10px 10px;}

/*--------------*/
div.pagination {
width:625px;
clear:both;
padding:10px 0 10px 0;
margin:0px;
text-align:center;
float:left;
clear:both;
font-size:11px;
}

div.pagination a {
padding: 2px 5px 2px 5px;
margin-right: 2px;
border: 1px solid #52bfea;
text-decoration: none;
color: #52bfea;
}
div.pagination a:hover, div.pagination a:active {
border:1px solid #52bfea;
color: #fff;
background-color: #52bfea;
}
div.pagination span.current {
padding: 2px 5px 2px 5px;
margin-right: 2px;
border: 1px solid #52bfea;
font-weight: bold;
background-color: #52bfea;
color: #FFF;
}
div.pagination span.disabled {
padding: 2px 5px 2px 5px;
margin-right: 2px;
border: 1px solid #f3f3f3;
color: #ccc;
}

/*----------add-------------*/


div.right_content_title {
	margin:0 0 15px;
	background-color: #615f60;
}

@media screen and (max-width: 768px) {
    #syain div.right_content_title,
    #sagyo div.right_content_title ,
    #work-schedule div.right_content_title {
        height: 40px;
        width: 100%;
    }
}

div.content_title{
margin:0 0 10px;
background:#787878;
}
div.right_content_title:after,
div.content_title:after {
display:block;
content:"";
clear:both;
}

div.right_content_title h2,
div.content_title h2 {
	float: left;
	height: 51px;
	padding: 0 10px;
	margin: 0 5px;
	font-size:18px;
	font-weight:bold;
	color:#fff;
	line-height:51px;
}
@media screen and (max-width: 768px) {
    #syain div.right_content_title h2,
    #syain div.content_title h2,
    #sagyo div.right_content_title h2,
    #sagyo div.content_title h2,
    #work-schedule div.right_content_title h2,
    #work-schedule div.content_title h2 {
            height: 40px;
            padding: 0;
            line-height: 40px;
            font-size: 15px;
    }
}

div.right_content_title div.button {
 padding:0 50px 0 0;
	float: right;
}
@media screen and (max-width: 768px) {
    #syain div.right_content_title div.button
    #sagyo div.right_content_title div.button {
        padding:0 24px 0 0;
    }
    #work-schedule div.right_content_title div.button {
        width: 768px;
    }
}


div.right_content_title div.regleftbutton {
 padding:0 50px 0 0;
}

td {
	/*text-align: center;*/
}
td.right {
	text-align: right;
}
td.left {
	text-align: left;
}
td.center {
	text-align: center;
}

input[readonly] {
	background-color:#CCC;
}

/*--------------------------------------
    select
--------------------------------------*/
select{
    text-indent: .01px; /*Firefox用*/
    text-overflow: ""; /*Firefox用*/
    font-size: 100%;
    text-overflow: "";
    padding: 1px 1px 0px 1px;
/*        padding: 1px 10px 0px 1px; */
    border:1px solid #b9b9b9;
}

/*--------------------------------------
    INPUT
--------------------------------------*/
input[type="text"],
input[type="password"]{
padding:1px 2px;
}
.txt40 {
    ime-mode:active;
    width:40px;
    text-align:left;
}
.txt60 {
    ime-mode:active;
    width:60px;
    text-align:left;
}
.txt80 {
    ime-mode:active;
    width:80px;
    text-align:left;
}
.txt120 {
    ime-mode:active;
    width:120px;
    text-align:left;
}
.txt160 {
    ime-mode:active;
    width:160px;
    text-align:left;
}
.txt320 {
    ime-mode:active;
    width:320px;
    text-align:left;
}
.txtCode20{
    ime-mode:disabled;
    /* width:20px; */
    width:24px;
    text-align:left;
}
.txtCode30{
    ime-mode:disabled;
    /* width:30px; */
    width:34px;
    text-align:left;
}
.txtCode40{
    ime-mode:disabled;
    /* width:40px; */
    width:44px;
    text-align:left;
}
.txtCode60{
    ime-mode:disabled;
    width:64px;
    text-align:left;
}
.txtCode80{
    ime-mode:disabled;
    width:84px;
    text-align:left;
}
.txtCode100{
    ime-mode:disabled;
    width:104px;
    text-align:left;
}
.txtCode20R{
    ime-mode:disabled;
    /* width:20px; */
    width:24px;
    text-align:right;
}
.txtCode30R{
    ime-mode:disabled;
    /* width:30px; */
    width:34px;
    text-align:right;
}
.txtCode35R{
    ime-mode:disabled;
    /* width:30px; */
    width:39px;
    text-align:right;
}
.txtCode40R{
    ime-mode:disabled;
    /* width:40px; */
    width:44px;
    text-align:right;
}
.txtCode45R{
    ime-mode:disabled;
    /* width:40px; */
    width:49px;
    text-align:right;
}
.txtCode60R{
    ime-mode:disabled;
    width:60px;
    text-align:right;
}
.txtCode80R{
    ime-mode:disabled;
    width:80px;
    text-align:right;
}
.txtCode75R{
    ime-mode:disabled;
    width:75px;
    text-align:right;
}
.txtCode160{
    ime-mode:disabled;
    width:160px;
    text-align:left;
}
.txtCode320{
    ime-mode:disabled;
    width:320px;
    text-align:left;
}
.ddl60 {
    width:60px;
}
.ddl80 {
    width:80px;
}
.ddl120 {
    width:120px;
}
.ddl160 {
    width:160px;
}
.ddl200 {
    width:200px;
}
.ddl240 {
    width:240px;
}
.mf_font {
    font-family:"Osaka−等幅","ＭＳ ゴシック","monospace";
}
/*--------------------------------------
    ALIGN属性
--------------------------------------*/
.center {
    text-align:center;
}
.right {
    text-align:right;
}
.left {
    text-align:left;
}
.vtop {
    vertical-align: top;
}

/*--------------------------------------
           階層表示
--------------------------------------*/
.kaisou_name {
	margin: 0 10px 10px 12px;
	font-weight: bold;
}
/*--------------------------------------
           警告表示
--------------------------------------*/
.alert_msg {
	margin-left: 10px;
	font-weight: bold;
	color: red;
}
/*--------------------------------------
           チE Eブル詳細
--------------------------------------*/
.tbl_l {
    border-collapse: collapse;
    margin: 0px 0px 0px 10px;
}
.tbl_l th{
	padding: 6px;
    border: 1px solid #a8c4dc
}
.tbl_l tr:nth-child(odd){
   background: #f0f0f2;
}

.tbl_l tr:last-child { 
border-bottom: 1px solid #a8c4dc !important;
}

#kinmupattern .tbl_l tr:nth-child(odd),
#syokuikinmupattern .tbl_l tr:nth-child(odd),
#pairing .tbl_l tr:nth-child(odd){
   background:none;
}
#calender .tbl_l tr:nth-child(even),
#kinmupattern .tbl_l tbody:nth-child(odd),
#syokuikinmupattern .tbl_l tbody:nth-child(odd),
#pairing .tbl_l tr:nth-child(even){
   background: #f0f0f2;
}
#calender .tbl_l tr:nth-child(odd),
#kinmupattern .tbl_l tbody:nth-child(even),
#syokuikinmupattern .tbl_l tbody:nth-child(even){
   background: #fff;
}



.tbl_l td{
	padding: 6px;
    border: 1px solid #a8c4dc;
}
.tbl_l_th {
	background: #d5e5f4 !important;
}
.tbl_l_t1 {
    background: #ffffff;
}
.tbl_l_t2 {
    background: #f9f9f9;
}
/*--------------------------------------
           チE E E E EブルリスチE
--------------------------------------*/
.tbl_d {
    border-collapse: collapse;
    margin: 0px 0px 0px 10px;
}
.yosan .tbl_d{
margin:0 0 10px 10px;
}
#NinjiKanri.yosan .tbl_d{
margin:0;
}
.yosan .tbl01 td{
background:#fff;
}
.yosan .tbl_d_th{
font-weight:bold;
}
.tbl_d th{
	padding: 6px;
    border: 1px solid #a8c4dc;
}
#kinmu-pattern .tbl_d,
#sagyo-skill .tbl_d,
#syokui .tbl_d,
.tbl_01{
border-left:1px solid #a8c4dc;
border-bottom:1px solid #a8c4dc;
}
.yosan .tbl_d{
border-bottom:1px solid #a8c4dc;
}
.yosan .tbl_d td{
border-left:1px solid #a8c4dc !important;
}

#kinmu-pattern .tbl_d th,
#sagyo-skill .tbl_d th,
#syokui .tbl_d th{
border-left:none;
}
#sagyou .scrollee td , 
#sagyou .scrollee th{
border-top: 1px solid #a8c4dc !important;
border-right:1px solid #a8c4dc !important;
border-bottom:none !important;
border-left:none !important;
}
/*
.tbl_d td{
	padding: 6px;
    border-top: 1px solid #a8c4dc;
	border-right: 1px solid #a8c4dc;
	border-bottom:none !important;
border-left:none !important;
	white-space: nowrap;
}
*/

.tbl_d td{
	padding: 6px;
    border-top: 1px solid #a8c4dc;
	border-right: 1px solid #a8c4dc;
	border-bottom:none ;
border-left:none ;
	white-space: nowrap;
}

#shift .tbl_d td:last-child{
    padding: 6px;
    border-top: 1px solid #a8c4dc;
    border-right: 2px solid #a8c4dc;
    border-left:none ;
/*	border-bottom: 1px solid #a8c4dc;*/
    white-space: nowrap;
}


.tbl_d td:last-child{
	padding: 6px;
    border-top: 1px solid #a8c4dc;
	border-right: 1px solid #a8c4dc;
/*	border-bottom: 1px solid #a8c4dc;*/
border-left: 1px solid #a8c4dc;
	white-space: nowrap;
}




.tbl_d_th {
	background: #d5e5f4;
}
.tbl_d .head{
background:#787878;
font-size:18px;
color:#fff;
}
.tbl_d .space,
#scrollee .space,
.tbl_d .space01{
background:#fff;
border:1px solid #fff;
border-right:1px solid #a8c4dc;
border-bottom:1px solid #a8c4dc;
}
.tbl_d .space01{
border-right:none;
}
.yosan .tbl_d .space01{
border-right:none;
border-left:none !important;
}
#NinjiKanri .space{
border:none !important;

}
.yosan .tbl_d .space{
border-left:none !important;
}

.tbl_d td:first-child { 
border-left: 1px solid #a8c4dc !important;
}

.tbl_d tr:last-child { 
border-bottom: 1px solid #a8c4dc !important;
}

.tbl_d2 {
    border-collapse: collapse;
    margin: 0px 0px 0px 10px;
}
.yosan .tbl_d2{
margin:0 0 10px 10px;
}
#NinjiKanri.yosan .tbl_d2{
margin:0;
}
.yosan .tbl01 td{
background:#fff;
}
.yosan .tbl_d2_th{
font-weight:bold;
}
.tbl_d2 th{
	padding: 6px;
    border: 1px solid #a8c4dc;
}
#kinmu-pattern .tbl_d2,
#sagyo-skill .tbl_d2,
#syokui .tbl_d2,
.tbl_01{
border-left:1px solid #a8c4dc;
border-bottom:1px solid #a8c4dc;
}
.yosan .tbl_d2{
border-bottom:1px solid #a8c4dc;
}
.yosan .tbl_d2 td{
border-left:1px solid #a8c4dc !important;
}

#kinmu-pattern .tbl_d2 th,
#sagyo-skill .tbl_d2 th,
#syokui .tbl_d2 th{
border-left:none;
}
#sagyou .scrollee td , 
#sagyou .scrollee th{
border-top: 1px solid #a8c4dc !important;
border-right:1px solid #a8c4dc !important;
border-bottom:none !important;
border-left:none !important;
}
.tbl_d2 td{
    padding: 6px;
border:1px solid #a8c4dc;
	white-space: nowrap;
}
.tbl_d2_th {
	background: #d5e5f4;
}
.tbl_d2 .head{
background:#787878;
font-size:18px;
color:#fff;
}
.tbl_d2 .space,
#scrollee .space,
.tbl_d2 .space01{
background:#fff;
border:1px solid #fff;
border-right:1px solid #a8c4dc;
border-bottom:1px solid #a8c4dc;
}
.tbl_d2 .space01{
border-right:none;
}
.yosan .tbl_d2 .space01{
border-right:none;
border-left:none !important;
}
#NinjiKanri .space{
background-color: #eee;    
border:none !important;
}
.yosan .tbl_d2 .space{
border-left:none !important;
}



#NinjiKanri #scrollee .space{
border:none;
}
#SyukanJikan .space{
height:80px;
}

#scrollee tbody tr td.left-fix{
padding:0 7px;
}
@media screen and (max-width: 768px) {   
    #scrollee tbody tr td.left-fix{
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
     }
   }

#yosan-syukan #scrollee tbody tr td.left-fix{

padding-top: 13px;
padding-left: 7px;
padding-bottom: 0px;
padding-right: 7px;
}
/*＃579*/
#shift #scrollee tbody tr td.left-fix2{
padding:0px;
font-weight:bold;
}
#shift #scrollee tbody tr td.left-fix,
#syain #scrollee tbody tr td.left-fix,
#Kibo #scrollee tbody tr td.left-fix{
padding:5px;
font-weight:bold;
}
#syain #scrollee tbody tr td.left-fix{
font-size:16px;
}

#Kibo #scrollee tbody tr td.left-fix{
font-size:16px;
}
#Kibo #scrollee tbody tr td.left-fix input{
width:37px;
}
#Kibo #scrollee tbody tr td.left-fix span{
margin:0 3px;
}



#main_container .yosanzokuseibi-1{
background:#68a0b0 !important;
}
.yosanzokuseibi-2{
background:#94c667 !important;
}
.yosanzokuseibi-3{
background:#f97777 !important;
}

#yosan-syukan.tbl_d label {
position: relative;
padding: 4px 0 0 25px !important;
}

.tbl_d label {
position:relative;
padding:0 0 0 25px !important;
}
.tbl_d label input{
position:absolute;
left:0;
top:50%;
margin-top:-6px !important;
}

/*
.tbl_d tr:nth-child(odd),
#yosan .tbl_d tr:nth-child(even),
#kinmu-pattern .tbl_d tr:nth-child(even),
#Yosan .tbl_d tr:nth-child(even){
   background: #f0f0f2;
}
#kinmu-pattern .tbl_d tr:nth-child(odd),
#YosanbiZokusei .tbl_d tr:nth-child(even),
#Yosan .tbl_d tr:nth-child(odd){
background:#fff;
}
*/

/*--------------------------------------
           バルーン表示
--------------------------------------*/
.ballon {
float: right;
margin:6px 0 0;
display:inline-block;
color: blue;
text-decoration: underline;
cursor:pointer;
}
.explan{
position:relative;
z-index:9999;
}
.ballonBox{
display:none;
width:320px;
padding:5px 3px;
background:#d8e8f8;
border:1px solid #c5c5c5;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
font-weight:bold;
position:absolute;
left:400px;
top:0;
}
.ballonBox p{
margin:0 0 3px;
}
.ballonContent{
padding:10px 10px 8px;
background:#fff;
border:1px solid #c5c5c5;
}
.ballonContent p:first-child{
margin:0 0 12px;
}
.ballonContent ul{
list-style:none;
margin:0 0 0 1em;
padding:0;
}
.ballonContent ul li{
margin:0 0 3px;
}
.ballonBox .closeImg{
width:14px;
height:14px;
margin:-1px 0 0;
background:url(../images/btn_close_01.gif) no-repeat 0 0;
float:right;
text-indent:-9999em;
cursor:pointer;
}
.ballonContent .close{
height:22px;
margin:0;
line-height:22px;
background:url(../images/btn_bg_01.gif) no-repeat 50% 0;
color:#fff;
text-align:center;
cursor:pointer;
}

.balloon_aaf {
display:none;
opacity: 0.97;
color: #333;
font-size: 11px;
border-radius: 5px;
border: solid 1px #222;
padding: 10px;
background-color: #FFFCCF;
lineheight:15px;
letter-spacing: 2px;
margin-left:10px;
z-index:90;
cursor:pointer;
text-align: left;
}
.balloon_expl {
display:none;
position:absolute;
width:68px;
opacity: 0.97;
color: #00f;
font-size: 9px;
border-radius: 5px;
border: solid 1px #222;
padding: 5px 8px;
background-color: #FFFCCF;
lineheight:15px;
letter-spacing: 2px;
z-index:85;
cursor:pointer;
}
.explain_disp {
font-size:9px;
color:#00F;
text-decoration:underline;
z-index:85;
}


/*--------------------------------------
           チE E E E Eブルサイドメニュー
--------------------------------------*/
.tbl_s {
    border-collapse: collapse;
    margin: 0px 0px 0px 0px;
    width: 185px;
}
.tbl_s th{
	padding: 6px;
    border: 1px solid #a8c4dc
}
.tbl_s td{
	padding: 6px;
    border: 1px solid #a8c4dc
}
.tbl_s_th {
	background: #eeeeee;
}
.tbl_s_t1 {
    background: #ffffff;
}
.tbl_s_t2 {
    background: #f9f9f9;
}

/*--------------------------------------
           固有 Eージスタイル
--------------------------------------*/

.button01{
background:#5d8bbf;
border:none;
padding:8px;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
font-weight:bold;
color:#fff;
cursor:pointer;
position:absolute;
top:8px;
}


.button02{
background:#5d8bbf;
border:none;
padding:8px;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
font-weight:bold;
color:#fff;
cursor:pointer;
}
@media screen and (max-width: 768px) {
    #work-schedule .button02{
        padding: 5px;
        margin-bottom: 5px;
    }
}

.button-none{
background:#888888;
border:none;
padding:8px;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
font-weight:bold;
color:#fff;
position:absolute;
top:8px;
}

.button_saiteki{
background:#875dbf;
border:none;
padding:8px;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
font-weight:bold;
color:#fff;
cursor:pointer;
position:absolute;
top:8px;
}




.work .button02, .pattern .button02 {
margin:10px 0 0 ;
}

#Kibo .right_content_title,
#shift .right_content_title,
#Hibetu .right_content_title,
#GekkanKibo .right_content_title,
#sagyo .right_content_title,
#syain .right_content_title,
#syain .right_content_title{
position:relative;
margin:0 0 36px;
}
@media screen and (max-width: 768px) {
    #sagyo .right_content_title {
        margin:0 0 80px;
    }
}


/*

#Kibo .right_content_title #torikomi-button{
right:430px;
}

#Kibo .right_content_title #syuturyoku-button{
right:380px;
}

#Kibo .right_content_title #kikan-button{
right:300px;
}
#Kibo .right_content_title #gekkan-button{
right:140px;
}
*/
/*
#Kibo .right_content_title #update-button{
right:50px;
}*/
.controlBlock{
position:absolute;
top:55px;
left:15px;
display:table;
/*//zoom:1;*/
}

@media screen and (max-width: 768px) {
    #sagyo .controlBlock {
        top:44px;
    }
}


.controlBlock02{
display:table;
/*//zoom:1;*/
margin:0 0 10px 10px;
}
@media screen and (max-width: 768px) {
    .controlBlock02 {
        width: 520px;
    }
}



#Kibo .right_content_title .controlBlock #gekkan-button{
display:none;
}
.controlBlock .name,
.controlBlock .control,
.controlBlock02 .block{
display:table-cell;
vertical-align:middle;
/*//display:inline;
//zoom:1;*/
}
@media screen and (max-width: 768px) {
    .controlBlock02 .block{
        display:block;
    }
}

.controlBlock .name{
font-size:16px;
font-weight:bold;
}
.controlBlock02 .block{
padding-right:8px;
}

#Hibetu .right_content_title #kakunin-button{
right:443px;
}

/*
#GekkanKibo .right_content_title #allclear-button{
right:135px;
}
*/

/*202109 追加あっている？*/
#Hibetu .right_content_title #allclear-button{
right:325px;
}

#shift .right_content_title #bkibo2shift{
right:475px;
}

/*202109 コメントアウトあっている？*/
#shift .right_content_title #koteihanei-button{
/*right:405px;*/
}


/*202109 コメントアウトあっている？*/
#shift .right_content_title #egcheck-button{
 /*right:512px;*/
}

/*202109 確認ボタン→差分ボタンへの変更であっている？？*/
#shift .right_content_title #kakunin-button{
 /*right:325px;*/
}

/*202109 あっている？*/
#shift .right_content_title #sabun-button{
 /*right:325px;*/
}

#syain .right_content_title #shift-auto-button{
    right:333px;
}

#syain .right_content_title #kyukei-auto-button{
    right:226px;
}
#syain .right_content_title #kikan-button{
right:365px;
}
/*
#GekkanKibo .right_content_title #shift-button{
right:260px;
}
*/
#Hibetu .right_content_title #jisseki-button,
#shift .right_content_title #jisseki-button{
right:233px;
}
#shift .right_content_title #create-shift-button{
    
}
#Hibetu .right_content_title #create-shift-button,
/*#shift .right_content_title #create-task-button, */
/*#Hibetu .right_content_title #create-task-button,*/
/*#GekkanKibo .right_content_title #task-button,*/

#syain .right_content_title #create-task-button{
    right:135px;
}

#syain .right_content_title #no_task_eg{
right:135px;
}
#shift .right_content_title #update-button{}

#Hibetu .right_content_title #update-button,
/*#GekkanKibo .right_content_title #update-button,*/
#sagyo .right_content_title #update-button,
#syain .right_content_title #update-button{
/*right:50px;*/
}
/*
#shift .right_content_title #kikan-button{
right:520px;
}*/

#sagyo .right_content_title #kikan-button{
right:135px;
}
	

#koyokubun{
width:1735px;
}

#calender input[type="button"]{
margin:0 1px;
padding:3px 6px;
color:#ffffff;
border:0 solid #ffffff;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
background:#4673b9;
cursor:pointer;
}

#nenkanrodojoken .tbl_l{
width:785px !important;
}
#nenkanrodojoken .tbl_l th{
text-align:left;
}
#nenkanrodojoken .tbl_l td{
text-align:center;
}


#kinmupattern {
/*width:1730px;*/
}
#kinmupattern .ballon{
float:none;
text-decoration:none;
}

#gyomusagyo {
width:1850px;
}
#gyomusagyo .ballon{
float:none;
text-decoration:none;
}
#gyomusagyo .tbl_l{
font-size:12px;
}

#kyukei .textA01 {
position:relative;
top:-2px;
}

#sagyo-skill select,
#syokui select, 
#kinmu-pattern select{
padding:3px;
font-size:12px;
}

#kakunin{
background:#fff;	
}
#kakunin #main_container{
min-width:100%;
}
#kakunin h2{
FONT-WEIGHT:BOLD;
color:#333;
padding:10px 0 10px 10px;
}

.scrollee tbody tr td.left-fix{
padding:5px;
}

#yosan #container{
margin:0 0 15px 10px;
}

/*ログイン*/
#login{
background:#f4f4f4;
}
#login #wrap {
width: 100%;
min-width:980px;
min-height: 100%;
height: auto !important;
height: 100%;
padding:0 0 48px;
position:relative;
overflow: hidden;
}
#login .header{
margin:0 0 30px;
background:url('../images/header_bg_01.gif') 0 100% repeat-x #fff;
}
#login .headerContent{
width:auto;
display:table;
margin:0 auto;
padding:18px 0 0;
}
#login .headerContent h1{
display:table-cell;
margin:0;
padding-right:10px;
}
#login .headerContent p{
display:table-cell;
vertical-align:bottom;
font-size:24px;
color:#6e91e7;
}
#login ul{
list-style:none;
}
#login ul li{
margin:0 0 5px;
}
#login ul li:last-child{
margin:10px 0 0;
}
#login #main_container{
min-width:100%;
min-height:0;
text-align:center;
}
#login #main_container:before{
background:none;
}
#login label{
font-size:16px;
}
#login input[type="text"], 
#login input[type="password"]{
width:160px;
margin:0 0 5px 5px;
}
#login #footer{
position:absolute;
bottom:0;
width:100%;
background:#404040;
}
.footerContent{
width:980px;
height:48px;
margin:0 auto;
padding:10px;
}
#login #footer .address{
text-align:right;
color:#949494;
}

#GekkanKibo #main_container .yosanzokuseibi-t-1{
color:#333;
}
#GekkanKibo .scrollee tbody tr.line1 td.left-fix,
#GekkanKibo #scrollee tr:nth-child(even){
background:#efefef;
}
#GekkanKibo #scrollee tbody tr td.left-fix{
padding:7px;
}
#GekkanKibo #scrollee tbody tr td.left-fix a{
display:block;
color:#333;
font-weight:bold;
text-decoration:none;
}

#Kibo .warning_box,
#Hibetu .warning_box{
margin:10px 0;
}
#KikanCost .bg01,
#KikanCost .bg02{
background:#787878;
font-size:16px;
color:#fff;
}
#KikanCost .bg02{
background:#919fb2;
}
#KikanCost .columnTypeA02{
width:1150px;
}
#KikanCost .columBlock+.columBlock .tbl_d,
#KikanCost .columBlock+.columBlock div.content_title{
margin:0;
}
#kikan-mokuhyo #main_container{
min-width:1500px;
}
#KikanCost #main_container{
min-width:1380px;
}

.jstree-container-ul{
margin:0 0 0 10px !important;
}


#NinjiKanri #main_container{
min-width:1420px;
}
#NinjiKanri .btnArea .right_content_title{
width:115px;
margin:0 -14px 15px;
}
#NinjiKanri .btnArea{
padding:0 14px;
background:#fff;
border-left:10px solid #e4e4e5;
display: table-cell;
vertical-align: top;
text-align:center;
}
#NinjiKanri .btnArea ul{
margin:0;
padding:0;
list-style:none;
}
#NinjiKanri .btnArea ul li{
margin:0 0 20px;
}

#sagyo .scrollee tr.row-h2 td, 
#sagyo .scrollee tr.row-h2 th{
/*
min-height:30px;
max-height:40px;
*/
text-align:center;
}
#sagyo .scrollee td,
#sagyo .scrollee th{
padding:9px 2px;
}

#sagyo #sub-scrollee td,
#sagyo #sub-scrollee th{
padding:2px 2px;
}

/*--------------------------------------
          モジュールパ EチE
--------------------------------------*/
.breadcrumbs{
margin:0 0 10px 10px;
font-weight: bold;
}
.indentType01{
margin:0 0 10px 10px !important;
}
.indentType02{
margin:5px 0 5px 5px;
}
.indentType03{
margin:0 0 10px 15px;
}

.headingType01,
.headingType02,
.headingType03{
font-weight:bold;
margin:10px 0 10px 10px;
}
.headingType02{
margin:0 0 10px 15px;
}
.headingType03{
margin:0 0 5px 10px;
}

.columnTypeA01{
margin:0 0 10px 10px;
padding:0;
display:table;
text-align:left;
}
.columnTypeA01 li{
width:170px;
display:table-cell;
vertical-align:middle;
}
.columnTypeA01 li:last-child{
width:120px;
text-align:right;
}
.columnTypeA02{
width:1215px;
display:table;
vertical-align:top;
}
.columnTypeA02 .columBlock{
display:table-cell;
vertical-align:top;
}
.columnTypeB01{
width:1000px;
}
.columnTypeB01:aftre{
display:block;
content:"";
clear:both;
}
.columnTypeB01 .columnL{
float:left;
}
.columnTypeB01 .columnR{
margin:10px 0 0;
float:right;
}

.rightConetnt{
float:right;
}

.m00{margin:0 !important;}
.mB00{margin-bottom:0 !important;}
.mB10{margin-bottom:10px !important;}
.mB30{margin-bottom:30px !important;}
.mB100{margin-bottom:100px !important;}

/*--------------------------------------
           シフト表(勤務パターン・休日一覧・そ E他勤勁E
--------------------------------------*/
#main_container .shift-kinmu-pattern {
	background: #00bfff
}
#main_container .shift-kyujitu {
	background: #ffb6c1
}
#main_container .shift-sonota-kinmu {
	background: #90ee90
}

/*--------------------------------------
外部連携
--------------------------------------*/
.gaiburenkei .subarea{
display:none;
padding:12px 0;
}
.gaiburenkei .active+.subarea{
display:block;
}
.subtitle{
position:relative;
background:#5f93d0;
border-bottom:1px solid #fff;
}
.subtitle p{
margin:0;
padding:10px;
font-size:16px;
font-weight:bold;
color:#fff;
cursor:pointer;
}
.subtitle:after{
position:absolute;
right:5px;
top:50%;
display:inline-block;
content:"";
width:11px;
height:11px;
margin:-8px 0 0;
padding:7px;
background:url(../images/plus.gif) no-repeat 2px 2px;
border: 1px solid #fff;
cursor:pointer;
}
.subtitle.active:after{
position:absolute;
right:5px;
top:50%;
display:inline-block;
content:"";
width:11px;
height:11px;
margin:-8px 0 0;
padding:7px;
background:url(../images/minus.gif) no-repeat 2px 2px;
border: 1px solid #fff;
cursor:pointer;
}

.gaiburenkei .tbl_d{
margin:0 0 10px 10px;
}
.gaiburenkei .tbl_d tr{
background:#f0f0f2;
}
.gaiburenkei .titlegaibu{
background:#d5e5f4;
}
.gaiburenkei .ttl{
margin:0;
padding:12px;
background:#d5e5f4;
border: 1px solid #a8c4dc;
border-bottom:none;
font-size:16px;
font-weight:bold;
text-align:center;
}
.gaiburenkei .tableType01 td{
vertical-align:top;
}
.gaiburenkei .tableType01 label{
position:relative;
}
.gaiburenkei .tableType01 label input[type="checkbox"]{
position:absolute;
}
.gaiburenkei .tableType01 td .tbl_d td{
vertical-align:middle;
}
.gaiburenkei .tableType01 select{
margin:0;
}
.gaiburenkei .tabeleType02 td{
padding:6px;
font-weight:bold;
}
.gaiburenkei .tabeleType02 .titlegaibu label{
position:relative;
padding:0 0 0 25px;
}
.gaiburenkei .tabeleType02 .titlegaibu label input[type="checkbox"]{
position:absolute;
top:-3px;
left:0;
}
.gaiburenkei .farea{
padding:3px;
background:#d5e5f4;
border: 1px solid #a8c4dc;
border-top:none;
text-align:center;
}
.gaiburenkei .columnTypeA01{
width:100%;
margin:0 0 10px;
border:1px solid #c3c3c3;
}
.gaiburenkei .columnTypeA01 .text,
.gaiburenkei .columnTypeA01 .block{
display:table-cell;
vertical-align:middle;
/*//display:inline;
//zoom:1;*/
}
.gaiburenkei .columnTypeA01 .text{
width:120px;
padding:6px;
background:#d8d8d8;
font-weight:bold;
}
.gaiburenkei .columnTypeA01 .block{
padding:0 0 0 6px;
}
.gaiburenkei .block{
padding:0 30px 0 5px;
}
.gaiburenkei .dz-message{
padding:60px;
border-radius:10px;
-moz-border-radius:10px;
-webkit-border-radius:10px;
border:3px dotted #d6d6d6;
text-align:center;
cursor:pointer;
}
.gaiburenkei .tableTypeA01{
width:100%;
border-right:1px solid #a8c4dc;
border-bottom:1px solid #a8c4dc;
border-collapse:collapse;
border-spacing:0;
}
.gaiburenkei .tableTypeA01 th,
.gaiburenkei .tableTypeA01 td{
padding:6px;
border-left:1px solid #a8c4dc;
border-top:1px solid #a8c4dc;
}
.gaiburenkei .tableTypeA01 th{
width:108px;
background:#d5e5f4;
}
.gaiburenkei .tableTypeA01 td select{
width:200px;
}

#syain .scrollee tfoot{
/*	bottom:154px !important;*/
}

/*tabelType
----------------------------------------------------------------------*/
.tableTypeA01{
border-collapse:collapse;
border-spacing:0;
}
.tableTypeB01{
width:250px;
background:#fff;
border-collapse:collapse;
border-spacing:0;
}
.tableTypeB02{
position:absolute;
bottom:0;
right:0;
}

.tblock01{
position:absolute;
bottom:0;
right:0;
z-index:2;
margin:0;
background:#fff;
}

.tblock01 th,
.tblock01 td{
width:112px;
}
#shift .tblock01 th,
#shift .tblock01 td{
width:119px;
}

.tblock01.tbl_d th,
.tblock01.tbl_d td{
border-left:1px solid #a8c4dc !important;
border-top:1px solid #a8c4dc !important;
border-right:none !important;
border-bottom:none !important;
}

.fb01{
font-weight:bold;
}
.tbox01{
padding:5px !important;
border-top:1px solid #a8c4dc !important;
font-weight:bold;
}
#work-schedule .tbox01{
font-size:16px;
}
.tbox02{
padding:5px !important;
}
#Hibetu .tbox02,
#GekkanKibo .tbox02{
font-size:16px;
font-weight:bold;
}
.tbox03{
padding:5px !important;
}
.tbox04{
font-size:16px;
font-weight:bold;
}
#sagyo #scrollee .tbox01{
padding:5px 10px !important;
text-align:left !important;
font-size:16px;
}
#sagyo #scrollee .tbox02{
padding:5px 10px !important;
border-left:none !important;
border-bottom:none !important;
border-top:1px solid #a8c4dc;
border-right:1px solid #a8c4dc;
text-align:left !important;
}

.col-gyomu,
.col-no,
.col-sagyo{
border-left:none !important;
border-bottom:none !important;
border-top:1px solid #a8c4dc;
border-right:1px solid #a8c4dc;
}
.center-first{
border-left:none !important;
border-bottom:none !important;
border-right:none !important;
border-top:1px solid #a8c4dc;
}
.center-first{
border-left:none !important;
border-bottom:none !important;
border-top:1px solid #a8c4dc !important;
border-right:1px solid #a8c4dc !important;
}

#shift .center-first{
border-top:1px solid #a8c4dc !important;
}

th.center-first,
#GekkanKibo .col-syukei-header,
/*#work-schedule .center-separate,*/
#work-schedule .scrollee thead tr th.right-fix,
/* #syain .center-separate,*/
#syain .scrollee thead tr th.right-fix{
border-top:none !important;
}

#shift .center-combine{
border:none !important;
}
#shift .col-syukei-header{
border-left:1px solid #a8c4dc !important;
border-top:none !important;
}

#work-schedule tfoot th.center-first,
#GekkanKibo th.center-first,
#GekkanKibo .scrollee thead tr th.center-separate,
#GekkanKibo .scrollee thead tr th.colleft,
#GekkanKibo th.col-syukei-title,
#kibo th.col-syukei-title
#shift th.center-first,
#syain tfoot .center-separate,
#shift th.center-separate,
#shift th.col-syukei-title{
border-top:1px solid #a8c4dc !important;
}
#work-schedule tfoot .center-separate{
border-left:none !important;
border-bottom:none !important;
border-top:1px solid #a8c4dc !important;
border-right:1px solid #a8c4dc !important;
}


/* summary riyo */
.summary-none {
display: none !important;
}

.col-summary{
padding:5px;
}

/*-------スクロールの変更------*/
div{/* IE用スクロールバーカラー */
    scrollbar-arrow-color:#76d969;/* 矢印 */
    scrollbar-face-color:#76d969;/* スクロールバー表面 */
    scrollbar-3dlight-color:#EFF0F2;/* ボタン外側の左と上の枠 */
    scrollbar-darkshadow-color:#EFF0F2;/* ボタン外側の右と下の枠 */
}


div::-webkit-scrollbar {/* スクロールバー幅 */
    width: 17px;
    height: 15px;
}


div::-webkit-scrollbar-track {/* 背景 */
    background: #E7EFF7;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
    border-radius: 1px;
}


div::-webkit-scrollbar-thumb {/* 表面 */
    background:#76d969;
    border-radius: 3px;
}

/*--------------*/


#Hibetu .scrollee thead tr th.left-fix,
#Hibetu .scrollee thead tr th.center-first,
#Hibetu .scrollee thead tr th.center-separate,
#Kibo .scrollee thead tr th.left-fix,
#Kibo .scrollee thead tr th.center-first,
#Kibo .scrollee thead tr th.center-separate,
#syain .scrollee thead tr th.left-fix,
#syain .scrollee thead tr th.center-first,
#syain .scrollee thead tr th.center-separate,
#sagyo .scrollee thead tr th.left-fix,
#sagyo .scrollee thead tr th.center-first,
#sagyo .scrollee thead tr th.center-separate,
#GekkanKibo .colleft,
#Hibetu .scrollee thead tr th.left-fix,
#Hibetu .scrollee thead tr th.center-first,
#Hibetu .scrollee thead tr th.center-separate,
#work-schedule .scrollee thead tr th.left-fix,
#work-schedule .scrollee thead tr th.center-first,
#work-schedule .scrollee thead tr th.center-separate{
font-size:17px;
line-height:30px;
}

#GekkanKibo .scrollee thead tr th.left-fix,
#GekkanKibo .scrollee thead tr th.center-first,
#GekkanKibo .scrollee thead tr th.center-separate,
#work-schedule .scrollee thead tr th.right-fix {
font-size:15px;
}

span.ouen {
    font-size: 13px;color:blue;
    background-color: #ffff00;
    border-radius: 10px;
    border: 2px solid #090;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 1px;
    padding-bottom: 1px;
    font-weight: bold;
}

/* input textのラベル化 */
input.label {
	background-color: transparent;
    border: 1px none #000;
}

.yosan_syukei_mode {
    color: red;
    height: 25px;
    width: 200px;
    padding-top: 5px;
    border: solid 2px #aaa;
    border-radius: 3px;
    text-align: center;    
    position: absolute;
    /*位置は画面によりけり*/
    left: 450px;
    top: -13px;
}

#torikomi-dialog .dz-message{
padding:30px;
border-radius:10px;
-moz-border-radius:10px;
-webkit-border-radius:10px;
border:3px dotted #d6d6d6;
text-align:center;
cursor:pointer;
}


#outinput-dialog .dz-message{
padding:30px;
border-radius:10px;
-moz-border-radius:10px;
-webkit-border-radius:10px;
border:3px dotted #d6d6d6;
text-align:center;
cursor:pointer;
}

.summary-zentai-base {
    background: #fff; 
    top: 665px;  
    border-bottom: 1px solid #a8c4dc;
    border-left: 1px solid #a8c4dc;
    position: absolute;  
    bottom: 0;    
    right: 0;    
    width: 280px;
    z-index: 100;    margin: 0;    
}

table.tbl_d td.hoverc,table.tbl_d th.hoverc {
  background-color:rgba(248, 255, 138, 0.42)!important;;
}   



.batu {
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
  border: 1px solid rgba(0,0,0,.1);
  cursor: pointer;
}
.batu span::before,
.batu span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84%;
  height: 16%;
  margin: -8% 0 0 -42%;
  background: rgb(93, 93, 93);
}
.batu span::before {
  transform: rotate(-45deg);
}
.batu span::after {
  transform: rotate(45deg);
}

.mB20 {
  /*margin-bottom: 20px;*/
}

.icon {
  position: relative;
  width: 20px;
  height: 20px;
  background: #ccc;
  border-radius: 50%;
  margin-top:3px;
}

.icon::before, .icon--plus::after {
  position: absolute;
  top: 9px;
  left: 50%;
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  transform: translateX(-50%);
  margin-bottom: 3px;  
 
}

.icon--plus:after {
  top: 3px;
  left: -3px;
  transform: rotate(90deg);
}