@charset "UTF-8";

/******************** COMMON ********************/
body {
	background: linear-gradient(180deg, #E3EDF9, #DCEFF6);
	color: #333;
	font-size: 100%;
	font-family: "Lato", "Noto Sans JP","Source Sans Pro", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.8;
	position: relative;
}
.wrapper {
	padding: 30px 0;
	background: none;
  overflow-x: hidden;
}

@media screen and (max-width: 991px) {
	.wrapper {
		padding: 0 0 30px;
	}
}

/*** --------------- Button --------------- ***/
.btn {
	padding: 5px 20px;
	/* background: #FFF; */
	border: 1.5px solid #007AC3;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	font-size: 100%;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.8;
	position: relative;
	transition: 0.3s;
}
.btn:hover {
	box-shadow: none;
}
.btn:focus,
.btn:focus-visible {
	outline: revert;
}
.btn-primary {
	background: #007AC3;
	color: #FFF;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background: #0068A7;
}
.btn-primary[disabled="true"],
.btn-primary[disabled="true"]:hover {
	background: #DDD;
	border: none;
	color: #333;
	opacity: 0.8;
}
.btn-danger {
	background: #E02D3C;
	border-color: #E02D3C;
	color: #FFF;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
	background: #CE323F;
}
.btn-default {
	background: #FFF;
	border-color: #FFF;
	color: #007AC3;
}
.btn-default:hover {
	background: #FFF;
	border-color: #007AC3;
	color: #007AC3;
}
.btn-secondary {
	background: #FFF;
	color: #007AC3;
}
.btn-secondary:hover,
.btn-secondary:focus {
	background: #E2EDF9;
	border-color: #007AC3;
	color: #007AC3;
}

/*** --------------- Input --------------- ***/
.form-control {
	height: auto;
	border: 1.5px solid #DDD;
	border-radius: 10px;
	box-shadow: none;
	padding: 8px 15px;
	font-size: 100%;
	letter-spacing: 0.1em;
	line-height: 1.8;
	color: #333;
	transition: 0.3s;
}
.form-control:focus {
	border-color: #DDD;
	outline: auto;
	outline: auto -webkit-focus-ring-color;
}

/*** --------------- Select --------------- ***/
.select2-container .select2-selection--single {
	height: auto;
	min-height: 46px;
	padding: 12px 30px 10px 15px;
	border: 1.5px solid #DDD;
	border-radius: 10px;
	font-size: 100%;
	position: relative;
}
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single {
	border-color: #DDD;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0;
	line-height: 1.5;
}
.select2-container--default .select2-selection--single .select2-selection__arrow::after {
	content: '\f078';
	color: #007AC3;
	font-size: 80%;
	font-family: 'Font Awesome 5 Free';
	font-weight: 800;
	transition: 0.3s;
	position: absolute;
	top: calc(50% - 6px);
	transform-origin: center center;
	right: 10px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow::after {
	transform: rotate(-180deg);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}
.select2-container--default .select2-dropdown {
	border: 1.5px solid #DDD;
	border-radius: 0;
}
.select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-search--inline .select2-search__field:focus {
	border: 1.5px solid #007AC3;
}
.select2-search--dropdown {
	padding: 8px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	border-radius: 5px;
}
.select2-container--default .select2-results__option {
	border-top: 1px solid #DDD;
}
.select2-container--default .select2-results__option[aria-selected=true] {
	background: #E2EDF9;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
	background: #007AC3;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
	cursor: not-allowed;
	opacity: 0.8;
}

/*** --------------- Radio --------------- ***/
.radio-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}
.radio-group input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none;
}
.radio-group label {
	display: inline-block;
	margin: 0;
	padding: 5px 15px;
	background: #fff;
	border: 1.5px solid #007AC3;
	border-radius: 10px;
	color: #333;
	cursor: pointer;
	transition: 0.3s;
	position: relative;
}
.radio-group label:hover {
	background: #E2EDF9;
}
.radio-group input:focus + label {
	outline: auto;
	outline: auto -webkit-focus-ring-color;
}
.radio-group input:checked + label {
	background: #007AC3;
	color: #fff;
}

/*** --------------- Check --------------- ***/
.check-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}
.check-group label {
	display: inline-block;
	margin: 0;
	padding: 5px 15px;
	background: #fff;
	border: 1.5px solid #007AC3;
	border-radius: 10px;
	box-shadow: none;
	color: #333;
	cursor: pointer;
	transition: 0.3s;
	position: relative;
}
.check-group label:hover {
	background: #E2EDF9;
}
.check-group label:has(:focus) {
	outline: auto;
	outline: auto -webkit-focus-ring-color;
}
.check-group label:has(:checked) {
	background: #007AC3;
	color: #fff;
}
.check-group input[type="checkbox"] {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none;
}

/*** --------------- Time --------------- ***/
.date-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 20px;
}
.date-group .date-start,
.date-group .date-stop {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 5px;
}
.date-group .text-spacing {
	margin: 0;
	padding: 0 5px;
}
.date-group select {
	width: 75px;
}

/*** --------------- Date --------------- ***/
input[type=text].datepicker{
    height: auto;
    border: 1.5px solid #DDD;
    border-radius: 10px;
    box-shadow: none;
    padding: 8px 15px;
    font-size: 100%;
    letter-spacing: 0.1em;
    line-height: 1.8;
    color: #333;
    transition: 0.3s;
}

.ui-widget.ui-widget-content {
	border: 1.5px solid #DDD;
	border-radius: 10px;
	font-family: "Lato", "Noto Sans JP";
}
.ui-datepicker .ui-datepicker-header {

	background: #007AC3;
	border: none;
	border-radius: 8.5px 8.5px 0 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	transition: 0.3s;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 0;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 0;
}
.ui-datepicker table {
	margin: 0;
}
.ui-datepicker td {
	padding: 0;
}
.ui-datepicker td span,
.ui-datepicker td a {
	padding: 5px;
	transition: 0.3s;
}
.ui-state-default:hover {
	background: #E2EDF9;
}
.highlight-saturday a {
	background: #D1EEFF;
}
.highlight-saturday a:hover {
	background: #B2E2FF;
}
.highlight-sunday a {
	background: #FFD9DD;
}
.highlight-sunday a:hover {
	background: #FFB9BF;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: none;
  background: #FFFA90;
  color: #333;
}
.ui-state-highlight:hover {
	background: #FFE98B;
}
.ui-datepicker .ui-datepicker-buttonpane {
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 10px;
	background: none;
	border: none;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	margin: 0;
	padding: 5px 20px;
	background: #FFF;
	border: 1.5px solid #DDD;
	border-radius: 10px;
	font-family: "Lato", "Noto Sans JP";
	font-size: 87.5%;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.8;
	position: relative;
	transition: 0.3s;
	float: none;
	opacity: 1;
}
.ui-datepicker .ui-datepicker-buttonpane button:hover {
	background: #E2EDF9;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current:hover {
	background: #FFFA90;
}

/******************** MENU ********************/
#menu_box {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}
.main-sidebar {
	width: 250px;
	height: 100%;
	max-height: 100vh;
	padding: 20px;
	overflow-y: scroll;
	position: relative;
}
.main-sidebar button:focus-visible,
.main-sidebar a:focus-visible {
	outline: revert;
}
.main-sidebar .brand-img-box {
	border-bottom: 1.5px solid #FFF;
	text-align: center;
}
.main-sidebar .brand-img {
	display: inline-block;
	margin: 0 0 20px;
	transition: 0.3s;
}
.main-sidebar .brand-img:hover {
	opacity: 0.8;
}
.main-sidebar .sidebar {
	padding: 0;
	overflow: visible;
}
.sidebar nav {
	margin: 0;
}
.sidebar .menu-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 20px 8px 10px 10px;
}
.sidebar .menu-title h2 {
	margin: 0;
	font-size: 75%;
	font-weight: bold;
}
.sidebar .menu-title .menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	min-height: 32px;
	background: #FFF;
	border: 1.5px solid #FFF;
	border-radius: 50%;
	color: #007AC3;
	transition: 0.3s;
}
.sidebar .menu-title .menu-btn:hover {
	border-color: #007AC3;
	outline: auto;
	outline: auto -webkit-focus-ring-color;
}

/* ----- Main Menu ----- */
.sidebar .nav-sidebar {
	white-space: normal;
  overflow: visible;
}
.sidebar .nav-sidebar .nav-item {
	margin-top: 5px;
	border-radius: 10px;
}
.sidebar .nav-sidebar .nav-link {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 10px;
	border-radius: 10px;
	font-size: 100%;
	white-space: normal;
  overflow: visible;
	position: relative;
	transition: 0.3s;
}
.sidebar .nav-sidebar .nav-link:hover,
.sidebar .nav-sidebar .nav-link.active  {
	background: #FFF;
}
.sidebar .nav-sidebar .menu-open > .nav-link {
	background: #FFF;
	border-radius: 10px 10px 0 0;
}
.sidebar .nav-sidebar .nav-link .icon-menu {
	color: #007AC3;
}
.sidebar .nav-sidebar .nav-link p {
	color: #333;
}
.sidebar .nav-sidebar .nav-link .icon-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	min-height: 20px;
	margin-left: auto;
	margin-right: 3px;
	background: #FFF;
	border-radius: 50%;
	color: #007AC3;
	font-size: 75%;
	transition: 0.3s;
}
.sidebar .nav-sidebar .nav-link .icon-right {
	padding-left: 2px;
}
.sidebar .nav-sidebar .nav-link:hover .icon-right {
	margin-right: 0;
}
.sidebar .nav-sidebar .nav-link .icon-down {
	padding-top: 1px;
	padding-left: 1px;
}
.sidebar .nav-sidebar .nav-link:hover .icon-down {
	margin-top: 5px;
}
.sidebar .nav-sidebar .menu-open .icon-down {
	background: #007AC3;
	color: #FFF;
	transform: scaleY(-1);
}
.sidebar .nav-sidebar .menu-open .nav-link:hover .icon-down {
	margin-top: -5px;
}

