/* ==================================================
	プルダウン・メニュー部
================================================== */
#hb-menu-wrapper {
	position: relative;
	width: 95%;
}
#hb-menu {
	position: absolute;
	top: 80px;
	right: 0;
	z-index: 10000;
}
#hb-icon1 {
	display: inline-block;
	position: relative;
	width: 32px;
	height: 32px;
	margin: 5px 0px;
	cursor: pointer;
}
#hb-icon2,
#hb-icon3 {
	display: inline-block;
	vertical-align: top;
	margin: 5px 30px 5px 0px;
}
#hb-button {
	position: absolute;
	width: 32px;
	height: 6px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transition: linear .5s;
	-webkit-transition: all linear .5s;
	background: #fff;
}
#hb-button::after {
	content: ' ';
	position: absolute;
	width: 32px;
	height: 6px;
	top: 200%;
	left: 0;
	background: #fff;
}
#hb-button::before {
	content:' ';
	position: absolute;
	width: 32px;
	height: 6px;
	top: -200%;
	left: 0;
	background: #fff;
}
#hb-button.action {
	position: absolute;
	width: 32px;
	height: 6px;
	top: 50%;
	left: 49%;
	transform: translate(-50%,-50%) rotate(45deg);
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transition: linear .5s;
	-webkit-transition: all linear .5s;
	background: none;
}
#hb-button.action::after {
	content: ' ';
	position: absolute;
	width: 32px;
	height: 6px;
	top: 50%;
	left: 49%;
	transform: translate(-50%,-50%) rotate(90deg);
	-webkit-transform: translate(-50%,-50%) rotate(90deg);
	transition: linear .5s;
	-webkit-transition: all linear .5s;
	background: #fff;
	cursor: pointer;
}
#hb-button.action::before {
	content: ' ';
	position: absolute;
	width: 32px;
	height: 6px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(180deg);
	-webkit-transform: translate(-50%,-50%) rotate(180deg);
	transition: linear .5s;
	-webkit-transition: all linear .5s;
	background: #fff;
}
#hb-contents {
	display: none;
	position: absolute;
	top: 70px;
	right: -16px;
	padding: 50px 0 25px;
	background: rgba(75,45,22,0.75);
	width: 200px;
	z-index: 9999;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-align: center;
  box-shadow: 2px 2px 5px rgba(128,128,128,0.25);
}
#hb-contents ul {
	margin: 5px 0;
}
#hb-contents ul li {
	padding: 0 5%;
	text-align: center;
}
#hb-contents ul li a {
	display: block;
	width: 100%;
	padding: 5px 0;
  font: 500 1.0rem 'Noto Sans JP', sans-serif;

	color: #fff;
	-webkit-text-shadow: 1px 1px 1px #000;
	-moz-text-shadow: 1px 1px 1px #000;
	text-shadow: 1px 1px 1px #000;
	border-bottom: 1px dotted #000;
}
#hb-contents ul li a:hover {
	color: #ffc;
	background: rgba(0,0,0,0.2);
	transition: all 0.5s ease;
}
.hb-contact {
	color: #fff;
	font: 16px Cinzel;
	text-align: center;
	width: 100%;
	padding: 10px 0;
}
#hb-contents .logo p {
	color: #fff;
}

#hb-contents .logo img {
  width: 80px;
  height: auto;
  margin-top: 5px;
}
