/*========== 外枠 ==========*/
BODY {
	margin: 0 auto;
	width: 100%;
	background: #3399FF;
	font-family: sans-serif;
	font-size: 100%;
	color: #FFFFFF;
}

#wrapper {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0px;
	overflow: auto;
}

/*========== ヘッダ ==========*/
H1 {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 140%;
	font-weight: bold;
}

.page_header {
	height: 124px;
	margin: 0;
}
.page_header_img {
	margin: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 124px;
	background: url( '../img/head_b1024.jpg' );
	background-size: cover;
}

.page_header_txt {
	position: relative;
	top: 30;
	left: 30;
	font-family: "ゴシックMB101 M",sans-serif;
	font-size: 200%;
	font-weight: bold;
	color: #3399CC;
}


/*========== コンテンツ部分配置 ==========*/
.page_main{
	width: 100%;
	height: 100%;
}

/* 携帯画面配置 */
@media (max-width: 999px) {
	.main_wrapper{
		width: 100%;
	}
	.con_document {
		width: 100%;
	}
	.con_menu {
		width: 100%;
		height: 20px;
		text-align: center;
		padding: 1em 0.2em;
	}
}

/* PC画面配置 */
@media (min-width: 1000px) {
	.main_wrapper{
		display: table;
		width: 100%;
		height: 100%;
	}
	.con_document {
		display: table-cell;
		height: 100%;
		vertical-align:top;
	}
	.con_menu {
		display: table-cell;
		width: 15%;
		height: 100%;
		vertical-align:top;
	}
}

/*========== メニュー ==========*/
/* 携帯画面配置 */
@media (max-width: 999px) {
	.con_menutbl {
		display: table;
		width: 100%;
		height: 100%;
	}
	
	.con_menuitem {
		display: table-cell;
		height: 20px;
	}
	
	.lnk_tx_item {
		font-size: 110%;
		color: #33FFFF;
		text-decoration: none;
		line-height: 16px;
	}
	
	.lnk_tx_item:hover {
		font-size: 110%;
		color: #33FFFF;
		text-decoration: none;
		line-height: 16px;
	}
}


/* PC画面配置 */
@media (min-width: 1000px) {
	.con_menutbl {
		width: 100%;
		height: 100%;
		margin-top: 20px;
		margin-left: 5px;
	}
	
	.con_menuitem {
		height: 30px;
	}
	
	.lnk_tx_item {
		font-size: 110%;
		color: #33FFFF;
		text-decoration: none;
		line-height: 16px;
	}
	
	.lnk_tx_item:hover {
		font-size: 110%;
		color: #33FFFF;
		position: relative;
		text-decoration: underline;
		top: 1px;
		left: 1px;
		line-height: 16px;
	}
}


