/* p-group
---------------------------------------------------------------------------- */
.p-group {
  padding-block: 7.8rem 10rem;
}

.p-group-link-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0 4rem;
  padding-block: 4.1rem 4.05rem;
  padding-inline: 5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 7.4rem;
}

.p-group-link {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.8125;
  font-weight: 700;
  line-height: 1.4;
  color: #1A1A1A;
  padding-bottom: 1rem;
}

.p-group-content:not(:last-of-type) {
  margin-bottom: 10.5rem;
}

.p-group-content-list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.p-group-content-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: 0;
  background-color: #F8F8F8;
  padding: 4rem;
  font-size: 1.6rem;
  line-height: 1.8125;
  font-weight: 400;
}

.p-group-content-item-ttl {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #073190;
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.8rem;
}
.p-group-content-item-ttl::before {
  content: "";
  width: 0.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  top: 1.1rem;
  left: 0;
}

.p-group-content-item-category {
  line-height: 1.5;
  color: #3592D1;
  padding-bottom: 2rem;
  border-bottom: 1px solid #BEBEBE;
  margin-bottom: 1.8rem;
}

.p-group-content-item-mail {
  margin-bottom: 1rem;
}

.p-group-content-item-tel {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  column-gap: 1rem;
  margin-bottom: 1.7rem;
}
.p-group-content-item-tel::before {
  content: "";
  width: 1.7rem;
  aspect-ratio: 1;
  background-image: url(/assets/images/en/common/icn_tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-group-content-item-btn-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0 1rem;
  margin-bottom: 2rem;
}

.p-group-content-item-btn {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  padding-inline: 2rem 1.5rem;
  height: 4.5rem;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 700;
}
.p-group-content-item-btn::after {
  content: "";
  aspect-ratio: 1;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: currentColor;
}
.p-group-content-item-btn[data-btn=web] {
  background-color: #073190;
}
.p-group-content-item-btn[data-btn=web]::after {
  width: 1.5rem;
  mask-image: url(/assets/images/en/common/icn_external_link.svg);
}
.p-group-content-item-btn[data-btn=map] {
  background-color: #3592D1;
}
.p-group-content-item-btn[data-btn=map]::after {
  width: 2rem;
  mask-image: url(/assets/images/en/common/icn_pin.svg);
}

.p-group-content-item-info {
  padding-block: 1.4rem;
  padding-inline: 2rem;
  background-color: #fff;
}
.p-group-content-item-info > :not(:last-of-type) {
  margin-bottom: 0.2rem;
}

.p-group-content-item-info-inner {
  display: grid;
  grid-template-columns: 1fr 31rem;
  align-items: center;
}

.p-group-content-item-info-term {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  gap: 0 0.8rem;
  font-weight: 700;
  color: #073190;
}
.p-group-content-item-info-term::before {
  content: "";
  width: 0.8rem;
  height: 0.1rem;
  background-color: currentColor;
}

@media screen and (max-width: 767px) {
  .p-group {
    padding-block: 13.3333333333vw;
  }
  .p-group-link-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.7333333333vw 5.3333333333vw;
    padding-block: 8vw;
    padding-inline: 5.3333333333vw;
    box-shadow: 0 0 2.6666666667vw rgba(0, 0, 0, 0.1019607843);
    margin-bottom: 13.6vw;
  }
  .p-group-link {
    font-size: 3.7333333333vw;
    padding-bottom: 1.3333333333vw;
  }
  .p-group-link .m-arrowDown-circle-blue {
    width: 5.3333333333vw;
  }
  .p-group-link .m-arrowDown-circle-blue::after {
    width: 1.8666666667vw;
  }
  .p-group-content:not(:last-of-type) {
    margin-bottom: 18.6666666667vw;
  }
  .p-group-content-list {
    margin-top: 8vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 5.3333333333vw;
  }
  .p-group-content-item {
    padding: 5.0666666667vw;
    font-size: 4.2666666667vw;
  }
  .p-group-content-item-ttl {
    font-size: 4.8vw;
    line-height: 1.7777777778;
    padding-left: calc(2.1333333333vw + 2.9333333333vw);
    margin-bottom: 1.8666666667vw;
  }
  .p-group-content-item-ttl::before {
    width: 2.1333333333vw;
    top: 2.9333333333vw;
  }
  .p-group-content-item-category {
    padding-bottom: 4vw;
    margin-bottom: 3.2vw;
  }
  .p-group-content-item-mail {
    margin-bottom: 1.3333333333vw;
  }
  .p-group-content-item-tel {
    column-gap: 2.6666666667vw;
    margin-bottom: 4.5333333333vw;
  }
  .p-group-content-item-tel::before {
    width: 4.5333333333vw;
  }
  .p-group-content-item-btn-wrap {
    gap: 0 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  .p-group-content-item-btn {
    padding-inline: 3.2vw;
    height: 12vw;
    border-radius: 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
  .p-group-content-item-btn::after {
    width: 4vw;
  }
  .p-group-content-item-info {
    padding-block: 4.8vw;
    padding-inline: 5.3333333333vw;
  }
  .p-group-content-item-info > :not(:last-of-type) {
    margin-bottom: 2.6666666667vw;
  }
  .p-group-content-item-info-inner {
    grid-template-columns: 1fr;
  }
  .p-group-content-item-info-term {
    gap: 0 2.1333333333vw;
  }
  .p-group-content-item-info-term::before {
    height: 0.2666666667vw;
    width: 2.1333333333vw;
  }
}
