html {
  /*
  overflow-y: scroll;
  */
}

.full-size {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  overflow: hidden;
}

.scroll {
  overflow-y: auto;
}

main {
  background-color: white;
}

footer {
  padding-top: 7px;
  padding-bottom: 7px;
}

.title {
  width: 110px;
  background-color: #f4f4f4;
  font-weight: bold;
}

nav {
  background-color: darkgray;
}

.nav-link > button {
  min-width: 100px;
  font-weight: bold;
  color: black;
  background-color: #f4f4f4;
}

.btn-150 {
  width: 150px;
}

.btn-100 {
  width: 100px;
}

.pb-75 {
  padding-bottom: 75px;
}

.display-none {
  display: none;
}

/* number型のスピンボタン消去 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance:textfield;
}

/* 背景色 */
.bg-brown {
  background-color: #5b2e00;
  color: white;
}

.bg-puple {
  background-color: #dfbfff;
}

.bg-pink {
  background-color: #ff80ff;
}

.bg-aqua {
  background-color: #BBDEFB;
}

.bg-main {
  background-color:#bbf9de;
}

.bg-disabled {
  background-color: #CCCCCC;
}

.nav-item.bg-aqua:hover {
  background-color: #2196F3;
}

/* タブ */
.nav-item > a {
  padding-top: 3px;
  padding-bottom: 2px;
}

a.nav-link:link {
  color: #999999;
}

/* aタグのリンクを無効 */
a.disabled{
  pointer-events: none;
}

/* リストにスクロールバーを付ける */
ul.usr-scroll {
  overflow-y: scroll;
　height: 99px;
　line-height: 1.5;
  border: 1px solid #EEEEEE;
}

.clearText {
  text-indent:100%;
  font-size: 0px;
  white-space:nowrap;
  overflow:hidden;
}

/* ラベルのスタイル　*/
.chkbox label {
  padding-left: 35px; /* ラベルの位置 */
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

/* ボックスのスタイル */
.chkbox label:before {
  content: '';
  width: 18px;    /* ボックスの横幅 */
  height: 18px;   /* ボックスの縦幅 */
  display: inline-block;
  position: absolute;
  left: 10px;
  background-color: #fff;
  border: solid 1px #d3d3d3;
  border-radius: 6px 6px 6px 6px;
}

/* 元のチェックボックスを表示しない */
.chkbox input[type=checkbox] {
  display: none;
}

/* チェックした時のスタイル */
.chkbox input[type=checkbox]:checked + label:before {
  content: '\2713';       /* チェックの文字 */ 
  font-size: 18px;        /* チェックのサイズ */
  color: #000;            /* チェックの色 */
  background-color: #CCC; /* チェックした時の色 */
}

/* サイドバー */
.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
    background-color: #FFFFFF;
}
.drawer-hamburger:focus,
select:focus {
    outline: 0;
}
/* 背景色キャンセル */
.bg-initial {
    background-color: initial;
}
/* ドロップダウンメニュー */
.card-header a::after {
    content: "\0020\25bc";  /* " ▲" */
}
.card-header a[aria-expanded=true]::after {
    content: "\0020\25b2";  /* " ▼" */
}
/* リストスタイル */
.li-square {
    list-style-type: square;
}
.li-none {
    list-style-type: none;
}
/* ボタンスタイル */
.chk_btn {
    width: 100px;
}

/* ダイアログタイトルバー */
.ui-dialog-titlebar{
   padding: 0.3rem !important;
   font-size: 13px;
}
/* ウォークスルー操作ウィンドウ用ボタン */
.dialog-btn {
    height: 40px;
    width: 60px;
    display: block;
    position: relative;
    float: left;
}
/* 再生ボタン */
.btn-play:before {
    content: '';
    height: 0;
    width: 0;
    display: block;
    border: 13px transparent solid;
    border-right-width: 0;
    border-left-color: #FFFFFF;
    position: absolute;
    top: 6px;
    left: 13px;
}
/* 逆再生ボタン */
.btn-reverseplay:before {
    content: '';
    height: 0;
    width: 0;
    display: block;
    border: 13px transparent solid;
    border-left-width: 0;
    border-right-color: #FFFFFF;
    position: absolute;
    top: 6px;
    left: 10px;
}
/* 一時停止ボタン */
.btn-pause:before,
.btn-pause:after {
    content: '';
    height: 22px;
    width: 6px;
    display: block;
    background: #FFFFFF;
    position: absolute;
    top: 8px;
    left: 9px;
}
.btn-pause:after {
    left: 20px;
}
/* 停止ボタン */
.btn-stop:before{
    content: '';
    height: 19px;
    width: 19px;
    display: block;
    background: #FFFFFF;
    position: absolute;
    top: 9px;
    left: 8px;
}
/* 閉じるボタン */
.btn-close:before,
.btn-close:after {
    content: '';
    height: 8px;
    width: 26px;
    display: block;
    background: #FFFFFF;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    position: absolute;
    top: 15px;
    left: 5px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}
.btn-close:after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

/* テキストボックスのプレースホルダー */
.form-control::placeholder{
  font-weight: normal;
  color: #cccccc;
}

/* ボタンのグラデーション化 */
.btn-dark {
  color: #fff;
  background: #343a40 linear-gradient(180deg, #52585d, #343a40) repeat-x;
  border-color: #343a40
}

.btn-dark:hover {
  color: #fff;
  background: #23272b linear-gradient(180deg, #44474b, #23272b) repeat-x;
  border-color: #1d2124
}

.btn-dark.focus, .btn-dark:focus {
  color: #fff;
  background: #23272b linear-gradient(180deg, #44474b, #23272b) repeat-x;
  border-color: #1d2124;
  box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5)
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
  background-image: none
}

.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show>.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  background-image: none;
  border-color: #171a1d
}

.btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show>.btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5)
}

.btn-secondary {
  color: #fff;
  background: #6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x;
  border-color: #6c757d
}
.btn-secondary:hover {
  color: #fff;
  background: #5a6268 linear-gradient(180deg, #73797f, #5a6268) repeat-x;
  border-color: #545b62
}
.btn-secondary.focus, .btn-secondary:focus {
  color: #fff;
  background: #5a6268 linear-gradient(180deg, #73797f, #5a6268) repeat-x;
  border-color: #545b62;
  box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5)
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
  background-image: none
}
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  background-image: none;
  border-color: #4e555b
}
.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5)
}