@charset "utf-8";



/*

************************************************************************

* グラデーション

* @copyright Revolme Inc.

************************************************************************

*/



/* ################################################################################################ */

/* ## PC                         ################################################################## */

/* ################################################################################################ */

.gradation {
	display: inline-block;
	text-align: center;
	/*
	background:linear-gradient(90deg, rgba(255,213,33,1) 0%, rgba(245,0,0,1) 50%, rgba(185,0,180,1) 100%);
	*/

	background: rgb(249,185,112);
	background: linear-gradient(90deg, rgba(249,185,112,1) 0%, rgba(227,60,95,1) 40%, rgba(167,54,172,1) 100%);

}

.gradation:hover {
	background: rgba(167,54,172,1);
	background: linear-gradient(270deg, rgba(249,185,112,1) 0%, rgba(227,60,95,1) 40%, rgba(167,54,172,1) 100%);

}

.gradation.button-gradation,
button.gradation {
	display: block;
}

.gradation .button-text {
	color: #fff;
	font-weight: bold;
	font-size: 1.4em;
	letter-spacing: 0.4em;
}

.gradation.gradation-border {
	border: 8px solid #f9c028;
	border-image:linear-gradient(45deg, #f9c028 0%, #fc4e70 100%);
	border-image-slice: 1;
}

a .gradation.gradation-border:hover {
	border: 8px solid #fc4e70;
	border-image:linear-gradient(225deg, #f9c028 0%, #fc4e70 100%);
	border-image-slice: 1;
}


.postBody p img {
	border: 8px solid #f9c028;
	border-image:linear-gradient(45deg, #f9c028 0%, #fc4e70 100%);
	border-image-slice: 1;
}



@media screen and (max-width:640px) {


	.gradation .button-text {
		line-height: 1;
	}


}