/**
 * body
 */
body {
    text-align: justify;
    letter-spacing: .04em;
    overflow-y: scroll;
}

/**
 * wrapper
 */
.wrapper {
    display: flex;
}

/**
 * sidebar-wrapper
 */
.sidebar-wrapper {
    display: flex;
    align-items: stretch;
    perspective: 1500px;
    height: 100%;
    border-top: 10px solid #004E87;
    border-right: 1px solid #bad6cd;
}
.sidebar-logo {
    margin: 15px auto;
    width: 218px;
    height: 90px;
    text-align: center;
    padding-top: 12px;
}
.sidebar-logo img{
    width: 100%;
}
.content-wrapper {
    display: block;
    width: 100%;
    margin: 0 3.0rem 1.5rem 3.0rem;
}

/**
 * sidebar
 */
#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #ffffff;
    color: #212529;
}
#sidebar ul.components {
    padding: 0;
    border-top: 1px solid #BAD6CD;
    border-bottom: 1px solid #BAD6CD;
}
#sidebar a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}
#sidebar ul p {
    color: #212529;
    padding: 10px;
}
#sidebar ul li.menu {
    background-color: #ffe7dd;
    padding: 15px 10px;
    font-weight: bold;
}
#sidebar ul li a {
    padding: 10px 10px 10px 20px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    background: #fff4f0;
}
#sidebar ul li.active > a {
    color: #212529;
    background: #b6e1c5;
}
#sidebar .btn-cms {
    color: #212529 !important;
    background-color: #F4F4F4 !important;
    border: 1px solid #003874 !important;
    transition: .2s ease-in-out;
    width: 100%;
}
#sidebar .btn-cms:hover {
    opacity: 0.7;
}
#sidebar .btn-manual {
    color: #fff !important;
    background-color: #343A40 !important;
    border: 1px solid #343A40 !important;
    transition: .2s ease-in-out;
    width: 100%;
}
#sidebar .btn-manual:hover {
    opacity: 0.7;
}
#sidebar .btn-logout {
    color: #fff !important;
    background-color: #004E87 !important;
    border: 1px solid #004E87 !important;
    transition: .2s ease-in-out;
    width: 100%;
}
#sidebar .btn-logout:hover {
    opacity: 0.7;
}

/**
 * Overlay
 */
.overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5000;
    background-color: rgba(255,255,255,0.7);
}
.overlay .loading_icon {
    width: 100%;
    text-align: center;
    margin-top: 400px;
    position: fixed;
}

/**
 * font-color
 */
.fcolor_red {
    color: #f00;
}
.fcolor_blue {
    color: #00f;
}
.fcolor_green {
    color: #0f0;
}

/**
 * ボタン
 */
ul.btn-area {
    padding: 20px;
}

ul.btn-area a {
    text-align: center;
    font-size: 0.9em !important;
    border-radius: 5px;
    margin-bottom: 5px;
}
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark,
.btn-link,
.page-link {
    border-radius: 5px;
}
.page-link:hover {
    color: #004E87 !important;
    background-color: #ffffff !important;
 }

.section-header {
    padding: 0 0 1rem;
    border-bottom: 4px solid #004E87;
}

/**
 * 入力フォームナビ
 */
.form-navi {
    margin-bottom: 24px;
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: space-between;
    z-index: 0;
    margin: 0 auto;
}
.form-navi-bar {
    position: absolute;
    top: 12px;
    left: 5%;
    width: 90%;
    height: 2px;
    background-color: #eaeaea;/*バーの色*/
    z-index: -1;
}
@media screen and (min-width: 768px) {
    .form-navi-bar {
        top: 17px;
        height: 5px;
    }
}
.navi-shape-border.form-navi-active {
    border: 1px solid #e2264d;
}
.navi-circle {
    border-radius: 50%;
}
.form-navi-item {
    color: #b7b7b7;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-navi-item.form-navi-active {
    color: #e2264d;
}
.form-navi-item-circle-outer {
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .form-navi-item-circle-outer {
        width: 39px;
        height: 39px;
    }
}
.form-navi-item-circle-outer.form-navi-active {
    background: #fff;
}
.form-navi-item-circle-inner {
    width: 16px;
    height: 16px;
    background-color: #b7b7b7;
    display: flex;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .form-navi-item-circle-inner {
        width: 25px;
        height: 25px;
    }
}
.form-navi-item-circle-inner.form-navi-active {
    background: #e2264d;
}
.form-navi-item-circle-inner:last-of-type::after {
    content: none;
}
.form-navi-item-Text {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 600;
}
.error_input{
    border: 1px solid #f00;
    background-color: #ffebeb;
}

