@charset "UTF-8";
.pst-panel {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 32px 5% 40px;
}
@media print, screen and (768px <= width) {
  .pst-panel {
    padding: 48px 48px 64px;
  }
}

.pst-head-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 1em;
  font-size: var(--font-size14);
  line-height: 1.8;
}
.pst-head-cat {
  display: inline-block;
  background-color: var(--color-lavender);
  border-radius: 1.2em;
  padding: 0.1em 1em;
}
@media (hover: hover) {
  .pst-head-cat {
    transition: color 0.3s, background-color 0.3s;
  }
  .pst-head-cat:hover {
    color: var(--color-white);
    background-color: var(--color-blue);
  }
}
.pst-head-date {
  font-family: var(--font-gothic-en);
  letter-spacing: 0.08em;
}
.pst-head-update {
  font-family: var(--font-gothic-en);
  letter-spacing: 0.08em;
  color: var(--color-gray04);
}
.pst-head-ttl {
  font-size: var(--font-size32);
  font-weight: 600;
  line-height: 1.6;
}

.pst-thumb-img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.pst-body-h2 {
  font-size: var(--font-size26);
  font-weight: 600;
  line-height: 1.6;
  border-style: solid;
  border-color: var(--color-red);
  border-width: 0 0 0 4px;
  padding: 0.1em 0 0.1em 0.6em;
  margin: 2.5em 0 0;
  scroll-margin-top: 72px;
}
@media print, screen and (768px <= width) {
  .pst-body-h2 {
    scroll-margin-top: 84px;
  }
}
@media print, screen and (992px <= width) {
  .pst-body-h2 {
    scroll-margin-top: 92px;
  }
}
.pst-body-h3 {
  font-size: var(--font-size22);
  font-weight: 600;
  line-height: 1.7;
  margin: 2em 0 0;
  scroll-margin-top: 72px;
}
@media print, screen and (768px <= width) {
  .pst-body-h3 {
    scroll-margin-top: 84px;
  }
}
@media print, screen and (992px <= width) {
  .pst-body-h3 {
    scroll-margin-top: 92px;
  }
}
.pst-body-h4 {
  font-size: var(--font-size18);
  font-weight: 600;
  line-height: 1.7;
  color: var(--color-blue);
  border-style: solid;
  border-color: var(--color-blue);
  border-width: 0 0 2px;
  padding: 0 0 0.3em;
  margin: 1.8em 0 0;
  scroll-margin-top: 72px;
}
@media print, screen and (768px <= width) {
  .pst-body-h4 {
    scroll-margin-top: 84px;
  }
}
@media print, screen and (992px <= width) {
  .pst-body-h4 {
    scroll-margin-top: 92px;
  }
}
.pst-body-toc {
  counter-reset: toc;
  background-color: var(--color-lavender);
  border-radius: 8px;
  padding: 1.3em 1.3em 1.5em;
  margin: 2em 0 0;
}
@media print, screen and (768px <= width) {
  .pst-body-toc {
    padding: 1.6em 1.8em 1.8em;
  }
}
.pst-body-toc-ttl {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  font-size: var(--font-size18);
  font-weight: 600;
  line-height: 1.6;
}
.pst-body-toc-icon {
  flex-shrink: 0;
  width: 1.1em;
  height: 1.1em;
  background-color: currentColor;
  mask: url(../img/icon/list.svg) no-repeat center/contain;
}
.pst-body-toc-item {
  margin: 0.6em 0 0;
}
.pst-body-toc-link {
  position: relative;
  display: block;
  line-height: 1.7;
  counter-increment: toc;
  padding: 0 0 0 1.8em;
}
@media (hover: hover) {
  .pst-body-toc-link {
    transition: color 0.3s;
  }
  .pst-body-toc-link:hover {
    color: var(--color-blue);
    text-decoration: underline;
  }
}
.pst-body-toc-link::before {
  content: counter(toc) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-gothic-en);
  font-weight: 600;
  color: var(--color-blue);
}
.pst-body-toc-link.ver-child {
  counter-increment: none;
  font-size: var(--font-size16);
  margin: 0 0 0 1.6em;
}
.pst-body-toc-link.ver-child::before {
  content: "–";
  color: var(--color-gray04);
}
.pst-body-desc {
  line-height: 2;
  margin: 1em 0 0;
}
.pst-body-link {
  color: var(--color-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .pst-body-link:hover {
    text-decoration: none;
  }
}
.pst-body-marker {
  display: inline;
  font-weight: 600;
  background: linear-gradient(transparent 62%, var(--color-yellow) 62%);
}
.pst-body-note {
  position: relative;
  font-size: var(--font-size14);
  line-height: 1.9;
  padding: 0 0 0 1.3em;
  margin: 1em 0 0;
}
.pst-body-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.pst-body-line {
  border-style: solid;
  border-color: var(--color-gray02);
  border-width: 1px 0 0;
  margin: 2.5em 0 0;
}
.pst-body-list {
  margin: 1em 0 0;
}
.pst-body-list-item {
  position: relative;
  padding: 0 0 0 1.2em;
  line-height: 1.9;
}
.pst-body-list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.pst-body-olist {
  counter-reset: olist;
  margin: 1em 0 0;
}
.pst-body-olist-item {
  position: relative;
  padding: 0 0 0 2em;
  line-height: 1.9;
  counter-increment: olist;
  margin: 0.5em 0 0;
}
.pst-body-olist-item::before {
  content: counter(olist);
  position: absolute;
  top: 0.4em;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7em;
  height: 1.7em;
  font-family: var(--font-gothic-en);
  font-size: var(--font-size14);
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-navy);
  border-radius: 50%;
}
.pst-body-check {
  margin: 1em 0 0;
}
.pst-body-check-item {
  position: relative;
  padding: 0 0 0 1.8em;
  line-height: 1.9;
  margin: 0.5em 0 0;
}
.pst-body-check-item::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 1.2em;
  height: 1.2em;
  background-color: var(--color-red);
  mask: url(../img/icon/check.svg) no-repeat center/contain;
}
.pst-body-dlist {
  counter-reset: dlist;
  margin: 1.5em 0 0;
}
@media print, screen and (768px <= width) {
  .pst-body-dlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 1.2em;
  }
}
@media print, screen and (992px <= width) {
  .pst-body-dlist {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pst-body-dlist-item {
  counter-increment: dlist;
  background-color: var(--color-lavender);
  border-radius: 8px;
  padding: 0.9em 1.2em 1.1em;
  margin: 0.8em 0 0;
}
@media print, screen and (768px <= width) {
  .pst-body-dlist-item {
    margin: 0;
  }
}
.pst-body-dlist-ttl {
  display: inline-block;
  font-size: var(--font-size14);
  font-weight: 600;
  line-height: 1.7;
  color: var(--color-blue);
  background-color: var(--color-white);
  border-radius: 4px;
  padding: 0.1em 0.7em;
}
.pst-body-dlist-ttl::before {
  content: counter(dlist, decimal-leading-zero);
  font-family: var(--font-gothic-en);
  margin: 0 0.5em 0 0;
}
.pst-body-dlist-txt {
  line-height: 1.9;
  margin: 0.5em 0 0;
}
.pst-body-step {
  counter-reset: step;
  margin: 2em 0 0;
}
.pst-body-step-item {
  position: relative;
  counter-increment: step;
  padding: 0 0 0 2.8em;
  margin: 1.6em 0 0;
}
.pst-body-step-item::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  font-family: var(--font-gothic-en);
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 50%;
}
.pst-body-step-item::after {
  content: "";
  position: absolute;
  top: 2.4em;
  bottom: -1.6em;
  left: 1em;
  width: 2px;
  background-color: var(--color-gray02);
  transform: translateX(-50%);
}
.pst-body-step-item:last-child::after {
  content: none;
}
.pst-body-step-ttl {
  font-size: var(--font-size18);
  font-weight: 600;
  line-height: 2;
  color: var(--color-blue);
}
.pst-body-step-txt {
  line-height: 1.9;
  margin: 0.3em 0 0;
}
.pst-body-code {
  overflow: hidden;
  background-color: var(--color-navy02);
  border-radius: 8px;
  margin: 2em 0 0;
}
.pst-body-code-name {
  display: block;
  font-family: var(--font-code);
  font-size: var(--font-size14);
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.6em 1.2em;
}
.pst-body-code-pre {
  overflow-x: auto;
  padding: 1.1em 1.2em;
  margin: 0;
}
.pst-body-code-src {
  display: block;
  font-family: var(--font-code);
  font-size: var(--font-size14);
  line-height: 1.8;
  letter-spacing: 0;
  white-space: pre;
  color: #e6e6f2;
}
.pst-body-inlinecode {
  font-family: var(--font-code);
  font-size: 0.92em;
  letter-spacing: 0;
  color: var(--color-red);
  background-color: var(--color-gray03);
  border-radius: 4px;
  padding: 0.15em 0.4em;
}
.pst-body-img {
  display: block;
  width: 100%;
  border-radius: 4px;
  margin: 2em 0 0;
}
.pst-body-fig {
  margin: 2em 0 0;
}
.pst-body-fig-img {
  display: block;
  width: 100%;
  border-radius: 4px;
}
.pst-body-fig-cap {
  display: block;
  font-size: var(--font-size14);
  line-height: 1.8;
  text-align: center;
  color: var(--color-gray04);
  margin: 0.8em 0 0;
}
.pst-body-chart {
  position: relative;
}
.pst-body-quote {
  position: relative;
  background-color: var(--color-lavender);
  border-radius: 8px;
  border-style: solid;
  border-color: var(--color-navy);
  border-width: 0 0 0 4px;
  padding: 1.5em 3.2em 1.4em 1.3em;
  margin: 2em 0 0;
}
@media print, screen and (768px <= width) {
  .pst-body-quote {
    padding: 1.6em 4em 1.5em 1.8em;
  }
}
.pst-body-quote::before {
  content: "";
  position: absolute;
  top: 1.2em;
  right: 1.2em;
  width: 1.6em;
  height: 1.6em;
  background-color: var(--color-gray05);
  mask: url(../img/icon/quote.svg) no-repeat center/contain;
}
.pst-body-quote-txt {
  line-height: 2;
}
.pst-body-quote-cite {
  display: block;
  font-size: var(--font-size14);
  font-style: normal;
  line-height: 1.8;
  color: var(--color-gray04);
  margin: 0.8em 0 0;
}
.pst-body-quote-link {
  color: var(--color-gray04);
  text-decoration: underline;
}
@media (hover: hover) {
  .pst-body-quote-link:hover {
    text-decoration: none;
  }
}
.pst-body-voice {
  margin: 2em 0 0;
}
@media print, screen and (768px <= width) {
  .pst-body-voice {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6em 1.4em;
  }
}
.pst-body-voice-item {
  position: relative;
  background-color: var(--color-lavender);
  border-radius: 12px;
  padding: 1.5em 1.4em 1.3em;
  margin: 1.6em 0 0;
}
@media print, screen and (768px <= width) {
  .pst-body-voice-item {
    margin: 0;
  }
}
.pst-body-voice-item::before {
  content: "";
  position: absolute;
  top: -0.7em;
  left: 1.1em;
  width: 1.8em;
  height: 1.8em;
  background-color: var(--color-yellow);
  mask: url(../img/icon/message-square-quote.svg) no-repeat center/contain;
}
.pst-body-voice-txt {
  line-height: 1.9;
}
.pst-body-voice-name {
  display: flex;
  align-items: center;
  gap: 0 0.4em;
  font-size: var(--font-size14);
  line-height: 1.6;
  color: var(--color-gray04);
  margin: 0.8em 0 0;
}
.pst-body-voice-icon {
  flex-shrink: 0;
  width: 1.4em;
  height: 1.4em;
  background-color: currentColor;
  mask: url(../img/icon/circle-user.svg) no-repeat center/contain;
}
.pst-body-box {
  position: relative;
  background-color: var(--color-white);
  border: 2px solid var(--color-blue);
  border-radius: 8px;
  padding: 1.4em 1.3em 1.2em;
  margin: 3em 0 0;
}
@media print, screen and (768px <= width) {
  .pst-body-box {
    padding: 1.5em 1.8em 1.4em;
  }
}
.pst-body-box.ver-note {
  border-color: var(--color-gray04);
}
.pst-body-box.ver-alert {
  border-color: var(--color-red);
}
.pst-body-box-ttl {
  position: absolute;
  top: 0;
  left: 1em;
  transform: translateY(-55%);
  display: flex;
  align-items: center;
  gap: 0 0.4em;
  font-size: var(--font-size14);
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 1.2em;
  padding: 0.15em 0.9em;
}
.pst-body-box-ttl.ver-note {
  background-color: var(--color-gray04);
}
.pst-body-box-ttl.ver-alert {
  background-color: var(--color-red);
}
.pst-body-box-icon {
  flex-shrink: 0;
  width: 1.1em;
  height: 1.1em;
  background-color: currentColor;
  mask: url(../img/icon/lightbulb.svg) no-repeat center/contain;
}
.pst-body-box-icon.ver-note {
  mask-image: url(../img/icon/info.svg);
}
.pst-body-box-icon.ver-alert {
  mask-image: url(../img/icon/triangle-alert.svg);
}
.pst-body-box-txt {
  line-height: 1.9;
  margin: 0;
}
.pst-body-qa {
  margin: 2em 0 0;
}
.pst-body-qa-item {
  border-style: solid;
  border-color: var(--color-gray02);
  border-width: 0 0 1px;
  padding: 0 0 1.4em;
  margin: 1.4em 0 0;
}
.pst-body-qa-item:last-child {
  border-width: 0;
  padding: 0;
}
.pst-body-qa-q {
  position: relative;
  font-size: var(--font-size18);
  font-weight: 600;
  line-height: 1.7;
  padding: 0 0 0 2em;
}
.pst-body-qa-q::before {
  content: "Q";
  position: absolute;
  top: 0.15em;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8em;
  height: 1.8em;
  font-family: var(--font-gothic-en);
  font-size: var(--font-size16);
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-navy);
  border-radius: 50%;
}
.pst-body-qa-a {
  position: relative;
  line-height: 1.9;
  padding: 0 0 0 2.4em;
  margin: 0.8em 0 0;
}
.pst-body-qa-a::before {
  content: "A";
  position: absolute;
  top: 0.1em;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8em;
  height: 1.8em;
  font-family: var(--font-gothic-en);
  font-size: var(--font-size16);
  font-weight: 500;
  color: var(--color-navy);
  background-color: var(--color-yellow);
  border-radius: 50%;
}
.pst-body-talk {
  display: flex;
  align-items: flex-start;
  gap: 0 0.9em;
  margin: 2em 0 0;
}
.pst-body-talk.ver-right {
  flex-direction: row-reverse;
  text-align: right;
}
.pst-body-talk-img {
  flex-shrink: 0;
  display: block;
  width: 3.6em;
  height: 3.6em;
  border-radius: 50%;
}
.pst-body-talk-icon {
  flex-shrink: 0;
  display: block;
  width: 3.6em;
  height: 3.6em;
  background-color: var(--color-gray05);
  mask: url(../img/icon/circle-user.svg) no-repeat center/contain;
}
.pst-body-talk-box {
  flex-grow: 1;
  min-width: 0;
}
.pst-body-talk-name {
  display: block;
  font-size: var(--font-size14);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-gray04);
}
.pst-body-talk-txt {
  position: relative;
  display: block;
  text-align: left;
  line-height: 1.9;
  background-color: var(--color-lavender);
  border-radius: 12px;
  padding: 0.9em 1.2em;
  margin: 0.4em 0 0;
}
.pst-body-talk-txt::before {
  content: "";
  position: absolute;
  top: 1em;
  left: -0.5em;
  border-style: solid;
  border-color: transparent var(--color-lavender) transparent transparent;
  border-width: 0.4em 0.5em 0.4em 0;
}
.pst-body-talk-txt.ver-right::before {
  left: auto;
  right: -0.5em;
  border-color: transparent transparent transparent var(--color-lavender);
  border-width: 0.4em 0 0.4em 0.5em;
}
.pst-body-tablebox {
  overflow-x: auto;
  margin: 2em 0 0;
}
.pst-body-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: var(--font-size16);
}
.pst-body-table.ver-sticky {
  min-width: 740px;
}
.pst-body-table-th {
  text-align: left;
  font-weight: 600;
  line-height: 1.7;
  white-space: nowrap;
  background-color: var(--color-lavender);
  border-style: solid;
  border-color: var(--color-gray02);
  border-width: 1px;
  padding: 0.8em 1em;
}
.pst-body-table-th.ver-sticky {
  position: sticky;
  left: 0;
  z-index: 1;
  white-space: normal;
  min-width: 7.5em;
  box-shadow: inset 0 -1px 0 var(--color-gray02), inset -1px 0 0 var(--color-gray02), 4px 0 6px -4px rgba(38, 38, 92, 0.25);
}
@media print, screen and (768px <= width) {
  .pst-body-table-th.ver-sticky {
    white-space: nowrap;
  }
}
.pst-body-table-td {
  line-height: 1.8;
  border-style: solid;
  border-color: var(--color-gray02);
  border-width: 1px;
  padding: 0.8em 1em;
}
.pst-body-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.5em;
  width: min(100%, 320px);
  min-height: 3.4em;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-navy);
  border-radius: 1.7em;
  padding: 0.6em 1.6em;
  margin: 2em auto 0;
}
@media (hover: hover) {
  .pst-body-btn {
    transition: opacity 0.3s;
  }
  .pst-body-btn:hover {
    opacity: 0.7;
  }
}
.pst-body-btn-icon {
  flex-shrink: 0;
  width: 1.1em;
  height: 1.1em;
  background-color: currentColor;
  mask: url(../img/icon/arrow-right.svg) no-repeat center/contain;
}
.pst-body-btn-icon.ver-blank {
  mask-image: url(../img/icon/external-link.svg);
}

