.contact-tel-btn,
.contact-mail-btn,
.contact-group-btn {
  color: #333;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  height: 100%;
}

.contact-tel-btn {
  flex-direction: column;
}

.contact-tel-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-tel-number {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.2em;
}

.contact-tel-number::before {
  content: "";
  display: block;
  width: 0.85em;
  height: 0.85em;
  mask: url(/media/images/icon/icon-tel-red.svg) no-repeat center/contain;
  background-color: #E31F26;
  transition: 0.3s;
}

@media screen and (min-width: 1400px) {
  .contact-tel-btn {
    flex-direction: row;
    gap: 1.5625rem;
  }
  .contact-tel-label {
    width: 8em;
  }
}
.contact-mail-btn {
  position: relative;
  min-height: 6.0714285714rem;
}

.contact-mail-btn::after,
.contact-mail-btn::before {
  content: "";
  position: absolute;
  right: 1.2857142857rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 2.1428571429rem;
  height: 2.1428571429rem;
  background: no-repeat center/contain;
  transition: 0.3s;
}

.contact-mail-btn::after {
  background-image: url("../media/images/icon/icon-arrow-white__lg.svg");
  opacity: 0;
}

.contact-mail-btn::before {
  background-image: url("../media/images/icon/icon-arrow-red__lg.svg");
}

.contact-mail-ttl {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .contact-mail-btn::after,
  .contact-mail-btn::before {
    right: 2.5rem;
    width: 3.125rem;
    height: 3.125rem;
  }
}
.contact-group-btn {
  gap: 1.25rem;
}

.contact-group-btn::after {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  mask: url("/media/images/icon/icon-newtab.svg") no-repeat center/contain;
  background-color: #E31F26;
  transition: 0.3s;
  flex-shrink: 0;
}

.contact-group-ttl {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.contact-group-desc {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

@media (hover: hover) {
  .contact-tel-btn:hover,
  .contact-mail-btn:hover,
  .contact-group-btn:hover {
    color: #fff;
    background-color: #E31F26;
    opacity: 1;
  }
  .contact-tel-btn:hover .contact-tel-number::before,
  .contact-group-btn:hover::after {
    background-color: #fff;
  }
  .contact-mail-btn:hover::after {
    opacity: 1;
  }
  .contact-mail-btn:hover::before {
    opacity: 0;
  }
}

/*# sourceMappingURL=style-contact.css.map */
