.main_leaflet {
	position: absolute;
	top: -12px;
	right: 0;
	margin: auto;
	text-align: center;
	min-width: 330px;
	max-width: 31vw;
	width: 100%;
}
.main_leaflet a {
  display: inline-block;
  background: #fff0ac;
  color: #312b2a;
  padding: 12px 50px 12px 24px;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.1em;
  vertical-align: middle;
  border-radius: 100px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  text-align: center;
  border: 3px solid #ffffff;
  position: relative;
}
.main_leaflet a::after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/form_arrow.svg) no-repeat;
  background-size: contain;
  transition: 0.3s;
}
.main_leaflet a:hover {
  background: #ffe77d;
}
.main_leaflet a:hover::after {
  right: 15px;
}
.main_leaflet .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .main_leaflet {
		top: calc(-50px + -4.7vw);
		left: 230px;
		right: auto;
		min-width: auto;
		max-width: calc(100% - (300px));
		width: 188px;
		line-height: 1.6em;
  }
  .main_leaflet a {
		padding: 0 20px 0 14px;
		font-size: 12px;
		line-height: 1.25;
		box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
		height: 50px;
		display: flex;
		align-items: center;
		text-align: left;
  }
	.main_leaflet a::after {
    width: 14px;
    height: 14px;
    right: 10px;
    background-size: contain;
  }
  .main_leaflet a:hover::after {
    right: 10px;
  }
}

@media screen and (max-width: 520px) {
	.main_leaflet .sp {
		display: block;
	}
  .main_leaflet {
		left: 43%;
		max-width: calc(100% - (75px + 43%));
  }
  .main_leaflet a {
		padding: 0 20px 0 10px;
	}
}