@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/**
*白藤が変更したとこは「白藤」で検索すればわかる
*/
:root {
	--bs-blue: #306DFF;
	--bs-indigo: #6610f2;
	--bs-purple: #6f42c1;
	--bs-pink: #d63384;
	--bs-red: #E50C0C;
	--bs-orange: #fd7e14;
	--bs-yellow: #ffc107;
	--bs-green: #198754;
	--bs-teal: #20c997;
	--bs-cyan: #0dcaf0;
	--bs-white: #fff;
	--bs-gray: #6c757d;
	--bs-gray-dark: #232323;
	--bs-gray-light: #e4e8ec;
	--bs-gray-light02: #BDBDBD;
	/*  --bs-primary: #0d6efd;*/
	--bs-primary: #008ea6;
	--bs-primary-dark: #006273;
	--bs-secondary: #6c757d;
	--bs-success: #198754;
	--bs-info: #0dcaf0;
	--bs-warning: #ffc107;
	--bs-danger: #DF2727;
	--bs-light: #f8f9fa;
	--bs-dark: #212529;
	--bs-font-sans-serif: 'Roboto','Noto Sans JP',system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	
	--bs-sidebar:280px;
	--bs-sidebar-icon:40px;
}

.table {
	--bs-table-bg: transparent;
	--bs-table-bg: #fff;
	--bs-table-accent-bg: transparent;
	--bs-table-striped-color: #212529;
	--bs-table-striped-bg: rgba(0, 0, 0, 0.025);
	--bs-table-striped-bg: #f5f5f5;
	--bs-table-active-color: #e6f4f6;
	--bs-table-active-bg: rgba(0, 0, 0, 0.05);
	--bs-table-active-bg: #008ea6;
	--bs-table-hover-color: #212529;
	--bs-table-hover-bg: rgba(0, 0, 0, 0.055);
	--bs-table-header-bg: rgba(0, 0, 0, 0.075);
}
.table thead th {
	background: var(--bs-table-header-bg);
}





body {
	font-size: .85rem;
/*	background: #f5f5f5;*/
	position: relative;
}

.feather {
	width: 16px;
	height: 16px;
	vertical-align: text-bottom;
}



/* テキスト色変え */
.text-primary {
	color: var(--bs-primary)!important;
}
.text-secondary {
	color: var(--bs-secondary)!important;
}
.text-success {
	color: var(--bs-success)!important;
}
.text-info {
	color: var(--bs-info)!important;
}
.text-warning {
	color: var(--bs-warning)!important;
}
.text-danger {
	color: var(--bs-danger)!important;
}
.text-light {
	color: var(--bs-light)!important;
}
.text-dark {
	color: var(--bs-dark)!important;
}
.text-white {
	color: var(--bs-white)!important;
}
.text-body {
	color: var(--bs-body)!important;
}
.text-muted {
	color: var(--bs-muted)!important;
}






/* もろもろ設定 */
.hide-in-advance {
  display: none;
}
.bg-body {
	background: #f5f5f5!important;
}
.rounded {
	border-radius: 0.5em!important;
}
.shadow-sm {
	box-shadow: 0 .125rem .4rem rgba(0,0,0,.2)!important;
}


.scrollarea {
	overflow-y: auto;
}

.fw-semibold { font-weight: 600; }
.lh-tight { line-height: 1.25; }




#main {
	width: calc(100% - var(--bs-sidebar));
	margin-left: var(--bs-sidebar);
/*	transition-duration: .3s;*/
}
.is-close + #main {
	width: calc(100% - var(--bs-sidebar-icon));
	margin-left: var(--bs-sidebar-icon);
}


@media (max-width: 767.98px) {
	#main {
		margin-left: 0;
	}
}

/*
 * Sidebar
 */

.sidebar {
	width: var(--bs-sidebar);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 100; /* Behind the navbar */
	padding: 0; /* Height of navbar */
	box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
	background: rgb(93,93,93);
	background: linear-gradient(137deg, rgba(93,93,93,1) 0%, rgba(36,36,36,1) 100%);
}

