.content_pc{
	font-size: 62.5%;

	margin: 10px 0 10px 0;
	
	max-width : 100%;
	width : auto;
	max-height: 100%;
	height: auto;

	display: grid;
	
	/* gameDataが勝手に並べられる（410px間隔） */
	grid-template-columns: repeat(auto-fill,470px);
	grid-template-rows: auto;
}
.content_smf{
	font-size: 120%;
	
	margin: 10px 0 10px 0;
	
	max-width : 100%;
	width : auto;
	max-height: 100%;
	height: auto;

	display: grid;
}
.contentData{
	min-width : 450px;
	margin: 10px;
	
	/* background-color: rgb(240, 245, 173); */
}
.gamedata{
	width : 100%;
	height: 100%;

	display: grid;
	grid-template-rows: 20% auto;
	grid-template-columns: 45% 1fr;
	background-color: rgb(208, 250, 208);
	/* background-color: rgb(213, 229, 247); */
}
.gamedata_testMode{
	width : 100%;
	height: 100%;

	display: grid;
	grid-template-rows: 20% auto;
	grid-template-columns: 45% 1fr;
	background-color: rgb(255, 230, 208);
	/* background-color: rgb(213, 229, 247); */
}
.gamedataTitle{
	background-color: rgb(173, 255, 173);
	/* background-color: rgb(170, 208, 250); */
	grid-row-start: 1;
	grid-row-end: 2;
	grid-column-start: 1;
	grid-column-end: -1;
		
	display: grid;
	grid-template-rows: 0px auto 0px;
	grid-template-columns: 10px auto;
	
}
.gamedataTitle_testMode{
	background-color: rgb(230, 200, 173);
	/* background-color: rgb(170, 208, 250); */
	grid-row-start: 1;
	grid-row-end: 2;
	grid-column-start: 1;
	grid-column-end: -1;
		
	display: grid;
	grid-template-rows: 0px auto 0px;
	grid-template-columns: 10px auto;
	
}
.gamedataTitleText{
	grid-row-start: 2;
	grid-row-end: 2;
	grid-column-start: 2;
	grid-column-end: 2;

	/* 上下中央に寄せる */
	height: auto;
}
.gamedataImageArea{
	max-width : 100%;
	max-height: 100%;

	grid-row-start: 2;
	grid-row-end: 2;
	grid-column-start: 1;
	grid-column-end: 1;

	display: grid;

	grid-template-rows: 100%;
	grid-template-columns: 100%;
	
}
.gamedataImage{
	/* 中心に配置 */
	justify-self: center;	/* 横方向の位置を指定する */
    align-self: center;		/* 縦方向の位置を指定する */

	/* margin: 10px 10px 10px 10px; */

}
.gamedataText{
	/* background-color: rgb(132, 189, 255); */
	text-align: left;
}
