.p-maker-manual {
  padding: 50px 0 90px;
}
@media (max-width: 47.9375em) {
  .p-maker-manual {
    padding: 30px 0 0;
  }
}

.p-maker-manual__text {
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
@media (max-width: 47.9375em) {
  .p-maker-manual__text {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.p-maker-manual__link {
  margin-top: 30px;
  text-align: center;
}
.p-maker-manual__link a {
  transition: opacity 0.3s;
  text-decoration: underline;
}
@media not all and (max-width: 47.9375em) {
  .p-maker-manual__link a:hover {
    opacity: 0.7;
  }
}

.p-local-nav {
  margin-block: 48px 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background-color: #fff;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #b5cdf2;
  box-shadow: 3px 3px 0 rgba(92, 136, 201, 0.11);
}
@media (max-width: 47.9375em) {
  .p-local-nav {
    margin-block: 18px 30px;
    border-radius: 5px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-local-nav__item {
  text-align: center;
  border-left: 1px solid #b5cdf2;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
  text-align: center;
  position: relative;
  padding-block: 22px 42px;
}
@media (max-width: 47.9375em) {
  .p-local-nav__item {
    padding-block: 20px 28px;
    font-size: 1.5rem;
    font-weight: 500;
  }
}
.p-local-nav__item::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  border-bottom: solid 2px #6686ba;
  border-right: solid 2px #6686ba;
  width: 9px;
  height: 9px;
  content: "";
  transition: bottom 0.3s;
}
@media (max-width: 47.9375em) {
  .p-local-nav__item::after {
    bottom: 6px;
  }
}
.p-local-nav__item:first-child {
  border-left: 0;
}
@media (max-width: 47.9375em) {
  .p-local-nav__item:nth-child(3n+1) {
    border-left: 0;
  }
}
@media (max-width: 47.9375em) {
  .p-local-nav__item:nth-child(n+4) {
    border-top: 1px solid #b5cdf2;
  }
}
@media not all and (max-width: 47.9375em) {
  .p-local-nav__item:hover::after {
    bottom: 8px;
  }
}

.p-manual {
  border-radius: 10px;
  background-color: #ebf1f5;
  overflow: hidden;
}
@media (max-width: 47.9375em) {
  .p-manual {
    margin-inline: -15px;
    border-radius: 0;
  }
}
.p-manual + .p-manual {
  margin-top: 54px;
}
@media (max-width: 47.9375em) {
  .p-manual + .p-manual {
    margin-top: 8px;
  }
}

.p-manual__heading {
  background-color: #6686ba;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  padding: 12px;
}
@media (max-width: 47.9375em) {
  .p-manual__heading {
    font-size: 1.6rem;
    padding: 7px 15px;
    text-align: left;
  }
}

.p-manual__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  padding: 40px 60px;
  gap: 30px 40px;
}
@media (max-width: 47.9375em) {
  .p-manual__links {
    gap: 14px 17px;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 15px 30px;
  }
}

.p-manual__link {
  min-height: 100px;
  position: relative;
  display: grid;
  border-radius: 10px;
  background-color: #fff;
  grid-template-columns: 70px 1fr;
  align-items: center;
  box-shadow: 3px 3px 0 rgba(92, 136, 201, 0.11);
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.2941176471;
  color: #0a0a0a;
  transition: filter 0.3s;
  will-change: filter;
}
@media (max-width: 47.9375em) {
  .p-manual__link {
    grid-template-columns: 68px 1fr;
    min-height: 77px;
  }
}
.p-manual__link::before {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 3px solid #6685ba;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-manual__link::after {
  width: 13px;
  height: 12px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("/assets/images/components/icon_window.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media (max-width: 47.9375em) {
  .p-manual__link:first-child {
    grid-template-columns: 62px 1fr;
  }
}
.p-manual__link:hover {
  filter: drop-shadow(10px 10px 0 rgba(92, 136, 201, 0.11));
}
.p-manual__link:hover::before {
  opacity: 1;
}

.p-manual__link-img {
  text-align: center;
}