@charset "Shift_Jis";


/***** ページの設定 ******/
body{                                  /* ページの設定 */
   margin-left:0px;                    /* 左マージン */
   background-color:#F5F5DC;           /* 背景色 */
   
    }

body,td{
   color:#800000;                      /* 文字色の設定*/
   background-position:0 0%;         /* 背景画像の位置 */
   background-repeat:no-repeat;        /* 背景画像を繰り返さない */
   background-attachment:fixed;        /* 背景画像をスクロールさせない */
   font-family:"Comic Sans MS","MS UI Gothic","ＭＳ Ｐ明朝";            /* フォントの種類 */
   line-height:150%;                   /* 行間の設定 */
   font-size:90%;                      /* 文字サイズ */

}

p{margin:5 5 6px;   /* p要素の設定 */
  font-size:100%;
}

/***** リンクの設定 ******/
a:link   {color:#800000;}                /* リンク色 */
a:visited{color:#808080;}                /* 既読リンク色 */
a:hover  {color:#008080;                 /* カーソルがリンクの上に来た時の色 */
          text-decoration:underline;}    /* カーソルがリンクの上に来たとき下線を出す */
a{text-decoration: none;}                /* リンクの下線を消す */



/***** h要素の設定 *****/
h1{                      /* h1=top */
   margin:10 0 10px;     /* マージン 上→左右→下 */
   padding:0 0 0px;      /* パディング */
   font-size:110%;       /* 文字の大きさ */
   font-weight:lighter;  /* 文字を細くする */
   }

h2{                      /* h2=新着情報見出し */
   color:#990000;
   margin:2 5 0px;       /* マージン */
   padding:0 0 0px;      /* パディング */
   font-size:100%;       /* 文字サイズ */
   }

h3{                      /* h3=indexのページ紹介文 */
   margin:0 0 5px;       /* マージン */
   font-size:70%;        /* 文字の大きさ */
   font-weight:lighter;  /* 文字を細くする */
   }

h4{                      /* h4=menuの施術内容文 */
   color:#800000;
   margin:5 5 0px;       /* マージン */
   padding:0 0 0px       /* パディング */
   line-height:150%;     /* 行間の設定 */
   font-size:90%;        /* 文字の大きさ */
   font-weight:lighter;  /* 文字を細くする */
   }

h5{                      /* h3要素 */
   color:#fff;
   text-align:right;     /* 右寄せ */
   margin:0 0 0px;       /* マージン */
   font-size:80%;        /* 文字の大きさ */
   font-weight:lighter;  /* 文字を細くする */
   }

h6{                      /* h6=下部テキストリンク */
   color:#800000;
   text-align:center;    /* センタリング */
   margin:0 0 0px;       /* マージン */
   font-size:60%;        /* 文字の大きさ */
   font-weight:lighter;  /* 文字を細くする */
   }


