@charset "UTF-8";
/* リセットcss */
/* ブラウザのUAスタイルシートのすべてのスタイルを削除、displayは除く */
*:where(:not(iframe, canvas, img, svg, video, input[type=checkbox], input[type=radio]):not(svg *)) {
  all: unset;
  display: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  font-size: inherit;
  padding: revert;
  overflow-wrap: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

a,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  cursor: pointer;
}

button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
}

/* ----------------------------------------------
    cookie同意バナー
---------------------------------------------- */
#cookie-notice {
  z-index: 900;
}

/* ----------------------------------------------
    基本設定
---------------------------------------------- */
html,
body {
  font-size: 62.5%;
}

html {
  scroll-padding-top: 105px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  background-color: #f8f8f8;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Ubuntu", "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.7;
  min-width: 1200px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    min-width: auto;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: unset;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.inner {
  width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 92%;
    padding: 0;
  }
}

.bg-2 {
  background-color: #f2f4f6;
}

.list-style-disc {
  list-style: disc;
  list-style-position: inside;
}
.list-style-disc li {
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.sec-title {
  font-size: 9rem;
  font-weight: 400;
  line-height: 1.3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 40px;
  }
}

.sec-title.sec-title--white {
  color: #fff;
}

.sec-title::after {
  content: "";
  display: block;
  background: url(../img/common/sec-title-deco.svg) no-repeat center/contain;
  width: 28px;
  height: 23px;
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.002));
          filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.002));
  position: absolute;
  top: 0.35em;
  right: -0.05em;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec-title::after {
    width: 20px;
    height: 17px;
    top: 0.2em;
    right: -0.1em;
  }
}

