/* ===========================================
画面設定
===========================================*/
/*全体背景色*/
body {
    /*background: #fffbef;*/
    background: #daf7fd;
    overflow-y: scroll;
}

/*loading画面設定*/
#loading {
    background: rgba(0, 0, 0, 0.438);
    z-index: 9999;
}

.modal {
  z-index: 10000; /* loading より大きく */
}


/* ===========================================
Button設定
===========================================*/
.btn-salmonpink {
    --bs-btn-bg: #f38678;
    --bs-btn-hover-bg: #e37264;
}

.btn-blue {
    --bs-btn-bg: #0f7cb3;
    --bs-btn-bg: #0f7cb3;
}

.min-btn-150 {
    min-width: 150px;
}

/* ===========================================
文字設定
===========================================*/
/* 文字色を青に設定 */
.blue-underline {
    color: blue !important;
    text-decoration: underline;
    cursor: pointer;
}

/* ===========================================
アイコン
===========================================*/
/*ログイン画面ロゴ*/
.bi-login {
    width: 90px;
    height: 90px;
}

/*アイコン小サイズ*/
.bi-s {
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    vertical-align: -.325em;
    fill: currentColor;
    pointer-events: none;
}

/*アイコン中サイズ*/
.bi {
    display: inline-block;
    width: 2.0rem;
    height: 2.0rem;
    vertical-align: -.125em;
    fill: currentColor;
    pointer-events: none;
}

/*アイコンヘッダーサイズ*/
.bi-head {
    fill: #282f3a;
    width: 35px;
    height: 35px;
}

/*アイコンホバー時色*/
.nav-link {
    --bs-nav-link-hover-color: #ff8520;
    /*--bs-nav-link-hover-color: #202020;*/
    cursor: pointer;
}

/*アイコンクリック時色*/
.nav-link:focus,
.active_tab {
    color: #fba158;
    /*color: #202020;*/
}

/* ===========================================
ツールチップ
===========================================*/
.tooltip-inner {
    max-width: 100%;
    text-align: left;
}


/* ===========================================
サイドバー設定
===========================================*/
/*背景色*/
.sidebar {
    background: #ffffff;
}

/*位置調整*/
.sidebar-heading {
    font-size: .75rem;
}

/*サイドバーリストクリック時色*/
.active_sidetab {
    background: #edfcff;
    margin-right: -14px;
    margin-left: -50px;
}

.active_sidetab a {
    color: #007bba !important;
}

/*サイドバーの△表示*/
.accordion-button.hidden::after {
    display: none;
}

/*accordion設定*/
.accordion-body {
    padding-right: 0px !important;
}



@media (min-width: 768px) {
    .sidebar {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: fixed;
        width: 250px;
    }

    .main_right {
        width: calc(100%-230px) !important;
        margin-right: auto;
        margin-left: 250px !important;
        display: block;
        overflow: auto;
        /* 必要に応じてスクロールバーを表示 */
    }
}

/* ===========================================
TOPバー設定
===========================================*/
/*背景色*/
.bg-body-tertiary {
    /*background-color: #34496b !important;*/
    background-color: #108ebb !important;
}

.indexnavbar-container {
    /*border-top: 1px dashed #ffd61d;*/
    /*border-bottom: 1px dashed #ffd61d;*/
    border-bottom: 3px solid #ffffff;
}

.navbar-brand {
    /*padding-top: .75rem;
    padding-bottom: .75rem;*/
    background-color: #ffffff00;
}

/*ハンバーガー背景色*/
.navbar-toggler {
    background-color: white;
}

.navbar .form-control {
    padding: .75rem 1rem;
}

/* ===========================================
TOP画面設定
===========================================*/
.rtopnews {
    padding-right: 0px !important;
}

.ltopnews {
    padding-left: 0px !important;
}

.topnews {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

@media (max-width: 992px) {
    .rtopnews {
        padding-left: 0px !important;
    }

    .ltopnews {
        padding-right: 0px !important;
    }
}

/*TOPテーブルお知らせ色*/
.notice-left {
    color: #fff !important;
    background-color: #f38678;
}

.notice-right {
    color: #fff !important;
    background-color: #fba158;
}

/* ===========================================
フォーム設定
===========================================*/
/*フォーム背景色*/
.form-input {
    background-color: #fffbef;
}

/*エラーメッセージ背景色*/
.errbgcolor {
    background-color: #ffcccc;
}

/*エラーメッセージ高さ*/
.errmsg {
    height: 20px;
}

/*必須マーク場所*/
.required {
    position: relative;
}

/*リードオンリー時の色*/
.read-only-color {
    background-color: #f0f0f0;
    border: 1px solid;
}

/*必須マークデザイン*/
.required::after {
    content: "必須";
    background-color: #fba158;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    min-width: 10px;
    padding: 3px 7px;
    margin: 0px 5px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    border-radius: 10px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
}

/*フォームサイズ調整*/
@media (max-width: 768px) {
    .size {
        padding-right: 0px;
        margin-right: -9% !important;
    }
}

@media (max-width: 992px) {
    .rowpddel {
        padding: 0px !important;
        margin-left: 0px !important;
    }
}

/* ===========================================
PDF表示画面設定
===========================================*/
/*PDF表示サイズ*/
.pdfcontents_box {
    height: 30vw;
    width: 910px;
    overflow: scroll;
}

/* ===========================================
テーブル設定
===========================================*/
/*検索バーの長さ設定*/
@media (max-width: 576px) {
    .xs-w-100 {
        width: 100% !important;
    }
}

/*テーブルの文字を非表示*/
.dl-table-xl-p {
    display: none;
}

/*テーブルの文字を表示*/
.dl-table-xl-p-none {
    display: block;
}

/*テーブルの右にだけ線*/
.th-border-right {
    border-right: 2px solid rgb(223, 223, 223) !important;
}

@media (min-width: 1200px) {

    /*xl以上でテーブルの文字を表示*/
    .dl-table-xl-p {
        display: block;
    }

    /*xl以上でテーブルの文字を非表示*/
    .dl-table-xl-p-none {
        display: none;
    }
}


/*テーブルソーター設定*/
.tablesorter-headerUnSorted {
    background-image: url('../image/sort.png');
    background-repeat: no-repeat;
    background-position: center left;
}

.tablesorter-headerAsc {
    background-image: url('../image/sort_up.png');
    background-repeat: no-repeat;
    background-position: center left;
    border-bottom: #000 2px solid;
}

.tablesorter-headerDesc {
    background-image: url('../image/sort_down.png');
    background-repeat: no-repeat;
    background-position: center left;
    border-bottom: #000 2px solid;
}

.sorter-false {
    background-image: none;
}

.tablesorter-header-inner {
    margin-left: 7px;
}

/* ===========================================
モーダル設定
===========================================*/
/*modalの異常動作対策*/
.modal-open {
    overflow: hidden;
    height: 100%;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0 !important;
}

.modal_memo {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
    overflow-x: auto;
}

/* ===========================================
graph横ボックス設定
===========================================*/
.box26 {
    text-align: center;
    position: relative;
    margin: 2em 0;
    padding: 1em 1em;
    border: solid 3px #76bcea;
    border-radius: 8px;
    max-width: 30em;
}

.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #666666;
    font-weight: bold;
}

.box26 p {
    margin: 0;
    padding: 0;
}

/*フォーム背景色*/
.form-graph {
    font-weight: 1000;
    background-color:#fff;
}

#graph_select_div {
    margin-bottom: 15px;
}

/* ===========================================
ファシリティーカタログ選択時
===========================================*/
.active_li_facility {
    background: #fffbef;
    border-radius: 10px;
}