﻿:root {
    --base-color: #F0EBCC;
    --main-color: #5E9CCA;
    --sub-color: #6E85D0;
    --accent-color: #4F44BC;
}

body, html {
    font-family: "Meiryo UI", Arial, Helvetica, sans-serif;
    /*<20210929(溝渕)_文字サイズ変更(16px⇒12px)>*/
    font-size: 12px;
    height: 100%;
}

/*<20211011(小暮)_コメントアウト_START>*/
/*body {
    background-image: linear-gradient(var(--main-color), var(--main-color));
}*/
/*<20211011(小暮)_コメントアウト_END>*/
/*<20211011(小暮)_背景色設定>*/
body {
    background-image: linear-gradient(to bottom, var(--base-color), var(--main-color)50%, var(--sub-color));
    /*<20211012(小暮)_スクロール対応_background-attachment追加>*/
    background-attachment:fixed;
}

.screen-name {
    /*<20211012(小暮)_背景色変更(white⇒none)>*/
    /*background-color: white;*/
    background-color: none;
    width: 25vw;
    /*<20211012(小暮)_font-size変更(1.5rem⇒1.8rem)>*/
    font-size: 1.5rem;
    color: black;
    min-width: 250px;
    /*<20211014(小暮)_font-weight追加>*/
    font-weight:bold;
}

.pagination-area {
    display: flex;
    align-items: center;
    /*<20210930(小暮)_要素追加(min-height)>*/
    min-height:3.5rem;
}

    .pagination-area .pagination {
        margin-bottom:0;
    }


/* Bootstrap のページネーションスタイルを上書き*/
.page-link {
    color: unset;
    background-color: unset;
    border: unset;
    /*<20211013(小暮)_font-size変更(x-large⇒initial)>*/
    /*font-size: x-large;*/
    font-size: initial;
    /*<20211013(小暮)_font-weight削除>*/
    /*font-weight: bold;*/
}

.page-item.active .page-link {
    color: unset;
    background-color: unset;
    border-color: unset;
    text-decoration: underline;
}

.page-link:hover {
    color: unset;
    text-decoration: underline;
    background-color: unset;
    border-color: unset;
}


.page-item.PagedList-ellipses a {
    color: unset;
    background-color: unset;
    border: unset;
    /*<20211013(小暮)_font-size変更(x-large⇒initial)>*/
    /*font-size: x-large;*/
    font-size: initial;
    /*<20211013(小暮)_font-weight削除>*/
    /*font-weight: bold;*/
    line-height: 1.25;
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
}

    .page-item.PagedList-ellipses a:hover {
        color: unset;
        text-decoration: underline;
        background-color: unset;
        border-color: unset;
    }

.validation-summary-errors {
    color: #ff0000;
}

.field-validation-error {
    font-size: 0.9rem;
}

.btn.btn-normal {
    font-weight: 700;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    /*<20211014(小暮)_border-radius変更(30px⇒7px)>*/
    /*border-radius: 30px;*/
    border-radius: 7px;
    /*<20211014(小暮)_borderコメントアウト>*/
    /*border: var(--accent-color) solid 2px;*/
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
    /*<20211014(小暮)_background-imageコメントアウト>*/
    /*background-image: linear-gradient(var(--base-color), var(--base-color));*/
    /*<20211014(小暮)_color変更(black⇒var(--main-color))>*/
    /*color: black;*/
    color: var(--main-color);
    min-width: 7rem;
    /*<20211004(小暮)_max-height追加>*/
    max-height: 2.3rem;
    /*<20211004(小暮)_padding-right,padding-left変更(2rem⇒1.5rem)>*/
    /*<20211004(小暮)_コメントアウト_START>
    padding-right: 2rem;
    padding-left: 2rem;
    <20211004(小暮)_コメントアウト_END>*/
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    /*<20211004(小暮)_line-height追加>*/
    line-height: normal;
    /*<20211014(小暮)_background-color追加>*/
    background-color: whitesmoke;
    /*<20211014(小暮)_border-bottom追加>*/
    border-bottom:3px solid #ddbebe;
}

    /*<20211014(小暮)_ボタン_ホバー時の指定追加>*/
    .btn.btn-normal:hover{
        margin-top:3px;
        margin-bottom:-3px;
        color:var(--main-color);
        background-color:#ffebeb;
        border-bottom:3px solid #cf998e;
    }

    .btn.btn-normal:hover,
    .btn.btn-normal:focus {
        opacity: 0.8;
    }

    .btn.btn-normal:active {
        opacity: 0.5;
    }



.sticky_table thead th {
    /*<20211012(小暮)_背景色変更(#7f7f7f⇒#ddbebe)>*/
    /*background-color: #7f7f7f;*/
    background-color: #ddbebe;
    /*<20211012(小暮)_文字色変更(white⇒#212529)>*/
    /*color: white;*/
    color: #212529;
    /*縦スクロール時に固定する */
    position: -webkit-sticky;
    position: sticky;
    /*高さが変わらないよう改行させない*/
    white-space: nowrap;
    z-index: 1;
}
.sticky_table thead tr:nth-child(1) th {
    top: 0;
    z-index: 2;
}

.sticky_table thead tr:nth-child(2) th {
    top: 1.8rem;
    z-index: 2;
    /* 2行目は1行目の高さの位置に固定する */
}

.sticky_table thead th:first-child {
    z-index: 2;
}



.list-area {
    max-height: 300px;
    overflow: auto;
    margin-bottom: 1.0rem;
    background-color: white;
}
    .list-area table {
        border-collapse: separate;
        border-spacing: unset;
        margin-bottom: 0;
    }