.sidebar::before {
	content:'';
	background: var(--bs-gray-dark);
	width: 40px;
	height: 100%;
	position: absolute;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
}

@media (max-width: 767.98px) {
/*	.sidebar {
		top: 5rem;
	}*/
}




/* ロゴ */
.navbar-brand {
	display: block;
	margin: 0 auto 0 var(--bs-sidebar-icon);
	padding: 1rem .5rem;
	font-weight: 500;
}
.navbar-brand:hover {
	background: rgba(0,0,0,0.1);
}

.navbar-brand img {
	width: 30px;
}




/* サイドメニュー */

.nav {
	z-index: 1000;
	position: relative;
}

#sidebarMenu .nav-link {
	display: block;
	padding: .5rem .8rem;
	font-weight: 500;
	color: var(--bs-light);
	text-decoration: none;
}
#sidebarMenu .nav-link.active,
#sidebarMenu .nav-link:hover {
	background: rgba(255,255,255,0.3);
}
#sidebarMenu .accordion_menu li .nav-link {
	padding: .4rem .5rem .4rem 2rem;
}

#sidebarMenu .nav-item .menu_icon ,
#sidebarMenu .accordion_menu li .menu_icon {
	display: inline-block;
	display: block;
	padding: .3rem 0;
	width: var(--bs-sidebar-icon);
	text-align: center;
}

#sidebarMenu .nav-item .menu_icon .icon_img_close {
}
#sidebarMenu .nav-item .menu_icon .icon_img_open {
	display: none;
}
#sidebarMenu.is-close .nav-item .menu_icon .icon_img_close {
	display: none;
}
#sidebarMenu.is-close .nav-item .menu_icon .icon_img_open {
	display: inline;
}

#sidebarMenu .accordion_menu li span.active {
	background: rgba(255,255,255,.05);
}

/* アコーディオンメニュー */

#sidebarMenu ul.accordion_menu,
#sidebarMenu .accordion_menu li {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
}

#sidebarMenu .accordion_menu a[data-bs-toggle="collapse"]{
	display: inline-block;
	text-decoration: none;
	position: relative;
}
#sidebarMenu .accordion_menu > ul {
	padding-left: 0;
	margin-left: var(--bs-sidebar-icon);
}

#sidebarMenu .accordion_menu a[data-bs-toggle="collapse"]::after{
	content:"";
	display: block;
	position: absolute;
	right: 1em;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 6px 0 6px;
	border-color: #ffffff transparent transparent transparent;
}

#sidebarMenu .accordion_menu a[aria-expanded=false]::after{
	transition-duration: 0.3s;
}

#sidebarMenu .accordion_menu a[aria-expanded=true]::after{
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	transition-duration: 0.3s;
}

/* サイドバーアイコン */
.sidebar_icon_content {
	display: none;
}



/* アニメーション前のメニューの状態 */
#sidebarMenu {
	width: var(--bs-sidebar);
	transition-duration: .3s;
}
/* アニメーション後のメニューの状態 */
#sidebarMenu.is-close {
	width: var(--bs-sidebar-icon);
	transform: translateX(0);
}


#sidebarMenu .nav-item .nav-link {
	display: block;
	transform: translateX(0);
	transition-duration: .3s;
}

#sidebarMenu.is-close .nav-item .nav-link {
	white-space: nowrap;
	transform: translateX(-300px);
}

#sidebarMenu .accordion_menu > ul {
	width: auto;
	overflow: hidden;
	white-space: nowrap;
	transition-duration: .3s;
}
#sidebarMenu.is-close .accordion_menu > ul {
	width: 0!important;
}

#sidebarMenu .accordion_menu > ul .nav-link {
	width: auto;
	overflow: hidden;
	white-space: nowrap;
	transition-duration: .3s;
}
#sidebarMenu.is-close .accordion_menu > ul .nav-link {
	width: 0!important;
}
/*
#sidebarMenu .accordion_menu a[data-bs-toggle="collapse"] {
	width: auto;
	transform: translateX(0);
	transition-duration: .3s;
}
#sidebarMenu.is-close .accordion_menu a[data-bs-toggle="collapse"] {
	width: 0;
	white-space: nowrap;
	overflow: hidden;
	transform: translateX(-300px);
	
}
*/


