.p-map__main {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 56px;
}
@media (max-width: 834px) {
  .p-map__main {
    border-radius: 32px;
  }
}
.p-map__main iframe {
  width: 100%;
}
@media (max-width: 834px) {
  .p-map__main iframe {
    height: 87vw;
  }
}
.p-map__button {
  position: relative;
  z-index: 1;
  margin-top: -28px;
}
.p-map__button .c-button {
  margin: 0 auto;
}
.p-map__button .c-button:where(body[data-theme-color=blue] *) {
  --button-color: var(--color-sub01);
}
.p-map__button .c-button:where(body[data-theme-color=pink] *) {
  --button-color: var(--color-sub01);
}
.p-map__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-map__list {
    flex-direction: column;
    gap: 32px;
  }
}
.p-map__item {
  width: 32%;
  margin-right: 2%;
}
@media (max-width: 768px) {
  .p-map__item {
    width: 100%;
    margin-right: 0;
  }
}
.p-map__item:nth-of-type(3n) {
  margin-right: 0;
}
.p-map__img {
  overflow: hidden;
  border-radius: 16px;
}
.p-map__text {
  margin-top: 12px;
}
.p-map__item-heading {
  margin-bottom: 0.15em;
  font-size: 1.3em;
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.p-info__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .p-info__list {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 834px) {
  .p-info__list {
    //flex-direction: row;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .p-info__list {
    flex-direction: column;
  }
}
.p-info__item {
  width: 30%;
  overflow: hidden;
  border-color: var(--border-color);
  border-style: solid;
  border-width: 4px;
  border-radius: 40px;
}
@media (max-width: 1024px) {
  .p-info__item {
    width: 100%;
    border-radius: 24px;
  }
}
@media (max-width: 834px) {
  .p-info__item {
    //width: 30%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-info__item {
    width: 100%;
  }
}
.p-info__item--main {
  --border-color: var(--color-main02);
  --thumb-color: rgba(var(--color-main02-rgb), 16%);
  --icon-color: var(--color-main01);
}
.p-info__item--sub {
  --border-color: var(--color-sub02);
  --thumb-color: rgba(var(--color-sub02-rgb), 16%);
  --icon-color: var(--color-sub01);
}
.p-info__thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 32px;
}
@media (max-width: 834px) {
  .p-info__thumb {
    padding: 32px 0 24px;
  }
}
.p-info__thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: repeating-linear-gradient(90deg, var(--thumb-color), var(--thumb-color) 4px, rgba(255, 255, 255, 0) 4px, rgba(255, 255, 255, 0) 8px);
}
.p-info__icon {
  position: relative;
  width: 124px;
  height: 124px;
  background-color: var(--icon-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 64% auto;
  border-radius: 50%;
}
@media (max-width: 834px) {
  .p-info__icon {
    width: 100px;
    height: 100px;
  }
}
.p-info__text {
  padding: 16px 32px 56px;
}
@media (max-width: 834px) {
  .p-info__text {
    padding: 10px 20px 30px;
  }
}
.p-info__title {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}
@media (max-width: 834px) {
  .p-info__title {
    font-size: 1.8rem;
  }
}
.p-info__para {
  margin-top: 12px;
}
@media (max-width: 834px) {
  .p-info__para {
    margin-top: 10px;
  }
}

.p-path__list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .p-path__list {
    flex-direction: column;
  }
}
.p-path__item {
  position: relative;
  width: 31.7%;
  margin-right: 2%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-path__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 56px;
  }
}
.p-path__item:nth-of-type(3n) {
  margin-right: 0;
}
.p-path__item::after {
  position: absolute;
  top: -28px;
  left: -20px;
  width: 56px;
  height: 56px;
  font-size: 2.6rem;
  line-height: 56px;
  color: var(--color-white);
  text-align: center;
  content: attr(data-num);
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .p-path__item::after {
    width: 48px;
    height: 48px;
    font-size: 2.4rem;
    line-height: 48px;
  }
}
@media (max-width: 834px) {
  .p-path__item::after {
    top: -16px;
    left: -16px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    line-height: 40px;
  }
}
.p-path__item:nth-of-type(odd)::after {
  background-color: var(--color-main02);
}
.p-path__item:nth-of-type(even)::after {
  background-color: var(--color-sub02);
}
.p-path__img {
  overflow: hidden;
  border-radius: 16px;
}
.p-path__text {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .p-path__text {
    font-size: 1.6rem;
  }
}