@charset "UTF-8";
/***********************************************/
/* base.css                                    */
/***********************************************/
/***********************************************/
/* ユニバーサルセレクタ                         */
/***********************************************/
* {
	font-style: normal;
	font-weight: normal;
	margin: 0;
	padding: 0;
	text-decoration: none;
	/*word-break: break-all;*/
	/*word-wrap: break-word;*/
	line-height: 1.5;
}
/***********************************************/
/* ブラウザによってちがう幅・高さの解釈の対策     */
/***********************************************/
/* Mozilla の 独自仕様（実験段階）のため使用しない */
/* 
* {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*/
/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 
body {
	font: normal small "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, Osaka, verdana, arial, sans-serif;
}
h1 {
	font-size: x-large;
	line-height: 115%;
}
h2 {
	font-size: large;
	line-height: 125%;
}
h3 {
	font-size: medium;
	font-weight: bold;
	line-height: 135%;
}
h4 {
	font-size: medium;
	line-height: 135%;
}
h5 {
	font-size: small;
	font-weight: bold;
}
h6 {
	font-size: small;
}
strong{
	font-weight: bold;
}
img {
	margin: 0px;
	padding: 0px;
	border: 0px;
}
/***********************************************/
/* link                                        */
/***********************************************/ 
a:link{
	color: #0000FF;
}
a:visited{
	color: #0000FF;
}
a:hover{
	color: #FFAA00;
}
/***********************************************/
/* list                                        */
/***********************************************/ 
ul li {
	list-style-position: inside;
	margin-left: 1em;
}
dl dt{
	/*font-weight: bold;*/
	font-weight: normal;
}
dl dd{
	margin-left: 1em;
}