#sidebarMenu .navbar-brand {
	transform: translateX(0);
	transition-duration: .3s;
}

#sidebarMenu.is-close .navbar-brand {
	transform: translateX(-300px);
}




/* スマホ版ヘッダー */
#header_menu {
	display: none;
}
@media (max-width: 767.98px) {
	#header_menu {
		display: block;
		background: linear-gradient(137deg, rgba(93,93,93,1) 0%, rgba(36,36,36,1) 100%);
	}
	#header_menu .navbar-brand {
		margin-left: 0;
		text-align: left;
	}
	.btn_header_menu {
		display: flex;
		align-items: center;
		height: 100%;
		padding: 0 .5em;
		font-size: 26px;
		cursor: pointer;
	}
	
	#sidebarMenu.is-sp-open {
		display: block;
	}
	#sidebarMenu.is-sp-open .menu_close {
		display: none!important;
	}
}






.table thead th {
/*	background-color: rgba(0,0,0,0.1);*/
}

/* 見出し */
.h2-gray, h2.h2-gray {
	margin-bottom: 0.8em;
	padding: 0.5em;
	font-size: 1rem;
	background: var(--bs-gray-light);
	background: rgba(0,0,0,0.15);
}

.h2 {
	font-weight: 700;
}






/* ボタンのベース変更 */
.btn {
	border-radius: 1.25rem;
	padding: .6rem 1rem;
	font-weight: 500;
	line-height: 1;
	font-size: .9rem;
/*
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	
	font-size: 1rem;
	border-radius: 0.25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;*/
}
.btn i {
	margin-right: 0.4em;
}
.btn img {
	margin-right: 0.4em;
	height: 1rem;
}
.btn svg {
	margin-right: 0.5em;
	width: auto!important;
	height: 1rem!important;
	fill: currentColor;
	vertical-align:text-top;
}

/* ボタン　色変え */
.btn-primary {
	background: var(--bs-primary);
	border: 1px solid var(--bs-primary);
}
.btn-primary:hover {
/*	color: #fff;*/
	background-color: var(--bs-primary-dark);
	border-color: var(--bs-primary-dark);
}
.btn-outline-primary {
	color: var(--bs-primary);
	border-color:var(--bs-primary);
}
.btn-outline-primary:hover {
	color: #fff;
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}

.btn-group-sm>.btn, .btn-sm {
	padding: 0.25rem 0.5rem;
	font-size: .8rem;
}


.btn-no-bc {
	padding: .2rem .5rem;
	background: none;
	color: var(--bs-primary);
	font-size: 1rem;
}
.btn-no-bc:hover {
	color: var(--bs-primary-dark);
}
.btn-no-bc.disabled,
.btn-no-bc:disabled {
	color: var(--bs-gray-light02);
	opacity: 1;
}

.btn-primary.disabled,
.btn-primary:disabled {
	background-color: var(--bs-gray-light02);
	border-color: var(--bs-gray-light02);
	opacity: 1;
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
/*	background-color: var(--bs-gray-light02);*/
	color: var(--bs-gray-light02);
	border-color: var(--bs-gray-light02);
	opacity: 1;
}



.btn_inline {
	border-radius: 1.25rem;
	padding: 0;
}


/* フォーム */
.form-label {
	margin-bottom: 0.2rem;
	font-weight: 600;
	color: var(--bs-primary);
}

.form-control {
	font-size: .85rem;
	border: none;
	border-radius: 0.35rem;
}
.form-control {
	transition: outline .15s ease-in-out;
}

.form-signin input[type="text"].form-control {
	margin-bottom: -1px;
	border-bottom-right-radius: 0!important;
	border-bottom-left-radius: 0!important;
}

