@charset "utf-8";
/*----------------------------------------------
    .c_select
---------------------------------------------*/
.c_select {
    display: block;
    position: relative;
    width: 100%;
}

    .c_select::before {
        content: '';
        background: url(../images/icon_arrow.svg) no-repeat;
        width: 5px;
        height: 11px;
        background-size: contain;
        position: absolute;
        top: calc(50% - 11px / 2);
        transform: rotate(90deg);
        right: 20px;
    }

    .c_select select,
    .c_select input {
        border: 1px solid #D4DCCD;
        background: #fff;
        padding: 10px 14px;
        border-radius: var(--radius);
        width: 100%;
        appearance: none;
        cursor: pointer;
        line-height: 1;
    }

/*----------------------------------------------
    .c_input
---------------------------------------------*/
.c_input {
    border: 1px solid #D4DCCD;
    background: #fff;
    padding: 10px 14px;
    border-radius: var(--radius);
    width: 120px;
    line-height: 1;
    position: relative;
}

    /* カレンダー */
    .c_input::-webkit-calendar-picker-indicator {
        content: '';
        background: url(../images/icon_calendar.svg) no-repeat;
        width: 12px;
        height: 12px;
        background-size: contain;
        position: absolute;
        top: calc(50% - 12px / 2 - 2px);
        right: 14px;
        cursor: pointer;
    }
/*----------------------------------------------
    .c_file
---------------------------------------------*/
.c_file {
    line-height: 2.5;
}

/*----------------------------------------------
    .c_error
---------------------------------------------*/
.c_error {
    background-color: #FF6666;
}

/*----------------------------------------------
    .c_check
---------------------------------------------*/
.c_check {
    width: 16px;
    height: 16px;
    accent-color: #1A93D9;
    cursor: pointer;
}

/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--subtitlefontcolor);
    position: relative;
    border-left: 8px solid var(--subtitlefontcolor);
    padding-left: 14px;
    line-height: 1.3;
}

/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--subtitlefontcolor);
    position: relative;
    padding-left: 15px;
}

    .c_ttl_type03::before {
        content: '';
        background: var(--subtitlefontcolor);
        width: 5px;
        height: 5px;
        background-size: contain;
        position: absolute;
        top: calc(50% - 5px / 2);
        left: 0;
        border-radius: 100px;
    }

/*----------------------------------------------
    .c_table_type01
---------------------------------------------*/
.c_table_type01 {
    width: 100%;
    border-spacing: 0 10px;
    border-collapse: separate;
}

    .c_table_type01 tbody th {
        background: var(--searchthbackground);
        color: var(--white);
        border-left: 8px solid var(--navbarbordercolor);
        border-radius: var(--radius);
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        border-spacing: 5em;
        width: fit-content;
    }

    .c_table_type01 th {
        background: transparent;
        color: var(--searchfontcolor);
        font-weight: bold;
        text-align: right;
        padding: 0 10px;
        padding-left: 0;
    }

    .c_table_type01 td {
    }

