@import url(bootstrap/bootstrap.min.css);

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.material-icons-light {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    color: #f0f8ff;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

body {
    overflow-x: hidden;
}

#sidebar {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    #sidebar.toggled {
        padding-left: 250px;
    }

.nav-over-lay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 101;
}

.nav-over-lay-none {
    display: none;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: #f0f8ff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    #sidebar-wrapper > #sidebar-footer {
        background: #969696;
        margin-bottom: 0;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

#sidebar.toggled #sidebar-wrapper {
    width: 250px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px;
}

#sidebar.toggled #page-content-wrapper {
    position: absolute;
    margin-left: 0px;
}
/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-nav li {
        text-indent: 20px;
        line-height: 40px;
    }

        .sidebar-nav li a {
            display: block;
            text-decoration: none;
            color: #696969;
            cursor: pointer;
        }

            .sidebar-nav li a:hover {
                text-decoration: none;
                color: #808080;
                background: rgba(255, 255, 255, 0.2);
            }

            .sidebar-nav li a:active, .sidebar-nav li a:focus {
                text-decoration: none;
            }


.card {
    margin: 10px;
    background: #f0f8ff;
    min-width: 60rem;
}

.btn-nav {
    color: #f0f8ff;
}

.login-logo {
    height: 5rem;
}

.wk-n {
    -webkit-user-select: none; /* Chrome, Safari, and Opera */
    -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}

/**
    日報作成画面（Report.razor）用
*/
.report-button-list {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
}

.report-button-list__item {
    margin-left: 10px;
}

.report-bottom_button {
    margin-left: 10px;
    max-width: 8rem;
}

.report-group {
    margin-bottom: 2rem;
}

.report-group__title {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    font-weight: bold;
    line-height: 1.2;
}

.report-list {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .3rem;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.report-list__item {
    display: flex;
    padding: .3rem;
}

/*.report-list__item:not(:last-child) {
        border-bottom: 1px solid rgba(0,0,0,.125);
    }*/

.report-list__name-list {
    padding: 0;
    margin-left: .3rem;
    border: solid 1px rgba(0,0,0,.125);
}

.report-list__description {
    flex: 1;
    border-top: solid 1px rgba(0,0,0,.125);
    border-bottom: solid 1px rgba(0,0,0,.125);
    border-right: solid 1px rgba(0,0,0,.125);
    padding: 1px 8px;
}

.report-list__button {
    margin-left: .3rem;
}


.report-list__name-list__item {
    display: flex;
}

.report-list__name-list__item-code {
    width: 5em;
    border-right: solid 1px rgba(0,0,0,.125);
    padding: 1px 8px;
    min-height: 2.5rem;
}

/* 日報作成 得意先名, 現場名欄 */
.report-list__name-list__item-name {
    width: 15em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-right: solid 1px rgba(0,0,0,.125);
    padding: 1px 8px;
}

@media screen and (max-width:1024px) {
    .report-list {
        font-size: .8rem;
    }

    .report-button-list .material-icons {
        font-size: .8rem;
    }

    .report-button-list .btn {
        font-size: .8rem;
    }

    .report-group .material-icons {
        font-size: .8rem;
    }

    .report-group .btn {
        font-size: .8rem;
    }
}

/* 画面の大きさが1200px以上の場合 */
@media screen and (min-width:1200px) {
    .report-list {
        font-size: 1rem;
    }

    .report-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 350px;
        max-width: 75%;
        min-width: 40rem;
    }

    .report-modal-wrapper-position .blazored-modal-wrapper {
        position: absolute;
        top: 0.5rem;
        left: 350px;
        max-width: 75%;
        min-width: 40rem;
    }

    .report-modal-width {
        max-width: 50rem;
        min-width: 50rem;
    }

    .search-Modal-position {
        position: absolute;
        top: 0.5rem;
        left: 40rem;
    }

    .daily-report-viewer-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 30%;
        width: 30rem;
    }

    .confirm-approve-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 30%;
    }

    .action-plan-inquiry-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 2%;
        max-width: 95%;
        min-width: 95%;
    }

    .cdrm-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 600px;
    }

    .cdrm-modal-b {
        max-width: 45rem;
        min-width: 45rem;
    }


    .cdrmm-t {
        max-width: 40rem;
        min-width: 40rem;
        margin-left: 2rem;
    }

    .cdrmm-t th, .cdrmm-t td {
        padding: 0.15rem;
    }

    .border-s {
        border: solid 1px rgba(0,0,0,.125);
    }

    .message-modal-position {
        position: absolute;
        left: 52rem;
    }

    .daylireportsearch-criteria-witdh {
        max-width: 75%;
        min-width: 75%;
    }
}

