﻿@charset "UTF-8";
@import url(common.css);
@import url(textsettings.css);
@import url(g-top_menu.css);


/* ================================================================ *
	「★」が付されている設定項目は相互に依存するので注意して
	設定する事。
 * ================================================================ */

/* ---------------------------------------------------------------- *
	ドキュメント全体に関する設定
 * ---------------------------------------------------------------- */

body {
	/* --- 基本的な前景色（文字色）を設定する。 --- */
  color: #333333;
	background-color: #FFFFFF;
	background-position: left;
}

#container {
  /* --- 内容部分の背景を設定 --- */
  /* Note：内容部分の背景を透明にしたり，透過 GIF を利用したりして
           背景に変化をつけることもできる。 */
  background: transparent;
  /* --- ドキュメント本体の幅を設定 --- */
  /* Note：百分率指定も可能 */
  width: 900px;
  /* --- ドキュメント本体の位置を設定 --- */
  /* Note：「0」のみで左寄せ，「0 auto」でセンタリング */
  margin: 0 auto;
}


/* ---------------------------------------------------------------- *
	ヘッダ部分の設定
 * ---------------------------------------------------------------- */

#header {
  /* --- 背景を設定（短縮プロパティ） --- */
  background: #FFFFFF;
  /* --- マージンを設定 --- */
  /* Note：下マージンはナビゲーションの上マージンと折りたたみが
           生じる。 */
  margin-top: 0;
  margin-bottom: 0;
  /* --- パディングを設定 --- */
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background-image: url(../image/top-back03.jpg);
}
#header-nav{
	height:24px;
	float:right;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 0px;
	margin: 0px;
	background-image: url(../image/headerNavi_back.jpg);
	background-repeat: repeat-x;
}

#header-nav ul{
	padding:1px;
	line-height: 24px;
}

#header-nav ul li{
list-style-type:none;
float: left;
line-height: 24px;
padding:3px;
height:24px;
}
/* ---- *ヘッダーロゴ部分の設定* ----- */
#logo_goodstyle h1 {
	display: block;
	width: 45em;
	position: absolute;
	z-index: 1;
	left: 230px;
	top: 10px;
	height: 2em;
	font-size: 110%;
	color: #0033CC;
	line-height: 1.5em;
}
/* ---- *ヘッダーロゴアクセントの設定* ----- */
#h_accent {
	position:absolute;
	left:150px;
	top:2px;
	width:40px;
	height:40px;
	z-index:7;
	display: block;
}
.phone {
	color:#FFFF00;
	font-size: 100%;
}

/* ---------------------------------------------------------------- *
	ナビゲーション部分の設定（現在使用していない）
 * ---------------------------------------------------------------- */

#navi {
  /* --- 背景を設定（短縮プロパティ） --- */
  background: #FFFFFF url(img/bg.png) repeat-x;
  /* --- マージンを設定 --- */
  /* Note：上下マージンの折りたたみに注意！ */
  margin-top: 0;
  margin-bottom: 20px;
  /* --- パディングを設定 --- */
  /* Note：ナビゲーション部分に上下マージンを持つものが含まれる場合，
           上下パディングには正の値を指定する。 */
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  /* --- 枠を設定 --- */
  border-top: none;
  border-bottom: 1px solid #EEEEEE;
}


/* ---------------------------------------------------------------- *
	コンテンツコンテナの設定
 * ---------------------------------------------------------------- */

#main {
  /* ★ --- レイアウト調整：サイドメニューの設定に応じて設定 --- */
  /* Note：サイドメニューを左に配置した場合，padding-left をサイド
           メニューの幅＋マージンとし，padding-right を 0 とする。
           右に配置した場合，左右パディングを逆に読み替える */
  padding-left: 215px;
  padding-right: 0;
  /* --- 背景を設定（短縮プロパティ）--- */
  /* Note：サイドメニュー部分全体に背景を適用させるには，この部分で
           背景を指定しておく必要がある。 */
  background: tranparent;
  /* --- マージンを設定 --- */
  /* Note：上下マージンの折りたたみに注意！ */
  margin-top: 0;
  margin-bottom: 0;
}


/* ---------------------------------------------------------------- *
	サイドメニュー部分の設定
 * ---------------------------------------------------------------- */

#sidenavi {
  /* --- 背景を設定（短縮プロパティ）--- */
  /* Note：ここでの背景設定はメニュー部分の内容がある部分にしか適用
           されない、サイドメニュー部分全体に背景を適用させる場合は
           コンテンツコンテナの背景として，サイドメニュー部分の背景を
           作る必要がある。 */
  background: #FFFFFF;
  /* ★ --- メニューの幅を設定 --- */
  width: 200px;
  /* ★ --- メニューを左右どちらに寄せるか設定 -- */
  /* Note：左に寄せる場合は，「left: 0; right: auto;」，右の場合は
           「left: auto; right: 0;」 */
  top: auto;
  left: 0;
  right: auto;
  /* --- パディングを設定 --- */
  /* Note：コンテンツ部分に上下マージンを持つものが含まれる場合，
           上下パディングには正の値を指定する。 */
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1;
}