/**
 * 検索件数
 */
.search-result .label {
    margin-right: 10px;
}
.search-result .count {
    font-size: 1.5em;
    color: #666666;
}
.search-result .delimiter {
    margin: 0 5px;
}

/**
 * loader
 */
#loading {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(246, 246, 244, 0.5);
    z-index: 1;
}

#spinner {
    display: none;
    color: #004E87;
    z-index: 2;
}

#spinner .spinner-border-size-custom {
    width: 5rem;
    height: 5rem;
}

/**
 * display
 */
.display_b {
    display: block;
}
.display_ib {
    display: inline-block;
}
.display_b {
    display: block;
}

/**
 * text-align
 */
.talign_c {
    text-align: center;
}
.talign_r {
    text-align: right;
}
.talign_l {
    text-align: left;
}

/**
 * pagination
 */
.pagination {
    width: 100%;
    margin: 10px auto;
    display: flex;
    justify-content: center;
}
.pagination li {
    min-width: 43px;
    padding: 7px;
    text-align: center;
    margin-right: 7px;
    background-color: #CCC;
    color: #FFF;
    font-size: 1.0rem;
}
.pagination li.current {
    background-color: #999;
    color: #FFF;
    font-weight: bold;
    font-size: 1.0rem;
}
.pagination li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #FFF;
}
.pagination li a:hover {
    opacity: 0.8;
}

/**
 * font-size
 */
.fsize-10p {
    font-size: 10px;
}
.fsize-11p {
    font-size: 11px;
}
.fsize-12p {
    font-size: 12px;
}

/**
 * font-weight
 */
.fweight-n {
    font-weight: normal;
}
.fweight-b {
    font-weight: bold;
}

/**
 * width
 */
.width-5p {
    width: 5% !important;
}
.width-10p {
    width: 10% !important;
}
.width-15p {
    width: 15% !important;
}
.width-20p {
    width: 20% !important;
}
.width-25p {
    width: 25% !important;
}
.width-30p {
    width: 30% !important;
}
.width-35p {
    width: 35% !important;
}
.width-40p {
    width: 40% !important;
}
.width-45p {
    width: 45% !important;
}
.width-50p {
    width: 50% !important;
}
.width-55p {
    width: 55% !important;
}
.width-60p {
    width: 60% !important;
}
.width-65p {
    width: 65% !important;
}
.width-70p {
    width: 70% !important;
}
.width-75p {
    width: 75% !important;
}
.width-80p {
    width: 80% !important;
}
.width-85p {
    width: 85% !important;
}
.width-90p {
    width: 90% !important;
}
.width-95p {
    width: 95% !important;
}
.width-100p {
    width: 100% !important;
}
.width-10 {
    width: 10px !important;
}
.width-15 {
    width: 15px !important;
}
.width-20 {
    width: 20px !important;
}
.width-25 {
    width: 25px !important;
}
.width-30 {
    width: 30px !important;
}
.width-35 {
    width: 35px !important;
}
.width-40 {
    width: 40px !important;
}
.width-45 {
    width: 45px !important;
}
.width-50 {
    width: 50px !important;
}
.width-55 {
    width: 55px !important;
}
.width-60 {
    width: 60px !important;
}
.width-65 {
    width: 65px !important;
}
.width-70 {
    width: 70px !important;
}
.width-75 {
    width: 75px !important;
}
.width-80 {
    width: 80px !important;
}
.width-85 {
    width: 85px !important;
}
.width-90 {
    width: 90px !important;
}
.width-95 {
    width: 95px !important;
}
.width-100 {
    width: 100px !important;
}
.width-110 {
    width: 110px !important;
}
.width-120 {
    width: 120px !important;
}
.width-130 {
    width: 130px !important;
}
.width-140 {
    width: 140px !important;
}
.width-150 {
    width: 150px !important;
}
.width-160 {
    width: 160px !important;
}
.width-170 {
    width: 170px !important;
}
.width-180 {
    width: 180px !important;
}
.width-190 {
    width: 190px !important;
}
.width-200 {
    width: 200px !important;
}
.width-210 {
    width: 210px !important;
}
.width-220 {
    width: 220px !important;
}
.width-230 {
    width: 230px !important;
}
.width-240 {
    width: 240px !important;
}
.width-250 {
    width: 250px !important;
}
.width-260 {
    width: 260px !important;
}
.width-270 {
    width: 270px !important;
}
.width-280 {
    width: 280px !important;
}
.width-290 {
    width: 290px !important;
}
.width-300 {
    width: 300px !important;
}
.width-310 {
    width: 310px !important;
}
.width-315 {
    width: 315px !important;
}
.width-320 {
    width: 320px !important;
}
.width-325 {
    width: 325px !important;
}
.width-330 {
    width: 330px !important;
}
.width-335 {
    width: 335px !important;
}
.width-340 {
    width: 340px !important;
}
.width-350 {
    width: 350px !important;
}
.width-360 {
    width: 360px !important;
}
.width-370 {
    width: 370px !important;
}
.width-380 {
    width: 380px !important;
}
.width-390 {
    width: 390px !important;
}
.width-400 {
    width: 400px !important;
}
.width-405 {
    width: 405px !important;
}
.width-450 {
    width: 450px !important;
}
.width-500 {
    width: 500px !important;
}
.width-550 {
    width: 550px !important;
}
.width-600 {
    width: 600px !important;
}
.width-550 {
    width: 550px !important;
}
.width-600 {
    width: 600px !important;
}
.width-550 {
    width: 550px !important;
}
.width-600 {
    width: 600px !important;
}
.width-650 {
    width: 650px !important;
}
.width-700 {
    width: 700px !important;
}
.width-750 {
    width: 750px !important;
}
.width-800 {
    width: 800px !important;
}
.width-850 {
    width: 850px !important;
}
.width-900 {
    width: 900px !important;
}
.width-950 {
    width: 950px !important;
}
.width-1000 {
    width: 1000px !important;
}

