.row{
	margin-bottom: 30px;
}

.head-menu{
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
}
.head-menu .form-head{
	display: flex;
	justify-content: center;
	margin: 0;
}
.head-menu .form-head .input-head{
  color: var(--font-color-default);
  background-color: var(--form-background-color);
  border: 1px solid var(--form-border-color);
  border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -webkit-box-sizing: border-box;
  width: 360px;
  height: 36px;
  padding: 0 4px;
}
.head-menu .form-head .btn-head{
  background-color: #09f;
  border: 1px solid #09f;
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  width: 36px;
  height: 36px;
}

.btn-cate-article{
	display: block;
	position: relative;
	padding: 10px 0;
	border-bottom: none;
	color: var(--font-color-default);
	cursor: default;
}
.btn-cate-article p{
	font-weight: bold;
}
.btn-cate-article p::after{
	position: absolute;
	font-family: "fontawesome";
	content: "";
	right: 10px;
}

@media (max-width: 991px){
	.head-menu{
		display: block;
	}
	.head-menu .form-head{
		margin: 30px 0 0 0;
		justify-content: flex-end;
	}
	.head-menu .form-head .input-head{
		width: 320px;
	}

	.btn-cate-article{
		display: block;
		position: relative;
		padding: 10px 0;
		border-bottom: 1px solid #999;
		cursor: pointer;
	}
	.btn-cate-article p::after{
		content: "\f107";
	}
	.btn-cate-article p.expanded::after{
		content: "\f106";
	}
}

@media (max-width: 320px){
	.head-menu .form-head .input-head{
		width: 240px;
	}
}	

.category-table{
	
}
.category-table .category-cell{
	display: table;
	margin: 10px 0;
	padding: 10px;
	width: 100%;
	height: 40px;
}
.category-table .category-cell p{
	display: table-cell;
	vertical-align: middle;
	color: var(--font-color-default);
}
.category-table .category-cell:hover{
	background-color: #09f;
	border-radius: 4px;
}
.category-table .category-cell:hover p{
	color: #fff;
}
.category-table .category-cell.select{
	background-color: #09f;
	border-radius: 4px;
}
.category-table .category-cell.select p{
	color: #fff;
}

.help-title{
	font-size: 200%;
	font-weight: bold;
	border-bottom: 4px double #999;
	margin-top: 0;
	margin-bottom: 30px;
}
.help-sub-title{
	font-size: 150%;
	font-weight: bold;
	border-bottom: 4px double #999;
	margin-top: 30px;
	margin-bottom: 30px;
}
.help-table{
	padding-left: 10px;
}
.help-table .help-cell p{
	padding: 20px 0;
	border-bottom: 1px solid #999;
	color: var(--font-color-default);
}
.help-table .help-cell p:hover{
	text-decoration: underline;
}
@media (max-width: 991px){
	.help-title{
		margin-top: 50px;
	}
}

.help-view{
	white-space: pre-line;
	margin-bottom: 100px;
}
.help-view h1{
	font-size: 140%;
	font-weight: bold;
	margin-bottom: 0;
	border-bottom: 1px solid #999;
}
.help-view h2{
	font-size: 110%;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 0;
}
.help-view h3{
	font-size: 100%;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 0;
}
.help-view img.block{
	display: block;
	max-width: 100%;
	margin: auto;
}
.help-view ul{
	padding-left: 1.8rem;
}

.help-prev-next{
	display: flex;
	justify-content: space-between;
}

/*UtilHelper._oNotaReplace()でhelp-imageを制御するcss*/
.onota-help-image-frame{
  max-width: 95%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin:	10px auto;
}
.onota-help-image-frame .cell{
  position: relative;
  margin: 10px;
}
.onota-help-image-frame .cell img{
  max-width: 200px;
  max-height: 240px;
  cursor: pointer;
}
.onota-help-image-frame .cell span{
  position: absolute;
  font-size: 80%;
  padding: 2px 5px;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #999;
}