@charset "utf-8";




.contact {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	gap: 30px;
	
	& .contact__item {
		display: flex;
		flex-direction: column;
		gap: 0.5lh;
		flex: 1;
		
		& > * {
			margin: 0;
		}
	}
	
	& .contact__ttl {
		font-weight: 600;
		font-size: inherit;
		font-size: 95%;
	}
	
	& .contact__txt {
		display: flex;
		flex-direction: column;
		justify-content: center;
		flex: 1;
		font-size: 90%;
		
		& > * {
			margin: 0;
		}
	}
	
	& img {
		width: 80%;
		max-width: 200px;
	}
}

@media screen and (min-width: 768px) {
		
	.contact {
		flex-direction: row;
	}
}