@charset "utf-8";

#message_wrapper {
	margin: 40px auto 0;
}

#message_wrapper::after {
	content: "";
	display: block;
	clear: both;
}

#message_text {
/*	width: 660px;*/
	width: 100%;
	float: left;
}

#message_text p {
	margin-top: 2em;
	font-size: 1.5rem;
	text-indent: 1em;
	line-height: 1.5;
}

#message_text p:first-child {
	margin-top: 0;
}

#message_image {
	width: 200px;
	float: right;
}

#message_image img {
	width: 100%;
	max-width: 100%;
}

#message_image figcaption {
	margin-top: 1em;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: right;
}

@media screen and (max-width: 768px) {

#message_wrapper {
	margin: 20px auto 0;
}

#message_text {
	width: 100%;
	float: none;
}

#message_text p {
	font-size: 1.4rem;
}

#message_image {
	margin: 30px auto 0;
	width: 100%;
	max-width: 200px;
	float: none;
}

#message_image figcaption {
	font-size: 1.5rem;
	text-align: center;
}

}