html {
	font_size: 100%;
}

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

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

 	background-color:#000000;
}

p{
	margin-bottom: 16px;
}

/*背景*/
.background {
	position: absolute;
	z-index: -32;
 	top: 0;
 	left: 0;
 	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では余白が出る。その余白の色*/
}

/*左枠*/
leftwindow.window {
	position: absolute;
	text-align: center;
	box-sizing: border-box;
	
	padding-top: 32;
	padding-left: 0;
	padding-bottom,: 32;
	padding-right: 0;
	
	z-index: -16;
 	top: 64;
 	/*left: 32;*/
 	left: 50%;		/*ウィンドウ水平中心にセット*/
 	transform: translateX(-270%); /*水平中心を基準に位置調整*/
 	width: 160;
 	height: 648;
 	background-image: url("p_image/Left_Menu_Window.gif"); /* 背景画像のURLを指定 */
}

.flex_contents {
	display: flex;
	flex-direction: column;
 	align-items: center;
 	width: 450px;
}

/*メインコンテンツ・INFORMATION*/
mainwindow.infotag {
	flex-grow: 1;
	position: absolute;
	
	z-index: 32;
	top: 64;
 	/*left: 312;*/
 	left: 50%;		/*ウィンドウ水平中心にセット*/
 	transform: translateX(-90%); /*水平中心を基準に位置調整*/
 	width: 211;
 	height: 32;
 	
	background-image: url("p_image/Main_Tag_Info.gif");
}

/*メインコンテンツ・MENU*/
mainwindow.menutag {
	flex-grow: 1;
	position: absolute;
	
	z-index: 32;
	top: 196;
 	/*left: 312;*/
 	left: 50%;		/*ウィンドウ水平中心にセット*/
 	transform: translateX(-210%); /*水平中心を基準に位置調整*/
 	width: 90;
 	height: 32;
 	
	background-image: url("p_image/Main_Tag_Menu.gif");
}

.loop_area_digi_disp{
	width: 362px;
	height: 32px;
	overflow: hidden;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	
	z-index: 0;
	
	top: 0;
	left: 16;
}

/*お知らせ用アニメーション定義*/
@keyframes loop_digi_display{
	0% {
		transform: translateX(100%);
	}
	100%{
		transform: translateX(-400px);
	}

}

.digital_display{
	animation: loop_digi_display 12s linear infinite;
	width: 400px;
}

/*メインコンテンツ・お知らせウィンドウ*/
mainwindow.infowindow {
	flex-grow: 1;
	position: absolute;
	text-align: left;
	
	padding-top: 6;
	padding-left: 35;
	padding-bottom: 6;
	padding-right: 35;
	
	
	z-index: 0;
	top: 96;
 	/*left: 312;*/
 	left: 50%;						/*ウィンドウ水平中心に置く*/
 	transform: translateX(-50%);	/*左上基準なのでサイズ分引いて中心にする*/
 	width: 400;
 	height: 36;
 	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;
 	
}

/*メインコンテンツ・Menuウィンドウ*/
mainwindow.menuwindow {
	flex-grow: 1;
	position: absolute;
	text-align: left;
	
	padding-top: 6;
	padding-left: 35;
	padding-bottom: 6;
	padding-right: 35;
	
	
	z-index: 0;
	top: 228;
	/*left: 312;*/
 	left: 50%;						/*ウィンドウ水平中心に置く*/
 	transform: translateX(-50%);	/*左上基準なのでサイズ分引いて中心にする*/
 	width: 400;
 	height: 600;
 	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;
 	
}

/*回転エリア設定*/
.loop_area_inner{
	width: 1024px;
	height: 1024px;
	overflow: hidden;
	position: relative;
	
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
	min-width: 100vw;
	
	z-index: -18;
	
	top: 0;
	left: 0;
}

.loop_area_middle{
	width: 1024px;
	height: 1024px;
	overflow: hidden;
	position: absolute;
	
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
	min-width: 100vw;
	
	z-index: -17;
	
	top: 0;
	left: 0;
}

.loop_area_outer{
	width: 1024px;
	height: 1024px;
	overflow: hidden;
	position: absolute;
	
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
	min-width: 100vw;
	
	z-index: -16;
	
	top: 0;
	left: 0;
}

/*アニメーションのキーフレーム*/
@keyframes loop_animation_rotation_inner{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}

@keyframes loop_animation_rotation_middle{
	0%{
		transform: rotate(360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}

@keyframes loop_animation_rotation_outer{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

/*アニメーション定義*/
.loop_inner_rotation{
	animation: loop_animation_rotation_inner 96s ease-in-out infinite;
	
	border-radius: 128px;
	width: 100%;
	place-items: center;
}

.loop_middle_rotation{
	animation: loop_animation_rotation_middle 24s linear infinite;
	
	border-radius: 128px;
	width: 100%;
	place-items: center;
}

.loop_outer_rotation{
	animation: loop_animation_rotation_outer 52s linear infinite;
	
	border-radius: 128px;
	width: 100%;
	place-items: center;
}