/* CSS Document */
.baruni {
	position: fixed; /* bar3を追従にする */
	top: 30%;
	left: 10px;
	width: 40px;
	height: 40px;

	display: grid;
	justify-items: center;
	align-items: center;
	z-index: 10000;
}
.logohana {
	position: fixed;
	left: 10px;
	top: 10px;
	z-index: 2;
}
/* ハンバーガーボタンのデザイン */
.drawer__button {
	position: relative;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	z-index: 10000; /* メニューを開いている時もクリックできるよう設定 */
	display: block;
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 30px;
	/*
	width: 30px;
	height: 2px;
	*/
	background-color: #444;
	//background-color: #f29015;
	transform: translateX(-50%);
	z-index: 10000;

}
.drawer__button > span:first-child {
  transform: translate(10px, 0px);
  //transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-10px, 0px);
  //transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
	transform: translate(0px, 0px);
  //transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, 0px) rotate(-45deg);
  //transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, 0px) rotate(45deg);
  //transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
/* メニューのデザイン */
.drawer__nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	transition: opacity 0.3s ease;
	opacity: 0;
	visibility: hidden;
	margin: 0px;
	padding: 0px;
	display: grid;
	justify-items: center;
	align-items: center;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
	position: relative;
	width: 90%;
	height: auto;
	//max-width: 400px;
	padding: 0;
	//background:rgba(51,204,0,0.4);


  //overflow: scroll;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
/* menu文字の制御 */
.drawer__nav__link {
	display: block;
	color: rgba(255,255,255,1);
	text-decoration: none;
	padding-top: 0px;
	padding-bottom: 5px;
	//text-align: center;
	list-style-type: none;
	
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 1.2em;
}
.drawer__nav__item {
	list-style-type: none;
	width: 100%;
	//background:#CC44aa;
}
.drawer__nav__item.sns{
	width: 22%;
  margin-top: 3rem;
}
.ftlogo111 {
	width: 70%;
	max-width:200px;
	margin-right: auto;
	margin-left: auto;
	
}
.mbx1{
	width: 100%;
	padding-top: 10px;
	
	display: grid;
  justify-items: center;
  align-items: center;
}

@media screen and (min-width:800px) {
.mbx1 {
	width: 40%;
	//background:#CC99aa;
}
/*
.baruni {
	position: fixed;
	top: 90px;
	left: 10px;

}
*/
}
/* ハンバーガーメニュー展開時、背景を固定 */
/*
body.active {
  height: 100%;
  overflow: hidden;
}
*/
/* Erasable */
/*
body {
	margin: 0px;
	padding: 0px;
}
.dummy {
	width: 100%;
	height: 30vh;
}
section:nth-child(even) {
  background-color: skyblue;
}
*/