/* 画面の大きさが1024px以下の場合 */
@media screen and (max-width:1199.98px) {
    .report-list {
        font-size: 1rem;
    }

    .report-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 4rem;
    }

    .report-modal-wrapper-position .blazored-modal-wrapper {
        position: absolute;
        top: 0.5rem;
        left: 4rem;
    }

    .report-modal-width {
        max-width: 45rem;
        min-width: 45rem;
    }

    .search-Modal-position {
        position: absolute;
        top: 0.5rem;
        left: 15rem;
    }

    .daily-report-viewer-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 12%;
    }

    .confirm-approve-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 12%;
    }

    .action-plan-inquiry-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 2%;
        max-width: 95%;
        min-width: 95%;
    }

    .cdrm-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 4rem;
        width: 45rem;
    }

    .cdrmm-t {
        max-width: 40rem;
        min-width: 38rem;
        margin: 2rem;
    }

        .cdrmm-t th, .cdrmm-t td {
            padding: 0.15rem;
        }

    .border-s {
        border: solid 1px rgba(0,0,0,.125);
    }

    .message-modal-position {
        position: absolute;
        left: 19rem;
    }

    .daylireportsearch-criteria-witdh {
        max-width: 95%;
        min-width: 95%;
    }
}

/* 画面の大きさが768px以下の場合 */
@media (max-width:768px) {
    .report-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 15rem;
    }

    .report-modal-wrapper-position .blazored-modal-wrapper {
        position: absolute;
        top: 0.5rem;
        left: 15rem;
    }

    .search-Modal-position {
        position: absolute;
        top: 0.5rem;
        left: 15rem;
    }

    .daily-report-viewer-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 20%;
    }

    .confirm-approve-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 20%;
    }

    .action-plan-inquiry-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 10%;
    }

    .cdrm-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 10%;
        width: 40rem !important;
    }

    .daylireportsearch-criteria-witdh {
        max-width: 100%;
        min-width: 100%;
    }

}

/* 画面の大きさが767.98px以上の場合 */
@media (max-width:767.98px) {
    .report-modal-position {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
    }

    .report-modal-wrapper-position .blazored-modal-wrapper {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
    }

    .search-Modal-position {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
    }

    .fetch-daily-card {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

}

/* 画面の大きさが991.98px以上の場合 */
@media (max-width:991.98px) {

    .search-Modal-position {
        position: absolute;
        top: 0.5rem;
        left: 15rem;
    }
}

.search {
    cursor: pointer;
}

.report-input {
    width: 5rem !important;
}

.report-input-code {
    width: 5rem !important;
}

.report-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 0.5rem;
    z-index: 102;
    box-shadow: 0 2px 2px rgba(0,0,0,.75);
}

.create-table > table {
    border: solid 1px rgba(0,0,0,.125);
    table-layout: fixed;
}

.create-table th, .create-table td {
    border-left: solid 1px rgba(0,0,0,.125);
    border-right: solid 1px rgba(0,0,0,.125);
}

.create-table-Cd {
    min-width: 5em;
    min-height: 2.5rem;
    border-left: solid 1px rgba(0,0,0,.125);
    border-right: solid 1px rgba(0,0,0,.125);
}

.create-table-Name {
    min-width: 10rem;
    max-width: 10rem;
    border-left: solid 1px rgba(0,0,0,.125);
    border-right: solid 1px rgba(0,0,0,.125);
}

.create-table-Overview {
    flex: 1;
    width: 100%;
    vertical-align: text-top !important;
    border-left: solid 1px rgba(0,0,0,.125);
    border-right: none !important;
    white-space: pre-wrap;
    white-space: pre-line;
}

.create-table-overview-comment {
    width: 100%;
    word-break: break-word;
    border-right: none !important;
}

.create-table-overview-comment-icon-wrapper {
    border-top: solid 1px rgba(0,0,0,.125);
    border-left: none !important;
}

.create-table-overview-comment-icon {
    vertical-align: middle;
}