/* ----- Sub Menu ----- */
.sidebar .nav-sidebar .nav-treeview {
	padding: 0 5px 10px;
	background: #FFF;
	border-radius: 0 0 10px 10px;
}
.sidebar .nav-sidebar .nav-treeview .nav-item {
	margin: 0;
}
.sidebar .nav-sidebar .nav-treeview .nav-link {
	padding: 6px 10px;
	border-radius: 20px;
	font-size: 87.5%;
}
.sidebar .nav-sidebar .nav-treeview .nav-link:hover,
.sidebar .nav-sidebar .nav-treeview .active{
	background: #E2EDF9;
}
.sidebar .nav-sidebar .nav-link .icon-sub-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 14px;
	min-height: 14px;
	padding-left: 2px;
	background: #007AC3;
	border-radius: 50%;
	color: #FFF;
	font-size: 80%;
	transition: 0.3s;
}

/* ----- User Panel ----- */
.sidebar .user-panel {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 10px;
	margin: 30px 0 0;
	padding-left: 8px;
	color: #007AC3;
	font-size: 87.5%;
	white-space: normal;
  overflow: visible;
}
.sidebar .user-panel dt {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	width: 80px;
	font-weight: 500;
}
.sidebar .user-panel dt i {
	width: 20px;
	padding-top: 6px;
	text-align: center;
}
.sidebar .user-panel dd {
	width: calc(100% - 90px);
	margin: 0;
	color: #333;
}
.sidebar .user-panel p {
	margin: 0;
}

/*** --------------- Menu Close --------------- ***/
@media (min-width: 992px) {
	.sidebar-collapse .main-sidebar {
		padding: 20px 15px;
	}
  .sidebar-mini.sidebar-collapse .main-sidebar:hover {
		width: 4.6rem;
	}
	.sidebar-collapse .sidebar .menu-title {
		padding: 20px 0 10px;
		justify-content: center;
	}
	.sidebar-collapse .sidebar .menu-title h2 {
		position: absolute;
		font-size: 0;
	}
	.sidebar-collapse .sidebar .menu-title .menu-btn {
		transform: scaleX(-1);
	}
	.sidebar-collapse .sidebar .nav-sidebar .nav-link {
		min-width: 20px;
		justify-content: center;
	}
	.sidebar-collapse .sidebar .nav-sidebar .nav-link p {
		position: absolute;
		font-size: 0;
	}
	.sidebar-collapse .sidebar .nav-sidebar .nav-link .icon-arrow {
		display: none;
	}
	.sidebar-collapse .sidebar .user-panel {
		display: none;
	}
}

/*** --------------- Menu SP --------------- ***/
@media screen and (max-width: 991px) {
	#menu_box {
		position: relative;
	}
	#menu_box .main-sidebar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 20px 30px;
		position: relative;
	}
	.main-sidebar .brand-img-box {
		border: none;
	}
	.main-sidebar .brand-img {
		margin: 0;
	}
	.main-sidebar .sidebar {
		display: none;
		width: calc(100% - 60px);
		height: auto;
		max-height: calc(100% - 130px);
		margin: 100px 30px 30px;
		padding: 20px;
		background: linear-gradient(180deg, #E3EDF9, #DCEFF6);
		border-radius: 15px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
	  overflow-y: scroll;
	}
	.main-sidebar .sidebar.active {
		display: block;
	}
	.sidebar-collapse .main-sidebar {
		margin: 0;
	}
	.sidebar .menu-title {
		padding: 15px 15px 5px;
	}
	.sidebar .menu-title .menu-btn {
		display: none;
	}
	.sidebar .nav-sidebar .nav-item {
		margin-top: 10px;
	}
	.sidebar .nav-sidebar .nav-link {
		padding-left: 20px;
	}
	.sidebar .nav-sidebar .nav-treeview {
		padding: 0 10px 10px;
	}
	.sidebar .nav-sidebar .nav-treeview .nav-link {
		padding: 6px 12px;
	}
	.sidebar .user-panel {
		margin: 10px 0 0;
		padding: 20px;
		background: rgba(255, 255, 255, 0.5);
		border-radius: 15px;
	}
}
@media screen and (max-width: 575px) {
	#menu_box .main-sidebar {
		padding: 15px;
	}
	.main-sidebar .sidebar {
		width: calc(100% - 30px);
		max-height: calc(100% - 110px);
		margin: 90px 15px 20px;
		padding: 15px;
	}
}

/* ----- SP Menu Back ----- */
body {
  overflow-y: scroll;
}
body.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sidebar_back {
	width: 100px;
	height: 100px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	position: fixed;
	top: -50px;
	right: -50px;
	z-index: 5;
	transition: 0.5s;
	transform: scale(0);
}
.sidebar_back.active {
	transform: scale(50);
}

@media (min-width: 992px) {
	.sidebar_back,
	.sidebar_back.active {
		display: none;
	}
}

/* ----- SP Menu Btn ----- */
.menu_btn {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: #007AC3;
	border: none;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	color: #FFF;
	cursor: pointer;
	position: relative;
	transition: 0.3s;
	z-index: 9999;
}
.menu_btn:hover {
	background: #0068A7;
	box-shadow: none;
}
.menu_btn:focus {
	outline: 1px solid;
  outline: 2px auto -webkit-focus-ring-color;
}
.menu_btn .text {
	margin: 0;
	font-size: 75%;
	font-weight: 600;
	letter-spacing: 0.15em;
}
.menu_btn .line {
	display: inline-block;
	width: 30px;
	height: 2.5px;
	background: #FFF;
	border-radius: 2px;
	transition: 0.3s;
	position: absolute;
	right: 15px;
}
.menu_btn span:nth-of-type(1) {
	top: 12px;
}
.menu_btn span:nth-of-type(2) {
	top: 21px;
}
.menu_btn span:nth-of-type(3) {
	top: 30px;
}
.menu_btn.active span:nth-of-type(1) {
	top: 21px;
	right: 15px;
	transform: rotate(-45deg);
}
.menu_btn.active span:nth-of-type(2) {
	opacity: 0;
}
.menu_btn.active span:nth-of-type(3){
	top: 21px;
	right: 15px;
	transform: rotate(45deg);
}

@media (min-width: 992px) {
	.menu_btn {
		display: none;
	}
}

/******************** MAIN ********************/
.content-wrapper {
	min-height: auto !important;
  width: calc(100% - 290px);
	padding: 30px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 20px 0 0 20px;
}
.content-wrapper .content {
	padding: 0;
}

@media screen and (max-width: 991px) {
	.content-wrapper {
		border-radius: 0;
    width: 100%;
	}
}
@media screen and (max-width: 575px) {
	.content-wrapper {
		padding: 30px 15px;
	}
}

/*** --------------- Header --------------- ***/
.content-header {
	padding: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: baseline;
  flex-wrap: wrap;
}
.content-header .page-title {
	font-size: 200%;
	font-weight: 400;
	line-height: 1.5;
	position: relative;
}
.content-header .page-title::before {
	content: '\f15b';
	color: #007AC3;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	padding: 0 15px 0 5px;
}

@media screen and (max-width: 768px) {
  .content-header{
    flex-direction: column;
    justify-content: flex-start;
  }
}

/*** --------------- パンクズ --------------- ***/

.pankuzu ul{
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}

.pankuzu ul li{
  list-style: none;
  position: relative;
  padding-right: 2rem;
  font-size: 87.5%;
}

.pankuzu ul li::before{
  content: '\f054';
  color: #0068A7;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0.6rem;
}

.pankuzu ul li:last-child{
  padding-right: 0;
}

.pankuzu ul li:last-child::before{
  content: none;
}

.pankuzu ul li a{
  color: #007AC3;
  text-decoration: underline;
  transition: 0.3s;
}

.pankuzu ul li a:hover{
  text-decoration: none;
}

/******************** パンクズ中メニュー ********************/
.p_menu_list{
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  padding-left: 0;
}

.p_menu_list li{
  list-style: none;
  display: flex;
  width: calc((100% / 3) - 14px);
}

.p_menu_list li button {
  width: 100%;
  display: flex;
  color: #333;
  background-color: #fff;
  border: 1.5px solid #007AC3;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  font-size: 100%;
  white-space: normal;
  overflow: visible;
  position: relative;
  transition: 0.3s;
}

.p_menu_list li button::before{
  content: '';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #007AC3;
  display: inline-block;
  text-align: center;
  width: 1.25em;
}

.p_menu_list li button:hover{
  background-color: #E2EDF9;
  color: #333;
}

.p_menu_list li button.icon-report-storedaily::before {
  content: "\f573";
}

.p_menu_list li button.icon-report-saleslist::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-report-saleslist.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-report-tblstatus::before {
  content: "\f6c0";
}

.p_menu_list li button.icon-report-monthly::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-report-monthly.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-report-monthlystoresaleschart::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-report-monthlystoresaleschart.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-report-abcanalysis::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-report-abcanalysis.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-report-analysismenu::before {
  content: "\f518";
}

