@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: 2.7rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding: 2rem 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: 14em; 
	margin: 3rem 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: 5px solid #F8D000;
	margin: 3rem 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);
}
.pre_end{
	font-size: 2.8rem;
	font-weight: 600;
	margin: 3rem 0;
}
@media screen and (max-width:1024px) {
	.btn,
a.btn,
button.btn {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1.5rem 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: 1rem auto 0;
	box-sizing: border-box;
}a.btn--orange {
  color: #fff;
  background-color: #FD0509;
  border-bottom: 5px solid #AA0002;
}
	a.btn--orange:hover {
  margin-top: 3px;
  color: #fff;
  background: #AF0002;
  border-bottom: 5px solid #AA0002;
	margin: 1rem auto 0;
}
	.pre_end{
	font-size: 1.2rem;
	font-weight: 600;
	margin: 2rem 0 0;
}
}