/*----------------------------------------------
    .c_table_type02
---------------------------------------------*/
.c_table_type02 {
    width: 100%;
    position: relative;
    color: var(--black);
    height: auto;
    overflow: auto;
}

    .c_table_type02 th,
    .c_table_type02 td {
        padding: 6px 8px;
        border: 1px solid #D4DBCE;
        color: var(--black);
    }

    .c_table_type02 thead {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .c_table_type02 thead th {
            background: #788072;
            color: #fff;
        }

    .c_table_type02 tbody tr:nth-child(2n) > * {
        background: #F5F8F4;
    }

    .c_table_type02 td {
        background: #fff;
    }
/*table custom*/
.is_unpublished {
    background-color: #cfd1cd !important;
    border: 1px solid #000000;
}
.is_unpublished2 {
    background-color: #c5ccbe !important;
    border: 1px solid #000000;
}
.is_selected {
    background-color: #0bd !important;
    color: #fff;
    border: 1px solid #000000;
}
/*this important */
    tr.is_selected td {
    background-color: #c4e7ff !important;
}

/*----------------------------------------------
    .c_table_type03
---------------------------------------------*/
.c_table_type03 {
    width: 100%;
    border-spacing: 0 10px;
    border-collapse: separate;
}

    .c_table_type03 th,
    .c_table_type03 td {
    }

    .c_table_type03 th {
        /*background: #d3dacf;*/
        color: var(--searchfontcolor);
        font-weight: bold;
        text-align: center;
        padding: 8px 0;
        width: 80px;
        padding-left: 0;
    }

    .c_table_type03 td {
        padding-left: 20px;
    }

/*----------------------------------------------
    .c_para_type01
---------------------------------------------*/
.c_para_type01 {
    text-align: justify;
    -ms-text-justify: inter-word;
    text-justify: inter-word;
}

/*----------------------------------------------
    .c_para_type02
---------------------------------------------*/
.c_para_type02 {
    text-indent: 1em;
    text-align: justify;
    -ms-text-justify: inter-word;
    text-justify: inter-word;
}

/*----------------------------------------------
    .c_kome_type01
---------------------------------------------*/
.c_kome_type01 {
    text-indent: -1em;
    padding-left: 1em;
}

/*----------------------------------------------
    .c_btn_type01
---------------------------------------------*/
.c_btn_type01 {
    color: var(--btnfontcolor);
    font-size: 1.4rem;
    padding: 10px 0;
    text-align: center;
    border-radius: var(--btnradius);
    background: var(--btnbackground);
    cursor: pointer;
    transition: 0.1s;
    border: none;
    width: 120%;
    white-space: nowrap;
    border-bottom: 3px solid var(--btnhoverbackground);
    border-right: 3px solid var(--btnhoverbackground);
}

    .c_btn_type01:hover {
        background: var(--btnhoverbackground);
    }

    /* 白 */
    .c_btn_type01.is_white {
        border: 1px solid var(--btnbackground);
        color: var(--btnbackground);
        background: var(--btnfontcolor);
        border-bottom: 3px solid var(--btnhoverbackground);
        border-right: 3px solid var(--btnhoverbackground);
    }
    .c_btn_type01.is_reset {
        border: 1px solid var(--btnreset);
        color: var(--btnreset);
        background: var(--btnfontcolor);
        border-bottom: 3px solid var(--btnresethover);
        border-right: 3px solid var(--btnresethover);
    }

    .c_btn_type01.is_white:hover {
        background: var(--btnhoverbackground);
        color: var(--btnhoverfontcolor);
    }
    .c_btn_type01.is_reset:hover {
        background: var(--btnresethover);
        color: var(--btnhoverfontcolor);
    }
    /* 灰 */
    .c_btn_type01.is_gray {
        color: #fff;
        background: #d3dacf;
        border-bottom: 3px solid #737680;
        border-right: 3px solid #737680;
    }
    .c_btn_type01.is_circle {
        border-radius: 100%;
        width:100px;
        height:100px;
        
    }
        .c_btn_type01.is_circle.is_gray {
            color: #fff;
            background: #d3dacf;
            border-bottom: 3px solid #737680;
            border-right: 3px solid #737680;
        }
/*----------------------------------------------
    .c_btn_type02
---------------------------------------------*/
            .c_btn_type02 {
    /*default color: #fff;*/
    color: var(--btnbackground);
    font-size: 1.6rem;
    padding: 5px 0;
    width: 80px;
    text-align: center;
    border-radius: var(--btnradius);
    background: none;
    /*default border: 1px solid #fff;*/
    border: 1px solid var(--btnbackground);
    cursor: pointer;
    transition: 0.1s;
    white-space: nowrap;
    border-bottom: 3px solid var(--btnhoverbackground);
    border-right: 3px solid var(--btnhoverbackground);
}

    .c_btn_type02:hover {
        background: var(--btnhoverbackground);
        color: var(--btnhoverfontcolor);
    }

/*----------------------------------------------
    .c_btn_type03
---------------------------------------------*/
.c_btn_type03 {
    color: var(--btnfontcolor);
    font-size: 1.4rem;
    padding: 5px 0;
    width: 80px;
    height: 45px;
    text-align: center;
    border-radius: var(--btnradius);
    background: var(--btnbackground);
    cursor: pointer;
    transition: 0.1s;
    border: none;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid var(--btnhoverbackground);
    border-right: 3px solid var(--btnhoverbackground);
}

    .c_btn_type03::before {
        content: '';
        background: url(../images/icon_arrow.svg) no-repeat;
        width: 5px;
        height: 8px;
        background-size: contain;
        position: absolute;
        top: calc(50% - 8px / 2);
        filter: brightness(0) invert(1);
        left: 10px;
        transform: rotate(180deg);
    }

    .c_btn_type03.is_top {
        position: absolute;
        top: 30px;
        right: 0;
    }

    .c_btn_type03:hover {
        background: var(--btnhoverbackground);
        color: var(--btnhoverfontcolor);
    }
    .c_btn_type03.is_gray {
        color: #fff;
        background: #d3dacf;
        border-bottom: 3px solid #737680;
        border-right: 3px solid #737680;
    }
/*----------------------------------------------
    .c_nav_list
---------------------------------------------*/
.c_nav_list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size:large;
}

    .c_nav_list li {
        position: relative;
    }

        .c_nav_list li::after {
            content: '';
            background: url(../images/icon_arrow_circle.svg) no-repeat;
            width: 12px;
            height: 12px;
            background-size: contain;
            position: absolute;
            top: calc(50% - 12px / 2);
            right: 10px;
            transition: 0.1s;
        }

        .c_nav_list li a {
            padding: 14px 5px;
            font-size: 1.5rem;
            color: var(--navbarfontcolor);
            font-weight: bold;
            text-decoration: none;
            display: block;
            transition: 0.1s;
            border-radius: var(--radius);
            background: var(--navbarlistbackground);
            border-left: 8px solid var(--navbarbordercolor);
        }

        .c_nav_list li:hover a {
            color: var(--navbarlisthoverfontcolor);
            background-color: var(--navbarlisthoverbackground);
        }

        .c_nav_list li.active a {
            background: var(--navbarlistactivebackground);
            color: var(--navbarlistactivefontcolor);
        }
