/* header */
header {
    position: fixed; /* ヘッダー固定 */
    z-index: 999;
    width: 100%;
    background-color: rgb(170,221,221);
    color: #333F50; /* 文字色を紺色に（画面レイアウトに合わせるため） */
}

#system-title{
    font-size: 30px;
}

.system-user-info {
    font-size: 25px;
}

.jumbotron {
    min-height: 100vh;/* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
    position: relative;/* ←相対位置 */
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}

/* sidebar */
.offcanvas {
    border: none;
    z-index: 100;
}

.sidebar-body {
    background-color: rgb(221,241,241,0.9);
}

.sidebar-body a {
    color: #767171;
}

/* 現在、開いているタイトルに色を付けるクラス */
.sidebar-active a {
    color: #0a58ca;
}

.sidebar-body li {
    width: 100%;
    border-bottom: solid 3px #fff;
}

.material-symbols-rounded {
    color: pointer;
}

.offcanvas-backdrop {
    z-index: 99;
}

/* ハンバーガーメニュー */
.open-btn1 {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: relative;
    color: #212529;
    cursor: pointer;
    width: 50px;
    height: 50px;

}

/*ボタン内側*/
.open-btn1 span{
    display: inline-block;
    transition: all .1s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #212529;
    width: 45%;
  }

.open-btn1 span:nth-of-type(1) {
    top: 15px;
}

.open-btn1 span:nth-of-type(2) {
    top: 23px;
}

.open-btn1 span:nth-of-type(3) {
    top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
.open-btn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.open-btn1.active span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
}

.open-btn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* body */
.container {
    width: 100%;
    padding-top: 80px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 150px;
    margin-right: auto;
    margin-left: auto;
    color: #333F50; /* 文字色を紺色に（画面レイアウトに合わせるため） */
}

/* 必須サイン */
.required-sign {
    font-size: .8rem;
    color: #ff0000;
    line-height: 2;
}

/* エラーメッセージ */
.error {
    font-size: 14px;
    font-weight: bold;
    color: #ff0000;
}

/* 差異 */
.discrepancy {
    color: #E60000;
}

/*------- 下記 btnクラス -------*/
/* ボタンで共通しているレイアウト */
.btn {
    color: #6c757d;
    border-color: #A6A6A6;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
}

.btn:hover {
    color: #212529;
}

/* 検索ボタン */
.search-btn {
    background-color: #d4eeee;
    font-size: 1.25rem;
    padding:0;
    width:140px;
    height:40px;
}

.search-btn:hover {
    background-color: #afeeee;
}

.search-btn:focus {
    box-shadow: 0 0 0 0.25rem #d4eeee;
}

/* リセット・戻るボタン */
.reset-btn {
    background-color: #fff;
    font-size: 1.25rem;
    width:140px;
    height:40px
}

.reset-btn:hover {
    color: #fff;
    background-color: #D9D9D9;
}

.reset-btn:focus {
    box-shadow: 0 0 0 0.25rem #A6A6A6;
}

.complete-reset-btn {
    background-color: #fff;
    font-size: 1.25rem;
    width:50%;
    height:40px
}

.complete-reset-btn:hover {
    color: #fff;
    background-color: #D9D9D9;
}

.complete-reset-btn:focus {
    box-shadow: 0 0 0 0.25rem #A6A6A6;
}

/* 表示・一覧ボタン */
.show-btn {
    background-color: #FFF2CC;
    font-size: 1.25rem;
    height:40px
}

.show-btn:hover {
    background-color: #FFD966;
}

.show-btn:focus {
    box-shadow: 0 0 0 0.25rem #FFF2CC;
}

/* 登録・編集・更新・確認 ボタン*/
.complete-btn {
    background-color: #e2f0d9;
    font-size: 1.25rem;
    width: 152px;
    height: 40px;
}

.complete-btn:hover,
#add-row-button:hover {
    background-color: #A7D676;
}

.complete-btn:focus,
#add-row-button:focus {
    box-shadow: 0 0 0 0.25rem #e2f0d9;
}

/* プロジェクト、アサイン追加ボタン */
#add-row-button {
    background-color: #e2f0d9;
    font-size: 1rem;
    width:75px;
    height:28.5px;
}

/* 削除 */
.delete-btn {
    background-color: #FBE5D6;
    font-size: 1.25rem;
    width:50%;
    height:40px;
}

.delete-btn:hover {
    background-color: #F4B183;
}

.delete-btn:focus {
    box-shadow: 0 0 0 0.25rem #FBE5D6;
}

/* PDF・CSV出力ボタン */
.output-btn {
    background-color: #FCE2B1;
    font-size: 1.25rem;
    height:40px
}

.output-btn:hover {
    background-color: #FCBF4C;
}

.output-btn:focus {
    box-shadow: 0 0 0 0.25rem #FCE2B1;
}
/*------- 上記 btnクラス -------*/

/*------- 下記 iconクラス -------*/

/* 鉛筆・＋・更新*/
.complete-icon {
    color: #00CC2C;
}

/* 確認 */
.check-icon {
    color: #00CC2C;
    font-size: 1.4rem !important;
}

/* 表示プロジェクト変更 */
.show-icon {
    color: #7F6000;
}

/* 削除・行削除 */
.delete-icon {
    color: #C00000;
}

/* PDF・CSV出力 */
.output-icon {
    color: #D95621;
}
/* カレンダー */
.calendar-icon {
    color: #A6A6A6;
}

/* 前月へ・次月へボタン */
.month-change-btn {
    font-size: 1.25rem;
    width: 120px;
    height: 40px;
}

.month-change-btn:hover {
    color: #5cd6d4;
    font-weight: bold;
}

.month-change-btn:focus {
    box-shadow: 0 0 0 0.15rem #aadddd;
}

.arrow-icon {
    color: #5cd6d4;
}

/* 戻る・リセットアイコン */
.reset-icon {
    color: #6c757d;
}
/*------- 上記 iconクラス -------*/

/*------- 下記 検索ボックスクラス -------*/

.input-form-size{
height:40px;
}

.input-form-size:focus{
box-shadow: 0 0 0 0.25rem #d4eeee !important;
}

.check-form-text{
font-size:1.5rem;
}

/*------- 上記 検索ボックスクラス -------*/

/*------- 下記 共通レイアウト・背景色 -------*/

/*土曜行を塗りつぶし*/
.saturday {
    background-color: #DEEBF7 !important;
}
/*日曜行を塗りつぶし*/
.sunday {
    background-color: #FBE5D6 !important;
}

/*------- 上記 共通レイアウト・背景色 -------*/

/* footer */
footer {
    position: absolute;
    bottom: 0;
    background-color: rgb(170,221,221);
    z-index: 999;
}

/*tabulator*/
.tabulator .tabulator-header .tabulator-col {
    background-color:#d4eeee !important;
}

.tabulator .tabulator-footer {
    background-color:#d4eeee !important;
    border-top: none;
}

/* Tabulator 偶数行への色付け */
.tabulator-row.tabulator-row-even {
    background-color: rgba(221,241,241,0.2) !important;
}

.tabulator-row.tabulator-row-even:hover {
    background-color: rgba(173, 181, 189,0.2) !important;
}

.role-change-button{
    left: 70%;
}

.curtain{
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
}