@charset "utf-8";

/* body */
body {
	font-size: 14px;
	font-family: sans-serif;
	line-height: 1.8;
	letter-spacing: 0.1em;
	background: #f5f5f5;
}

/* article */
article {
	max-width: 620px;
	margin: 0 auto;
	padding: 0 10px;
}

h1 {
	margin-bottom: 20px;
	padding: 5px 0 3px;
	color: #fff;
	background: #666;
	text-align: center;
}

/* section */
section {
	margin-bottom: 20px;
	padding: 10px;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 { font-weight: bold; }

/* btn */
.btn_area {
	position: relative;
	height: 30px;
	margin-top: 10px;
}

.btn_vote {
	position: absolute;
	top : -30;
	right: 0;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background: #aaa url(../img/btn_heart.png) no-repeat center center;
	background-size: contain;
	border-radius: 25px;
	transition: all 0.2s linear;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.btn_vote.on {
	background-color: #fd616b;
	animation: anime_01 0.2s;
}

@keyframes anime_01 {
	50% {
		right: -10px;
		bottom: -10px;
		width: 70px;
		height: 70px;
		border-radius: 50px;
	}
}

.ico_heart {
	padding-left: 17px;
	background: url(../img/ico_heart.jpg) no-repeat left center;
	background-size: 15px 15px;
}

/* footer */
footer {
	padding: 10px 0;
	color: #fff;
	text-align: center;
	background: #aaa;
}

footer a { color: #fff; }
