@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: 2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  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;
	margin: 0 auto;
	width: 100%;
}
.bt{
	margin:4rem auto 2rem;
	display: block;
	width: 60%;
}
a.btn--orange {
  color: #fff;
  background-color: #FF0004;
    border-bottom: 5px solid #d90309;
}
/*a.btn--orange:hover {
  margin-top: 3px;
  color: #fff;
  background: #d90309;
  border-bottom: 2px solid #d90309;
}*/
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-size: 1.2rem;
}	
.bt{
	margin:2rem auto;
	width: 85%;
}	
	
	
}