﻿@charset "utf-8";/* 文字コードセット */

/*
	主にWii用の指定	
@media tv {
	html body {  }
}
	Firefox、Safari、Opera用指定 
* {margin: 0px; padding: 0px;}
	IE8 beta 2用指定 (現在無効) 
html:first-child  body{  }
	IE7用指定 
*:first-child+html body{  }
	IE6用指定 
* html body{  }
*/

body,h1,div,ul,li,a,p,table,th,tr,td {margin: 0px; padding: 0px;}

/* ■全体の設定
---------------------------------------------------- */
body { 
	color: #333;
	background: #ffff99;
	text-align: center;
	font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: 1.0em;/* 基本フォントサイズ */
	line-height: 1.6em;/* 基本の行間 */
}

html { overflow: scroll; } /* Firefoxで強制的に縦スクロールを出す */

a { outline: none; }
a img { border: none; background: transparent; } /* 画像のリンクのボーダーを消す */

a:link    { text-decoration: none; color: #0033FF;}
a:visited { text-decoration: none; color: #0033FF;}
a:hover   { text-decoration: underline; color: #0033FF;}
a:active  { text-decoration: none; color: #0033FF;}


/* ■h1,h2,h3の装飾
---------------------------------------------------- */
/*
h1 {
	font-size:120%;
	text-indent:5px;
}

h2 {
	font-size:120%;
	text-indent:5px;
}

h3 {
	font-size:120%;
	text-indent:5px;
}
*/

/* ■リンク回りの設定
---------------------------------------------------- */
#jump {
	text-align: left; 
	margin: 30px;
}

/* ■各項目の設定
---------------------------------------------------- */
.item  { margin: 70px 30px; text-align: left; }
.item a{
	font-size: 30px;
}

/* ■各項目の設定
---------------------------------------------------- */
p.subtitle {  margin: 30px auto; font-size: 24px; }