.p_menu_list li button.icon-report-daily::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-report-daily.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-report-shirehyou::before {
  content: "\f0ce";
}

.p_menu_list li button.icon-report-tanaoroshihyou::before {
  content: "\f0ae";
}

.p_menu_list li button.icon-report-nbkshukei::before {
  content: "\f541";
}

.p_menu_list li button.icon-report-fooddrinkmonthly::before {
  content: "\f805";
}

.p_menu_list li button.icon-report-sbmshukei::before {
  content: "\f328";
}

.p_menu_list li button.icon-report-payhyou::before {
  content: "\f555";
}

.p_menu_list li button.icon-report-customeranalysis::before {
  content: "\f200";
}

.p_menu_list li button.icon-report-timeanalysis::before {
  content: "\f1da";
}

.p_menu_list li button.icon-report-coursecostanalyz::before {
  content: "\f562";
}

.p_menu_list li button.icon-master-tax::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-tax.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-tgm::before {
  content: "\f0c0";
}

.p_menu_list li button.icon-master-tm::before {
  content: "\f54e";
}

.p_menu_list li button.icon-master-cm::before {
  content: "\f218";
}

.p_menu_list li button.icon-master-cal::before {
  content: "\f133";
}

.p_menu_list li button.icon-master-nb::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-nb.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-crm::before {
  content: "\f3cd";
}

.p_menu_list li button.icon-master-ctm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-ctm.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-khm::before {
  content: "\f4d3";
}

.p_menu_list li button.icon-master-sbm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-sbm.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-sttm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-sttm.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-tkm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-tkm.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-tjm::before {
  content: "\f017";
}

.p_menu_list li button.icon-master-tbm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-tbm.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-ssm::before {
  content: "\f7b6";
}

.p_menu_list li button.icon-master-sm::before {
  content: "\f2e7";
}

.p_menu_list li button.icon-master-sfmp::before {
  content: "\f72f";
}

.p_menu_list li button.icon-master-stsm::before {
  content: "\f055";
}

.p_menu_list li button.icon-master-rd::before {
  content: "\f06a";
}

.p_menu_list li button.icon-master-zzm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-zzm.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-szm::before {
  content: "\f25a";
}

.p_menu_list li button.icon-master-td::before {
  content: "\f46c";
}

.p_menu_list li button.icon-master-tkj::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-tkj.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-tmy::before {
  content: "\f1ec";
}

.p_menu_list li button.icon-master-npd::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-npd.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-cd::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-cd.png) center center / contain no-repeat;
  left: 0;
}

.p_menu_list li button.icon-master-knm::before {
  content: "\f0d6";
}

.p_menu_list li button.icon-file-outputtofile::before {
  content: "\f019";
}

.p_menu_list li button.icon-system-setting::before {
  content: "\f013";
}

.p_menu_list li button.icon-system-unit::before {
  content: "\f0ad";
}

.p_menu_list li button.icon-common-changetm::before {
  content: "\f2f1";
}

.p_menu_list li button.icon-user-user_permission::before {
  content: "\f4fe";
}

.p_menu_list li button.icon-user-user::before {
  content: "\f234";
}

.p_menu_list li button.icon-system-setup::before {
  content: "\f7d9";
}

.p_menu_list li button.icon-system-setup_self::before {
  content: "\f3e0";
}

.p_menu_list li button.icon-system-setup_kpe::before {
  content: "\f071";
}

@media screen and  (max-width: 1199px){
.p_menu_list li{
  width: calc((100% / 2) - 10px);
}
}

@media screen and (max-width: 575px){
  .p_menu_list li{
  width: 100%;
}
}

/*** --------------- List Menu --------------- ***/
.list-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	margin-top: 25px;
}
.list-menu .list-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	width: 100%;
	padding-left: 10px;
}
.list-menu .list-left {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 20px;
}
.list-menu .list-right {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 20px;
	margin-left: auto;
}

@media screen and (max-width: 575px) {
	.list-menu .list-top {
		padding-left: 0;
	}
}

/* ----- List Add ----- */
.list-menu .btn-primary.add {
	padding-left: 15px;
}
.list-menu .btn-primary.add::before {
	content: '\f055';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	padding-right: 8px;
}

/* ----- List Search ----- */
.list-menu .list-search {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.list-menu .list-search .search-icon {
	color: #007AC3;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 15px;
}
.list-menu .list-search .input-field {
	width: 300px;
	height: auto;
	padding: 5px 20px 5px 40px;
	border: 1.5px solid #007AC3;
	border: none;
	border-radius: 20px 0 0 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	letter-spacing: 0.1em;
	transform: 0.3s;
}
.list-menu .list-search .input-field:focus {
	box-shadow: none;
}
.list-menu .btn-default.search {
	border-radius: 0 20px 20px 0;
}

@media screen and (max-width: 575px) {
	.list-menu .list-search .input-field {
		width: calc(100% - 80px);
	}
}

/* ----- List Filter ----- */
.list-menu .list-filter .filter-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3px 10px;
}
.list-menu .list-filter .filter-group:has(.input-year) {
	flex-wrap: nowrap;
	gap: 0;
}
.list-menu .list-filter .filter-group label {
	margin: 0;
	font-weight: 500;
}
.list-menu .list-filter .filter-group p {
	margin: 0;
}
.list-menu .list-filter .filter-group label:has(+ p) {
	width: 100px;
}
.list-menu .list-filter .input-field {
	width: 300px;
	padding-left: 40px;
}
.list-menu .list-filter .input-field.input-year {
	width: 120px;
}
.list-menu .list-filter .input-wrapper {
	position: relative;
}
.list-menu .list-filter .search-icon {
	color: #007AC3;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 15px;
}
.list-menu .list-filter .btn-default.search {
	width: auto;
	border-radius: 20px;
}
.list-menu .list-filter .date-group .select2-container {
	width: 120px !important;
}
.list-menu .list-filter .date-group .select2-container:last-of-type {
	width: 90px !important;
}
.list-menu .list-filter .date-form input {
	padding: 8px 12px;
}

@media screen and (max-width: 575px) {
	.list-menu .list-top {
		gap: 10px;
	}
	.list-menu .list-filter .filter-group,
	.list-menu .list-filter .input-wrapper,
	.list-menu .list-filter .input-field {
		width: 100%;
	}
	.list-menu .list-filter .filter-group label {
		padding: 0 10px;
	}
	.list-menu .list-filter .btn-default.search {
		margin: 5px auto 0;
	}
}

/* ----- List Total ----- */
.list-menu .result-total {
	margin: 0;
	line-height: 1.5;
}
.list-menu .result-total span {
	display: inline-block;
	padding-right: 5px;
	color: #007AC3;
	font-size: 162.5%;
	font-weight: 600;
}

/* ----- List Select ----- */
.list-menu .list-select select {
	width: 100px;
}
.list-menu .list-select .select2-container .select2-selection--single {
	border-color: #007AC3;
}

/* ----- List Sub Title ----- */
.list-menu .sub-title {
	margin: 0;
	padding: 10px 10px 0;
	font-size: 125%;
	line-height: 1.5;
}

/*** --------------- List --------------- ***/
.card {
	margin: 20px 0 0;
	padding: 15px;
	border-radius: 15px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.card .card-body {
	padding: 0;
}
.card table {
	height: 100%;
}
.card table + table,
.card .set-table {
	margin-top: 20px;
}
.card table th {
	background: #F4F2F2;
	border: none;
	padding: 12px 10px;
	font-weight: 500;
	vertical-align: middle;
  min-width: 140px;
}
.card table tr {
	background: none;
	transition: 0.3s;
}
.card table tbody tr {
	border-bottom: 2px solid #EEE;
}
.card table thead th:first-of-type {
	border-radius: 10px 0 0 10px;
}
.card table thead th:last-of-type {
	border-radius: 0 10px 10px 0;
}
.card table thead .colspan_2 th {
	padding: 5px 10px;
	border: 2px solid #FFF;
	border-radius: 0;
	font-size: 87.5%;
}
.card table tbody tr:hover {
	background: #F1F8FB;
}
.card table td {
	padding: 12px;
	border: none;
	vertical-align: middle;
}

/* ----- List Edit ----- */
.card table td.edit-box {
	padding: 5px;
	height: 100%;
}
.card table td.edit-box .edit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: none;
	border: none;
}
.card table td.edit-box .edit:focus {
	outline: auto;
	outline: auto -webkit-focus-ring-color;
}
.card table td.edit-box .edit span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	min-height: 30px;
	background: #007AC3;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	color: #FFF;
	font-size: 87.5%;
	transition: 0.3s;
}
.card table td.edit-box .edit:hover span {
	background: #0068A7;
	box-shadow: none;
}
.card table td.btn-box {
	height: 100%;
	padding: 10px;
}
.card table td.btn-box .btn-in {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 100%;
}
.card table td.btn-box .btn {
	padding: 4px 15px;
	font-size: 87.5%;
}
.card table td.btn-box .btn.sort-up,
.card table td.btn-box .btn.sort-down {
	min-width: 30px;
	min-height: 30px;
	padding: 0;
}
.card table td.input-box {
	padding: 12px 10px;
}
.card table td.input-box .form-control {
	padding: 5px 10px;
}
.card table td.input-box input.form-control {
	min-width: 100px;
}
.card table td.input-box .input-unit {
	display: inline-block;
	width: calc(100% - 1em);
}
.card table td.input-box input[type="number"].input-unit {
	margin-right: 5px;
}
.card table td.input-box .form-control + .select2-container .select2-selection--single {
	min-width: 100px;
	min-height: 42px;
	padding: 10px 30px 8px 15px;
}
.card table td.input-box:has(img) {
	display: flex;
	align-items: center;
	gap: 5px;
}
.card table td.input-box .form-control.datepicker {
	width: 125px;
}
.card table td.input-box .form-control,
.card table td.input-box .span-tbm_nmj .form-control,
.card table td.input-box .select_tbm_kai .form-control {
	min-width: 100px;
}
.card table td.input-box .select_cal_holiday .form-control,
.card table td.input-box .span-cal_holidaynmj .form-control,
.card table td.input-box .select_tbm_syukei_kbn .form-control {
	min-width: 200px;
}

