@charset "utf-8";


/* 
button 
*/
.c-button{
  text-align: center;
}

.c-button__a{
  display: inline-block;
  color: #EEEEEE   ;
  font-weight: bold;
  background-color: #979797;
  text-align: center;
  padding: 15px 60px;
  text-decoration: none;
  border-radius: 100vh;
  box-shadow: 5px 5px 5px #ddd;
  transition: box-shadow .3s;
  transition: background-color .3s;

}

.c-button__a:hover{
  background-color: #fc8fa8;
  box-shadow: 0 0 0 #ddd;
}