/* 最小化できませんでした。最小化されていないコンテンツを返します。
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(16,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(21,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(22,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(23,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(28,23): run-time error CSS1039: Token not allowed after unary operator: '-font-family'
(29,21): run-time error CSS1039: Token not allowed after unary operator: '-font-size'
(30,17): run-time error CSS1039: Token not allowed after unary operator: '-black-color'
(32,28): run-time error CSS1039: Token not allowed after unary operator: '-background-color'
(96,17): run-time error CSS1039: Token not allowed after unary operator: '-white-color'
(97,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(98,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(102,17): run-time error CSS1039: Token not allowed after unary operator: '-white-color'
(103,28): run-time error CSS1039: Token not allowed after unary operator: '-secondary-color'
(104,24): run-time error CSS1039: Token not allowed after unary operator: '-secondary-color'
(109,28): run-time error CSS1039: Token not allowed after unary operator: '-border-color'
(113,28): run-time error CSS1039: Token not allowed after unary operator: '-holiday-color'
(117,28): run-time error CSS1039: Token not allowed after unary operator: '-hidden-color'
(125,17): run-time error CSS1039: Token not allowed after unary operator: '-public-holiday-color'
(129,17): run-time error CSS1039: Token not allowed after unary operator: '-paid-leave-color'
(133,17): run-time error CSS1039: Token not allowed after unary operator: '-compensatory-leave-color'
(137,17): run-time error CSS1039: Token not allowed after unary operator: '-business-trip-color'
(159,25): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(170,36): run-time error CSS1039: Token not allowed after unary operator: '-border-color'
(177,36): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(197,17): run-time error CSS1039: Token not allowed after unary operator: '-danger-color'
(202,17): run-time error CSS1039: Token not allowed after unary operator: '-muted-color'
(256,21): run-time error CSS1039: Token not allowed after unary operator: '-public-holiday-color'
(262,21): run-time error CSS1039: Token not allowed after unary operator: '-paid-leave-color'
(268,21): run-time error CSS1039: Token not allowed after unary operator: '-compensatory-leave-color'
(273,21): run-time error CSS1039: Token not allowed after unary operator: '-business-trip-color'
(288,36): run-time error CSS1039: Token not allowed after unary operator: '-white-color'
(311,32): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(312,21): run-time error CSS1039: Token not allowed after unary operator: '-white-color'
(378,32): run-time error CSS1039: Token not allowed after unary operator: '-border-color'
(391,32): run-time error CSS1039: Token not allowed after unary operator: '-border-color'
(405,17): run-time error CSS1039: Token not allowed after unary operator: '-muted-color'
(416,21): run-time error CSS1039: Token not allowed after unary operator: '-danger-color'
(421,21): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(448,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(457,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(461,17): run-time error CSS1039: Token not allowed after unary operator: '-muted-color'
 */
@charset "UTF-8";

/*-------------------------------
    共通定義
-------------------------------*/
:root {
    --primary-color: #006A9C;
    --secondary-color: #6C757D;
    --danger-color: #DC3545;
    --warning-color: #FFC107;
    --holiday-color: #CCE9FA;
    --white-color: #FFF;
    --black-color: #212529;
    --muted-color: #6C757D;
    --border-color: #CED4DA;
    --background-color: #F5F5F5;
    --hidden-color: #E5E5E5;
    --public-holiday-color: #DC3545;
    --paid-leave-color: #198754;
    --compensatory-leave-color: #DAA520;
    --business-trip-color: #6699cc;
    --font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    --font-size: 14px;
}

html {
    height: 100%;
    font-family: var(--font-family);
    font-size: var(--font-size);
    color: var(--black-color);
    line-height: 1.5;
    background-color: var(--background-color);
}

body {
    height: 100%;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin: 0;
}

button, .btn {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
}

    button:not(:disabled) {
        cursor: pointer;
    }

.btn-primary {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    color: var(--white-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

table, th, td {
    border-collapse: collapse;
    border: 1px solid var(--border-color);
}

.bg-holiday {
    background-color: var(--holiday-color) !important;
}

.bg-hidden {
    background-color: var(--hidden-color) !important;
}

.text-center {
    text-align: center;
}

.public-holiday {
    color: var(--public-holiday-color);
}

.paid-leave {
    color: var(--paid-leave-color);
}

.compensatory-leave {
    color: var(--compensatory-leave-color);
}

.business-trip {
    color: var(--business-trip-color);
}

/*-------------------------------
    ログイン
-------------------------------*/
#login-main {
    width: 100%;
    height: 100%;
    text-align: center !important;
    display: flex;
    align-items: center;
}

    #login-main form {
        width: 100%;
        max-width: 330px;
        padding: 15px;
        margin: auto;
    }

        #login-main form h1 {
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        #login-main form div {
            position: relative;
        }

        #login-main form input {
            position: relative;
            padding: 1rem 0.75rem;
            border: 1px solid var(--border-color);
            transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
            box-sizing: border-box;
            width: 100%;
        }

            #login-main form input:focus {
                border-color: var(--primary-color);
                outline: 0;
                z-index: 1000;
            }

            #login-main form input[type="text"] {
                margin-bottom: -1px;
            }

            #login-main form input[type="password"] {
                margin-bottom: 30px;
            }

        #login-main form button {
            padding: 0.5rem 1rem;
            width: 100%;
            margin-bottom: 30px;
        }

