@charset "utf-8";

/*スクリプト系*/
@import "/css/DropDownMenu.css";/* DropDownMenu */
@import "/css/li-scroller.css";/* HEADLINE */

/*基本構造と汎用系*/
@import "/css/layout.css";/* layout style */
@import "/css/module.css";/* common module style */
@import "/css/base.css";/* base module style */

/*各コンテンツに分類（完全に分化してはいません。違う階層で使用する事もあります）*/
/*@import "/css/company.css"; /company/ style */
/*@import "/css/support.css"; /support/ style */
/*@import "/css/download.css"; /download/ style */
/*@import "/css/partner.css"; /partner/ style */
/*@import "/css/products.css"; /products/ style */
/*@import "/css/news.css"; /news/ style */

/* Set Base Style
----------------------------------------- */

/*
===== CONTENTS ===========================================

	1: universal reset
	2: body and base setting
		: general params
		: acronyms and abbreviations styles
	3: link setting

==========================================================
*/

*{margin:0;padding:0;}

/*
===== 1: universal reset =================================
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	/*background: transparent;*/
	background-color: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*
===== 2: body and base setting ===========================
*/

body {
	text-align:center;/* 全体レイアウト「text-align:center;」はIE対策 */
	background:#c0c0c0;/*背景色の指定は、背景グラデーション画像のサイズを越える事を考慮し、グラデーション画像の最下ピクセルの色を指定する事*/
	background-image: url(/img/top_bg.gif);/*背景グラデーション用画像*/
	background-repeat: repeat-x;
	color:#324D59;
	height:100%;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 1.5;
	    font-family: 'Noto Sans JP'," sans-serif";
}

/*IE6以下対策*/
th,td{
	text-align:center;/* 全体レイアウト「text-align:center;」はIE対策 */
	color:#324D59;
	height:100%;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 1.5;
	    font-family: 'Noto Sans JP'," sans-serif";
}

/* general params
--------------------*/
h1, h2, h3, h4, h5, h6,
div, p, pre, ul, ol, dl, dt, dd,
address, form, blockquote{
	padding: 0;/* margin&padding reset */
	line-height: 1.5;/* base line height */
	text-align: left;
	display: block;
	margin: 0px;
}

table {margin : 0;empty-cells: show; font-size:small;}
hr,.areaAnchor,.anchor { display : none; }
img {
	border: none;/* img do not want a border */
}
li { /*list-style: none;*/ }/* link do not want a dot */

/* acronyms and abbreviations styles
-------------------------------------*/
acronym,abbr{cursor:help;}

/*
===== 3: link setting ===========================
*/
a:link{
	color: #0066CC;
	text-decoration:none;
}
a:visited{
	color: #2693FF;
	text-decoration:none;
}
a:hover{
	color: #FF6900;
	text-decoration:underline;
}
a:active{
	color: #F23F13;
}
