@charset "UTF-8";

/* ステータス */
.status {
    width: 135px;
    color: #FFF;
    border-radius: 2px;
    padding: 3px 10px;
    text-align: center;
}

/* ヘッダー */
.header {
    color: #403E43;
    font-size: 23px;
    font-weight: bold;
    background: #Faab00;
    padding: 10px;
    border-bottom: solid 10px #403E43;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    z-index: 1000;
}

.set-icon {
    width: 30px;
    cursor: pointer;
    margin-right: 15px;
}

.header-icon {
    display: flex;
    align-items: center;
}

.user-name {
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    font-weight: normal;
    margin-right: 15px;
}

/* サイドナビ */
.main-side {
    display: flex;
}

.side-navi {
    width: 74px;
    background: #EFEFEF;
    height: 100%;
    min-height: 800px;
    position: fixed;
    margin-top: 66px;
}

.side-navi ul {
    padding: 20px 10px;
}

.side-navi li {
    margin-bottom: 20px;
    text-align: center;
}

.side-navi p {
    font-size: 10px;
    margin-top: 5px;
}

.side-navi li img {
    width: 30px;
}

/* メインコンテンツ */
.main-content {
    width: calc(100% - 74px);
    padding: 30px 20px;
    min-height: 600px;
    margin-top: 66px;
    margin-left: 74px;
}

.task {
    margin-bottom: 20px;
}

.task-list {
    background: #EFEFEF;
    height: 300px;
    overflow: scroll;
    overflow-x: hidden;
}

.task-list::-webkit-scrollbar {
    border: solid 1px #EFEFEF;
    background-color: #fff;
    width: 10px;
}

.task-list::-webkit-scrollbar-thumb {
    background-color: #606060;
    border-radius: 15px;
}

.task-list li a {
    background: #fff;
    padding: 15px;
    margin: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 0px 0 rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 10%);
    border: solid 1px #EEECE8;
}

.task-list-status {
    margin-right: 20px;
}

.task-list p {
    margin-right: 20px;
}

@media screen and (max-width: 700px) {

    /* 700px以下に適用されるCSS（スマホ用） */


    .user-data {
        margin-bottom: 20px;
        background: #f5f5f5;
        padding: 10px;
    }

    .main-side {
        flex-direction: column-reverse;
    }

    .task-list {
        background: #fff;
        padding: 10px;
        margin: 10px 0;
        box-shadow: 0 0 0px 0 rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 10%);
        border: solid 1px #EEECE8;
        border-radius: 4px;
        overflow: scroll;
        overflow-y: hidden;
        height: 180px;
    }

    .task-list::-webkit-scrollbar {
        height: 10px;
    }

    .task-list-status {
        margin-right: 0;
        margin-bottom: 10px;
    }


    .task-list ul {
        display: flex;
    }

    .task-list li a {
        display: block;
        margin: 5px;
    }

    .task-list p {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .side-navi {
        width: 100%;
        background: #EFEFEF;
        min-height: auto;
        position: fixed;
        margin-top: 0;
        height: 75px;
        bottom: 0;
        z-index: 1000;
    }

    .main-content {
        width: 100%;
        padding: 20px 15px 125px;
        min-height: unset;
        margin-left: 0;
        position: relative;
    }

    .side-navi ul {
        padding: 15px;
        display: flex;
        justify-content: space-around;
        align-items: center;

    }

    .side-navi li {
        margin-bottom: 0;
    }

}