@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap");
:root {
  --background-color:#fff;
  --main-color:#0060ab;
  --text-color:#333;
  --inverse-text-color:#fff;
  --content-width:clamp(20rem, calc(max(100vw, 100%) - 2.5rem), 86.25rem);
  --font-size-h1:3rem;
  --font-size-h2:2.25rem;
  --font-size-h3:1.875rem;
  --font-size-h4:1.375rem;
  --font-size-h5:1.25rem;
  --font-size-h6:1rem;
  --font-size-p:1rem;
  --font-size-sm:0.875rem;
  --font-size-xsm:0.75rem;
  --article-padding-top:7.5rem;
  --article-padding-bottom:7.5rem;
}
@media (max-width:640px) {
  :root {
    --font-size-h1:2.5rem;
    --font-size-h2:1.8rem;
    --font-size-h3:1.5rem;
    --font-size-p:1.154rem;
    --font-size-sm:1rem;
    --font-size-xsm:0.9rem;
    --article-padding-top:5rem;
    --article-padding-bottom:5rem;
  }
}
.st_page_header {
  background-image: url("/common/img/bg_page_header.png");
  background-size: cover;
  background-position: center;
}
.st_page_header > h1 {
  width: var(--content-width, auto);
  padding: 3rem 0rem;
  margin-inline: auto;
  font-size: var(--font-size-h1, 3rem);
  line-height: 1.5em;
  letter-spacing: 0.15em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
}
.st_page_header > h1 > small {
  display: inline-block;
  margin-left: 1em;
  font-size: 0.5em;
}
.rtf-heading {
  display: block;
  margin: 0.5em auto 0.2em;
  font-size: 1.25em;
  font-weight: 700;
  color: var(--main-color, #0060ab);
}
.rtf-annotation {
  display: block;
  position: relative;
  padding-left: 1.5em;
  margin: 0.5em 0rem;
  font-size: var(--font-size-sm, 0.75rem);
  line-height: 1.5em;
}
.rtf-annotation::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0rem;
  left: 0rem;
}
.rtf-ul {
  margin: 1rem 0rem;
}
.rtf-ul__li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.25em;
  line-height: 1.5em;
}
.rtf-ul__li::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0.6em;
  left: 0rem;
  border-radius: 50%;
  background-color: var(--main-color, #0060ab);
}
.rtf-ol {
  counter-reset: list;
}
.rtf-ol__li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  word-break: break-all;
}
.rtf-ol__li::before {
  counter-increment: list;
  content: counter(list,decimal) ".";
  display: block;
  position: absolute;
  top: 0rem;
  left: 0rem;
}
.rtf-dl {
  margin: 1rem 0rem;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  grid-gap: 0rem 0.5rem;
}
.rtf-notes {
  margin: 1em auto;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  grid-gap: 0rem 0.5em;
  font-size: 0.8em;
}
.rtf-listed {
  margin: 1em auto;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  grid-gap: 0rem 0.5em;
}
.rtf-link {
  text-decoration-line: underline;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.rtf-link.is-link-pdf::after {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-left: 0.25em;
  background-image: url("../img/icon_pdf.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  vertical-align: -0.2em;
}
.rtf-link.is-link-external::after {
  content: "select_window_2";
  display: inline-block;
  margin-left: 0.1em;
  font-family: "Material Symbols Outlined";
}
.rtf-link:hover {
  color: var(--main-color, #0060ab);
}
.rtf-em {
  color: var(--main-color, #0060ab);
}
.rtf-stronger {
  font-weight: 700;
  color: var(--main-color, #0060ab);
}
.rtf-small {
  font-size: 0.8em;
}
.rtf-sup {
  font-size: 0.6em;
  vertical-align: 0.4em;
}
.rtf-image {
  display: inline-block;
  width: auto;
  height: 1.25em;
  margin: 0rem 0.1em;
  vertical-align: -0.2em;
}
.st_accordion {
  margin: 2.5rem 0rem;
}
.st_accordion_button {
  position: relative;
  padding: 1rem;
  padding-right: 2.5rem;
  border-radius: 0.5rem;
  background-color: #DFEFFB;
  font-size: var(--font-size-ui, 1.125rem);
  line-height: 1.75em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-feature-settings: "palt" on;
  word-break: keep-all;
  cursor: pointer;
}
.st_accordion_button::before, .st_accordion_button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto;
  margin-right: 1rem;
  height: 0.125rem;
  width: 1.25rem;
  background-color: var(--main-color, #0060ab);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  transform: -webkit- rotateZ(360deg);
  transform: rotateZ(360deg);
}
.st_accordion_button:not([aria-expanded="true"])::before {
  transform: -webkit- rotateZ(270deg);
  transform: rotateZ(270deg);
}
.st_accordion_button:not([aria-expanded="true"])::after {
  transform: -webkit- rotateZ(180deg);
  transform: rotateZ(180deg);
}
.st_accordion_button:focus-visible {
  outline-style: solid;
  outline-width: 0.25rem;
  outline-color: var(--focus-color, #e0f7ff);
}
.st_accordion_panel {
  height: calc(var(--panel-height,0) * 1px);
  overflow: hidden;
  visibility: visible;
  font-size: var(--font-size-ui, 1.125rem);
  font-family: "BIZ UDPGothic", sans-serif;
  -webkit-transition: height 0.4s, visibility 0s;
  transition: height 0.4s, visibility 0s;
}
.st_accordion_panel[aria-hidden="true"] {
  visibility: hidden;
  -webkit-transition: height 0.4s, visibility 0s 0.4s;
  transition: height 0.4s, visibility 0s 0.4s;
}
.st_article {
  padding: var(--article-padding-top, 10rem) 0rem var(--article-padding-bottom, 10rem);
}
.st_article[data-bg="white"] {
  background: #FFF;
}
.st_article[data-bg="aqua"] {
  background: #d4e7ed;
}
.st_article[data-bg="gray"] {
  background: #f8f8f8;
}
.st_article[data-bg="blue"] {
  background: #0063be;
}
.st_article_header {
  margin-bottom: 3.125rem;
  text-align: center;
}
.st_article_header::after {
  content: attr(data-en-text);
  display: block;
  font-size: var(--font-size-h4, 1.5rem);
  line-height: 1em;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--main-color, #0060ab);
}
.st_article_heading {
  font-size: var(--font-size-h3, 2rem);
  line-height: 1.5em;
}
.st_article > :first-child > :first-child {
  --heading-margin-top:0;
}
.st_breadcrumbs ul {
  width: var(--content-width, auto);
  padding-top: 1rem;
  margin-inline: auto;
  letter-spacing: -0.4em;
  color: var(--text-color, #333);
}
.st_breadcrumbs ul li {
  display: inline-block;
  letter-spacing: normal;
  white-space: nowrap;
}
.st_breadcrumbs ul li:not(:first-child) {
  position: relative;
}
.st_breadcrumbs ul li:not(:first-child)::before {
  position: absolute;
  display: block;
  box-sizing: border-box;
  content: "";
  left: 0;
  overflow: hidden;
  transform: rotate(45deg) perspective(0);
}
.st_breadcrumbs ul li a {
  color: var(--text-color, #333);
}
@media (max-width:640px) {
  .st_breadcrumbs {
    width: inherit !important;
    padding: 0;
    overflow-x: auto;
  }
  .st_breadcrumbs::-webkit-scrollbar {
    height: 2px;
  }
  .st_breadcrumbs::-webkit-scrollbar-track {
    border-radius: 2px;
    background: #eee;
  }
  .st_breadcrumbs::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
  }
  .st_breadcrumbs ul {
    padding-top: 1em;
    white-space: nowrap;
  }
  .st_breadcrumbs ul li:not(:first-child) {
    padding-left: 14px;
  }
  .st_breadcrumbs ul li:not(:first-child)::before {
    top: calc((1.5em - 6px)/2);
    width: 6px;
    height: 6px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-width: 0.09375rem;
    border-right-width: 0.09375rem;
    border-top-color: var(--main-color, #0060ab);
    border-right-color: var(--main-color, #0060ab);
  }
}
@media (min-width:640px) {
  .st_breadcrumbs {
    font-size: 0.875rem;
    font-family: "BIZ UDPGothic", sans-serif;
  }
  .st_breadcrumbs ul li:not(:first-child) {
    margin-left: 10px;
    padding-left: 16px;
  }
  .st_breadcrumbs ul li:not(:first-child)::before {
    top: calc((1.75em - 5px)/2);
    width: 0.3125rem;
    height: 0.3125rem;
    border-top-style: solid;
    border-right-style: solid;
    border-top-width: 0.125rem;
    border-right-width: 0.125rem;
    border-top-color: var(--main-color, #0060ab);
    border-right-color: var(--main-color, #0060ab);
  }
}
.st_button {
  display: block;
  position: relative;
  padding: 0.625rem 3rem 0.625rem 1rem;
  min-width: fit-content;
  max-width: 20rem;
  width: auto;
  margin-inline: auto;
  align-content: center;
  background-color: var(--main-color, #0060ab);
  border-style: solid;
  border-width: 0.0625rem;
  border-color: var(--main-color, #0060ab);
  border-radius: 3rem;
  text-align: center;
  font-size: var(--font-size-ui, 1.125rem);
  line-height: 1.5em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: var(--inverse-text-color, #fff);
  font-feature-settings: "palt" on;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.st_button:focus-visible {
  outline-style: solid;
  outline-width: 0.125rem;
  outline-color: var(--focus-color, #e0f7ff);
}
.st_button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto;
  margin-right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  box-sizing: border-box;
  background-image: url("/common/img/icon_chevron_wht.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.st_button[target="_blank"]::after {
  background-image: url("/common/img/icon_copy_wht.svg");
}
.st_button[href$=".pdf" i]::after {
  background-image: url("/common/img/icon_pdf_wht.svg");
}
.st_button:hover {
  background-color: var(--inverse-text-color, #fff);
  color: var(--main-color, #0060ab);
  text-decoration: none;
}
.st_button:hover::after {
  background-image: url("/common/img/icon_chevron.svg");
}
.st_button:hover[target="_blank"]::after {
  background-image: url("/common/img/icon_copy.svg");
}
.st_button:hover[href$=".pdf" i]::after {
  background-image: url("/common/img/icon_pdf.svg");
}
.st_button.is-large {
  padding: 1.5rem 3rem 1.5rem 1rem;
}
.st_button.is-white {
  background-color: var(--inverse-text-color, #fff);
  border-color: var(--main-color, #0060ab);
  color: var(--main-color, #0060ab);
}
.st_button.is-white::after {
  background-image: url("/common/img/icon_chevron.svg");
}
.st_button.is-white[target="_blank"]::after {
  background-image: url("/common/img/icon_copy.svg");
}
.st_button.is-white[href$=".pdf" i]::after {
  background-image: url("/common/img/icon_pdf.svg");
}
.st_button.is-white:hover {
  background-color: var(--focus-color, #e0f7ff);
  border-color: var(--main-color, #0060ab);
  color: var(--main-color, #0060ab);
}
.st_button.is-lightgray {
  padding: 0.625rem 2.5rem;
  background-color: var(--light-gray-color, #DFEFFB);
  border-color: transparent;
  border-radius: 0.5rem;
  color: var(--main-color, #0060ab);
}
.st_button.is-lightgray::after {
  margin-right: 0.5rem;
  background-image: url("/common/img/icon_chevron.svg");
}
.st_button.is-lightgray[target="_blank"]::after {
  background-image: url("/common/img/icon_copy.svg");
}
.st_button.is-lightgray[href$=".pdf" i]::after {
  background-image: url("/common/img/icon_pdf.svg");
}
.st_button.is-lightgray:hover {
  background-color: var(--main-color, #0060ab);
  border-color: var(--main-color, #0060ab);
  color: var(--inverse-text-color, #fff);
}
.st_button.is-lightgray:hover::after {
  background-image: url("/common/img/icon_chevron_wht.svg");
}
.st_button.is-lightgray:hover[target="_blank"]::after {
  background-image: url("/common/img/icon_copy_wht.svg");
}
.st_button.is-lightgray:hover[href$=".pdf" i]::after {
  background-image: url("/common/img/icon_pdf_wht.svg");
}
.st_buttons {
  margin: 1.25rem auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 2.5rem;
}
.st_buttons:has(:nth-child(4)) {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 2rem;
}
.st_buttons > li {
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 20rem;
}
.st_contents_buttons {
  margin: 1.25rem auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 2.5rem;
}
.st_contents_buttons > li {
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 21.875rem;
}
.st_contents_buttons .button {
  position: relative;
  padding: 0.625rem 2.5rem;
  margin-inline: auto;
  align-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background-color: var(--light-gray-color, #DFEFFB);
  border-style: none;
  border-radius: 0.5rem;
  text-align: center;
  font-size: var(--font-size-ui, 1.125rem);
  line-height: 1.5em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: var(--main-color, #0060ab);
  font-feature-settings: "palt" on;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.st_contents_buttons .button > .text {
  display: block;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}
.st_contents_buttons .button > .icon {
  display: block;
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 5rem;
  height: 5rem;
  overflow: hidden;
  font-size: 5rem;
  line-height: 1em;
  font-weight: 300;
  font-family: "Material Symbols Outlined";
}
.st_contents_buttons .button:focus-visible {
  outline-style: solid;
  outline-width: 0.125rem;
  outline-color: var(--focus-color, #e0f7ff);
}
.st_contents_buttons .button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto;
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  box-sizing: border-box;
  background-image: url("/common/img/icon_chevron.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.st_contents_buttons .button[target="_blank"]::after {
  background-image: url("/common/img/icon_copy.svg");
}
.st_contents_buttons .button[href$=".pdf" i]::after {
  background-image: url("/common/img/icon_pdf.svg");
}
.st_contents_buttons .button:hover {
  background-color: var(--main-color, #0060ab);
  border-color: var(--main-color, #0060ab);
  color: var(--inverse-text-color, #fff);
  text-decoration: none;
}
.st_contents_buttons .button:hover::after {
  background-image: url("/common/img/icon_chevron_wht.svg");
}
.st_contents_buttons .button:hover[target="_blank"]::after {
  background-image: url("/common/img/icon_copy_wht.svg");
}
.st_contents_buttons .button:hover[href$=".pdf" i]::after {
  background-image: url("/common/img/icon_pdf_wht.svg");
}
.st_defs {
  margin: 1.5em auto;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 0.5em;
  text-align: left;
  font-size: var(--font-size-p, 1rem);
  font-family: "BIZ UDPGothic", sans-serif;
  color: var(--text-color, #333);
}
.st_defs > dt {
  font-weight: 700;
}
.st_defs > dd {
  padding-left: 1em;
}
@media (max-width:640px) {
  .st_defs > dd {
    margin-bottom: 1em;
  }
}
@media (min-width:640px) {
  .st_defs {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
  }
}
.st_frame {
  padding: 1em;
  margin: 2em auto;
  border-style: solid;
  border-width: 0.0625rem;
  border-color: var(--gray-color, #999);
}
@media (min-width:640px) {
  .st_frame {
    padding: 1em 2em;
  }
}
.st_frame[data-bg="white"] {
  background: #FFF;
}
.st_frame[data-bg="aqua"] {
  background: #DFEFFB;
}
.st_frame[data-bg="gray"] {
  background: #f8f8f8;
}
.st_frame[data-bg="blue"] {
  background: #0063be;
}
.st_grid {
  width: var(--content-width, auto);
  margin: 5rem auto;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(32.5rem, 100%), 1fr));
  grid-gap: 5rem;
}
@media (max-width:640px) {
  .st_grid {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    grid-gap: 2.5rem;
  }
}
.st_grid.has-columns-3 {
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
  grid-gap: 3.75rem;
}
@media (max-width:640px) {
  .st_grid.has-columns-3 {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    grid-gap: 2.5rem;
  }
}
.st_grid.has-columns-4 {
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(18.75rem, 100%), 1fr));
  grid-gap: 2.5rem;
}
.st_grid > * {
  --content-width:100%;
}
.st_grid > * > :first-child {
  --heading-margin-top:0;
}
.st_grid.is-stina {
  margin: 0rem auto;
}
.st_grid.has-margin-small {
  margin: 2.5rem auto;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-gap: 1.25rem 2.5rem;
}
@media (max-width:640px) {
  .st_grid.has-margin-small {
    margin: 1.25rem auto;
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    grid-gap: 0.625rem 1.25rem;
  }
}
.st_grid_buttons {
  padding: 2rem 0.5rem;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 2rem 2.5rem;
}
@media (min-width:640px) {
  .st_grid_buttons {
    padding: 2rem;
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .st_grid_buttons.has-columns-1 {
    width: fit-content;
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .st_grid_buttons.has-columns-3 {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width:640px) {
  .st_grid_buttons.has-auto-flow-column {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    -ms-grid-rows: repeat(calc(round(up,var(--count) / 2)), 1fr);
    grid-template-rows: repeat(calc(round(up,var(--count) / 2)), 1fr);
  }
  .st_grid_buttons.has-auto-flow-column.has-columns-3 {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    -ms-grid-rows: repeat(calc(round(up,var(--count) / 3)), 1fr);
    grid-template-rows: repeat(calc(round(up,var(--count) / 3)), 1fr);
  }
}
.st_grid_buttons .button {
  display: block;
  position: relative;
  padding: 0.25rem 4rem 0.25rem 2rem;
  min-height: 4rem;
  height: auto;
  margin: 0rem auto;
  align-content: center;
  background-color: var(--inverse-text-color, #fff);
  border-style: solid;
  border-width: 0.0625rem;
  border-color: var(--main-color, #0060ab);
  border-radius: 2rem;
  text-align: left;
  font-size: var(--font-size-ui, 1.125rem);
  line-height: 1.5em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: var(--main-color, #0060ab);
  font-feature-settings: "palt" on;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.st_grid_buttons .button:focus-visible {
  outline-style: solid;
  outline-width: 0.125rem;
  outline-color: var(--focus-color, #e0f7ff);
}
.st_grid_buttons .button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto;
  margin-right: 1rem;
  width: 2rem;
  height: 2rem;
  box-sizing: border-box;
  background-image: url("/common/img/icon_chevron.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.st_grid_buttons .button[target="_blank"]:not([href*=".pdf" i])::after {
  background-image: url("/common/img/icon_copy.svg");
}
.st_grid_buttons .button[href*=".pdf" i] {
  padding: 0.25rem 4rem 0.25rem 4.5rem;
}
.st_grid_buttons .button[href*=".pdf" i]::before {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto;
  margin-left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  box-sizing: border-box;
  background-image: url("/common/img/icon_pdf.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.st_grid_buttons .button:hover {
  background-color: var(--main-color, #0060ab);
  color: var(--inverse-text-color, #fff);
  text-decoration: none;
}
.st_grid_buttons .button:hover::after {
  background-image: url("/common/img/icon_chevron_wht.svg");
}
.st_grid_buttons .button:hover[target="_blank"]:not([href*=".pdf" i])::after {
  background-image: url("/common/img/icon_copy_wht.svg");
}
.st_grid_buttons .button:hover[href*=".pdf" i]::before {
  background-image: url("/common/img/icon_pdf_wht.svg");
}
.st_heading_2, .st_heading_3, .st_heading_4, .st_heading_5 {
  width: var(--content-width, auto);
  margin-inline: auto;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt" on;
}
.st_heading_2 small, .st_heading_3 small, .st_heading_4 small, .st_heading_5 small {
  font-size: 0.75em;
}
.st_heading_2:has(+ .st_heading_caption), .st_heading_3:has(+ .st_heading_caption), .st_heading_4:has(+ .st_heading_caption), .st_heading_5:has(+ .st_heading_caption) {
  margin-bottom: 0em;
}
.st_heading_2:has(+ .st_heading_date), .st_heading_3:has(+ .st_heading_date), .st_heading_4:has(+ .st_heading_date), .st_heading_5:has(+ .st_heading_date) {
  margin-bottom: 1rem;
}
.st_heading_2 + .st_heading_caption, .st_heading_2 + .st_heading_date, .st_heading_3 + .st_heading_caption, .st_heading_3 + .st_heading_date, .st_heading_4 + .st_heading_caption, .st_heading_4 + .st_heading_date, .st_heading_5 + .st_heading_caption, .st_heading_5 + .st_heading_date {
  margin-bottom: 1.5rem;
}
.st_heading_2 {
  padding-bottom: 0.5rem;
  margin: var(--heading-margin-top, 8rem) auto 1.875rem;
  border-bottom-style: solid;
  border-bottom-width: 0.1875rem;
  border-bottom-color: var(--main-color, #0060ab);
  font-size: var(--font-size-h2, 2.375rem);
  line-height: 1.5em;
  letter-spacing: 0.075em;
}
@media (max-width:640px) {
  .st_heading_2 {
    margin: var(--heading-margin-top, 4rem) auto 1.25rem;
  }
}
.st_heading_2 + .st_heading_caption, .st_heading_2 + .st_heading_date {
  margin-bottom: 2.5rem;
}
@media (max-width:640px) {
  .st_heading_2 + .st_heading_caption, .st_heading_2 + .st_heading_date {
    margin-bottom: 1.5rem;
  }
}
.st_heading_3 {
  padding-left: 1rem;
  margin: var(--heading-margin-top, 5rem) auto 1.25rem;
  border-left-style: solid;
  border-left-width: 0.1875rem;
  border-left-color: var(--main-color, #0060ab);
  font-size: var(--font-size-h3, 2rem);
  line-height: 1.5em;
  letter-spacing: 0.075em;
}
@media (max-width:640px) {
  .st_heading_3 {
    margin: var(--heading-margin-top, 3rem) auto 1rem;
  }
}
.st_heading_3 + .st_heading_caption, .st_heading_3 + .st_heading_date {
  margin-bottom: 1.5rem;
}
@media (max-width:640px) {
  .st_heading_3 + .st_heading_caption, .st_heading_3 + .st_heading_date {
    margin-bottom: 1.25rem;
  }
}
.st_heading_4 {
  padding: 0.25rem 1rem;
  margin: var(--heading-margin-top, 4rem) 0rem 1.25rem;
  background-color: var(--light-gray-color, #DFEFFB);
  border-radius: 0.5rem;
  font-size: var(--font-size-h4, 1.5rem);
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.st_heading_4 + .st_heading_caption, .st_heading_4 + .st_heading_date {
  margin-bottom: 1.5rem;
}
.st_heading_5 {
  width: fit-content;
  padding-bottom: 0.25rem;
  margin: var(--heading-margin-top, 3rem) 0rem 1.25rem;
  border-bottom-style: solid;
  border-bottom-width: 0.0625rem;
  font-size: var(--font-size-h5, 1.25rem);
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.st_heading_5 + .st_heading_caption, .st_heading_5 + .st_heading_date {
  margin-bottom: 1.5rem;
}
.st_heading_caption {
  position: relative;
  width: var(--content-width, auto);
  margin-top: 0.5rem;
  margin-inline: auto;
  padding-left: 1.25em;
  font-size: var(--font-size-sm, 0.875rem);
  line-height: 1.5em;
  font-family: "BIZ UDPGothic", sans-serif;
  color: var(--text-color, #333);
}
.st_heading_caption::before {
  content: "※";
  display: block;
  position: absolute;
  left: 0rem;
  right: 0rem;
}
.st_heading_date {
  width: var(--content-width, auto);
  margin-top: 0.5rem;
  margin-inline: auto;
  text-align: right;
  font-size: var(--font-size-sm, 0.875rem);
  line-height: 1.5em;
  font-family: "BIZ UDPGothic", sans-serif;
  color: var(--text-color, #333);
}
.st_image {
  margin: 2.5rem auto;
  width: min(var(--container-width, 100%), var(--image-width));
}
.st_image img, .st_image iframe, .st_image video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.st_image .caption {
  display: block;
  margin-top: 0.5em;
  font-size: var(--font-size-sm, 0.875rem);
  font-family: "BIZ UDPGothic", sans-serif;
}
.st_index {
  margin: 2.5rem auto;
}
.st_index > li + li {
  margin-top: 0.5em;
}
.st_index > li > a {
  display: block;
  position: relative;
  padding-left: 1em;
  font-size: var(--font-size-h4, 1.5rem);
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-family: "BIZ UDPGothic", sans-serif;
  color: var(--text-color, #333);
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.st_index > li > a::before {
  content: "";
  position: absolute;
  left: 0rem;
  top: 0.5em;
  width: 0.25em;
  height: 0.5em;
  background-color: var(--main-color, #0060ab);
  clip-path: polygon(0% 0%, calc(100% - 100%) 0%, 100% 50%, calc(100% - 100%) 100%, 0% 100%);
}
.st_index > li > a[target="_blank"]::after {
  content: "";
  display: inline-block;
  margin-left: 0.25em;
  width: 1em;
  height: 1em;
  box-sizing: border-box;
  background-image: url("/common/img/icon_copy.svg");
  background-size: cover;
  background-position: center;
}
.st_index > li > a:hover {
  color: var(--main-color, #0060ab);
  border-bottom-color: var(--main-color, #0060ab);
}
.st_index.is-size-small > li > a {
  font-size: var(--font-size-p, 1rem);
}
.st_links {
  margin: 2rem auto;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
  grid-gap: 2.5rem;
}
.st_links > li > a {
  display: block;
  position: relative;
  padding: 0rem 1em 0.65em 0rem;
  border-bottom-style: solid;
  border-bottom-width: 0.0625rem;
  border-bottom-color: var(--gray-color, #999);
  font-size: var(--font-size-h4, 1.5rem);
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "BIZ UDPGothic", sans-serif;
  color: var(--text-color, #333);
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.st_links > li > a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.3em;
  top: 0rem;
  width: 1.5em;
  height: 1.5em;
  background-image: url("/common/img/icon_chevron.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width:640px) {
  .st_links > li > a::after {
    right: 0.1em;
    width: 1em;
  }
}
.st_links > li > a:hover {
  color: var(--main-color, #0060ab);
  border-bottom-color: var(--main-color, #0060ab);
}
.st_links > li > a:hover::after {
  right: 0rem;
}
.st_links.is-size-small {
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(18.75rem, 100%), 1fr));
  grid-gap: 1.5rem;
}
@media (max-width:640px) {
  .st_links.is-size-small {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem 0.75rem;
  }
}
.st_links.is-size-small > li > a {
  font-size: var(--font-size-ui, 1.125rem);
}
.st_list {
  margin: 1em auto;
}
.st_list > li {
  position: relative;
  padding-left: 1em;
  font-size: var(--font-size-p, 1rem);
  line-height: 2em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-feature-settings: "palt" on;
}
.st_list > li + .st_list > li {
  margin-top: 1em;
}
.st_list > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0rem;
  top: 0.75em;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--main-color, #0060ab);
  border-radius: 50%;
}
.st_list > li > ul > li {
  position: relative;
  padding-left: 1em;
}
.st_list > li > ul > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0rem;
  top: 0.95em;
  width: 0.5em;
  height: 0.15em;
  background-color: var(--main-color, #0060ab);
}
.st_media_text {
  margin: 2.5rem auto;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(32.5rem, 100%), 1fr));
  grid-gap: 2.5rem 5rem;
}
.st_media_text.has-image-right > .image {
  order: 2;
}
.st_media_text > .image img, .st_media_text > .image iframe, .st_media_text > .image video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.st_media_text > .image .caption {
  display: block;
  margin-top: 0.5em;
  font-size: var(--font-size-sm, 0.875rem);
  font-family: "BIZ UDPGothic", sans-serif;
}
.st_media_text > .texts {
  --content-width:100%;
}
.st_menu {
  margin: 2.5rem auto;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
  grid-gap: 2.5rem;
}
@media (max-width:640px) {
  .st_menu {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
  }
}
.st_menu > li > a {
  text-decoration: none;
}
.st_menu > li > a > .image {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1.75;
  overflow: hidden;
  border-radius: 0.5rem;
}
.st_menu > li > a > .image > img {
  display: block;
  width: 100%;
  height: auto;
  object-position: center;
  object-fit: cover;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  transform: -webkit- scale(1);
  transform: scale(1);
}
.st_menu > li > a > .text {
  display: block;
  position: relative;
  padding: 0rem 1.5rem 1rem 0rem;
  margin: 1rem auto;
  border-bottom-style: solid;
  border-bottom-width: 0.0625rem;
  border-bottom-color: var(--gray-color, #999);
  font-size: var(--font-size-ui, 1.125rem);
  line-height: 1.5em;
  font-weight: 700;
  font-family: "BIZ UDPGothic", sans-serif;
  color: var(--text-color, #333);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.st_menu > li > a > .text::after {
  content: "";
  display: block;
  position: absolute;
  right: 0rem;
  top: -0.25rem;
  width: 2rem;
  height: 2rem;
  background-image: url("/common/img/icon_chevron.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  transform: -webkit- translateX(0rem);
  transform: translateX(0rem);
}
.st_menu > li:hover > a > .image > img {
  transform: -webkit- scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 3s;
  transition: 3s;
}
.st_menu > li:hover > a > .text {
  color: var(--main-color, #0060ab);
  border-bottom-color: var(--main-color, #0060ab);
}
.st_menu > li:hover > a > .text::after {
  transform: -webkit- translateX(0.25rem);
  transform: translateX(0.25rem);
}
.st_modal {
  position: fixed;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  height: 100%;
  z-index: 100;
  background-color: transparent;
  border-style: none;
  animation: modal-enter 0.4s;
}
.st_modal::backdrop {
  background-color: #0008;
}
.st_modal__body {
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto;
  max-width: 45rem;
  width: 90vw;
  height: fit-content;
  padding: 2rem;
  box-sizing: border-box;
  z-index: 2;
  background-color: var(--background-color, #fff);
  border-radius: 0.5rem;
  box-shadow: 0 12px 25px var(--shadow-color, #00000033);
}
.st_modal__body_close {
  display: block;
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  top: -0.5em;
  right: -0.5em;
  background-color: var(--main-color, #0060ab);
  border-style: none;
  border-radius: 50%;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Material Symbols Outlined";
  color: var(--inverse-text-color, #fff);
}
.st_modal__body_close::before {
  content: "close";
}
.st_modal__body_contents {
  max-height: 80vh;
  height: auto;
  overflow-y: auto;
}
.st_modal__bg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.st_modal_movie {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.3333333333;
}
@keyframes modal-enter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.st_notes {
  margin: 0.5em auto;
}
.st_notes > li {
  position: relative;
  padding-left: 1.25em;
  font-size: var(--font-size-sm, 0.875rem);
  line-height: 1.5em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-feature-settings: "palt" on;
}
.st_notes > li + .st_notes > li {
  margin-top: 0.5em;
}
.st_notes > li::before {
  content: "※";
  display: block;
  position: absolute;
  left: 0rem;
  top: 0rem;
  width: 1em;
  height: 1em;
}
.st_picture {
  margin: 2.5rem auto;
  width: min(var(--container-width, 100%), var(--image-width));
}
.st_picture img, .st_picture iframe, .st_picture video {
  display: block;
  width: 100%;
  height: auto;
}
.st_picture .caption {
  display: block;
  margin-top: 0.5em;
  font-size: var(--font-size-sm, 0.875rem);
  font-family: "BIZ UDPGothic", sans-serif;
}
.st_reports {
  margin: 2.5rem auto;
}
.st_reports > li > a {
  padding: 1.5rem 0rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  border-bottom-style: solid;
  border-bottom-width: 0.0625rem;
  border-bottom-color: var(--gray-color, #999);
  text-decoration: none;
}
.st_reports > li > a > .date {
  display: block;
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 8rem;
  padding: 0.25rem;
  height: fit-content;
  background-color: var(--focus-color, #e0f7ff);
  border-radius: 0.5rem;
  text-align: center;
  font-size: var(--font-size-sm, 0.875rem);
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  color: var(--text-color, #333);
  background: linear-gradient(90deg, #E0F3FF 0%, #CCE6FF 50%, #DBF5FF 100%);
}
.st_reports > li > a > .text {
  display: block;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 25rem;
  position: relative;
  padding: 0.25rem 0rem;
  padding-right: 2.5rem;
  font-size: var(--font-size-p, 1rem);
  line-height: 1.5em;
  font-weight: 400;
  font-family: "BIZ UDPGothic", sans-serif;
  color: var(--text-color, #333);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.st_reports > li > a > .text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto;
  margin-right: 0.5rem;
  width: 2rem;
  height: 2rem;
  background-image: url("/common/img/icon_chevron.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.st_reports > li:hover > a > .text {
  color: var(--main-color, #0060ab);
  border-bottom-color: var(--main-color, #0060ab);
}
.st_reports > li:hover > a > .text::after {
  transform: -webkit- translateX(0.5rem);
  transform: translateX(0.5rem);
}
.st_reports.has-no-date > li > a {
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.st_scrollbox {
  position: relative;
  width: 100%;
  margin: 2.5rem auto;
  overflow-x: auto;
  --container-width:86.25rem;
}
.st_scrollbox.has-scroll::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  width: 4rem;
  height: 4rem;
  box-sizing: border-box;
  background-image: url("/common/img/icon_touch_slide.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
  pointer-events: none;
}
.st_scrollbox.has-scroll.is-scrolled::after {
  opacity: 0;
}
.st_scrollbox.has-scroll.has-inverted-icon {
  background-image: url("/common/img/icon_touch_slide_wht.png");
}
.st_scrollbox_body {
  min-width: 86.25rem;
  width: auto;
}
.st_scrollbox_body > img:only-child {
  width: 100%;
  height: auto;
}
.st_scrollbox.has-content-fit {
  max-width: 100%;
  width: fit-content;
  margin-inline: auto;
}
.st_scrollbox.has-content-fit .st_scrollbox_body {
  min-width: 100%;
  max-width: 86.25rem;
  width: fit-content;
}
.st_section[data-bg="white"] {
  background: #FFF;
}
.st_section[data-bg="aqua"] {
  background: #DFEFFB;
}
.st_section[data-bg="gray"] {
  background: #f8f8f8;
}
.st_section[data-bg="blue"] {
  background: #0063be;
}
.st_section[data-bg] {
  padding-bottom: 5rem;
}
@media (max-width:640px) {
  .st_section[data-bg] {
    padding-bottom: 3.125rem;
  }
}
.st_section[data-bg]:not(:has(> [class^="st_heading"]:first-child)) {
  padding-top: 7.5rem;
}
@media (max-width:640px) {
  .st_section[data-bg]:not(:has(> [class^="st_heading"]:first-child)) {
    padding-top: 3rem;
  }
}
.st_section[data-bg]::before, .st_section[data-bg]::after {
  content: "";
  display: block;
  height: 0.0625rem;
}
.st_section_body {
  width: var(--content-width, auto);
  margin-inline: auto;
}
.st_section_body > :first-child > :first-child {
  --heading-margin-top:0;
}
.st_section.is-level-2 > .st_section[data-bg] > .st_section_body:first-child {
  margin-top: 7.5rem;
}
.st_section.is-level-3 > .st_section[data-bg] > .st_section_body:first-child {
  margin-top: 5rem;
}
.st_section.is-level-4 > .st_section[data-bg] > .st_section_body:first-child {
  margin-top: 4rem;
}
.st_section.is-level-5 > .st_section[data-bg] > .st_section_body:first-child {
  margin-top: 3rem;
}
.st_tab_controls {
  width: var(--content-width, auto);
  margin: 0rem auto 2.5rem;
  overflow: hidden;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 0.0625rem;
  background-color: var(--gray-color, #999);
  border-style: solid;
  border-width: 0.0625rem;
  border-color: var(--gray-color, #999);
  border-radius: 0.5rem;
}
@media (min-width:640px) {
  .st_tab_controls {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width:960px) {
  .st_tab_controls {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
  }
}
.st_tab_controls > li {
  display: grid;
  background-color: var(--inverse-text-color, #fff);
  text-align: center;
  font-size: var(--font-size-ui, 1.125rem);
  font-family: "BIZ UDPGothic", sans-serif;
  color: var(--text-color, #333);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.st_tab_controls > li > a {
  display: block;
  padding: 1em;
  font-size: var(--font-size-ui, 1.125rem);
  line-height: 1.5em;
  font-weight: 700;
  font-family: "BIZ UDPGothic", sans-serif;
  color: var(--text-color, #333);
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
.st_tab_controls > li > a:hover {
  color: var(--main-color, #0060ab);
  border-bottom-color: var(--main-color, #0060ab);
}
.st_tab_controls > li.is-active {
  background-color: var(--main-color, #0060ab);
  color: var(--inverse-text-color, #fff);
}
.st_tab_controls > li.is-active > a {
  color: var(--inverse-text-color, #fff);
  pointer-events: none;
}
.st_table {
  min-width: max-content;
  max-width: 86.25rem;
  width: 100%;
  border-collapse: separate;
  border-spacing: 1rem 0;
}
.st_table > thead > tr > th, .st_table > thead > tr > td, .st_table > tbody > tr > th, .st_table > tbody > tr > td {
  border-bottom-style: solid;
  border-bottom-width: 0.0625rem;
  text-align: left;
  vertical-align: middle;
  font-size: var(--font-size-p, 1rem);
  line-height: 2em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-feature-settings: "palt" on;
}
@media (max-width:640px) {
  .st_table > thead > tr > th, .st_table > thead > tr > td, .st_table > tbody > tr > th, .st_table > tbody > tr > td {
    line-height: 1.5em;
  }
}
.st_table > thead > tr > th {
  padding: 0.5rem;
  background-color: var(--main-color, #0060ab);
  color: var(--inverse-text-color, #fff);
}
.st_table > thead > tr > th:empty {
  background-color: transparent;
}
.st_table > tbody > tr > th, .st_table > tbody > tr > td {
  padding: 2.5rem 0rem;
  border-bottom-style: solid;
  border-bottom-width: 0.0625rem;
}
@media (max-width:640px) {
  .st_table > tbody > tr > th, .st_table > tbody > tr > td {
    padding: 1.25rem 0rem;
  }
}
.st_table > tbody > tr > th {
  font-weight: 700;
  color: var(--main-color, #0060ab);
}
.st_table > tbody > tr > td {
  border-bottom-color: var(--gray-color, #999);
}
.st_table.has-valign-center > thead > tr > th, .st_table.has-valign-center > thead > tr > td, .st_table.has-valign-center > tbody > tr > th, .st_table.has-valign-center > tbody > tr > td {
  align-content: center;
}
.st_table.has-padding-small > tbody > tr > th, .st_table.has-padding-small > tbody > tr > td {
  padding: 1.5rem 0rem;
}
@media (max-width:640px) {
  .st_table.has-padding-small > tbody > tr > th, .st_table.has-padding-small > tbody > tr > td {
    padding: 1rem 0rem;
  }
}
.st_table.is-type-sheet {
  border-collapse: collapse;
  border-spacing: 0px;
}
.st_table.is-type-sheet > thead > tr > th {
  position: relative;
  padding: 0.75rem;
  background-color: var(--main-color, #0060ab);
}
.st_table.is-type-sheet > thead > tr > th:first-child {
  border-radius: 0.5rem 0rem 0rem 0.5rem;
}
.st_table.is-type-sheet > thead > tr > th:last-child {
  border-radius: 0rem 0.5rem 0.5rem 0rem;
}
.st_table.is-type-sheet > thead > tr > th:not(:first-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: 0.75rem auto 0.75rem 0rem;
  width: 0.0625rem;
  background-color: var(--inverse-text-color, #fff);
}
.st_table.is-type-sheet > tbody > tr > th, .st_table.is-type-sheet > tbody > tr > td {
  padding: 1rem 0.5rem;
}
.st_table.is-type-sheet > tbody > tr > th {
  background-color: var(--sheet-color, #f3f8fc);
  text-align: center;
  color: var(--text-color, #333);
  border-bottom-color: var(--main-color, #0060ab);
}
.st_table.is-type-sheet > tbody > tr > td {
  position: relative;
  padding: 0.5rem;
  border-bottom-color: transparent;
}
.st_table.is-type-sheet > tbody > tr > td::after {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto 0.5rem 0rem;
  width: auto;
  height: 0.0625rem;
  background-color: var(--gray-color, #999);
}
.st_table.is-fit-content {
  min-width: fit-content;
}
@media (max-width:960px) {
  .st_table.do-pileup {
    display: block;
    min-width: min-content;
    max-width: 100%;
    width: auto;
  }
  .st_table.do-pileup > colgroup {
    display: none;
  }
  .st_table.do-pileup > thead, .st_table.do-pileup > tbody {
    display: contents;
  }
  .st_table.do-pileup > thead > tr, .st_table.do-pileup > tbody > tr {
    display: block;
    margin-bottom: 1.5em;
  }
  .st_table.do-pileup > thead > tr > th, .st_table.do-pileup > thead > tr > td, .st_table.do-pileup > tbody > tr > th, .st_table.do-pileup > tbody > tr > td {
    display: block;
    padding: 0.5em 0rem;
  }
  .st_table.do-pileup > thead > tr > th:empty, .st_table.do-pileup > thead > tr > td:empty, .st_table.do-pileup > tbody > tr > th:empty, .st_table.do-pileup > tbody > tr > td:empty {
    display: none;
  }
}
@media (max-width:960px) and (max-width:960px) {
  .st_table.do-pileup > thead > tr > td, .st_table.do-pileup > tbody > tr > td {
    border-bottom: none;
  }
}
@media (max-width:960px) and (max-width:960px) {
  .st_table.do-pileup > thead > tr > td:nth-child(3), .st_table.do-pileup > tbody > tr > td:nth-child(3) {
    padding-top: 0;
  }
}
@media (max-width:960px) {
  .st_table.do-transposition {
    width: 100%;
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(var(--rows), auto);
    grid-template-columns: repeat(var(--rows), auto);
    -ms-grid-rows: repeat(var(--cols), auto);
    grid-template-rows: repeat(var(--cols), auto);
    grid-auto-flow: column;
  }
  .st_table.do-transposition > colgroup {
    display: none;
  }
  .st_table.do-transposition > thead, .st_table.do-transposition > tbody {
    display: contents;
  }
  .st_table.do-transposition > thead > tr, .st_table.do-transposition > tbody > tr {
    display: contents;
  }
  .st_table.do-transposition.is-type-sheet:has(> tbody > tr > th:first-child) > thead > tr > :first-child, .st_table.do-transposition.is-type-sheet:has(> tbody > tr > th:first-child) > tbody > tr > :first-child {
    position: relative;
    padding: 0.75rem;
    background-color: var(--main-color, #0060ab);
    color: var(--inverse-text-color, #fff);
  }
  .st_table.do-transposition.is-type-sheet:has(> tbody > tr > th:first-child) > thead > tr:first-child > :first-child {
    border-radius: 0.5rem 0rem 0rem 0.5rem;
  }
  .st_table.do-transposition.is-type-sheet:has(> tbody > tr > th:first-child) > thead > tr:first-child > :last-child {
    border-radius: 0rem;
  }
  .st_table.do-transposition.is-type-sheet:has(> tbody > tr > th:first-child) > tbody > tr > :first-child::after {
    content: "";
    display: block;
    position: absolute;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
    left: 0rem;
    inset: 0rem;
    margin: 0.75rem auto 0.75rem 0rem;
    width: 0.0625rem;
    background-color: var(--inverse-text-color, #fff);
  }
  .st_table.do-transposition.is-type-sheet:has(> tbody > tr > th:first-child) > tbody > tr:last-child > :first-child {
    border-radius: 0rem 0.5rem 0.5rem 0rem;
  }
  .st_table.do-transposition.is-type-sheet > thead > tr > th {
    background-color: var(--sheet-color, #f3f8fc);
    text-align: center;
    color: var(--text-color, #333);
    border-bottom-color: var(--main-color, #0060ab);
  }
}
@media (max-width:400px) {
  .st_table.do-transposition > thead > tr > th, .st_table.do-transposition > thead > tr > td, .st_table.do-transposition > tbody > tr > th, .st_table.do-transposition > tbody > tr > td {
    font-size: 3.2vw;
  }
}
.st_copy {
  margin-bottom: 1.5rem;
  font-size: var(--font-size-h3, 2rem);
  line-height: 1.5em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main-color, #0060ab);
  font-feature-settings: "palt" on;
}
.st_text {
  font-size: var(--font-size-p, 1rem);
  line-height: 2em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-feature-settings: "palt" on;
}
.st_desc {
  font-size: var(--font-size-p, 1rem);
  line-height: 1.75em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-feature-settings: "palt" on;
}
.st_caption {
  font-size: var(--font-size-sm, 0.875rem);
  line-height: 1.5em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-feature-settings: "palt" on;
}
.st_annotation {
  font-size: var(--font-size-sm, 0.875rem);
  line-height: 1.5em;
  font-family: "BIZ UDPGothic", sans-serif;
  font-feature-settings: "palt" on;
}
.st_zoombox {
  position: relative;
  margin: 2.5rem auto;
  width: min(var(--container-width, 100%), var(--image-width));
  pointer-events: none;
}
@media (max-width:640px) {
  .st_zoombox {
    pointer-events: auto;
  }
  .st_zoombox::after {
    content: "zoom_in";
    display: block;
    position: absolute;
    bottom: 0rem;
    right: 0rem;
    padding: 0.2em;
    width: 1em;
    height: 1em;
    background-color: var(--main-color, #0060ab);
    font-size: 2.5rem;
    line-height: 1em;
    font-family: "Material Symbols Outlined";
    color: var(--inverse-text-color, #fff);
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
  }
}
.st_zoombox__img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}
.st_zoombox__popup {
  position: fixed;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  width: 100%;
  height: 100%;
  z-index: 120;
  visibility: visible;
  -webkit-transition: opacity 0.5s, visibility 0s;
  transition: opacity 0.5s, visibility 0s;
  opacity: 1;
}
.st_zoombox__popup:not(.is-open) {
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 1s;
  transition: opacity 0.5s, visibility 0s 1s;
  opacity: 0;
  pointer-events: none;
}
.st_zoombox__popup_bg {
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  width: 100%;
  height: 100%;
  background-color: #0008;
}
.st_zoombox__popup_body {
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto;
  padding: 1.25rem;
  width: min(95vw, 60rem);
  height: min(80vh, 60rem);
  overflow-x: auto;
  z-index: 1;
  background-color: var(--background-color, #fff);
  box-shadow: 0 8px 17px var(--shadow-color, #00000033);
}
.st_zoombox__popup_body_image {
  display: block;
  margin: auto;
  max-width: 100%;
  width: auto;
  height: 100%;
  box-sizing: content-box;
  object-position: center;
  object-fit: contain;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.st_zoombox__popup_body_image.is-zoomin {
  max-width: 62.5rem;
  width: auto;
  height: 100%;
}
.st_zoombox__popup_close {
  display: block;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  align-content: center;
  border-style: none;
  border-radius: 50%;
  background-color: var(--text-color, #333);
  opacity: 0.8;
}
.st_zoombox__popup_close::before, .st_zoombox__popup_close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  margin: auto;
  width: 60%;
  height: 0.125rem;
  background-color: var(--inverse-text-color, #fff);
}
.st_zoombox__popup_close::before {
  transform: -webkit- rotateZ(45deg);
  transform: rotateZ(45deg);
}
.st_zoombox__popup_close::after {
  transform: -webkit- rotateZ(-45deg);
  transform: rotateZ(-45deg);
}
/*# sourceMappingURL=./contents.css.map */