@charset "utf-8";
.toggleWrap{
	display: none;
}
@media screen and (max-width:576px){
	.toggleWrap{
		display: block;
	}
}
@media screen and (max-width: 991px){
	.toggleWrap {
		display: block;
		position: absolute;
		z-index: 9999;
		top: 0;
		right: 0;
		cursor: pointer;
		width: 60px;
		height: 60px;
	}
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
    width: 60px;
    height:60px;
}
.openbtn::after{
	content: "MENU";
  position: absolute;
	bottom:10px;
	right: 0;
	font-size: 10px;
	text-align: center;
    width: 100%;
	color:#fff;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 25%;
    height: 3px;
  background: #fff!important;
    width: 50%;
  }

.openbtn span:nth-of-type(1) {
  top:15px; 
}

.openbtn span:nth-of-type(2) {
  top:22px;
}

.openbtn span:nth-of-type(3) {
  top:29px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*========= レイアウトのためのCSS ===============*/
a{
  color: #333;
  text-decoration: none;
}

.lead{
  margin:20px 0 0 0;
}

.btn-block{
  width:200px;  
  padding: 30px;
}