.btn{
	xbackground: #ccc;
	border-radius: 5px;
	color: #fff;
	display: block;
	font-size: 1.33em;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 auto;
	padding: 1.5rem 4rem;
	position: relative;
	text-align: center;
	width: 70%;
}
.btn-br20{
	border-radius: 20px;
}

@media screen and (max-width:768px){
	.btn{
		padding: .5rem 0;
	}
}
.btn--small{
	font-size: 0.8rem;
	padding: 1rem 0;
	
}
.btn--arrow:after{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	content: '';
	height: 10px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 10px;
}
.btn--arrow--black:after{
	border-color: #222;
}
.btn--arrow--blue:after{
	border-top: 1px solid #002060;
	border-right: 1px solid #002060;
}
/*btn color*/
.btn--primary{
	background: #948a54;
}
.btn--secondary{
	background: #002060;
}
.btn--butsudan{
	background: #9bbb59;
}
.btn--grave{
	background: #49acc7;
}
.btn--gift{
	background: #f7778c;
}
.btn--tokyo{
	background: #f7778c;
}
.btn--kawaguchi{
	background: #4bacc6;
}
.btn--service{
	background: #bfb998;
}
.btn--gray{
	background: #ccc;
}
.btn--beige{
	background: #c4bd97;
}
.btn--green-border{
	border: 1px solid #7F9244;
	color: #222;
	display: inline-block;
	padding: 1rem 4rem;
	position: relative;
}
.btn--green-border:after{
	content: '>';
	display: block;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}
.btn--white{
	background: #fff;
	border: 1px solid #222;
	color: #222;
}
/*btn 形状*/
.btn--band{
	background: none;
	border: 2px solid #ccc;
	border-radius: 0;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 1rem 0;
	width: 70%;
}
.btn--band:after{
	content: '';
	display: block;
	border-style: solid;
	border-width: 0 0 20px 20px;
	border-color: transparent transparent #ccc transparent;
	bottom: 0;
	height: 0;
	position: absolute;
	right: 0;
	width: 0;
}
.btn--band.btn--tokyo{
	border: 2px solid #f7778c;
	color: #f7778c;
}
.btn--band.btn--tokyo:after{
	border-color: transparent transparent #f7778c transparent;	
}
.btn--band.btn--kawaguchi{
	border: 2px solid #4bacc6;
	color: #4bacc6;
}
.btn--band.btn--kawaguchi:after{
	border-color: transparent transparent #4bacc6 transparent;	
}
.btn--band.btn--service{
	border: 2px solid #bfb998;
	color: #bfb998;
}
.btn--band.btn--service:after{
	border-color: transparent transparent #bfb998 transparent;	
}
.btn--round{
	border-radius: 5px;
}

.btn--border{
	background: #fff;
	border-radius: 100px;
	border: 1px solid #ccc;
	font-size: 0.83em;
}
.btn--border-primary{
	color: #948a54;
	border: 1px solid #948a54;
}
.btn--border-pink{
	border: 1px solid #f7778c;
	color: #f7778c;
}
.btn--border-blue{
	border: 1px solid #002060;
	color: #002060;
}
.btn--border-black{
	border: 1px solid #222;
	color: #222;
}

.btn--shadow{
	box-shadow:0px 3px 0px -1px #666;
}

/*btn sub*/
.btn__sub{
	display: block;
	font-size: 50%;
	margin-top: 5px;
}