.btn {
	width: auto;
	height: 50px;
	margin: 5px;
	padding: 0 30px;
	display: inline-block;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	overflow: hidden;
	border-width: 1px;
	border-style: solid;
	position: relative;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.btn:focus, .btn:active:focus {
	outline-offset: -2px;
	text-decoration: none;
}

.btn:active {
	background-image: none;
	outline: 0;
}

.btnbox {
	width: 100%;
	padding: 30px 0;
	text-align: center;
}

/* button-set */
.btn {
	background-color: white;
	border-color: #B4C7B4;
	color: #525252;
	font-weight: 700;
	letter-Spacing: 2px;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.688rem;
	border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.btn:hover {
	background-color: #343434;
	border-color: #343434;
	color: #fff;
}

.btn__icon {
	margin: -2px 5px 0 0;
	display: inline-block;
	vertical-align: middle;
	font-size: 30px;
}

.btn span {
	display: inline-block;
	vertical-align: middle;
	line-height: 30px;
}

.btn--sm {
	width: 100px;
	height: 40px;
	margin: 5px;
	padding: 10px 10px;
}

.btn--sm__icon {
	font-size: 20px;
}

.btn--sm span {
	line-height: 20px;
}

.btn--submit {
	background-color: #449D44;
	border-color: #449D44;
	color: #fff;
}

.btn--search {
	background-color: #008abc;
	border-color: #008abc;
	color: #fff;
}

.btn--success {
	background-color: rgba(0, 0, 0, 0);
	border-color: #00ff00;
	color: #252525;
}

.btn--full {
	width: calc(100% - 1px*2);
}

@media only screen and (max-width: 768px) {
	.btnbox {
		padding: 20px 0;
	}
	.btn {
		width: 150px;
		height: 40px;
	}
}
