﻿@charset "UTF-8";

body {
	background-color: #1e90ff;/*ページの背景色の設定*/
	font-size: 100%;/*ページ全体のフォントサイズを設定*/
	color: #666666;/*ページ全体の文字色を設定*/
}
#header {
	background-color:#1e90ff;/*ヘッダの背景色の設定*/
	margin: 0;/*ヘッダのマージンを設定*/
	padding: 30px 0 0px;/*ヘッダのパディングを設定*/
	overflow: hidden;
}
#header h1 {
}

#nav {
	background-color: #ff0000;/*ナビゲーションの背景色の設定*/
	border-top: 0px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	background-image:url("../images/suzu.png");
	background-position:center;
	background-repeat:no-repeat;
}

/*ナビゲーションのリンクボタンの設定*/
#nav li {
	width: 200px;
	color:#ffffff;
	text-align:center;
	padding-top:20px;
	
}
#nav li a {
	width: 200px;
	height:50px;/*リンクボタンを画像にする場合は、画像の高さサイズに合わせる*/
	display: block;
	color:#ffffff;
}
#nav li a:hover {
	opacity:0.6;/*マウスを重ねた時に透明度が60%*/
}
/*メインビジュアル領域*/
#mainVisual {
}
/*メイン領域*/
#main {
	width: 780px;/*メイン領域の横幅設定。パディングの左右と合わせて800px*/
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;/*メイン領域の余白設定*/
	background-color: #ffffff;/*メイン領域の背景色の設定*/
}
/*フッタ領域*/
#footer {
	background-image:url("../images/asi.jpg") ;/*#1e90ff;フッタの背景色の設定*/
	background-position:center;
	background-repeat:no-repeat;
	padding: 20px 0;
	color: #1e90ff;/*フッタの文字色*/

}
#footer p small {
	font-size: 80%;
}
/*各コンテンツの設定*/
#main h2 {/*メイン領域のみだし2の指定*/
	font-size: 100%;
	padding-top: 10px;
	padding-bottom: 3px;
	border-bottom: 2px solid #00bfff;
	margin-bottom: 20px;
}
#main h3 {/*メイン領域の見出し3の指定*/
	font: 200% bold;
	color:#1e90ff;
	margin-top: 30px;
	margin-bottom: 20px;
}
#main p {/*メイン領域の段落の指定*/
	line-height: 160%;
	margin-bottom: 8px;
}
.img-left {/*画像（imgタグ）を左回り込みにする指定*/
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

ol{
	margin-left:40px;
}
.tyuui{
	font-size:70%;
}
h3{
clear:left;
}

		