﻿
ul, li {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
}

    a:link, a:visited, a:hover, a:active {
        color: inherit;
    }

.pc, .pc1150 {
    display: block;
}

.sp, .sp1150 {
    display: none;
}

.font-color--alart {
    color: #bb2121;
}

.button-nomal {
    padding: 0.5rem 1.5rem;
    border: 1px solid #999;
    background-color: #FFF;
    color: #3e3a39;
    border-radius: 5px;
}

    .button-nomal:hover {
        background-color: rgb(255, 252, 238);
    }

.button-small {
    padding: 0rem 1rem;
    display: inline-block;
    text-align: center;
}

html {
    font-family: sans-serif;
    font-size: 62.5%;
    overflow-y: scroll;
}

body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.6rem;
    background-color: #f0f0f0;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    background-color: #9a001b;
    color: #FFF;
    padding: 1rem;
    z-index: 900;
}

.header__left {
    z-index: 995;
}

.logo-area {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
}

.logo-area__text {
    font-size: 1rem;
    line-height: 1.1rem;
    font-weight: 400;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    padding: 0.4rem;
    text-align: center;
}

.sp-menu-button-wrap {
    display: none;
}

.header-menu-wrap {
    width: 62.5%;
    display: flex;
    gap: 10rem;
    justify-content: space-between;
    align-items: center;
}

.header-menu ul {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
}

    .header-menu ul li {
        position: relative;
        opacity: 0.8;
    }

        .header-menu ul li:hover {
            opacity: 1;
        }

        .header-menu ul li.menu--active {
            opacity: 1;
        }

            .header-menu ul li.menu--active::before {
                content: "";
                position: absolute;
                left: 0;
                bottom: -2px;
                width: 100%;
                height: 2px;
                background-color: #FFF;
            }

            .header-menu ul li.menu--active::after {
                content: "";
                position: absolute;
                transform: translateX(-50%);
                left: 50%;
                bottom: -13px;
                width: 20px;
                height: 20px;
                border-top: 10px solid rgba(0, 0, 0, 0);
                border-right: 10px solid rgba(0, 0, 0, 0);
                border-bottom: 10px solid #f0f0f0;
                border-left: 10px solid rgba(0, 0, 0, 0);
            }

.header-login-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.header-login-area__user-name {
    display: block;
    margin: 0;
}

.header-login-area__login_button {
    background-color: #FFF;
    border: none;
    color: #9a001b;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.5rem 2rem;
}

.all-contents-area {
    max-width: 1000px;
    margin: 10px auto;
    padding: 1rem;
    min-height: calc(100vh - 100px);
}

.login-top-wrapper {
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.login-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px;
}

.login-top__logo {
    width: 150px;
    filter: invert(69%) sepia(14%) saturate(1611%) hue-rotate(168deg) brightness(87%) contrast(90%);
}

.login-top__headline {
    color: #9a001b;
}

.login-form {
    width: 500px;
    margin: 30px;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.login-form__header {
    margin: 0;
    padding: 0.5rem;
    background-color: #9a001b;
    color: #FFF;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
}

.form-area {
    padding: 20px;
}

.form-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.form-list--2col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.form-list__li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.form-list__input-name {
    margin: 0.5rem 0;
    width: 100px;
    text-align: center;
}

.form-list__input-name--width-auto {
    width: auto;
}

.form-list__input {
    font-size: 2rem;
    margin: 0;
    padding: 1rem 2rem;
    background-color: #FFF;
    border: 1px solid #999;
    border-radius: 9999px;
    transition: all 0.2s;
}

.form-list__input--font-s {
    font-size: 1.6rem;
}

.form-list__input:focus {
    outline: none;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #9a001b;
}

.form-list-block-nowrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
}

.submit-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 30px;
}

.submit-area__submit {
    padding: 0.8rem 4rem;
    background-color: #9a001b;
    color: #FFF;
    border: none;
    border-radius: 9999px;
    font-size: 1.6rem;
    min-width: 140px;
}

.submit-area__submit--reset {
    background-color: #999;
}

.search-area {
    width: 100%;
    margin-bottom: 30px;
}

.search-area__header {
    color: #9a001b;
    border-bottom: 1px solid #9a001b;
}

.search_table-wrap {
    width: 100%;
    overflow-x: scroll;
}