.form-signin input[type="password"].form-control {
	margin-bottom: 10px;
	border-top-left-radius: 0!important;
	border-top-right-radius: 0;
}
input[type="month"],
input[type="date"]{
	display: inline-block;
	width: auto;
	padding: 0.375rem 0.75rem;
	font-size: .85rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.35rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.form-check-radio:focus,
input[type="month"]:focus,
input[type="date"]:focus {
	outline: 1px solid var(--bs-primary);
	box-shadow: none;
}
.form-control::file-selector-button {
	border: none;
	background: var(--bs-primary);
	color: var(--bs-white);
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
	background: var(--bs-primary-dark);
}


/* チェックボックス */
.form-check-input {
	width: 1.2em;
	height: 1.2em;
	margin-top: 0.1em;
	vertical-align: top;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 1px dashed var(--bs-primary);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0!important;
}
.form-check-input:checked {
	background-color: var(--bs-primary)!important;
	border: 1px solid var(--bs-primary)!important;
}



::placeholder{
	color: var(--bs-gray-light02)!important;
}
.form-floating .form-control::placeholder {
	color: transparent!important;
}



.form-select {
	font-size: .85rem;
	border: none;
	border-radius: 0.35rem;
}
.input-group-form {
	position: relative;
	width: 100%;
}
.input-group-form .form-control {
	padding-left: 2.2rem;
}
.input-group-pass .form-control {
	padding-right: 2.2rem;
}
.input-group-form .form-select {
	padding-left: 2.2rem;
}
.input-group-icon,
.input-group-icon-pass {
	display: block;
	display: flex;
	position: absolute;
	top: 0;
	left: 1px;
	justify-content: center;
	align-items: center;
	padding: 0.375rem 0.2rem 0.375rem 0.5rem;
	font-size: .85rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--bs-gray-light02);
	text-align: center;
	white-space: nowrap;
	border-radius: 0.25rem;
}
.input-group-icon-pass {
	padding: 0.375rem 0.75rem 0.375rem 0.2rem;
	left: inherit;
	right: 1px;
}
.input-group-icon svg {
	fill: currentColor!important;
}
.form-control:focus + .input-group-icon,
.form-select:focus + .input-group-icon,
.form-check-input:focus + .input-group-icon,
.form-check-radio:focus + .input-group-icon {
	color: var(--bs-primary);
}


/* エラー 
.form-label.form-label-error {
	color: var(--bs-danger);
}
.form-error {
	border: 1px solid var(--bs-danger);
}
.form-control.form-error + .input-group-icon,
.form-select.form-error + .input-group-icon,
.form-check-input.form-error + .input-group-icon,
.form-check-radio.form-error + .input-group-icon {
	color: var(--bs-danger);
}
*/
/* エラー 白藤20220406バリデート用に変更*/
.form-label.form-label-error {
	color: var(--bs-danger);
}
.form-error {
	border: 1px solid var(--bs-danger);
}
.form-control.form-error + .input-group-icon,
.form-select.form-error + .input-group-icon,
.form-check-input.form-error + .input-group-icon,
.form-check-radio.form-error + .input-group-icon {
	color: var(--bs-danger);
}
.form-control.error {
	border: 1px solid var(--bs-danger);
}
.input-group-form .form-control.error,
.form-select.error + .input-group-form,
.form-check-input.error + .input-group-form,
.form-check-radio.error + .input-group-form {
	color: var(--bs-danger);
}


.form_img img {
	max-width: 150px;
	height: auto;
}



/* モーダル */
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: .6rem;
	outline: 0;
}
.modal-header {
	padding: 1.5rem 2rem;
	border-bottom: none;
	border-top-right-radius: .6rem;
	border-top-left-radius: .6rem;
}
.modal-body {
	padding: .5rem 2rem;
	font-weight: 500;
}

.modal-footer {
	padding: 0.5rem 2rem 1.5rem;
	border-top: none;
	border-bottom-right-radius: .6rem;
	border-bottom-left-radius: .6rem;
}
.modal-title {
	font-weight: 700;
}


.main-name {
	color: #484848;
	font-size: 1rem;
	font-weight: 900;
}




/* 検索のインプット */

