/* settings */
@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:wght@400;700&family=Noto+Serif+JP:wght@400;500;600;700;900&family=Noto+Serif+KR:wght@400;500;700&family=Noto+Serif+SC:wght@400;500;700&family=Instrument+Serif:ital@0;1&display=swap");
html,
body {
  font-size: 1.8rem;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  color: #FFFFFF;
}

html {
  font-size: 62.5%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}
html::-webkit-scrollbar {
  display: none;
}

html.large {
  font-size: 75%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100vh;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
  font-weight: 500;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
}

table, th, td {
  padding: 0;
  font-size: 1.5rem;
  margin: 0;
}

tr {
  vertical-align: top;
}

caption, th {
  text-align: left;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  clear: both;
  content: "";
  content: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: "";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

a.hover, .hover a {
  text-decoration: none;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  clear: both;
  display: block;
  height: 1px;
  margin: 0 0 20px;
  font-size: 0;
}

sup {
  vertical-align: 2px;
}

sub {
  vertical-align: bottom;
}

/* layouts */
.site-wrapper {
  --header-height: 54px;
  --footer-height: 124px;
  background-color: #000;
}
@media all and (max-width: 1280px) {
  .site-wrapper {
    --footer-height: 100px;
  }
}
@media all and (max-width: 768px) {
  .site-wrapper {
    --header-height: 32px;
  }
}

.site-footer, .site-header {
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.site-header {
  top: 0;
  height: var(--header-height);
  z-index: 10000;
}

.site-footer {
  bottom: 0;
  height: var(--footer-height);
}

.site-footer__inner, .site-header__inner {
  color: #000;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
}

@media all and (max-width: 768px) {
  .site-header__inner {
    padding: 7px 20px;
  }
}

.site-footer__inner {
  align-items: flex-end;
}
@media all and (max-width: 768px) {
  .site-footer__inner {
    align-items: center;
    padding: 12px;
  }
}
@media all and (max-width: 768px) {
  .type-ja[data-current-section="0"] .site-footer__inner, .type-ja[data-current-section="5"] .site-footer__inner {
    align-items: flex-end;
  }
}

.site-footer-bg, .site-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: grid;
  --cell-width: 206;
  grid-template-columns: calc(var(--cell-width) / 1440 * 100%) 1fr;
  column-gap: 2px;
}
.site-footer-bg::before, .site-header-bg::before, .site-footer-bg::after, .site-header-bg::after {
  content: "";
  background-color: #fff;
}
@media all and (max-width: 768px) {
  .site-footer-bg, .site-header-bg {
    --cell-width: 41 !important;
    grid-template-columns: calc(var(--cell-width) / 390 * 100%) 1fr;
  }
}

.site-header-bg::before {
  border-bottom-right-radius: 18px;
}
.site-header-bg::after {
  border-bottom-left-radius: 18px;
}

.site-footer-bg::before {
  border-top-right-radius: 18px;
}
.site-footer-bg::after {
  border-top-left-radius: 18px;
}

.site-header-content {
  display: flex;
  position: absolute;
}

.site-footer-content {
  position: absolute;
  bottom: 27px;
  left: 0;
  width: 100%;
  display: grid;
  justify-content: center;
  filter: blur(var(--footer-contents-blur));
  translate: 0 var(--footer-contents-translate);
  display: none;
}
@media all and (max-width: 768px) {
  .site-footer-content {
    position: static;
  }
}
[data-current-section] .site-footer-content {
  display: grid;
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content {
    position: static;
  }
}
.site-footer-content .content-01 {
  display: block;
  text-align: center;
  order: 2;
}
@media all and (max-width: 1280px) {
  .site-footer-content .content-01 {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 768px) {
  .site-footer-content .content-01 {
    width: 178px;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-01 {
    width: 178px;
  }
}
.site-footer-content .content-02 {
  display: none;
  font-size: 5rem;
  line-height: 1.3;
  font-family: "Libre Caslon Text", serif;
  order: 2;
  text-align: center;
  letter-spacing: 0.04em;
}
@media all and (max-width: 1280px) {
  .site-footer-content .content-02 {
    line-height: 1.15;
  }
}
@media all and (max-width: 768px) {
  .site-footer-content .content-02 {
    font-size: 3rem;
  }
}
@media all and (max-width: 768px) {
  [data-current-section="0"] .site-footer-content .content-02, [data-current-section="5"] .site-footer-content .content-02 {
    line-height: 1;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-02 {
    font-size: 2.4rem;
  }
}
.site-footer-content .content-03 {
  display: none;
  color: #fff;
  order: 1;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.12em;
  position: relative;
}
.site-footer-content .content-03 > span {
  position: relative;
  z-index: 2;
}
.open-contents[data-current-section="5"] .site-footer-content .content-03::before {
  content: "";
  bottom: -30px;
  left: 50%;
  position: absolute;
  margin: 0 -50vw;
  width: 100vw;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%);
  z-index: 1;
}
@media all and (max-width: 768px) {
  .open-contents[data-current-section="5"] .site-footer-content .content-03::before {
    bottom: 0;
  }
}
@media all and (max-width: 768px) {
  .site-footer-content .content-03 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-03 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.site-footer-content .content-04 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  order: 4;
  margin-left: -22px;
  margin-right: -22px;
}
@media all and (max-width: 1280px) {
  .site-footer-content .content-04 {
    margin-top: 12px;
  }
}
@media all and (max-width: 768px) {
  .site-footer-content .content-04 {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-04 {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
  }
}
.site-footer-content .content-04 > p {
  margin: 0 22px;
  font-size: 1.4rem;
  position: relative;
}
@media all and (max-width: 768px) {
  .site-footer-content .content-04 > p {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-04 > p {
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0 10px;
  }
}
.site-footer-content .content-04 > p::after {
  content: "";
  top: 6px;
  right: -22px;
  position: absolute;
  width: 1px;
  height: calc(100% - 12px);
  background: #000;
}
@media all and (max-width: 890px) {
  .site-footer-content .content-04 > p::after {
    top: 0;
    height: 100%;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-04 > p::after {
    right: -10px;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-04 > p:first-child {
    margin-left: 30px;
  }
}
@media all and (max-width: 768px) {
  .site-footer-content .content-04 > p:nth-child(2)::after {
    display: none;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-04 > p:nth-child(2)::after {
    display: none;
  }
}
.site-footer-content .content-04 > p:last-child::after {
  display: none;
}
@media all and (max-width: 768px) {
  .site-footer-content .content-04 > p:not(.contact) {
    max-width: calc(50% - 44px);
    width: fit-content;
  }
}
.type-ja .site-footer-content .content-04 > p:not(.contact):first-child {
  margin-left: 30px;
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-04 > p:not(.contact) {
    max-width: calc(50% - 20px);
    width: fit-content;
  }
}
@media all and (max-width: 640px) {
  .type-en .site-footer-content .content-04 > p:not(.contact) {
    font-family: "Instrument Serif", serif;
    letter-spacing: 0.025em;
    font-size: 1.15rem;
  }
}
@media screen and (max-width: 375px) {
  .type-en .site-footer-content .content-04 > p:not(.contact) {
    font-size: 1.1rem;
    letter-spacing: normal;
  }
}
@media all and (max-width: 768px) {
  .site-footer-content .content-04 > p.contact {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-04 > p.contact {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
}
.site-footer-content .content-04 > p.contact > a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #000;
  position: relative;
  padding-left: 33px;
}
@media all and (max-width: 768px) {
  .site-footer-content .content-04 > p.contact > a {
    padding-left: 24px;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-04 > p.contact > a {
    padding-left: 24px;
  }
}
.site-footer-content .content-04 > p.contact > a::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 26px;
  height: 19px;
  background: url(../images/icon_mail.svg) no-repeat top center/100%;
}
@media all and (max-width: 768px) {
  .site-footer-content .content-04 > p.contact > a::before {
    width: 18px;
    height: 13px;
    margin-top: 2px;
  }
}
@media all and (max-width: 890px) {
  .type-en .site-footer-content .content-04 > p.contact > a::before {
    width: 18px;
    height: 13px;
    margin-top: 2px;
  }
}
@media all and (min-width: 769px) {
  .site-footer-content .content-04 > p.contact > a:hover {
    text-decoration: underline;
  }
}
[data-current-section="0"] .site-footer-content, [data-current-section="5"] .site-footer-content {
  bottom: 34px;
}
[data-current-section="0"] .site-footer-content .content-01, [data-current-section="5"] .site-footer-content .content-01 {
  display: none;
}
[data-current-section="0"] .site-footer-content .content-02, [data-current-section="5"] .site-footer-content .content-02 {
  display: block;
}
[data-current-section="0"] .site-footer-content .content-03, [data-current-section="5"] .site-footer-content .content-03 {
  display: block;
}

.scrolldown {
  position: absolute;
  right: 64px;
  z-index: 10000;
  height: 110px;
}
@media all and (max-width: 768px) {
  .scrolldown {
    right: 0px;
    top: 12px;
    height: 74px;
  }
}
.scrolldown > span {
  writing-mode: vertical-rl;
  font-size: 1rem;
  color: #000;
}
.scrolldown.is-visible {
  display: inline-block;
  opacity: 1;
  bottom: 22px;
}
body:not([data-current-section="0"]) .scrolldown.is-visible > span {
  opacity: 1 !important;
}
@media all and (max-width: 768px) {
  .scrolldown.is-visible {
    top: auto;
    bottom: 0;
  }
}
@media all and (max-width: 768px) {
  .scrolldown _::-webkit-full-page-media, .scrolldown _:future, :root .scrolldown {
    bottom: 58px;
    right: 20px;
  }
}
.open-contents .scrolldown, .scrolldown:not(.is-visible) {
  display: none;
  opacity: 0;
}
[data-current-section="0"] .scrolldown {
  display: inline-block !important;
  opacity: 1 !important;
  top: 22px;
}
[data-current-section="0"] .scrolldown.is-visible {
  top: auto;
  bottom: -8px;
}
@media all and (max-width: 768px) {
  [data-current-section="0"] .scrolldown.is-visible {
    bottom: 5px;
  }
}
[data-current-section="5"] .scrolldown {
  display: none;
}

.scrolldown-bar {
  position: absolute;
  top: 0;
}
[data-current-section="0"] .scrolldown-bar {
  filter: blur(var(--footer-contents-blur));
  translate: 0 var(--footer-contents-translate);
}
.scrolldown-bar::before {
  background-color: #fff;
  content: "";
  height: 84px;
  left: -30px;
  margin: auto;
  position: absolute;
  right: 0;
  mix-blend-mode: difference;
  width: 1px;
}
@media all and (max-width: 768px) {
  .scrolldown-bar::before {
    top: -12px;
    height: 74px;
  }
}
[data-current-section="0"] .scrolldown-bar > span {
  filter: blur(var(--footer-contents-blur));
  translate: 0 var(--footer-contents-translate);
}
.scrolldown-bar::before {
  top: -22px;
}

.scrolldown-bar-inner {
  content: "";
  height: 110px;
  left: -30px;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 10000;
  animation: scroll 2s infinite;
  background-color: #fff;
  mix-blend-mode: difference;
  top: -45px;
}
@media all and (max-width: 768px) {
  .scrolldown-bar-inner {
    top: -32px;
    height: 74px;
  }
}
.scrolldown-bar-inner::after {
  content: "";
  bottom: 6px;
  left: 0;
  position: absolute;
  width: 10px;
  height: 1px;
  background: #000;
}
@media all and (max-width: 768px) {
  .scrolldown-bar-inner::after {
    bottom: 4px;
  }
}
.scrolldown-bar-inner::after {
  transform: rotate(-45deg);
}

.scrollup {
  position: absolute;
  right: 64px;
  z-index: 10000;
  height: 110px;
  top: 97px;
}
@media all and (max-width: 768px) {
  .scrollup {
    right: 0px;
    top: 12px;
    height: 74px;
  }
}
.scrollup > span {
  writing-mode: vertical-rl;
  font-size: 1rem;
  color: #000;
}
.scrollup.is-visible {
  display: inline-block;
  opacity: 1;
}
@media all and (max-width: 768px) {
  .scrollup.is-visible {
    top: 97px;
  }
}
@media all and (max-width: 768px) {
  .scrollup _::-webkit-full-page-media, .scrollup _:future, :root .scrollup {
    right: 20px;
  }
}
.open-contents .scrollup, .scrollup:not(.is-visible) {
  opacity: 0;
  display: none;
}
.scrollup > span {
  position: relative;
  top: 30px;
}
@media all and (max-width: 768px) {
  .scrollup > span {
    top: 0;
  }
}

.scrollup-bar {
  position: absolute;
  top: 0;
}
[data-current-section="0"] .scrollup-bar {
  filter: blur(var(--footer-contents-blur));
  translate: 0 var(--footer-contents-translate);
}
.scrollup-bar::before {
  background-color: #fff;
  content: "";
  height: 84px;
  left: -30px;
  margin: auto;
  position: absolute;
  right: 0;
  mix-blend-mode: difference;
  width: 1px;
}
@media all and (max-width: 768px) {
  .scrollup-bar::before {
    top: -12px;
    height: 74px;
  }
}
[data-current-section="0"] .scrollup-bar > span {
  filter: blur(var(--footer-contents-blur));
  translate: 0 var(--footer-contents-translate);
}

.scrollup-bar-inner {
  content: "";
  height: 110px;
  left: -30px;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 10000;
  animation: scrollReverse 2s infinite;
  background-color: #000;
}
@media all and (max-width: 768px) {
  .scrollup-bar-inner {
    top: -32px;
    height: 74px;
  }
}
.scrollup-bar-inner::after {
  content: "";
  bottom: 6px;
  left: 0;
  position: absolute;
  width: 10px;
  height: 1px;
  background: #000;
}
@media all and (max-width: 768px) {
  .scrollup-bar-inner::after {
    bottom: 4px;
  }
}
.scrollup-bar-inner::after {
  top: 6px;
  width: 10px;
  height: 1px;
  background: #000;
  transform: rotate(45deg);
}
@media all and (max-width: 768px) {
  .scrollup-bar-inner::after {
    bottom: 4px;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scrollReverse {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
}
.section {
  height: 100vh;
  position: relative;
}

.section.mv {
  position: relative;
}
.section.mv::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #000;
  z-index: 999;
}
body[data-current-section] .section.mv::before {
  display: none;
}

.section-05 .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 55px 35px 100px;
}
.type-en .section-05 .section-inner {
  padding: 55px 35px 37px;
}
@media all and (max-width: 768px) {
  .section-05 .section-inner {
    padding: 55px 35px 0;
    background-attachment: fixed;
  }
}

.section-inner {
  --section-contents-opacity: 1;
  --section-contents-blur: 0;
  --section-contents-translate: 0;
  position: absolute;
  top: var(--header-height);
  bottom: var(--footer-height);
  left: 0;
  width: 100%;
  opacity: var(--section-contents-opacity);
  overflow-y: scroll;
}
.section-inner > * {
  filter: blur(var(--section-contents-blur));
  transform: translate(0, var(--section-contents-translate));
}

.section-bg {
  --section-bg-brightness: 0;
  --section-bg-shadow: 100%;
  --section-bg-blur: 0;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(86vh - var(--header-height) - var(--footer-height));
  overflow: hidden;
}
.section-bg > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, var(--section-bg-brightness));
  box-shadow: 0 0 var(--section-bg-shadow) #000 inset;
  -webkit-backdrop-filter: blur(var(--section-bg-blur));
  backdrop-filter: blur(var(--section-bg-blur));
}

.section.mv {
  margin-top: 54px;
  position: relative;
}
@media all and (max-width: 768px) {
  .section.mv {
    margin-top: 32px;
  }
}
.section.mv .section-inner {
  overflow: hidden;
}

.bg-mv-img {
  height: 100%;
  background: url(../images/img_mv.jpg) no-repeat center center/cover;
  padding: 80px 0;
}
@media all and (max-width: 768px) {
  .bg-mv-img {
    background-image: url(../images/img_mv_sp.jpg);
  }
}
.bg-mv-img > * {
  height: 100%;
}

.main-heading {
  display: flex;
  justify-content: center;
}
@media all and (max-width: 640px) {
  .main-heading _::-webkit-full-page-media, .main-heading _:future, :root .main-heading {
    margin-top: -40px;
  }
}
.main-heading > img {
  width: 422px;
}
@media all and (max-width: 768px) {
  .main-heading > img {
    width: 233px;
  }
}

/* components */
.picture-box {
  display: grid;
  height: 100%;
  grid-template-columns: 70.7% 1fr;
  grid-template-rows: repeat(3, 33.3333333333%);
  gap: 0px 0px;
  grid-template-areas: "main sub1" "main sub2" "main sub3";
  position: relative;
}
@media all and (max-width: 768px) {
  .picture-box {
    grid-template-columns: repeat(3, 33.3333333333%);
    grid-template-rows: 140px 1fr;
    grid-template-areas: "sub1 sub2 sub3" "main main main";
  }
}
@media all and (max-width: 640px) {
  .picture-box {
    grid-template-rows: 92px 1fr;
  }
}
.picture-box._reverse {
  grid-template-columns: 1fr 70.7%;
  grid-template-areas: "sub1 main" "sub2 main" "sub3 main";
}
@media all and (max-width: 768px) {
  .picture-box._reverse {
    grid-template-columns: repeat(3, 33.3333333333%);
    grid-template-rows: minmax(82%, 1fr) 140px;
    grid-template-areas: "main main main" "sub1 sub2 sub3";
  }
}
@media all and (max-width: 640px) {
  .picture-box._reverse {
    grid-template-rows: minmax(82%, 1fr) 92px;
  }
}
.picture-box._row-pattern02 {
  grid-template-rows: minmax(36%, 1fr) 27% minmax(36%, 1fr);
}
@media all and (max-width: 768px) {
  .picture-box._row-pattern02 {
    grid-template-columns: repeat(3, 33.3333333333%);
    grid-template-rows: minmax(82%, 1fr) 140px;
    grid-template-areas: "main main main" "sub1 sub2 sub3";
  }
}
@media all and (max-width: 640px) {
  .picture-box._row-pattern02 {
    grid-template-rows: minmax(82%, 1fr) 92px;
  }
}
.picture-box .picture source, .picture-box .picture img {
  object-position: 50% 50%;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.picture-box .picture:nth-child(1) {
  grid-area: main;
}
.picture-box .picture:nth-child(2) {
  grid-area: sub1;
}
.picture-box .picture:nth-child(3) {
  grid-area: sub2;
}
.picture-box .picture:nth-child(4) {
  grid-area: sub3;
}

.text-box {
  position: absolute;
  z-index: 10;
  top: 50px;
  left: 50px;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .text-box {
    top: 160px;
    left: 32px;
  }
}
@media all and (max-width: 640px) {
  .text-box {
    top: 112px;
  }
}
.type-en .text-box {
  font-family: "Libre Caslon Text", serif;
}
.text-box._position-right {
  left: auto;
  right: 50px;
  text-align: right;
}
@media all and (max-width: 768px) {
  .text-box._position-right {
    top: 40px;
    right: 32px;
  }
}
.text-box._postion-reverse-center {
  left: calc(30% + 50px);
}
@media all and (max-width: 1280px) {
  .type-ja .text-box._postion-reverse-center {
    top: 40px;
  }
}
@media all and (max-width: 768px) {
  .text-box._postion-reverse-center {
    top: 40px;
    left: 35px;
  }
}

.access-area {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: calc(50% + 47px) 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "map access" "map download";
}
@media all and (max-width: 768px) {
  .access-area {
    max-width: 100%;
    margin: 0;
    display: block;
    width: 100%;
    padding: 0;
  }
}

.map {
  width: 100%;
  height: 230px;
  padding-right: 47px;
  grid-area: map;
}
@media all and (max-width: 768px) {
  .map {
    padding-right: 0;
    height: 160px;
  }
}
.map > iframe {
  width: 100%;
  height: inherit;
}

.access-box {
  display: flex;
  grid-area: access;
}
@media all and (max-width: 768px) {
  .access-box {
    flex-direction: column;
    margin-top: 30px;
  }
}
.access-box .access-img {
  flex: 0 0 180px;
  margin-right: 30px;
}
@media all and (max-width: 768px) {
  .access-box .access-img {
    flex: 0 0 auto;
    width: 61%;
    margin: 0 auto 33px;
  }
}

.download-area {
  margin-top: 30px;
  position: relative;
  padding: 20px 14px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-area: download;
}
@media all and (min-width: 769px) {
  .download-area {
    max-height: 81px;
  }
}
.download-area .download-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 34px;
}
@media all and (max-width: 768px) {
  .download-area .download-icon {
    width: 29px;
    height: 36px;
  }
}
.download-area .download-icon > img {
  width: inherit;
  height: inherit;
}
.download-area .download-heading {
  font-size: 1.3rem;
  padding: 0 60px;
  margin: 0 -17px 4px;
  line-height: 1.3;
}
@media all and (max-width: 768px) {
  .download-area .download-heading {
    padding-left: 78px;
    padding-right: 0;
  }
}
.download-area .download-links {
  display: flex;
  flex-wrap: wrap;
  padding-left: 52px;
  margin: 0 -17px;
}
@media all and (max-width: 768px) {
  .download-area .download-links {
    padding-left: 70px;
  }
}
.download-area .download-links .item {
  line-height: 1.3;
  position: relative;
}
.download-area .download-links .item:not(:last-child)::after {
  content: "";
  top: 50%;
  right: 0;
  position: absolute;
  margin-top: 3px;
  width: 1px;
  height: calc(100% - 8px);
  background: #FFF;
  transform: translateY(-50%);
}
.download-area .download-links .item > a {
  padding: 0 8px;
  color: #FFFFFF;
  font-size: clamp(1rem, 0.635443038rem + 0.4746835443vw, 1.3rem);
}
@media all and (min-width: 769px) {
  .download-area .download-links .item > a:hover {
    text-decoration: none;
  }
}
@media all and (max-width: 768px) {
  .download-area .download-links .item > a {
    font-size: 1.3rem;
  }
}

.content-box {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
.content-box .logo-img {
  text-align: center;
}

.site-header .sns-box {
  margin-right: 43px;
  display: flex;
  align-items: center;
}
@media all and (max-width: 768px) {
  .site-header .sns-box {
    margin-right: 24px;
  }
}
.site-header .sns-box .icon {
  width: 25px;
  height: 25px;
}
@media all and (max-width: 768px) {
  .site-header .sns-box .icon {
    width: 18px;
    height: 18px;
  }
}
.site-header .sns-box .icon a {
  width: inherit;
  height: inherit;
  display: block;
}
@media all and (min-width: 769px) {
  .site-header .sns-box .icon a {
    transition: opacity 0.2s;
  }
  .site-header .sns-box .icon a:hover {
    opacity: 0.7;
  }
}
.site-header .sns-box .icon img {
  vertical-align: top;
}

.language-box {
  position: relative;
}
.language-box .language-btn-wrapper {
  display: flex;
  align-items: center;
}
.language-box .language-btn {
  transition: opacity 0.2s;
}
@media all and (min-width: 769px) {
  .language-box .language-btn:hover {
    opacity: 0.7;
  }
}
.language-box .language-list-wrapper {
  display: none;
  background-color: #fff;
  position: absolute;
  top: 44px;
  right: -20px;
  border-bottom-left-radius: 16px;
}
@media all and (max-width: 768px) {
  .language-box .language-list-wrapper {
    top: 25px;
    background-color: #000;
  }
}
.language-box .language-list {
  padding: 30px 24px 30px 26px;
}
@media all and (max-width: 768px) {
  .language-box .language-list {
    padding: 38px 38px 53px;
  }
}
.language-box .language-list .item {
  margin-top: 28px;
  text-align: center;
  line-height: 1;
}
.language-box .language-list .item:first-child {
  margin-top: 0;
}
.language-box .language-list .item > a {
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
}
@media all and (min-width: 769px) {
  .language-box .language-list .item > a:hover {
    text-decoration: underline;
  }
}
@media all and (max-width: 768px) {
  .language-box .language-list .item > a {
    color: #FFFFFF;
  }
}

.primary-heading {
  letter-spacing: 0.1em;
  font-size: 3.6rem;
  line-height: 1.7;
  margin-bottom: 30px;
}
@media all and (max-width: 768px) {
  .primary-heading {
    font-size: 2.7rem;
    margin-bottom: 16px;
  }
}

.text {
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  line-height: 2.15;
  margin-bottom: 20px;
}
@media all and (max-width: 768px) {
  .type-en .text {
    font-size: 1rem;
  }
}

.ff-s-chinese {
  font-family: "Noto Serif SC", serif;
}

.ff-ko {
  font-family: "Noto Serif KR", serif;
}

.address-list {
  margin: 25px 0 40px;
}
@media all and (max-width: 768px) {
  .address-list {
    margin: 34px 0 34px;
  }
}
.address-list .item {
  text-align: center;
  font-size: 1.4rem;
}

.info-list {
  position: relative;
  padding-left: 7px;
}
.info-list::before {
  content: "";
  top: 6px;
  left: 0;
  position: absolute;
  width: 1px;
  height: calc(100% - 12px);
  background: #FFF;
}
.info-list .item {
  font-size: 1.3rem;
}
.info-list + .info-list {
  margin-top: 25px;
}

.logo_noguchi {
  width: 186px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
}
@media all and (max-width: 768px) {
  .logo_noguchi {
    width: 195px;
    margin-bottom: 55px;
  }
}

/* utilities */
.text-white {
  color: #FFFFFF !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.va-t {
  vertical-align: top !important;
}

.va-m {
  vertical-align: middle !important;
}

.jc-c {
  justify-content: center !important;
}

.jc-end {
  justify-content: flex-end !important;
}

.ai-c {
  align-items: center !important;
}

.ai-end {
  align-items: flex-end !important;
}

@media all and (min-width: 769px) {
  .pc-ta-c {
    text-align: center !important;
  }
  .pc-ta-l {
    text-align: left !important;
  }
  .pc-ta-r {
    text-align: right !important;
  }
  .pc-va-m {
    vertical-align: middle !important;
  }
}
@media all and (max-width: 768px) {
  .sp-ta-c {
    text-align: center !important;
  }
  .sp-ta-l {
    text-align: left !important;
  }
  .sp-ta-r {
    text-align: right !important;
  }
  .sp-va-m {
    vertical-align: middle !important;
  }
}
.fw-n {
  font-weight: normal !important;
}

.fw-m {
  font-weight: 500 !important;
}

.fw-b {
  font-weight: bold !important;
}

@media all and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media all and (min-width: 1026px) {
  .tb-only {
    display: none !important;
  }
}
.d-ib {
  display: inline-block;
}

@media all and (max-width: 768px) {
  .sp-full-vw {
    margin-left: -18px;
    margin-right: -18px;
  }
}

.fz-n {
  font-size: fz(14) !important;
}

.fz-xs {
  font-size: fz(10) !important;
}

.fz-s {
  font-size: fz(12) !important;
}

.fz-m {
  font-size: fz(16) !important;
}

.fz-l {
  font-size: fz(18) !important;
}

.fz-xl {
  font-size: fz(20) !important;
}

.fz-xxl {
  font-size: fz(24) !important;
}

@media all and (max-width: 768px) {
  .sp-fz-xs {
    font-size: fz(10) !important;
  }
  .sp-fz-s {
    font-size: fz(12) !important;
  }
  .sp-fz-m {
    font-size: fz(16) !important;
  }
  .sp-fz-l {
    font-size: fz(18) !important;
  }
  .sp-fz-xl {
    font-size: fz(20) !important;
  }
}
.pt-s {
  padding-top: 9px !important;
}

.pt-m2 {
  padding-top: 24px !important;
}

.pb-m2 {
  padding-bottom: 24px !important;
}

.mt-zero {
  margin-top: 0 !important;
}

.mt-xs {
  margin-top: 4px !important;
}

.mt-s {
  margin-top: 8px !important;
}

.mt-m {
  margin-top: 16px !important;
}

.mt-m2 {
  margin-top: 24px !important;
}

.mt-l {
  margin-top: 32px !important;
}

.mt-xl {
  margin-top: 48px !important;
}

.mt-xxl {
  margin-top: 56px !important;
}

.mt-xxxl {
  margin-top: 80px !important;
}

.mb-zero {
  margin-bottom: 0 !important;
}

.mb-xs {
  margin-bottom: 4px !important;
}

.mb-s {
  margin-bottom: 8px !important;
}

.mb-m {
  margin-bottom: 16px !important;
}

.mb-m2 {
  margin-bottom: 24px !important;
}

.mb-l {
  margin-bottom: 32px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-xl {
  margin-bottom: 48px !important;
}

.mb-xxl {
  margin-bottom: 64px !important;
}

.mb-xxxl {
  margin-bottom: 80px !important;
}

@media all and (min-width: 769px) {
  .pc-mt-zero {
    margin-top: 0 !important;
  }
  .pc-mt-xs {
    margin-top: 4px !important;
  }
  .pc-mt-s {
    margin-top: 9px !important;
  }
  .pc-mt-m {
    margin-top: 16px !important;
  }
  .pc-mt-m2 {
    margin-top: 24px !important;
  }
  .pc-mt-l {
    margin-top: 32px !important;
  }
  .pc-mt-xl {
    margin-top: 48px !important;
  }
  .pc-mb-zero {
    margin-bottom: 0 !important;
  }
  .pc-mb-xs {
    margin-bottom: 4px !important;
  }
  .pc-mb-s {
    margin-bottom: 9px !important;
  }
  .pc-mb-m {
    margin-bottom: 16px !important;
  }
  .pc-mb-m2 {
    margin-bottom: 24px !important;
  }
  .pc-mb-l {
    margin-bottom: 32px !important;
  }
  .pc-mb-xl {
    margin-bottom: 48px !important;
  }
  .pc-mb-xxl {
    margin-bottom: 64px !important;
  }
  .pc-mb-xxxl {
    margin-bottom: 80px !important;
  }
  .pc-ml-zero {
    margin-left: 0 !important;
  }
  .pc-ml-xs {
    margin-left: 4px !important;
  }
  .pc-ml-s {
    margin-left: 9px !important;
  }
  .pc-ml-m {
    margin-left: 16px !important;
  }
  .pc-ml-m2 {
    margin-left: 24px !important;
  }
  .pc-ml-l {
    margin-left: 32px !important;
  }
  .pc-ml-xl {
    margin-left: 48px !important;
  }
  .pc-mr-zero {
    margin-right: 0 !important;
  }
  .pc-mr-xs {
    margin-right: 4px !important;
  }
  .pc-mr-s {
    margin-right: 9px !important;
  }
  .pc-mr-m {
    margin-right: 16px !important;
  }
  .pc-mr-m2 {
    margin-right: 24px !important;
  }
  .pc-mr-l {
    margin-right: 32px !important;
  }
  .pc-mr-xl {
    margin-right: 48px !important;
  }
  .pc-mr-xxl {
    margin-right: 56px !important;
  }
}
@media all and (max-width: 768px) {
  .sp-mt-zero {
    margin-top: 0 !important;
  }
  .sp-mt-xs {
    margin-top: 4px !important;
  }
  .sp-mt-s {
    margin-top: 9px !important;
  }
  .sp-mt-m {
    margin-top: 16px !important;
  }
  .sp-mt-m2 {
    margin-top: 24px !important;
  }
  .sp-mt-l {
    margin-top: 32px !important;
  }
  .sp-mt-xl {
    margin-top: 48px !important;
  }
  .sp-mb-zero {
    margin-bottom: 0 !important;
  }
  .sp-mb-xs {
    margin-bottom: 4px !important;
  }
  .sp-mb-s {
    margin-bottom: 9px !important;
  }
  .sp-mb-m {
    margin-bottom: 16px !important;
  }
  .sp-mb-m2 {
    margin-bottom: 24px !important;
  }
  .sp-mb-l {
    margin-bottom: 32px !important;
  }
  .sp-mb-xl {
    margin-bottom: 48px !important;
  }
}
@media all and (max-width: 768px) {
  .sp-m-mt-zero {
    margin-top: 0 !important;
  }
  .sp-m-mt-xs {
    margin-top: 4px !important;
  }
  .sp-m-mt-s {
    margin-top: 9px !important;
  }
  .sp-m-mt-m {
    margin-top: 16px !important;
  }
  .sp-m-mt-m2 {
    margin-top: 24px !important;
  }
  .sp-m-mt-l {
    margin-top: 32px !important;
  }
  .sp-m-mt-xl {
    margin-top: 48px !important;
  }
  .sp-m-mb-zero {
    margin-bottom: 0 !important;
  }
  .sp-m-mb-xs {
    margin-bottom: 4px !important;
  }
  .sp-m-mb-s {
    margin-bottom: 9px !important;
  }
  .sp-m-mb-m {
    margin-bottom: 16px !important;
  }
  .sp-m-mb-m2 {
    margin-bottom: 24px !important;
  }
  .sp-m-mb-l {
    margin-bottom: 32px !important;
  }
  .sp-m-mb-xl {
    margin-bottom: 48px !important;
  }
}
.ml-1em {
  margin-left: 1em !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-xs {
  margin-right: 4px !important;
}

.mr-1em {
  margin-right: 1em !important;
}

.mr-auto {
  margin-right: auto !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

@media all and (max-width: 768px) {
  .sp-ml-check-same {
    margin-left: 30px !important;
  }
}
.h-100\% {
  height: 100%;
}

.maxw-300 {
  max-width: 300px;
}

.w-0 {
  width: 0;
}

.w-5 {
  width: 5%;
}

.w-8 {
  width: 8%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto;
}

@media all and (max-width: 768px) {
  .sp-w-full {
    width: 100%;
  }
}
.wb-all {
  word-break: break-all;
}

.td-line-through {
  text-decoration: line-through;
}

.nowrap {
  white-space: nowrap;
}

.is-hidden {
  display: none !important;
}

/* bootstrap-custom */
/*!
 * Bootstrap  v5.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 641px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 770px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1026px) {
  .sticky-l-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-l-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.object-fit-contain {
  object-fit: contain !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

.object-fit-fill {
  object-fit: fill !important;
}

.object-fit-scale {
  object-fit: scale-down !important;
}

.object-fit-none {
  object-fit: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.4rem !important;
}

.m-2 {
  margin: 0.8rem !important;
}

.m-3 {
  margin: 1.6rem !important;
}

.m-4 {
  margin: 2.4rem !important;
}

.m-5 {
  margin: 4.8rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.4rem !important;
  margin-left: 0.4rem !important;
}

.mx-2 {
  margin-right: 0.8rem !important;
  margin-left: 0.8rem !important;
}

.mx-3 {
  margin-right: 1.6rem !important;
  margin-left: 1.6rem !important;
}

.mx-4 {
  margin-right: 2.4rem !important;
  margin-left: 2.4rem !important;
}

.mx-5 {
  margin-right: 4.8rem !important;
  margin-left: 4.8rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.4rem !important;
  margin-bottom: 0.4rem !important;
}

.my-2 {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

.my-3 {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}

.my-4 {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}

.my-5 {
  margin-top: 4.8rem !important;
  margin-bottom: 4.8rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.4rem !important;
}

.mt-2 {
  margin-top: 0.8rem !important;
}

.mt-3 {
  margin-top: 1.6rem !important;
}

.mt-4 {
  margin-top: 2.4rem !important;
}

.mt-5 {
  margin-top: 4.8rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.4rem !important;
}

.me-2 {
  margin-right: 0.8rem !important;
}

.me-3 {
  margin-right: 1.6rem !important;
}

.me-4 {
  margin-right: 2.4rem !important;
}

.me-5 {
  margin-right: 4.8rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.4rem !important;
}

.mb-2 {
  margin-bottom: 0.8rem !important;
}

.mb-3 {
  margin-bottom: 1.6rem !important;
}

.mb-4 {
  margin-bottom: 2.4rem !important;
}

.mb-5 {
  margin-bottom: 4.8rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.4rem !important;
}

.ms-2 {
  margin-left: 0.8rem !important;
}

.ms-3 {
  margin-left: 1.6rem !important;
}

.ms-4 {
  margin-left: 2.4rem !important;
}

.ms-5 {
  margin-left: 4.8rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.4rem !important;
}

.p-2 {
  padding: 0.8rem !important;
}

.p-3 {
  padding: 1.6rem !important;
}

.p-4 {
  padding: 2.4rem !important;
}

.p-5 {
  padding: 4.8rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.4rem !important;
  padding-left: 0.4rem !important;
}

.px-2 {
  padding-right: 0.8rem !important;
  padding-left: 0.8rem !important;
}

.px-3 {
  padding-right: 1.6rem !important;
  padding-left: 1.6rem !important;
}

.px-4 {
  padding-right: 2.4rem !important;
  padding-left: 2.4rem !important;
}

.px-5 {
  padding-right: 4.8rem !important;
  padding-left: 4.8rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
}

.py-2 {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

.py-3 {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

.py-4 {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}

.py-5 {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.4rem !important;
}

.pt-2 {
  padding-top: 0.8rem !important;
}

.pt-3 {
  padding-top: 1.6rem !important;
}

.pt-4 {
  padding-top: 2.4rem !important;
}

.pt-5 {
  padding-top: 4.8rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.4rem !important;
}

.pe-2 {
  padding-right: 0.8rem !important;
}

.pe-3 {
  padding-right: 1.6rem !important;
}

.pe-4 {
  padding-right: 2.4rem !important;
}

.pe-5 {
  padding-right: 4.8rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.4rem !important;
}

.pb-2 {
  padding-bottom: 0.8rem !important;
}

.pb-3 {
  padding-bottom: 1.6rem !important;
}

.pb-4 {
  padding-bottom: 2.4rem !important;
}

.pb-5 {
  padding-bottom: 4.8rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.4rem !important;
}

.ps-2 {
  padding-left: 0.8rem !important;
}

.ps-3 {
  padding-left: 1.6rem !important;
}

.ps-4 {
  padding-left: 2.4rem !important;
}

.ps-5 {
  padding-left: 4.8rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.4rem !important;
}

.gap-2 {
  gap: 0.8rem !important;
}

.gap-3 {
  gap: 1.6rem !important;
}

.gap-4 {
  gap: 2.4rem !important;
}

.gap-5 {
  gap: 4.8rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.4rem !important;
}

.row-gap-2 {
  row-gap: 0.8rem !important;
}

.row-gap-3 {
  row-gap: 1.6rem !important;
}

.row-gap-4 {
  row-gap: 2.4rem !important;
}

.row-gap-5 {
  row-gap: 4.8rem !important;
}

.column-gap-0 {
  column-gap: 0 !important;
}

.column-gap-1 {
  column-gap: 0.4rem !important;
}

.column-gap-2 {
  column-gap: 0.8rem !important;
}

.column-gap-3 {
  column-gap: 1.6rem !important;
}

.column-gap-4 {
  column-gap: 2.4rem !important;
}

.column-gap-5 {
  column-gap: 4.8rem !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 641px) {
  .object-fit-sm-contain {
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.4rem !important;
  }
  .m-sm-2 {
    margin: 0.8rem !important;
  }
  .m-sm-3 {
    margin: 1.6rem !important;
  }
  .m-sm-4 {
    margin: 2.4rem !important;
  }
  .m-sm-5 {
    margin: 4.8rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.4rem !important;
    margin-left: 0.4rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }
  .mx-sm-3 {
    margin-right: 1.6rem !important;
    margin-left: 1.6rem !important;
  }
  .mx-sm-4 {
    margin-right: 2.4rem !important;
    margin-left: 2.4rem !important;
  }
  .mx-sm-5 {
    margin-right: 4.8rem !important;
    margin-left: 4.8rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .my-sm-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  .my-sm-3 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
  .my-sm-4 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .my-sm-5 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.4rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.8rem !important;
  }
  .mt-sm-3 {
    margin-top: 1.6rem !important;
  }
  .mt-sm-4 {
    margin-top: 2.4rem !important;
  }
  .mt-sm-5 {
    margin-top: 4.8rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.4rem !important;
  }
  .me-sm-2 {
    margin-right: 0.8rem !important;
  }
  .me-sm-3 {
    margin-right: 1.6rem !important;
  }
  .me-sm-4 {
    margin-right: 2.4rem !important;
  }
  .me-sm-5 {
    margin-right: 4.8rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.4rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.8rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1.6rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 2.4rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 4.8rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.4rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.8rem !important;
  }
  .ms-sm-3 {
    margin-left: 1.6rem !important;
  }
  .ms-sm-4 {
    margin-left: 2.4rem !important;
  }
  .ms-sm-5 {
    margin-left: 4.8rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.4rem !important;
  }
  .p-sm-2 {
    padding: 0.8rem !important;
  }
  .p-sm-3 {
    padding: 1.6rem !important;
  }
  .p-sm-4 {
    padding: 2.4rem !important;
  }
  .p-sm-5 {
    padding: 4.8rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.4rem !important;
    padding-left: 0.4rem !important;
  }
  .px-sm-2 {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
  }
  .px-sm-3 {
    padding-right: 1.6rem !important;
    padding-left: 1.6rem !important;
  }
  .px-sm-4 {
    padding-right: 2.4rem !important;
    padding-left: 2.4rem !important;
  }
  .px-sm-5 {
    padding-right: 4.8rem !important;
    padding-left: 4.8rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  .py-sm-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
  .py-sm-3 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .py-sm-4 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
  .py-sm-5 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.4rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.8rem !important;
  }
  .pt-sm-3 {
    padding-top: 1.6rem !important;
  }
  .pt-sm-4 {
    padding-top: 2.4rem !important;
  }
  .pt-sm-5 {
    padding-top: 4.8rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.4rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.8rem !important;
  }
  .pe-sm-3 {
    padding-right: 1.6rem !important;
  }
  .pe-sm-4 {
    padding-right: 2.4rem !important;
  }
  .pe-sm-5 {
    padding-right: 4.8rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.4rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.8rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1.6rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 2.4rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 4.8rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.4rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.8rem !important;
  }
  .ps-sm-3 {
    padding-left: 1.6rem !important;
  }
  .ps-sm-4 {
    padding-left: 2.4rem !important;
  }
  .ps-sm-5 {
    padding-left: 4.8rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.4rem !important;
  }
  .gap-sm-2 {
    gap: 0.8rem !important;
  }
  .gap-sm-3 {
    gap: 1.6rem !important;
  }
  .gap-sm-4 {
    gap: 2.4rem !important;
  }
  .gap-sm-5 {
    gap: 4.8rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.4rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.8rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1.6rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 2.4rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 4.8rem !important;
  }
  .column-gap-sm-0 {
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    column-gap: 0.4rem !important;
  }
  .column-gap-sm-2 {
    column-gap: 0.8rem !important;
  }
  .column-gap-sm-3 {
    column-gap: 1.6rem !important;
  }
  .column-gap-sm-4 {
    column-gap: 2.4rem !important;
  }
  .column-gap-sm-5 {
    column-gap: 4.8rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 770px) {
  .object-fit-md-contain {
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.4rem !important;
  }
  .m-md-2 {
    margin: 0.8rem !important;
  }
  .m-md-3 {
    margin: 1.6rem !important;
  }
  .m-md-4 {
    margin: 2.4rem !important;
  }
  .m-md-5 {
    margin: 4.8rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.4rem !important;
    margin-left: 0.4rem !important;
  }
  .mx-md-2 {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }
  .mx-md-3 {
    margin-right: 1.6rem !important;
    margin-left: 1.6rem !important;
  }
  .mx-md-4 {
    margin-right: 2.4rem !important;
    margin-left: 2.4rem !important;
  }
  .mx-md-5 {
    margin-right: 4.8rem !important;
    margin-left: 4.8rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .my-md-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  .my-md-3 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
  .my-md-4 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .my-md-5 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.4rem !important;
  }
  .mt-md-2 {
    margin-top: 0.8rem !important;
  }
  .mt-md-3 {
    margin-top: 1.6rem !important;
  }
  .mt-md-4 {
    margin-top: 2.4rem !important;
  }
  .mt-md-5 {
    margin-top: 4.8rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.4rem !important;
  }
  .me-md-2 {
    margin-right: 0.8rem !important;
  }
  .me-md-3 {
    margin-right: 1.6rem !important;
  }
  .me-md-4 {
    margin-right: 2.4rem !important;
  }
  .me-md-5 {
    margin-right: 4.8rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.4rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.8rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1.6rem !important;
  }
  .mb-md-4 {
    margin-bottom: 2.4rem !important;
  }
  .mb-md-5 {
    margin-bottom: 4.8rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.4rem !important;
  }
  .ms-md-2 {
    margin-left: 0.8rem !important;
  }
  .ms-md-3 {
    margin-left: 1.6rem !important;
  }
  .ms-md-4 {
    margin-left: 2.4rem !important;
  }
  .ms-md-5 {
    margin-left: 4.8rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.4rem !important;
  }
  .p-md-2 {
    padding: 0.8rem !important;
  }
  .p-md-3 {
    padding: 1.6rem !important;
  }
  .p-md-4 {
    padding: 2.4rem !important;
  }
  .p-md-5 {
    padding: 4.8rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.4rem !important;
    padding-left: 0.4rem !important;
  }
  .px-md-2 {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
  }
  .px-md-3 {
    padding-right: 1.6rem !important;
    padding-left: 1.6rem !important;
  }
  .px-md-4 {
    padding-right: 2.4rem !important;
    padding-left: 2.4rem !important;
  }
  .px-md-5 {
    padding-right: 4.8rem !important;
    padding-left: 4.8rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  .py-md-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
  .py-md-3 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .py-md-4 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
  .py-md-5 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.4rem !important;
  }
  .pt-md-2 {
    padding-top: 0.8rem !important;
  }
  .pt-md-3 {
    padding-top: 1.6rem !important;
  }
  .pt-md-4 {
    padding-top: 2.4rem !important;
  }
  .pt-md-5 {
    padding-top: 4.8rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.4rem !important;
  }
  .pe-md-2 {
    padding-right: 0.8rem !important;
  }
  .pe-md-3 {
    padding-right: 1.6rem !important;
  }
  .pe-md-4 {
    padding-right: 2.4rem !important;
  }
  .pe-md-5 {
    padding-right: 4.8rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.4rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.8rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1.6rem !important;
  }
  .pb-md-4 {
    padding-bottom: 2.4rem !important;
  }
  .pb-md-5 {
    padding-bottom: 4.8rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.4rem !important;
  }
  .ps-md-2 {
    padding-left: 0.8rem !important;
  }
  .ps-md-3 {
    padding-left: 1.6rem !important;
  }
  .ps-md-4 {
    padding-left: 2.4rem !important;
  }
  .ps-md-5 {
    padding-left: 4.8rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.4rem !important;
  }
  .gap-md-2 {
    gap: 0.8rem !important;
  }
  .gap-md-3 {
    gap: 1.6rem !important;
  }
  .gap-md-4 {
    gap: 2.4rem !important;
  }
  .gap-md-5 {
    gap: 4.8rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.4rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.8rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1.6rem !important;
  }
  .row-gap-md-4 {
    row-gap: 2.4rem !important;
  }
  .row-gap-md-5 {
    row-gap: 4.8rem !important;
  }
  .column-gap-md-0 {
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    column-gap: 0.4rem !important;
  }
  .column-gap-md-2 {
    column-gap: 0.8rem !important;
  }
  .column-gap-md-3 {
    column-gap: 1.6rem !important;
  }
  .column-gap-md-4 {
    column-gap: 2.4rem !important;
  }
  .column-gap-md-5 {
    column-gap: 4.8rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1026px) {
  .object-fit-l-contain {
    object-fit: contain !important;
  }
  .object-fit-l-cover {
    object-fit: cover !important;
  }
  .object-fit-l-fill {
    object-fit: fill !important;
  }
  .object-fit-l-scale {
    object-fit: scale-down !important;
  }
  .object-fit-l-none {
    object-fit: none !important;
  }
  .d-l-inline {
    display: inline !important;
  }
  .d-l-inline-block {
    display: inline-block !important;
  }
  .d-l-block {
    display: block !important;
  }
  .d-l-grid {
    display: grid !important;
  }
  .d-l-inline-grid {
    display: inline-grid !important;
  }
  .d-l-table {
    display: table !important;
  }
  .d-l-table-row {
    display: table-row !important;
  }
  .d-l-table-cell {
    display: table-cell !important;
  }
  .d-l-flex {
    display: flex !important;
  }
  .d-l-inline-flex {
    display: inline-flex !important;
  }
  .d-l-none {
    display: none !important;
  }
  .flex-l-fill {
    flex: 1 1 auto !important;
  }
  .flex-l-row {
    flex-direction: row !important;
  }
  .flex-l-column {
    flex-direction: column !important;
  }
  .flex-l-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-l-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-l-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-l-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-l-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-l-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-l-wrap {
    flex-wrap: wrap !important;
  }
  .flex-l-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-l-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-l-start {
    justify-content: flex-start !important;
  }
  .justify-content-l-end {
    justify-content: flex-end !important;
  }
  .justify-content-l-center {
    justify-content: center !important;
  }
  .justify-content-l-between {
    justify-content: space-between !important;
  }
  .justify-content-l-around {
    justify-content: space-around !important;
  }
  .justify-content-l-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-l-start {
    align-items: flex-start !important;
  }
  .align-items-l-end {
    align-items: flex-end !important;
  }
  .align-items-l-center {
    align-items: center !important;
  }
  .align-items-l-baseline {
    align-items: baseline !important;
  }
  .align-items-l-stretch {
    align-items: stretch !important;
  }
  .align-content-l-start {
    align-content: flex-start !important;
  }
  .align-content-l-end {
    align-content: flex-end !important;
  }
  .align-content-l-center {
    align-content: center !important;
  }
  .align-content-l-between {
    align-content: space-between !important;
  }
  .align-content-l-around {
    align-content: space-around !important;
  }
  .align-content-l-stretch {
    align-content: stretch !important;
  }
  .align-self-l-auto {
    align-self: auto !important;
  }
  .align-self-l-start {
    align-self: flex-start !important;
  }
  .align-self-l-end {
    align-self: flex-end !important;
  }
  .align-self-l-center {
    align-self: center !important;
  }
  .align-self-l-baseline {
    align-self: baseline !important;
  }
  .align-self-l-stretch {
    align-self: stretch !important;
  }
  .order-l-first {
    order: -1 !important;
  }
  .order-l-0 {
    order: 0 !important;
  }
  .order-l-1 {
    order: 1 !important;
  }
  .order-l-2 {
    order: 2 !important;
  }
  .order-l-3 {
    order: 3 !important;
  }
  .order-l-4 {
    order: 4 !important;
  }
  .order-l-5 {
    order: 5 !important;
  }
  .order-l-last {
    order: 6 !important;
  }
  .m-l-0 {
    margin: 0 !important;
  }
  .m-l-1 {
    margin: 0.4rem !important;
  }
  .m-l-2 {
    margin: 0.8rem !important;
  }
  .m-l-3 {
    margin: 1.6rem !important;
  }
  .m-l-4 {
    margin: 2.4rem !important;
  }
  .m-l-5 {
    margin: 4.8rem !important;
  }
  .m-l-auto {
    margin: auto !important;
  }
  .mx-l-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-l-1 {
    margin-right: 0.4rem !important;
    margin-left: 0.4rem !important;
  }
  .mx-l-2 {
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }
  .mx-l-3 {
    margin-right: 1.6rem !important;
    margin-left: 1.6rem !important;
  }
  .mx-l-4 {
    margin-right: 2.4rem !important;
    margin-left: 2.4rem !important;
  }
  .mx-l-5 {
    margin-right: 4.8rem !important;
    margin-left: 4.8rem !important;
  }
  .mx-l-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-l-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-l-1 {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .my-l-2 {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  .my-l-3 {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
  .my-l-4 {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .my-l-5 {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
  .my-l-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-l-0 {
    margin-top: 0 !important;
  }
  .mt-l-1 {
    margin-top: 0.4rem !important;
  }
  .mt-l-2 {
    margin-top: 0.8rem !important;
  }
  .mt-l-3 {
    margin-top: 1.6rem !important;
  }
  .mt-l-4 {
    margin-top: 2.4rem !important;
  }
  .mt-l-5 {
    margin-top: 4.8rem !important;
  }
  .mt-l-auto {
    margin-top: auto !important;
  }
  .me-l-0 {
    margin-right: 0 !important;
  }
  .me-l-1 {
    margin-right: 0.4rem !important;
  }
  .me-l-2 {
    margin-right: 0.8rem !important;
  }
  .me-l-3 {
    margin-right: 1.6rem !important;
  }
  .me-l-4 {
    margin-right: 2.4rem !important;
  }
  .me-l-5 {
    margin-right: 4.8rem !important;
  }
  .me-l-auto {
    margin-right: auto !important;
  }
  .mb-l-0 {
    margin-bottom: 0 !important;
  }
  .mb-l-1 {
    margin-bottom: 0.4rem !important;
  }
  .mb-l-2 {
    margin-bottom: 0.8rem !important;
  }
  .mb-l-3 {
    margin-bottom: 1.6rem !important;
  }
  .mb-l-4 {
    margin-bottom: 2.4rem !important;
  }
  .mb-l-5 {
    margin-bottom: 4.8rem !important;
  }
  .mb-l-auto {
    margin-bottom: auto !important;
  }
  .ms-l-0 {
    margin-left: 0 !important;
  }
  .ms-l-1 {
    margin-left: 0.4rem !important;
  }
  .ms-l-2 {
    margin-left: 0.8rem !important;
  }
  .ms-l-3 {
    margin-left: 1.6rem !important;
  }
  .ms-l-4 {
    margin-left: 2.4rem !important;
  }
  .ms-l-5 {
    margin-left: 4.8rem !important;
  }
  .ms-l-auto {
    margin-left: auto !important;
  }
  .p-l-0 {
    padding: 0 !important;
  }
  .p-l-1 {
    padding: 0.4rem !important;
  }
  .p-l-2 {
    padding: 0.8rem !important;
  }
  .p-l-3 {
    padding: 1.6rem !important;
  }
  .p-l-4 {
    padding: 2.4rem !important;
  }
  .p-l-5 {
    padding: 4.8rem !important;
  }
  .px-l-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-l-1 {
    padding-right: 0.4rem !important;
    padding-left: 0.4rem !important;
  }
  .px-l-2 {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
  }
  .px-l-3 {
    padding-right: 1.6rem !important;
    padding-left: 1.6rem !important;
  }
  .px-l-4 {
    padding-right: 2.4rem !important;
    padding-left: 2.4rem !important;
  }
  .px-l-5 {
    padding-right: 4.8rem !important;
    padding-left: 4.8rem !important;
  }
  .py-l-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-l-1 {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  .py-l-2 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
  .py-l-3 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .py-l-4 {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
  .py-l-5 {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
  .pt-l-0 {
    padding-top: 0 !important;
  }
  .pt-l-1 {
    padding-top: 0.4rem !important;
  }
  .pt-l-2 {
    padding-top: 0.8rem !important;
  }
  .pt-l-3 {
    padding-top: 1.6rem !important;
  }
  .pt-l-4 {
    padding-top: 2.4rem !important;
  }
  .pt-l-5 {
    padding-top: 4.8rem !important;
  }
  .pe-l-0 {
    padding-right: 0 !important;
  }
  .pe-l-1 {
    padding-right: 0.4rem !important;
  }
  .pe-l-2 {
    padding-right: 0.8rem !important;
  }
  .pe-l-3 {
    padding-right: 1.6rem !important;
  }
  .pe-l-4 {
    padding-right: 2.4rem !important;
  }
  .pe-l-5 {
    padding-right: 4.8rem !important;
  }
  .pb-l-0 {
    padding-bottom: 0 !important;
  }
  .pb-l-1 {
    padding-bottom: 0.4rem !important;
  }
  .pb-l-2 {
    padding-bottom: 0.8rem !important;
  }
  .pb-l-3 {
    padding-bottom: 1.6rem !important;
  }
  .pb-l-4 {
    padding-bottom: 2.4rem !important;
  }
  .pb-l-5 {
    padding-bottom: 4.8rem !important;
  }
  .ps-l-0 {
    padding-left: 0 !important;
  }
  .ps-l-1 {
    padding-left: 0.4rem !important;
  }
  .ps-l-2 {
    padding-left: 0.8rem !important;
  }
  .ps-l-3 {
    padding-left: 1.6rem !important;
  }
  .ps-l-4 {
    padding-left: 2.4rem !important;
  }
  .ps-l-5 {
    padding-left: 4.8rem !important;
  }
  .gap-l-0 {
    gap: 0 !important;
  }
  .gap-l-1 {
    gap: 0.4rem !important;
  }
  .gap-l-2 {
    gap: 0.8rem !important;
  }
  .gap-l-3 {
    gap: 1.6rem !important;
  }
  .gap-l-4 {
    gap: 2.4rem !important;
  }
  .gap-l-5 {
    gap: 4.8rem !important;
  }
  .row-gap-l-0 {
    row-gap: 0 !important;
  }
  .row-gap-l-1 {
    row-gap: 0.4rem !important;
  }
  .row-gap-l-2 {
    row-gap: 0.8rem !important;
  }
  .row-gap-l-3 {
    row-gap: 1.6rem !important;
  }
  .row-gap-l-4 {
    row-gap: 2.4rem !important;
  }
  .row-gap-l-5 {
    row-gap: 4.8rem !important;
  }
  .column-gap-l-0 {
    column-gap: 0 !important;
  }
  .column-gap-l-1 {
    column-gap: 0.4rem !important;
  }
  .column-gap-l-2 {
    column-gap: 0.8rem !important;
  }
  .column-gap-l-3 {
    column-gap: 1.6rem !important;
  }
  .column-gap-l-4 {
    column-gap: 2.4rem !important;
  }
  .column-gap-l-5 {
    column-gap: 4.8rem !important;
  }
  .text-l-start {
    text-align: left !important;
  }
  .text-l-end {
    text-align: right !important;
  }
  .text-l-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/*# sourceMappingURL=styles.css.map */
