@charset "shift_jis";

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

[1] レイアウトに関する指定
[2] ヘッダーブロック内に関する指定
[3] コンテンツブロック内に関する指定
[4] サイドバーブロック内に関する指定
[5] フッターブロック内に関する指定
[6] CSSデザインサンプルリンク指定

----------------------------------------------------------------
CSSデザインサンプ [ URL ] http://www.css-designsample.com
------------------------------------------------------------- */


/* 一括で全ての要素の余白をゼロに指定 */
* {
  margin: 0;
  padding: 0;
}

/* 全体的なリンク */

a:link,
a:visited,
a:hover,
a:active { text-decoration: underline; }

a:link { color: #00f; }

a:visited { color: #90f; }

a:hover { color: #f00; }

a:active { color: #f00; }

/* -------------------------------------------------------------
   [1] レイアウトに関する指定 */

body {
  font-size: 85%;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding:0;
  margin: 0;
  background : url(bg-body.gif) repeat-x 0px 0px;
}

#wrapper {
  text-align: left;
  width: 760px;
  margin: 0 auto;
}

#header {
  width: 100%;
  height: 310px;
  margin-bottom: 2em;
  background : url(bg-header.jpg) no-repeat 0px 100%;
  position: relative;
}

#container { width: 100%; }

#contents {
  width: 430px;
  float: left;
}

#sidebar {
  width: 300px;
  float: right;
}

#footer {
  padding: 1em 0 2em;
  background-color: #9c0;
}

/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

h1 {
  font-size: 100%;
  font-weight: normal;
  position: absolute;
  top: 15px;
  left: 0;
}

.logo {
  font-size: 140%;
  line-height: 1;
  position: absolute;
  top: 35px;
  left: 0;
}

.logo a {
  text-decoration: none;
  color: #000;
}

.logo a:hover {
  text-decoration: none;
  color: #f00;
}

#header dl {
  width: 300px;
  height: 230px;
  overflow: hidden;
  position: absolute;
  top: 80px;
  right: 0;
}

#header dt {
  font-weight: bold;
  height: 20px;
  overflow: hidden;
  color: #fff;
}

#header dd {
  font-size: 90%;
  height: 190px;
  padding: 10px 10px 0;
  overflow: auto;
  background-color: #fff;
  color: #060;
}

#header dd p {
  line-height: 1.8em;
  margin-bottom: 0.5em;
}

/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

h2,h3,h4,h5,h6 {
  font-size: 120%;
  margin-bottom: 0;
  padding: 5px 0 5px 30px;
  background : url(bg-listmark-01.gif) no-repeat 0px 50%;
}

#contents dl { margin: 0 0 2em; }

#contents dt {
  font-weight: bold;
  padding: 5px 1em 5px 30px;
  background-color: #9c3;
}

#contents dd {
  margin-bottom: 1em;
  padding: 1em 30px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  border-left: 1px solid #999;
}

#contents p {
  line-height: 1.5em;
  margin-bottom: 1em;
}

#contents ul,
#contents ol {
  list-style-position: inside;
  margin: 1em 0;
  line-height: 1.2em;
}

/* -------------------------------------------------------------
   [4] サイドバーブロック内に関する指定 */

#sidebar h2,
#sidebar h3,
#sidebar h4,
#sidebar h5,
#sidebar h6 {
  font-size: 120%;
  margin-bottom: 0;
  padding: 5px 0 5px 30px;
  background : url(bg-listmark-02.gif) no-repeat 0px 50%;
}

/*-- ナビゲーションボタン --*/

#sidebar .navigation {
  list-style-type: none;
  margin: 0 0 2em;
}

#sidebar .navigation li { display: inline; }

#sidebar .navigation li a {
  text-align: center;
  text-decoration: none;
  width: 300px;
  display: block;
  padding: 4px 0;
  border: 1px outset #fff;
  background-color: #eee;
  color: #060;
}

#sidebar .navigation li a:hover {
  border: 1px inset #fff;
  background-color: #ccc;
  color: #f00;
}

#sidebar dl { margin: 0 0 2em; }

#sidebar dt {
  font-weight: bold;
  padding: 5px 10px;
  background-color: #9c3;
}

#sidebar dd {
  margin-bottom: 1em;
  padding: 1em 0;
}

#sidebar p {
  line-height: 1.2em;
  margin-bottom: 1em;
}

#sidebar ul,
#sidebar ol {
  list-style-position: inside;
  margin: 1em 0;
  line-height: 1.2em;
}

/* -------------------------------------------------------------
   [5] フッターブロック内に関する指定 */

#footer p { text-align: center; }

/* -------------------------------------------------------------
   [6] CSSデザインサンプルリンク指定 */
#cds {
  clear: both;
  text-align: right;
  margin: 0;
  font-size: 80%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
}

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #999;
}
