/* 背景フォント */
div#background {
	position: absolute;
	right: 30px;
	bottom: 100px;
	
/* 	margin: auto 3px; */
}
div#background p {
	font-family: Arial, sans-serif;
	margin: auto;
	font-size: 300px;
	line-height: 250px;
	color: rgba(255, 192, 203, 0.5);
	overflow: hidden;
	z-index: -1;
}

/* コンテンツ */
section#contents {
	height: auto;
}

div.module {
	width: 320px;
}

div.module h2 {
	position: relative;
	padding: 3px 5px;
	font-size: 14px;
	background-color: #eaeaea;
	border-bottom: 1px solid #e0e0e0;
}
div.module ul {
	margin: 10px 0px 30px 0px;
	padding-left: 20px;
}
div.module ul li {
	list-style: none;
	margin: 6px 0px;
}
div.module ul li a {
	text-decoration: underline;
}
div.module ul li img {
	vertical-align: middle;
}

@media screen and (max-device-width: 500px) {
	html, body {
		font-size: 16px;
	}
	
	div#background {
		right: 0px;
		bottom: 30px;
	}
	div#background p {
		font-size: 200px;
		line-height: 180px;
		color: rgba(255, 192, 203, 0.25);	
	}
	
	div.module {
		width: 100%;
	}
	
	div.module ul {
		padding-left: 10px;
		margin-bottom: 30px;
	}
	
	div.module ul li {
		margin: 10px 0px;
		font-size: 16px;
	}
	
	a {
		font-size: 16px;
		margin: 10px 0px;
	}
}