/** 基本構築 **/
html {
	height: 100%;
}
body {
	/*font: 16px/1.6 "Hiragino Kaku Gothic Pro",Osaka,"メイリオ","ＭＳ Ｐゴシック","MS PGothic",Verdana,Arial,sans-serif;*/
	font: 16px/1.6 メイリオ, meiryo, "ヒラギノ角ゴ pro w3", "hiragino kaku gothic pro", sans-serif;
	margin:0;
	letter-spacing:0.05em;
	color:#2d2d2d;
	background-color: #F4F4F4;
	height: 100%;
}
img{
	outline:none;
	border-style:none;
}

a{
    color:blue;
	text-decoration:none;
}
a:visited{
    color:blue;
}
a:hover {
    color: #aa0b0b;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
/** 共通 **/
.w_100 {
    width: 100%;
}
header {
}
/** ログイン **/
main.login_wrap {
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}
.login_box {
    width: 420px;
    margin: 0px auto;
    margin-top: 50px;
    background-color: #fff;
    padding: 50px;
    box-sizing: border-box;
    border-radius: 20px;
	filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
h1.login_title {
    font-size: 27px;
    color: #00a1ff;
    font-weight: bold;
    margin-bottom: 28px;
}
ul.login_form {
    width: 317px;
}
li.login_form_border {
    border: 1px #ccc solid;
    margin: 10px 0px;
}
.login_btn {
    width: 200px;
    height: 45px;
    background-color: #ffd150;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    color: #fff;
    margin: 0px auto;
    display: block;
    font-weight: bold;
    margin-top: 42px;
}
textarea {
    width: 99%;
    border: none;
}
/** ログインここまで **/
.sys_title {
    height: 30px;
    padding: 5px 10px;
    box-sizing: border-box;
    color: #262626;
    font-size: 14px;
}
.config_head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 44px;
    color: #fff;
    background: linear-gradient(135deg, #26b9ff, #007bd2);
    padding: 10px;
    box-sizing: border-box;
}
.config_head img {
    width: 24px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.config {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
select.fiscal-year {
    outline: none;
    text-indent: 0.01px;
    background: none transparent;
    font-size: inherit;
    color: inherit;
    border: none;
    margin-right: 15px;
    height: 27px;
}
select option {
    background-color: #fff;
    color: #333;
}
select::-ms-expand {
    display: none;
}
select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #828c9a;
}
.wrap {
    display: flex;
    flex-direction: row;
    justify-content: start;
    min-height: 100%;
}
section {
    margin-bottom: 50px;
}
aside.navigation {
    min-width: 200px;
    min-height: 100%;
    background-color: #e2e2e2;
    padding: 15px;
    box-sizing: border-box;
}
nav#main_nav {
    width: 100%;
}
ul.nav_list {
	margin-bottom: 24px;
    text-indent: 7px;
}
.nav_list li {
    line-height: 38px;
    font-size: 14px;
    margin-bottom: 3px;
    border-bottom: 1px solid #d4d4d4;
    background-color: transparent;
    font-weight: normal;
}
.nav_list li a {
    color: #292929;
    width: 100%;
    display: block;
}
.nav_list li a:hover {
	color: #a90000;
    background-color: #cecece;
}
.nav_list li.active_navi {
    background-color: #bbb;
    font-weight: bold;
}
ul.nav_list_nest {
    text-indent: 18px;
    margin-left: 7px;
}
ul.nav_list_nest li {
    border: none;
    background-color: transparent;
    font-weight: normal;
}
/** 設定メニュー **/
.config_nav {
    position: absolute;
    top: 30px;
    right: 0;
    width: 152px;
    height: auto;
    padding: 24px;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.8);
    z-index: 999;
}
ul.config_list {

}
.config_list li {
    line-height: 33px;
}
.config_list li a {
    color: #fff;
}
.config_list li a:hover {
    color: #adadad;
}

/** 設定メニュー ここまで **/
main {
    min-width: 65%;
    padding: 20px;
    box-sizing: border-box;
}
.title-control {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
}
.title-control_start {
    display: flex;
    flex-direction: row;
    justify-content: start;
    margin-bottom: 20px;
}
p.page_title {
    background-image: url(../images/list_mark.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: left;
    text-indent: 20px;
    line-height: 52px;
    margin-right: 16px;
}
.control_box {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 32px;
    padding-top: 10px;
}
table.normal_tb {
    font-size: 12px;
    margin-bottom: 20px;
}
/** 完了時 **/
.normal_tb tr.done_color td {
    background-color: #e2e2e2;
}
.normal_tb tr.done_color td.no_back{
    background-color: #f4f4f4;
}
.normal_tb tr.wrong_color td {
    background-color: #a00000;
    color: #fff;
}
.normal_tb tr.wrong_color td.no_back{
    background-color: #f4f4f4;
}
table.deduction_table td {
    height: 23px;
}
.deduction_wrap {
    display: flex;
    flex-direction: row;
    justify-content: normal;
}
/** 完了時　ここまで **/
.w25 {
	min-width: 25px;
}
.fw25 {
    width: 25px;
}
.w190 {
    width: 190px;
}
.w350 {
    min-width: 350px;
}
.w500 {
	min-width: 500px;
}
.w750 {
	min-width: 750px;
}
.t_left {
	text-align: left;
}
.t_right {
	text-align: right;
}
.t_center {
	text-align: center;
}
.t_center_i {
    text-align: center !important;
}
.cb_center {
	position: relative;
}
.normal_tb th {
    background-color: #fff;
    text-align: center;
    vertical-align: middle;
    line-height: 15px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px #ccc solid;
	background-color: #e2e2e2;
}
.normal_tb th.month_aggregate {
    border: 1px #ccc solid;
    background-color: #ccc;
    font-weight: bold;
}
.normal_tb td {
    background-color: #fff;
    text-align: center;
    vertical-align: middle;
    line-height: 15px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px #ccc solid;
}
.normal_tb td.input_space {
    background-color: #fff;
    text-align: left;
    vertical-align: middle;
    line-height: 15px;
    box-sizing: border-box;
    border: 1px #ccc solid;
    /*padding: 0px 5px;*/
    font-size: 12px;
}
.normal_tb th.no_back {
    background-color: #f4f4f4;
    text-align: center;
    vertical-align: middle;
    line-height: 15px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px #f4f4f4 solid;
}
.normal_tb td.no_back {
    width: 25px;
    background-color: #f4f4f4;
    text-align: center;
    vertical-align: middle;
    line-height: 15px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px #f4f4f4 solid;
}
.normal_tb tr.deletion_color td {
    background-color: #fff700;
    font-weight: bold;
}
.normal_tb tr.deletion_color td.no_back {
    width: 25px;
    background-color: #f4f4f4;
    text-align: center;
    vertical-align: middle;
    line-height: 15px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px #f4f4f4 solid;
}
.normal_tb td.bdr_right {
    border-right: 1px #ccc solid;
}
.normal_tb td.no_back_120 {
    width: 120px;
    background-color: #f4f4f4;
    text-align: center;
    vertical-align: middle;
    line-height: 15px;
    padding: 5px;
    box-sizing: border-box;
    border: 1px #f4f4f4 solid;
}
.normal_tb td.check-regist {

}
.normal_tb td input.check-regist_box {
    height: auto;
}
/** モーダル **/
a.modal-open:hover {
    cursor:pointer
}
.modal_send_btn {
    text-align: center;
}
.modal-overlay {
    z-index:998;
    position:fixed;
    display: none;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background-color:rgba(0,0,0,.5)
}
.modal_branch_content {
    position: fixed;
    z-index: 999;
    display: none;
    margin: 0px auto;
    padding: 15px;
    border-radius: 10px;
    background: #f4f4f4;
    min-width: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 5px 5px 5px rgba(0,0,0,0.4);
}
.modal_branch_content_890 {
    display: none;
    position: fixed;
    z-index: 999;
    margin: 0px auto;
    padding: 15px;
    border-radius: 10px;
    background: #f4f4f4;
    min-width: 890px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 5px 5px 5px rgba(0,0,0,0.4);
}
.modal_bank_content {
    position: fixed;
    z-index: 999;
    display: none;
    margin: 0px auto;
    padding: 15px;
    border-radius: 10px;
    background: #f4f4f4;
    min-width: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 5px 5px 5px rgba(0,0,0,0.4);
}
.modal_bank_content_890 {
    display: none;
    position: fixed;
    z-index: 999;
    margin: 0px auto;
    padding: 15px;
    border-radius: 10px;
    background: #f4f4f4;
    min-width: 890px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 5px 5px 5px rgba(0,0,0,0.4);
}
/** ボタン **/
.btn_center {
    width: 140px;
    margin: 0px auto;
}
.button a {
    width: 140px;
    height: 33px;
    text-align: center;
    line-height: 33px;
    display: block;
    color: #fff;
    border-radius: 11px;
    font-size: 15px;
    margin: 10px 5px 10px 0px;
}
.button a:hover {
    opacity: 0.7;
}
.button_no_mgn a {
    width: 140px;
    height: 33px;
    text-align: center;
    line-height: 33px;
    display: block;
    color: #fff;
    border-radius: 11px;
    font-size: 15px;
    margin: 0px 5px 0px 0px;
}
.button_no_mgn a:hover {
    opacity: 0.7;
}
.btn_c_red a {
    background-color: #ca0000;
}
.btn_c_gray a {
    background-color: #464646;
}
.btn_c_green a {
    background-color: #008e1f;
}


.btn_large_green {
    background-color: #00a90d;
    text-align: center;
    box-sizing: border-box;
    border-radius: 9px;
    font-size: 13px;
    width: 90px;
    height: 28px;
    line-height: 28px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.btn_large_green a {
    color: #fff;
    display: block;
}
.btn_large_green a:hover {
    opacity: 0.8;
}
.btn_red {
    background-color: #cc0000;
    padding: 6px;
    box-sizing: border-box;
    border-radius: 9px;
    font-size: 10px;
    width: 46px;
    height: 28px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.btn_red a {
    color: #fff;
    display: block;
}
.btn_red a:hover {
	opacity: 0.8;
}
.btn_green {
    background-color: #00a90d;
    padding: 6px;
    box-sizing: border-box;
    border-radius: 9px;
    font-size: 10px;
    width: 60px;
    height: 28px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.btn_green a {
    color: #fff;
    display: block;
}
.btn_green a:hover {
    opacity: 0.8;
}
.btn_blue {
    background-color: #007bd6;
    padding: 6px;
    box-sizing: border-box;
    border-radius: 9px;
    font-size: 10px;
    width: 60px;
    height: 28px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.btn_blue a {
	color: #fff;
    display: block;
}
.btn_blue a:hover {
}
.btn_pen {
}
.btn_pen a {
    background-image: url(../images/pen.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: left;
    width: 15px;
    height: 15px;
    display: block;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.btn_pen a:hover {
    opacity: 0.6;
}
.btn_delete a, .btn_request_delete a{
    background-image: url(../images/delete.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: left;
    width: 15px;
    height: 15px;
    display: block;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.btn_delete a:hover, .btn_request_delete a:hover {
    opacity: 0.6;
}
.btn_re-fix a {
    background-image: url(../images/re-fix.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: left;
    width: 15px;
    height: 15px;
    display: block;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.btn_re-fix a:hover {
    opacity: 0.6;
}
.btn_memo-on a {
    background-image: url(../images/memo-on.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: left;
    width: 15px;
    height: 15px;
    display: block;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.btn_memo-on a:hover {
    opacity: 0.6;
}
.btn_key {
}
.btn_key a {
    background-image: url(../images/key.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left;
    width: 20px;
    height: 20px;
    display: block;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.1));
}
.btn_key a:hover {
    opacity: 0.6;
}
.btn_detail {
}
.btn_detail a {
    background-image: url(../images/detail.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: left;
    width: 15px;
    height: 15px;
    display: block;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.btn_detail a:hover {
    opacity: 0.6;
}
/** input 装飾 **/
input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    height: 12px;
    font-size: 12px;
    box-sizing: border-box;
}
input.cb_abso {
    position: absolute;
    margin: 7px auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
button.save {
    width: 140px;
    height: 38px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 14px;
    background-color: #cc0000;
    border-radius: 12px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
button.save a:hover {
    opacity: 0.6;
}

button.btn02 {
    width: 110px;
    height: 34px;
    margin-left: 10px;
    color: #fff;
    font-size: 12px;
    border-radius: 12px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
button.btn02 a:hover {
    opacity: 0.6;
}
button.b_gray {
	background-color: #3c3c3c;
}
button.b_green {
    background-color: #09981b;
}
button.b_red {
    background-color: #cc0000;
}
input[type="text"] {
	width: 100%;
    height: 30px;
}
input[type="text"]:focus {
    background-color: #e6e6e6;
}
/** セレクトボックス装飾 **/

.serect_d {
    overflow: hidden;
    width: 100%;
    margin: 0;
    text-align: center;
}
.serect_d select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.serect_d select::-ms-expand {
    display: none;
}
.serect_d.s_d_b {
    position: relative;
    border: 1px solid #bbbbbb;
    border-radius: 2px;
    background: #ffffff;
}
.serect_d.s_d_b::before {
    position: absolute;
    top: 0.8em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
}
.serect_d.s_d_b select {
    padding: 8px 38px 8px 8px;
    color: #666666;
}

.serect_d.s_d_b_none {
    position: relative;
    border-radius: 2px;
    background: #ffffff;
}
.serect_d.s_d_b_none::before {
    position: absolute;
    top: 13px;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
}
.serect_d.s_d_b_none select {
    padding: 8px 38px 8px 8px;
    color: #666666;
}
.master_menu_box {
    width: 70%;
}
ul.master_list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0;
    font-size: 14px;
}
.master_list li {
    width: 144px;
    height: 42px;
    line-height: 42px;
    background-color: #fff;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 11px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.master_list li a {
    color: #000;
    display: block;
}
.master_list li a:hover {
    opacity: 0.8;
}
table.closing {
    background-color: #fff;
}
.closing th {
    vertical-align: middle;
    border: 1px solid #ccc;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 124px;
    font-size: 14px;
}
.closing th.no_back {
    border: none;
    background-color: #f4f4f4;
    border-radius: 0;
}
.closing th.month {
    width: 42px;
    font-size: 12px;
    padding: 0;
}
.closing td.close_title {
    font-size: 12px;
    padding: 0px 5px;
    text-align: right;
}
.closing td {
    text-align: center;
    border: 1px solid #ccc;
    padding: 0px;
    vertical-align: middle;
}
.before {
    display: none;
    font-size: 12px;
    height: 25px;
    line-height: 25px;
}
.after {
    display: none;
    background-color: #8c8c8c;
    font-size: 12px;
    height: 25px;
    line-height: 25px;
}
.none_correct {
    display: none;
    background-color: #8c8c8c;
    font-size: 12px;
    height: 25px;
    line-height: 25px;
}
.correct {
    display: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.correct-check {
    width: auto;
    /* position: relative; */
    margin: 0px;
    padding: 0px;
    font-size: 12px;
    background-color: #cf0000;
    color: #fff;
    font-weight: bold;
    height: 25px;
    line-height: 25px;
}
.correct-check a {
    color: #fff;
    display: block;
}
.correct-check a:hover {
    opacity: 0.7;
}
.correct-help {
    display: none;
    width: 141px;
    position: absolute;
    top: -78px;
    left: 5px;
    padding: 12px;
    border-radius: 5px;
    background: #383838;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}
.correct-help:after {
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: -19px;
    margin-left: 10px;
    border: solid transparent;
    border-color: rgba(51, 204, 153, 0);
    border-top-color: #383838;
    border-width: 10px;
    pointer-events: none;
    content: " ";
}
.correct-check:hover + .correct-help {
    display: block;
}
/** 入力系 **/
ul.month_list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 800px;
    margin-bottom: 20px;
}
.month_list li {
    background-color: #fff;
    box-sizing: border-box;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
}
.month_list li a {
    color: #444;
    width: 42px;
    height: 11px;
    line-height: 11px;
    display: block;
    padding: 8px;
}
.month_list li a:hover {
    background-color: #e4e4e4;
}
.month_list li.active_month {
    background-color: #afafaf;
}
ul.sort_list {
    display: flex;
    flex-direction: row;
    justify-content: normal;
    width: 750px;
    margin-bottom: 20px;
}
.sort_list li {
    margin-right: 10px;
    margin-bottom: 10px;
}
.csv_btn_box {
    width: 750px;
}
/** その他装飾 **/
.t_bold {
    font-weight: bold;
}
.t_bold a {
    background-color: #ca0001;
    width: 16px;
    height: 17px;
    display: block;
    text-align: center;
    line-height: 14px;
    border-radius: 9px;
    color: #fff;
    padding-left: 0px;
}
p.alert {
    color: #c10202;
    font-size: 14px;
    text-align: center;
}
span.red {
    color: #ff0000;
}
/** ここまで **/

footer {
    width: 100%;
    height: 29px;
    position: fixed;
    bottom: 0;
    color: #fff;
    background: linear-gradient(135deg, #26b9ff, #007bd2);
    padding: 3px 10px 3px 3px;
    box-sizing: border-box;
    text-align: right;
}
.table-wrapper {/*table全体のラッパー。スクロールを表示する*/
  max-width: 500px;
  overflow: scroll;
}
.table_hidden {
    width: 100%;
    height: 800px;
    overflow-y: scroll;
    overflow-x: scroll;
}
table.s-table {
  white-space: nowrap;
  position: relative;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
.s-table td {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
}
.s-table th {
  white-space: nowrap;
  background-color: #eee;
  /**position: sticky;**/
  top: -1px;
  z-index: 2;
}
.s-table th:first-of-type {
  left: 0;
  z-index: 3;
}
.s-table tbody tr td:first-of-type {/*最初の要素を固定する*/
  background-color: #eee;
  /**position: sticky;**/
  left: -1px;
  text-align: left;
}

.w100p {
    width: 100%;
}
.h69 {
    height: 69px;
}
#fixedTableArea {
    width: 100%;
    height: 480px;
    background-color: #fff;
    margin-bottom: 60px;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
#topLeftArea {
    float: left;
    width: 28%;
}
#topRightArea {
    width: 72%;
    float: left;
    overflow: hidden;
}
#bottomLeftArea {
    float: left;
    height: 408px;
    overflow: hidden;
    width: 28%;
}
#bottomRightArea {
    width: 72%;
    height: 408px;
    overflow-x: overlay;
    overflow-y: overlay;
}
#bottomRightArea::-webkit-scrollbar-track {
    background: transparent;
    opacity: 0;
}
#bottomRightArea::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
#bottomRightArea::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ff0000;
}
table.manage-table {
    white-space: nowrap;
    position: relative;
    border: 1px solid #ddd;
    border-collapse: collapse;
    font-size:14px;
}
.manage-table td {
    border: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
}
.manage-table th {
    white-space: nowrap;
    background-color: #eee;
    border: 1px solid #ddd;
    vertical-align: middle;
}
.manage-table th.client-list {
    height: 45px;
}
.manage-table td a {
    font-size: 10px;
    color: #fff;
    background-color: #af0000;
    padding: 4px;
    border-radius: 6px;
    border: none;
    vertical-align: middle;
}
.manage-table td a:hover {
    opacity: 0.7;
}
.manage-table td.w_110 {
    width: 127px;
}
table.manage-table_value {
    white-space: nowrap;
    position: relative;
    border: 1px solid #ddd;
    border-collapse: collapse;
    font-size:14px;
}
.manage-table_value td {
    border: 1px solid #ddd;
    text-align: right;
    min-width: 102px;
    padding: 0px 5px;
    box-sizing: border-box;
    vertical-align: middle;
}
.manage-table_value th {
    white-space: nowrap;
    background-color: #eee;
    border: 1px solid #ddd;
    min-width: 101px;
    vertical-align: middle;
}
.manage-table_value th a {
    display: block;
    color: #ccc;
}
.manage-table_value th a:hover {
    color: #c90000;
    background-color: #ccc;
}

.fixedTable {
    border-collapse: collapse;
}
.fixedTable td {
    border: 1px solid #888;
    min-width: 90px;
    max-width: 90px;
    overflow: hidden;
    white-space: nowrap;
    height: 30px;
}
.fixedTable td.dummyColumn {
    width: 17px;
    border: 0px;
}
.fixedTable td.dummyRow {
    height: 18px;
    border: 0px;
}
p.pass-edit {
    font-size: 14px;
    margin-bottom: 20px;
}
p.pass-edit a {
    color: #737373;
    padding-left: 10px;
}
p.pass-edit a:hover {
    color: #af0000;
}

.hide {
    display: none;
}
table.table-condensed {
    font-size: 14px;
}
.datepicker .datepicker-switch {
    font-size: 17px;
}
.wrong_alert {
    background-color: #FFEB3B;
    color: #000;
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
}
td.not_close {
    font-size: 14px;
}
td.edit_clear {
    font-size: 14px;
    background-color: #e2e2e2;
}
td.closed {
    background-color: #e2e2e2;
}
td.closed a {
    font-size: 14px;
    color: #000000;
}
td.edit_alert {
    background-color: #c50000;
}
td.edit_alert a {
    font-size: 14px;
    color: #fff;
    display: block;
}
td.edit_alert a:hover {
    opacity: 0.7;
}

/** 追加装飾 **/
.disagreement {
    width: 500px;
    text-align: center;
    background-color: #FFEB3B;
    margin-bottom: 19px;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
}
.w_280 {
    width: 280px;
    margin-bottom: 20px;
}
.carry_forward {
    border: 1px solid #ccc;
    width: 240px;
    padding: 8px;
    background-color: #fff;
    margin-bottom: 20px;
    font-size: 15px;
}
.deduction_print {
	display: none;
}
/** ツールチップ **/
.cp_tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    background-color: #fff;
    color: #6d6d6d;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin-left: 5px;
    font-size: 12px;
}
.cp_tooltip .cp_tooltiptext {
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: -132px;
    visibility: hidden;
    width: auto;
    white-space: nowrap;
    padding: 0.3em 0.5em;
    transition: opacity 1s;
    text-align: center;
    opacity: 0;
    color: #ffffff;
    border-radius: 6px;
    background-color: #da3c41;
}
.cp_tooltip .cp_tooltiptext::after {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    content: ' ';
    border: 5px solid transparent;
    border-top-color: #da3c41;
}
.cp_tooltip:hover .cp_tooltiptext {
    visibility: visible;
    opacity: 1;
}
@media print {
html, body {
height: auto;
}
header,
aside.navigation,
.title-control,
ul.month_list,
.title-control_start,
section,
footer {
	display: none;
}
.deduction_print {
	margin: 0;
	padding: 0;
	display: block;
}
.deduction_print h2 {
	page-break-after: always;
	text-align: center;
	font-size: 24px;
}
table.print_table {
	page-break-after: always;
    border: 1px solid #ddd;
    border-collapse: collapse;
    font-size:14px;
    width: 85%;
    margin: 0px auto;
}
table.print_table th {
	text-align: left;
    border: 1px solid #ddd;
    padding: 3px;
}
table.print_table td {
	text-align: left;
    border: 1px solid #ddd;
    padding: 3px;
}
}