/* p-usage
---------------------------------------------------------------------------- */
.p-usage {
  padding-block: 8.5rem 10rem;
}

.p-usage-blocks {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.p-usage-block:not(:last-child) {
  padding-bottom: 6.5rem;
  border-bottom: 1px dashed currentColor;
}

.p-usage-block-ttl {
  font-size: 3.5rem;
  line-height: 1.4857142857;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.p-usage-block-txt {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-align: center;
  word-break: normal;
}

.p-usage-block-txtSmall {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
  margin-top: 1rem;
  word-break: normal;
}

.p-usage-block-items {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 4.5rem;
}

.p-usage-block-item-ttl {
  font-size: 2.5rem;
  line-height: 1.48;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.3rem;
}

.p-usage-block-item-txt {
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-align: center;
  word-break: normal;
}

.p-usage-block-item-txtSmall {
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-align: center;
  margin-top: 1.2rem;
  word-break: normal;
}

.p-usage-block-item-lists {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.5rem 4.5rem;
  max-width: 90rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.p-usage-block-item-list-link {
  display: inline;
  font-size: 1.9rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #09237d;
  text-align: center;
  text-decoration: underline;
  position: relative;
}
@media (any-hover: hover) {
  .p-usage-block-item-list-link:hover {
    text-decoration: none;
  }
  .p-usage-block-item-list-link:hover[target=_blank]::after {
    transform: translate(0.2rem, -0.2rem);
  }
}

.p-usage-block-item-list-link::after {
  content: "";
  display: inline-block;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: currentColor;
  margin-left: 0.5rem;
  margin-bottom: -1px;
  width: 2rem;
  aspect-ratio: 1;
}

.p-usage-block-item-list-link[target=_blank]::after {
  position: absolute;
  bottom: 1.2rem;
  right: -2.5rem;
  width: 0.9rem;
  margin: 0;
  mask-image: url("/assets/images/common/icn_arrow_external_arrow.svg");
  transition: all 0.2s;
}

.p-usage-block-item-list-link[href$=".pdf"]::after {
  bottom: 0.6rem;
  right: -1.8rem;
  translate: 50% 0;
  width: 2rem;
  height: 2rem;
  mask-image: url("/assets/images/common/icn_pdf.svg");
}

.p-usage-block-item-list-link:not([href$=".pdf"])[target=_blank]::before {
  position: absolute;
  bottom: 0.5rem;
  right: -2.8rem;
  content: "";
  display: inline-block;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: currentColor;
  width: 1.9rem;
  aspect-ratio: 1;
  mask-image: url("/assets/images/common/icn_arrow_external_circle.svg");
}

.p-usage-block-item-boxes {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 4rem;
}

.p-usage-block-item-box-ttl {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
}

.p-usage-block-item-box-txt {
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-align: center;
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  .p-usage {
    padding-block: 15.4666666667vw 21.3333333333vw;
  }
  .p-usage * {
    text-align: left;
  }
  .p-usage-blocks {
    gap: 10.6666666667vw;
  }
  .p-usage-block:not(:last-child) {
    padding-bottom: 9.8666666667vw;
  }
  .p-usage-block-ttl {
    font-size: 4.8vw;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 3.2vw;
  }
  .p-usage-block-txt {
    font-size: 4vw;
    line-height: 1.5;
  }
  .p-usage-block-txtSmall {
    font-size: 2.9333333333vw;
    margin-top: 1.8666666667vw;
  }
  .p-usage-block-items {
    gap: 8vw;
    margin-top: 8vw;
  }
  .p-usage-block-item-ttl {
    font-size: 4.5333333333vw;
    line-height: 1.4705882353;
    letter-spacing: normal;
    margin-bottom: 4vw;
  }
  .p-usage-block-item-txt {
    font-size: 4vw;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
  .p-usage-block-item-txtSmall {
    font-size: 2.9333333333vw;
    line-height: 1.6;
    margin-top: 2.6666666667vw;
  }
  .p-usage-block-item-lists {
    flex-direction: column;
    align-items: start;
    gap: 3.4666666667vw;
    max-width: initial;
    margin-top: 3.2vw;
  }
  .p-usage-block-item-list-link {
    font-size: 4.2666666667vw;
    line-height: 1.9;
  }
  .p-usage-block-item-list-link::after {
    margin-left: 1.3333333333vw;
    width: 4.5333333333vw;
  }
  .p-usage-block-item-list-link[target=_blank]::after {
    bottom: 2.6666666667vw;
    right: -6.1333333333vw;
    width: 2.4vw;
  }
  .p-usage-block-item-list-link[href$=".pdf"]::after {
    bottom: 1.3333333333vw;
    right: -4.8vw;
    width: 4.8vw;
    height: 4.8vw;
  }
  .p-usage-block-item-list-link:not([href$=".pdf"])[target=_blank]::before {
    bottom: 0.5333333333vw;
    right: -6.6666666667vw;
    width: 5.0666666667vw;
  }
  .p-usage-block-item-boxes {
    gap: 8vw;
    margin-top: 8vw;
  }
  .p-usage-block-item-box-ttl {
    font-size: 4.8vw;
    margin-bottom: 6.6666666667vw;
  }
  .p-usage-block-item-box-txt {
    font-size: 4.2666666667vw;
    line-height: 1.3;
    margin-top: 6.6666666667vw;
  }
}