.pst-raw h2 {
  font-size: var(--font-size26);
  font-weight: 600;
  line-height: 1.6;
  margin: 2.5em 0 0;
}
.pst-raw h3 {
  font-size: var(--font-size22);
  font-weight: 600;
  line-height: 1.7;
  margin: 2em 0 0;
}
.pst-raw h4 {
  font-size: var(--font-size18);
  font-weight: 600;
  line-height: 1.7;
  color: var(--color-blue);
  margin: 1.8em 0 0;
}
.pst-raw p {
  line-height: 2;
  margin: 1em 0 0;
}
.pst-raw ul {
  margin: 1em 0 0;
}
.pst-raw ol {
  list-style: decimal;
  margin: 1em 0 0;
  padding: 0 0 0 1.5em;
}
.pst-raw li {
  position: relative;
  padding: 0 0 0 1.2em;
  line-height: 1.9;
}
.pst-raw li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.pst-raw ol li {
  padding: 0;
}
.pst-raw ol li::before {
  content: none;
}
.pst-raw a {
  color: var(--color-red);
  text-decoration: underline;
}
.pst-raw img {
  display: block;
  margin: 2em 0 0;
}
.pst-raw strong {
  font-weight: 600;
}
.pst-raw hr {
  border-style: solid;
  border-color: var(--color-gray02);
  border-width: 1px 0 0;
  margin: 2.5em 0 0;
}
.pst-raw code {
  font-family: var(--font-code);
  font-size: 0.92em;
  letter-spacing: 0;
}
.pst-raw pre {
  overflow-x: auto;
  background-color: var(--color-navy02);
  border-radius: 8px;
  font-family: var(--font-code);
  font-size: var(--font-size14);
  line-height: 1.8;
  letter-spacing: 0;
  color: #e6e6f2;
  padding: 1.1em 1.2em;
  margin: 2em 0 0;
}
.pst-raw blockquote {
  background-color: var(--color-lavender);
  border-radius: 8px;
  border-style: solid;
  border-color: var(--color-navy);
  border-width: 0 0 0 4px;
  padding: 1.2em 1.3em;
  margin: 2em 0 0;
}
.pst-raw table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size16);
  margin: 2em 0 0;
}
.pst-raw th {
  text-align: left;
  font-weight: 600;
  background-color: var(--color-lavender);
  border-style: solid;
  border-color: var(--color-gray02);
  border-width: 1px;
  padding: 0.8em 1em;
}
.pst-raw td {
  border-style: solid;
  border-color: var(--color-gray02);
  border-width: 1px;
  padding: 0.8em 1em;
}

