@charset "utf-8";
/* ================================================================= 
 License : e-TRUST Inc.
 File name : style.css
 Style : style
================================================================= */
/*================== ○○○○.html =================*/





.btn,
a.btn,
button.btn {
  /*font-size: 1.6rem;*/
  font-size: 15px;
  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--circle {
  width: 104px;
  height: 104px;
  padding: 20px 0 0;
  border-radius: 50%;
  color: #fff!important;
  background: #eb6877;
  -webkit-box-shadow: 0 7px 0 #e53b4e;
  box-shadow: 0 7px 0 #e53b4e;
}

a.btn--circle i {
  font-size: 122%;
}

.fa-position-bottom {
  position: absolute;
  bottom: 1rem;
  left: calc(50% - 0.5rem);
}

a.btn--circle:hover {
  -webkit-transform: translate(0, 4px);
  transform: translate(0, 4px);
  color: #fff!important;
  -webkit-box-shadow: 0 3px 0 #e53b4e;
  box-shadow: 0 3px 0 #e53b4e;
}


.btn_cv{
	position: fixed;
    bottom: 50px;
    right: 172px;
    z-index: 50;
    transform: translateY(15px);
    opacity: 0;
  transition: all 200ms linear;
}
.activce-btn_cv{
  opacity: 1;
    transform: translateY(0);
}


.far{
	position: absolute;
	top:20px;
	right: 44px;
}

.fas{
	position: absolute;
	bottom: 0px;
}




/*アニメーション要素のスタイル*/
.animation{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}



@media screen and (min-width: 641px) and (max-width: 834px){
}
@media only screen and (max-width: 640px){
  .btn_cv{
	position: fixed;
    bottom: 10px;
    right: 120px;
}
}