
/* body */
body{
    margin-top: 0px;
    margin-bottom: 0px;
    overflow-x: hidden;
    margin-right: 8px;
    margin-left: 8px;
}

/* フォント */
body{
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

/* 項目ラベル */
.input-label {
    height: 34px;
    padding: 7px;
    border-radius: 4px;
    margin-bottom: 2px;
}

.form-control {
    display: block;
    width: 100%;
    /* height: 22px; */
    padding: 2px 5px; 
    font-size: 14px;
    /* line-height: 1.42857143; */
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-group {
    margin-bottom: 2px;
}

.input-group-addon {
    padding: 0px 4px 0px 4px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* タイトル */
.title {
    /* height: 34px; */
    border-radius: 4px;
    margin-left : 0px;
    padding: 0px;
    font-size: large;
}

/* ナビゲーション (bootstrapのクラスを上書き)*/
.navbar-static-top {
    background-color: #E6E6E6;
}

.navbackground {
/*    background-color: #E6E6E6;*/
}

.navbar-default .navbar-collapse{
    background-color: #E6E6E6;
}
.navbackground > .navbar-default {
/*    border-bottom: #0B0B61 solid 3px;*/
    margin-bottom: 0px;
}

.sidebar {
    margin-top: 53px;
}

.sidebar ul li {
    background-color: #E6E6E6;
}

.sidebar ul li a.active {
    background-color: #D8CEF6;
}

.sidebar ul li a:focus {
    background-color: #D8CEF6;
}

.nav .open a:focus {
    background-color: #D8CEF6;
}

.sidebar ul li a:hover {
    background-color: #D8CEF6;
}

.navbar-top-links li a:hover{
    background-color: #D8CEF6;
}

.sidebar ul li a:active {
    background-color: #D8CEF6;
}

.navbar-top-links li a:active{
    background-color: #D8CEF6;
    color: #337ab7;
}

.navbar-top-links li a {
    color: #000000;
}

.navbar-top-links li a:hover {
    color: #337ab7;
}

.navbar-default .navbar-brand {
  /*color: #0B0B61;*/
  color: #00AADC;	/* 日水コンカラー */
}
.navbar-brand {
#    padding-top: 0px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: underline;
}

.open > .dropdown-menu {
    background-color: #f0f9ff;
}

.open > .dropdown-menu li a{
    color: #337ab7;
}

/* テーブル部品 */
.tablePagingInput {
    max-width: 55px; 
    min-height: 22px; 
    border-radius: 4px; 
    border: 1px solid #ccc; 
    text-align: center;
    font-size: 12px;
}

/* Form */
.formFrame {
    border-bottom: 1px solid #0255df;
    padding-bottom: 5px;
    margin-bottom: 8px;
}

.checkbox-inline label{
    font-weight: normal;
}

.my-input-group {
    padding-left:0px;
}

.my-input-group-right {
    padding-right:0px;
}

/* IEのinputに×が付くのを防ぐ */
input::-ms-clear {
    visibility:hidden
}
/* IEのinputに目のマークが付くのを防ぐ */
input::-ms-reveal {
    visibility:hidden
}
/* チェックボックスのラベル設定 */
.checkbox-lable label{
    vertical-align:top;
}