@charset "UTF-8";
/*
Theme Name: Emanon Free child
Theme URI: https://wp-emanon.jp
Author: 株式会社イノ・コード
Author URI: https://innocord.co.jp/
Description: Emanon Free の子テーマです。
Template: emanon-free
Version: 1.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, theme-options

Emanon Free 子テーマ用のスタイルを以下に記述 
*/

/* ダウンロードボタン */
.btn_download a {
	position: relative;
	display: inline-block;
	padding: 2px 1em 8px;
	border-radius: 8px;
	background-color: #504431;
	color: #fff!important;
	text-decoration: none;
	transform: translate(0, 0);
	transition: 0.3s;
}
.btn_download a::after {
	position: absolute;
	content: "";
	top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
	border-radius: 8px;
	box-sizing: border-box;
  transform: translate(-3px, -3px);
  transition: 0.3s;
  background-color: #9b8d77;
	z-index: -1;
}
	.btn_download a:hover {
		color: #fff!important;
		transform: translate(2px, 2px);
	}
	.btn_download a:hover::after {
		transform: translate(0,0);
	}