<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デザインサンプルリンク指定
[7] 各シートの設定

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


/* 一括で全ての要素の余白をゼロに指定 */
* {
  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-color: #ffe4e1;    ミスティーローズ*/
  /*  background-color: #eee; */

}

#wrapper {
  /*text-align: left;*/
  width: 750px;
  margin: 20px auto;
  border: 1px solid #333;	
  background-color: #fff;
}

#header {
  width: 100%;
  height: 140px;
  margin-bottom: 20px;
  position: relative;
  /*	background: url(img2/bg-header.jpg) no-repeat 0 0;	*/
 background: url(img2/tk_logo.bmp) no-repeat 0 0;

}
/*	
	☆★☆★☆★☆★☆★☆★????
	☆★	左側部分　	★☆
	☆★☆★☆★☆★☆★☆★
*/
　#container {
  margin-bottom: 40px;
  padding: 20px 0 0;
  background: url(img2/bg-container.jpg) repeat-y 100% 0;
}

/*	☆★☆★☆★☆★☆★☆★
*/
#contents {
  width: 750px;	
  height:500px;
  float: left;
  padding: 0 40px 0 20px;
}
/*d
#sidebar {
  width: 185px;
  float: right;
  padding: 0 10px 0 5px;
}
*/

#footer {
  height:5px;
  padding: 13px 0 15px;
  background: #333;
}

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

/* キーワード */
h1 {
  font-size: 100%;
  font-weight: normal;
  position: absolute;
  top: 20px;
  right: 10px;
}

/* 企業名｜ショップ名｜タイトル */
.logo {
  font-size: 160%;
  position: absolute;
  top: 20px;
  left: 20px;
}

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

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

/* ページの概要 */
.description {
  position: absolute;
  top: 50px;
  left: 20px;
}

/* グローバルナビゲーション */
#globalnavi {
  text-align: center;
  list-style-type: none;
  width: 750px;
  height: 28px;
  padding-top: 12px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #333;
}

#globalnavi li { display: inline; }

#globalnavi a {
  text-decoration: none;
  padding: 0 5px 0 15px;
  background: url(img2/mark.gif) no-repeat 0 50%;
  color: #eee;
}

#globalnavi li a:hover {
  background: url(img2/mark.gif) no-repeat -400px 50%;
 /* color: #09f;*/
   color:  #ff0;


}

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

/* 見出し */

h2,h4,h5,h6 {

  color: red;
  text-color: red;
  text-align:left;
  font-size: 120%;
  font-weight: bold;
  height: 30px;
  margin-bottom: 1em;
  padding: 10px 0 0 10px;
  background: url(img2/bg-h2.jpg) no-repeat 0 0;
}


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


h3 {
  font-size: 120%;
  
}

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

/* -------------------------------------------------------------
		★☆★☆★☆★☆★☆★☆★☆★☆
		★☆	未使用ここから		☆★
		
   [4] サイドバーブロック内に関する指定 

 ■ サイドバータイトル
.side-title {
  margin-bottom: 0;
  padding-bottom: 2px;
}

■ サイドバーメニュー 
.localnavi {
  list-style-type: none;
  margin-bottom: 2em;
}

.localnavi li { display: inline; }

.localnavi li a {
  text-decoration: none;
  width: 175px;
  padding: 4px 4px;
  display: block;
  border: 1px outset #fff;
  background-color: #eee;
  color: #333;
}

.localnavi li a:hover {
  text-decoration: none;
  border: 1px outset #fff;
  background-color: #666;
  color: #fff;
}
		★☆	未使用ここまで	☆★
		★☆★☆★☆★☆★☆★☆★☆	*/
	
/* -------------------------------------------------------------
   [5] フッターブロック内に関する指定 */

#footer p {
  color: #fff;
  text-align: center;
}

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

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

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