/*ページ共通のCSS*/
/*ヘッダー*/
@media ( max-width : 767px) {
    nav {
        overflow: hidden;
    }
}
.navbar-header table td{
    padding: 0px;
}

.navbar_color {
    background-color: #1F4E79;
    color: #ffffff;
}

.navbar_obj{
    height: 50px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled= false);
    background-repeat: repeat-x;
    --bs-navbar-padding-y: 0rem;
}

td .navbar-brand {
    color: #fff;
    font-size: 35px;
    min-width: 485px;
}

td .navbar-brand:hover, td .navbar-brand {
    color: #fff;
    font-size: 35px;
}

.navbar_item {
    list-style: none;
    padding-top: 25px;
}

.navbar_item a {
    text-decoration: none;
}

.navbar_item li a, .navbar_item li input {
    color: #fff;
}

.dropdown-menu {
    background-color: #2E75B6;
}

.dropdown-menu li:focus, .dropdown-menu li:active {
    background-color: #9DC3E6;
    color: #2D5194;
}

/*サイドメニュー*/
ul.sidenav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #2E75B6;
    position: relative;
    overflow: auto;
    white-space: nowrap;
    font-size: 14px;
}

ul.sidenav li a {
    display: block;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
}

ul.sidenav li a.active {
    background-color: #9DC3E6;
    color: #2D5194;
}

ul.sidenav li a:hover:not(.active) {
    background-color: #9DC3E6;
    color: #2D5194;
}

div.content {
    margin-left: 25%;
    padding: 1px 16px;
    height: 1000px;
}

/*
@media screen and (max-width: 900px) {
    ul.sidenav {
        width: 100%;
        height: auto;
        position: relative;
    }
    ul.sidenav li a {
        float: left;
        padding: 15px;
    }
    div.content {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    ul.sidenav li a {
        text-align: center;
        float: none;
    }
}
*/


input[type="submit"]:not(.dropdown-item) {
    border-radius: 30px;
    padding: 5px;
    margin: 5px;
}

/*ボタン*/
button {
    border-radius: 30px;
    padding: 5px;
    margin: 5px !important;
}

.btn_list {
    padding: 3px;
    margin: 0px !important;
}


.btn_color1 {
    background-color: #2E75B6;
    color: #fff;
    border-color: #fff;
}

.btn_color2 {
    background-color: #9DC3E6;
    color: #2D5194;
    border-color: #fff;
}

/* 【修正：A009】無効ボタン色 */
.btn_color_disabled {
    background-color: #6c757d;
    color: #585858;
    border-color: #fff;
}

.xlarge {
    width: 160px;
}

.large {
    width: 130px;
}

.middle {
    width: 80px;
}

.small {
    width: 40px;
}

/*テーブル*/
table {
    margin-bottom: 10px;
}

table td {
    padding: 5px;
}

/* テキストエリア */
textarea {
    /* サイズ変更させない */
    resize: none
}

/* formのsubmitもボタンと同じスタイルを適用する */
input[type="submit"]:not(.dropdown-item){
    border-radius: 30px;
    padding: 5px;
    /* 画面によってoffsetを指定したりするためmarginは指定しない */
    /* margin: 5px; */
}

/* カーソルを指文字にする */
.cursor-pointer{
  cursor: pointer;
}

input[type="radio"], input[type="checkbox"]{
    cursor: pointer;
}

/*本体部分*/
html, body, article {
  height: 100%;
  font-size: 14px;
}

.main_part {
    color: #2D5194;
    padding: 0px;
    overflow-y: auto;
    height: 100%
}

.above {
    background-color: #DEEBF7;
    padding: 15px;
}

.below {
    padding: 15px;
}

.scroll{
    overflow-x: auto;
}

.underline {
    border-bottom: solid 1px #2D5194;
    padding: 10px;
}

/* select2 下矢印表示 */
.select2-selection--multiple:before {
    content: "";
    position: absolute;
    right: 7px;
    top: 42%;
    border-top: 5px solid #888;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}
