/*このCSSが働く画面の最大サイズを設定*/
@media screen and (max-width:950px)
{
	body
	{
		/*背景色を設定*/
		/*background: skyblue;*/
		background: #00CC00;
	}

	body:before
	{
		/*background: skyblue;*/
		background: #00CC00;
	}

	.box
	{
		/*このboxのみとなるので大きさを調整*/
		width:100%;
	}

	.box2
	{
		/*box2を非表示*/
		width: 0%;
		display: none;
	}
	
	.input
	{
		/*画面幅に応じた調整*/
		width:300px;
	}

	select,input[type = "password"],input[type = "text"],.Auth
	{
		/*画面幅に応じた調整*/
		width: 300px;
	}

	/* ポップアップ位置調整 */
	#P_window, .Popup
	{
		width: 90vw;
	}

	#P_foot, .P_Foot
	{
		width: 89vw;
	}


	#P_confi, .P_confi, #P_S_OK
	{
		transform: translateY(5px) translateX(-10px);
	}

	/* 幅調整 */
	.sign
	{
		width: 80vw;
	}
	
}	