.input-search .form-control {
	border: none;
}
.btn-search {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: #fff;
	border: none;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	border-radius: 0.25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


a.btn_back,
.btn_back {
	padding: 0;
	text-decoration: none;
	color: var(--bs-dark);
	font-size: 1.35rem;
	background: transparent;
	border: none;
}
a.btn_link,
.btn_link {
	text-decoration: none;
	color: var(--bs-primary);
	font-weight: 700;
}
.btn_link i {
	margin-right: .4em;
}
.btn_link svg {
	margin-right: .4em;
/*	width: auto!important;
	height: 1rem!important;*/
	fill: currentColor;
	vertical-align: bottom;
}
a.btn_link:disabled,
.btn_link:disabled {
	color: var(--bs-gray-light02);
}

.btn_link_big {
	display: block;
	padding: .8em;
	text-align: center;
}



/* テーブルまわり */
.h3-table {
	font-size: .9rem;
	font-weight: 700;
}




tr.table-primary {
	--bs-table-bg: var(--bs-primary);
	--bs-table-striped-bg: var(--bs-primary);
	--bs-table-striped-color: var(--bs-white);
	--bs-table-active-bg: var(--bs-primary);
	--bs-table-active-color: var(--bs-white);
	--bs-table-hover-bg: var(--bs-primary-dark);
	--bs-table-hover-color: var(--bs-white);
	color: var(--bs-white);
/*	border-color: #bacbe6;*/
}
.table-striped>tbody>tr.table-primary:nth-of-type(odd) {
	--bs-table-striped-bg: var(--bs-primary-dark);
	--bs-table-accent-bg: var(--bs-primary);
	--bs-table-hover-bg: var(--bs-primary-dark);
	--bs-table-hover-color: var(--bs-white);
	color: var(--bs-white);
}
.table-hover>tbody>tr.table-primary:hover {
  --bs-table-accent-bg: var(--bs-primary-dark);
  color: var(--bs-white);
}
.table-striped>tbody>tr.table-primary:nth-of-type(odd) a{
	color: var(--bs-white);
}


/* table_height */
.tabl_height {
	height: 45vh;
/*	max-height: 400px;*/
	overflow-y: scroll;
}
.tabl_height_harf {
	height: 24vh;
/*	max-height: 400px;*/
	overflow-y: scroll;
}

.table-auto .table {
/*	width: auto!important;*/
}
.table-stikcy-wrap {
	height: 60vh;
	overflow-y: scroll;
}
.table-stikcy-wrap .table {
	position: relative;
}
.table-stikcy {
	position: relative;
/*	border-collapse: collapse; */
}
.table-stikcy-wrap .table thead th,
.table-stikcy thead th {
	position: sticky;
	top: 0;
	background: #e6e6e6;
	
}
.table-stikcy-wrap .table thead th:first-child,
.table-stikcy thead th:first-child {
	z-index: 100;
}
.table-stikcy-wrap tr th:first-child,
.table-stikcy tr th:first-child {
	position: sticky;
	left: 0;
}

.tbl_icon {
	margin: 0 .2rem;
}
.tbl_icon_true {
	color: var(--bs-primary);
}
.tbl_icon_true02 {
	color: var(--bs-dark);
}
.tbl_icon_false {
	color: var(--bs-gray-light02);
}


/* card */
.card-img {
	max-width: 100%;
	border-radius: .5em;
}
.card-title {
	font-size: 1.1rem!important;
	line-height: 1.6;
}



/* タブ */
.nav-tabs .nav-link {
	margin-right: .25rem;
	border-color: #dee2e6 #dee2e6 #dee2e6;
	color: var(--bs-primary);
}
.nav-tabs .nav-link:hover {
	background: var(--bs-primary);
	color: var(--bs-white);
}

.tab-content {
	background: var(--bs-white);
}



/* モーダル */
.modal-footer {
	justify-content: center;
}
.modal-body-center {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
/* カレンダー */
.table-calender {
	width: 100%;
	width: auto;
	margin: 0 auto;
	color: #212529;
}
.table-calender th,
.table-calender td {
	text-align: center;
	font-weight: normal;
}
.table-calender th {
	width: cal(100% / 7);
	padding: 0.2em;
}
.table-calender td {
	padding: 0;
	border:2px solid #f5f5f5;
}
.table-calender .sat {
	color: var(--bs-blue);
}
.table-calender .sun {
	color: var(--bs-red);
}

.check-cal {
	display: none;
}
.check-cal + label ,
.check-cal-true + label{
	display: inline-block;
	width: 2em;
	text-align: center;
	padding: 0.2em 0;
	box-sizing: border-box;
/*	background: #ccc;*/
	
}
/*
.check-cal-true + label{
	background: var(--bs-primary);
	color: var(--bs-white);

	cursor: pointer;
}

.check-cal:checked + label,
.check-cal-true:checked + label {
	border: 1px dashed var(--bs-primary);
	color: var(--bs-dark);
	background: transparent;
}
*/

.check-cal:checked + label{
	border: 1px dashed var(--bs-primary);
	color: var(--bs-dark);
	background: transparent;
}
.check-cal-true:checked + label {
	background: var(--bs-primary);
	color: var(--bs-white);
	cursor: pointer;
}


.btn-year-change {
	padding: .5rem;
	border-radius: .4rem;
}
.btn-year-change i {
	margin: 0;
}
/*
.table-calender td.active {
	background: var(--bs-primary);
	color: #fff;
	position: relative;
}
.table-calender td.active:before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	vertical-align: top;
	border-radius: 4px;
	background: #fff;
	position: absolute;
	top: 0.5em;
	right: calc(50% - 4px);
}*/


.fc-daygrid-day-number {
/*	background: #ccc;*/
}




.dashboard-title {
	padding: 0.5em;
	font-size: 1rem;
	font-weight: 500;
	background: #e6e6e6;;
}

.progress {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 1rem;
	overflow: hidden;
	font-size: 0.75rem;
	border-radius: 0;
}

.progress-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background-color: #2c7be5;
	-webkit-transition: width .6s ease;
	-o-transition: width .6s ease;
	transition: width .6s ease
}


.rank-num {
	display: inline-block;
	margin-right: 0.3em;
	width: 1.6em;
	height: 1.6em;
	line-height: 1.6;
	background: var(--bs-gray);
	color: #fff;
	border-radius: 50%;
	text-align: center;
	align-items: middle;
}
.ranking-border {
	border-left: 1px solid #ccc;
}


/* 数字出るとこ */
.dashboard-num .card-body {
	padding: 0.5em 1em 1em;
}
.dashboard-num .card-title {
	font-size: .9rem!important;
	text-align: center;
}
.dashboard-num .card-num {
	font-size: 1.8rem;
	text-align: center;
}

.dashboard-num .card-num-tanni {
	padding: 0;
	text-align: right;
	font-size: .7rem;
}

a#link-hover:hover {
	background-color: #008ea644;
}

