<style type="text/css">

<!--

/* リンク（必ずlink-visited-hover-activeの順番で書く） */

A:link{		/*まだ見ていない状態*/
	color: #6984e0;
	text-decoration: none;
    background-color:transparent;
}

A:visited{	/* すでに見た状態 */
    color:#0a0;
    text-decoration:none;
}

A:hover{	/* カーソルが上にある状態 */
	color:#f60;
	text-decoration:none;
}

A:active{	/* マウスボタンを押している状態 */
    color:#ff0000;
    text-decoration:none;
}


/* 基本設定（余白・フォント・背景色・行間・テキスト揃え）*/
body, table{
    margin:0px;
    padding:0px;
	font-family:  "Meiryo UI", "Hiragino Kaku Gothic Pro", Verdana, Century,
	"MS P Gothic", Osaka, Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:left;
	line-height:1.4em;
    /*行間（Ｍの1.4倍の高さ）*/
	color:#3e3e3e;
    background-color:#fff;
}

/* container（全体枠） */

div#container{
	text-align: left;
	border: 0px;
	background-color:#fff;
	width: 900px;
	margin: 0px;
}

/* header */

div#header{
	padding:0px;
	margin: 0px 0px 0px 10px;
	width: 900px;
	position: fixed;
    top: 0px;
    background-image: url('pix/logo2.jpg');
    background-repeat: no-repeat;
    z-index:5;
}

div#main{
	padding: 10px 10px;
	height:auto;
	float:left;
	width:670px;
    background-color:#fff;
    border:1px #808080 solid;
    position:absolute;
    top:68px;
    left:10px;
    z-index:1;
}

/* sidemenu メニューの左右入れ替えにはpositionとleft等を変更する */

div#side{
	background-color:#fff;
    width:209px;
    border-right:0px  #808080 dotted;
    border-left:0px  #808080 dotted;
    border-bottom: 0px #808080 dotted;
    padding:10px 0px;
    text-align:left;
    background-color:#fff;
    height: auto;
    position:fixed;
    top: 65px;
    left:704px;
    float:right;
}


/* サイドメニューリンク設定 */

#menu{
	width:206px;
	height:auto;
	font-size:12px;
}

/* ブラウザのデフォルトCSS設定クリア */

#menu ul, #menu li{
    margin:0;
    padding:0;
    list-style:none;
}

/* メニュー上部の線 */

#menu ul{
	border-top: 3px solid #088;
	margin-left: 8px;
	border-right: 1px solid #4cc;
	border-left: 1px solid #4cc;
}

/* リスト設定（display:inlineとだけ指定） */

#menu li{
    display:inline;
}

/* リンク付け：heightをautoにすると、Opreaでは微妙な動きが生じる。heightプロパティに任意の数値を指定する場合、padding propertyと単位をあわせておくと便利 */

#menu a, #menu a:link, #menu a:visited{
    text-decoration:none;
    color:#666;
    background-color:transparent;
    border-bottom: 1px solid #4cc;
    border-left: 1px solid #fff;
    display: block;
    padding: 2px 8px;
    width:auto;
    height: 19px;
}

/* a:hoverの指定でいろいろな動きを演出 */

#menu a:hover{
	color: #fff;
	border-right: 3px solid #000;
	border-left:0px solid #ffff99;
	border-top: 1px solid #fff;
	border-bottom: 0px solid #000;
	background-color: #616de0;
}

/* サイドメニュー「問い合わせ」位置揃え */

.sidemenu{
	margin-left:8px;
	margin-top: 3px;
	margin-right:0px;
	padding:3px 4px 0px 5px;
	background-color:#088;
	text-align: left;
	color:#fff;
}

/* コピーライト部分 */

div#footer{	
	width:648px;
    margin:10px 0px 0px 0px;
    text-align:right;
    padding:8px 10px;
    background-color:#9ef;
    border:1px #a6a6ff solid;
}

/* section title */

h1{
    font-size:18px;
    font-weight:bold;
    line-height:1.8em;
    padding-left: 7px;
    padding-bottom: 5px;
    border-bottom:0px dotted #5757ae;
}

h2{
    font-size:14px;
    font-weight:bold;
    line-height:1.4em;
    padding-left: 7px;
    border-bottom:1px solid #bdbddf;
    border-left:10px solid #5757ae;
    margin-top: 15px;
    margin-bottom: 5px;
    background-color: #fff;
}

h3{
	font-size:14px;
    font-weight:bold;
    line-height:1.4em;
}

.title3{
    background-color:#fff;
    color:#646464;
    font-weight:bold;
    border:1px #dbdbdb solid;
    line-height:150%;
    padding:5px 8px;
    font-size:15px;
    background-image:url('./pix/bg1.jpg');
    background-repeat:repeat-x;
}

.titlebox{
	width:px;
    margin:0px auto;
    padding:5px 10px;
    background-color:#d4ac28;
	font-family: Verdana, Helvetica;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	border:1px #008080 dotted;
	border-bottom:0px #008080 dotted;
	color:#fff;
}

/* justification指定 */

p{
	margin:10px 15px;
    text-align:justify;
    text-justify:inter-ideograph;
}

p.right{
	text-align: right;
}

p.center{
	text-align: center;
}


/* div用 */

.indentation{
	margin-left: 2em;
}


/* 強調（２種類）デフォルトのitalic体はnormalに変更 */
em.underline{
	font-style: normal;
	border-bottom:1px solid #000066;
}

em.bold{
	font-style: normal;
	font-weight: bold;
}


.box{
	width:620px;
    margin:0px auto;
    padding:5px 10px;
    background-color:#ffd;
	font-family:  "Meiryo UI", "Hiragino Kaku Gothic Pro", Verdana, Helvetica;
	font-size: 13px;
	line-height: 1.3em;
	text-decoration: none;
	border:0px #008080 dotted;
	border-bottom:0px #008080 dotted;
}


/* リスト関係設定 */

ol{
    margin-bottom:8px;
	line-height:1.5em;
	margin-right:15px;
}


/* 定義リストを横に並べて使用 */
dl		{ 
		margin: 10px 0px 10px 0px;
		padding: 0px;
		line-height: 1.3em;
}
		
dt		{
		width: 120px;
		margin: 5px 5px 5px 5px;
		padding:5px 5px 2px 5px;
		float: left;
		clear: left;
		border-style: none;

		border-width: 2px; 
		border-color: #000;
		background: #fff;
		text-align: right;
}
		
dd		{
		width: 500px;
		margin: 5px 0px 5px 0px;
		padding:5px 0px 2px 1px;
		float: left;
		border-style: none; 
		border-width: 2px; 
		border-color: #000;
		background: #fff;
		text-align: left;
}


/* 画像の左右寄せ（テキストの回りこみ）設定 */

.floatleft{
    float:left;
    margin:0px 10px 10px 0px;
}

.floatright{
    margin:0px 0px 10px 10px;
    float:right;
}

.floatclear{
    clear:both;
}

-->

</style>