.search_table {
    margin: 0 auto;
    min-width: 800px;
    width: 100%;
    overflow-x: scroll;
}

    .search_table tbody tr {
        background-color: #FFF;
    }

        .search_table tbody tr th, .search_table tbody tr td {
            padding: 0.5rem 1rem;
            min-width: 80px;
            font-size: 1.4rem;
        }

        .search_table tbody tr th {
            background-color: #9a001b;
            border: 1px solid #9a001b;
            color: #FFF;
            font-weight: 400;
        }

        .search_table tbody tr td {
            border: 1px solid #9a001b;
        }

.table--cell-center tbody tr td {
    text-align: center;
}

    .table--cell-center tbody tr td .mark-alart {
        color: #bb2121;
        margin-right: 0.5rem;
    }

    .table--cell-center tbody tr td .mark-safety {
        color: #009a3b;
        margin-right: 0.5rem;
    }

.form-nomal {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
}

    .form-nomal input {
        padding: 0.5rem;
        margin: 0.2em auto;
    }

        .form-nomal input:not([type=file]):focus {
            outline: none;
            border: 1px solid #9a001b;
            background-color: rgb(255, 252, 238);
        }

        .form-nomal input[type=text], .form-nomal input[type=password] {
            width: 100%;
            border-radius: 5px;
            border: 1px solid #999;
        }

        .form-nomal input[type=radio], .form-nomal input[type=checkbox] {
            margin-right: 0.5rem;
        }

    .form-nomal label {
        margin-right: 2rem;
    }

    .form-nomal textarea {
        padding: 0.5rem;
        font-family: inherit;
        width: 100%;
        border-radius: 5px;
        border: 1px solid #999;
    }

        .form-nomal textarea:focus {
            outline: none;
            border: 1px solid #9a001b;
            background-color: rgb(255, 252, 238);
        }

    .form-nomal ul {
        display: flex;
        margin: -1px 0;
    }

        .form-nomal ul li {
            padding: 1rem 2rem;
        }

            .form-nomal ul li p {
                margin: 0;
            }

            .form-nomal ul li:nth-child(1) {
                background-color: #9a001b;
                border: 1px solid #ad3a3a;
                color: #FFF;
                width: 25%;
                min-width: 200px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .form-nomal ul li:nth-child(2) {
                background-color: #FFF;
                border: 1px solid #ad3a3a;
                width: 100%;
            }

.list-type-button {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2rem;
}

.dl_button {
    width: 100%;
}

.pager {
    width: 100%;
    margin: 30px 0;
}

.pager-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.pager__arrow {
    color: #9a001b;
}

.pager__numbers {
    display: flex;
    gap: 1rem;
}

.pager-number {
    padding: 0.5rem;
    width: 30px;
    height: 30px;
    color: #9a001b;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pager-number--recent {
    color: #FFF;
    background-color: #9a001b;
}

.all-wrapper {
    min-height: 100vh;
    position: relative;
    padding-bottom: 30px;
}

footer {
    background-color: #9a001b;
    padding: 0.2rem;
    font-size: 1.2rem;
    color: #FFF;
    display: flex;
    margin-bottom: 0;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
}

.footer-text {
    margin: 0.2rem;
}

.gridview1 {
    font-size: medium;
    border-color: #9a001b;
    border-style: Solid;
}

.gridview1-header {
    background-color: #9a001b;
    border-color: #9a001b;
}

.gridview1-col1 {
    width:110px;
}

.gridview1-col1-m {
    width: 90px;
}

.gridview1-col2 {
    width: 260px;
}

.gridview1-col3 {
    width: 320px;
}

.gridview1-col3-m {
    width: 220px;
}

.gridview1-col4 {
    width: 260px;
}

.gridview1-col5 {
    width: 260px;
}


.gridview1-footer {
    align-items: center;
}

.PagerStyle {
    /*display: inline-block;*/
    margin: 20px 0;
    border-radius: 4px;
    align-items: center;
}

    .PagerStyle table > tbody > tr > td {
        display: inline;
        align-items: center;
    }

        .PagerStyle table > tbody > tr > td > a,
        .PagerStyle table > tbody > tr > td > span {
            position: relative;
            float: left;
            padding: 8px 12px;
            line-height: 1.42857143;
            text-decoration: none;
            color: #9a001b;
            background-color: #ffffff;
            border: 1px solid #dddddd;
            margin-left: -1px;
        }

        .PagerStyle table > tbody > tr > td > span {
            position: relative;
            float: left;
            padding: 8px 12px;
            line-height: 1.42857143;
            text-decoration: none;
            margin-left: -1px;
            z-index: 2;
            color: #aea79f;
            background-color: #f5f5f5;
            border-color: #dddddd;
            cursor: default;
        }


        .PagerStyle table > tbody > tr > td:first-child > a,
        .PagerStyle table > tbody > tr > td:first-child > span {
            margin-left: 0;
            border-bottom-left-radius: 4px;
            border-top-left-radius: 4px;
        }

        .PagerStyle table > tbody > tr > td:last-child > a,
        .PagerStyle table > tbody > tr > td:last-child > span {
            border-bottom-right-radius: 4px;
            border-top-right-radius: 4px;
        }

        .PagerStyle table > tbody > tr > td > a:hover,
        .PagerStyle table > tbody > tr > td > span:hover,
        .PagerStyle table > tbody > tr > td > a:focus,
        .PagerStyle table > tbody > tr > td > span:focus {
            color: #97310e;
            background-color: white;
            border-color: #dddddd;
        }


#lock {
    z-index: 9999; /*表示位置を一番手前*/
    position: fixed; /*fixedを指定(absoluteではスクロールされた時に追従しない)*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #808080; /* 背景色（ここではグレー）*/
    text-align: center;
    opacity: 0.7; /* 透過値*/
}

