.message {
	position: fixed;
	background-color: red;
	display: inline-block;
	padding: 1em 2em 1em 2em;
	color: white;
	bottom: 0;
	width: 100%;
	z-index: 2147483647;
	/*z-indexの最大値を入れ、ウィンドウ数に関係なく常に最前面にする。*/
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2)
}

.message img {
	max-width: 100%;

}

.message>p {
	width: 90%;
}

button.msg-btn {
	background-color: #fff;
	color: #d9534f;
	font-size: 16px;
	padding: 10px;
	margin: 0.2em;
	border: none;
	border-radius: 30px;
	cursor: pointer;
}

button.msg-btn:hover {
	background-color: #fff;
}

button.msg-btn:active {
	background-color: #eee;
}