@charset "utf-8"; 

/* ===========================================================================================================================
	コンセプト concept css
	
	---- INDEX ----
	
	
	
============================================================================================================================== */
/* おいしい水を安心して飲めるための維持管理
------------------------------------------ */
@media screen and (min-width: 1000px) {/* PC */
	.txt-img {
		display: flex;/* 内包要素を並列に */
		justify-content: space-between;/* 内包要素を両端に合わせて均等間隔に配置 */
	}
	.txt-img .txtBox {
		width: 500px;
	}
	.txt-img .imgBox {
		width: 470px;
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	.txt-img .imgBox {
		text-align: center;
		padding: 1em 0 0;
	}
}
@media screen and (max-width: 767px) {/* SP */
	.txt-img .imgBox {
		text-align: center;
		padding: 1em 0 0;
	}
	.txt-img .imgBox img {
		width: 80%;
		height: auto;
	}
}


@media screen and (min-width: 1000px) {/* PC */
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
}
@media screen and (max-width: 767px) {/* SP */
}

