@charset "UTF-8";

/*
個人情報の取り扱いについて
-----------------------------------------------------------------------------------------------*/
#privacy{
	&.cmnCtsArea{
		width: var(--width-820);
	}
}

.listPrivacy{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 50px;

	> li{
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		gap: 10px;
	}
	
	.txtArea{
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		gap: 15px;

		.txt{
			text-align: justify;
		}
	}
}


/*
	iPhone13ランドスケープ セーフエリア
	（SafeLandLeft：47　/　SafeLandRight：47）
	844 - 94 = 750　※750px以上でPC表示
-----------------------------------------------------------------------------------------------*/
@media screen and (width < 750px){
	.listPrivacy{
		gap: 30px;
	}
}