/* Note：上マージンを確保し，IE6/IE7 で垂直配置がずれるバグを回避
         する。以降，指示に従って同じ値での指定を 2 回続ける */
[id="sidenavi"]#sidenavi {
  /* ★ --- 上マージンを設定 --- */
  /* Note：コンテンツ部分の上マージンと同じ値を設定 */
  margin-top: 6px;
}
html:lang(ja) #sidenavi {
  /* Note：直前の指定と同じ値を設定 */
  margin-top: 6px;
}

/* ---------------------------------------------------------------- *
	コンテンツ部分の設定
 * ---------------------------------------------------------------- */

.contents {
	/* --- 背景を設定（短縮プロパティでの設定）--- */
  background: #FFFFFF;
	/* --- マージンを設定 --- */
  /* Note：上下マージンの折りたたみに注意！ */
  margin-top: 0;
	margin-bottom: 20px;
	/* --- パディングを設定 --- */
  /* Note：コンテンツ部分に上下マージンを持つものが含まれる場合，
           上下パディングには正の値を指定 */
  padding-top: 1em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
	border: 8px solid #f0f8ff;
}


.contents_2{
	/* --- 背景を設定（短縮プロパティでの設定）--- */
  background: #FFFFFF;
	/* --- マージンを設定 --- */
  /* Note：上下マージンの折りたたみに注意！ */
  margin-top: 0;
	margin-bottom: 0px;
	/* --- パディングを設定 --- */
  /* Note：コンテンツ部分に上下マージンを持つものが含まれる場合，
           上下パディングには正の値を指定 */
    padding-top: 1em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 0em;
}

h2 {
	padding:4px;
	border-bottom-width: 1px;
	border-left-width: 8px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #cfe9fc;
	border-left-color: #cfe9fc;
}
.contents_2 li,p{
	line-height:2.4em;
}
.contents_2 h5{
	font-size:small;
	background-color:#FFFFCC;
	display:inline;
	padding: 2px;
	text-align: center;
	color: #006699;
}
/* ---------------------------------------------------------------- *
	コンテンツ画像の設定
 * ---------------------------------------------------------------- */

.contents img.fig {
  /* --- 画像をどちらに回り込ませるか設定 --- */
  /* Note：left（左）または right（右）を指定；この指定によって
           以降のマージンの指定方法が異なる。 */
  float: left;
  /* --- 画像のマージンを設定 --- */
  /* Note：前記の回り込みについて「left」のとき→左マージン 0，
           「right」のとき→右マージン 0 とする。 */
  margin-top: 0;
  margin-right: 1em;
  margin-bottom: 1em;
  margin-left: 0;
}
ul.lists{
	padding:0px;
	margin:0px;
}
li.wholedata{
	position: relative;
	width:680px;
	height:190px;
	border: 8px solid #f0f8ff;
	margin-bottom:5px
}
li.wholedata h2{
	padding:4px;
	border-bottom-width: 1px;
	border-left-width: 8px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #cfe9fc;
	border-left-color: #cfe9fc;
}
.wholedata ul.photo{
	position: absolute;
	top:60px;
	left:15px;
	width:360px;
        margin:0px;
        padding:0px
}
.wholedata ul.photo li{
	float:left;
	padding-right:5px
	
}
.wholedata ul.detail{
	position: absolute;
	top: 50px;
	left: 420px;
}
.wholedata ul.detail li{
	border-bottom:dotted 1px #cfe9fc;
	font-size: 95%;

/* ---------------------------------------------------------------- *
	画像のみのボックスを作る場合の設定
 * ---------------------------------------------------------------- */

.imgbox {
  /* --- 背景を設定してください（短縮プロパティでの設定）--- */
  background: #FFFFFF;
  /* --- マージンを設定 --- */
  /* Note：上下マージンの折りたたみに注意！ */
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 10px;
  margin-left: 0;
}


/* ---------------------------------------------------------------- *
	フッタ部分の設定
 * ---------------------------------------------------------------- */

#footer {
  /* --- 背景を設定（短縮プロパティ）--- */
  background: #FFFFFF url(img/foot.gif) no-repeat right top;
  /* --- マージンを設定 --- */
  /* Note：上下マージンの折りたたみに注意！ */
  margin-top: 0;
  margin-bottom: 0;
  /* --- パディングを設定 --- */
  /* Note：上下マージンを持つものが含まれる場合，上下パディングには
           正の値を指定 */
  padding-top: 0.6em;
  padding-right: 0;
  padding-bottom: 1em;
  padding-left: 1em;
  /* --- 枠を設定 --- */
  border-top: 1px dotted #3EBAEE;
  border-right: none;
  border-bottom: none;
  border-left: none;
}

#footer ul li {
  /* --- 横並びリストのリストマーカ画像を設定 --- */
  /* Note：16×16 ピクセル以下のものを使用 */
  background-image: none;
}
#footer ul {
	float: right;
}