.contact-cta {
  color: #fff;
  text-align: center;
  background:url(../img/contact-cta-bg.jpg) center center / cover no-repeat;
  position: relative;
  padding-bottom: 40px;
	margin-bottom:-1px;
}
@media screen and (min-width: 768px) {
  .contact-cta {
    padding-bottom: 103px;
  }
}

.contact-cta::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/contact-cta-charm.svg) center center / contain no-repeat;
  top: 0;
  left: 1.5%;
  width: 32%;
  height: 11.46%;
}


@media screen and (max-width: 999px) {
  .contact-cta::before {
    display: none;
  }
}

.contact-cta .sectionTitle--en,.contact-cta .sectionTitle--ja {
  color: #fff!important;
}

.contact-cta__inner {
  position: relative;
  width: 100%;
  padding: 40px 2rem 10px;
  max-width: 60rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact-cta__inner {
    max-width: 104.6rem;
    padding: 110px 2.5rem 19px;
  }
}

.contact-cta__enTitle {
  font-family: Oswald;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-align: center;
  color: #fff !important;
  
}
@media screen and (min-width: 768px) {
  .contact-cta__enTitle {
    font-size: 3rem;
  }
}


.contact-cta__title {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff !important;
}

.contact-cta__text {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 28px;
  text-align: center;
  color: #e8e8e8;  
}

@media screen and (max-width: 767px) {
  .contact-cta__text { 
    font-size: 13px;
  }
}

.contact-cta__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 2.6rem;
  margin-top: 2.8rem;
}
@media screen and (min-width: 768px) {
  .contact-cta__wrap {
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 24px 24px;
    margin-top: 36px;
  }
}

.contact-cta__button {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
  max-width: 340px;
  width: 100%;
  padding: 10px 0;
  font-size: 1.5rem;
  margin-inline: auto;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .contact-cta__button {
    padding: 19px 0;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}

.contact-cta__button:hover {
  color: #000;
  opacity: 1;
  transition: color 0.2s 0.05s;
}

.contact-cta__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  background: #fff;
  width: 120%;
  height: 100%;
}

.contact-cta__button:hover::before {
  -webkit-animation: skewanime 0.3s ease-out forwards;
  animation: skewanime 0.3s ease-out forwards;
}

@keyframes skewanime {
  100% {
    left: -10%;
  }
}
.contact-cta__button::after {
  content: "";
  display: inline-block;
  height: 4.5rem;
}
@media screen and (min-width: 768px) {
  .contact-cta__button::after {
    height: 3.6rem;
  }
}

.contact-cta__button span {
  z-index: 1;
  display: flex;
  align-items: center;
}

.contact-cta__button span::before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact-cta__button:hover span::before {
  transition: background-image 0.15s;
}

.contact-cta__button span::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  right: min(6.6vw, 4rem);
}
@media screen and (min-width: 768px) {
  .contact-cta__button span::after {
    right: 4rem;
  }
}

.contact-cta__button:hover span::after {
  transition: border 0.2s 0.15s;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}

.contact-cta__button--mail span::before {
  background-image: url(../images/bottom-contact1/mail.svg);
  width: 1.8rem;
  height: 1.3rem;
  margin-right: 0.3rem;
}

.contact-cta__button--mail:hover span::before {
  background-image: url(../images/bottom-contact1/mail-hover.svg);
}

.contact-cta__button--tel span::before {
  background-image: url(../img/icon-tel.svg);
  width: 15px;
  height: 19px;
  margin-right: 0.3rem;
  transform: translateX(-10px);
}

.contact-cta__button--tel:hover span::before {
  background-image: url(../img/icon-tel-hover.svg);
}

.contact-cta__button--line {
    padding-left: 3px;
}
.contact-cta__button--line span::before {
  background-image: url(../img/icon-line.svg);
  width: 19px;
  height: 18px;
  margin-right: 0.3rem;
}

.contact-cta__button--line:hover span::before {
  background-image: url(../img/icon-line-hover.svg);
}