#ball {
    width: 200px;
    height: 200px;
    line-height: 200px;
    background-color: green;
    color: #fff;
    text-align: center;
    position: absolute;
}


@media screen and (max-width: 1050px) {
    .pc1150 {
        display: none;
    }

    .sp1150 {
        display: block;
    }

    .sp-menu-button-wrap {
        display: block;
        position: fixed;
        width: 50px;
        height: 50px;
        z-index: 9999;
        top: 0;
        right: 0;
    }

    .sp-menu-button {
        display: block;
        position: relative;
        background-color: rgba(0, 0, 0, 0);
    }

        .sp-menu-button span {
            position: absolute;
            width: 28px;
            height: 2px;
            background-color: #FFF;
            transition: all 0.1s;
        }

            .sp-menu-button span:nth-child(1) {
                top: 11px;
                left: 11px;
            }

            .sp-menu-button span:nth-child(2) {
                top: 24px;
                left: 11px;
            }

            .sp-menu-button span:nth-child(3) {
                top: 37px;
                left: 11px;
            }

    .menu-toggle .sp-menu-button span:nth-child(1) {
        transform: rotate(45deg);
        top: 22px;
    }

    .menu-toggle .sp-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle .sp-menu-button span:nth-child(3) {
        transform: rotate(-45deg);
        top: 22px;
    }

    .header-menu-wrap {
        width: 100%;
        height: 100vh;
        background-color: #9a001b;
        position: fixed;
        top: -100vh;
        left: 0;
        padding: 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        opacity: 0;
        transition: all 0.3s;
    }

    .contents-toggle {
        display: block;
        top: 0;
        opacity: 1;
    }

    .header-menu {
        border-top: 1px solid #ad3a3a;
        border-bottom: 1px solid #ad3a3a;
    }

        .header-menu ul {
            flex-direction: column;
            gap: 2rem;
        }

            .header-menu ul li.menu--active::after {
                display: none;
            }

    .header__right {
        border-bottom: 1px solid #ad3a3a;
    }

    .header-login-area {
        flex-direction: column;
        margin: 16px 0;
        gap: 1rem;
    }


    @media screen and (max-width: 700px) {
        .pc {
            display: none;
        }

        .sp {
            display: block;
        }

        .login-form {
            width: auto;
        }

        .login-top__headline {
            display: none;
        }

        .login-top__logo {
            width: 100px;
        }

        .form-list__li--column {
            flex-direction: column;
        }

        .search-area__header {
            margin-top: 0.5rem;
        }

        .search_table {
            padding: 1rem;
        }

            .search_table tbody tr th, td {
                min-width: auto;
            }

        .form-nomal ul {
            flex-direction: column;
        }

            .form-nomal ul li:nth-child(1) {
                width: 100%;
                text-align: left;
            }

            .form-nomal ul li:nth-child(2) {
                padding: 2rem;
            }
    }
    /*# sourceMappingURL=style.css.map */
