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


/*　↓↓↓↓↓↓↓ここから↓↓↓↓↓↓↓　*/


/*　（１）基本になるクラス…<body>全体にかける　*/
.basic {
	/*　↓背景色　*/
	background-color: #fff;
	/*　↓全体をセンター寄せに　*/
	text-align:center;
	/*　↓上下左右のマージン　*/
	margin: 0px 0px 20px 0px;
	/*　↓基本フォントの種類　*/
	font-family: Courier, serif;
	/*　↓基本フォントのサイズ　*/
	font-size: 16px;
	/*　↓基本フォントの色　*/
	color: #000;
	/*　↓基本フォントの行間　*/
	line-height: 30px;
	/*　↓基本フォントの太さ　*/
	font-weight: bold;
}


/*　（２）リンク文字の見え方の設定　*/
	/*　↓基本リンク文字の設定　*/
	a:link {
	font-family: Courier, serif;
	text-decoration: underline;
	color: #000;
	font-weight: bold;
	font-size: 23px;
	}
	/*　↓訪問済みリンク文字の設定　*/
	a:visited {
	text-decoration: none;
	text-decoration: underline;
	color: #000;
	font-size: 23px;
	}
	/*　↓ポインタがのっている状態のリンク文字の設定　*/
	a:hover {
	text-decoration: underline;
	color: #da4300;
	font-size: 23px;
	}
	/*　↓押した瞬間のリンク文字の設定　*/
	a:active {
	text-decoration: none;
	color: #da4300;
	font-size: 23px;
	}
	
/*　（３）小さい文字のクラス　*/
	.small {
	/*　↓フォントのサイズ　*/
	font-size:10px;
	/*　↓字間　*/
	letter-spacing:3px;
	color: #000;
	/*　↓フォントの太さ　*/
	font-weight: bold;
	}
	
/*　（４）大きい文字のクラス　*/
	.big {
	/*　↓フォントのサイズ　*/
	font-size:60px;
	/*　↓斜めに　*/
	font-style: oblique;
	/*　↓文字の上のスペース　*/
	margin-top:34px;
	}
