@charset "utf-8";
/* CSS Document */
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*, *:before, *:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}
/*html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;rem算出をしやすくするために
}*/

.btn, a.btn, button.btn {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
/*	display: inline-block;*/
	padding: 1rem 1rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #212529;
	border-radius: 0.5rem;
	width: 80%;
	margin: 4rem auto 3rem;
	box-sizing: border-box;
	display: block;
}
a.btn--orange {
	color: #000;
	background-color: #FFED00;
	border-bottom: 5px solid #ffd200;
}
/*a.btn--orange:hover {
	margin-top: 3px;
	color: #000;
	background: #F8D000;
	border-bottom: 2px solid #F8D000;
	margin: 4rem auto 3rem;
}*/


a.btn--shadow {
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

@media screen and (max-width:1024px) {
.btn, a.btn, button.btn {
	font-weight: 700;
	line-height: 1.5;
	position: relative;
/*	display: inline-block;*/
	padding: 1rem 1rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #212529;
	border-radius: 0.5rem;
	width: 90%;
	margin: 2rem auto 2rem;
	box-sizing: border-box;
	font-size: 1rem;
	display: block;
	
}
/*a.btn--orange:hover {
	margin-top: 3px;
	color: #000;
	background: #F8D000;
	border-bottom: 2px solid #F8D000;
	margin: 1.5rem auto 0;
}*/
}
