@charset "UTF-8";
.c-btn,
.c-bnr,
.c-txt {
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}


.c-btn {
    background: #ff701e;
    border: 2px solid #ff701e;
    border-radius: 60px;
    color: #fff;
    display: block;
    font-weight: bold;
    max-width: 300px;
    padding: 15px 40px;
    text-align: center;
  }

.c-btn.reverse:hover{
  background: #fff;
  color: #ff701e;
}
.c-btn.letter-spacing:hover{
  letter-spacing: 0.15em;
}

.arrow{
  position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 36px;
}

.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.arrow_sample1::before{
	left: 4px;
	width: 5px;
	height: 1px;
	background: #7a0;
}
.arrow_sample1::after{
	left: 4px;
	width: 4px;
	height: 4px;
	border-top: 1px solid #7a0;
	border-right: 1px solid #7a0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}