@CHARSET "UTF-8";

/* Bootstrapを使用していてスクロールバーの表示／非表示で全体がずれる問題の対応.
 * また、モーダル表示時にベース部（コンテナ部）がずれる問題の対応.
 * 常にスクロールバーを表示させる.
 * -------------------------------------------------- */
body {overflow-y: scroll;}


/* Bootstrapを使用していてナビバーを上部固定にしている場合にコンテナが被る問題の対応.
 * コンテナ上部にマージンを設定.
 * -------------------------------------------------- */
nav.navbar-fixed-top + div.container,nav.navbar-fixed-top + div.container-fluid {margin-top: 70px;}


/* ナビをページヘッダを並べた場合の位置調整.
 * ページヘッダ部の上マージンをナビ側に合わせる.
 * -------------------------------------------------- */
div.page-header {
	padding-bottom: 0;
	margin-top: -20px;
}


/* DataTable使用時のテーブル下部の調整.
 * 下ボータラインとマージンを設定.
 * -------------------------------------------------- */
div.dataTables_wrapper {
/*	border-bottom: 1px solid #ddd; */
	margin-bottom: 10px;
}
*/


body {padding-bottom: 20px;}


/*
table.table-condensed input.input-sm {height: 20px;}
table input.input-sm {height: 26px;}
*/

table.dataTable {margin-top: 0 !important;}



.form-horizontal .checkbox-inline,
.form-horizontal .radio-inline {padding-top: 5px;}



/* フォームで固定文字列を表示する場合の高さ調整.
 * inputタグの高さと揃える.
 * -------------------------------------------------- */
.form-group-sm .form-control-static {min-height: 30px;}


/* INPUTタグの数値入力欄のスピンボタンを非表示.
 * -------------------------------------------------- */
input.no-spin[type="number"]::-webkit-outer-spin-button,
input.no-spin[type="number"]::-webkit-inner-spin-button,
input.no-spin[type="number"] {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance:textfield;
}


/* 商品画像の最大サイズを設定.
 * -------------------------------------------------- */
img.syohin-gazou {
	max-width: 100%;
	max-height: 200px;
}


/* #4578 活性・非活性ボタンの色合いの強弱を強める
 * 非活性ボタンを薄くする
 * -------------------------------------------------- */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
	opacity: .25;
}


/* #4586 各項目間の間を詰める
 * -------------------------------------------------- */
.form-group {margin-bottom: 10px;}

