@charset "UTF-8";
/* CSS Document */
/*//////////////////////////////////////////////////

Title : index.css
For   : Resetting styles
        (Format browser's default styles and setting HTML elements styles)

Created       : 2008-07-16
Last Modified : 2008-09-04

Copyright (C) KAYAC Co,. Ltd. All right reserved.

----------------------------------------

Content

    0. Yahoo UI Library:
         Reset CSS, Fonts CSS
    1. HTML, Body, Anchor
    2. Heading, Paragraph
    3. List
    4. Table
    5. Forms
    6. Quotation
    7. Others
    8. For IE7 Page Zoom

//////////////////////////////////////////////////*/


/* ---------------------------------------(=0)
    0. Yahoo UI Library:
       Reset CSS, Fonts CSS
   ---------------------------------------- */
/*
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.4.0
*/
html{color:#000;background:#FFF;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q:before,q:after{content:'';}
abbr,acronym {border:0;font-variant:normal;}
/* to preserve line-height and selector appearance */
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
/*because legend doesn't inherit in IE */
legend{color:#000;}


/*
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.4.0
*/
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}
table {font-size:inherit;font:100%;}
/**
 * Bump up IE to get to 13px equivalent
 */
pre,code,kbd,samp,tt {font-family:monospace;*font-size:108%;line-height:100%;}


/* ---------------------------------------(=1)
    1. HTML, Body, Anchor
   ---------------------------------------- */
html {}

body {
    margin: 0;
    padding: 0;
    background: #ffffff url(/img/common/bcg_body.jpg) no-repeat center top;
    color: #000000;
    font-family:
        "ヒラギノ角ゴ Pro W3",
        "ＭＳ Ｐゴシック",
        sans-serif;
    line-height: 1.5;
}

*+html body {
    font-family:
        "ＭＳ Ｐゴシック",
        "ヒラギノ角ゴ Pro W3",
        sans-serif;
}

* html body {
    font-family:
        "ＭＳ Ｐゴシック",
        "ヒラギノ角ゴ Pro W3",
        sans-serif;
}


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

/*a:link,
a:visited { color: #003366; }
a:hover,S
a:active  { color: #003366; text-decoration: none; }*/

/* NOTE!
:hoverにbackgroundを指定すると親要素が拡張するバグ（IE6以下）
http://cssbug.at.infoseek.co.jp/detail/winie/b102.html
*/


/* ---------------------------------------(=2)
    2. Heading, Paragraph
   ---------------------------------------- */
/*
h1, h2, h3, h4, h5, h6 {
    clear: both;
}
*/

/*
p {
    margin: 1em 0;
    padding: 0;
}
*/


/* ---------------------------------------(=3)
    3. List
   ---------------------------------------- */
/*
ul, ol, dl {
    clear: both;
    margin-top: 1em;
    margin-right: 1em;
    margin-bottom: 1em;
}
*/

/*
li, dd {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
*/

/*
dt {
    clear: both;
    font-weight: bold;
}
*/


/* ---------------------------------------(=4)
    4. Table
   ---------------------------------------- */
/*
table {
    clear: both;
    width: 100%;
    overflow: auto;
    margin: 1em 0;
    empty-cells: show;
    }

caption {}
thead {}
tfoot {}


tbody {}

colgroup {}
col {}

th {
    vertical-align: top;
    }

td {
    vertical-align: top;
    }

thead th {}
tbody th {}
tfoot th {}
*/

/* ---------------------------------------(=5)
    5. Forms
   ---------------------------------------- */
/*
form {}
fieldset {
    margin: 1em 0;
    padding: 1em;
    border: 0;
    }
*/

legend { display: none; }

/*
input, textarea, select { font-size: 99%; }
textarea { font-family: "ＭＳ ゴシック", monospace; }
*/

label { cursor: pointer; }

button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-family:
        "ヒラギノ角ゴ Pro W3",
        "ＭＳ Ｐゴシック",
        sans-serif;
}

/*
optgroup {}
option {}
*/

/* ---------------------------------------(=6)
    6. Quotation
   ---------------------------------------- */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/*
blockquote {}
*/

/*
q    { border-bottom: 1px dotted #d90000; background: #ffeeee; }
cite { font-style: normal; }
*/

/* ---------------------------------------(=7)
    7. Others
   ---------------------------------------- */

/*  Inline-level elements
   ------------------------------- */
/*
address {}
*/

img { vertical-align: top; }

/*
object, iframe {}
*/

/*
em {}
*/

strong { font-weight: bold; }