/**
 * max-width
 */
.mwidth-100 {
    max-width: 100px !important;
}
.mwidth-200 {
    max-width: 200px !important;
}
.mwidth-300 {
    max-width: 300px !important;
}
.mwidth-100p {
    max-width: 100% !important;
}

/**
 * min-width
 */
.miwidth-100 {
    min-width: 100px !important;
}
.miwidth-200 {
    min-width: 200px !important;
}
.miwidth-220 {
    min-width: 220px !important;
}
.miwidth-300 {
    min-width: 300px !important;
}
.miwidth-100p {
    min-width: 100% !important;
}

/**
 * padding
 */
.pall-5 {
    padding: 5px !important;
}
.pall-10 {
    padding: 10px !important;
}
.pall-15 {
    padding: 15px !important;
}
.pall-20 {
    padding: 20px !important;
}
.pall-25 {
    padding: 25px !important;
}
.pall-30 {
    padding: 30px !important;
}
.pall-35 {
    padding: 35px !important;
}
.pall-40 {
    padding: 40px !important;
}

.pt-none {
    padding-top: 0 !important;
}
.pt-7 {
    padding-top: 7px !important;
}
.pt-10 {
    padding-top: 10px !important;
}
.pt-15 {
    padding-top: 15px !important;
}
.pt-20 {
    padding-top: 20px !important;
}
.pt-25 {
    padding-top: 25px !important;
}
.pt-30 {
    padding-top: 30px !important;
}
.pt-35 {
    padding-top: 35px !important;
}
.pt-40 {
    padding-top: 40px !important;
}
.pr-none {
    padding-right: 0 !important;
}
.pr-7 {
    padding-right: 7px !important;
}
.pr-10 {
    padding-right: 10px !important;
}
.pr-15 {
    padding-right: 15px !important;
}
.pr-20 {
    padding-right: 20px !important;
}
.pr-25 {
    padding-right: 25px !important;
}
.pr-30 {
    padding-right: 30px !important;
}
.pr-35 {
    padding-right: 35px !important;
}
.pr-40 {
    padding-right: 40px !important;
}
.pb-none {
    padding-bottom: 0 !important;
}
.pb-7 {
    padding-bottom: 7px !important;
}
.pb-10 {
    padding-bottom: 10px !important;
}
.pb-15 {
    padding-bottom: 15px !important;
}
.pb-20 {
    padding-bottom: 20px !important;
}
.pb-25 {
    padding-bottom: 25px !important;
}
.pb-30 {
    padding-bottom: 30px !important;
}
.pb-35 {
    padding-bottom: 35px !important;
}
.pb-40 {
    padding-bottom: 40px !important;
}
.pl-none {
    padding-left: 0 !important;
}
.pl-7 {
    padding-left: 7px !important;
}
.pl-10 {
    padding-left: 10px !important;
}
.pl-15 {
    padding-left: 15px !important;
}
.pl-20 {
    padding-left: 20px !important;
}
.pl-25 {
    padding-left: 25px !important;
}
.pl-30 {
    padding-left: 30px !important;
}
.pl-35 {
    padding-left: 35px !important;
}
.pl-40 {
    padding-left: 40px !important;
}
.pl-90 {
    padding-left: 90px !important;
}
.pl-95 {
    padding-left: 95px !important;
}
.p-none {
    padding: 0 !important;
}

