/* -----------------------------------------------------
	fixed_link
----------------------------------------------------- */
@-webkit-keyframes anim {
  0% {
    right: 100%;
    left: 0%;
  }
  80% {
    right: 100%;
    left: 0%;
    -webkit-animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
    animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
  }
  90% {
    right: 0%;
    left: 0%;
    -webkit-animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
    animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
  }
  100% {
    right: 0%;
    left: 100%;
  }
}
@keyframes anim {
  0% {
    right: 100%;
    left: 0%;
  }
  80% {
    right: 100%;
    left: 0%;
    -webkit-animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
    animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
  }
  90% {
    right: 0%;
    left: 0%;
    -webkit-animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
    animation-timing-function: cubic-bezier(0.545, 0.08, 0.52, 0.975);
  }
  100% {
    right: 0%;
    left: 100%;
  }
}

#fixed_link {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  padding: 15px 0;
  z-index: 50;
  background: #f9fafc;
  display: none;
}

@media screen and (max-width: 640px) {
  #fixed_link {
    display: none !important;
  }
}

#fixed_link .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 640px) {
  #fixed_link .inner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

#fixed_link .inner .btn {
  width: 100%;
  max-width: 320px;
  padding: 12px 0;
  display: block;
  color: #fff;
  border-radius: 30px;
  font-size: 18px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  #fixed_link .inner .btn {
    margin: 0 0 20px 0;
    padding: 30px 0;
    max-width: 750px;
  }
}

@media screen and (max-width: 640px) {
  #fixed_link .inner .btn {
    margin: 0;
    padding: 10px 0;
    border-radius: 0;
    width: 60%;
  }
}

#fixed_link .inner .btn + .btn {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  #fixed_link .inner .btn + .btn {
    margin-left: 0;
  }
}

#fixed_link .inner .btn.red {
  overflow: hidden;
  background: #dc2228;
  border: 2px solid #dc2228;
}

#fixed_link .inner .btn.red .btn_txt {
  color: #fff;
}

#fixed_link .inner .btn.red .icn_arrow::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#fixed_link .inner .btn.red:hover {
  background-color: #fff;
  border: 2px solid #dc2228;
}

#fixed_link .inner .btn.red:hover .btn_txt {
  color: #dc2228;
}

#fixed_link .inner .btn.red:hover .icn_arrow::before {
  border-top: 2px solid #dc2228;
  border-right: 2px solid #dc2228;
}

@media screen and (max-width: 640px) {
  #fixed_link .inner .btn.red {
    padding-left: 10px;
  }
}

#fixed_link .inner .btn.blue {
  overflow: hidden;
  border: 2px solid #217FC4;
  line-height: 1;
}

#fixed_link .inner .btn.blue .btn_txt {
  color: #217FC4;
}

#fixed_link .inner .btn.blue .icn_arrow::before {
  border-top: 2px solid #217FC4;
  border-right: 2px solid #217FC4;
}

#fixed_link .inner .btn.blue:hover {
  background-color: #217FC4;
}

#fixed_link .inner .btn.blue:hover .btn_txt {
  color: #fff;
}

#fixed_link .inner .btn.blue:hover .icn_arrow::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#fixed_link .inner .btn.orange {
  overflow: hidden;
  background: #f7a42d;
  border: 2px solid #f7a42d;
}

#fixed_link .inner .btn.orange .btn_txt {
  color: #fff;
}

#fixed_link .inner .btn.orange .icn_arrow::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#fixed_link .inner .btn.orange:hover {
  background-color: #fff;
  border: 2px solid #f7a42d;
}

#fixed_link .inner .btn.orange:hover .btn_txt {
  color: #f7a42d;
}

#fixed_link .inner .btn.orange:hover .icn_arrow::before {
  border-top: 2px solid #f7a42d;
  border-right: 2px solid #f7a42d;
}

@media screen and (max-width: 640px) {
  #fixed_link .inner .btn.orange {
    padding-left: 10px;
  }
}

#fixed_link .inner .btn.white {
  overflow: hidden;
  border: 2px solid #f7a42d;
  line-height: 1;
}

#fixed_link .inner .btn.white .btn_txt {
  color: #f7a42d;
}

#fixed_link .inner .btn.white .icn_arrow::before {
  border-top: 2px solid #f7a42d;
  border-right: 2px solid #f7a42d;
}

#fixed_link .inner .btn.white:hover {
  background-color: #f7a42d;
}

#fixed_link .inner .btn.white:hover .btn_txt {
  color: #fff;
}

#fixed_link .inner .btn.white:hover .icn_arrow::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#fixed_link .inner .btn.red::before, #fixed_link .inner .btn.blue::before, #fixed_link .inner .btn.orange::before, #fixed_link .inner .btn.white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  background-color: #fff;
  -webkit-animation: anim 7s ease-in-out 0s infinite;
  animation: anim 7s ease-in-out 0s infinite;
  z-index: 2;
}

#fixed_link .inner .btn.type_cm {
  max-width: 387px;
  position: relative;
  border-radius: 30px;
  background: url(https://www.robotpayment.co.jp/service/mikata/images/top/top-new/bg_btn_pattern.png) left/100% no-repeat, -webkit-linear-gradient(306deg, #217fc4 50%, #1a6aba 70%, #001694 100%);
  background: url(https://www.robotpayment.co.jp/service/mikata/images/top/top-new/bg_btn_pattern.png) left/100% no-repeat, -o-linear-gradient(306deg, #217fc4 50%, #1a6aba 70%, #001694 100%);
  background: url(https://www.robotpayment.co.jp/service/mikata/images/top/top-new/bg_btn_pattern.png) left/100% no-repeat, linear-gradient(144deg, #217fc4 50%, #1a6aba 70%, #001694 100%);
}

#fixed_link .inner .btn.type_cm::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 98px;
  height: 113px;
  background: url(https://www.robotpayment.co.jp/img/output/banner_btn_kotaro.png) top center no-repeat;
}

#fixed_link .inner .btn.type_cm .btn_txt {
  color: #fff;
  padding-left: 50px;
}

#fixed_link .inner .btn.type_cm .icn_arrow::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#fixed_link .inner .btn.type_cm:hover {
  opacity: 0.8;
}

#fixed_link .inner .btn .icn_arrow {
  position: absolute;
  right: 50px;
}

#fixed_link .inner .btn .icn_arrow:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 640px) {
  #fixed_link .inner .btn .icn_arrow::before {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

#fixed_link .inner .btn .btn_txt {
  color: #707070;
  line-height: 1.5;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  font-weight: bold;
  font-size: 18px;
}

#fixed_link .inner .btn .btn_txt .min {
  padding-left: 0.5rem;
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 640px) {
  #fixed_link .inner .btn .btn_txt {
    font-size: 13px;
  }
}