.create-table-button {
    min-width: 6em;
    border-left: solid 1px rgba(0,0,0,.125);
    border-right: solid 1px rgba(0,0,0,.125);
}

.create-br-b {
    border-bottom: solid 1px rgba(0,0,0,.125);
}

/* SortableJS の並び替え可能行（1データ=1tbody）にマウスホバーした時の3D浮き上がり効果。
   tbody内の2つのtrを「1ブロック」として浮き上がらせるため、
   transformは両trに同量当て、影は最後のtrだけに下方向に落とす。 */
tbody.sortable-item tr {
    will-change: transform;
    transition: transform 200ms, box-shadow 200ms;
    user-select: none;
    cursor: grab;
}

tbody.sortable-item:hover tr {
    transform: translateY(-6px);
}

/* 下端の tr にだけ下方向の影を当て、tbody全体が1ブロックとして浮いているように見せる */
tbody.sortable-item:hover tr:last-child {
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;
}

/* SortableJS がドラッグ中の tbody に付与するクラス。掴んでる感を出す。 */
tbody.sortable-item.sortable-chosen tr {
    cursor: grabbing;
}

.btn-add {
    display: block !important;
    float: right;
}

.search-Modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 0.5rem;
    z-index: 102;
    box-shadow: 0 2px 2px rgba(0,0,0,.75);
}

.searchModal-width {
    max-width: 50rem;
    max-height: 50rem;
    overflow: scroll;
}

.search-site-code {
    min-width: 4rem;
    text-align: right;
}

.search-customer-code {
    min-width: 6rem;
    text-align: right;
}

.search-input {
    width: 25rem;
    ime-mode: active;
}

/* 週間計画作成（WeeklyPlan.razor）用 */
.weekly-body {
    padding: 15px;
    margin: 5px;
    border-radius: 3px;
    border: 1px solid #dee2e6;
}

.weekly-header {
    width: 100%;
    margin-bottom: 10px;
}

.weekly-header__name {
    text-align: right;
    font-size: 1.25rem;
    margin-bottom: .5rem;
    font-weight: 500;
    padding-top: 8px;
    line-height: 1.2;
}

