/* 背景色 */
body {
    background-color: #e9eced;
}

.container-fluid a {
    color: #37538C;
}
  /* ナビバー */
.navbar {
    padding: 1.2rem 1rem;
    box-shadow: 0 .125rem .3rem rgba(0, 0, 0, .15);
}
.navbar-brand {
    padding-left: 200px;
    background-image: url(images/IHI_Turbo_Logo_white.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 200px auto;
}
@media screen and (max-width: 768px) {
    .navbar-brand {
        padding-left: 0;
        background-image: none;
        background-size: auto;
    }
}

  /* テーマのナビバー色指定を打ち消す */
nav.bg-dark {
    background-color: #00356b !important;
}

  /* ヘッダー画像 */
.main-img {
/*    margin: 0 -1000px -10px;  ※不要となる為コメントアウト by OSWS牧野 */
/*    padding: 0;  ※不要となる為コメントアウト by OSWS牧野  */
    height: 290px;
/*    widows: 100vw;  ※不要となる為コメントアウト by OSWS牧野 */
    background-image: url(images/header3.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100vw auto;
    box-shadow: .125rem .125rem .3rem rgba(0, 0, 0, .15) !important;
}
@media screen and (max-width: 1024px) {
    .main-img {
        background-size: auto 100%;
        height: 260px;
    }
}
@media screen and (max-width: 660px) {
    .main-img {
        height: 160px;
    }
}

  /* メニューとメインコンテナの間に隙間を開ける */
@media screen and (min-width: 768px) {
    .container-fluid > .ccCenterArea {
        padding-top: 10px !important;
    }
}


  /* プラグインの枠 */
.card {
    border-radius: 0;
    border: none;
}
  /* プラグインの枠に影をつける */
.container > .card {
    box-shadow: .125rem .125rem .3rem rgba(0, 0, 0, .15);
}
.col-md-8 > .card {
    box-shadow: .125rem .125rem .3rem rgba(0, 0, 0, .15);
}


.welcome-area .card {
    background-color: #d4dadd;
}
.jumbotron {
    padding: 0.5rem 2rem;
    margin-top: 2rem;
    background-color: #d4dadd;
    border-radius: 0;
}

.btn-primary {
    background-color: #00356b;
    border-color: #00356b;
    border-radius: 0;
}

.btn-primary:focus, .btn-primary:hover, .btn-primary:active {
    background-color: #00559a;
    border-color: #00559a;
}
.btn-success {
    background-color: #00559a;
    border-color: #00559a;
    border-radius: 0;
}
.btn-success:focus, .btn-success:hover, .btn-success:active {
    background-color: #487DAF;
    border-color: #487DAF;
}

  /* 縦リストメニューの装飾 */
.list-group-item.active {
    background-color: #00356b;
    border-color: #00356b;
}

.list-group-item:first-child {
    border-radius: 0;
}
.list-group-item:last-child {
    border-radius: 0;
}
.list-group-item {
    border: none;
    box-shadow: .125rem .125rem .3rem rgba(0, 0, 0, .15);
}

  /* プラグインのヘッダー */
.card-header:first-child {
    border-radius: 0;
}
.card-header {
    color: #fff;
    background-color: #00356b;
}
.card-header a {
    color: #fff;
}

  /* ページ数リンク */
.page-item.active .page-link, .tempus-dominus-widget .date-container-days .page-item.range-end .page-link, .tempus-dominus-widget .date-container-days .page-item.range-in .page-link, .tempus-dominus-widget .date-container-days .page-item.range-start .page-link {
    background-color: #37538C;
    border-color: #37538C;
}

  /* 設定アイコン */
.fa-link, .fa-angle-up, .fa-angle-down, .fa-cog {
    color: #6b8ac9;
}

  /* フォルダ作成、ファイル追加ボタンの間に隙間を開ける */
button.btn.btn-primary:not(:last-child) {
    margin-right: 5px;
}
  /* 移動ボタンに隙間を開ける */
button.btn.btn-secondary.btn-sm.btn-move {
    margin-right: 5px;
}
  /* 削除ボタンに隙間を開ける */
button.btn.btn-danger.btn-sm.btn-delete {
    margin-right: 5px;
}
  /* ダウンロードボタンの色 */
button.btn.btn-primary.btn-sm.btn-download {
    background-color: #00559a;
    border-color: #00559a;
}