/*
abbr, acronym {
    border-bottom: 1px dotted #fdfdfd;
}
*/

/*
dfn {}
code, samp, kbd { font-family: "ＭＳ ゴシック", monospace; }
var { font-style: italic; }

ins {}
del {}
param {}
sup {}
sub {}
*/

/*  Block-level elements
   ------------------------------- */
hr { display: none; }
pre { overflow: auto; font-family: "ＭＳ ゴシック", monospace; }


/* ---------------------------------------(=8)
    8. For IE7 Page Zoom
   ---------------------------------------- */
body,
br { letter-spacing: 0; }


/*---------------------------------------------------------*/

.weak {
	font-size: 90%;
	color: #444;
}

.important {
	font-weight: bold;
}

h3 {
	font-weight: bold;
	margin: 0.5em 0 0.5em 0;
}

var {
	text-decoration: underline;
}

ol {
	margin: 0.5em 0;
}

ol li {
	margin: 0 0 0 2em;
	list-style: decimal;
}

input.delete {
	font-size: 80%;
}

#ad {
	text-align: center;
}

#services {
	padding: 1em;
}

#services li {
	display: inline;
	padding: 0 0.5em;
}

.ie-seq {
	font-size: 85%;
	padding: 0 30px;
	text-align: left;
}

.ie-seq li {
	text-align: left;
}

/*-----------------------------------------------*/

body {
	margin: 0;
	background:#50b2c1;
	text-align: center;
}


div#wrapper {
	margin: 0 auto;
}

div#content {
	width: 860px;
	overflow: auto;
	margin: 0 auto;
	text-align: left;
}

h3{
width:755px;
margin:0 0 0 55px;

}

/*-------- #header ---------*/

div#header {
	position: relative;
	top: 0px;
	left: 0px;
	width: 860px;
	height:215px;
	background:url(../img/bg_header.jpg) no-repeat top left;
}

div#header h1 {
	position: absolute;
	top: 21px;
	left: 21px;
	width: 375px;
}

div#header h2 {
	position: absolute;
	top: 30px;
	left: 520px;
	width: 315px;
}



/*-------- #cont1 ---------*/

div#cont1 {
	width: 860px;
	height:517px;
	position: relative;
	background:url(../img/bg_02.gif) no-repeat top left;
}
div#cont1 ul{
width:481px;
height:275px;
position:absolute;
left:302px;
top:59px;
}
div#cont1 ul h4{
margin:17px 0 8px 0;
}
div#cont1 ul li form img{
width:29px;
position:absolute;
top:300px;
}
div#cont1 ul li input.textbox{
width:247px;
height:16px;
_height:20px;
position:absolute;
top:300px;
left:29px;
}
div#cont1 ul li input.textbtn{
position:absolute;
top:299px;
right:0px;
}

div#cont1 ul li input.textbox2{
width:481px;
height:50px;
margin:42px 0 0 0;
}
div#cont1 #parts{
width:190px;
position:absolute;
top:55px;
left:55px;
}
div#cont1 #parts img{
margin:30px 0 0 0;

}
div#cont1 #parts div#swf{
margin:15px 15px 0 15px;

}
/*-------- #cont2 ---------*/

div#cont2 {
	width: 860px;
	height:379px;
	position: relative;
	background:url(../img/bg_03.gif) no-repeat top left;
}
div#cont2 dl{
height:175px;
margin:6px 0 35px 0;
}
div#cont2 dl dt{
position:absolute;
top:54px;
left:127px;

}
div#cont2 dl dd{
position:absolute;
top:54px;
left:317px;
}



/*-------- #footer ---------*/
div#footer {
	clear: both;
	width:820px;
	_width:860px;
	font-size: 90%;
	margin: 0 auto 0 auto;
	padding:20px;
	background: url(../img/bg_footer.gif)  top left;
}

div#contF {
	width: 800px;
	margin: 0 auto;
	text-align: left;
}

div#footer dl{
	clear: both;
	width: 800px;
	overflow: hidden;
}

div#footer dt {
	float: left;
	padding-left: 17px;
}

div#footer dd ul {
	margin-left: 200px;
	padding-right: 20px;
	text-align: justify;
}

div#footer dd ul li {
	display: inline;
	padding-right: 15px;
}

address {
	font-size: 90%;
	padding-top: 10px;
	padding-right: 20px;
	color: #000000;
	text-align: right;
}

/*-------------------------*/
div#ad {
	clear:both;
}


/*-----------------------------------------------*/
* html .iepngfix {
	behavior: expression(IEPNGFIX.fix(this));
}
