/* 追加CSS */
input[type="submit"], input[type="button"] {
        -webkit-appearance: none;
}
button {
        -webkit-appearance: none;
        outline: none;
        border-style: none;
}
/* ログイン画面周り */
.login_wrap {
        width: 60%;
        margin: 0 auto;
}

input[type="password"]{
    border-top: 1px solid #767676;
	border-right: 2px solid #555555;
	border-bottom: 2px solid #555555;
	border-left: 1px solid #767676;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	padding:4px;
	box-sizing:border-box;
	font-size:16px;
	line-height: 120%;
	font-family: 'Noto Sans JP', sans-serif;
	width:100%;
}
input[type="password"].w3em {
	width:3em;
}

.login_contents {
        margin-bottom: 20px;
        height: 60px;
}

/* セレクトボックス */
select.w3em {
	width:6em;
	margin-left:0.2em;
}

/*　取引台帳　*/
table.input_table.daicho.list td:nth-child(1) {
        width:10%;
}
table.input_table.daicho.list td:nth-child(2) {
	width:12%;
	text-align:center;
	white-space: nowrap;
}
table.input_table.daicho.list td:nth-child(3) {
	width:12%;
}
table.input_table.daicho.list td:nth-child(4) {
	width:35%;
}
table.input_table.daicho.list td:nth-child(5) {
	width:30%;
}
@media screen and (max-width: 865px) {
        table.input_table.daicho.list td:nth-child(1) {
                width:5%;
        }
        table.input_table.daicho.list td:nth-child(4) {
        	width:40%;
        }
}

/* 検索結果 */
.search_result {
        float: left;
        color: gray;
}

/* ページネーション */
.paginate_active {
        font-weight: bold;
}
