@charset "utf-8";

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

[1] レイアウトに関する指定
[2] ヘッダーブロック内に関する指定
[3] コンテンツブロック内に関する指定
[4] フッターブロック内に関する指定
[5] 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%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0;
  margin: 0;
  background: url(images/007.jpg) left top no-repeat fixed,
              url(images/008.jpg) right bottom  no-repeat fixed;
}

#wrapper {
  width: 860px;
  margin: 20px auto 0;
}

#globalnavi {
  margin-bottom: 20px;
  border-bottom: 10px solid #690;
}

#contents {
  padding: 0 30px 100px;
  background: url(images/bg-contents.jpg) no-repeat 0 100%;
}

#footer {
  height: 120px;
  padding-top: 40px;
  background: url(images/bg-footer.jpg) no-repeat 0 0;
}

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

/* -- ロゴ -- */
.logo {
  font-size: 140%;
  font-weight: bold;
  text-align: right;
  margin-bottom: 0.5em;
}

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

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

/* -- ページの概要 -- */
.description {
  text-align: right;
  margin-bottom: 1em;
}

#globalnavi ul {
  list-style-type: none;
  margin-bottom: 5px;
  border-left: 1px solid #060;
}

#globalnavi li {
  display: inline;
  padding: 0 0.5em;
  border-right: 1px solid #060;
}

#globalnavi li a {
  text-decoration: none;
  color: #360;
}

#globalnavi li a:hover {
  text-decoration: underline;
  color: #f00;
}

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

/* -- 見出し -- */
h1 {
  font-size: 160%;
  font-weight: normal;
  margin-bottom: 1em;
  color: #360;
  border-bottom: 1px solid #360;
}

h2,h3,h4,h5,h6 {
  font-size: 120%;
  font-weight: normal;
  margin-bottom: 1em;
  padding: 5px 0 5px 15px;
  background: url(images/bg-h.gif) no-repeat 0 50%;
  border-bottom: 2px dotted #336600;
}

h3,h4,h5,h6 { margin-top: 4em; }

/* -- 文字 -- */
#contents p {
  line-height: 2.6em;
  margin-bottom: 1em;
}


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

#footer p {
  text-align: center;
  padding-top: 20px;
  color: #fff;
}

/* -------------------------------------------------------------
   [5] CSSデザインサンプルリンク指定 */

#cds {
  font-size: 80%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  text-align: left;
  margin: 0;
  clear: both;
}

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