.list_price_img {
	max-width: 200px;
}
.list_price_img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* テーブル用のカード */
.tbl_card {
	margin-bottom: 0;
	text-align: center;
}
.tbl_card dt {
	font-size: .7rem;
	color: var(--bs-gray);
}
.tbl_card dd {
	font-size: 1rem;
	font-weight: bold;
}
.tbl_card_notset dd {
	color: var(--bs-primary);
}
.tbl_card_notset dd.notset_true {
	color: var(--bs-red);
}
.tbl_card .unit {
	margin-left: 0.1rem;
	font-size: .7rem;
	font-weight: normal;
}

/* 売上一覧ソートアイコン */
#settlement th.sort::after{
	content:"";
	display: block;
	position: absolute;
	right: 0.2rem;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 6px 8px 6px;
	border-color: transparent transparent #ffffff transparent;
	transition-duration: 0.3s;
}

#settlement th.desc::after{
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	transition-duration: 0.3s;
}

/* 電子ジャーナル検索 */
#journal-list th.sort::after{
	content:"";
	display: block;
	position: absolute;
	right: 0.2rem;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 6px 8px 6px;
	border-color: transparent transparent #ffffff transparent;
	transition-duration: 0.3s;
}

#journal-list th.desc::after{
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	transition-duration: 0.3s;
}



/* 料金設定あたり */

