/*pnv*/
nav.pnv .collapse-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 左：テキスト / 右：アイコン */
}

nav.pnv .navbar-collapse {
	border-top: initial;
	padding-right: initial;
	padding-left: initial;
	overflow-x: initial;
	border-top: initial;
	box-shadow: initial;
}

/*frm*/
div[id^="frm"] .form-group {margin: 0px;}
div[id^="frm"] .form-control[readonly] {background-color: #FFF;}
div[id^="frm"] .form-group .input-group.date,
div[id^="frm"] .form-group .input-group.time {
	padding-left: 0px;
	padding-right: 0px;
}
div[id^="frm"] .fileinput-button,
div[id^="frm"] .fileupload-buttons button {
	margin-right: 5px;
	margin-bottom: 5px;
}
div[id^="frm"] .fileinput-button input,
div[id^="frm"] .fileupload-buttons button.cancel {
	display: none;
}
div[id^="frm"] .filesinfo {
	width: 100%;
	background-color: #f3f3f3;
	text-align: center;
}
div[id^="frm"] .file {
	padding: 15px;
	border-bottom: 1px solid #ddd;
}
div[id^="frm"] .file .thumbnail {margin-bottom: 0px;}
div[id^="frm"] .file .thumbnail img {
	object-fit: cover;
	width: 100%;
	height: 100px;
}
div[id^="frm"] .file .thumbnail-buttons {padding: 15px 0px;}

/*tbl*/
.tbl .table-flex {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: auto;
	border: 1px solid;
	border-color: #ddd;
	overflow: hidden;
}
.tbl .table-flex-row {
	display: flex;
	border-bottom: 1px solid;
	border-color: #ddd;
}
.tbl .table-flex-row:last-child {border-bottom: none !important;}
.tbl .heading.cell,
.tbl .text.cell {
	padding: 7px;
	border-right: 1px solid #ddd;
}
.tbl .text.cell {flex: 1;}
.tbl .text.cell:last-child {border-right: none;}

/*col*/
div[id^="col"] .search-form-inner {
	display: flex;
	position: relative;
}
div[id^="col"] .search-item {
	position: relative;
}
div[id^="col"] .search-item > button {
  position: relative;
  text-align: center;
  padding-left: 2em;
	box-sizing: border-box;
}
div[id^="col"] .search-btn-text {white-space: nowrap;}
div[id^="col"] .search-word-clear {
	position: absolute !important;
	right: 15px;
	width: auto !important;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	display: none;
	color: #999 !important;
	line-height: 1;
}
div[id^="col"] .search-item-btn {
  position: relative;
  text-align: center;
  padding-right: 2em;
	box-sizing: border-box;
}
div[id^="col"] .search-item-btn i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/*grs*/
/* ラジオ本体を隠す */
div[id^="grs"] input[type="radio"] {display: none;}
div[id^="grs"] ul,
div[id^="grs"] li {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}
div[id^="grs"] label {
	padding: 5px 10px;
	cursor: pointer;
	text-decoration: none;
	white-space:nowrap;
}
/* 選択状態のリンク（ラジオがchecked） */
div[id^="grs"] input[type="radio"]:checked + label {
	text-decoration: none;
	border-radius: 3px;
	padding: 5px 10px;
}
/*共通*/
.btn-text {
	display: inline-block;
	margin-left: 5px;
}

@media screen and (min-width: 768px) {
	/*pnv*/
	nav.pnv01 .collapse-toggle {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	/*pnv*/
	nav.pnv01 .dropdown-toggle {
		display: none;
	}

	/*tbl*/
	.tbl .table-flex-row {flex-direction: column;}
	.tbl .heading.cell,
	.tbl .text-cell {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid;
		border-color: #ddd;
	}
	.tbl .text.cell:last-child {border-bottom: none;}
}

