﻿/* -------------------------------------------------------------------------------- */
/* DIV要素のプロパティ */
/* -------------------------------------------------------------------------------- */
/* コンテンツのh2タグプロパティ */
#contents h2 
{
    border-bottom-color  : #CCCCCC   ;                    /* 下側枠線の色指定 */
    border-bottom-style  : solid     ;                    /* 下側枠線のスタイル指定 */
    border-bottom-width  : 1px       ;                    /* 下側枠線の幅指定 */
    color                : #000000   ;                    /* 文字の色指定 */
   	font-size            : 20px      ;                    /* フォントサイズ指定 */  
	font-weight          : bold      ;                    /* 文字の太さ指定 */
    margin-bottom        : 20px      ;                    /* 下のマージン指定 */
	padding              : 5px       ;                    /* パディング領域指定 */
    width                : 700px     ;                    /* 幅指定 */
}

/* コンテンツのh3タグプロパティ */
#contents h3 
{
   	font-size            : 1.2em     ;                    /* フォントサイズ指定 */  
	font-weight          : bolder    ;                    /* 文字の太さ指定 */
    width                : 700px     ;                    /* 幅指定 */
}

/* コンテンツのpタグプロパティ */
#contents p 
{
    line-height          : 150%      ;                    /* 行の高さ指定 */
    margin-bottom        : 15px      ;                    /* 下のマージン指定 */
    margin-left          : 15px      ;                    /* 左のマージン指定 */
	padding              : 5px       ;                    /* パディング領域指定 */
    width                : 700px     ;                    /* 幅指定 */
}
