
	html {
		height: 100%;
	}

	body {
		height: 100%;
		margin: 0;
		padding: 0;
		background-color: honeydew;
		overflow: scroll;
	}

	.mainScreen {
		width: 730px;
		border: 1px solid black;  
		margin: 0 auto;
		background-color: white;
		box-sizing: border-box;
	}

	.titleLabel {
		background-color:gray;
		color:white;
		height: 30px;
	}

	.divHeader {
		width: 728px;
		height: 120px;
	}

	.divMain {
		padding-top:0px;
		height:calc(100% - 120px - 180px);
		padding-bottom:0px;
		margin-bottom:180px;
	}

	.divMain1 {
		height:calc(100% - 120px);
		overflow-y: scroll;
	}

	.divHeader2 {
		width: 728px;
		height: 150px;
	}

	.divMain2 {
		padding-top:0px;
		height:calc(100% - 150px);
		overflow-y: scroll;
	}

	.divList {
		height: 100%;
		overflow-y: scroll;
	}

	.divFooter {
		width: 728px;
		height: 181px;
		position:fixed;
		bottom:0;
		z-index:10;
		background-color:#bee0c2;
	}

	.footerLabel {
		height: 36px;
		font-size:16px;
		font-weight:bold;
		color:white;
	}
	.footerLabel button{
		height: 24px;
	}
	.footerLabel td{
		padding:0px 10px;
	}

	h1 {
		font-size: 19px;
		margin-top: 0; margin-bottom: 0;
	}

	.windowLabel{
		width:100%;
		height:24px;
		font-size:16px;
		text-align: center;
		background-color:black;
		color:white;
	}
	.windowView{
		width:100%;
		height:100%;
		overflow-y: scroll;
		overflow-x: hidden;
		box-sizing: border-box;
	}
	
	.glayLayer{
		z-index: 10;
	    display:none;
		position:fixed;
	    top:0;
	    left:0;
	    height:100%;
	    width:100%;
	    background:black;
	    opacity: 0.5;
	    filter:alpha(opacity=50);
	}
	.overLayer{
		z-index: 100;
		display:none;
		position:absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		border: 3px solid gray;
		background-color:white;
	}
	* html .glayLayer{
	    position:absolute;
	}
	* html .overLayer{
	    position: absolute;
	}
	
	.child_window{
		background-color: white;
		border:2px solid #197AB2;
	}

	.child_body{
		width: 100%;
		height: 100%;
	}
	
	table {
		border-collapse:collapse;
		border:0px;
	}
	
	img{
		display: block;
		margin: 0 auto;
		padding: 0;
	}

	h2 {
		width:100%;
		background-color:hotpink;
		color: white;
		font-size:18px;
		padding: 2px;
		box-sizing:border-box;
		margin-top: 0; margin-bottom: 0;
	}
	
	h3 {
		width:100%;
		background-color:Teal;
		color: white;
		padding: 5px;
		box-sizing:border-box;
		margin-top: 0; margin-bottom: 0;
	}
	
	h4 {
		width:100%;
		background-color:lightgray;
		color: black;
		padding: 5px;
		box-sizing:border-box;
		margin-top: 0; margin-bottom: 0;
	}

	hr {
		border-top: 1px dashed #8c8b8b;
		margin: 2px;
	}
	
	a:link { text-decoration:none }
	a:visited { text-decoration:none }
	a:hover { text-decoration:none; cursor: pointer;}
	a:active { text-decoration:none }
	
	.headmenu{
		background-color:lightgray;
		color:black;
	}
	
	.headmenu table {
		border-collapse: collapse;
		text-align: left;
		line-height: 1.8;
		width: 100%;
	}
	.headmenu td {
		width: 33%;
		vertical-align: top;
		text-align:center;
		border: 1px solid black;
	}
	
	.linkmouseover:hover{
		background-color:gray;
	}

/*----------------------------------------
 
----------------------------------------*/
	.textButton {
		font-size:16pt;
		color: white;
		background-color:gray;
		border-radius: 12px;
		padding: 6px;
	}
	.textButton:hover{
		background-color:lightgray;
		cursor: pointer;
	}

/*---------------------------------
インデックス画面用
--------------------------------*/
.menu_list{
	height: 640px;
	display:flex;
	flex-flow: column;
	justify-content:space-around;
	align-items: center;
}
.menu_box {
    padding: 20px;                      /* 余白指定 */
    background-color:  #fafafa;            /* 背景色指定 */
    box-shadow: 2px 2px 2px 2px #bbb;   /* 影指定 */
    width: 85%;                       /* 幅指定 */
    height: 100px;                      /* 高さ指定 */
	border-radius: 10px;
	display:flex;
	cursor:pointer;
}
.menu_box:hover{
    background-color:  #eeeeee;            /* 背景色指定 */
}

.menu_box_contents{
	padding:10px 10px 10px 10px;
}
.menu_box_icon{
	width:150px;
	text-align: left;
}
.menu_box_title{
	font-size: 32px;
	font-weight:bold;
	margin:0px 0px 10px 0px;
}
