﻿@charset "utf-8";

/* 基本スタイル
---------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	font-size: 100%;
}

body {
	font-size: 75%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
	line-height: 1.5;
	color: #333333;
	background-color: #FFFFFF;
	margin: 5px;
	padding: 0;

	text-align: center;
}

#wrapper {
	width: 760px;
	margin: 5px auto;
	background: #FFFFFF;
	padding-top: 0px;
	text-align: left;
}
/* #wrapper と #body 内 text-align の関係性については『上級レイアウト』p.36参照 */




/* 575、calender、dining は #title。diary、museum、spot は #title2。*/
#title {
	width: 760px;
	height:150px;
	margin: 0;
	/*　background:url(../575/images/title.gif);　*/
}
#title2 {
	width: 760px;
	height:112px;
	margin: 0;
	/*　background:url(../diary/images/title.gif);　*/
}



.content {
	width: 760px;
	margin: 0;
	background-color: #FFFFFF;
}




/* font-sizeプロパティの計算値は継承するため、body要素に指定したフォントサイズが
   以下（↓）の h1 要素に対しても反映される。 */
/* 例えば h1（↓）は body でいったん 75% になったフォントの、150% サイズ。 */

h1 {
	width: 760px;
	height: 150px;
	/*　color: #0850B2;　*/
	/*　background: #FFFFFF url(../images/restaurant.gif) right bottom no-repeat;　　背景色を白に変更し、画像のパスと開始位置、リピート方向を指定 */
	/*　border-top: 7px solid #0850B2; 　 　*/
	/*　border-bottom: 3px solid #CCCCCC;　 */
	margin: 0;
	padding: 0;
}




small {
	color: #707070;
}




/* 段組レイアウト（ページ枠組）
-----------------------------------------------------------------*/
#header {
	width: 760px;
	height: 29px;
	background: #FFFFFF url(../images/header00.gif) right top repeat-x; /* 背景色を白に変更し、画像のパスと開始位置、リピート方向を指定 */
}
/*（↑）通常、widthプロパティを指定しなければ、ボックスは幅いっぱいに広がろうとする */







#footer {
	clear: both; /* 寄せを解除 */
	background: #FFFFFF url(../images/footer00.gif) left top;
	height: 25px;
}
#footer table {
	font-size: 95%;
}
#footer a         { text-decoration: none; }
#footer a:link    { color: #707070;        }
#footer a:visited { color: #707070;        }
#footer a:active  { color: #707070;        }