/* ----- List Check ----- */
.form-card + .list-card {
	margin-top: 30px;
}
.card table th.check-box,
.card table td.check-box {
	height: 100%;
	padding: 5px 10px;
}
.card table th.check-box .check-in,
.card table td.check-box .check-in {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.card table th.check-box input,
.card table td.check-box input {
	transform: scale(1.2, 1.2);
}

/* ----- List Select ----- */
.card table tr.selected,
.card table tr.selected:hover {
	background: #007AC3;
	color: #FFF;
}

/* ----- List Sticky ----- */
.card table th.sticky-box {
	background: #F4F2F2;
	z-index: 1;
}
.card table td.sticky-box {
	background: #FFF;
	z-index: 1;
	transition: 0.3s;
}
.card table tbody tr:hover td.sticky-box {
	background: #F1F8FB;
}
.card table th.sticky-box.check-box,
.card table td.sticky-box.check-box {
	width: 40px;
	position: sticky;
	left: -1px;
}
.card table th.sticky-box.menu-box,
.card table td.sticky-box.menu-box {
	position: sticky;
	left: 39px;
}
.card table th.sticky-box.check-box::before {
	content: '';
	width: 2px;
	height: 100%;
	background: #F4F2F2;
	position: absolute;
	top: 0;
	left: -1px;
}
.card table th.sticky-box.check-box::after {
	content: '';
	width: 2px;
	height: 100%;
	background: #F4F2F2;
	position: absolute;
	top: 0;
	right: -2px;
}
.card table th.sticky-box.menu-box::after {
	content: '';
	width: 2px;
	height: 100%;
	background: #FFF;
	position: absolute;
	top: 0;
	right: -1px;
}
.card table td.sticky-box.menu-box::after {
	content: '';
	width: 2px;
	height: 100%;
	background: #EEE;
	position: absolute;
	top: 0;
	right: 0;
}

.sticky-0,
.sticky-1,
.sticky-2 {
  position: sticky;
  top: 0; /* ヘッダー固定したいなら */
  z-index: 5;
  background: #fff;
}

.sticky-0 { left: 0; }
.sticky-1 { left: 224px; }
.sticky-2 { left: 363px; }

/* ----- List Arrow ----- */
.list-allows {
	display: flex;
  align-items: center;
	margin-top: 20px;
	padding: 0 30px;
}
.list-allows i {
	padding: 0 10px;
	transform: rotate(90deg);
}
.list-allows .btn {
	margin-left: 5px;
	padding: 4px 15px;
	font-size: 87.5%;
}

@media screen and (max-width: 575px) {
	.list-allows {
		padding: 0;
	}
}

/*** --------------- Form --------------- ***/

/* ----- Form Card ----- */

@media screen and (max-width: 575px) {
	.card.form-card {
		padding: 10px;
	}
}

/* ----- Form Item ----- */
.form-item {
	margin: 0;
	padding: 10px 0;
}
.form-item .form-label-title {
	width: 100%;
	margin: 0;
	font-weight: 500;
}
.form-item .form-label-title .fa-asterisk {
	padding: 3px 0 0 5px;
	color: #E02D3C;
	font-size: 50%;
	position: relative;
	vertical-align: text-top;
}
.form-item p {
	margin: 0;
}
.form-item .form-input-text {
	padding: 0 10px;
}
.form-item .input-group {
	align-items: center;
	gap: 5px;
}
.form-item .input-group > .form-control:not(:last-child),
.form-item .input-group > .custom-select:not(:last-child) {
	border-radius: 10px;
}
.form-item .input-group .message {
	padding: 0 5px;
}
.form-item textarea.form-control {
	height: 200px;
}
.form-item .comment-length {
	display: block;
	font-size: 87.5%;
	text-align: right;
}

@media screen and (max-width: 767px) {
	.form-item .form-label-title {
		padding: 0 5px 3px;
	}
	.form-item .form-input-text {
		padding: 0 5px;
	}
}

/* ----- Form Tab ----- */
.form-card .tab-list {
	display: flex;
	gap: 15px;
}
.form-card .tab-button {
	padding: 10px 20px 5px;
	background: #EEE;
	border: none;
	font-size: 100%;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.8;
	border-radius: 10px 10px 0 0;
	transition: 0.3s;
}
.form-card .tab-button:hover {
	background: #E2EDF9;
}
.form-card .tab-button:focus,
.form-card .tab-button:focus-visible {
	outline: revert;
}
.form-card .tab-button.active {
	background: #C9E0F9;
}
.form-card .form-section {
	display: none;
}
.form-card .form-section.active {
	display: block;
}
.form-card .form-section table thead th:first-of-type {
  border-radius: 0 0 0 10px;
}

/* ----- Form Tab 2 ----- */
.menu-tab {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}
.menu-tab .menu-link {
	display: inline-block;
	padding: 10px 20px 5px;
	background: #EEE;
	border: none;
	color: #333;
	font-size: 100%;
	font-weight: 500;
	border-radius: 10px 10px 0 0;
	transition: 0.3s;
}
.menu-tab .menu-link:hover {
	background: #E2EDF9;
}
.menu-tab .menu-link.active {
	background: #C9E0F9;
}
.menu-content {
	padding: 15px;
	border: 2px solid #EEE;
	border-radius: 0 10px 10px 10px;
}

  #nomihodai-pattern {
    display: none;
  }

  #nomihodai-pattern.show {
    display: flex;
    align-items: center;
    gap: 8px;
  }

/* ----- Form Search ----- */
.form-search .search-icon {
	color: #007AC3;
	position: absolute;
	top: 21px;
	left: 20px;
}
.form-search .input-field {
	width: 100%;
	height: auto;
	padding: 5px 20px 5px 40px;
	border: 1.5px solid #DDD;
	border-radius: 10px;
	letter-spacing: 0.1em;
	transform: 0.3s;
}

/* ----- Form Select ----- */
.form-select {
	display: flex;
	gap: 20px;
}
.form-select .select2 {
	flex: 1 1 0%;
}
.form-select .search {
	width: auto;
}

/* ----- Form Menu ----- */
.form-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 25px;
}
.form-menu .btn-danger {
	margin-left: auto;
}

/* ----- Form Confirm ----- */
.confirm-area {
	display: none;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
.confirm-card {
	width: 300px;
	padding: 20px;
	text-align: center;
	position: fixed;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
}
.confirm-menu {
	display: flex;
	justify-content: center;
	gap: 15px;
}
.confirm-menu button {
	min-width: 100px;
}

/* ----- Form Error ----- */
ul.error li {
	color: #E02D3C;
	font-size: 87.5%;
}

/* ----- Form Success ----- */
.alert {
	margin-top: 15px;
	position: relative;
	padding: 10px 20px;
	margin-bottom: 0;
	border: none;
	border-radius: 10px;
}
button.close {
	border-radius: 10px;
	transition: 0.3s;
}
.alert .close {
	color: #FFF;
	opacity: 1;
	transition: 0.3s;
}
.alert .close:focus {
	outline: auto;
	outline: auto -webkit-focus-ring-color;
}

/*** --------------- Pagenation --------------- ***/
.pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}
.pagination ul li a,
.pagination ul li button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	border-radius: 20px;
	transition: 0.3s;
}
.pagination ul li a.normal,
.pagination ul li a.prevnext,
.pagination ul li button.normal,
.pagination ul li button.prevnext {
	margin: 0;
	padding: 3px 10px;
	background: #FFF;
	border: solid 1.5px #FFF;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	color: #007AC3;
	font-size: 100%;
	font-weight: 600;
}
.pagination ul li a.normal:hover,
.pagination ul li a.prevnext:hover,
.pagination ul li button.normal:hover,
.pagination ul li button.prevnext:hover {
	box-shadow: none;
	border: solid 1.5px #007AC3;
}
.pagination ul li a.selected,
.pagination ul li button.selected {
	margin: 0;
	padding: 5px;
	background: #007AC3;
	border: none;
	box-shadow: none;
	color: #FFF;
	font-size: 100%;
	font-weight: 600;
}

/******************** Login ********************/

