@charset "utf-8";
/*全体構造
iPhoneブラウザで
-webkit-touch-callout:none; // リンク長押しのポップアップを無効化
-webkit-user-select:none; // テキスト長押しの選択ボックスを無効化
-webkit-text-size-adjust: none; だと文字の拡大ができなくなる
line-height: 100%;background-color: honeydew;
-----------------------------------------*/
* {
	margin: 0px auto;
	padding: 0px;
}
html{
	height: 100%;
}
body{
	width: 850px;
	height: auto;
	margin: 0px auto;
	text-align: center;
	background-color: honeydew;
	-webkit-text-size-adjust: 100%;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
}
img{
	border: none;
}
a{
	text-decoration: none;
}
a:hover{
	color: orange;
}
table{
	width: 100%;
	font-size:90%;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
th {
	text-align: left;
}
iframe{
	margin: 0px;
	padding: 0px;
	background-color: transparent;
}
/* コンテナ ----*/
#container {
	width: 100%;
	text-align:center;
    margin: 0px auto;
    min-height: 100%;
	background-color: white;
}

/*  ヘッダ  ---*/

/* メニュー画面 ---*/

/* 左カラム ---*/
#left-culum {
	float:left;
	width: 150px;
}

/* メインカラム--*/
#main-culum {
	float:left;
	width: 700px;
}

/* フッタ---*/

/* 文字修飾大きさ--*/
.fbiggr4{
	font-size:400%;
	font-weight: bold;
}
.fbiggr3{
	font-size:300%;
	font-weight: bold;
}
.fbiggr2{
	font-size:200%;
	font-weight: bold;
}
.fbig{
	font-size:110%;
	font-weight: bold;
}
.f2big{
	font-size:130%;
	font-weight: bold;
}
.f3big{
	font-size:150%;
	font-weight: bold;
}
h1 {
	text-align:left;
	font-size: 82%;
	font-size: 12px;
	font-weight: normal;
	margin: 5px 0 5px 5px;
	background-color: white;
}
h2{
	margin-bottom:8px;
	margin-left:7px;
	margin-right:10px;
	font-size:110%;
	border-bottom-width: 2px;
	border-left-width: 5px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: silver;
	border-left-color: silver;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 5px;
}
h3{
	text-align:left;
	margin-bottom:8px;
	margin-left:7px;
	margin-right:10px;
	font-size:105%;
	border-bottom-width: 2px;
	border-left-width: 5px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: silver;
	border-left-color: silver;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 5px;
}
h4{
	font-size: 100%;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 2px;
	padding-left: 4px;
}
h5{
	font-size: 95%;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 2px;
	padding-left: 4px;
}
h6{
	text-align:left;
	font-size: 90%;
	font-weight: normal;
	margin-bottom:8px;
	margin-left:24px;
	margin-right:10px;
}
.lleft{
	text-align:left;
}
.lcenter{
	text-align:center;
}
.lright{
	text-align:right;
}
/*その他・装飾
---------------------------------*/
.orange {
	color: orange;
}
.pink{
	color: hotpink;
}
.red{
	color: red;
}
.bggrey{
	background-color:lightgray;
}
.bgyellow{
	background-color: yellow;
}
.bglightpink {
	background-color: pink;
}
.bgwhite{
	background-color: white;
}