@charset "UTF-8";

.mt-15 {
  margin-top: 15px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-m8 {
  margin-top: -8px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-auto {
  margin-inline: auto;
}

.my-8 {
  margin-block: 8px;
}

.px-8 {
  padding-inline: 8px;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-nowrap {
  text-wrap: nowrap;
}

.l__1column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.w-140 {
  width: 140px;
}

.w-160 {
  width: 160px;
}

.w-220 {
  width: 220px;
}

.w-300 {
  width: 300px;
}

.w-320 {
  width: 320px;
}

.w-100 {
  width: 100%;
}

.fw-bold {
  font-weight: 700;
}

.headOfline {
  padding-left: 1em;
  text-indent: -1em;
}

a.link-style {
  color: var(--text-color);
  text-decoration: underline;
}

a.emphasise-txt {
  color: var(--dark-red);
}

a.link-style-arrow {
  color: var(--dark-red);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

a.link-style-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.4em solid currentColor;
}

.border-solid-1 {
    border: 1px solid var(--img-border-color);
}

a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  .overflowX-scroll:has(tbody td > span.w-320) {
    display: block;
    overflow-x: scroll;
    width: 100%;
  }

  .rowHeader__sticky:has(~ :is(th,td) > span.w-320) {
    position: sticky;
    left: 0;
    z-index: 2;
  }
}

@media screen and (max-width: 768px) {
  .overflowX-scroll {
    display: block;
    overflow-x: scroll;
    width: 100%;
  }
  
  .rowHeader__sticky {
    position: sticky;
    left: 0;
    z-index: 2;
  }
}

.visually-hidden {
    border: 0!important;
    clip: rect(0,0,0,0)!important;
    height: 1px!important;
    margin: -1px!important;
    overflow: hidden!important;
    padding: 0!important;
    position: absolute!important;
    white-space: nowrap!important;
    width: 1px!important;
}


@media screen and (max-width: 768px) {
  .w-300 {
  width: 100%;
}
}