@charset "utf-8";
/*============================================
全般的なスタイル
============================================*/

* {
  margin: 0;
  padding: 0; 	/*全要素のマージン・パディングをリセット*/
}
body {
  font-family: "メイリオ", sans-serif;
	background-color:#F4F7FF;
}
#pagebody {
  width: 828px;
  margin: 0 auto;	/*内容全体をセンタリング*/
}
/*============================================
メイン画面（右カラム）
============================================*/

#mainmenu {
  width: 800px;
  height: 400px;
  float: left;
  background: #FFFEC7;
  padding: 5px;
  margin: 5px;
  border-radius: 20px;
  border: solid 4px;
  border-color: #36C829;
}
#header {
  font-size: x-large;
  font-weight: bolder;
  width: 800px;
  height: 65px;
  float: left;
  background: #A3FB93;
  margin: 5px;
  padding: 5px;
  border-radius: 10px;
  border: solid 4px;
  border-color: #36C829;
  text-align: center;
  clear: both;
}
#footer {
  width: 800px;
  height: 28px;
  float: left;
  background: #A3FB93;
  margin: 5px;
  padding: 5px;
  border-radius: 10px;
  border: solid 4px;
  border-color: #36C829;
  text-align: center;
  clear: both;
}
ul {
  padding-left: 40px;
  font-size: x-large;
}
ul li.nonum {
  padding-left: 60px;
  list-style: none;
	font-size: xx-large;
}
ol {
  padding-left: 40px;
  font-size: x-large;
}
ol li.nonum {
  list-style: none;
}
span.redbold {
  color: red;
  font-weight: bold;
}
p.fsmaller {
	font-size: large;
}
p.fsmall {
	font-size: medium;
	font-weight: normal;
	color: blue;
}
/*=========================================================
テーブ3列均等枠なしデーターセル：text(small、左)
==========================================================*/

table.tbl_3row {
  width: 772px;
  background-color: #FFFEC7;
}
table.tbl_3row td {
  font-size: x-large;
  font-weight: normal;
  color: #363636;

  vertical-align: top;
  font-family: "メイリオ", sans-serif;
}
table.tbl_3row td:first-child {
  width: 160px;
  text-align: right;
}
table.tbl_3row td:nth-child(2) {
  width: 408px;
  border: dotted #DDDEFF 10px;
  text-align: center;
  padding: 22px;
}
table.tbl_3row td:last-child {
  width: 140px;
  text-align: left;
}
table.tbl_3row td.notdot {
  border: hidden;
	margin: 0px;
	padding: 0px;
}
/*=========================================================
吹き出しの処理
==========================================================*/
.css-fukidashi {
  padding: 0;
  margin: 0;
}
.text {
  width: auto;
  color:blue;
  position: relative;
  margin: 2px;
  padding: 2px;
}
.fukidashi {
  display: none;
  width: 250px;
  position: absolute;
  top: 0;
  left: 250px;
  padding: 16px;
  border-radius: 5px;
  background: #33cc99;
  color: #fff;
  font-weight: bold;
}
.fukidashi:after {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: -19px;
  margin-left: 10px;
  border: solid transparent;
  border-color: rgba(51, 204, 153, 0);
  border-top-color: #33cc99;
  border-width: 10px;
  pointer-events: none;
  content: " ";
}
.text:hover + .fukidashi {
  display: block;
}
