/*
カスタム CSS 機能へようこそ。

使い方についてはこちらをご覧ください
(英語ドキュメンテーション)。http://wp.me/PEmnE-Bt
*/
/* 赤ボタン単一 */
.red-btn {
	font-size: 16px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 300px;
	margin-bottom: 1em;
}

.red-btn a {
	display: block;
	position: relative;
	z-index: 2;
	overflow: hidden;
	width: 100%;
	font-weight: bold;
	box-shadow: 2px 2px 2px #555;
	border-radius: 5px;
	background-color: #ed254e;
	color: #ffffff !important;
	padding: 12px 0;
	text-align: center;
	text-decoration: none;
	transition: .25s linear;
	-webkit-transition: .25s linear;
	-moz-transition: .25s linear;
}

.red-btn a:hover {
	-ms-transform: translateY(4px);
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
/*下に動く*/
	border-bottom: none;
/*線を消す*/
	box-shadow: none;
}

3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* 左ボタン（横並び） */
.left-btn {
	width: 100%;
/*ボタンの横幅 */
	text-align: center;
/*ボタン内の文字中央寄せ */
	border-radius: 5px;
/*ボタンの角を少し丸く */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	font-weight: bold;
/*ボタン内文字は太字 */
}

.left-btn a {
	display: block;
	position: relative;
	z-index: 2;
	overflow: hidden;
	width: 100%;
	font-weight: bold;
	box-shadow: 2px 2px 2px #555;
	border-radius: 5px;
	background-color: #1bb4d3;
	color: #ffffff !important;
	padding: 12px 0;
	text-align: center;
	text-decoration: none;
	transition: .25s linear;
	-webkit-transition: .25s linear;
	-moz-transition: .25s linear;
}

.left-btn a:hover {
	-ms-transform: translateY(4px);
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
/*下に動く*/
	border-bottom: none;
/*線を消す*/
	box-shadow: none;
}

/* 右ボタン（横並び） */
.right-btn {
	text-align: center;
	width: 100%;
	float: left;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.right-btn a {
	display: block;
	position: relative;
	z-index: 2;
	overflow: hidden;
	width: 100%;
	font-weight: bold;
	box-shadow: 2px 2px 2px #555;
	border-radius: 5px;
	background-color: #C81C1C;
	color: #ffffff !important;
	padding: 12px 0;
	text-align: center;
	text-decoration: none;
	transition: .25s linear;
	-webkit-transition: .25s linear;
	-moz-transition: .25s linear;
}

.right-btn a:hover {
	-ms-transform: translateY(4px);
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
/*下に動く*/
	border-bottom: none;
/*線を消す*/
	box-shadow: none;
}

.box-main {
	text-align: center;
	font-size: 15px;
	margin-bottom: 1em;
}

.box-main:after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (min-width: 600px) {
	.right-btn {
		width: 48%;
		margin-left: 10px;
	}
	
	.left-btn {
		width: 48%;
		float: left;
		margin-right: 10px;
		margin-left: 0;
	}
}