/* p-bg
---------------------------------------------------------------------------- */
.p-bg {
  background-color: #202020;
}

/* p-sec-contact
---------------------------------------------------------------------------- */
.p-sec-contact-read {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-top: 7.5rem;
}

.p-sec-contact-txt {
  font-size: 1.5rem;
  line-height: calc(28 / 15);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
  margin-top: 3rem;
}

.p-sec-contact-button {
  width: 28.5rem;
  height: 5rem;
  margin-top: 3.5rem;
  margin-inline: auto;
}
.p-sec-contact-button .p-sec-contact-btn {
  color: #040405;
}

.p-sec-contact-btn {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
  background-color: #d9b310;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 0;
  padding-inline: 0;
  cursor: pointer;
  transition: filter 0.3s ease 0s;
  position: relative;
}
.p-sec-contact-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #040405;
  border-right: 0.2rem solid #040405;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease 0s;
}

@media (any-hover: hover) {
  .p-sec-contact-btn:hover {
    filter: brightness(1.2);
  }
  .p-sec-contact-btn:hover::after {
    transform: translateX(.5rem) translateY(-50%) rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  .p-sec-contact-read {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(30 / 18);
    margin-top: calc(45 / 375 * 100vw);
  }

  .p-sec-contact-txt {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(55.94 / 30);
    margin-top: calc(25 / 375 * 100vw);
  }

  .p-sec-contact-button {
    width: calc(285 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
    margin-top: calc(45 / 375 * 100vw);
  }

  .p-sec-contact-btn {
    font-size: calc(18 / 375 * 100vw);
  }
  .p-sec-contact-btn::after {
    right: calc(15 / 375 * 100vw);
    width: calc(8 / 375 * 100vw);
    height: calc(8 / 375 * 100vw);
    border-top: calc(2 / 375 * 100vw) solid #040405;
    border-right: calc(2 / 375 * 100vw) solid #040405;
  }
}