.pst-cta-row {
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-navy);
  border-radius: 20px;
  padding: 32px 5%;
}
@media print, screen and (768px <= width) {
  .pst-cta-row {
    padding: 40px 48px;
  }
}
.pst-cta-ttl {
  font-size: var(--font-size22);
  font-weight: 600;
  line-height: 1.6;
}
.pst-cta-txt {
  line-height: 1.9;
  margin: 0.8em 0 0;
}
.pst-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  height: 3.3em;
  font-size: var(--font-size16);
  font-weight: 600;
  color: var(--color-navy);
  background-color: var(--color-yellow);
  border-radius: 1.65em;
  margin: 1.6em auto 0;
}
@media (hover: hover) {
  .pst-cta-btn {
    transition: opacity 0.3s;
  }
  .pst-cta-btn:hover {
    opacity: 0.7;
  }
}

.pst-rate-row {
  text-align: center;
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 28px 5%;
}
@media print, screen and (768px <= width) {
  .pst-rate-row {
    padding: 32px 40px;
  }
}
.pst-rate-ttl {
  font-size: var(--font-size18);
  font-weight: 600;
  line-height: 1.6;
}
.pst-rate-btns {
  display: grid;
  grid-template-columns: 100%;
  justify-items: center;
  gap: 12px 0;
  margin: 1.2em 0 0;
}
@media print, screen and (768px <= width) {
  .pst-rate-btns {
    grid-template-columns: repeat(2, 240px);
    justify-content: center;
    gap: 0 16px;
  }
}
.pst-rate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 240px);
  height: 3.3em;
  font-size: var(--font-size16);
  color: var(--color-black02);
  background-color: var(--color-white);
  border-style: solid;
  border-color: var(--color-black02);
  border-width: 1px;
  border-radius: 1.65em;
  cursor: pointer;
}
@media (hover: hover) {
  .pst-rate-btn {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  }
  .pst-rate-btn:hover {
    color: var(--color-white);
    background-color: var(--color-navy);
    border-color: var(--color-navy);
  }
}
.pst-rate-thanks {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0 0.4em;
  font-size: var(--font-size16);
  font-weight: 500;
  line-height: 1.6;
}
.pst-rate-thanks-icon {
  flex-shrink: 0;
  width: 1.2em;
  height: 1.2em;
  background-color: var(--color-blue);
  mask: url(../img/icon/check.svg) no-repeat center/contain;
}
.pst-rate.answered .pst-rate-ttl,
.pst-rate.answered .pst-rate-btns {
  display: none;
}
.pst-rate.answered .pst-rate-thanks {
  display: flex;
}

