﻿
/**********************************************************************************
    ブラウザ全体
**********************************************************************************/

*   
{
    /* テキストのスタイル */
	line-height: 1.5em;	    /* 行間 */	
	/*letter-spacing: 0.1em;*/  /* 字間*/
    font-weight: normal;
	font-size: 12px;
	font-family: Verdana, Arial, sans-serif, ＭＳ Ｐゴシック, Trebuchet MS, ヒラギノ明朝 Pro W6, Osaka;
}

body    
{
    /* ブラウザ内のページ全体をセンタリング */
    margin: 0px;
    padding: 0px;
    text-align: center;             /* 下記のautoに未対応用のセンタリング */

    background-color: #1c1616;
    color:#342026;
}    


/**********************************************************************************
    テキストのアンカー
**********************************************************************************/
/*	link -> visited -> hover -> active  ★この順番を入れ替えないように★ */

* a:link
{
	/* まだ見ていないリンク */
	cursor: hand;
	text-decoration: none;		
	color: #fdfffa;
}

* a:visited		
{
	/* 既に見たリンク */
	cursor: hand;
	text-decoration: none;	
	color:#fdfffa;
}

* a:hover		
{
	/* カーソルがリンク元のうえにある時 */
	cursor: hand;
	text-decoration: underline;	
	color: #fdfffa;
}

* a:active 
{
	/* リンクをクリックした時 */
	cursor: hand;
	text-decoration: underline;
	color: #fdfffa;
}


/**********************************************************************************
    table
**********************************************************************************/

table
{
    /*border: solid 1px cyan;*/
    border-collapse: collapse;
}

th,td
{
    /*border: solid 1px red;*/
    padding: 0;
}

table, td, th 
{
    /*border: 1px #ff0000 solid;*/
}


/**********************************************************************************
    img
**********************************************************************************/

img 
{
	/*margin: 5px;*/
	border-style: none;
    border-color: inherit;
    border-width: 0px;
    padding: 0px;
}

.img_left 
{
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
 }


/**********************************************************************************
    位置
**********************************************************************************/

.right
{
    text-align: right;
}

.center
{
    text-align: center;
}

.top
{
    vertical-align: top;
}

.middle
{
    vertical-align: middle;
}

.bottom
{
    vertical-align: bottom;
}


/**********************************************************************************
    見出し
**********************************************************************************/

h1
{
    font-size: 20px; 
    font-weight: bold; 
    margin: 0px;
}

h2
{
    font-size: 16px; 
    font-weight: bold; 
    margin: 0px;
}

h3
{
    font-size: 15px; 
    font-weight: bold; 
    margin: 0px;
}

h4
{
    font-size: 13px; 
    font-weight: bold; 
    margin: 0px;
}

h5
{
    font-size: 11px; 
    font-weight: bold; 
    margin: 0px;
}


/**********************************************************************************
    その他テキスト関連
**********************************************************************************/

strong
{
    font-weight: bold;
}