@charset "utf-8";


#top-intro {
	margin: 0;
	margin-top: 70px;
	margin-bottom: 40px;
	padding: 60px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #000 url('../images/mainimg.jpg') no-repeat center center / cover;
	color: #fff;
}
#top-intro h1 {
	font-weight: normal;
	font-size: 1.4rem;
}

	/*画面幅600px未満の追加指定*/
	@media screen and (max-width:600px) {

	#top-intro {
		padding: 20px 10px;
	}
	#top-intro h1 {
		font-size: 1.2rem;
	}
	#top-intro p {
		font-size: 0.9rem;
	}

	}/*追加指定ここまで*/
