.st_ir_index_article {
  padding-bottom: var(--article-padding-bottom, 10rem);
}
.st_ir_index_fv {
  background-image: url("../img/index/bg_fv.jpg");
  background-size: cover;
  background-position: center;
}
.st_ir_index_fv > .body {
  width: var(--content-width, auto);
  margin-inline: auto;
  padding: 3.5rem 0rem;
}
@media (min-width:640px) {
  .st_ir_index_fv > .body {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: repeat(3, auto);
    grid-template-rows: repeat(3, auto);
    grid-gap: 1.5rem;
    grid-auto-flow: column dense;
  }
}
@media (max-width:640px) {
  .st_ir_index_fv > .body {
    padding: 2.5rem 0rem;
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
  }
}
.st_ir_index_fv > .body > .banner, .st_ir_index_fv > .body > .bar {
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: var(--background-color, #fff);
  box-shadow: 0 40px 81px var(--shadow-color, #00000033);
}
.st_ir_index_fv > .body > .banner {
  grid-row: span 2;
}
.st_ir_index_fv > .body > .banner > img {
  display: block;
  width: 100%;
  height: auto;
}
.st_ir_index_fv > .body > .bar {
  padding: 1.125rem 1.5rem;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
}
@media (max-width:640px) {
  .st_ir_index_fv > .body > .bar {
    grid-column: span 2;
  }
}
.st_ir_index_fv > .body > .bar > .title {
  margin-bottom: 0.5rem;
  font-size: var(--font-size-h4, 1.5rem);
  font-family: "BIZ UDPGothic", sans-serif;
  color: var(--main-color, #0060ab);
}
.st_ir_index_fv > .body > .bar > .text {
  font-size: var(--font-size-p, 1rem);
}
@media (max-width:640px) {
  .st_ir_index_fv > .body > .bar > .text {
    font-size: 1.076875rem;
  }
}
.st_ir_index_fv > .body > .button {
  padding-bottom: 1rem;
  grid-row-start: 3;
  border-style: none;
  background-color: transparent;
}
.st_ir_index_news {
  margin-bottom: 10rem;
}
@media (max-width:640px) {
  .st_ir_index_news {
    margin-bottom: 5rem;
  }
}
.st_ir_index_news > li {
  padding: 1.5rem 0rem;
  border-bottom-style: solid;
  border-bottom-width: 0.0625rem;
  border-bottom-color: var(--gray-color, #999);
}
@media (max-width:640px) {
  .st_ir_index_news > li {
    padding: 1rem 0rem;
  }
}
.st_ir_index_news > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font-size-p, 1rem);
  line-height: 1.5em;
  text-decoration: none;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  color: var(--text-color, #333);
}
.st_ir_index_news > li > a > time {
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 8rem;
  font-size: 1rem;
}
.st_ir_index_news > li > a > .icon {
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 9em;
  padding: 0.375rem;
  background-color: var(--main-color, #0060ab);
  border-radius: 2.375rem;
  text-align: center;
  font-size: 0.8em;
  line-height: 1em;
  color: var(--inverse-text-color, #fff);
}
.st_ir_index_news > li > a > .icon.is-accounts {
  background-color: #14176c;
}
.st_ir_index_news > li > a > .icon.is-meeting {
  background-color: #056b8d;
}
.st_ir_index_news > li > a > .icon.is-stockholder {
  background-color: #38a4d3;
}
.st_ir_index_news > li > a > .icon.is-news {
  background-color: #0063be;
}
.st_ir_index_news > li > a > .title {
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 18.75rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width:640px) {
  .st_ir_index_news > li > a > .title {
    font-size: 1.077rem;
  }
}
.st_ir_index_news > li > a::after {
  content: "chevron_forward";
  display: block;
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 1em;
  font-size: 1.5rem;
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  color: var(--main-color, #0060ab);
}
.st_ir_index_news > li > a:hover > .title {
  color: var(--main-color, #0060ab);
}
.st_ir_index_showcase {
  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_ir_index_showcase .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
@media (max-width:640px) {
  .st_ir_index_showcase .texts {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .st_ir_index_showcase .texts > .st_links {
    width: 100%;
    order: 10;
  }
}
.st_ir_index_info {
  font-family: "BIZ UDPGothic", sans-serif;
}
@media (min-width:640px) {
  .st_ir_index_info {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2.5rem;
  }
}
.st_ir_index_info > .column > .title {
  font-size: var(--font-size-h3, 2rem);
}
.st_ir_index_info > .column > img {
  display: block;
  width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 0.5rem;
}
.st_ir_index_contact {
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 5fr;
  grid-template-columns: 3fr 5fr;
  grid-gap: 2.5rem;
  font-size: var(--font-size-p, 1rem);
  font-family: "BIZ UDPGothic", sans-serif;
}
@media (max-width:640px) {
  .st_ir_index_contact {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=./index.css.map */