﻿/* 文字の色(濃青系) */

.text-primary {
  color: rgb(0,116,190);
}
.bg-primary {
  background-color: rgb(0,116,190);
}
.btn-primary {
  color: #fff;
  background-color: rgb(0,116,190);
  border-color: #1791f2;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .3s;
       -o-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transition-property: all;
       -o-transition-property: all;
          transition-property: all;
}
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background-color: rgb(0,116,190);
  border-color: #1791f2;
}
.btn-primary .badge {
  color: rgb(0,116,190);
  background-color: #fff;
}
.label-primary {
  background-color: rgb(0,116,190);
}
.panel-primary {
    border-color: rgb(0,116,190);
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: rgb(0,116,190);
  border-color: rgb(0,116,190);
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgb(0,116,190);
}
.panel-primary > .panel-heading .badge {
  color: rgb(0,116,190);
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgb(0,116,190);
}

/*　テキスト右寄せ　*/
input.text-right {
    text-align: right;
    ime-mode:disabled;
}

input[type="radio"], input[type="checkbox"] {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    margin-right: 0.5em;
    margin-left: 1.0em;
}

/* チェックボックス・ラジオボタンで2行目以降のインデント不備の対応 */
/* 上書き */
.checkbox-inline + .checkbox-inline {
	margin-left: 0px;
	margin-right: 10px;
}

.checkbox-inline:first-child {
	margin-right: 10px;
}

.radio-inline + .radio-inline {
	margin-left: 0px;
	margin-right: 10px;
}

.radio-inline:first-child {
	margin-right: 10px;
}

@media (max-width: 1200px) {
    .navbar-header {
        float: none;
    }
    .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 7.5px;
        padding-bottom: 7.5px;
    }
    .collapse.in{
        display:block !important;
    }
}
/* テキストボックスの横へのリサイズ無効 */
textarea{
    resize: vertical;  
    overflow: auto;  
    height: 100px;  
}

/* 画面縮小時のヘッダメニューの高さ */
.pre-scrollable {
  max-height: 600px;
  overflow-y: scroll;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 600px;
}

/*　半角英数字を強制的に折り返す　*/
body{
  word-wrap : break-word;
  overflow-wrap : break-word;
}
/* 背景の色(黄色系) */
.bg-yellow {
    background-color: rgb(255, 216, 0);
    color: #fff;
}

/* iframeの高さ */
.embed-responsive-16by9 {
    padding-bottom: 35%;
}

/* テーブル交互色の設定 */
.table-striped > tbody > tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

/* テーブル下線のみ */
.list-bottom {
    border-style: none none solid none;
    border-bottom-color: #dddddd;
    border-width: thin;
}

/*------------------------------------------------------------*/
/* PageTop */
/*------------------------------------------------------------*/
#page-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
}

    #page-top a {
        display: table-cell;
        width: 50px;
        height: 50px;
        text-align: center;
        vertical-align: middle;
        color: #fff;
        font-size: 1.2em;
        line-height: 1;
        border-radius: 50%;
        background: #7dd3ff;
    }

        #page-top a:hover {
            text-decoration: none;
            opacity: 0.7;
        }

/*------------------------------------------------------------*/
/* 画面下部に固定                                             */
/*------------------------------------------------------------*/
div.bottom-fixed {
    position: fixed;
    bottom: 0px;
    z-index: 50;
    padding: 7px;
    background-color: rgba(227,227,227,0.8);
    border: 1px solid #e3e3e3;
}

/*------------------------------------------------------------*/
/* 発注入力数量入力一覧体裁                                   */
/*------------------------------------------------------------*/
.td-width-size {
    width: 110px;
}

.td-size-row {
    background-color: #0074be;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.td-border-top-bottom-none {
    border-top: 0px none !important;
    border-bottom: 0px none !important;
}
