/*ページ全体の指定*/
body {
color:#000000;
font-size:x-small;
font-family:verdana,"ＭＳ Ｐゴシック",sans-serif;
text-align:left;
background:#ffffff url("img/photo_01.gif") repeat-x fixed bottom;	/*背景の一括指定*/
}

/*外枠の指定*/
#waku {
width:500px;
border:solid 2px yellowgreen;
background-image:url("img/bg_01.gif");	/*背景画像の指定*/
margin:25px;
padding:25px;
}

/*リンク（訪問前）の指定*/
a:link{
color:#000000;
text-decoration:none;
border-bottom:dashed 1px #000000;	/*下線（点線）の指定*/
}

/*リンク（訪問済み）の指定*/
a:visited{
color:#000000;
text-decoration:none;
border-bottom:dashed 1px #000000;	/*下線（点線）の指定*/
}

/*リンク（カーソルを乗せた時）の指定*/
a:hover{
color:#ff0000;
text-decoration:none;
}

/*見出し1の指定*/
h1 {
color:#000000;
font-size:small;
text-align:center;
padding:5px;
}

/*罫線の指定*/
hr{
border:dashed 2px yellowgreen;
}

/*見出し2の指定*/
h2 {
color:#000000;
font-size:x-small;
text-align:left;
}

/*<div class="box">〜</div>の指定*/
.box {
color:#000000;
font-size:xx-small;
line-height:140%;
text-align:left;
width:auto;
margin-left:50px;
margin-bottom:50px;
}

/*<div class="copy">〜</div>の指定*/
.copy {
color:#000000;
font-size:xx-small;
text-align:center;
padding-top:15px;
}