h1 {
	font-size: 48px;    /*　タイトルサイズ　*/
	text-align: center
}

h2 {
   	font-size: 32px;    /* 見出しサイズ */
}

h3 {
	font-size: 24px;    /* "せいかい!!", "ふせいかい" サイズ */
}

h4 {
    	font-size: 24px;    /* 文章サイズ */
}


a {
  	text-decoration: none;
}

a:hover {
  	text-decoration: underline;
}

.kakudai {
	display: inline-block;
	transition: all 0.1s ease 0s;         
	text-decoration: none;
}
.kakudai:hover {
	cursor: pointer;
	transition: all 0s ease 0s;
	transform: scale(2);
	color: #ff0000; 
}
