<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "shift_jis";

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

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

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


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

/* 全体的なリンク */

a:link {
	color: #0000FF;
	text-decoration: underline;
}
a:visited {
	color: #0000FF;
	text-decoration: underline;
}
a:hover {
	color: #FF0000;
	text-decoration: underline;
}
a:active {
	color: #0000FF;
	text-decoration: underline;
}

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

body {

  text-align: center;
  letter-spacing: 1px;

  padding: 0;
  margin: 0;
  background: url(img/bg-body.gif) repeat-x 0 0;
}

#wrapper {
  text-align: left;
  margin: 40px auto 0;
  width: 800px;
  background: url(img/bg-wrapper.jpg) no-repeat 0 0;
}

#header { height: 100px; }

#header-inner {
  margin-left: 250px;
  border-bottom: 1px solid #444;
}

#container { width: 100%; }

#contents {
  width: 550px;
  float: right;
  color: #333;
}


#sidebar {
  width: 200px;
  float: left;
  margin-top: 260px;
}

#footer {
  padding: 20px 0 30px;
  background: url(img/bg-footer.gif) repeat-x 0 100%;
}

dt {color: #333; font-weight: bold; font-size: 120%; line-height: 2;}
dd {
  line-height: 1.6em;
  margin-bottom: 0.5em;
  margin: 0 0 0 50px;
}

/* -------------------------------------------------------------  padding-top: 260px;
   [2] ヘッダーブロック内に関する指定 */

/* -- キーワード -- */
h1 {
font-size: 12px;
line-height: 20px;
  font-weight: normal;
  color: #333;
}

/* -- 企業名｜ショップ名｜タイトル -- */
.logo {
  text-align: right; line-height: 1.1;
  font-size: 200%; letter-spacing: 2px;
  margin: 10px 0 5px 0px;

}

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

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

/* -- ページの概要 -- */
.description {
  margin-bottom: 0.5em;
  color: #444;
}

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

/* -- 見出し -- */
h2,h3,h4,h5,h6 {
  font-size: 120%;
  padding: 1em 0 1em 25px; letter-spacing: 1px;
  background: url(img/bg-h.gif) no-repeat 0 50%;
}

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

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

#contents2 table {border-collapse: collapse;}
#contents2 TD {border: 1px solid #333;}
#contents2 p {color: #333; font-size: 12px; text-align: right; margin: 5px 10px 5px 0;}

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

/* -- サイドバータイトル -- */
.side-title {
  text-align: center;
  padding: 6px 0;
  background-color: #ccc;
  color: #222; font-weight: bold;
  font-size: 12px; line-height: 18px;
  border: 1px solid #777777;
}



/* -- リスト/サイドバーメニュー -- */
.localnavi {
  list-style-type: none;
  margin-bottom: 2em;
  font-size: 130%; line-height: 1.6; text-align:center; letter-spacing:2px; font-weight:bold;
}

.localnavi li { 
display: inline;
 }

.localnavi a {
  text-decoration: underline;
  width: 180px;
  display: block;
  padding: 20px 9px;
  border-bottom: 1px solid #777777;
  border-left: 1px solid #777777;
  border-right: 1px solid #777777;
  background-color: #fff;
  color: #CE0000;
}

.localnavi a:hover {
  text-decoration: none;
  border-bottom: 1px solid #777777;
  border-left: 1px solid #777777;
  border-right: 1px solid #777777;
  background-color: #CE0000;
  color: #fff;
}

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

#footer p { text-align: center; }

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

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

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #cc9;
}
</pre></body></html>