@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;
}
*/
/***********************************************/
/* clearfix                                    */
/***********************************************/ 
.clearfix:after {
	content: url(/files/jtrends/images/parts/spacer.gif);
	display: block;
	clear: both;
	height: 0;
}
/* for IE */
.clearfix { display: inline-block; }
.clearfix { display: block; }
/* Mac版IEのみに適用 \*//*/
.clearfix { overflow: hidden; }
/* */
/***********************************************/
/* claer                                       */
/***********************************************/ 
.clear {
	clear: both;
}
.clear_l {
	clear: left;
}
.clear_r {
	clear: right;
}
/***********************************************/
/* 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 {
	cursor: pointer;
}
a:link {
	color: #003399;
	text-decoration: underline;
}
a:visited {
	color: #003399;
	text-decoration: underline;
}
a:hover {
	color: #7f0000;
	text-decoration: underline;
}
/***********************************************/
/* list                                        */
/***********************************************/ 
ul li {
	margin-left: 1em;
}
dl dt{
	font-weight: normal;
}
dl dd{
	margin-left: 1em;
}