/**
 * margin
 */
.mt-none {
    margin-top: 0 !important;
}
.mt-5 {
    margin-top: 5px !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.mt-15 {
    margin-top: 15px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-25 {
    margin-top: 25px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.mt-35 {
    margin-top: 35px !important;
}
.mt-40 {
    margin-top: 40px !important;
}
.mt-45 {
    margin-top: 45px !important;
}
.mt-50 {
    margin-top: 50px !important;
}
.mt-55 {
    margin-top: 55px !important;
}
.mt-60 {
    margin-top: 60px !important;
}
.mt-70 {
    margin-top: 70px !important;
}
.mt-80 {
    margin-top: 80px !important;
}
.mt-90 {
    margin-top: 90px !important;
}
.mt-100 {
    margin-top: 100px !important;
}
.mr-none {
    margin-right: 0 !important;
}
.mr-5 {
    margin-right: 5px !important;
}
.mr-10 {
    margin-right: 10px !important;
}
.mr-15 {
    margin-right: 15px !important;
}
.mr-20 {
    margin-right: 20px !important;
}
.mr-25 {
    margin-right: 25px !important;
}
.mr-30 {
    margin-right: 30px !important;
}
.mr-35 {
    margin-right: 35px !important;
}
.mr-40 {
    margin-right: 40px !important;
}
.mr-50 {
    margin-right: 50px !important;
}
.mb-none {
    margin-bottom: 0 !important;
}
.mb-5 {
    margin-bottom: 5px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-15 {
    margin-bottom: 15px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-25 {
    margin-bottom: 25px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-35 {
    margin-bottom: 35px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.ml-none {
    margin-left: 0 !important;
}
.ml-5 {
    margin-left: 5px !important;
}
.ml-10 {
    margin-left: 10px !important;
}
.ml-15 {
    margin-left: 15px !important;
}
.ml-20 {
    margin-left: 20px !important;
}
.ml-25 {
    margin-left: 25px !important;
}
.ml-30 {
    margin-left: 30px !important;
}
.ml-35 {
    margin-left: 35px !important;
}
.ml-40 {
    margin-left: 40px !important;
}
.m-0auto {
    margin: 0 auto;
}

/**
 * height
 */
.height-5 {
    height: 5px !important;
}
.height-10 {
    height: 10px !important;
}
.height-15 {
    height: 15px !important;
}
.height-20 {
    height: 20px !important;
}
.height-25 {
    height: 25px !important;
}
.height-30 {
    height: 30px !important;
}
.height-35 {
    height: 35px !important;
}
.height-39 {
    height: 39px !important;
}
.height-40 {
    height: 40px !important;
}

/**
 * top
 */
.top-5 {
    top: 5px !important;
}
.top-10 {
    top: 10px !important;
}
.top-15 {
    top: 15px !important;
}
.top-20 {
    top: 20px !important;
}
.top-25 {
    top: 25px !important;
}
.top-30 {
    top: 30px !important;
}
.top-35 {
    top: 35px !important;
}
.top-40 {
    top: 40px !important;
}
.top-45 {
    top: 45px !important;
}
.top-50 {
    top: 50px !important;
}
.top-55 {
    top: 55px !important;
}
.top-60 {
    top: 60px !important;
}

/**
 *background
 */
.bg-red {
    background-color:#f00 !important;
}
.bg-readonly-white {
    background-color:#ffffff !important;
}
.bg-readonly-gray {
    background-color:#c7c7c7 !important;
}