html {
	font_size: 100%;
}

body {
	line-height: 1.2;
	color: #FF8C00;

	margin: 0;
	padding: 0;
	overflow: scroll;

 	background-color:#000000;
}

p{
	margin-bottom: 16px;
}

/*背景*/
.background {
	position: absolute;
	z-index: -1;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 2532;
 	min-width: 100vw;
 	min-height: 100vh;
 	
 	background-image: url("p_image/Background.gif"); /* 背景画像のURLを指定 */
 	background-attachment: fixed;
 	background-size: cover; /* 画像をフルスクリーン(画像は必ず全体がウィンドウに収まる)で表示 */
 	background-position: center center; /* 画像の位置を中央に */
 	background-repeat: no-repeat;/*繰り返し禁止*/
 	background-color:#000000;/*繰り返し禁止なのでcontainでは余白が出る。その余白の色*/
}

.flex_contents {
 	top: 0;
 	left: 0;
	display: flex;
	flex-direction: column;
}

/*メインコンテンツ・ヘッダ*/
mainwindow.headerwindow {
	flex-grow: 1;
	position: absolute;
	text-align: left;
	
	padding-top: 6;
	padding-left: 35;
	padding-bottom: 6;
	padding-right: 35;
	
	
	z-index: 0;
	top: 32;
 	/*left: 32;*/
 	left: 50%;		/*ウィンドウ水平中心にセット*/
 	transform: translateX(-50%); /*水平中心を基準に位置調整*/
 	width: 600;
 	height: 150;
 	border-style: solid;
 	
  	border-image-source: url("p_image/Content_Window.gif");
  	border-image-repeat: stretch;
 	border-image-slice: 32 fill;
 	border-image-width: auto;
 	
 	box-sizing: border-box;
 	
}

/*メインコンテンツ・Topicウィンドウ*/
mainwindow.topicwindow {
	flex-grow: 1;
	position: absolute;
	text-align: left;
	
	padding-top: 6;
	padding-left: 35;
	padding-bottom: 6;
	padding-right: 35;
	
	
	z-index: 0;
	top: 214;
 	/*left: 32;*/
 	left: 50%;		/*ウィンドウ水平中心にセット*/
 	transform: translateX(-50%); /*水平中心を基準に位置調整*/
 	width: 600;
 	height:1732;
 	border-style: solid;
 	
  	border-image-source: url("p_image/Content_Window.gif");
  	border-image-repeat: stretch;
 	border-image-slice: 32 fill;
 	border-image-width: auto;
 	
 	box-sizing: border-box;
 	
}

/*メインコンテンツ・Topicウィンドウその２*/
mainwindow.topicwindow_ii {
	flex-grow: 1;
	position: absolute;
	text-align: left;
	
	padding-top: 6;
	padding-left: 35;
	padding-bottom: 6;
	padding-right: 35;
	
	
	z-index: 0;
	top: 1978;
 	/*left: 32;*/
 	left: 50%;		/*ウィンドウ水平中心にセット*/
 	transform: translateX(-50%); /*水平中心を基準に位置調整*/
 	width: 600;
 	height:448;
 	border-style: solid;
 	
  	border-image-source: url("p_image/Content_Window.gif");
  	border-image-repeat: stretch;
 	border-image-slice: 32 fill;
 	border-image-width: auto;
 	
 	box-sizing: border-box;
 	
}

/*メインコンテンツ・Backウィンドウ*/
mainwindow.topicwindow_back {
	flex-grow: 1;
	position: absolute;
	text-align: left;
	
	padding-top: 6;
	padding-left: 35;
	padding-bottom: 6;
	padding-right: 35;
	
	
	z-index: 0;
	top: 2458;
 	/*left: 32;*/
 	left: 50%;		/*ウィンドウ水平中心にセット*/
 	transform: translateX(-50%); /*水平中心を基準に位置調整*/
 	width: 600;
 	height:48;
 	border-style: solid;
 	
  	border-image-source: url("p_image/Content_Window.gif");
  	border-image-repeat: stretch;
 	border-image-slice: 32 fill;
 	border-image-width: auto;
 	
 	box-sizing: border-box;
 	
}