.primary-btn {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  text-transform: uppercase;
  width: 177px;
  height: 48px;
  border: 1px solid #333;
  border-radius: 50px;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.primary-btn::after {
  content: "";
  display: block;
  background: url(../img/common/arrow-right.svg) no-repeat center/contain;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.primary-btn:hover {
  background-color: #333;
  color: #fff;
}

.primary-btn:hover::after {
  background: url(../img/common/arrow-right-hover.svg) no-repeat center/contain;
}

.text-gradation {
  background: linear-gradient(110deg, #00bfff, #0327a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgba(255, 255, 255, 0);
}

.text-gradation-2 {
  background: -webkit-gradient(linear, left top, left bottom, from(#00bfff), to(#0327a6));
  background: linear-gradient(180deg, #00bfff, #0327a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgba(255, 255, 255, 0);
}

.gradation-label {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#00bfff), to(#0327a6));
  background: linear-gradient(90deg, #00bfff, #0327a6);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  padding: 4px 12px;
}
@media screen and (max-width: 767px) {
  .gradation-label {
    font-size: 1.2rem;
    padding: 3px 8px;
  }
}
.gradation-label .gradation-label-text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
}

/* ----------------------------------------------
    hover
---------------------------------------------- */
header a,
footer a {
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}
header a:hover,
footer a:hover {
  opacity: 0.6;
}

/* ----------------------------------------------
    header
---------------------------------------------- */
.header.js-scroll {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.header {
  text-transform: uppercase;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  -webkit-transition: background-color 0.3s 0s ease;
  transition: background-color 0.3s 0s ease;
  /* js */
  /* js */
}
.header .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95%;
  max-width: 1920px;
  padding: 0 10px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .header .header__inner {
    height: 80px;
  }
}
.header .logo {
  width: 282px;
  height: auto;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .header .logo {
    width: 232px;
    position: relative;
    z-index: 900;
  }
}
@media screen and (max-width: 767px) {
  .header .header__nav {
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    background-color: #f8f8f8;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 110vw;
    z-index: 800;
    padding: 120px 0;
    -webkit-transition: left 0.2s 0s ease;
    transition: left 0.2s 0s ease;
  }
}
@media screen and (max-width: 767px) {
  .header .header__nav.show-nav-js {
    left: 0;
  }
}
.header .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .header .nav__list {
    display: block;
    font-size: 3.2rem;
    font-weight: 400;
    width: 83%;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .header .nav__item:not(.nav__item--contact) {
    margin: 0 0 20px 0;
  }
}
.header .nav__item:not(.nav__item--contact) > div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 105px;
}
@media screen and (max-width: 767px) {
  .header .nav__item:not(.nav__item--contact) > div a {
    height: 60px;
  }
}
.header .nav__item-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
.header .nav__item-parent .submenu-btn {
  display: inline-block;
  background: url(../img/common/arrow-1.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .header .nav__item-parent .submenu-btn {
    width: 35px;
    height: 35px;
  }
}
.header .nav__item-parent .submenu-btn.js-show-submenu {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header .nav__list-child {
  display: none;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
  min-width: 140px;
  position: absolute;
  padding: 3.2rem 2.4rem;
  margin-left: -2.4rem;
  -webkit-transition: -webkit-transform 0.3s 0s ease;
  transition: -webkit-transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease, -webkit-transform 0.3s 0s ease;
}
@media screen and (max-width: 767px) {
  .header .nav__list-child {
    position: static;
    margin-left: 0;
  }
}
.header .nav__item-child:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .header .nav__item-child:not(:last-of-type) {
    margin-bottom: 36px;
  }
}
.header .nav__item--contact a::before {
  content: "";
  display: block;
  background: url(../img/common/icon-mail.svg) no-repeat center/contain;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .header .nav__item--contact a::before {
    width: 39px;
    height: 39px;
    margin-right: 16px;
  }
}
.header .nav__item--contact a {
  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-color: #333;
  font-size: 1.2rem;
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .header .nav__item--contact a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 3.2rem;
    font-weight: 400;
    width: 100%;
    height: 87px;
    border-radius: 80px;
  }
}
@media screen and (max-width: 767px) {
  .header .header__menu-btn {
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 900;
  }
  .header .header__menu-btn .bar-wrap {
    width: 30px;
    height: 20px;
    position: relative;
  }
  .header .header__menu-btn .bar {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header .header__menu-btn .bar,
  .header .header__menu-btn .bar-wrap::before,
  .header .header__menu-btn .bar-wrap::after {
    display: block;
    background-color: #333;
    width: 30px;
    height: 1px;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
  }
  .header .header__menu-btn .bar-wrap::before,
  .header .header__menu-btn .bar-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header .header__menu-btn .bar-wrap::before {
    top: 0;
  }
  .header .header__menu-btn .bar-wrap::after {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .header .header__menu-btn.click-js .bar {
    opacity: 0;
  }
  .header .header__menu-btn.click-js .bar-wrap::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .header .header__menu-btn.click-js .bar-wrap::after {
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* ----------------------------------------------
    footer
---------------------------------------------- */
.footer {
  background-color: #fff;
  padding-top: 80px;
}
.footer .inner {
  padding: 0;
}
.footer .footer__logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer .footer__logo-area {
    display: block;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
}
.footer .logo {
  width: 282px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer .logo {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 46px;
    margin-bottom: 27px;
  }
}
.footer .external-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 23px;
  width: 215px;
}
.footer .external-link a {
  display: block;
}
.footer .link-wantedly {
  width: 150px;
  height: auto;
}
.footer .link-facebook {
  width: 35px;
  height: auto;
}
.footer .footer__nav-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .footer .footer__nav-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 60px 0;
    margin-bottom: 20px;
  }
}
.footer .link-msol {
  width: 160px;
  height: auto;
}
.footer .link-msol p {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 0.8);
  white-space: nowrap;
}
.footer .footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 120px;
}
@media screen and (max-width: 767px) {
  .footer .footer__nav {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__nav-list {
    margin-bottom: 60px;
  }
}
.footer .footer__nav-item {
  font-size: 1.5rem;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .footer .footer__nav-item {
    font-size: 1.4rem;
  }
}
.footer .copyright {
  display: block;
  font-size: 1.4rem;
  color: rgba(51, 51, 51, 0.6);
  text-align: center;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 1.2rem;
  }
}

/* ----------------------------------------------
    パンくずリスト
---------------------------------------------- */
.aioseo-breadcrumbs {
  font-size: 1.8rem;
  color: #a6acaf;
  line-height: 1.5;
  text-align: center;
  width: 965px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .aioseo-breadcrumbs {
    font-size: 1.4rem;
    width: 92%;
  }
}
@media screen and (max-width: 767px) {
  .aioseo-breadcrumbs > span:last-of-type {
    display: inline-block;
  }
}

/* ----------------------------------------------
    下層ページ共通
---------------------------------------------- */
.sec-title--small {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .sec-title--small {
    font-size: 2.4rem;
    line-height: 1.3;
    text-align: center;
  }
}

.sec-title--small-white {
  color: #fff;
}

.sec-title--small::after {
  content: "";
  display: block;
  background: url(../img/common/sec-title-deco.svg) no-repeat center/contain;
  width: 27px;
  height: 22px;
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.002));
          filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.002));
  position: absolute;
  top: -0.05em;
  right: -0.4em;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec-title--small::after {
    width: 14px;
    height: 12px;
    top: 0.2em;
    right: -0.4em;
  }
}