#login-error {
    color: var(--danger-color);
    margin-bottom: 10px;
}

#login-footer {
    color: var(--muted-color);
}

/*-------------------------------
    曳船予定表
-------------------------------*/
#schedule-wrapper {
    height: 100vh;
    padding: 5px;
    overflow: hidden;
    box-sizing: border-box;
}

#schedule-main {
    height: 100%;
    width: 100%;
    position: relative;
}

#schedule-search {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

    #schedule-search button {
        padding: 0.5rem 1rem;
        margin-right: 25px;
    }

    #schedule-search a {
        margin-right: 25px;
        padding: 0.375rem 0.75rem;
    }

    #schedule-search div {
        margin-right: 25px;
    }

#schedule-count {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

    #schedule-count p:nth-child(1) {
        margin-right: auto;
    }

    #schedule-count p:nth-child(2) {
        color: var(--public-holiday-color);
    }


    #schedule-count p:nth-child(3) {
        margin-left: 10px;
        color: var(--paid-leave-color);
    }


    #schedule-count p:nth-child(4) {
        margin-left: 10px;
        color: var(--compensatory-leave-color);
    }

    #schedule-count p:nth-child(5) {
        margin-left: 10px;
        color: var(--business-trip-color);
    }

#schedule-table {
    margin: 10px 0 0 0;
    width: 100%;
    overflow: hidden;
}

    #schedule-table table {
        width: 100%;
        font-size: 10px;
    }

        #schedule-table table tr {
            background-color: var(--white-color);
        }

    #schedule-table thead,
    #schedule-table tbody {
        width: 100%;
        display: block;
    }

    #schedule-table tbody {
        overflow-x: hidden;
        overflow-y: scroll;
        height: calc(100vh - 270px);
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

        #schedule-table tbody::-webkit-scrollbar {
            display: none;
        }

    #schedule-table thead td {
        text-align: center;
        background-color: var(--primary-color);
        color: var(--white-color);
    }

    #schedule-table table td:nth-child(1) {
        min-width: 35px;
        text-align: center;
    }

    #schedule-table table td:nth-child(2) {
        width: 9999px;
    }

    #schedule-table table td:nth-child(3) {
        min-width: 75px;
    }

    #schedule-table table td:nth-child(4) {
        min-width: 75px;
    }

    #schedule-table table td:nth-child(5) {
        min-width: 75px;
    }

@media (min-width: 576px) {
    #schedule-table table td:nth-child(3) {
        min-width: 120px;
    }

    #schedule-table table td:nth-child(4) {
        min-width: 120px;
    }

    #schedule-table table td:nth-child(5) {
        min-width: 120px;
    }
}

@media (min-width: 992px) {
    #schedule-table table td:nth-child(3) {
        min-width: 200px;
    }

    #schedule-table table td:nth-child(4) {
        min-width: 200px;
    }

    #schedule-table table td:nth-child(5) {
        min-width: 200px;
    }
}

#schedule-news {
    position:absolute;
    bottom: 0;
    width: 100%;
}

    #schedule-news div:nth-child(2) input {
        resize: none;
        width: 100%;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
        border: 1px solid var(--border-color);
        padding: 0.5rem;
        margin-bottom: -1px;
    }

    #schedule-news div:nth-child(3) textarea {
        resize: none;
        width: 100%;
        height: 65px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
        border: 1px solid var(--border-color);
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        box-sizing: border-box;
        padding: 0.5rem;
    }

        #schedule-news div:nth-child(2) input:focus,
        #schedule-news div:nth-child(3) textarea:focus {
            border-color: none;
            outline: 0;
            z-index: 1000;
        }

#schedule-footer {
    color: var(--muted-color);
    margin: 0;
    text-align: center;
}

#schedule-error-container {
    width: 100%;
    height: 70px;
}

    #schedule-error-container p {
        color: var(--danger-color);
        margin-bottom: 5px;
    }

    #schedule-error-container a {
        color: var(--primary-color);
    }

#schedule-message {
    margin-left: 20px;
}


/*-------------------------------
    エラー
-------------------------------*/
#error-main {
    width: 100%;
    height: 100%;
    text-align: center !important;
    display: flex;
    align-items: center;
}

#error-main-container {
    width: 100%;
    max-width: 660px;
    padding: 15px;
    margin: auto;
}

#error-title {
    color: var(--primary-color);
    margin-bottom: 30px;
}

#error-message {
    margin-bottom: 30px;
}

#error-link {
    color: var(--primary-color);
}

#error-footer {
    color: var(--muted-color);
    margin-top: 30px;
}

