@charset "utf-8";
/* phone 専用 css */
body{
	background-image: 
	url(../images/back.jpg);
	background-repeat: repeat; 
}
.a {
	text-align: center;
}
img {
	max-width: 100%;
}
aside {
	max-width: 100%;
}
footer {
	padding: 10px;
	background-image: url(../images/renga.png);
}
.button {
	width: 70px;
	height: 30px;
	background-color: #673A1B;
	color: #fff;
}
.button:hover {
	background-color: #7FBFB2;
}
.li {
	max-width: 100%;
}

/* topに戻るボタンの設定-------------------------- */
.topbutton {
	/* ▽表示位置を画面の右下に固定 */
	position: fixed;
	bottom: 5px;
	right: 0;
	width: 60px;

	/* ▽最初は非表示にしておく */
	display: none;

	/* ▽配色・配置・文字の装飾など */
	margin: 0px;
	padding: 0px;
}
.topbutton a {
	/* ▽リンクの装飾 */
	color: white;
	text-decoration: none;
}
.topbutton a:hover {
	/* ▽マウスが載ったときの装飾 */
	color: yellow;
	text-decoration: underline;
}