.sec-title_s-wrap {
  margin-bottom: 84px;
}
@media screen and (max-width: 767px) {
  .sec-title_s-wrap {
    margin-bottom: 40px;
  }
}

.sec-title__sub {
  color: rgba(51, 51, 51, 0.5);
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .sec-title__sub {
    margin-top: 16px;
  }
}

.sec-title__sub--white {
  color: #fff;
}

main:not(#top) .sec-page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 500px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main:not(#top) .sec-page-title {
    height: 380px;
  }
}
main:not(#top) .sec-page-title::after {
  content: "";
  display: block;
  background: url(../img/common/line-page-title.svg) no-repeat center/contain;
  width: 2px;
  height: 160px;
  position: absolute;
  bottom: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  main:not(#top) .sec-page-title::after {
    background: url(../img/common/line-page-title-sp.svg) no-repeat center/contain;
    height: 80px;
    bottom: -40px;
  }
}
@media screen and (max-width: 767px) {
  main:not(#top) .page-title__content {
    width: 92%;
  }
}
main:not(#top) .page-title {
  font-size: 9.6rem;
  margin: 0 auto 24px;
}
@media screen and (max-width: 767px) {
  main:not(#top) .page-title {
    font-size: 4.8rem;
  }
}
main:not(#top) section {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  main:not(#top) section {
    padding: 80px 0;
  }
}
main:not(#top) section:first-of-type {
  padding: 155px 0 100px;
}
@media screen and (max-width: 767px) {
  main:not(#top) section:first-of-type {
    padding: 80px 0;
  }
}
main:not(#top) .read-more__text-wrap {
  overflow: hidden;
  position: relative;
  height: 330px;
}
main:not(#top) .read-more__text-wrap.js-read-more-open {
  height: auto;
}
main:not(#top) .read-more__text-wrap.js-read-more-open .read-more-btn-wrap {
  background-image: none;
}
main:not(#top) .read-more-btn-wrap {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, #f8f8f8));
  background-image: linear-gradient(transparent, #f8f8f8 60%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 150px;
  position: absolute;
  bottom: 0;
  left: 0;
}
main:not(#top) .read-more__text-inner {
  margin-bottom: 47px;
}
main:not(#top) .read-more-btn {
  color: #0327a6;
  text-decoration: underline;
  position: relative;
}
main:not(#top) .read-more-btn::after {
  content: "";
  display: block;
  background: url(../img/common/arrow-bottom.svg) no-repeat center/contain;
  width: 14px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: -17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
main:not(#top) .read-more-btn.js-read-more-open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/* ----------------------------------------------
    共通パーツ
    - お問い合わせ
---------------------------------------------- */
.cta-inquiry {
  background: url(../img/common/bg-parts-contact.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .cta-inquiry {
    background: url(../img/common/bg-parts-contact-sp.jpg) no-repeat center/cover;
  }
}
@media screen and (max-width: 767px) {
  .cta-inquiry .inner {
    width: 80%;
  }
}
.cta-inquiry .sec-title_s-wrap {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .cta-inquiry .sec-title_s-wrap {
    margin-bottom: 40px;
  }
}
.cta-inquiry .cta-inquiry__text {
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .cta-inquiry .cta-inquiry__text {
    line-height: 1.5;
    margin-bottom: 40px;
  }
}
.cta-inquiry .cta-inquiry-btn {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #0f6da8;
  line-height: 1;
  text-transform: uppercase;
  width: 271px;
  height: 57px;
  border-radius: 50px;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .cta-inquiry .cta-inquiry-btn {
    font-size: 1.6rem;
  }
}
.cta-inquiry .cta-inquiry-btn::after {
  content: "";
  display: block;
  background: url(../img/common/arrow-right-blue.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.cta-inquiry .cta-inquiry-btn:hover {
  background-color: #333;
  color: #fff;
}
.cta-inquiry .cta-inquiry-btn:hover::after {
  background: url(../img/common/arrow-right-hover.svg) no-repeat center/contain;
}/*# sourceMappingURL=style.css.map */