@charset "UTF-8";

/* btn style */
.c-btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
}
@media screen and (max-width: 810px) {
  .c-btn {
    position: relative;
    cursor: pointer;
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}

.c-btn:before,
.c-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.c-btn:before {
  background: linear-gradient(85deg, #1a7144, #31b06a);
  z-index: 1;
  opacity: 1;
}
.c-btn:after {
  background: linear-gradient(85deg, #1a7144, #1a7144);
  z-index: 0;
}
.c-btn__text {
  text-decoration: none;
  display: inline-block;
  padding: 12px 50px 12px 30px;
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  transition: 0.3s ease;
  z-index: 2;
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.c-btn__text:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease;
}
.c-btn:hover:before {
  opacity: 0;
}
.c-btn:hover .c-btn__text:after {
  right: 25px;
}
.c-btn__text[target="_blank"]:after {
  font-family: "Font Awesome 6 Free";
  margin: 0 3px 5px;
  content: "\f35d";
  font-weight: 900;
  display: inline-block;
  font-size: 1.4rem;
  border-top: 0;
  border-right: 0;
  transform: rotate(0deg) translateY(-60%);
}
.c-btn:hover .c-btn__text[target="_blank"]:after {
  right: 30px;
}
