@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

    body{
        text-align: center;
        font-family: 'Noto Sans JP', sans-serif;
        background-color: #F8EDED;
    }
    
	h1{
		margin: 100px auto;
		position: relative;
		padding: 0.25em 0;
	  }
	  h1:after {
		content: "";
		display: block;
		height: 4px;
		background: -webkit-linear-gradient(to right, rgb(255, 186, 115), #ffb2b2);
		background: linear-gradient(to right, rgb(255, 186, 115), #ffb2b2);
	  }
	
    #namae{
        margin: 20px auto;
        width: 500px;
        padding: 10px;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 30px;
		color: #FFF;
        background: #d25555;
		box-shadow: 0 2px 50px rgba(140, 122, 122, 0.5);

    }

     
 .v-btn{
	margin: 20px auto;
	display: inline-block;
	width: 200px;
	height: 30px;
	text-align: center;
	background-color: #93b53f;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 24px;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	padding: 10px 24px;
	border-radius: 4px;
	border-bottom: 4px solid #567633;
}
.v-btn:active{
	transform: translateY(4px);
	border-bottom:none;
}
.a-btn{
	margin: 20px auto;
	display: inline-block;
	width: 200px;
	height: 30px;
	text-align: center;
	background-color: #eaa330;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 24px;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	padding: 10px 24px;
	border-radius: 4px;
	border-bottom: 4px solid #b77a2f;
}
.a-btn:active{
	transform: translateY(4px);
	border-bottom:none;
}



.n-btn{
	display: inline-block;
	text-decoration: none;
	background: #ff8181;
	color: #FFF;
	width: 120px;
	height: 120px;
	line-height: 120px;
	border-radius: 50%;
	text-align: center;
	font-weight: bold;
	overflow: hidden;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
	border-bottom: solid 3px #bd6565;
	transition: .4s;
  }
  
  .n-btn:active {
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
	border-bottom: none;
  }

  p{
	line-height: 10;
}




