@charset "Shift_JIS"; /* 文字エンコードの設定（削除不可） */


/* ********** @import設定 ********** */
/* グーグルフォント読み込み */
@import url("http://fonts.googleapis.com/css?family=Cantata+One");



/* ********** 共通設定 ********** */
*	{	}
html {
	cursor: crosshair;		/* カーソル */
}
body { 
	font-size: 12px;		/* 文字の大きさ */
	line-height: 1.6;		/* 行間 */
	background-color: #fff;		/* 背景色　白 */
	color: #000;			/* 文字色　黒 */
	padding: 5px;			/* 上下左右に10の余白 */
	font-family:'Cantata One', sans-serif;
}


/* 見出し */
h1	{	}
h2	{	}
h3	{	}
h4	{	}
h5	{	}
h6	{	}


/* 段落 */
p	{	}


/* 罫線 */
hr	{size:1;}


/* 強制改行 */
br	{	}


/* アンカー */
a {
	color : #666; 		/* リンクの文字色　灰 */
	text-decoration: underline;	/* リンクの装飾　下線 */
}
a:link	{	}
a:visited	{	}
a:hover {
	color : #fff; 		/* リンクに触れた時の文字色　白 */
	background: #000;	/* 背景色　黒 */
	text-decoration: none;		/* リンクの装飾を消す */
	cursor: crosshair;		/* カーソル */
}
a:active	{	}
a:focus	{	}


/* フォーム */
form	{	}
fieldset	{	}
legend	{	}

label	{	}

input	{	}
	input[type="text"]	{	}
	input[type="checkbox"]	{	}
	input[type="radio"]	{	}
	input[type="button"]	{	}
	input[type="submit"]	{	}
	input[type="reset"]	{	}
	input[type="image"]	{	}

textarea	{	}
select	{	}
option	{	}
optgroup	{	}


/* ボタン */
button	{	}
	button[type="button"]	{	}
	button[type="submit"]	{	}
	button[type="reset"]	{	}
input,textarea,select,option,optgroup,button {
	margin:0.5em 0;
	color : #000; 		/* 文字色　黒 */
	background-color: #fff;	/* 背景色　白 */
	border : 1px solid #666; 	/* 枠線　直線　グレー */
	font-size: 12px;		/* 文字の大きさ */
	line-height: 1.6;		/* 行間 */
	cursor: crosshair;		/* カーソル */
}


/* リスト */
ol	{	}
ol li	{	}

ul	{	}
ul li	{	}

dl	{	}
dt	{	}
dd	{	}


/* アドレス */
address	{	}


/* テーブル */
table	{background-color: #fff;	/* 背景色　白 */
	border : 1px solid #666; 	/* 枠線　直線　グレー */
	font-size: 12px;		/* 文字の大きさ */
	line-height: 1.6;		/* 行間 */	}
caption	{	}
thead	{	}
tbody	{	}
tfoot	{	}
tr	{	}
	thead tr	{	}
	tbody tr	{	}
	tfoot tr	{	}
th	{	}
	thead th	{	}
	tbody th	{	}
	tfoot th	{	}
td	{	}
	thead td	{	}
	tbody td	{	}
	tfoot td	{	}
th, td {color : #000; 		/* 文字色　黒 */
	background-color: #fff;
	border : 1px solid #666; 	/* 枠線　直線　グレー */
	padding:0.5em;
}


/* 画像 */
img	{border:none;	}
a img	{	}


/* 引用 */
blockquote	{	}
q	{	}


/* 参照元 */
cite	{	}


/* 整形済みテキスト */
pre	{	}


/* コード・出力サンプル */
code	{	}
samp	{	}


/* キーボード */
kbd	{	}


/* 変数・置き換え可能語 */
var	{	}


/* 定義語 */
dfn	{	}


/* 省略語 */
abbr, acronym	{	}


/* 書字方向指定 */
bdo	{	}


/* インラインフレーム */
iframe	{	}


/* オブジェクト */
object	{	}


/* ノースクリプト */
body noscript	{	}


/* ノーフレーム */
body noframes	{	}


/* 上付き文字・下付き文字 */
sup	{	}
sub	{	}


/* 強調・追加・削除 */
em	{	}
strong	{	}
ins	{	}
del	{	}


/* その他物理要素 */
b	{font-weight:bold;}
i	{font-style:italic;}
big	{font-size: larger;}
small	{font-size: smaller;}
tt	{	}


