body{
	padding: 10px;
}

.WINDOW{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	background-color: white;

	/*画面の大きさによって変わるサイズ*/
	width: calc(100vw / 2);
	height: calc(100vw / 3);

	/*最小サイズ*/
	min-width: 400px;
	min-height: 300px;

	/*最大サイズ*/
	max-width: 600px;
	max-height: 400px;

	/*スクロール*/
	overflow: auto;

	border: solid 1px;
	border-color: rgb(207, 207, 207);
	border-radius: 10px;

	padding: 10px;
}

.WINDOW > .BUTTON{
	position: absolute;
	left: 0px;
	bottom: 0px;

	text-align: right;

	width: 100%;
	height: fit-content;

	padding: 10px;
}