@charset "UTF-8";
/* CSS Document */

body {
	line-height: 1.75;
}

.wrapper {
	padding: 30px 20px 0;
}

.header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom:20px;
	border-bottom:2px solid #000;
	padding-bottom: 20px;
}
img.logo {
	width: 100px; margin-right: 25px;
}

h1 {
	font-size: 25px
}

.inner {
	padding: 0 10px;
}

.text {
	display: block;
	padding-bottom: 20px;
	border-bottom: 2px solid #000;
}

ul {
	line-height: 2;
	font-size: 18px;
	font-weight:bold;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media screen and (max-width: 550px) {
	
	.wrapper {
		padding: 0 7px 0;
		overflow: scroll;
	}
	.header {
		display: block;
		margin-bottom:0;
		padding-bottom: 0;
	}
	
	img.logo {
		width: 60px;
		margin-right: 0;
	}
	
	h1 {
		font-size: 20px;
		margin-top: 0;
	}
	.inner {
	padding: 0;
	}
	.lead {
		font-size: 14px;
	}
	.text {
		display: flex;
		justify-content: space-between;
	}
	ul {
		line-height: 1.75;
		font-size: 15px;
		font-weight:bold;
		margin: 0;
		padding: 0;
		list-style: none;
	}
}




