@charset "utf-8";
/* CSS Document */

/*section{
  height: 1000px;
  font-weight: bold;
  text-align: center;
  padding: 100px 50px;
}*/

.topbtn{
width: 80px;
height: 80px;
background: #DDB4CE;
border-radius: 50%;
border-bottom: solid 3px #BB627D;
position: fixed;
bottom: 0;
color: #fff;
padding: 20px;
 /*cursor: pointer;*/
 /*transition: .3s;*/
transition: .4s;
left: 50%;
transform: translate(-50%,-50%);
opacity: 0;
visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}

.topbtn p{
	text-align: center;
	line-height: 20px;
}