.login-page {
  background: linear-gradient(180deg, #E3EDF9, #DCEFF6);
}

.wrapper {
  background-color: initial;
}

.login-card-wrap {
  margin-top: 80px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.warning {
  color: #E02D3C;
}

.warning li {
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.warning li::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background-color: #E02D3C;
  clip-path: path("M11,3a8,8,0,1,0,8,8A8,8,0,0,0,11,3Zm0,8.8a.8.8,0,0,1-.8-.8V7.8a.8.8,0,1,1,1.6,0V11A.8.8,0,0,1,11,11.8Zm.8,3.2H10.2V13.4h1.6Z");
  left: 0;
  top: 4px;
}

.login-card-wrap .login-card-body,
.login-card-wrap .register-card-body {
  background-color: transparent;
}

.login-card-wrap .login-label {
  width: 100%;
}

.login-card-wrap input {
  padding: 8px 12px;
  font-size: 100%;
  height: auto;
}

.login-card-wrap .fa-user,
.login-card-wrap .fa-lock {
  color: #007AC3;
  padding-right: 4px;
}

.login-card-wrap .input-group .form-control {
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  ;
}

.login-card-wrap .input-group .form-control:focus {
  outline: 2px solid #5BAEFC;
  border: 1px solid #fff;
}

input[type=checkbox]:focus {
  outline: 1px solid #5BAEFC;
}

.login-card-wrap .form-control::target-text {
  border-color: #007AC3;
}

.icheck-primary {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.icheck-primary label {
  margin-bottom: 0;
}

input[type=checkbox] {
  appearance: none;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #007AC3;
  border-left: 2px solid #007AC3;
  transform-origin: left top;
  transform: rotate(-45deg);
  animation: check 0.8s;
}

.btn.login {
  height: auto;
  padding: 8px 20px;
  border-radius: 50px;
  position: relative;
}

.btn.login::before {
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: calc(50% - 9px);
  right: 20px;
  background-color: #fff;
  transition: 0.3s;
}

.btn.login::after {
  position: absolute;
  content: '';
  width: 4px;
  height: 6px;
  background-color: #007AC3;
  clip-path: path("M.177.92,2.534,3,.177,5.086a.493.493,0,0,0-.063.694.469.469,0,0,0,.063.063.664.664,0,0,0,.857,0L3.822,3.379a.492.492,0,0,0,.064-.693.484.484,0,0,0-.064-.064L1.034.157a.662.662,0,0,0-.857,0,.5.5,0,0,0-.058.7A.454.454,0,0,0,.177.92");
  top: calc(50% - 3px);
  right: 26px;
  transition: 0.3s;
}

.btn.login:hover::before,
.btn.login:hover::after {
  transform: translateX(4px);
}

@keyframes check {
  0% {
    height: 0;
    width: 0;
  }

  25% {
    height: 2;
    width: 2px;
  }

  50% {
    height: 6px;
    width: 12px;
  }
}

@media (max-width: 600px){
  .icheck-primary input[type=checkbox]{
  width: 20px!important;
}
}

@media (max-width: 576px) {
  .login-box {
    margin-top: 0;
    padding: 0 15px;
    width: 100%;
  }

  .login-card-wrap {
    margin-top: 60px;
  }
}

/* ログイン */

.list-menu .list-search.label-on .input-field {
  position: relative;
}

.list-menu .list-search.label-on .input-field::before {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  background-color: #007AC3;
  clip-path: path("M15.78,13.833l-3.115-3.115a.749.749,0,0,0-.531-.219h-.509A6.5,6.5,0,1,0,10.5,11.624v.509a.749.749,0,0,0,.219.531l3.115,3.115a.747.747,0,0,0,1.059,0l.884-.884a.753.753,0,0,0,0-1.062M6.5,10.5a4,4,0,1,1,4-4,4,4,0,0,1-4,4");
}


.btn-table {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  /* 高さを指定 */
  width: 80px;
  min-width: 80px;
}

.input-container {
  width: 70%;
}

.search {
  width: 80px;
}

@media screen and (max-width: 600px) {
  .input-container {
    display: flex;
    flex-direction: column;
    /* 縦方向に並べる */
    height: 100%;
    width: 100%;
  }

  .input-line {
    height: 100%;
    width: 100%;
  }
}

/*** --------------- Menu icon --------------- ***/
.sidebar .nav-sidebar .nav-item a::before {
  content: none;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #007AC3;
  display: inline-block;
  text-align: center;
  width: 1.25em;
}

.sidebar .nav-sidebar .nav-item a.icon-common-report::before {
  content: "\f788";
}

.sidebar .nav-sidebar .nav-item a.icon-common-master::before {
  content: "\f07c";
}

.sidebar .nav-sidebar .nav-item a.icon-common-file::before {
  content: "\f6dd";
}

.sidebar .nav-sidebar .nav-item a.icon-common-system::before {
  content: "\f1c0";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-storedaily::before {
  content: "\f573";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-saleslist::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-report-saleslist.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-tblstatus::before {
  content: "\f6c0";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-monthly::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-report-monthly.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-monthlystoresaleschart::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-report-monthlystoresaleschart.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-abcanalysis::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-report-abcanalysis.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-analysismenu::before {
  content: "\f518";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-daily::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-report-daily.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-shirehyou::before {
  content: "\f0ce";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-tanaoroshihyou::before {
  content: "\f0ae";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-nbkshukei::before {
  content: "\f541";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-fooddrinkmonthly::before {
  content: "\f805";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-sbmshukei::before {
  content: "\f328";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-payhyou::before {
  content: "\f555";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-customeranalysis::before {
  content: "\f200";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-timeanalysis::before {
  content: "\f1da";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-report-coursecostanalyz::before {
  content: "\f562";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-tax::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-tax.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-tgm::before {
  content: "\f0c0";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-tm::before {
  content: "\f54e";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-cm::before {
  content: "\f218";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-cal::before {
  content: "\f133";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-nb::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-nb.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-crm::before {
  content: "\f3cd";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-ctm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-ctm.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-khm::before {
  content: "\f4d3";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-sbm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-sbm.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-sttm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-sttm.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-tkm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-tkm.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-tjm::before {
  content: "\f017";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-tbm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-tbm.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-ssm::before {
  content: "\f7b6";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-sm::before {
  content: "\f2e7";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-sfmp::before {
  content: "\f72f";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-stsm::before {
  content: "\f055";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-rd::before {
  content: "\f06a";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-zzm::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-zzm.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-szm::before {
  content: "\f25a";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-td::before {
  content: "\f46c";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-tkj::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-tkj.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-tmy::before {
  content: "\f1ec";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-npd::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-npd.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-cd::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../../../image/icon-master-cd.png) center center / contain no-repeat;
  left: 0;
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-master-knm::before {
  content: "\f0d6";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-file-outputtofile::before {
  content: "\f019";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-system-setting::before {
  content: "\f013";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-system-unit::before {
  content: "\f0ad";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-common-changetm::before {
  content: "\f2f1";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-user-user_permission::before {
  content: "\f4fe";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-user-user::before {
  content: "\f234";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-system-setup::before {
  content: "\f7d9";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-system-setup_self::before {
  content: "\f3e0";
}

.sidebar .nav-sidebar .nav-item>.nav-treeview .nav-item a.icon-system-setup_kpe::before {
  content: "\f071";
}

/* タイトルアイコン */

.content-header .icon-report-dashboard::before {
  content: "\f009";
}

.content-header .icon-report-storedaily::before {
  content: "\f573";
}

.content-header .icon-report-saleslist {
  padding-left: 56px;
}

.content-header .icon-report-saleslist::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-report-saleslist.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-report-tblstatus::before {
  content: "\f6c0";
}

.content-header .icon-report-monthly {
  padding-left: 56px;
}

.content-header .icon-report-monthly::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-report-monthly.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-report-monthlystoresaleschart {
  padding-left: 56px;
}

.content-header .icon-report-monthlystoresaleschart::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-report-monthlystoresaleschart.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-report-abcanalysis {
  padding-left: 56px;
}

.content-header .icon-report-abcanalysis::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-report-abcanalysis.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-report-analysismenu::before {
  content: "\f518";
}

.content-header .icon-report-daily {
  padding-left: 56px;
}

.content-header .icon-report-daily::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-report-daily.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-report-shirehyou::before {
  content: "\f0ce";
}

.content-header .icon-report-tanaoroshihyou::before {
  content: "\f0ae";
}

.content-header .icon-report-nbkshukei::before {
  content: "\f541";
}

.content-header .icon-report-fooddrinkmonthly::before {
  content: "\f805";
}

.content-header .icon-report-sbmshukei::before {
  content: "\f328";
}

.content-header .icon-report-payhyou::before {
  content: "\f555";
}

.content-header .icon-report-customeranalysis::before {
  content: "\f200";
}

.content-header .icon-report-timeanalysis::before {
  content: "\f1da";
}

.content-header .icon-report-coursecostanalyz::before {
  content: "\f562";
}

.content-header .icon-master-tax,
.content-header .icon-master-tax-edit{
  padding-left: 56px;
}

.content-header .icon-master-tax::before,
.content-header .icon-master-tax-edit::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-tax.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-tgm::before,
.content-header .icon-master-tgm-edit::before {
  content: "\f0c0";
}

.content-header .icon-master-tm::before,
.content-header .icon-master-tm-edit::before  {
  content: "\f54e";
}

.content-header .icon-master-cm::before,
.content-header .icon-master-cm-edit::before,
.content-header .icon-master-ctt::before {
  content: "\f218";
}

.content-header .icon-master-cal::before {
  content: "\f133";
}

.content-header .icon-master-nb,
.content-header .icon-master-nb-edit {
  padding-left: 56px;
}

.content-header .icon-master-nb::before,
.content-header .icon-master-nb-edit::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-nb.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-crm::before,
.content-header .icon-master-crm-edit::before{
  content: "\f3cd";
}

.content-header .icon-master-ctm,
.content-header .icon-master-ctm-edit{
  padding-left: 56px;
}

.content-header .icon-master-ctm::before,
.content-header .icon-master-ctm-edit::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-ctm.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-khm::before,
.content-header .icon-master-khm-edit::before,
.content-header .icon-master-kht::before {
  content: "\f4d3";
}

.content-header .icon-master-sbm,
.content-header .icon-master-sbm-edit {
  padding-left: 56px;
}

.content-header .icon-master-sbm::before,
.content-header .icon-master-sbm-edit::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-sbm.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-sttm,
.content-header .icon-master-sttm-edit {
  padding-left: 56px;
}

.content-header .icon-master-sttm::before,
.content-header .icon-master-sttm-edit::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-sttm.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-tkm {
  padding-left: 56px;
}

.content-header .icon-master-tkm::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-tkm.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-tjm::before {
  content: "\f017";
}

.content-header .icon-master-tbm {
  padding-left: 56px;
}

.content-header .icon-master-tbm::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-tbm.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-ssm::before,
.content-header .icon-master-ssm-edit::before{
  content: "\f7b6";
}

.content-header .icon-master-sm::before,
.content-header .icon-master-sm-edit::before,
.content-header .icon-master-stbm::before,
.content-header .icon-master-sfm::before {
  content: "\f2e7";
}

.content-header .icon-master-sfmp::before,
.content-header .icon-master-sfmp-edit::before {
  content: "\f72f";
}

.content-header .icon-master-stsm::before,
.content-header .icon-master-stsm-edit::before {
  content: "\f055";
}

.content-header .icon-master-rd::before {
  content: "\f06a";
}

.content-header .icon-master-zzm {
  padding-left: 56px;
}

.content-header .icon-master-zzm::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-zzm.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-szm::before {
  content: "\f25a";
}

.content-header .icon-master-td::before {
  content: "\f46c";
}

.content-header .icon-master-tkj {
  padding-left: 56px;
}

.content-header .icon-master-tkj::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-tkj.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-tmy::before,
.content-header .icon-master-tdy::before,
.content-header .icon-master-tky::before{
  content: "\f1ec";
}

.content-header .icon-master-npd {
  padding-left: 56px;
}

.content-header .icon-master-npd::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-npd.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-cd {
  padding-left: 56px;
}

.content-header .icon-master-cd::before {
  content: '';
  padding: 0;
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../../../image/icon-master-cd.png) center center / contain no-repeat;
  top: calc(50% - 16px);
  left: 5px;
}

.content-header .icon-master-knm::before,
.content-header .icon-master-knm-edit::before {
  content: "\f0d6";
}

.content-header .icon-file-outputtofile::before {
  content: "\f019";
}

.content-header .icon-system-setting::before {
  content: "\f013";
}

.content-header .icon-system-unit::before,
.content-header .icon-system-unit-edit::before {
  content: "\f0ad";
}

.content-header .icon-common-changetm::before {
  content: "\f2f1";
}

.content-header .icon-user-user_permission::before,
.content-header .icon-user-user_permission-edit::before {
  content: "\f4fe";
}

.content-header .icon-user-user::before,
.content-header .icon-user-user-edit::before {
  content: "\f234";
}

.content-header .icon-system-setup::before {
  content: "\f7d9";
}

.content-header .icon-system-setup_self::before,
.content-header .icon-system-setup_self-edit::before {
  content: "\f3e0";
}

.content-header .icon-system-setup_kpe::before,
.content-header .icon-system-setup_kpe-edit::before {
  content: "\f071";
}

/* 店舗日報 */

/* 横スクロール対応のCSS */
.table-scroll {
  overflow-x: auto;
  /* 横スクロールを可能にする */
  -webkit-overflow-scrolling: touch;
  /* iOSのタッチスクロール対応 */
  max-width: 100%;
  /* 幅を100%に設定 */
}

.table-striped {
  min-width: 500px;
  /* テーブルの最小幅を設定（必要に応じて調整） */
  overflow-x: scroll;
}

.tempo_nippou_d {
  padding-right: 10px;
  text-align: right;
}

@media (max-width: 400px) {

  .search-item,
  .btn-items {
    width: 100%;
  }
}

.sales_lists {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-bottom: -20px;
}

.storedaily_contaner .select2-container {
  max-width: 300px !important;
}

.select2-search--dropdown {
  position: relative;
}

.select2-search--dropdown::before {
  content: "\f002";
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #007AC3;
  left: 14px;
  top: 12px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  padding-left: 26px;
}

.group-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  gap: 10px 20px;
}

.search-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  text-align: left;
  transform-origin: left;
  gap: 10px 40px;
}

.group-container .search-item .d-flex label {
  margin-bottom: 0;
}

.filter_tm {
  display: inline-block;
  transform-origin: left;
}

.chart-legend {
  display: flex;
  transform-origin: left;
  margin: 0;
  font-weight: 500;
}

.sales_lists #filter_tgm {
  max-width: 300px;
  height: 100%;
  padding-left: 10px;
}

.sales_lists #filter_tm {
  max-width: 300px;
  height: 100%;
  padding-left: 10px;
}

.d-flex {
  align-items: center;
  gap: 10px;
}

#filter_sales_date_str,
#filter_sales_date_end{
  width: calc(200px - 42px)!important;
}

.filter_sales_date_str_input,
.filter_sales_date_end_input{
  display: flex;
  align-items: center;
}

.pc-none{
  display: none;
}

.btn-left,
.btn-right {
  font-size: 87.5%;
  background: #FFF;
  color: #007AC3;
  border: 1.5px solid #007AC3;
  position: relative;
}

.btn-left:hover,
.btn-right:hover {
  background: #E2EDF9;
	border-color: #007AC3;
	color: #007AC3;
}

.btn-left {
  padding-left: 28px;
}

.btn-right {
  padding-right: 28px;
}

.btn-left::before,
.btn-right::before {
  color: #007AC3;
  font-size: 80%;
  font-family: 'Font Awesome 5 Free';
  font-weight: 800;
  transition: 0.3s;
  transform-origin: center center;
  position: absolute;
  top: calc(50% - 10px);
}

.btn-left::before {
  content: '\f053';
  left: 8px;
}

.btn-right::before {
  content: '\f054';
  right: 8px;
}

.btn-left:hover::before {
  transform: translateX(-4px);
}

.btn-right:hover::before {
  transform: translateX(4px);
}

.filter_group {
  gap: 10px;
  margin: 10px 0;
}

.filter_group label {
  margin-bottom: 0;
  font-weight: 500;
}

.filter_tnp {
  gap: 20px;
}

.filter_tnp label {
  font-weight: 500;
  margin-bottom: 0;
}

.filter_sales {
  gap: 20px;
}

.date-form input[type="date"] {
  padding: 8px 15px;
  border: 1.5px solid #DDD;
  border-radius: 10px;
  height: auto;
  font-size: 100%;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #333;
}

.group-container .btn_items {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.btn-items .btn.reset {
  color: #0068A7;
  border-color: #fff;
  background: #FFF;
}

.btn-items .btn.reset:hover {
  border-color: #007AC3;
  color: #007AC3;
}

table.table-striped {
  background-color: #fff;
  border-collapse: separate;
}

.table-striped td {
  padding: 10px 15px;
  border-bottom: 2px solid #EEE;
}

.table-striped th {
  font-weight: 600;
  border-bottom: 2px solid #EEE;
}

.table_card {
  width: 100%;
  margin: 20px 0 0;
  padding: 15px;
  border-radius: 15px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.table-container {
  width: 100%;
}

.table_card .w-100 {
  min-width: 100%;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: transparent;
}

.table-striped tbody tr.shouhin_uriage_tr>td {
  background-color: #eee;
}

.table-striped tbody tr.shouhin_uriage_tr td {
  border-bottom: 2px solid #EEE;
}

.table-striped tbody tr.shouhin_uriage_tr>td:first-of-type {
  background-color: #eee;
  border-radius: 10px 0 0 10px;
}

.table-striped tbody tr.shouhin_uriage_tr>td:last-child {
  background-color: #eee;
  border-radius: 0 10px 10px 0;
}

@media (min-width: 1400px) {

  .table_card .col-lg-6 {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .table_card .table-container td.col-lg-6 {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .table_card .table-container {
    width: 100%;
    table-layout: fixed;
  }

  .table_card .table-container td.col-lg-6 {
    width: 100%;
    display: block;
  }

  .table-striped tbody tr.shouhin_uriage_tr {
    border-collapse: separate;
    border-spacing: 40px 20px;
  }

  .group-container .btn_items {
    position: relative;
    justify-content: end;
  }

}

@media (max-width: 576px) {

  .filter_group,
  .filter_tnp,
  .filter_sales {
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .filter_tnp label {
    margin-bottom: 0rem;
  }

  .search-item {
    flex-wrap: wrap;
  }

  .table_card {
    overflow-x: scroll;
  }

  .table_card .table-container {
    min-width: 500px;
  }
  .sp-none{
    display: none;
  }

  .pc-none{
    display: block;
  }

  .button-flex{
  display: flex!important;
  margin-top: 10px;
  justify-content: space-between;
  align-items: center;
}

  #filter_sales_date_str,
  #filter_sales_date_end{
  width: calc(200px - 46px)!important;
}

  .date-form{
    width: 100%;
  }

  .btn-left,
  .btn-right {
    padding: 5px 10px;
    font-size: 70%;
  }

  .btn-left {
    padding-left: 20px;
  }

  .btn-right {
    padding-right: 20px;
  }

 .group-container .select2-container {
    width: 100% !important;
  }

  .table-striped {
    margin-top: 20px;
  }

  .table_card {
    padding-top: 0;
  }
}

/* 印刷用（全体） */
@page {
  size: A4 landscape;
  margin: 0;
}

@media print {
  .table_card {
    zoom: 0.6;
  }
}


/* 売上参照 */
.form-control.select2-hidden-accessible,
.filter_tgm_label,
.filter_tm_label,
.filter_tm,
.filter_kaikei_kbn_label,
.filter_detail_label,
.filter_sort_label,
.flex_wrap label,
.sales_label {
  width: auto !important;
}


.flex_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table_saleslist {
  border-collapse: collapse;
  width: 1800px;
}

.table_saleslist th {
  text-align: center;
  font-size: 87.5%;
}

.table_saleslist td {
  border: solid 1px darkgray;
  font-size: 87.5%;
}

.table_saleslist td div {
  font-size: 87.5%;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.header {
  display: none;
}

.page_break {
  break-after: page;
}

.overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, .5);
  opacity: 0.5;
  display: none;
  z-index: 99999999;
}

.m_processing {
  background: #ffff;
  z-index: 99999999;
  border-radius: 10px;
}

.form-item.report_gap {
  gap: 20px;
}

.btn-items.d-flex {
  gap: 0 20px;
  justify-content: flex-end;
  margin: 10px 0;
}

.btn-items .btn i {
  margin-right: 0.5rem;
}

@media (min-width: 1600px) {
  .table_saleslist {
    width: 100%;
  }
}

@media (max-width: 576px) {

  .form-control.select2-hidden-accessible,
  .filter_tgm_label,
  .filter_tm_label,
  .filter_kaikei_kbn_label,
  .filter_detail_label,
  .filter_sort_label,
  .filter_tnp label,
  .flex_wrap label,
  .filter_group label,
  .sales_label {
    width: 100% !important;
  }

  .d-flex {
    flex-wrap: wrap;
    width: 100%;
  }

  .details,
  .details div {
    width: 100% !important;
  }

  .btn-items.d-flex {
    gap: 10px;
  }
}

/* 在席状況 */

.update_date {
  font-size: 100%;
}

.spend_rate {
  font-size: 112.5%;
  padding: 0.5rem 1rem;
  background-color: #fff;
  display: inline-block;
}

.topics_wrap {
  width: 100%;
  margin-top: 10px;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

.topics_wrap .btn-items.d-flex {
  margin: 0;
}

.table_tblstatus {
  border-collapse: collapse;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

@page {
  size: A4 landscape;
}

@media print {
  thead {
    display: table-header-group;
  }
}

@media (max-width: 400px) {

  .search-item,
  .btn-items {
    width: 100%;
  }
}

.form-label-title {
  margin: 0;
}

/* 日別売上推移表 */
.monthly-search-item {
  gap: 0 40px;
}

.monthly-search-item .form-item {
  gap: 10px 20px;
}

.table_monthly {
  border-collapse: collapse;
  width: 100%;
  min-width: 1400px;
}

.table_monthly tbody tr {
  font-size: 87.5%
}

.table_monthly tr.title {
  padding-top: 20px;
  border-bottom: none;
  font-size: 100%;
}

.table_monthly tr:has(+ tr.title) {
  border-bottom: none;
}

.table_monthly tr.title:has(+ tr.last_title) th {
  background-color: #FFF5E7;
}

@media (max-width: 576px) {

  .default_label,
  .filter_year,
  .filter_sl_label,
  .filter_yoy_label {
    width: 100%;
  }
}

@media (max-width: 400px) {

  .default_input,
  .default_input div {
    max-width: 300px !important;
    width: 100% !important;
  }
}

/* 月別売上一覧 */

.table_mssc {
  border-collapse: collapse;
  min-width: 1400px;
  width: 100%;
}

.svg-container,
.js-plotly-plot {
  width: 100% !important;
}

@media print {
  .table_mssc thead {
    display: table-header-group;
  }

}

@media (max-width: 576px) {
  .filter_tgm {
    width: 100% !important;
    ;
  }

  .filter_tgm div {
    max-width: 300px !important;
    width: 100% !important;
    ;
  }
}

/* ABC分析 */

.abc_rank_frame {
  width: 100%;
  height: auto !important;
}

.abc_rank_box {
  font-weight: 700;
  padding: 10px 0;
}

.abc_rank_table {
  width: 100%;
}

.abc_rank_table tr {
  font-size: 87.5%;
}

.abc_rank_frame tbody>tr {
  border: none;
  border-bottom: none !important;
}

.abc_rank_frame tbody>tr:hover {
  background: transparent !important;
}

.table_abcanalysis {
  border-collapse: collapse;
  min-width: 1200px;
  width: 100%;
}

.table_abcanalysis td {
  font-size: 87.5%;
}

.abc_rank_table_child {
  width: 100%;
}

.center {
  text-align: center;
}

.right,
.filter_abc_class_label,
.filter_grph_div_label {
  text-align: right;
}

@media print {
  .table_abcanalysis thead {
    display: table-header-group;
  }

}

@media screen and (max-width: 768px) {
  .abc_rank_frame {
    width: 100% !important;
    border-collapse: collapse;
  }

  .abc_rank_frame colgroup,
  .abc_rank_frame col {
    display: none;
  }

  .abc_rank_frame tr {
    display: block;
    width: 100% !important;
  }

  .abc_rank_frame td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  .abc_rank_table_child,
  .abc_rank_table_child tbody {
    width: 100% !important;
    table-layout: fixed !important;
    border-spacing: 0 !important;
    border-collapse: collapse !important;
  }

  .abc_rank_table_child th.w-12 {
    width: 12%;
  }

  .abc_rank_table_child tr {
    display: table;
  }

  .abc_rank_table_child th.w-62 {
    width: 62%;
  }

  .abc_rank_table_child th.w-26 {
    width: 26%;
  }

  .abc_rank_table_child th.w-75 {
    width: 75%;
  }

  .abc_rank_table_child th.w-25 {
    width: 25%;
  }
}

@media (max-width: 576px) {

  .filter_sbm_label,
  .filter_sales_date_str,
  .filter_abc_target_label,
  .filter_abc_class_label,
  .filter_abc_sort_label,
  .filter_arr_div_label,
  .filter_grph_div_label {
    width: 100% !important;
    text-align: left;
  }
}

/* メニュー別売上 */

.table_analysismenu {
  width: 100%;
}

.sub_btn_box {
  margin: auto;
  margin-bottom: 10px;
  text-align: left;
  background: #EEE;
  padding: 6px;
  border: 1px solid #999;
  width: 98%;
}

.sub_btn {
  padding: 6px 10px 6px 10px;
  margin: 2px;
  font-size: 16px;
  border: 1px solid #999;
}

@media screen and (max-width: 768px) {
  .table_analysismenu {
    width: 768px;
  }
}

@media screen and (max-width: 575px) {

  .filter_sales_date_str_label,
  .filter_shukei_d_label {
    width: 100%;
  }
}

/* 店舗別売上対比表  */

.table_daily {
  border-collapse: collapse;
  width: 1200px;
}

@media print {
  .table_daily {
    zoom: 0.8;
  }
}

@media screen and (max-width: 400px) {

  .select,
  .select div {
    max-width: 300px !important;
    width: 100% !important;
  }
}

/* スタッフ登録 */

.group-container button.add {
  border-radius: 30px;
}

.list-menu .d-flex label {
  margin-bottom: 0;
}

.edit.hover-underline {
  display: block;
}

.tm_selecter tbody tr {
  border-bottom: none !important;
}

.tm_selecter tbody tr:hover {
  background-color: transparent !important;
}

.tm_selecter .tmp_title {
  background-color: #EEE;
  border-radius: 8px;
}

.tm_selecter input {
  width: 20px;
}

.tm_selecter label {
  width: calc(100% - (20px + 10px));
  margin-bottom: 0;
  margin-left: 10px;
  overflow-wrap: break-word;
}

.tmp-check-group {
  display: flex;
  align-items: center;
  padding: 10px 5px;
  border-radius: 4px;
}

.user_edit_title {
  background: #F4F2F2;
  border-radius: 8px;
}

.user_form_table_add table tbody tr:hover {
  background: transparent !important;
}

.tmp-check-group .btn-info {
  color: #333;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.tmp-check-group .btn-info:not(:disabled):not(.disabled):active,
.tmp-check-group .btn-info:not(:disabled):not(.disabled).active,
.show>.btn-info.dropdown-toggle {
  color: #333;
  background-color: transparent;
  border-color: transparent;
}

.tmp-check-group:has(.btn-info) {
  background-color: #D1EEFF;
}

@media screen and (max-width: 991px) {
  .tm_selecter {
    width: 100% !important;
  }
}

@media screen and (max-width: 600px) {
  .input-group {
    width: 100% !important;
  }

  .input-group input {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 575px) {
  .tm_selecter {
    min-width: auto !important;
  }
}

/* 設定 */

.setting_form .card-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.setting_form .setting_list {
  width: 100%;
  flex-wrap: wrap;
  gap: 0;
}

.setting_form .setting_list .col-lg-1{
  margin-left: 16.666667%;
  margin-top: 10px;
}

#result_total {
  font-size: 125%;
}

.unit_list_item {
  width: 100%;
  justify-content: space-between;
}

.col-md-1:has(.form-control-file) {
  flex: 0 0 23.333%;
  max-width: 20%;
}

.form-control-file::file-selector-button {
  padding: 5px 20px;
  /* display: block; */
  background: #007AC3;
  border: 1.5px solid #007AC3;
  border-top-color: rgb(0, 122, 195);
  border-right-color: rgb(0, 122, 195);
  border-bottom-color: rgb(0, 122, 195);
  border-left-color: rgb(0, 122, 195);
  border-radius: 20px;
  color: #fff;
  font-size: 100%;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  position: relative;
  transition: 0.3s;
  /* width: 100px; */
}

.form-control-file::file-selector-button:hover {
  text-decoration: none;
  background: #0068A7;
  border: 1.5px solid #0068A7;
  border-top-color: rgb(0, 122, 195);
  border-right-color: rgb(0, 122, 195);
  border-bottom-color: rgb(0, 122, 195);
  border-left-color: rgb(0, 122, 195);
}


@media (min-width: 992px) {
  .unit_list_item .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 15.333333%;
    max-width: 15.333333%;
  }
}

@media screen and (max-width: 768px) {
  .setting_form .setting_list {
    flex-wrap: wrap;
  }

  .col-md-1:has(.form-control-file) {
    flex: auto;
    max-width: 100%;
  }

  .setting_form .setting_list .col-lg-1{
  margin-left: 0
}

}

/* 区分設定 */

.user_list_table {
  width: 100%;
}

.unit_list_table {
  width: 100%;
}

/* .unit_list_table .btn {
  background: #E02D3C;
  border: 1.5px solid #E02D3C;
  color: #FFF !important;
}

.unit_list_table .btn:hover {
  background: #CE323F;
  border: 1.5px solid #CE323F;
} */

.unit_list_table .btn-primary {
  background: #007AC3;
  border: 1.5px solid #007AC3;
}

.unit_list_table .btn-primary:hover {
  background: #0068A7;
  border: 1.5px solid #0068A7;
}

.unit_list_table tr:hover {
  background: transparent !important;
}


.save_box {
  margin-top: 20px;
}

@media screen and (max-width: 1399px) {
  .unit_list_table {
    width: 1000px;
  }
}

@media screen and (max-width: 768px) {
  .user_list_table {
    width: 800px;
  }
}

/* ファイルに出力 */

@media screen and (max-width: 575px) {
  .filter_detail_label label {
    width: 100%;
  }
}

/* セットアップ */

.set_up_container .list-menu {
  margin-top: 0;
}

#result_total {
  font-size: 125%;
}

.setup_table {
  width: 100%;
}

.setup_box {
  margin: 0 20px;
}

.setup_card h2 {
  color: #333;
  padding: 12px 10px;
  border-radius: 10px;
  background-color: #F4F2F2;
  font-size: 125%;
  font-weight: 600;
  margin: 20px 10px 10px 10px;
}

.setup_card .tab-item {
  flex-wrap: nowrap;
}

.setup_box .setup-flex {
  display: flex;
  align-items: center;
}

.setup_card .nav-tabs {
  border-bottom: none;
}

.setup_card .tab-button {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .setup_table {
    width: 768px;
  }

  .setup_card .tab-item {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

  }

  .setup_card .tab-button {
    border-radius: 10px;
    padding: 10px 20px;
  }

  .setup_card .tab_items {
    margin-top: 10px;
    border-radius: 10px;
  }

  .setup_box .col-12.col-md-10 {
    width: 100% !important;
    flex: auto;
    padding: 0;
  }

  .setup_box .setup-flex {
    flex-wrap: wrap;
  }

  .setup_box .setup-flex .col-12.col-md-10 {
    width: auto !important;
  }
}

@media screen and (max-width: 575px) {
  .setup_box {
    margin: 0 10px;
  }
}

/* セルフセットアップ */

.setup_self_table {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .setup_self_table {
    width: 768px;
  }

}

/* キッチンプリンターエラー設定 */

.setup_kpe_table {
  width: 100%;
}

.setup_kpe h2 {
  color: #333;
  padding: 12px 10px;
  border-radius: 10px;
  background-color: #F4F2F2;
  font-size: 125%;
  font-weight: 600;
  margin: 10px 0;
}

.setup_kpe_area {
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  .setup_kpe_table {
    width: 768px;
  }
}

@media screen and (max-width: 575px) {
  .setup_kpe_area {
    margin: 0 10px;
  }
}

/* 値引き設定 */

.nbkshukei_table {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .nbkshukei_table {
    width: 768px;
  }
}

/* 仕入表 */

.tab-group .tab-button {
  display: inline-block;
  margin: 0;
  padding: 5px 15px;
  background: #fff;
  border: 1.5px solid #007AC3;
  border-radius: 10px;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.tab-group .tab-button:hover {
  background: #E2EDF9;
}

.tab-group .tab-button.active {
  background: #007AC3;
  border: 1.5px solid #007AC3;
  color: #FFF;
}

.shirehyou_table {
  width: 100%;
}


.check_label label {
  margin: 0;
  display: flex;
  align-items: center;
}


/* 棚卸表 */

.tanaoroshihyou_box table {
  height: auto;
}


.table-bordered,
.table-bordered th,
.table-bordered td,
.table-bordered tr {
  border: 1px solid #dee2e6 !important;
  border-bottom: none;
}

.table-min25 {
  width: 25%;
}

.table-min74 {
  width: calc(100% - (25% + 10px));
}

.bg-light-gray {
  background-color: #F4F2F2;
}

.table-bordered tbody tr:hover {
  background: transparent !important;
}

.bg-light-blue {
  background-color: #FFF !important;
}

.table-right,
.table-bordered {
  width: 100%;
}

.tanaoroshihyou_box .row {
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .tanaoroshihyou_box .row {
    flex-wrap: wrap;
  }

  .table-min25 {
    width: 100%;
  }

  .table-min74 {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .chart-legend {
    width: 100%;
  }
}

/* 顧客分析表 */

#filter_tm.btn-primary {
  padding: 5px 20px;
}

/* モーダル */

.modal-content {
  border-radius: 15px;
}

.modal-header {
  background-color: #fff;
  border-radius: 15px 15px 0 0;
}

.modal-header .close-btn {
  padding: 1rem;
}

.modal-content .modal-label {
  background-color: #F4F2F2;
  border-radius: 4px;
}

.btn-primary:disabled {
  background-color: #F4F2F2;
  border: 1px solid #F4F2F2;
  color: #333;
}

.modal-footer .text-danger {
  color: #CE323F;
  font-size: 100%;
}

.customeranalysis_table {
  width: 100%;
}

.customeranalysis_table:has(tr#noresult-shirehyou_list) thead tr {
  display: none;
}

.customeranalysis_table:has(tr#noresult-shirehyou_list) tbody tr:hover {
  background: transparent;
}

.customeranalysis_table:has(tr#noresult-shirehyou_list) tbody tr {
  border-bottom: none;
}

@media screen and (max-width: 575px) {
  .filter_tax_label {
    width: 100%;
  }
}

/* 時間帯別売上分析表 */

.filter_yobi_label {
  width: auto !important;
}

.filter_yobi_select,
.filter_kugiri_select,
.filter_tax_kbn_input {
  width: 100%;
  max-width: fit-content;
}

.filter_yobi_select .select2-container,
.filter_kugiri_select .select2-container,
.filter_kugiri_select .select2-dropdown,
.filter_tax_kbn_input .select2-container {
  width: auto !important;
}

.filter_time_input,
.filter_time_input input {
  width: calc(2rem + 30px) !important;
}

.filter_time_after {
  margin-left: -10px;
}

.filter_kugiri_select .elect2-selection {
  width: fit-content !important;
}

.timeanalysis_table {
  width: 100%;
}

label.d-flex input[type="checkbox"] {
  flex-shrink: 0;
}

@media screen and (max-width: 575px) {

  .filter_ymd_label,
  .filter_yobi_label,
  .filter_kugiri_label,
  .filter_tax_kbn_label {
    width: 100% !important;
  }
}

/* 部門別売上集計表 */
.sbmshukei_table {
  width: 100%;
}

.sbmshukei_table thead th {
  background: transparent;
}

#noresult-shirehyou_list {
  border-bottom: none;
}

.form-section.active {
  display: block;
}

.sum {
  background-color: #F4F2F2 !important;
}

.table-responsive-inline {
  display: inline-block;
  /* 必要分だけの幅にする */
  max-width: 100%;
  /* はみ出し防止 */
}

/* 支払別売上表 */

.payhyou-item .select2-container {
  width: auto !important;
}

.payhyou-item .col-form-label {
  width: auto;
}

.form-card .nav-pills .nav-link:not(.active):hover {
  color: #333;
}

@media screen and (max-width: 575px) {
  .col-form-label {
    width: 100% !important;
  }
}


/* 権限設定 */

.user_permission_table {
  width: 100%;
}

.user_permission_table td.center {
  width: 120px;
}

.user_permission_table td.left {
  width: calc(100% - 120px);
}

.user_permission_card .tab_items {
  border-right: none;
  border-left: none;
  border-bottom: none;
}

.user_permission_card .tab-button {
  padding: 10px 20px;
}

.btn_box_list_edit {
  display: inline-block;
  margin: 0;
  padding: 5px 15px;
  background: #fff;
  border: 1.5px solid #007AC3;
  border-radius: 10px;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.btn_box_list_edit:hover {
  background: #E2EDF9
}

.btn_box_list_edit.btn-info {
  background: #007AC3;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .user_permission_card .tab-list {
    border-bottom: none;
    margin-bottom: 10px;
    justify-content: center;
  }

  .user_permission_card .tab-button {
    border-radius: 10px;
  }

  .user_permission_label {
    width: 100%;
  }

  .user_permission_text {
    width: 100%;
  }
}
