@media print, screen and (min-width: 741px) {
  .p-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5.7142857143vw 2.8571428571vw;
  }
}
@media only screen and (min-width: 1400px) {
  .p-contact-list {
    gap: 80px 40px;
  }
}

@media only screen and (max-width: 740px) {
  .p-contact-item {
    padding: 20px;
    border-bottom: 1px solid #e0e4e7;
  }
  .p-contact-item:first-child {
    border-top: 1px solid #e0e4e7;
  }
}
@media print, screen and (min-width: 741px) {
  .p-contact-item {
    flex: 0 0 calc((100% - 5.7142857143vw) / 3);
  }
}
@media only screen and (min-width: 1400px) {
  .p-contact-item {
    flex: 0 0 calc((100% - 80px) / 3);
  }
}

.p-contact-item-link {
  display: block;
}
@media only screen and (max-width: 740px) {
  .p-contact-item-link {
    position: relative;
  }
}
@media print, screen and (min-width: 741px) {
  .p-contact-item-link {
    transition: color 0.4s;
  }
  .p-contact-item-link:hover {
    color: #0071bc;
  }
  .p-contact-item-link:hover .p-contact-item-img img {
    scale: 1.1;
  }
  .p-contact-item-link:hover .p-contact-item-ttl:before {
    scale: 0;
  }
  .p-contact-item-link:hover .p-contact-item-ttl:after {
    scale: 1;
  }
}
@media print, screen and (min-width: 741px) {
  .p-contact-item-img {
    overflow: hidden;
  }
}
.p-contact-item-img img {
  width: 100%;
  transition: scale 0.4s;
}

@media only screen and (max-width: 740px) {
  .p-contact-item-ttl {
    position: static;
  }
}
@media print, screen and (min-width: 741px) {
  .p-contact-item-ttl {
    position: relative;
  }
}
.p-contact-item-ttl:not(:first-child) {
  margin-block: 0.8em 0.6em;
}
.p-contact-item-ttl:before {
  content: "";
  display: block;
  background: #1d2951;
  border-radius: 100%;
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 740px) {
  .p-contact-item-ttl:before {
    width: 24px;
    height: 24px;
    right: 0;
    bottom: 0;
  }
}
@media print, screen and (min-width: 741px) {
  .p-contact-item-ttl:before {
    width: 2.1428571429vw;
    height: 2.1428571429vw;
    right: 0;
    top: 0.75em;
    translate: 0 -50%;
    transition: scale 0.6s;
  }
}
@media only screen and (min-width: 1400px) {
  .p-contact-item-ttl:before {
    width: 30px;
    height: 30px;
  }
}
@media print, screen and (min-width: 741px) {
  .p-contact-item-ttl:after {
    content: "";
    display: block;
    background: #0071bc;
    border-radius: 100%;
    position: absolute;
    translate: 50% 50%;
    width: 2.1428571429vw;
    height: 2.1428571429vw;
    right: 0;
    top: 0.75em;
    translate: 0 -50%;
    scale: 0;
    transition: scale 0.6s;
  }
}
@media only screen and (min-width: 1400px) {
  .p-contact-item-ttl:after {
    width: 30px;
    height: 30px;
  }
}
.p-contact-item-ttl .-icon {
  display: block;
  background: #fff;
  mask: url(/_assets/_common/img/icon-arrow.svg) 50% 50%/contain no-repeat;
  position: absolute;
  transition: background 0.6s;
  z-index: 1;
}
@media only screen and (max-width: 740px) {
  .p-contact-item-ttl .-icon {
    width: 10px;
    height: 8px;
    right: 12px;
    bottom: 12px;
    translate: 50% 50%;
  }
}
@media print, screen and (min-width: 741px) {
  .p-contact-item-ttl .-icon {
    width: 0.7142857143vw;
    height: 0.5714285714vw;
    right: 1.0714285714vw;
    top: 0.75em;
    translate: 50% -50%;
  }
}
@media only screen and (min-width: 1400px) {
  .p-contact-item-ttl .-icon {
    width: 10px;
    height: 8px;
    right: 15px;
  }
}

@media only screen and (max-width: 740px) {
  .p-contact-item-lead {
    padding-right: 50px;
  }
}