/* p-message
---------------------------------------------------------------------------- */
.p-message {
  padding-block: 7rem;
}

.p-message-txt {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-message {
    padding-block: 5.3333333333vw;
  }
  .p-message-txt {
    margin-top: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
/* p-profile
---------------------------------------------------------------------------- */
.p-profile {
  padding-block: 7rem;
}

.p-profile-list {
  margin-top: 4rem;
  background-color: #fff;
}

.p-profile-inner {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 0;
  min-height: 8rem;
  border: 1px solid #dbdbdc;
}

.p-profile-inner:not(:last-of-type) {
  border-bottom: none;
}

.p-profile-item-ttl {
  display: grid;
  place-items: center;
  background-color: #ededed;
  border-right: 1px solid #dbdbdc;
  padding-block: 1rem;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #052b61;
}

.p-profile-item-txt {
  display: grid;
  align-items: center;
  padding-block: 1rem;
  padding-inline: 2rem;
  font-size: 2.2rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-profile {
    padding-block: 5.3333333333vw;
  }
  .p-profile-list {
    margin-top: 5.3333333333vw;
  }
  .p-profile-inner {
    grid-template-columns: 1fr;
    min-height: 21.3333333333vw;
  }
  .p-profile-item-ttl {
    padding-block: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
  .p-profile-item-txt {
    padding-block: 2.6666666667vw;
    padding-inline: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
/* p-access
---------------------------------------------------------------------------- */
.p-access {
  padding-block: 7rem;
}

.p-access-inner {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  gap: 4rem;
}

.p-access-list {
  display: grid;
  gap: 2rem;
}

.p-access-list-inner {
  display: grid;
  grid-template-columns: 10rem 1fr;
  align-items: center;
  gap: 0;
  --line-height: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: var(--line-height) solid #dbdbdc;
  position: relative;
}

.p-access-list-inner::before {
  content: "";
  width: 10rem;
  height: var(--line-height);
  background-color: #052b61;
  position: absolute;
  top: 100%;
  left: 0;
}

.p-access-item-ttl {
  font-size: 2.2rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.p-access-item-txt {
  font-size: 2.2rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  font-weight: 400;
  padding-inline: 1rem 0;
}

.p-access-map {
  width: 60rem;
  aspect-ratio: 16/9;
}
.p-access-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-access {
    padding-block: 10.6666666667vw;
  }
  .p-access-inner {
    margin-top: 5.3333333333vw;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .p-access-list {
    gap: 2.6666666667vw;
  }
  .p-access-list-inner {
    grid-template-columns: 26.6666666667vw 1fr;
    gap: 0;
  }
  .p-access-list-inner::before {
    width: 26.6666666667vw;
  }
  .p-access-item-ttl {
    font-size: 4.2666666667vw;
  }
  .p-access-item-txt {
    font-size: 4.2666666667vw;
    line-height: 1.3;
    padding-inline: 2.6666666667vw 0;
  }
  .p-access-map {
    width: 100%;
  }
}
