/* ページ全体のバランス */
.container-fluid {
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}

.main-contents {
    width: calc(100vw - 300px);
    height: 100%;
    margin-left: 350px;
    padding-right: 80px;
    padding-top: 40px;
}

/*ログイン*/
.login-body {
    margin-left: auto;
    margin-right: auto;
    width: 700px;
    text-align: center;
    padding-top: 20px;
}

/* サイドメニュー */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    background-color: #3CB371;
    color: #FFFFFF;
    font-size: 24px;
}

    .side-menu .main-menu {
        padding-top: 40px;
    }

    .side-menu .logout-menu {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .side-menu li {
        margin-bottom: 10px;
        list-style-type: none;
    }

    .side-menu ul {
        height:50%;
    }

    .side-menu .icon {
        display: inline-block;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        vertical-align: middle;
        width: 1em;
        height: 1em;
    }

    .side-menu .memu-lv1 {
        font-weight: bold;
        padding: 10px;
        border-radius: 10px;
        display: inline-block;
    }

    .side-menu .memu-lv2 {
        display: inline-block;
        margin-left: 10px;
        padding: 10px;
        border-radius: 10px;
    }

    .side-menu a:link,
    .side-menu a:visited {
        color: #FFFFFF;
        text-decoration: none;
    }

    .side-menu .menu-link:hover {
        background-color: #FFFFFF;
        color: #3CB371;
        cursor: pointer;
    }

        .side-menu .menu-link:hover a {
            color: #3CB371;
        }

/* ダイアログ */
.dialog {
    background-color: #FFFFFF;
    z-index: 99;
    width: 700px;
    height: 500px;
    vertical-align: middle;
    border-radius: 10px;
    border: solid 6px #3CB371;
}

    .dialog .dialog-title {
        text-align: center;
        padding: 10px;
        font-size: 25px;
        font-weight: bold;
        color: #FFFFFF;
        background-color: #3CB371;
    }

    .dialog .dialog-contents {
        padding: 60px;
    }

.dialog-contents .padding-zero {
    padding-bottom: 0px;
}

/* モーダル用のダイアログ */
.modal {
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translate(-50%,-40%);
}

.dialog-large {
    width: 1080px;
    height: 700px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #808080;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 98;
}

.dialog-table tr td {
    font-size: 22px;
    vertical-align: middle;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 30px;
}

/* 検索エリア */
.main-contents .search-area {
    margin-bottom: 30px;
    padding: 20px;
    border: solid #3CB371 5px;
    background-color: #E2EFDA;
    border-radius: 10px;
    font-size: 18px;
    text-align: left;
}

/*ファイルアップロードダウンロードエリア*/
.main-contents .main-title {
    padding-top: 10px;
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: bold;
    border-bottom: solid 5px #3CB371;
}

.main-contents .file-table {
    margin-bottom: 10px;
}

    .main-contents .file-table tr {
        font-size: 22px;
        height: 45px;
    }

.main-contents .table-title {
    text-align: center;
    font-size: 20px;
    width: 12%;
}

.main-contents .upload, .main-contents .download {
    width: 100%;
    text-align: right;
    vertical-align: middle;
}

.main-contents .select {
    height: 40px;
    width: 200px;
    border-radius: 10px;
    outline: none;
    font-size: 22px;
}

.main-contents input[type="date"] {
    height: 40px;
    width: 200px;
    border-radius: 10px;
    outline: none;
    font-size: 22px;
}

.main-contents .select-button {
    width: 10%;
}

.main-contents .txt-file-path {
    height: 40px;
    font-size: 18px;
    color: #000000;
    padding-left: 10px;
}

.main-contents .cancel {
    width: 20%;
    text-align: right;
}

.main-contents .text-box {
    width: 38%;
}

/*テーブルエリア*/
.table-area-small {
    width: 100%;
    margin-bottom: 50px;
    height: 290px;
    max-height: 290px;
    overflow: auto;
}

/*テーブルレイアウト*/
/*データ用テーブルレイアウト*/
.data-area {
    margin-bottom: 50px;
}

    .data-area .data-table {
        padding: 20px;
        border-collapse: collapse;
    }

.data-table th {
    height: 40px;
    border: solid 1px #ffffff;
    background-color: #3cb371;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}

.data-table td {
    border: 1px solid #3CB371;
    font-size: 16px;
    padding: 10px;
}

.data-table .day {
    width: 2%;
    border-left: dotted 1.5px #3CB371;
}

/*文字位置・装飾定義*/
.text-top {
    vertical-align: top;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: bold;
}

.float-right {
    float: right;
}

.data-table .saturday {
    color: #1E90FF;
}

.data-table .sunday {
    color: #DC143C;
}

.text-alert {
    color: #DC143C;
}

/*/* コントロール定義 */
/* テキスト系 */
.input-text {
    height: 40px;
    width: 100%;
}

input,
select,
textarea {
    max-width: none;
}

.text-multiline {
    height:300px;
    width: 650px;
    resize:none;
}

.check, .radio-button {
    width: 16px;
    height: 16px;
    -moz-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

/*ボタン系*/
.btn {
    margin-top: 5px;
    margin-bottom: 5px;
    vertical-align: middle;
    font-weight: bold;
    border-radius: 10px;
    outline: none;
    border: 0;
    color: #FFFFFF;
    cursor: pointer;
}

.btn-xs {
    width:80px;
    height:30px;
}

.btn-lg {
    width:150px;
    height:44px;
}

    .btn:hover {
        opacity: 0.6;
        color: #FFFFFF;
    }

    .btn:focus,
    .btn:active {
        outline: none;
        color: #FFFFFF;
    }

    .btn .cancel {
        margin-right: 100px;
    }

.btn-sq {
    font-size: 17px;
    line-height: 1.3333333;
    height: 44px;
    width: 44px;
    padding: 6px 6px;
}

.green {
    background-color: #3CB371;
}

.red {
    background-color: #DC143C;
}

.blue {
    background-color: #1E90FF;
}

.gray {
    background-color: #808080;
}


/* ウィンドウ縮小対応 */
@media (max-width:1380px) {
    .side-menu {
        width: 240px;
        background-color: #3CB371;
        font-size: 18px;
    }

    .main-contents {
        width: calc(100vw - 240px);
        margin-left: 270px;
        padding-right: 40px;
        height: 100%;
    }

        .main-contents .table-title {
            font-size: 17px;
        }
}

@media (max-height:730px) {
    .side-menu ul {
        height:auto;
    }
}