.weekly-header__navigate {
    text-align: right;
    font-size: 1.25rem;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.weekly-header__more {
    margin-left: auto;
    text-align: right;
}

.weekly-header__button {
    display: inline-flex;
    margin-left: 5px;
}

.weekly-header__more-valign-top {
    vertical-align: top;
}

@media screen and (max-width:1024px) {
    .weekly-header {
    }

    .weekly-header__name {
        text-align: center;
    }

    .weekly-header__navigate {
        text-align: center;
    }

    .weekly-header__more {
        text-align: center;
    }
}

@media screen and (min-width:1024px) {
    .weekly-header {
        display: flex;
    }

    .weekly-header__navigate {
        margin-left: 10px;
    }

    .fetch-daily-card {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media screen and (max-width:1600px) {
    .width8r {
        min-width: 8rem;
    }
}

.weekly-list {
    width: 100%;
    margin-bottom: 15px;
}

.weekly-list__item {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    border-bottom: 1px dashed #c7c7c7;
}

.weekly-list__label:first-child {
    width: 87px;
    padding: 0 15px;
    font-weight: bold;
    text-align: right;
}

.weekly-list__label:not(:first-child) {
    flex: 1;
    text-align: center;
    font-weight: bold;
    padding: 0 5px;
}

.weekly-list__label-body {
    width: 100%;
    height: 100%;
}

.weekly-list__item-day {
    width: 87px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-right: 1px dashed #c7c7c7;
}

.weekly-list__item-data {
    flex: 1;
    padding: 5px 5px;
    border-right: 1px dashed #c7c7c7;
}

.weekly-plan {
    min-height: 50px;
    height: 100%;
    cursor: pointer;
    padding: 5px 15px;
    border: 1px solid #000000;
    border-radius: 3px;
}

    .weekly-plan:hover {
        background-color: #000000;
        color: #FFFFFF;
    }

.weekly-plan__add-icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weekly-memo {
    padding-left: 87px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.weekly-memo__item {
    flex-grow: 1;
    padding: 5px 0;
    margin: 5px;
}

.weekly-memo__heading {
    width: 100%;
    text-align: center;
    font-weight: bold;
    margin: 0 0 5px 0;
    padding: 5px;
    background-color: #808080;
    color: #FFFFFF;
}

.weekly-memo__body {
    width: 100%;
}

.weekly-memo__textarea {
    width: 100%;
}

.weekly-plan__body {
    word-break: break-all;
}

/* 日報一覧（FetchDailyReport.razor）用 */
.fetch-daily-card-inner {
    background: #e6e6e6 !important;
}

.fetch-daily-card-inner-draft {
    background: #ffc107 !important;
}

.min-wid-15 {
    min-width: 15rem;
}

.pager-bottom {
    position: absolute !important;
    bottom: 0;
}

.min-h3rem {
    min-height: 3rem;
}

.ml-4_5r {
    margin-left: 4.5rem;
}

.overview-l-s {
    letter-spacing: 0.2em;
    padding-right: 3.5em !important;
}

.width10r {
    min-width: 10rem;
    min-height: 2rem;
}

.width6r {
    width: 6rem;
    min-height: 2rem;
}

.width35r {
    width: 35rem !important;
    min-height: 2rem;
}

.width40r {
    width: 40rem;
    min-height: 2rem;
}

.width4r {
    width: 4rem;
    min-height: 2rem;
}

.width5r {
    width: 5rem;
    min-height: 2rem;
}

.width8r {
    width: 8rem;
}

.width30r {
    width: 30rem;
    min-height: 2rem;
}

.ActionPlan-t {
    width: 100%;
}

    .ActionPlan-t table {
        width: 100%;
        height: 100%;
        overflow: scroll;
        table-layout: fixed;
    }

    .ActionPlan-t th {
        font-weight: bold;
        text-align: center;
        border-bottom: 1px dashed #c7c7c7;
    }

    .ActionPlan-t td {
        border-bottom: 1px dashed #c7c7c7;
        border-right: 1px dashed #c7c7c7;
        height: 100%;
    }

        .ActionPlan-t td:last-child {
            border-bottom: 1px dashed #c7c7c7;
            border-right: none;
        }

        .ActionPlan-t td > div {
            margin: 0.25rem;
            padding: 5px 15px;
            border: 1px solid #000000;
            border-radius: 3px;
            height: 95%;
            width: 95%;
        }

/* 日報照会用 */
.inquiry-header {
    font-size: 1.25rem;
    margin: 10px;
    display: grid;
    grid-template-columns: max-content auto;
    grid-template-rows: auto;
}

.inquiry-header__title {
    grid-column: span 2;
}

.inquiry-header__name {
    padding: .5rem 4rem .5rem 0;
}

.inquiry-header__date {
    padding: .5rem 0;
}

.inquiry-header__date-label {
    padding-right: 1em;
}

.inquiry-header__date-value {
}

.inquiry-header__more {
    grid-column: 3;
    text-align: right;
    margin-left: auto;
    text-align: right;
}

.inquiry-header__button {
    display: inline-flex;
    margin-left: 5px;
}



.inquiry-list {
    list-style: none;
    margin: 0 0 3rem 0;
    padding: 0;
}

.inquiry-list__item {
    margin-bottom: 1.5rem;
}


.inquiry-black {
    margin: 0;
    display: flex;
    border-top: solid 1px rgba(0,0,0,.125);
    border-left: solid 1px rgba(0,0,0,.125);
    border-right: solid 1px rgba(0,0,0,.125);
}

.inquiry-black__label {
    width: 6em;
    padding: .75em;
    font-weight: bold;
    margin: 0;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.inquiry-black__code {
    padding: .75em;
    width: 6em;
    border-left: solid 1px rgba(0,0,0,.125);
}

.inquiry-black__data {
    padding: .75em;
    flex: 1;
    border-left: solid 1px rgba(0,0,0,.125);
}

.inquiry-total-comment {
    margin: 10px;
}


.inquiry-table__head-date {
    width: 10em;
}

.inquiry-table__head-name {
    width: 12em;
}

.inquiry-table__head-comment {
}

.inquiry-table__head-approval {
    width: 6em;
}

.ws-wl {
    white-space: pre-wrap;
    white-space: pre-line;
}

.daily-report-viewer-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1.5rem;
    z-index: 102;
    box-shadow: 0 2px 2px rgba(0,0,0,.75);
    min-width: 40rem;
    max-width: 40rem;
}

.confirm-approve-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    border-radius: 4px;
    border: 1px solid #fff;
    z-index: 102;
    box-shadow: 0 2px 2px rgba(0,0,0,.75);
    min-width: 40rem;
    max-width: 40rem;
}

.action-plan-inquiry-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1.5rem;
    z-index: 102;
    box-shadow: 0 2px 2px rgba(0,0,0,.75);
}

.cdrm-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1.5rem;
    z-index: 102;
    box-shadow: 0 2px 2px rgba(0,0,0,.75);
}

.message-modal {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1.5rem;
    z-index: 102;
    box-shadow: 0 2px 2px rgba(0,0,0,.75);
    width: 15rem;
}

.vertical-scroll-table {
    overflow: scroll;
    max-height: 30rem;
    min-height: 30rem;
}

.scroll-table20 {
    overflow: scroll;
    max-height: 20rem;
    min-width: 38rem;
    max-width: 38rem;
}

.height2_5r {
    height: 50px;
}

/* 週間計画照会（Inquityweeklyplan.razor）用 */
.weekly-header-date {
    padding-top: 8px;
}

.weekly-header-date-value {
    margin: 0px 40px;
}

/* ログイン画面（LoginPage.razor）用 */
.form-signin {
    max-width: 330px;
    padding-top: 35px;
    margin: 0 auto;
}

.form-signin-heading {
    margin-bottom: 10px;
    font-size: 1.4rem;
    padding: 15px 0px 10px 0px;
}

/* 接続エラーモーダル用 */
.reconnect-block {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: none;
    overflow: hidden;
    background-color: #fff;
    opacity: 0.8;
    text-align: center;
    font-weight: bold;
}

.inner-block {
    width: 450px;
    height: 250px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
}

/* 正常状態はnoneでcomponents-reconnect-modalを表示しない */
.components-reconnect-hide {
    display: none;
}

/* コネクションロスト(リコネクティング)状態はcomponents-reconnect-modalをdisplay:blockで表示 */
.components-reconnect-show {
    display: block;
}

/* リコネクト タイムアウト状態はcomponents-reconnect-modalをdisplay:blockで表示 */
.components-reconnect-failed {
    display: block;
}

.components-reconnect-show .reconnect-wait {
    display: block;
}

.components-reconnect-failed .reconnect-wait {
    display: none;
}

.components-reconnect-show .reconnect-button {
    display: none;
}

.components-reconnect-failed .reconnect-button {
    display: block;
}

/* 週間計画枠コメントモーダル（CommentWeeklyPlanModal.razor）用 */
.comment-weekly-plan-modal-modal-position .blazored-modal-wrapper {
    margin: 32px auto;
}

/* パラメータエラー画面（ParameterError.razor）用 */
.parameter-error {
    margin: 32px;
}

    .parameter-error .material-icons {
        position: relative;
        top: 6px;
    }

/* トップメニュー画面（Index.razor）用 */
.top-menu-title {
    margin-top: 20px;
    margin-bottom: -10px;
}

/* ナビゲーションメニュー（NavMenu.razor）用 */
.menu-text-btn {
    position: relative;
    top: -3px;
}

.menu-comment-count {
    top: -7px !important;
}

.ui-autocomplete-dd input.ui-corner-all,
.ui-autocomplete-dd .ui-autocomplete-multiple-container.ui-corner-all {
    -moz-border-radius-topright: 0px;
    -webkit-border-top-right-radius: 0px;
    border-top-right-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -webkit-border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.ui-autocomplete-dd .ui-autocomplete-dropdown.ui-corner-all {
    -moz-border-radius-topleft: 0px;
    -webkit-border-top-left-radius: 0px;
    border-top-left-radius: 0px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.ui-helper-clearfix::before,
.ui-helper-clearfix::after {
    content: "";
    display: table;
}

.ui-helper-clearfix::after {
    clear: both;
}

.ui-helper-clearfix {
    zoom: 1;
}

.ui-widget-header .ui-inputtext,
.ui-widget-content .ui-inputtext {
    font-weight: normal;
}

/* Datepicker */
.ui-datepicker {
    width: auto;
    padding: .2em;
    position: absolute;
}

    .ui-datepicker.ui-datepicker-inline {
        display: inline-block;
        position: static;
    }

    .ui-datepicker .ui-datepicker-group {
        border-left-width: 0;
        border-right-width: 0;
        border-top-width: 0;
        border-bottom-width: 0;
    }

    /* Header */
    .ui-datepicker .ui-datepicker-header {
        position: relative;
        padding: .5em 0;
        background: gainsboro;
    }

    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next {
        position: absolute;
        top: .5em;
        width: 1.8em;
        height: 1.8em;
    }

    .ui-datepicker .ui-datepicker-prev {
        left: .125em;
    }

    .ui-datepicker .ui-datepicker-next {
        right: .125em;
    }

        .ui-datepicker .ui-datepicker-prev span,
        .ui-datepicker .ui-datepicker-next span {
            display: block;
            position: absolute;
            left: 50%;
            top: 80%;
            margin-top: -.5em;
            margin-left: -.5em;
        }

    .ui-datepicker .ui-datepicker-title {
        margin: 0 2.3em;
        line-height: 1.8em;
        text-align: center;
    }

        .ui-datepicker .ui-datepicker-title select {
            font-size: 1em;
            margin: .125em 0;
            vertical-align: middle;
        }

    .ui-datepicker select.ui-datepicker-month {
        margin-right: .25em;
    }

    .ui-datepicker span.ui-datepicker-year {
        margin-left: .25em;
    }


.pi-chevron-right.pi {
    color: #000;
    position: absolute;
    margin-left: 2px;
    margin-top: 10px;
    height: 1px;
    background-color: currentColor;
}

    .pi-chevron-right.pi:before {
        content: '';
        position: absolute;
        right: 1px;
        top: -5px;
        width: 10px;
        height: 10px;
        border-top: solid 1px currentColor;
        border-right: solid 1px currentColor;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.pi-chevron-left.pi {
    color: #000;
    position: absolute;
    margin-left: 3px;
    margin-top: 10px;
    height: 1px;
    background-color: currentColor;
}

    .pi-chevron-left.pi:before {
        content: '';
        position: absolute;
        left: 1px;
        top: -5px;
        width: 10px;
        height: 10px;
        border-top: solid 1px currentColor;
        border-right: solid 1px currentColor;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

/* Multiple Month DatePicker */
.ui-datepicker-multiple-month .ui-datepicker-group {
    display: table-cell;
    border-left-width: 0;
    border-top-width: 0;
    border-bottom-width: 0;
    border-right-width: 1px;
}

/* DatePicker Table */
.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
}

.ui-datepicker th {
    padding: .5em;
    text-align: center;
    font-weight: bold;
    border: 0;
}

.ui-datepicker td {
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #FFFFFF;
}

    .ui-datepicker td:hover {
        background: #ebce6d;
    }

    .ui-datepicker td > span,
    .ui-datepicker td > a {
        display: block;
        padding: .5em;
        text-decoration: none;
        border: 0 none;
        text-align: center;
    }

.ui-datepicker .ui-datepicker-buttonbar {
    border-left: 0 none;
    border-right: 0 none;
    border-bottom: 0 none;
    padding: .5em;
}

    .ui-datepicker .ui-datepicker-buttonbar > .ui-g > div:last-child {
        text-align: right;
    }

    .ui-datepicker .ui-datepicker-buttonbar > .ui-g > div {
        padding: 0;
    }

.ui-calendar.ui-calendar-w-btn input {
    -moz-border-radius-topright: 0px;
    -webkit-border-top-right-radius: 0px;
    border-top-right-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -webkit-border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

/* SSOログインリダイレクト画面（RedirectToLogin.razor）用 */
.form-ssoredirect {
    max-width: 400px;
    padding-top: 35px;
    margin: 0 auto;
}

.form-ssoredirect-heading {
    margin-bottom: 10px;
    font-size: 1.4rem;
    padding: 15px 0px 10px 0px;
}

/* browser back button*/
.btn-goback {
    color: #fff !important;
    background-color: #03dac5 !important;
    border-color: #03dac5 !important;
}

    .btn-goback.disabled, .btn-goback:disabled {
        color: #fff;
        background-color: #03dac5;
        border-color: #03dac5;
    }

    /* focusされた時の枠線の色 */
    .btn-goback:focus, .btn-goback.focus,
    .btn-goback:not(:disabled):not(.disabled):active:focus, .btn-goback:not(:disabled):not(.disabled).active:focus,
    .show > .btn-goback.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(123, 255, 248, 0.356);
    }

    /* hover時（マウスカーソルを重ねた時）の色（通常より濃いor暗めの色を指定） */
    .btn-goback:hover {
        color: #fff;
        background-color: #03a595 !important;
        border-color: #03a595 !important;
    }

    /* active時の色（hover時と同等かさらに濃いor暗めの色を指定） */
    .btn-goback:not(:disabled):not(.disabled):active, .btn-goback:not(:disabled):not(.disabled).active,
    .show > .btn-goback.dropdown-toggle {
        color: #fff;
        background-color: #03a595;
        border-color: #03a595;
    }

/* AllReportViewer button*/
.btn-allreportview {
    color: #fff !important;
    background-color: #FF7E27 !important;
    border-color: #FF7E27 !important;
}

    .btn-allreportview.disabled, .btn-allreportview:disabled {
        color: #fff;
        background-color: #FF7E27;
        border-color: #FF7E27;
    }

    /* focusされた時の枠線の色 */
    .btn-allreportview:focus, .btn-allreportview.focus,
    .btn-allreportview:not(:disabled):not(.disabled):active:focus, .btn-allreportview:not(:disabled):not(.disabled).active:focus,
    .show > .btn-allreportview.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 126, 39, 0.356);
    }

    /* hover時（マウスカーソルを重ねた時）の色（通常より濃いor暗めの色を指定） */
    .btn-allreportview:hover {
        color: #fff;
        background-color: #c5601d !important;
        border-color: #c5601d !important;
    }

    /* active時の色（hover時と同等かさらに濃いor暗めの色を指定） */
    .btn-allreportview:not(:disabled):not(.disabled):active, .btn-allreportview:not(:disabled):not(.disabled).active,
    .show > .btn-allreportview.dropdown-toggle {
        color: #fff;
        background-color: #c5601d;
        border-color: #c5601d;
    }

.nav-menu-border {
    border-top: 1px solid #e0e0e0;
}

    /*　スクロールバー(ヘッダ固定) */
    .table_sticky {
        display: block;
        overflow-y: scroll;
        height: calc(100vh/1.6);
        border: 1px solid;
        border-collapse: collapse;
    }

    /*　スクロールバー(ヘッダ固定) */
    .table_sticky thead th {
        position: sticky;
        top: 0;
        z-index: 1;
        background: lightgray;
        border-top: #FFFFFF;
    }

/* Index 日報検索ボタン*/
.btn-searchreport {
    color: #fff !important;
    background-color: #FF0000 !important;
    border-color: #FF0000 !important;
}

    .btn-searchreport.disabled, .btn-searchreport:disabled {
        color: #fff;
        background-color: #FF0000;
        border-color: #FF0000;
    }

    /* focusされた時の枠線の色 */
    .btn-searchreport:focus, .btn-searchreport.focus,
    .btn-searchreport:not(:disabled):not(.disabled):active:focus, .btn-searchreport:not(:disabled):not(.disabled).active:focus,
    .show > .btn-searchreport.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.2rem rgba(220,20,60,1);
    }

    /* hover時（マウスカーソルを重ねた時）の色（通常より濃いor暗めの色を指定） */
    .btn-searchreport:hover {
        color: #fff;
        background-color: #dc143c !important;
        border-color: #dc143c !important;
    }

    /* active時の色（hover時と同等かさらに濃いor暗めの色を指定） */
    .btn-searchreport:not(:disabled):not(.disabled):active, .btn-searchreport:not(:disabled):not(.disabled).active,
    .show > .btn-searchreport.dropdown-toggle {
        color: #fff;
        background-color: #dc143c;
        border-color: #dc143c;
    }

/**
    日報検索画面（SearchDailyReport.razor）用
*/

.search-daily-report td.width30r {
    min-width: 30rem;
    max-width: 30rem;
}
.search-daily-report td.width6r {
    min-width: 6rem;
    max-width: 6rem;
}

/* 案件追加モーダル 添付ボタン */
.attachmentFileBtn {
    display: inline-block;
    overflow: hidden;
    position: relative;
}
    .attachmentFileBtn input[type="file"] {
        height: 100%;
        left: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }

/* ドラッグ中の見栄え */
.sortable-ghost {
    opacity: 0.4;
    background-color: #e3f2fd;
}

/* ドラッグ中の見栄え */
.sortable-chosen {
    cursor: grabbing;
}

/* ドラッグ中の見栄え */
.sortable-drag {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}