/* global-nav */
nav a {
	text-decoration: none;
	color: #555;
	padding-bottom: 5px;
}
nav li.current_page_item a {
  color: #92d050;
  pointer-events: none;
}
nav li:hover {
	color: #434343;
}

/* ▼ハンバーガMENU */
.navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 0px;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  position: relative;
}
.navbar-toggler-icon {
  background-image: none;
  background-color: #434343;
  /* この行で背景画像を無効化 */
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  transition: ease 0.5s;
}
/* バーそれぞれの座標を設定 */
.navbar-toggler-icon:nth-of-type(1) {
  top: 7px;
}
.navbar-toggler-icon:nth-of-type(2) {
  top: 14px;
}
.navbar-toggler-txt {
	background-image: none;
	background-color: #ffffff;
	display: block;
	position: absolute;
	top: 21px;
	font-size: 10px;
}
.modal-backdrop {
	z-index: auto;
}
/* ▲ハンバーガMENU */

.sidebar-wrap ul {
  list-style-type: none;
  padding-left: 0px;
}
.searchform {
  position: relative;
}
.searchfield {
  font-size: 14px;
  width: 100%;
  margin: 3px;
  padding: 10px;
  border: solid 1px #bbb;
  border-radius: 4px;
  background-color: #efefef;
}
.searchsubmit {
  font-family: FontAwesome;
  font-size: 1.4em;
  position: absolute;
  top: 0;
  right: 8%;
  margin-top: 10px;
  padding: 0;
  cursor: pointer;
  color: #6297f5;
  border: none;
  background: transparent;
}
.searchsubmit:hover {
  opacity: .6;
}