.p-bottom-contact4 {
  background-image: url(../img/section-banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-bottom-contact4 {}
}

.p-bottom-contact4::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.68);
  width: 100%;
  height: 100%;
}

.p-bottom-contact4__inner {
  position: relative;
  width: 100%;
  padding: 40px 20px;
  max-width: 60rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-bottom-contact4__inner {
    max-width: 60rem;
    padding: 9.3rem 2.5rem;
  }
}

.p-bottom-contact4__container {
  display: flex;
  justify-content: center;
}

.p-bottom-contact4__block {
  background-color: #fff;
  padding: 3.2rem 2rem 4.8rem;
  width: 100%;
  max-width: 50rem;
}

@media screen and (min-width: 768px) {
  .p-bottom-contact4__block {
    padding: 70px 2.5rem 5.7rem;
  }
}

.p-bottom-contact4__wrap {
  width: 100%;
  max-width: 38.4rem;
  margin-inline: auto;
}

.p-bottom-contact4__enTitle {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 2.8rem;
  letter-spacing: 0.06em;

  font-family: Oswald;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 0.06em;
  line-height: 30px;
  text-align: left;
  color: #000;

}

@media screen and (min-width: 768px) {
  .p-bottom-contact4__enTitle {
    font-size: 3.4rem;
  }
}

.p-bottom-contact4__text {
  font-size: 1.4rem;
  margin-top: 2.8rem;
  letter-spacing: 0.08em;
  line-height: 1.625;
}

@media screen and (min-width: 768px) {
  .p-bottom-contact4__text {
    font-size: 1.6rem;
    margin-top: 23px;
  }
}

.p-bottom-contact4__button {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2.1rem 0;
  margin-top: 2.8rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-bottom-contact4__button {
    padding: 2.3rem 0;
    margin-top: 3.5rem;
  }
}

.p-bottom-contact4__button:hover {
  color: #000;
  opacity: 1;
  transition: color 0.2s 0.05s;
}

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

.p-bottom-contact4__button:hover::before {
  -webkit-animation: skewanime 0.3s ease-out forwards;
  animation: skewanime 0.3s ease-out forwards;
}

@keyframes skewanime {
  100% {
    left: -10%;
  }
}

.p-bottom-contact4__button span {
  z-index: 1;
  display: flex;
  align-items: center;
}

.p-bottom-contact4__button span::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  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) {
  .p-bottom-contact4__button span::after {
    right: 5rem;
  }
}

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

.p-bottom-contact4__button span::before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}



.p-bottom-contact4__button--mail span::before {
  background-image: url(../images/bottom-contact4/icon-mail.svg);
  width: 1.7rem;
  height: 1.3rem;
  margin-right: 0.5rem;
}

.p-bottom-contact4__button--mail:hover span::before {
  transition: background-image 0.15s;
  background-image: url(../images/bottom-contact4/icon-mail-hover.svg);
}