/* 【Grid・大枠】 */
/* 親 */
#grid_frame {
	width: 100%;
	/* min-width: 1400px;  ← 削除: スマホではみ出す原因になります */
	justify-content: center;
	align-content: start;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto auto auto auto;
}
/* 子 */
#cont1 {
	/* ヘッダー */
	width: 100%;
	/* min-width: 1400px; ← 削除 */
	grid-column: 1 / 2;
	grid-row: 1 / 2;
	background-color : #000;
	color : #FFF;
	text-align: center;
}
#cont2 {
	/* メインコンテンツ */
	width: 100%;
	/* min-width: 1400px; ← 削除 */
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}
#cont3 {
	/* サイトマップ */
	width: 100%;
	/* min-width: 1400px; ← 削除 */
	grid-column: 1 / 2;
	grid-row: 3 / 4;
	background-color : #333;
	color : #FFF;
}
#cont4 {
	/* コピーライト */
	width: 100%;
	/* min-width: 1400px; ← 削除 */
	grid-column: 1 / 2;
	grid-row: 4 / 5;
	background-color : #000;
	color : #FFF;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	text-align: center;
	padding: 50px 0px;
}