.pst-nav-row {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px 0;
}
@media print, screen and (768px <= width) {
  .pst-nav-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 4%;
  }
}
.pst-nav-prev, .pst-nav-next {
  display: block;
  font-size: var(--font-size14);
  line-height: 1.8;
}
@media (hover: hover) {
  .pst-nav-prev, .pst-nav-next {
    transition: opacity 0.3s;
  }
  .pst-nav-prev:hover, .pst-nav-next:hover {
    opacity: 0.7;
  }
}
@media print, screen and (768px <= width) {
  .pst-nav-next {
    text-align: right;
  }
}
.pst-nav-label {
  display: block;
  font-family: var(--font-gothic-en);
  letter-spacing: 0.08em;
  color: var(--color-gray);
}
.pst-nav-ttl {
  display: block;
  font-size: var(--font-size16);
  font-weight: 500;
  line-height: 1.7;
  margin: 0.3em 0 0;
}
.pst-nav-blank {
  display: none;
}
@media print, screen and (768px <= width) {
  .pst-nav-blank {
    display: block;
  }
}

.pst-relate-ttl {
  font-size: var(--font-size18);
  font-weight: 600;
  line-height: 1.6;
}
.pst-relate-row {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px 0;
}
@media print, screen and (768px <= width) {
  .pst-relate-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 4%;
  }
}
.pst-relate-link {
  display: block;
}
@media (hover: hover) {
  .pst-relate-link {
    transition: opacity 0.3s;
  }
  .pst-relate-link:hover {
    opacity: 0.7;
  }
}
.pst-relate-img {
  display: block;
  width: 100%;
  border-radius: 6px;
}
.pst-relate-date {
  display: block;
  font-family: var(--font-gothic-en);
  font-size: var(--font-size14);
  letter-spacing: 0.08em;
  color: var(--color-gray);
  margin: 0.8em 0 0;
}
.pst-relate-name {
  display: block;
  font-size: var(--font-size14);
  font-weight: 500;
  line-height: 1.7;
  margin: 0.3em 0 0;
}

.pst-notfound {
  text-align: center;
}
.pst-notfound-en {
  font-family: var(--font-gothic-en);
  font-size: var(--font-size14);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray04);
}
.pst-notfound-ttl {
  font-size: var(--font-size32);
  font-weight: 700;
  line-height: 1.5;
}
.pst-notfound-desc {
  line-height: 2;
}
