@charset "utf-8";

/* 文書全体 */
* {
	margin: 0px;
}

/* モバイルファースト・ベースとなる設定 */

/* body */
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-image: url(images/bg-01.png); /* 全体の背景画像 */
}

/* header */
header {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999; /* 点線のカラー */
	background-image: url(images/bg-03.png); /* ヘッダーの背景画像 */
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 8px;
}
header hgroup {
	font-family: "MS Serif", "New York", serif;
	color: #FFFFFF; /* ヘッダーの文字色 */
}
header hgroup h1 {
}
header hgroup h2 {
	font-size: 140%;
	padding-top: 3px;
}

/* nav */
.nav {
	background-image: url(images/bg-04.png); /* メニューの背景画像 */
}
.nav ul {
	padding: 0px;
}
.nav ul li {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999; /* 点線のカラー */
	list-style-type: none;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
}
.nav ul li a:link {
	color: #FFFFFF; /* リンクの文字色 */
	text-decoration: none;
	display: block;
}
.nav ul li a:visited {
	color: #CCCCCC; /* クリック後のリンクの文字色 */
	text-decoration: none;
	display: block;
}
.nav ul li a:hover {
	color: #3F6C9A; /* マウスカーソルを合わせた時の文字色 */
	text-decoration: none;
	display: block;
}

/* content */
.content {
	background-color: #FFFFFF; /* コンテンツ内の背景色 */
	display: inline-block;
	width: 100%;
}
.content a:link {
	color: #4F5B8C; /* リンクの文字色 */
}
.content a:visited {
	color: #1D2234; /* クリック後のリンクの文字色 */
}
.content a:hover {
	color: #4980B6; /* マウスカーソルを合わせた時の文字色 */
}
.content h1 {
	border-left-width: 10px;
	border-left-style: solid;
	border-left-color: #1E2337; /* h1 左線のカラー */
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #1E2337; /* h1 下線のカラー */
	margin: 5px;
	padding-left: 8px;
	padding-right: 5px;
}
.content p {
	margin-left: 10px;
	margin-right: 10px;
}
.content h3 {
	border-left-width: 10px;
	border-left-style: solid;
	border-left-color: #1E2337; /* h1 左線のカラー */
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #1E2337; /* h1 下線のカラー */
	margin: 5px;
	padding-left: 8px;
	padding-right: 5px;
}
.content p {
	margin-left: 10px;
	margin-right: 10px;
}

/* footer */
footer {
	background-image: url(images/bg-04.png); /* フッターの背景画像 */
	color: #FFFFFF; /* フッターの文字色 */
	font-size: 90%;
	text-align: center;
	padding-top: 3px;
	padding-bottom: 3px;
}
footer a:link {
	color: #FFFFFF; /* リンクの文字色 */
}
footer a:visited {
	color: #CCCCCC; /* クリック後のリンクの文字色 */
}
footer a:hover {
	color: #3F6C9A; /* マウスカーソルを合わせた時の文字色 */
}

/* image */
img {
	max-width: 100%;
	height: auto;
}



/* 幅 481px 以上 */
@media only screen and (min-width: 481px) {

/* body */
body {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	-moz-box-shadow: 0px 0px 10px 3px rgba(17,17,17,0.6);
	-webkit-box-shadow: 0px 0px 10px 3px rgba(17,17,17,0.6);
	box-shadow: 0px 0px 10px 3px rgba(17,17,17,0.6);
}

}



/* 幅 769px 以上 */
@media only screen and (min-width: 769px) {

/* body */
body {
	width: 80%;
	-moz-box-shadow: 0px 0px 13px 3px rgba(17,17,17,0.65);
	-webkit-box-shadow :0px 0px 13px 3px rgba(17,17,17,0.65);
	box-shadow: 0px 0px 13px 3px rgba(17,17,17,0.65);
}

/* nav */
.nav {
	overflow: auto;
}
.ie6 .nav {
　　zoom: 100%;
}
.nav ul li {
	float: left;
	list-style-type: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999; /* 点線のカラー */
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #999999; /* 点線のカラー */
	padding: 8px;
}

/* content */
.content {
	clear: left;
}

}
