@charset "UTF-8";
/**** 共通カラー ****/
.section {
  position: relative;
}

.tit-accent {
  display: inline-block;
  font-size: clamp(2.4rem, 3.3vw, 3.6rem);
  margin: 0 4px;
}
@media screen and (max-width: 768px) {
  .tit-accent {
    font-size: 2.4rem;
  }
}

.cv-btn {
  background: linear-gradient(#4774b9 0%, #588fdd 81.77%, #679ce2 100%);
  color: #ffffff;
  font-size: clamp(2rem, 2.3vw, 2.8rem);
  text-align: center;
  width: 544px;
  height: 71px;
  line-height: 71px;
  border-radius: 300px;
  font-family: "NotoSansJP-Bold";
}
@media screen and (max-width: 768px) {
  .cv-btn {
    width: 280px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}
.cv-btn a span {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cv-btn a span {
    transform: translateX(-14px);
  }
}
.cv-btn a span::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(../image/cv-arrow.svg);
  width: 34px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  right: -75px;
  top: 44%;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .cv-btn a span::before {
    right: -42px;
  }
}
.cv-btn a:hover span::before {
  right: -90px;
}

.image-banner {
  max-width: 1000px;
  margin: auto;
}/*# sourceMappingURL=module.css.map */