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

使い方についてはこちらをご覧ください
(英語ドキュメンテーション)。http://wp.me/PEmnE-Bt
*/
/*------------------------------------------------------------
19、テキストに影を付ける
-------------------------------------------------------------*/
.text-shadow01 {
	text-shadow: -1px 0 1px #000, 1px 0 1px #000, 0 -1px 1px #000, 0 1px 1px #000, 2px 2px 3px #fff;
}

.text-shadow02 {
	text-shadow: 2px 2px 3px #000;
}

.text-shadow03 {
	text-shadow: -1px 0 1px #000, 1px 0 1px #000, 0 -1px 1px #000, 0 1px 1px #000;
}

.text-shadow04 {
	text-shadow: 3px 3px 3px #555;
}

.text-shadow05 {
	text-shadow: 5px 5px 3px #000;
	color: #fff !important;
}

/*------------------------------------------
// User style start
// change
----------------------------------------- */
.general-button {
	border-radius: 8px;
	background-color: #6fef08;
	text-decoration: none;
}

.general-button:before {
	border-radius: 8px;
	border-bottom: 0 solid rgba(85,184,6,0);
	background-color: rgba(85,184,6,0);
}

.button-content {
	border-radius: 0 0 8px 8px;
	padding: 2px 8px;
	box-shadow: 0 0 0 0 rgba(85,184,6,0);
	color: #ffffff;
}

.button-text {
	padding: 0 4px;
	line-height: 1.8em;
	text-decoration: none;
	font-size: 26px;
}

.icon-font {
	padding: 0 8px;
	font-size: 46px;
}

/*----------------- at hover -----------------*/
.general-button:hover {
	background-color: #ff33ff;
}

/*----------------- at active -----------------*/
.general-button:active {
	background-color: #ff33ff;
}

/*------------------------------------------
// User style end
----------------------------------------- */
/*------------------------------------------
// Core style start
// not change
----------------------------------------- */
.general-button {
	display: -moz-inline-box;
	display: inline-block;
	transition: all 0;
	-moz-transition: all 0;
	-webkit-transition: all 0;
	-o-transition: all 0;
	position: relative;
	top: 0;
	cursor: pointer;
	text-decoration: none;
	line-height: 1;
}

.general-button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
}

.button-content {
	display: table;
	transition: all 0;
	-moz-transition: all 0;
	-webkit-transition: all 0;
	-o-transition: all 0;
}

.button-text {
	display: table-cell;
	vertical-align: middle;
	text-decoration: none;
}

.icon-font {
	display: table-cell;
	vertical-align: middle;
}

/*----------------- at hover -----------------*/
.general-button:hover {
	transition-timing-function: ease-in-out;
}

.general-button:hover:before {
	transition-timing-function: ease-in-out;
}

.general-button:hover .button-content {
	transition-timing-function: ease-in-out;
}

/*----------------- at active -----------------*/
.general-button:active {
	top: 0;
	transition: all 0;
	-moz-transition: all 0;
	-webkit-transition: all 0;
	-o-transition: all 0;
}

.general-button:active:before {
	transition: all 0;
	-moz-transition: all 0;
	-webkit-transition: all 0;
	-o-transition: all 0;
}

.general-button:active .button-content {
	transition: all 0;
	-moz-transition: all 0;
	-webkit-transition: all 0;
	-o-transition: all 0;
}

/*------------------------------------------
// Core style end
----------------------------------------- */
ul, ol {
	list-style-type: none;
}