/*----------------------------------------------
    運用者向けマニュアルボタン
---------------------------------------------*/
.c_nav_list_btn {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: large;
}

    .c_nav_list_btn li {
        position: relative;
    }

        .c_nav_list_btn li::after {
            content: '';
            background: url(../images/icon_arrow_circle.svg) no-repeat;
            width: 12px;
            height: 12px;
            background-size: contain;
            position: absolute;
            top: calc(50% - 12px / 2);
            right: 10px;
            transition: 0.1s;
            /*default= margin-top: none*/
            margin-top:30%;
        }

        .c_nav_list_btn li a {
            padding: 14px 5px;
            font-size: 1.5rem;
            color: var(--navbarfontcolor);
            font-weight: bold;
            text-decoration: none;
            display: block;
            transition: 0.1s;
            border-radius: var(--radius);
            background: var(--navbarlistbackground);
            border-left: 8px solid var(--navbarbordercolor);
        }

        .c_nav_list_btn li:hover a {
            color: var(--navbarlisthoverfontcolor);
            background-color: var(--navbarlisthoverbackground);
        }

        .c_nav_list_btn li.active a {
            background: var(--navbarlistactivebackground);
            color: var(--navbarlistactivefontcolor);
        }

/*----------------------------------------------
    .c_bread_crumb
---------------------------------------------*/
.c_bread_crumb {
    list-style: none;
    display: flex;
    align-items: center;
    color:var(--white);
    gap: 25px;
}

    .c_bread_crumb li {
        position: relative;
    }

        .c_bread_crumb li:not(:last-child)::before {
            content: '>';
            background: url(../images/icon_arrow.svg) no-repeat;
            width: 4px;
            height: 7px;
            background-size: contain;
            position: absolute;
            top: calc(50% - 7px / 2);
            right: -14px;
        }

        .c_bread_crumb li a {
            color: var(--pagefontcolor);
            text-decoration: none;
            transition: 0.1s;
        }

            .c_bread_crumb li a:hover {
                opacity: 0.7;
            }
/*----------------------------------------------
    goTop
---------------------------------------------*/
#goTop {
    position: fixed;
    bottom: 20px;
    left: 100px;
}

/*----------------------------------------------
    checkbox
---------------------------------------------*/
input[type='checkbox'] {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #555;
    vertical-align: bottom;
}

    input[type='checkbox']:checked {
        background: #abd;
    }
/*----------------------------------------------
    visiblebtn
---------------------------------------------*/
.field-icon {
    float: right;
    margin-left: -25px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}
.visible-eye {
    width: 20px; /* アイコンの幅 */
    height: 20px; /* アイコンの高さ */
    background: url(../images/eye.svg) no-repeat;
    top: 0;
    margin-right: 10px;
    vertical-align: top;
}
.invisible-eye {
    max-width: 20px; /* アイコンの幅 */
    max-height: 20px; /* アイコンの高さ */
    background: url(../images/eye-slash.svg) no-repeat;
    margin-right: 10px;
    vertical-align: top;
}

/*----------------------------------------------
    breadcrumb
---------------------------------------------*/
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

    .breadcrumb-item + .breadcrumb-item::before {
        float: left;
        padding-right: 0.5rem;
        color: #6c757d;
        content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
    }

.breadcrumb-item.active {
    color: #6c757d;
}