.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  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;
}

a.btn--green {
  color: #fff;
  background-color: #43ec98b4;
  border-bottom: 5px solid #4fd477;
}

a.btn--green:hover {
  margin-top: 3px;
  color: #fff;
  background: #4df75bef;
  border-bottom: 2px solid #30e00dec;
}
/* .btn,
a.btn,
button.btn {
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  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;
}
a.btn-flat {
    overflow: hidden;

    padding: 1.2rem 5rem;

    color: #000000;
    border-radius: 0;
    background: #fafad2;
  }

  a.btn-flat span {
    position: relative;
  }

  a.btn-flat:before {
    position: absolute;
    top: 0;
    left: 0;

    width: 100px;
    height: 100px;

    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-80%) translateY(-25px);
    transform: translateX(-80%) translateY(-25px);

    border-radius: 50%;
    background: #a5f5938e;
  }

  a.btn-flat:hover:before {
    width: 400px;
    height: 400px;

    -webkit-transform: translateX(-1%) translateY(-175px);

    transform: translateX(-1%) translateY(-175px);
  } */

/* ステップフロー表示 */
.stepflow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 1em;
	padding: 0;
}
.stepflow > li {
	position: relative;
	display: block;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	text-overflow: ellipsis;
	color: #b0bec5;
	 -ms-flex: 1;
	-moz-flex: 1;
	-webkit-box-flex: 1;
	     flex: 1;
}
.stepflow > li .bubble {
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 auto 0.5em;
	border-radius: 1000px;
	background-color: #b0bec5;
}
.stepflow > li .bubble::after,
.stepflow > li .bubble::before {
	position: absolute;
	top: 9px;
	display: block;
	width: 100%;
	height: 3px;
	content: '';
	background-color: #b0bec5;
}
.stepflow > li.completed,
.stepflow > li.completed .bubble {
	color: #00acc1;
}
.stepflow > li.completed .bubble,
.stepflow > li.completed .bubble::after,
.stepflow > li.completed .bubble::before {
	background-color: #4dd0e1;
}
.stepflow > li:last-child .bubble::after,
.stepflow > li:last-child .bubble::before {
	width: 0%;
	margin-right: 50%;
}
.stepflow > li.active,
.stepflow > li.active .bubble {
	font-weight: bold;
	color: #f57c00;
}
.stepflow > li.active .bubble,
.stepflow > li.active .bubble::after,
.stepflow > li.active .bubble::before {
	background-color: #fb8c00;
}


  /* .stepflow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  padding: 0px 10px;
}
.stepflow > li {
	position: relative;
	display: block;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	text-overflow: ellipsis;
	color: #b0bec5;

	 -ms-flex: 1;
	-moz-flex: 1;
	-webkit-box-flex: 1;
	     flex: 1;
}
.stepflow > li .bubble {
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 auto 0.5em;
	border-radius: 1000px;
	background-color: #b0bec5;
}
.stepflow > li .bubble::after,
.stepflow > li .bubble::before {
	position: absolute;
	top: 9px;
	display: block;
	width: 100%;
	height: 3px;
	content: '';
	background-color: #b0bec5;
}
.stepflow > li.completed,
.stepflow > li.completed .bubble {
	color: #00acc1;
}
.stepflow > li.completed .bubble,
.stepflow > li.completed .bubble::after,
.stepflow > li.completed .bubble::before {
	background-color: #4dd0e1;
}
.stepflow > li.completed > .bubble + span::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
	content: '\f00c';
}
.stepflow > li:last-child .bubble::after,
.stepflow > li:last-child .bubble::before {
	width: 0%;
	margin-right: 50%;
}
.stepflow > li.active,
.stepflow > li.active .bubble {
	font-weight: bold;
	color: #f57c00;
}
.stepflow > li.active .bubble,
.stepflow > li.active .bubble::after,
.stepflow > li.active .bubble::before {
	background-color: #fb8c00;
} */






