/* ページ全体の余白指定 */
body {
margin: 0;
padding: 0;
}

/* id="head"とh3に関する指定。文字を中央寄せに */
#head,h3 {
text-align: center;
}

/* h1に関する指定 */
h1 {
margin: 0;
background-image: url(images/title-back.jpg); /* 背景画像指定 */
background-color: #ffffff; /* 背景色指定（※背景画像が読めないユーザー用に背景色指定をしておく） */
width: 550px; /* 背景画像のサイズ指定 */
height: 68px; /* 背景画像のサイズ指定 */
padding-top:22px; /* 文字の垂直位置指定 */
color: #006600; /* 文字色指定 */
}

/* h2に関する指定 */
h2 {
color: #FF0000; /* 文字色指定 */
}

/* h3に関する指定 */
h3 {
color: #FF6600; /* 文字色指定 */
}

/* id="head"に関する指定 */
#main {
line-height: 1.5em;
margin: 0 22px  0 22px; /* 文字の左マージン指定 */
}
