@charset "UTF-8";
/*--- color ---*/
/*--- z-index ---*/
/*--- breakpoint ---*/
/* =======================
  mixin
======================= */
/*--- 透過ホバー ---*/
/*--- color変更ホバー ---*/
/*--- background-color変更ホバー ---*/
/*--- color・background-colorホバー ---*/
.p-contact-inner {
  max-width: 112rem;
  padding: 0 2rem;
  margin: 8rem auto 10rem auto;
}
@media screen and (max-width: 767.9px) {
  .p-contact-inner {
    margin: 6rem 0 4rem 0;
  }
}
.p-contact-inner .lead {
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .p-contact-inner .lead {
    font-size: 1.4rem;
  }
}
.p-contact-block {
  margin-top: 4rem;
  padding: 4rem 2rem;
  background-color: #F3F6FA;
}
.p-contact-block .heading {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
.p-contact-block .text {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.p-contact-block .address {
  text-align: center;
}
.p-contact-block .link {
  position: relative;
  text-align: center;
  margin-top: 2rem;
}
.p-contact-block .link a {
  display: inline-flex;
  align-items: center;
  gap: 0 0.8rem;
  font-size: 2rem;
  font-weight: 500;
  color: #1D54A2;
  word-break: break-all;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact-block .link a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767.9px) {
  .p-contact-block .link a:active {
    opacity: 0.6;
  }
}
.p-contact-block .link a::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 3.2rem;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../media/images/icon_mail.svg) no-repeat center/78%;
}
