/* CSS Document */
.bar3 {
	position: fixed; /* bar3を追従にする */
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;

	z-index: 10000

	display: grid;
	justify-items: center;
	align-items: center;
	z-index: 10000;
	//background:rgba(20,155,70,0.7);
}
/* ハンバーガーボタンのデザイン */
.drawer__button {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	z-index: 10000; /* メニューを開いている時もクリックできるよう設定 */
	display: block;
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 2px;
	//background-color: #f29015;
	background-color: #aaa;
	transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  //background-color: #f00;
  background-color:transparent;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.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;
  //overflow: scroll;
  //background:rgba(102,255,255,0.3);
  
	transform: translateY(-50%) rotateX(-360deg) scale(0.0);
	transition: transform 0.5s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateY(0) rotateX(0deg) scale(1);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link {
	display: block;
	color: rgba(255,255,255,1);
	text-decoration: none;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	list-style-type: none;
	
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	}
.drawer__nav__item {
	list-style-type: none;
}
.pcmenu {
	display: none;
}
.freediala {
	width: 180px;
	filter: drop-shadow(0px 0px 1px #777);
	//background:rgba(255,102,0,0.3);
	z-index:100;
	
	position: absolute;
	top: 65px;
	right: 10%;
}
.logoorange {
	position: absolute;
	top: 20px;
	left: 10%;
	z-index:100;
	width: 180px;
	
}

@media screen and (min-width:1000px) {
.freediala {
	width: 180px;
	filter: drop-shadow(0px 0px 1px #777);
	//background:rgba(255,102,0,0.3);
	z-index:100;
	
	position: absolute;
	top: 65px;
	right: 15%;
}
.logoorange {
	position: absolute;
	top: 20px;
	left: 15%;
}

.pcmenu {
	display: block;
	
	position: absolute;
	top: 20px;
	right: 15%;
	
	word-spacing: 1em;
	font-size: 0.8em;
	z-index:100;
	
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
}
.pcmenuspan {
	color: #fff;
	text-shadow: 0px 0px 2px #000;
	font-size:1.3em;
}
}

