@charset "UTF-8";
/* CSS Document */
.bar3 {
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;

	z-index: 10000;

	display: grid;
	justify-items: center;
	align-items: center;
	background:#FFFFFF;
	position: fixed;
}
/* ハンバーガーボタンのデザイン */
.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: #000000;
	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;
}
.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;
	right: 0;
	width: 400px;
	height: 100%;
	background-color: #FFFFFF;
	transition: opacity 0.3s ease;
	opacity: 0;
	visibility: hidden;
	margin: 0px;
	padding: 0px;
	display: grid;
	justify-items: center;
	align-items: center;
	border-left: solid 1px #000000;

	
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;

}
.drawer__nav__inner {
	position: relative;
	width: 90%;
	height: auto;
	max-width: 400px;
	padding: 0;

  
	transform: translateX(100%) translateY(0%) rotateX(0deg) scale(1);
	transition: transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0%) translateY(0) rotateX(0deg) scale(1);
}

.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link {
	display: block;
	color: #000000;
	text-decoration: none;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	list-style-type: none;
	
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	}

.drawer__nav__link:hover{
   opacity: 0.8;	
}
.drawer__nav__item {
	list-style-type: none;
}
.pcmenu {
	display: none;
}
.freediala {
	width: 180px;
	filter: drop-shadow(0px 0px 1px #777);
	z-index:100;
	
	position: absolute;
	top: 65px;
	right: 10%;
}
.logoorange {
	position: absolute;
	top: 20px;
	left: 10%;
	z-index:100;
	width: 180px;
	
}
.menuname {
	font-size: 1.2em;
	color: #000000;
	width: 70%;
	text-align: center;
	height: 50px;
	position: relative;
	display: grid;
	place-content: center;
	place-items: center;
	margin-right: auto;
	margin-left: auto;
}


@media screen and (min-width:1000px) {
.freediala {
	width: 180px;
	filter: drop-shadow(0px 0px 1px #777);
	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 Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
}
.pcmenuspan {
	color: #fff;
	text-shadow: 0px 0px 2px #000;
	font-size:1.3em;
}
}


@media(max-width : 800px ){
	.drawer__nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	transition: opacity 0.3s ease;
	opacity: 0;
	visibility: hidden;
	margin: 0px;
	padding: 0px;
	display: grid;
	justify-items: center;
	align-items: center;
	border-left: solid 1px #000000;	
}
	
.drawer__nav__link {
	display: block;
	color: #000000;
	text-decoration: none;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	list-style-type: none;
	
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	}
	
.menuname {
	font-size: 1.2rem;
	color: #000000;
	width: 70%;
	text-align: center;
	height: 50px;
	position: relative;
	display: grid;
	place-content: center;
	place-items: center;
	margin-right: auto;
	margin-left: auto;
}

	
}