/* コピー: /app/(common)/css/contact.css */
.contact h2 {
  margin-bottom: 1em;
  margin-top: 3em;
}
.contact .btn {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 3rem;
}
.contact .btn a {
  color: var(--brand-color-red);
  border: 1px solid;
  padding: 0.3em 2em;
}
@media (hover: hover) {
  .contact .btn a:hover {
    background-color: var(--brand-color-red);
    color: white;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}
.contact .note_recruit {
  font-size: 1.5rem;
  margin: 2em 0;
  text-align: center;
  font-family: var(--font-serif);
}
.contact .note_recruit a {
  color: var(--brand-color-red);
}
@media screen and (max-width: 767px) {
  .contact .note_recruit {
    font-size: 2.2rem;
  }
}
.contact .contact_box {
  background: #e6ebee;
  width: min(53rem, 100%);
  margin: 8rem auto;
  padding: 2rem 0;
}
.contact .contact_box p {
  font-size: 1.4rem;
  text-align: center;
  margin: 0.5em 0;
}
.contact .contact_box p.tell {
  font-size: 3.6rem;
}
.contact .contact_box p.freecall {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto !important;
  padding-left: 1.5em;
  padding-bottom: 0.1em;
}
.contact .contact_box p.freecall::before {
  content: '';
  display: block;
  width: 1.2em;
  height: 1em;
  background: url('/assets/images/common/icn-freecall.svg') no-repeat
    center/contain;
  position: absolute;
  inset-block: 0;
  left: 0;
  margin: auto;
}
