/* General */


.btn {
	display: block;
	margin: 0 auto;
	padding: 30px 0;
	color: #fff;
	background: #d32d00;
	font-size: 2.2rem;
	border-radius: 50px;
	width: 600px;
	text-align: center;
}

@media (max-width:480px) {
	.btn {
		padding: 20px 0;
	}

}



.btn-nd,
.btn-nd2,
.btn-nd3,
.btn-stp {
	display: block;
	margin: 0 auto 5rem;
	padding: 0.8em 1em 0.95em;
	text-decoration: none;
	border-radius: 80px;
	color: #fffef4;
	background-image: linear-gradient(270deg, #cb621c 0%, #e03b0e 100%);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
	font-size: 2.9rem;
	line-height: 1.4;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	text-align: center;
	width: 600px;
	position: relative;
	text-shadow: 0 0 3px #00000061;
}

.btn-nd3 {
	background-image: linear-gradient(270deg, #7b8a82 0%, #364643 100%);
}

.btn-nd2 {
	background-image: linear-gradient(270deg, #2389a7 0%, #274272 100%);
}

.btn-stp {
	color: #424241;
	background-image: linear-gradient(270deg, #ced2d3 0%, #ced2d3 100%);
	box-shadow: none;
	text-shadow: none;
	font-weight: 400;
}

@media (max-width:768px) {
	.btn-nd,
	.btn-nd2,
	.btn-nd3,
	.btn-stp {
		width: 100%;
		font-size: 4.7vw;
		margin-bottom: 3rem;
		padding: 0.7em 1em 0.8em;
	}

}

.btn-nd span,
.btn-nd2 span,
.btn-nd3 span,
.btn-stp span {
	font-size: 80%;
}

.btn-nd:hover,
.btn-nd2:hover,
.btn-nd3:hover {
	opacity: 0.8;
}

.btn-nd:before,
.btn-nd2:before,
.btn-nd3:before {
	position: absolute;
	content: "\f054";

	/* アイコンのunicode */
	color: #fffef4;
	font-size: 1.8rem;
	font-family: FontAwesome;
	right: 5%;
	top: 39%;
}

@media (max-width:768px) {
	.btn-nd:before,
	.btn-nd2:before,
	.btn-nd3:before {
		font-size: 3.5vw;
		top: 32%;
	}

}



.button {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;

  -moz-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5),
    0 2px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5),
    0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5),
    0 2px 2px rgba(0, 0, 0, 0.2);

  border: 1px solid;
  padding: 10px 8px;

  color: #fff;
  font-family: "Myriad Pro", Arial, Tahoma, sans-serif;
  font-size: 1.4em;
  font-weight: bold;
  text-shadow: -1px -1px rgba(0, 0, 0, 0.1), 0 0 15px rgba(255, 255, 255, 0.75);
  white-space: nowrap;

  background: #777;
  border-color: #777;

  text-decoration: none;
  font-style: normal;
  text-transform: none;

  position: relative;

  font-size: 14px;
  font-weight: 400;
  margin: 10px;
}

.button:hover,
.button:focus {
  bottom: 1px;

  -moz-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5),
    0 3px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5),
    0 3px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5),
    0 3px 2px rgba(0, 0, 0, 0.2);

  background: #999;
  border-color: #999; /* Default color */
}

.button:active {
  top: 1px;

  -moz-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Shape */

.default {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.square {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.bubble {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

/* Colors */

.button .bt-blue {
  background: #166ba9;
  border-color: #166ba9;
}
.button .bt-blue:hover,
.button .bt-blue:focus {
  background: #3390cf;
  border-color: #3390cf;
}

.button .bt-red {
  background: #d81204;
  border-color: #d81204;
}
.button .bt-red:hover,
.button .bt-red:focus {
  background: #ff2f1f;
  border-color: #ff2f1f;
}

.button .bt-green {
  background: #95a006;
  border-color: #95a006;
}
.button .bt-green:hover,
.bt-green:focus {
  background: #b2bf17;
  border-color: #b2bf17;
}

.button .bt-yellow {
  background: #ffaf09;
  border-color: #ffaf09;
}
.button .bt-yellow:hover,
.button .bt-yellow:focus {
  background: #ffcf09;
  border-color: #ffcf09;
}

.button .bt-purple {
  background: #9f1d78;
  border-color: #9f1d78;
}
.button .bt-purple:hover,
.button .bt-purple:focus {
  background: #cf33a0;
  border-color: #cf33a0;
}

.button .bt-orange {
  background: #ff5f09;
  border-color: #ff5f09;
}
.button .bt-orange:hover,
.button .bt-orange:focus {
  background: #ff7f09;
  border-color: #ff7f09;
}

.button .bt-gray {
  background: #777;
  border-color: #777;
}
.button .bt-gray:hover,
.gray:focus {
  background: #999;
  border-color: #999;
}









.badge {
    display: inline-block;
    color: #fff;
    margin: auto 0.6rem;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}
.bg-glay {
    background-color: #cfd6da;
        color: #333;
}

.bg-blue {
    background-color: #3998DB;
}

.bg-red {
    background-color: #E74C3C;
}

.bg-green {
    background-color: #5CBD9D;
}

.bg-yellow {
    background-color: #F29C33;
}