@charset "utf-8";

/* ==================== css import ==================== */
@import url("reset.css");
@import url("style.css");
@import url("flex.css");
/* ==================================================== */


/* CSS Document */

/*
============================================================
 共通スタイルシート
 ----------------------------------------------------------
 概要：全ページで共通して使用するスタイルを記述する
============================================================
*/
/*
================= 目次 =================

// IE5.5以下用センタリング設定
// ページ構造
// ヘッダー
// フッター

========================================
*/


/*-------------------------------------
// IE5.5以下用センタリング設定
-------------------------------------*/
body {
	/* ★ */
}
#wrapper {
	/* ★ */
}


/*-------------------------------------
// CSSハック
-------------------------------------*/

/* ★ clearfix hack */
.primary:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.primary {
	display: inline-block;
}

/* hide macie \*/
*html .primary {
	height: 1%;
}

.primary {
	display: block;
}
/* end hide */
/* end clearfix hack */


/*-------------------------------------
// link
-------------------------------------*/
a:link,
a:visited{
	color:#1D3994;
	text-decoration:underline;
}

a:hover{
	color:#1D3994;
	text-decoration:none;
}


/*-------------------------------------
// ページ構造
-------------------------------------*/

/* body背景 */
body {
	background: url(../img/common/body_bg.jpg) top left;
}

/* ラッパー外側（下角丸用） */
#wrapper-marubottom {
	width: 942px;
	height:15px;
	margin:0 auto;
	background-image: url(../img/common/frm_bottom2.png);
	background-repeat: no-repeat;
	background-position: left top;
}

/* ラッパー外側（上角丸用） */
#wrapper-marutop {
	width: 942px;
	margin:0 auto;
	padding-top: 15px;
	background-image: url(../img/common/frm_top2.png);
	background-repeat: no-repeat;
	background-position: left top;
	overflow:hidden;
}

/* ラッパー外側 */
#wrapper-out {
	width: 942px;
	margin:0 auto;
	text-align: left;
	background-image: url(../img/common/logo_flag2.png);
	background-repeat: repeat-y;
	background-position: left top;
	padding-bottom: 10000px;
	margin-bottom: -10000px;
}

/* ラッパー内側 */
#wrapper {
	width: 750px;
	margin:0 auto;
	background-image: url(../img/common/frm_side2.png);
	background-repeat: repeat-y;
	background-position: top left;
	padding-top: 15px;
	padding-right: 96px;
	padding-left: 96px;
	padding-bottom: 10010px;
	margin-bottom: -10000px;
}

#main {
	width:750px;
	text-align:left;
}


/*-------------------------------------
// ヘッダー
-------------------------------------*/


#header {
	width:750px;
	padding-bottom: 20px;
}

#header #logo {
	float: left;
	width:446px;
	height:88px;
}

#header #dial {
	float: right;
	width:231px;
	height:88px;
}

h1 {
	font-size:12px;
	font-weight:normal;
	text-decoration:none;
	color:#000000;
}

h1 a:link,
h1 a:visited { color:#000000;}

h1 a:hover {	color:#000000;}

#language {
     margin:10px 0px;
} 

#language p {
     float:right;
	 width:78px;
	 height:18px;
	 margin-right:10px;
}


/*-------------------------------------
// メイン
-------------------------------------*/

/* ナビ */

#navi {
	width:750px;
	height:85px;
}

#navi li {
	float:left;
	width:150px;
	height:35px;
	padding:0 0 1px 0;
}


/*-------------------------------------
// フッター
-------------------------------------*/
#foot_txt {
	margin:20px 0 0 0;
	padding:6px 0;
	background:#FFFF2B;
	border-top:1px #676767 solid;
	border-bottom:1px #676767 solid;
	text-align:center;
	line-height:1.4;
}

#footer {
	width:750px;
	padding:15px 0 0 0;
}

#footer #link{
	float:left;
	width:300px;
}

#footer #link a:link,
#footer #link a:visited{
	color:#333;
	text-decoration:none;
}

#footer #link a:hover{
	color:#333;
	text-decoration:underline;
}


/*-------------------------------------
// ページの先頭に戻る
-------------------------------------*/

.top_up {
	text-align: right;
	color: #000000;
	margin-top: 10px;
}

.top_up a:link,
.top_up a:visited {
	text-align: right;
	color: #000000;
}

.top_up a:hover { color: #86AD9A;}


/*-------------------------------------
// pdfダウンロード
-------------------------------------*/

.pro_pdf a {
	background-image: url(../img/arrow01.jpg);
	background-color: #FFFF66;
	background-repeat: no-repeat;
	background-position: left center;
	padding: 2px 40px 2px 17px;
	font-weight: bold;
}



