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

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

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

table.tbl_3row {
	width: 88vw;
	background-color: #FFFEC7;
}
table.tbl_3row td {
	font-size: large;
	font-weight: normal;
	color: #363636;
	vertical-align: top;
	font-family: "メイリオ", sans-serif;
}
table.tbl_3row td:first-child {
	width: 22vw;
	text-align: right;
}
table.tbl_3row td:nth-child(2) {
	width: 41vw;
	border: dotted #DDDEFF 10px;
	text-align: center;
	padding: 18px;
}
table.tbl_3row td:last-child {
	width: 22vw;
	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: 25vw;
	position: absolute;
	top: 0;
	left: 25vw;
	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;
}
