@charset "utf-8";
.toggleWrap{
	display: none;
}
@media screen and (max-width:480px){
	.toggleWrap{
		display: block;
	}
}
@media screen and (max-width: 1024px){
	.toggleWrap {
		display: block;
		position: absolute;
		z-index: 9999;
		top: 8px;
		right: 4px;
		cursor: pointer;
		width: 50px;
		height: 50px;
	}
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
    width: 50px;
    height:50px;
}

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

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

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

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

/*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 ===============*/
body{
	background: #fff;
}

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

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