.btn_black_moto {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #FFF !important;
  background: #111111;/*背景色*/
  /* border-bottom: solid 2px #d27d00;/*少し濃い目の色に*/
  border-radius: 25px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  /* font-weight: bold; */
  width: 200px;
  height: 18px;
  padding-top: 10px;
  font-size:0.8em;
}
.btn_blue_moto {
  position: relative;
  display: inline-block;
  padding: 14px 0 0 0;
  text-decoration: none;
  color: #FFF !important;
  background: #a0563b;/*背景色*/
  /* border-bottom: solid 2px #d27d00;/*少し濃い目の色に*/
  border-radius: 25px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  /* font-weight: bold; */
  width: 250px;
  height: 26px;
  font-size:0.8em;
}
.btn_blue_moto2 {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #FFF !important;
  background: #a0563b;/*背景色*/
  /* border-bottom: solid 2px #d27d00;/*少し濃い目の色に*/
  border-radius: 15px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  /* font-weight: bold; */
  width: 200px;
  height: 25px;
  padding-top: 14px !important;
  font-size: 1em;
}
.btn_white_moto {
  position: relative;
  display: inline-block;
  padding: 14px 0 0 0;
  text-decoration: none;
  color: #000000 !important;
  background: #fff;/*背景色*/
  border: 1px solid #a0563b;
  border-radius: 25px;/*角の丸み*/
  /* box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19); */
  /* font-weight: bold; */
  width: 250px;
  height: 26px;
  font-size:12.8px;
	font-weight: 400;
}
.btn_white_moto2 {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #007bbb !important;
  background: #fff;/*背景色*/
  border: 1px solid #007;
  border-radius: 15px;/*角の丸み*/
  /* box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19); */
  /* font-weight: bold; */
  width: 200px;
  height: 25px;
  padding-top: 14px;
  font-size: 1em;
}
.btn_white_moto3 {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  color: #000000 !important;
  background: #fff;/*背景色*/
  border: 1px solid #b37b62;
  border-radius: 25px;/*角の丸み*/

  width: 350px;
  font-size:18px;
}
.box17{
    margin:2em auto;
    width:150px;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
    font-weight:bold;

}
.box17:before, .box17:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: black;
}
.box17:before {left: 10px;}
.box17:after {right: 10px;}
.box17 p {
    margin: 0;
    padding: 0;
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background:#D54884;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}

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


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

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

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

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    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: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}


/* ーーーーーーーー
スマホの時
ーーーーーーーー */

  @media screen and (max-width: 480px) {
  	/* 480px以下に適用されるCSS（スマホ用） */
	.btn_white_moto3 {
		width: 91%;
	}
}