table tbody {
    background-color: #e7e7e7;
}

table tbody.select-row {
    cursor: pointer;
}

table.table-bordered tbody td {
    /*<S(小暮)_データ部の枠線色変更(white⇒lightgray)>*/
    /*border: 1px solid white;*/
    border: 1px solid lightgray;
    vertical-align: middle;
}

table thead.input-sm > tr:first-child th {
    font-size: 0.7rem;
}

table.table-sm tbody td {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

table thead.input-sm input.form-control {
    font-size: 0.7rem;
    padding: 0.3rem;
}

/*<20211012(小暮)_bootstrap上書き追加_tr:nth-of-type(odd)>*/
.table-striped tbody tr:nth-of-type(odd){
    background-color: #f8faff;
}

/*<20211012(小暮)_bootstrap上書き追加_tr:nth-of-type(even)>*/
.table-striped tbody tr:nth-of-type(even) {
    background-color: #e4e5e9;
}

/*<20211012(小暮)_bootstrap上書き追加_.table thead th>*/
.table thead th{
    border-bottom:2px solid whitesmoke;
}

/*<20211012(小暮)_bootstrap上書き追加_.table-bordered th>*/
.table-bordered th {
    border: 1px solid whitesmoke;
}

.input-area {
    /*<20211007(小暮)_コメントアウト_START>*/
    /*border: 2px solid var(--accent-color);*/
    /*<20211007(小暮)_コメントアウト_END>*/
    /*<20211007(小暮)_入力項目の枠色変更(accent-color⇒base-color)>*/
    border: 2px solid var(--base-color);
    border-radius: 10px;
    padding: 1.2rem 0.5rem 0.5rem;
    position: relative;
    /*<20211004(小暮)_padding-right追加>*/
    padding-right: 3rem;
    /*<20211014(小暮)_margin-bottom追加>*/
    margin-bottom:1.0rem;
}

    .input-area .input-area-label {
        position: absolute;
        top: -1rem;
        /*<20211007(小暮)_コメントアウト_START>*/
        /*background: white;*/
        /*<20211007(小暮)_コメントアウト_END>*/
        /*<20211007(小暮)_入力項目の背景色変更(white⇒base-color)>*/
        background: var(--base-color);
        border-radius: 6px;
        /*<20211007(小暮)_コメントアウト_START>*/
        /*border: 2px solid var(--accent-color);*/
        /*<20211007(小暮)_コメントアウト_END>*/
        /*<20211007(小暮)_入力項目の枠色変更(accent-color⇒base-color)>*/
        border: 2px solid var(--base-color);
        padding: 0.25rem 0.75rem;
    }

    .input-area .form-group {
        margin-bottom: 0.3rem;
    }

.input-area .form-group label {
    color: white;
    text-align: right;
}

/* メインメニュー用 */
.menu-area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    /*<20211001(小暮)_コメントアウト_START>
    gap: 2rem;
    <20211001(小暮)_コメントアウト_END>*/
    /*<20211001(小暮)_gap変更(2rem⇒5rem)>*/
    gap: 5rem;
}

a.menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    /*<20211001(小暮)_コメントアウト_START>
    width: calc(60vw/3);
    height: calc(60vw/3);
    <20211001(小暮)_コメントアウト_END>*/
    /*<20211001(小暮)_width,height変更(60vw⇒40vw)>*/
    width: calc(40vw/3);
    height: calc(40vw/3);
    border-radius: 50%;
    /*<20211014(小暮)_background-color変更(var(--base-color)⇒#f7f2d6)>*/
    /*background-color: var(--base-color);*/
    background-color: #f7f2d6;
    text-align: center;
    text-decoration: none;
    color: black;
    /*<20211001(小暮)_コメントアウト_START>
    min-width: 250px;
    min-height: 250px;
    <20211001(小暮)_コメントアウト_END>*/
    /*<20211001(小暮)_min-width,min-height変更(250px⇒210px)>*/
    min-width: 210px;
    min-height: 210px;
    /*<20211014(小暮)_box-shadow追加>*/
    box-shadow: 0 10px 0 #ddbebe;
}

    /*<20211014(小暮)_メニューボタン_ホバー時の指定追加>*/
    a.menu-item:hover {
        transform: translate(0, 5px);
        box-shadow: 0 5px 0 #cf998e;
        background-color: var(--base-color);
    }

    a.menu-item .menu-label {
        /*<20211001(小暮)_コメントアウト_START>
        font-size: 1.2rem;
        <20211001(小暮)_コメントアウト_END>*/
        /*<20211001(小暮)_font-size変更(1.2rem⇒1.25rem)>*/
        font-size: 1.25rem;
        font-weight: bold;
        /*<20210930(小暮)_要素追加(margin-top)>*/
        margin-top: 0.7rem;
    }

.menu-icon {
    padding: 1.2rem;
    border-radius: 50%;
    background: white;
    color: black;
}


/*<20211004(小暮)_クラス追加>*/
.form-control-1{
    font-size:0.7rem;
}

/*<20211004(小暮)_クラス追加>*/
.checkbox-1{
    font-size:0.5rem;
}

/*<20211004(小暮)_クラス追加>*/
.form-control-2{
    margin-top:0.2rem;
}

/*<20211012(小暮)_クラス追加>*/
.w-13 {
    width: 13% !important;
}


/*<20211013(小暮)_クラス追加>*/
.text-gray{
    color:darkslategray!important;
}