a.btn_price,
.btn_price {
	display: block;
	color: var(--bs-dark);
	text-decoration: none;
	padding: 1em;
	text-align: center;
	font-size: 1rem;
	border-radius: .5rem;
	border: none;
	background: var(--bs-white);
}
a.btn_price i,
.btn_price i {
	color: var(--bs-primary);
	font-size: 2rem;
}
.btn_price_icon {
	margin-top: .2rem;
	display: block;
	text-align: center;
	color: var(--bs-primary);
}

.fee_id {
	font-size: 80%;
}

.btn_fee_edit {
	display: inline-block;
	width: 1.6em;
	height: 1.6em;
	border-radius: 50%;
	background: var(--bs-dark);
	color: var(--bs-white);
	text-align: center;
	line-height: 1.6em;
	font-size: .8rem;
}
.btn_fee_edit i {
}
.btn_fee_edit:hover {
	color: var(--bs-white);
}

.btn_fee_save,
.btn_fee_del {
	display: inline-block;
	padding: 0.2em 0;
	border: none;
	background: none;
}
.btn_fee_del {
	color: var(--bs-red);
}
.btn_fee_save {
	color: var(--bs-primary);
}

.fee_box {
/*	max-width: 700px;*/
	min-width: 620px;
}

/* 料金体系の切り替えタブ */
.nav-tabs-fee {
	border: 1px solid var(--bs-primary);
	border-radius: .25rem;
}

.nav-tabs-fee .nav-link {
	width: 100%;
	border: none;
	color: var(--bs-primary);
	background: transparent;
}

.nav-tabs-fee .nav-link:focus,
.nav-tabs-fee .nav-link:hover {
	border-color: #e9ecef #e9ecef #dee2e6;
	isolation: isolate
}
.nav-tabs-fee .nav-item.show .nav-link,
.nav-tabs-fee .nav-link.active {
	color: var(--bs-white);
	background-color: var(--bs-primary);
	border-color: #dee2e6 #dee2e6 #fff
}

.fee_box_add {
/*	background: var(--bs-gray-light);*/
}
.fee_box_add .tab-content {
	background: transparent!important;
}
.fee_box_add  .table {
	--bs-table-bg: transparent!important;
}
.fee_box_add input[type="checkbox"]:disabled + label {
/*	color: var(--bs-gray-light02);*/
}
	
	
.slider_fee_wrap {
	width: 100%;
	overflow: hidden;
/*	padding:120px 0;*/
/*	background: #ccc;*/
	margin-bottom: 40px;
}
.slider_fee_inner{
}
.slider_fee{
	width: 100%;
	position: relative;
}
.slider_fee_carousel .slick-slide {
	padding: 10px 0;
}

.slick-list{
	overflow: visible;
}
.slick-next,
.slick-prev {
	width: 36px;
	height: auto;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,.5);
	transform: translate(0, 0);
}
.slick-next {
	right: 0;
	border-radius: .5rem 0 0 .5rem;
}
.slick-prev {
	left: 0px;
	border-radius: 0 .5rem .5rem 0;
}
.slick-next:before {
	content: '\F285';
}
.slick-prev:before {
	content: '\F284';
}
.slick-prev:before, .slick-next:before {
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-size: 36px;
	line-height: 1;
	opacity: .75;
	color: var(--bs-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: inherit;
	outline: none;
	background: rgba(0,0,0,.5);
	opacity: .8;
}

.slick-disabled,
.slick-prev.slick-disabled:hover,
.slick-prev.slick-disabled:focus,
.slick-next.slick-disabled:hover,
.slick-next.slick-disabled:focus {
	opacity: 0;
	cursor: inherit;
}


.slider_fee_wrap_add .slick-prev,
.slider_fee_wrap_add .slick-next {
	opacity: 0;
}

.fee_box.slick-current .view_fee_box .row.rounded {
	border: 3px solid var(--bs-primary);
}



/* 車室設定用 */
.check_lot_list {
/*	display: flex;
	flex-wrap: wrap;*/
}
.check_lot_box {
	margin-left: -1px;
	margin-bottom: 1.6rem;
}
.check_lot {
	display: none;
}
.check_lot_img {
	display: block;
	width: .7rem;
	height: 1.1rem;
	margin: 0 auto.2rem;
	background: var(--bs-gray-light02);
	border-radius: .2rem;
}
.check_lot_num {
	display: block;
	margin-top: .2rem;
	font-weight: bold;
	font-size: .8rem;
	color: var(--bs-gray-light02);
}
.check_lot + label {
	display: block;
	width: 1.8rem;
	text-align: center;
	padding: .2rem .2rem;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
}
.check_lot + label::before,
.check_lot + label::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	width: 1px;
	height: 1.5rem;
	background: var(--bs-gray-light02);
}
.check_lot + label::before {
	left: 0;
}
.check_lot + label::after {
	right: 0;
}
/*白藤削除 20220422 すでに登録されているとき　かつ　チェックされていないときは背景は通常と同じ透明
.check-cal-true + label{
	background: var(--bs-primary);
	color: var(--bs-white);
	cursor: pointer;
}
*/
.check_lot:checked + label,
.check-cal-true:checked + label {
}
.check_lot:checked + label::before,
.check-cal-true:checked + label::after {
	background: var(--bs-dark);
}
	
