.drawer-area {
	display: block;
	z-index: 100;
	position: relative;
	top: 0;
	right: 0;
	z-index: 9999;
}

@media only screen and (max-width: 767px) {
	.drawer-area {
	display: block;
}

}
 
/* ++++ トグルボタン ++++ */
	
#navTgl {
	display: none;
}
label.drawer {
	cursor: pointer;
	position: fixed;
	top: 0;
	right: 0;
}
.openbtn {
	background:#fff;
	z-index:900;
	width: 100px;
	height: 120px;
	transition: background .5s, transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
}

@media only screen and (max-width: 767px) {
.openbtn {
	background:#fff;
	z-index:900;
	width: 70px;
	height: 70px;
	transition: background .5s, transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
}

}


.openbtn::before,
.openbtn::after {
	content: "";
}
.openbtn span,
.openbtn::before,
.openbtn::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 22%;
	width: 50%;
	border-bottom: 2px solid #000;
	transition: transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
}
.openbtn::before {
	transform: translateY(-10px);
}
.openbtn::after {
	transform: translateY(10px);
}
.closebtn {
	z-index: 100;
	width: 100%;
	max-width: 500px;
	height: 100%;
	pointer-events: none;
	transition: background .5s;
}
#navTgl:checked + .openbtn span {
	transform: scaleX(0);
}
#navTgl:checked + .openbtn::before {
	transform: rotate(45deg);
}
#navTgl:checked + .openbtn::after {
	transform: rotate(-45deg);
}
#navTgl:checked ~ .closebtn {
	background: #fff;
}




/* ++++ ドロワーメニュー ++++ */
.drawer-menu-area {
	z-index: 110;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 500px;
	height: 100%;
	padding: 60px 20px 120px;
	margin: 0;
	box-sizing: border-box;
	transform: translateX(100%);
	transition: transform .5s cubic-bezier(0.33, 1.01, 0.33, 0.97);
}


#navTgl:checked ~ .drawer-menu-area {
	transform: none;
}






.logo-drawer {
	margin-bottom: 20px;
}










nav .subject {
  margin:0 8px;
  padding:0;
  list-style: none;
   border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #ccc;
}


nav .subject li {
  border-top-width: 1px;
  border-top-style: dotted;
  border-top-color: #ccc;
  margin-bottom:0;
  padding: 12px 0;
  position: relative; 
}

nav .subject li a {
  color: #333;
  font-weight: normal;
  letter-spacing: 0em;
  text-decoration: none; 
  font-size: 16px;
  display: block;
  position: relative;
}
nav .subject li a img {
  display: inline-block;
  vertical-align: middle;
  margin-right: .6em;
  width: 45px;
  border-radius: 10px;
}
nav .subject li a i {
  font-size: 1rem;
  height: 1.2rem;
  width: 1.3rem;
  display: block;

  color:#b3d6ff;

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  line-height: 1.2rem;
} 



.drawer-memo {
	font-size: 12px;
	line-height: 1.5;
}

.drawer-memo-lg {
	font-size: 14px;
	line-height: 1.5;
}
