@keyframes loop_slide_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*========= link ===============*/
/*========= button ===============*/
.el_button_type01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #464646;
  border-radius: 4px;
  font-size: 16px;
  font-size: 4.2666666667vw;
  font-weight: 500;
  color: #fff;
  line-height: 1.375;
  height: 60px;
  height: 16vw;
  width: 100%;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .el_button_type01 {
    font-size: 1.6rem;
    height: 60px;
  }
}
.el_button_type01::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-top: none;
  border-left: none;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: rotate(-45deg) translateY(-50%);
}
.el_button_type01:hover {
  background: #338bbe;
  opacity: 1 !important;
}
.el_button_type01 span {
  font-size: 11px;
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 750px) {
  .el_button_type01 span {
    font-size: 1.1rem;
  }
}

.el_button_type02 {
  width: 74vw;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  border: 1px solid #464646;
  border-radius: 4px;
  height: 56px;
  height: 14.9333333333vw;
  position: relative;
  text-align: center;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 750px) {
  .el_button_type02 {
    height: 56px;
    width: 280px;
  }
}
.el_button_type02::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #464646;
  border-bottom: none;
  border-right: none;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: rotate(-45deg) translateY(-50%);
}
.el_button_type02:hover {
  background: #338bbe;
  border-color: #338bbe;
  opacity: 1 !important;
  border-color: #fff;
  color: #fff;
}
.el_button_type02:hover::after {
  border-color: #fff;
}

.el_button_estimate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-size: 4.8vw;
  font-weight: 500;
  border-radius: 100vh;
  background: #fff;
  padding: 16px;
  padding: 4.2666666667vw;
  padding-left: 45px;
  padding-left: 12vw;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 750px) {
  .el_button_estimate {
    font-size: 1.8rem;
    padding: 16px 16px 16px 45px;
  }
}
.el_button_estimate::before {
  display: block;
  content: url(../../img/common/icon_estimate.svg);
  line-height: 0;
  margin-right: 8px;
}
.el_button_estimate::after {
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  border: 1px solid #464646;
  border-top: none;
  border-left: none;
  position: absolute;
  right: 24px;
  right: 6.4vw;
  top: calc(50% - 2px);
  transform: rotate(-45deg) translateY(-50%);
}
@media screen and (min-width: 750px) {
  .el_button_estimate::after {
    right: 24px;
  }
}