.check_lot:checked + label .check_lot_img,
.check-cal-true:checked + label .check_lot_img {
	background: var(--bs-primary);
}
.check_lot:checked + label .check_lot_num,
.check-cal-true:checked + label .check_lot_num {
	color: var(--bs-primary);
}


.fee_add .tab-content {
	background: transparent!important;
}
.fee_add  .table {
	--bs-table-bg: transparent!important;
}






.del_check {
	display: none;
}
.del_check + label {
	display: block;
	width: 1.8rem;
	text-align: center;
	padding: .2rem .2rem;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
	font-size: 1.1rem;
	color: var(--bs-gray-light02);
}
.del_check:checked + label {
	color: var(--bs-primary);
}



/* 満空状態の車室 */
.lot_box {
	display: block;
	width: 1.8rem;
	margin-left: -1px;
	margin-bottom: 1.6rem;
	
	text-align: center;
	padding: 0.2rem 0.2rem;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
}
	
.lot_box::before,
.lot_box::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	width: 1px;
	height: 1.5rem;
	background: var(--bs-dark);
}
.lot_box::before {
	left: 0;
}
.lot_box::after {
	right: 0;
}

.lot_img {
	display: block;
	width: 0.7rem;
	height: 1.1rem;
	margin: 0 auto 0.2rem;
	background: var(--bs-dark);
	border-radius: 0.2rem;
}
.lot_img.empty {
	border: 1px dashed var(--bs-dark);
	background: transparent;
}
.lot_num {
	display: block;
	margin-top: 0.2rem;
	font-weight: bold;
	font-size: .8rem;
}



.num_tani {
	font-size: 60%;
}

/**
*白藤追加20220406 バリデート用エラー文
*/
label.error {
    display: block;
    color: #ff0000;
    background: #ffefef;
    margin: 0.5em 0;
    padding: 5px;
    font-weight: bold;
}

/**
*白藤追加20220421 初期資金設定の右側はグレー
*/
.change_amount_setting_disabled {
	/*background-color: var(--bs-gray-light02);*/
	color: var(--bs-gray-light02);
	border-color: var(--bs-gray-light02);
}

/**
*白藤追加20220625 料金設定コピー対象のデザイン
*/
.select-frame-class-fee {
	border-color: var(--bs-primary);
	border-style: solid;
	border-width: 5px;
}

.container-print-detail {
	display: flex;
}

.journal-list-table {
	flex: 1;
	margin-right: 1%;
}

.form-check-inline {
	margin-right: 0.5rem;
}

#print-button {
	width: 90px;
}

.journal-list-table {
	overflow-x: auto;
	max-height: 650px; 
	overflow-y: auto;
}

.table-hidden{
	display: none;
}

#journal-filename{
	display: none;
}
#print-detail{
	font-family: Roboto;
}

@media print {
	body * {
	display: none;
	font-family: Meiryo UI, sans-serif;
	}

	@page { 
	margin-top: 0; 
	margin-bottom: 0;
	}

	#print-detail {
		display: block !important;
		position: static !important;
		visibility: visible !important;
		font-size: 11px;
	}
}


