@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
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,
sub,
sup,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*!
 * Bootstrap Grid v5.3.2 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: -webkit-calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: -webkit-calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -webkit-calc(-1 * var(--bs-gutter-y));
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: -webkit-calc(-0.5 * var(--bs-gutter-x));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: -webkit-calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: -webkit-calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: -webkit-calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.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: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !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.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

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

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !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.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !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.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !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.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !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.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  -webkit-box-shadow: var(--bs-btn-focus-box-shadow);
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  -webkit-box-shadow: var(--bs-btn-focus-box-shadow);
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  -webkit-box-shadow: var(--bs-btn-focus-box-shadow);
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: -webkit-calc(var(--bs-border-width) * 2) solid currentcolor;
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #a6b5cc;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #b5b6b7;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #a7b9b1;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #a6c3ca;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #ccc2a4;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #c6acae;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #c6c7c8;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #4d5154;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: -webkit-calc(0.375rem + var(--bs-border-width));
  padding-top: calc(0.375rem + var(--bs-border-width));
  padding-bottom: -webkit-calc(0.375rem + var(--bs-border-width));
  padding-bottom: calc(0.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: -webkit-calc(0.5rem + var(--bs-border-width));
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: -webkit-calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: -webkit-calc(0.25rem + var(--bs-border-width));
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: -webkit-calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::-webkit-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: -webkit-calc(1.5em + 0.5rem + -webkit-calc(var(--bs-border-width) * 2));
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: -webkit-calc(1.5em + 1rem + -webkit-calc(var(--bs-border-width) * 2));
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: -webkit-calc(1.5em + 0.75rem + -webkit-calc(var(--bs-border-width) * 2));
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: -webkit-calc(1.5em + 0.5rem + -webkit-calc(var(--bs-border-width) * 2));
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: -webkit-calc(1.5em + 1rem + -webkit-calc(var(--bs-border-width) * 2));
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: -webkit-calc(1.5em + 0.75rem + -webkit-calc(var(--bs-border-width) * 2));
  height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color.form-control-sm {
  height: -webkit-calc(1.5em + 0.5rem + -webkit-calc(var(--bs-border-width) * 2));
  height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: -webkit-calc(1.5em + 1rem + -webkit-calc(var(--bs-border-width) * 2));
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    -webkit-transition: none;
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  -webkit-transition: background-position 0.15s ease-in-out;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    -webkit-transition: none;
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.65;
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  -webkit-appearance: none;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  -moz-appearance: none;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: -webkit-calc(3.5rem + -webkit-calc(var(--bs-border-width) * 2));
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: -webkit-calc(3.5rem + -webkit-calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    -webkit-transition: none;
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-webkit-input-placeholder, .form-floating > .form-control-plaintext::-webkit-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder, .form-floating > .form-control-plaintext:-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder, .form-floating > .form-control-plaintext::-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder), .form-floating > .form-control-plaintext:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-select ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}
.form-floating > :disabled ~ label::after,
.form-floating > .form-control:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -webkit-calc(var(--bs-border-width) * -1);
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--bs-form-valid-border-color);
  padding-right: -webkit-calc(1.5em + 0.75rem);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right -webkit-calc(0.375em + 0.1875rem) center;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: -webkit-calc(0.75em + 0.375rem) -webkit-calc(0.75em + 0.375rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: -webkit-calc(1.5em + 0.75rem);
  padding-right: calc(1.5em + 0.75rem);
  background-position: top -webkit-calc(0.375em + 0.1875rem) right -webkit-calc(0.375em + 0.1875rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, -webkit-calc(0.75em + 0.375rem) -webkit-calc(0.75em + 0.375rem);
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: -webkit-calc(3rem + -webkit-calc(1.5em + 0.75rem));
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
  padding-right: -webkit-calc(1.5em + 0.75rem);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right -webkit-calc(0.375em + 0.1875rem) center;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: -webkit-calc(0.75em + 0.375rem) -webkit-calc(0.75em + 0.375rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: -webkit-calc(1.5em + 0.75rem);
  padding-right: calc(1.5em + 0.75rem);
  background-position: top -webkit-calc(0.375em + 0.1875rem) right -webkit-calc(0.375em + 0.1875rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, -webkit-calc(0.75em + 0.375rem) -webkit-calc(0.75em + 0.375rem);
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: -webkit-calc(3rem + -webkit-calc(1.5em + 0.75rem));
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: -webkit-calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  -ms-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: -webkit-calc(100% - var(--bs-modal-margin) * 2);
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: -webkit-calc(100% - var(--bs-modal-margin) * 2);
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: -webkit-calc(var(--bs-modal-header-padding-y) * 0.5) -webkit-calc(var(--bs-modal-header-padding-x) * 0.5);
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: -webkit-calc(-0.5 * var(--bs-modal-header-padding-y)) -webkit-calc(-0.5 * var(--bs-modal-header-padding-x)) -webkit-calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: -webkit-calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: -webkit-calc(var(--bs-modal-footer-gap) * 0.5);
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: -webkit-calc(var(--swiper-navigation-size) / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: -webkit-calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: -webkit-calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: -webkit-calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

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

html {
  font-size: 10px;
  scroll-padding-top: 200px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.2;
  background: #ffffff;
}
body.hide-ovrflw {
  overflow: hidden;
}

.container {
  display: block;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 970px;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.innerpt {
  padding-top: 48px;
}
@media only screen and (min-width: 768px) {
  .innerpt {
    padding-top: 113px;
  }
}

.innerpb {
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) {
  .innerpb {
    padding-bottom: 120px;
  }
}
.innerpb-sm {
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .innerpb-sm {
    padding-bottom: 90px;
  }
}

.bg-gray {
  background-color: #f5f5f5;
}

strong,
b {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}

.heading-primary {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  text-align: center;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.142;
  text-transform: uppercase;
}
.heading-primary.-black {
  color: #333333;
}
.heading-primary.-lft {
  text-align: left;
}
.heading-primary span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 7px;
}
@media only screen and (min-width: 768px) {
  .heading-primary span {
    margin-top: 0;
  }
}
.heading-primary sub {
  font-size: 2.8rem;
}
.heading-sec {
  color: #333333;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (min-width: 576px) {
  .heading-sec {
    font-size: 2.6;
  }
}
@media only screen and (min-width: 768px) {
  .heading-sec {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 992px) {
  .heading-sec {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .heading-sec.-fs-sm {
    font-size: 2.2rem;
  }
}
.heading-sec span.line {
  position: relative;
}
.heading-sec span.line:after, .heading-sec span.line:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #333333;
  top: 50%;
}
.heading-sec span.line:after {
  left: -60px;
}
@media only screen and (min-width: 576px) {
  .heading-sec span.line:after {
    left: -70px;
  }
}
.heading-sec span.line:before {
  right: -60px;
}
@media only screen and (min-width: 576px) {
  .heading-sec span.line:before {
    right: -70px;
  }
}
.heading-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}
@media only screen and (min-width: 576px) {
  .heading-ttl {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .heading-ttl {
    font-size: 3.3rem;
  }
}
@media only screen and (min-width: 992px) {
  .heading-ttl {
    font-size: 3.6rem;
  }
}

.subtitle {
  color: #ffffff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 16px;
}
@media only screen and (min-width: 375px) {
  .subtitle {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .subtitle {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .subtitle.-sm {
    font-size: 1.4rem;
  }
}

.hiroshima-desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .hiroshima-desc {
    font-size: 1.6rem;
  }
}
.hiroshima-desc.-black {
  color: #333333;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.btn-primary {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333;
  background-color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 180px;
  width: auto;
  margin: 0 auto;
  gap: 10px;
  text-decoration: none;
  border-radius: 40px;
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-align: left;
  padding: 15px 20px 15px 25px;
}
.btn-primary:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg id='Group_51' data-name='Group 51' transform='translate(-1258 -759)'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)' fill='%23333'/%3E%3Cg id='Ellipse_1' data-name='Ellipse 1' transform='translate(1258 759)' fill='none' stroke='%23707070' stroke-width='2'%3E%3Ccircle cx='15' cy='15' r='15' stroke='none'/%3E%3Ccircle cx='15' cy='15' r='14' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 30px;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: inline-block;
}
.btn-primary:hover:after {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.btn-primary.-xlg {
  text-align: end;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 15px 20px 15px 29px;
}
.btn-primary.-xxlg {
  width: 100%;
  max-width: 270px;
}
.btn-primary.-black {
  background-color: #000;
  color: #fff;
  margin: 10px 0 0;
}
.btn-primary.-black:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg id='Group_6105' data-name='Group 6105' transform='translate(-1323 -1210)'%3E%3Cg id='Group_51' data-name='Group 51' transform='translate(65 451)'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)' fill='%23fff'/%3E%3Cg id='Ellipse_1' data-name='Ellipse 1' transform='translate(1258 759)' fill='none' stroke='%23707070' stroke-width='2'%3E%3Ccircle cx='15' cy='15' r='15' stroke='none'/%3E%3Ccircle cx='15' cy='15' r='14' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.btn-primary.-transparent {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-primary.-transparent:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg id='Group_51' data-name='Group 51' transform='translate(-1258 -759)'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)' fill='%23fff'/%3E%3Cg id='Ellipse_1' data-name='Ellipse 1' transform='translate(1258 759)' fill='none' stroke='%23fff' stroke-width='2'%3E%3Ccircle cx='15' cy='15' r='15' stroke='none'/%3E%3Ccircle cx='15' cy='15' r='14' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.btn-primary.-lft {
  margin: 10px auto 0;
}
@media only screen and (min-width: 768px) {
  .btn-primary.-lft-md {
    margin: 10px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .btn-primary.-pcm0 {
    margin: 0;
  }
}
.btn-primary.-rental {
  font-size: 1.8rem;
  background-color: #333333;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  padding: 24px 10px;
  gap: 10px;
  line-height: 1.4;
  border: solid 1px #333333;
}
@media only screen and (max-width: 575px) {
  .btn-primary.-rental {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) {
  .btn-primary.-rental {
    padding: 34px 10px;
    gap: 40px;
  }
}
.btn-primary.-rental:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg id='Group_6262' data-name='Group 6262' transform='translate(-1323 -1210)'%3E%3Cg id='Group_6263' data-name='Group 6263'%3E%3Cg id='Group_51' data-name='Group 51' transform='translate(65 451)'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)' fill='%23fff'/%3E%3Cg id='Ellipse_1' data-name='Ellipse 1' transform='translate(1258 759)' fill='none' stroke='%23fff' stroke-width='2'%3E%3Ccircle cx='15' cy='15' r='15' stroke='none'/%3E%3Ccircle cx='15' cy='15' r='14' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.btn-primary.-rental:hover {
  background-color: #ffffff;
  color: #333333;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.btn-primary.-rental:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg id='Group_6262' data-name='Group 6262' transform='translate(-1323 -1210)'%3E%3Cg id='Group_6263' data-name='Group 6263'%3E%3Cg id='Group_51' data-name='Group 51' transform='translate(65 451)'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)' fill='%23333'/%3E%3Cg id='Ellipse_1' data-name='Ellipse 1' transform='translate(1258 759)' fill='none' stroke='%23333' stroke-width='2'%3E%3Ccircle cx='15' cy='15' r='15' stroke='none'/%3E%3Ccircle cx='15' cy='15' r='14' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.btn-submit {
  cursor: pointer;
  min-width: 180px;
  max-width: 200px;
  width: 100%;
  padding: 15px 20px 15px 25px;
  background-color: #000000;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-align: left;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 767px) {
  .btn-submit {
    min-width: 150px;
  }
}
.btn-submit:after {
  content: "";
  display: inline-block;
  min-width: 30px;
  width: 30px;
  height: 30px;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg id='Group_6105' data-name='Group 6105' transform='translate(-1323 -1210)'%3E%3Cg id='Group_51' data-name='Group 51' transform='translate(65 451)'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)' fill='%23fff'/%3E%3Cg id='Ellipse_1' data-name='Ellipse 1' transform='translate(1258 759)' fill='none' stroke='%23707070' stroke-width='2'%3E%3Ccircle cx='15' cy='15' r='15' stroke='none'/%3E%3Ccircle cx='15' cy='15' r='14' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.btn-submit:hover {
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  color: #333333;
  background: #ffffff;
}
.btn-submit:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg id='Group_51' data-name='Group 51' transform='translate(-1258 -759)'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)' fill='%23333'/%3E%3Cg id='Ellipse_1' data-name='Ellipse 1' transform='translate(1258 759)' fill='none' stroke='%23707070' stroke-width='2'%3E%3Ccircle cx='15' cy='15' r='15' stroke='none'/%3E%3Ccircle cx='15' cy='15' r='14' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.btn-submit.-back {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.btn-submit.-back:after {
  margin-left: unset;
  margin-right: auto;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.btn-submit.-back:hover:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.btn-submit.-confirm {
  border: none;
  padding: 15px 16px 15px 30px;
}
.btn-submit.-confirm:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg id='Group_51' data-name='Group 51' transform='translate(-1258 -759)'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)' fill='%23333'/%3E%3Cg id='Ellipse_1' data-name='Ellipse 1' transform='translate(1258 759)' fill='none' stroke='%23707070' stroke-width='2'%3E%3Ccircle cx='15' cy='15' r='15' stroke='none'/%3E%3Ccircle cx='15' cy='15' r='14' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.scroll-top {
  width: 50px;
  height: 50px;
  border: 2px solid #999999;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.scroll-top::after {
  content: "";
  width: 20px;
  height: 25px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.213' height='21.213' viewBox='0 0 21.213 21.213'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M15,15H0V0H3.333V11.667H15Z' transform='translate(10.607 21.213) rotate(-135)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: rotate(-90deg) translateX(-3px);
  -ms-transform: rotate(-90deg) translateX(-3px);
  transform: rotate(-90deg) translateX(-3px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.scroll-top:hover {
  background-color: #ffffff;
}
.scroll-top:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.213' height='21.213' viewBox='0 0 21.213 21.213'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23333;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M15,15H0V0H3.333V11.667H15Z' transform='translate(10.607 21.213) rotate(-135)'/%3E%3C/svg%3E");
  -webkit-transform: rotate(-90deg) translateX(-1px);
  -ms-transform: rotate(-90deg) translateX(-1px);
  transform: rotate(-90deg) translateX(-1px);
}

.banner {
  overflow: hidden;
  width: 100%;
  min-height: 300px;
  background-color: #333333;
  position: relative;
  isolation: isolate;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .banner {
    min-height: 400px;
  }
}
.banner:hover > img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.banner:hover .btn-primary {
  background-color: #ffffff;
  color: #333333;
}
.banner:hover .btn-primary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23999;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-1258 -759)'%3E%3Cpath d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)'/%3E%3Cpath class='a' d='M15,2A13,13,0,0,0,5.808,24.192,13,13,0,0,0,24.192,5.808,12.915,12.915,0,0,0,15,2m0-2A15,15,0,1,1,0,15,15,15,0,0,1,15,0Z' transform='translate(1258 759)'/%3E%3C/g%3E%3C/svg%3E");
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #000000;
  opacity: 0.5;
}
.banner-icon {
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .banner-icon {
    margin-bottom: 25px;
  }
}
.banner > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.banner-wrapper {
  width: 100%;
  text-align: center;
}
.banner-wrapper .heading-primary {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .banner-wrapper .heading-primary {
    margin-bottom: 22px;
  }
}
@media only screen and (min-width: 768px) {
  .banner-wrapper .subtitle {
    margin-bottom: 29px;
  }
}
.banner .btn-primary {
  cursor: pointer;
}
.banner .btn-primary:hover {
  opacity: 0.7;
}
.banner .btn-primary:hover::after {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.sliders__swiper {
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sliders__swiper.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.sliders__swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 300/180;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 575px) {
  .sliders__swiper .swiper-slide img {
    height: 180px;
  }
}

@media only screen and (max-width: 767px) {
  .park.section-banner {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .park .heading-primary {
    font-size: 3.2rem;
    line-height: 1.1875;
  }
}

.floating-banner {
  min-width: 180px;
  display: none;
}
@media only screen and (min-width: 768px) {
  .floating-banner {
    background-color: rgba(51, 51, 51, 0.8);
    padding: 7px 8px 8px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    position: fixed;
    bottom: 10px !important;
    right: 20px;
    z-index: 99;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
.floating-banner__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.floating-banner__img img {
  aspect-ratio: 50/50;
  -o-object-fit: cover;
  object-fit: cover;
}
.floating-banner__ttl {
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.28;
}
.floating-banner__txt {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.41;
}
.floating-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 9px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.213' height='21.213' viewBox='0 0 21.213 21.213'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M15,15H0V0H3.333V11.667H15Z' transform='translate(10.607 21.213) rotate(-135)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.floating-banner:hover {
  opacity: 0.7;
}
.floating-banner.hide {
  opacity: 0;
}
.floating-banner_02 {
  min-width: 180px;
  display: none;
}
@media only screen and (min-width: 768px) {
  .floating-banner_02 {
    background-color: rgba(51, 51, 51, 0.8);
    padding: 7px 8px 8px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 99;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
.floating-banner_02__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.floating-banner_02__img img {
  aspect-ratio: 50/50;
  -o-object-fit: cover;
  object-fit: cover;
}
.floating-banner_02__ttl {
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.28;
}
.floating-banner_02__txt {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.41;
}
.floating-banner_02::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 9px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.213' height='21.213' viewBox='0 0 21.213 21.213'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M15,15H0V0H3.333V11.667H15Z' transform='translate(10.607 21.213) rotate(-135)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.floating-banner_02:hover {
  opacity: 0.7;
}
.floating-banner_02.hide {
  opacity: 0;
}

.pagetitle-bar {
  position: relative;
  width: 100%;
  height: 270px;
  padding-bottom: 12px;
  margin-top: -60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #333333;
  z-index: 100;
}
@media only screen and (min-width: 768px) {
  .pagetitle-bar {
    margin-top: -140px;
    padding-bottom: 20px;
    height: 360px;
  }
}
.pagetitle-bar::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(../img/pagetitlebar/shadow-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 576px) {
  .pagetitle-bar::after {
    background-image: url(../img/pagetitlebar/shadow.png);
  }
}
.pagetitle-bar picture {
  display: block;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -3;
}
.pagetitle-bar picture::before {
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 20%;
}
@media only screen and (min-width: 768px) {
  .pagetitle-bar picture::before {
    content: "";
  }
}
.pagetitle-bar picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pagetitle-bar__ttl {
  margin-bottom: 42px;
}
@media only screen and (min-width: 768px) {
  .pagetitle-bar__ttl {
    margin-bottom: 34px;
  }
}
.pagetitle-bar .heading-primary span {
  margin-top: 10px;
}

.breadcrumb__wrapper {
  text-align: end;
  overflow: auto;
}
.breadcrumb__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px;
}
.breadcrumb__item {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}
.breadcrumb__item::before {
  content: "/";
  color: #ffffff;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
}
.breadcrumb__item:first-child::before {
  content: none;
}
.breadcrumb__link, .breadcrumb__active {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
  line-height: 1.41;
}
.breadcrumb__link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.breadcrumb__link:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.wp-content h1,
.wp-content h2,
.wp-content h3,
.wp-content h4,
.wp-content h5,
.wp-content h6 {
  color: #333333;
  line-height: 1.4;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .wp-content h1,
  .wp-content h2,
  .wp-content h3,
  .wp-content h4,
  .wp-content h5,
  .wp-content h6 {
    line-height: 1.6;
  }
}
.wp-content h1 {
  font-size: 3.8rem;
  margin-bottom: 32px;
}
.wp-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .wp-content h2 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .wp-content h2 {
    font-size: 3.2rem;
    margin-bottom: 26px;
  }
}
@media only screen and (min-width: 992px) {
  .wp-content h2 {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .wp-content h2 {
    font-size: 3.6rem;
  }
}
.wp-content h3 {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 20px;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 576px) {
  .wp-content h3 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .wp-content h3 {
    gap: 20px;
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 992px) {
  .wp-content h3 {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .wp-content h3 {
    font-size: 3rem;
  }
}
.wp-content h3:before, .wp-content h3:after {
  content: "";
  background-color: #333333;
  width: 20px;
  height: 1px;
}
@media only screen and (min-width: 768px) {
  .wp-content h3:before, .wp-content h3:after {
    width: 50px;
  }
}
.wp-content h3:after {
  content: none;
}
.wp-content h3.has-text-align-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 25px;
}
.wp-content h3.has-text-align-center:after {
  content: "";
}
.wp-content h4 {
  font-size: 2rem;
  color: #333333;
  line-height: 1.4;
  padding-bottom: 10px;
  margin-bottom: 35px;
  border-bottom: solid 1px #999999;
}
@media only screen and (min-width: 576px) {
  .wp-content h4 {
    font-size: 2.1rem;
  }
}
@media only screen and (min-width: 768px) {
  .wp-content h4 {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) {
  .wp-content h4 {
    font-size: 2.4rem;
  }
}
.wp-content h4.has-text-align-center {
  text-align: center;
}
.wp-content h5 {
  font-size: 1.8rem;
  line-height: 1.4;
  background-color: #333333;
  color: #ffffff;
  letter-spacing: 0.018em;
  padding: 12px 32px 12px 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .wp-content h5 {
    font-size: 1.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .wp-content h5 {
    font-size: 2rem;
    padding: 10px 20px;
  }
}
.wp-content h5.has-text-align-center {
  text-align: center;
}
.wp-content h6 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.016em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media only screen and (min-width: 768px) {
  .wp-content h6 {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }
}
.wp-content h6 span {
  font-size: 12px;
}
.wp-content h6:before {
  content: "";
  background-color: #333333;
  width: 8px;
  height: 8px;
}
.wp-content h6.has-text-align-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.wp-content h6.has-text-align-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.wp-content p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .wp-content p {
    font-size: 1.6rem;
  }
}
.wp-content a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333333;
  text-decoration: underline;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.wp-content a:hover {
  color: #f49a17;
}
.wp-content a.btn-primary {
  text-decoration: none;
}
.wp-content a.btn-primary:hover {
  color: #ffffff;
}
.wp-content ul,
.wp-content ol {
  margin-bottom: 40px;
}
.wp-content ul li,
.wp-content ol li {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
  position: relative;
}
.wp-content ul li::marker,
.wp-content ol li::marker {
  color: #000000;
}
.wp-content ul li:not(:last-child),
.wp-content ol li:not(:last-child) {
  margin-bottom: 16px;
}
.wp-content ul {
  margin-left: 20px;
}
.wp-content ul li {
  list-style-type: disc;
}
.wp-content ul li::marker {
  width: 10px;
  height: 10px;
}
.wp-content ol {
  margin-left: 26px;
}
.wp-content ol li {
  list-style-type: decimal-leading-zero;
  padding-left: 10px;
  font-weight: 400;
}
.wp-content ol li::marker {
  color: #000000;
}
.wp-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.wp-content blockquote {
  background-color: #f5f5f5;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333333;
  padding: 20px;
  margin-bottom: 30px;
}
.wp-content blockquote p {
  line-height: 1.6;
  padding-bottom: 0;
}
.wp-content strong {
  font-weight: 700;
}
.wp-content em {
  font-size: italic;
}
.wp-content .tbl {
  margin-bottom: 40px;
}
.wp-content .tbl-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .wp-content .tbl-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.wp-content .tbl p {
  line-height: 1.6;
  margin-bottom: 0;
  color: #333333;
  padding-bottom: 0;
  padding-top: 0;
}
.wp-content .tbl.-blk {
  overflow: auto;
}
.wp-content .tbl.-blk .tbl-wpr {
  border: solid 1px #efefef;
  border-bottom: none;
  border-radius: 4px;
}
@media only screen and (max-width: 1199px) {
  .wp-content .tbl.-blk .tbl-wpr {
    width: 940px;
  }
}
.wp-content .tbl.-blk .tbl-wpr > .tbl-flex:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.wp-content .tbl.-blk .tbl-wpr > .tbl-flex .tbl-txt {
  color: #ffffff;
  font-weight: 700;
  background-color: #333333;
  text-align: center;
  padding: 16px 0;
}
.wp-content .tbl.-blk .tbl-wpr > .tbl-flex .tbl-txt:first-child {
  border-top-left-radius: 4px;
}
.wp-content .tbl.-blk .tbl-wpr > .tbl-flex .tbl-txt:last-child {
  border-top-right-radius: 4px;
}
.wp-content .tbl.-blk .tbl-flex {
  border-bottom: solid 1px #efefef;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  background-color: #ffffff;
}
.wp-content .tbl.-blk .tbl-flex:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.wp-content .tbl.-blk .tbl-txt {
  border-bottom: none;
  border-right: none;
  width: 33.3333333333%;
  border-right: solid 1px #efefef;
  text-align: center;
  padding: 16px 5px 16px 14px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
}
.wp-content .tbl.-blk .tbl-txt:last-child {
  border-right: none;
}
.wp-content .tbl.-blk .tbl-txt.-rowspan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.wp-content .tbl.-blk .tbl-txt.-rowspan span {
  padding: 10px 5px;
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .wp-content .tbl.-blk .tbl-txt.-rowspan span {
    padding: 15px 20px;
  }
}
.wp-content .tbl.-blk .tbl-txt.-rowspan span:first-child {
  border-right: solid 1px #707070;
}
.wp-content .tbl.-smpl .tbl-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: solid 1px #efefef;
  padding: 20px 0;
}
@media only screen and (min-width: 768px) {
  .wp-content .tbl.-smpl .tbl-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
  }
}
.wp-content .tbl.-smpl .tbl-txt:first-child {
  width: 100%;
  font-weight: 700;
  color: #333333;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .wp-content .tbl.-smpl .tbl-txt:first-child {
    width: 170px;
    padding-bottom: 0;
  }
}
.wp-content .tbl.-smpl .tbl-txt:last-child {
  width: 100%;
  color: #333333;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media only screen and (min-width: 768px) {
  .wp-content .tbl.-smpl .tbl-txt:last-child {
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
    padding-left: 10px;
  }
}
.wp-content .wp-bootstrap-blocks-row {
  margin-bottom: 10px;
}
.wp-content .wp-bootstrap-blocks-row [class*=col-] {
  margin-bottom: 30px;
}
.wp-content .wp-bootstrap-blocks-row a {
  overflow: hidden;
  display: block;
}
.wp-content .wp-bootstrap-blocks-row a img {
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  display: block;
}
.wp-content .wp-bootstrap-blocks-row a:hover {
  opacity: 0.7;
}
.wp-content .wp-bootstrap-blocks-row a:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.wp-content .wp-bootstrap-blocks-row figcaption {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333333;
  margin-top: 20px;
  text-align: center;
  padding: 0 5px;
}
.wp-content .wp-bootstrap-blocks-row img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.wp-content .wp-bootstrap-blocks-row iframe {
  max-width: 100%;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .wp-content .wp-bootstrap-blocks-row iframe {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .wp-content .wp-bootstrap-blocks-row.fivecol .col-md-2 {
    width: 20%;
  }
}
.wp-content .wp-block-button .wp-block-button__link {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #000000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 200px;
  width: auto;
  margin: 0 auto;
  gap: 10px;
  text-decoration: none;
  border-radius: 40px;
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-align: left;
  padding: 15px 18px 15px 30px;
  margin-bottom: 2cap;
}
.wp-content .wp-block-button .wp-block-button__link:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg id='Group_6105' data-name='Group 6105' transform='translate(-1323 -1210)'%3E%3Cg id='Group_51' data-name='Group 51' transform='translate(65 451)'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)' fill='%23fff'/%3E%3Cg id='Ellipse_1' data-name='Ellipse 1' transform='translate(1258 759)' fill='none' stroke='%23707070' stroke-width='2'%3E%3Ccircle cx='15' cy='15' r='15' stroke='none'/%3E%3Ccircle cx='15' cy='15' r='14' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 30px;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: inline-block;
}
.wp-content .wp-block-group {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .wp-content .wp-block-group {
    margin-bottom: 60px;
  }
}

@media only screen and (min-width: 768px) {
  .wrpr-sm .custom-row.-qtr, .wrpr-lg .custom-row.-qtr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0 -15px 20px;
  }
}
.wrpr-sm .custom-row.-rev, .wrpr-lg .custom-row.-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.wrpr-sm .custom-col, .wrpr-lg .custom-col {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .wrpr-sm .custom-col.-qtr, .wrpr-lg .custom-col.-qtr {
    padding: 0 15px;
  }
}
.wrpr-sm .custom-col p,
.wrpr-sm .custom-col img, .wrpr-lg .custom-col p,
.wrpr-lg .custom-col img {
  margin-bottom: 0;
}
.wrpr-sm .custom-col.-qtr:first-child {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .wrpr-sm .custom-col.-qtr:first-child {
    max-width: 230px;
  }
}
@media only screen and (min-width: 768px) {
  .wrpr-lg .custom-col.-qtr:first-child {
    max-width: 300px;
    width: 100%;
  }
}

.mw_wp_form_confirm .contact__form-inp {
  color: #333333;
  border: 1px solid #c4c4c4;
  padding: 11px 20px;
}

.page__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .page__nav {
    gap: 20px;
    margin-bottom: 28px;
  }
}
.page__lnk {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 7.5px);
  flex: 0 0 -webkit-calc(50% - 7.5px);
  flex: 0 0 calc(50% - 7.5px);
  max-width: -webkit-calc(50% - 7.5px);
  max-width: calc(50% - 7.5px);
  background-color: #333333;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 0 13px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.42;
}
@media only screen and (min-width: 768px) {
  .page__lnk {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - 15px);
    flex: 0 0 -webkit-calc(25% - 15px);
    flex: 0 0 calc(25% - 15px);
    max-width: -webkit-calc(25% - 15px);
    max-width: calc(25% - 15px);
  }
}
.page__lnk::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.728' height='12.728' viewBox='0 0 12.728 12.728'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(-520.815 143.943) rotate(-45)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page__lnk:hover::after {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}
.nav-list__tab {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4285714286;
  padding: 2px;
  width: 69px;
  height: 40px;
  border-radius: 8px;
  text-align: center;
  text-transform: capitalize;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .nav-list__tab {
    font-size: 1.4rem;
    width: 120px;
  }
}
.nav-list__tab.active {
  background-color: #000;
  color: #ffffff;
  border-bottom: solid 1px #000;
  position: relative;
}
.nav-list__tab.active::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #000;
  bottom: -8px;
}
.nav-list__tab.active:hover {
  background-color: #000;
  color: #ffffff;
}
.nav-list__tab:hover {
  background-color: #f8f8f8;
  color: #333333;
}

.pagination {
  list-style-type: none;
}
.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
.pagination li {
  list-style-type: none;
}
.pagination__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}
.pagination__item a:hover {
  color: #333333;
}
.pagination__item a:hover:after {
  opacity: 0.7;
}
.pagination__item a:after {
  position: absolute;
  content: "";
  background-color: #333333;
  width: 19px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0;
}
.pagination__item.-dots a::after {
  content: none;
}
.pagination__item.-active a {
  color: #333333;
}
.pagination__item.-active a:after {
  opacity: 1;
}
.pagination__item.-prev a, .pagination__item.-next a {
  border-bottom: none;
}
.pagination__item.-prev a svg, .pagination__item.-next a svg {
  width: 4px;
  height: 6px;
  -o-object-fit: cover;
  object-fit: cover;
}
.pagination__item.-prev a:after, .pagination__item.-next a:after {
  content: none;
}

.facility {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.facility__inn {
  position: relative;
  padding-bottom: 141px;
  background-color: #333333;
}
@media only screen and (min-width: 768px) {
  .facility__inn {
    padding-bottom: 307px;
  }
}
.facility__bot {
  background-color: #efefef;
  position: relative;
  isolation: isolate;
}
.facility .heading-ttl {
  margin-bottom: 18px;
}
.facility__btm {
  max-width: 720px;
  margin-left: auto;
}
.facility__btm .hiroshima-desc:first-child {
  padding-bottom: 20px;
}
.facility__imgwrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.facility__imgwrap img {
  margin-top: -80px;
}
@media only screen and (min-width: 768px) {
  .facility__imgwrap img {
    margin-top: -250px;
  }
}
.facility__img {
  max-width: 1110px;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .facility__img {
    text-align: end;
  }
}
.facility__img img {
  border-radius: 8px 0 0 8px;
  aspect-ratio: 1110/500;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 575px) {
  .facility__img img {
    aspect-ratio: 360/162;
  }
}
@media only screen and (max-width: 767px) {
  .facility__img img {
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 15px);
  }
}
.facility__rotate {
  width: 100%;
  overflow: hidden;
  margin-top: -33px;
  margin-bottom: -40px;
  position: relative;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .facility__rotate {
    margin-top: -62px;
    margin-bottom: -44px;
  }
}
.facility__rotate-txt {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  white-space: nowrap;
  -webkit-animation: move-right-to-left linear 12.5s infinite;
  animation: move-right-to-left linear 12.5s infinite;
}
@media only screen and (min-width: 768px) {
  .facility__rotate-txt {
    font-size: 12rem;
    line-height: 1.333;
  }
}
@media only screen and (min-width: 768px) {
  .facility__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.facility .btn-primary {
  margin-top: 30px;
  padding: 15px 24px 15px 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .facility .btn-primary {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .facility__btn {
    text-align: center;
  }
}
.facility__peace {
  margin-top: 30px;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
@media only screen and (min-width: 768px) {
  .facility__peace {
    margin-top: 2px;
    -webkit-transform: translateY(71px);
    -ms-transform: translateY(71px);
    transform: translateY(71px);
  }
}
.facility__peacewrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 23px;
}
@media only screen and (min-width: 768px) {
  .facility__peacewrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
  }
}
.facility__peaceimg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(33.3333333333% - 15.3333333333px);
  flex: 0 0 -webkit-calc(33.3333333333% - 15.3333333333px);
  flex: 0 0 calc(33.3333333333% - 15.3333333333px);
  max-width: -webkit-calc(33.3333333333% - 15.3333333333px);
  max-width: calc(33.3333333333% - 15.3333333333px);
}
@media only screen and (min-width: 768px) {
  .facility__peaceimg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.3333333333% - 13.3333333333px);
    flex: 0 0 -webkit-calc(33.3333333333% - 13.3333333333px);
    flex: 0 0 calc(33.3333333333% - 13.3333333333px);
    max-width: -webkit-calc(33.3333333333% - 13.3333333333px);
    max-width: calc(33.3333333333% - 13.3333333333px);
  }
}
.facility__peaceimg img {
  border-radius: 8px;
  aspect-ratio: 100/100;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .facility__peaceimg img {
    aspect-ratio: 300/142;
  }
}

@-webkit-keyframes move-right-to-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes move-right-to-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.facility-stadium {
  padding-top: 110px;
  background-color: #f5f5f5;
}
@media only screen and (min-width: 768px) {
  .facility-stadium {
    padding-top: 190px;
  }
}
.facility-stadium .container {
  position: relative;
  z-index: 1;
}
.facility-stadium::after {
  content: "";
  aspect-ratio: 940/350;
  width: 100%;
  background-image: url(../img/icons/bg-stadium-logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
}
.facility-stadium__ttl {
  text-align: center;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .facility-stadium__ttl {
    margin-bottom: 30px;
  }
}
.facility-stadium .highlgt:last-child {
  padding-bottom: 0;
}

.highlgt {
  padding: 15px 0;
}
@media only screen and (min-width: 576px) {
  .highlgt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 0;
  }
}
@media only screen and (min-width: 768px) {
  .highlgt {
    padding: 60px 0;
  }
}
.highlgt__cont {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 286px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 576px) {
  .highlgt__cont {
    max-width: 240px;
    margin: initial;
  }
}
@media only screen and (min-width: 768px) {
  .highlgt__cont {
    max-width: 286px;
    padding-top: 50px;
    padding-bottom: 32px;
  }
}
.highlgt__ttl {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  text-align: center;
}
.highlgt__num {
  font-size: 52px;
  font-weight: 700;
  font-family: "Hind", sans-serif;
}
.highlgt__desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .highlgt__desc {
    font-size: 2rem;
  }
}
.highlgt__img {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .highlgt__img {
    max-width: -webkit-calc(100% - 255px);
    max-width: calc(100% - 255px);
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .highlgt__img {
    max-width: -webkit-calc(100% - 316px);
    max-width: calc(100% - 316px);
  }
}
.highlgt__img img {
  border-radius: 8px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media only screen and (min-width: 576px) {
  .highlgt__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.highlgt.-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.highlgt__btns {
  margin: 60px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  max-width: 640px;
}
@media only screen and (min-width: 768px) {
  .highlgt__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 110px auto 0;
    gap: 20px;
  }
}
.highlgt__btns .btn-primary {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 20px 15px 28px;
}
.highlgt__btns .btn-primary:last-child {
  padding: 15px 20px 15px 16px;
}

.schedule {
  position: relative;
  padding-top: 60px;
}
@media only screen and (min-width: 768px) {
  .schedule {
    padding-top: 45px;
  }
}
.schedule:before {
  position: absolute;
  content: "";
  background-color: #333333;
  width: 100%;
  height: 300px;
  display: block;
  left: 0;
  top: 0;
}
.schedule-date {
  position: relative;
}
.schedule-date__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0 30px;
}
.schedule-date__ttl {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 15px;
}
.schedule-date__ttl-year, .schedule-date__ttl-month {
  font-family: "Hind", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}
.schedule-date__ttl-year span, .schedule-date__ttl-month span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  margin-left: 2px;
}
.schedule-date__ttl-month {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 5.2rem;
  line-height: 1;
}
.schedule-date__ttl-month span {
  font-size: 2.4rem;
  margin-left: 3px;
  vertical-align: middle;
}
.schedule-date__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 50px;
}
.schedule-date__btn-prev, .schedule-date__btn-next {
  display: inline-block;
  width: 80px;
  padding: 15px 20px 16px;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  font-weight: 500;
  color: #ffffff;
  position: relative;
}
.schedule-date__btn-prev::before, .schedule-date__btn-next::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  width: 9px;
  height: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.schedule-date__btn-prev {
  background-color: #999999;
  border-radius: 8px 0 0 8px;
  padding-left: 30px;
}
.schedule-date__btn-prev::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12.728" height="12.728" viewBox="0 0 12.728 12.728"><path id="パス_5" data-name="パス 5" d="M9,0H0V9H2V2H9Z" transform="translate(0 6.364) rotate(-45)" fill="%23fff"/></svg>');
  left: 10px;
}
.schedule-date__btn-prev:hover::before {
  left: 5px;
}
.schedule-date__btn-next {
  background-color: #000000;
  border-radius: 0 8px 8px 0;
}
.schedule-date__btn-next::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12.728" height="12.728" viewBox="0 0 12.728 12.728"><path id="パス_5" data-name="パス 5" d="M474.555,279.988h-9v-9h2v7h7Z" transform="translate(143.943 533.542) rotate(-135)" fill="%23fff"/></svg>');
  right: 10px;
}
.schedule-date__btn-next:hover::after {
  right: 5px;
}
.schedule-content__wpr {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  padding: 0 10px 30px;
}
@media only screen and (min-width: 576px) {
  .schedule-content__wpr {
    padding: 0 40px 60px;
  }
}
.schedule-content__wpr .schedule-date__btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px 0 0;
}
@media only screen and (min-width: 768px) {
  .schedule-content__wpr .schedule-date__btn {
    margin: 30px 0;
  }
}
.schedule-content__border {
  border: 3px solid #333333;
  border-radius: 4px 8px 8px 8px;
}
.schedule-content__ribbon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 15px;
  padding: 22px 10px 20px;
}
@media only screen and (min-width: 576px) {
  .schedule-content__ribbon {
    padding: 30px 0 16px;
    gap: 45px;
  }
}
.schedule-content__ribbon-blue, .schedule-content__ribbon-yellow, .schedule-content__ribbon-green {
  font-size: 1.4rem;
  line-height: 1.5625;
  letter-spacing: 0.016em;
  font-weight: 700;
  padding-left: 18px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .schedule-content__ribbon-blue, .schedule-content__ribbon-yellow, .schedule-content__ribbon-green {
    font-size: 1.6rem;
  }
}
.schedule-content__ribbon-blue::before, .schedule-content__ribbon-yellow::before, .schedule-content__ribbon-green::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #285ca9;
  top: 7px;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .schedule-content__ribbon-blue::before, .schedule-content__ribbon-yellow::before, .schedule-content__ribbon-green::before {
    top: 8px;
  }
}
.schedule-content__ribbon-yellow::before {
  background-color: #f49a17;
}
.schedule-content__ribbon-green::before {
  background-color: #96C519;
}
.schedule-content__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #333333;
  border-bottom: none;
}
.schedule-content__head-date, .schedule-content__head-schedule {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}
.schedule-content__head-date {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 57px;
  flex: 0 0 57px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  .schedule-content__head-date {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule-content__head-date {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 97px;
    flex: 0 0 97px;
  }
}
.schedule-content__head-date span {
  font-family: "Hind", sans-serif;
  font-size: 4.2rem;
  margin-bottom: 2px;
}
.schedule-content__head-schedule {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
  padding: 18px 30px 22px 30px;
  border-left: 1px solid #707070;
}
.schedule-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #efefef;
}
.schedule-content__list.-active {
  background-color: #f2f7ff;
}
.schedule-content__list-date, .schedule-content__list-schedule {
  font-weight: 700;
}
.schedule-content__list-date {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 57px;
  flex: 0 0 57px;
  text-align: center;
  font-size: 1.4rem;
  color: #333333;
}
@media only screen and (min-width: 576px) {
  .schedule-content__list-date {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule-content__list-date {
    padding-top: 15px;
    padding-bottom: 12px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 97px;
    flex: 0 0 97px;
  }
}
.schedule-content__list-date span {
  font-family: "Hind", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}
@media only screen and (min-width: 576px) {
  .schedule-content__list-date span {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .schedule-content__list-date span {
    font-size: 4.2rem;
  }
}
.schedule-content__list-schedule {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 79px;
  border-left: 1px solid #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 23px 15px 20px 10px;
}
@media only screen and (min-width: 576px) {
  .schedule-content__list-schedule {
    min-height: 79px;
    padding: 20px 15px 20px 20px;
  }
}
@media only screen and (min-width: 768px) {
  .schedule-content__list-schedule {
    padding: 20px 15px 20px 30px;
  }
}
.schedule-content__list .schedule-content__ribbon {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .schedule-content__list .schedule-content__ribbon {
    gap: 8px;
  }
}
.schedule-content__list .schedule-content__ribbon-blue,
.schedule-content__list .schedule-content__ribbon-yellow,
.schedule-content__list .schedule-content__ribbon-green {
  font-weight: 400;
}
.schedule-content__list .schedule-content__ribbon-blue a,
.schedule-content__list .schedule-content__ribbon-yellow a,
.schedule-content__list .schedule-content__ribbon-green a {
  color: #333333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.schedule-content__list .schedule-content__ribbon-blue a:hover,
.schedule-content__list .schedule-content__ribbon-yellow a:hover,
.schedule-content__list .schedule-content__ribbon-green a:hover {
  text-decoration: underline;
  color: #f49a17;
}
.schedule-content__list.-sun .schedule-content__list-date {
  color: #ff3c3c;
}
.schedule-content__list.-sat .schedule-content__list-date {
  color: #285ca9;
}

.page-rental .rental-info {
  margin-top: 60px;
  margin-bottom: 57px;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-info {
    margin-top: 60px;
    margin-bottom: 71px;
  }
}
.page-rental .rental-info__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.page-rental .rental-info__tag {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4285714286;
  padding: 2px;
  width: 69px;
  height: 40px;
  border-radius: 8px;
  text-align: center;
  text-transform: capitalize;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
@media only screen and (min-width: 576px) {
  .page-rental .rental-info__tag {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-info__tag {
    font-size: 1.4rem;
    width: 120px;
  }
}
.page-rental .rental-info__tag.active {
  background-color: #000;
  color: #ffffff;
  border-bottom: solid 1px #000;
  position: relative;
}
.page-rental .rental-info__tag.active::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #000;
  bottom: -8px;
}
.page-rental .rental-info__tag.active:hover {
  background-color: #000;
  color: #ffffff;
}
.page-rental .rental-info__tag:hover {
  background-color: #f8f8f8;
  color: #333333;
}
.page-rental .rental-info__content {
  display: none;
}
.page-rental .rental-info__content.active {
  display: block;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-info__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px 20px;
  }
}
.page-rental .rental-info__cards:not(:last-of-type) {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-info__cards:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.page-rental .rental-info__card:not(:last-of-type) {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-info__card:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-info__card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.3333333333% - 13.3333333333px);
    flex: 0 0 -webkit-calc(33.3333333333% - 13.3333333333px);
    flex: 0 0 calc(33.3333333333% - 13.3333333333px);
    max-width: -webkit-calc(33.3333333333% - 13.3333333333px);
    max-width: calc(33.3333333333% - 13.3333333333px);
    text-decoration: none;
  }
}
.page-rental .rental-info__img {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.page-rental .rental-info__img > img {
  width: 100%;
  margin-bottom: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -o-object-position: center;
  object-position: center;
  aspect-ratio: 300/180;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-bottom: 0;
}
.page-rental .rental-info__zoom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-top-left-radius: 4px;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  right: 0;
}
.page-rental .rental-info__zoom::after {
  content: "";
  display: block;
  width: 24px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.5' height='25.5' viewBox='0 0 24.5 25.5'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bopacity:0.9;%7D.b%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cg class='a' transform='translate(-395 -969)'%3E%3Cpath class='b' d='M12,2A10,10,0,1,0,22,12,10.011,10.011,0,0,0,12,2m0-2A12,12,0,1,1,0,12,12,12,0,0,1,12,0Z' transform='translate(395 969)'/%3E%3Cpath class='b' d='M4,5a1,1,0,0,1-.707-.293l-4-4a1,1,0,0,1,0-1.414,1,1,0,0,1,1.414,0l4,4A1,1,0,0,1,4,5Z' transform='translate(414.5 989.5)'/%3E%3Cpath class='b' d='M0,9A1,1,0,0,1-1,8V0A1,1,0,0,1,0-1,1,1,0,0,1,1,0V8A1,1,0,0,1,0,9Z' transform='translate(407 977.25)'/%3E%3Cpath class='b' d='M8,1H0A1,1,0,0,1-1,0,1,1,0,0,1,0-1H8A1,1,0,0,1,9,0,1,1,0,0,1,8,1Z' transform='translate(403 981.25)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.page-rental .rental-info__desc p {
  margin-bottom: 0;
}
.page-rental .rental-info__ttl {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  border-bottom: none;
  padding: 0;
  margin-bottom: 10px;
}
.page-rental .rental-info__txt {
  color: #333333;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.828;
}
@media only screen and (max-width: 767px) {
  .page-rental .rental-info__txt {
    margin-bottom: 25px;
  }
}
.page-rental .rental-info-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  padding: 20px 15px;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-rental .rental-info-popup.active {
  opacity: 1;
  visibility: visible;
}
.page-rental .rental-info-popup .container {
  height: 100%;
}
.page-rental .rental-info-popup__wrapper {
  max-width: 1200px;
  max-height: -webkit-calc(100% - 70px);
  max-height: calc(100% - 70px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.page-rental .rental-info-popup__wrapper img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 0;
}
.page-rental .rental-info-popup-close {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
}
.page-rental .rental-info-popup-close::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cdefs%3E%3Cstyle%3E.a,.b%7Bfill:%23fff;%7D.b%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M387.566,390.541a2.1,2.1,0,1,1,2.971-2.971l5.436,5.436,5.43-5.43a2.1,2.1,0,0,1,2.971,2.971l-5.43,5.43,5.428,5.428a2.1,2.1,0,1,1-2.971,2.971l-5.428-5.428-5.43,5.43a2.1,2.1,0,1,1-2.971-2.971l5.43-5.43Z' transform='translate(-370.959 -370.963)'/%3E%3Cpath class=' b' d=' M100.182, 75.182a25, 25, 0, 1, 1-25-25A25, 25, 0, 0, 1, 100.182, 75.182Zm-45.439, 0A20.439, 20.439, 0, 1, 0, 75.182, 54.743, 20.439, 20.439, 0, 0, 0, 54.743, 75.182Z' transform=' translate(-50.182 -50.182)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.page-rental .rental-usage {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-usage {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-usage__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px 20px;
  }
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-usage__cards:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.page-rental .rental-usage__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-usage__card {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.3333333333% - 13.3333333333px);
    flex: 0 0 -webkit-calc(33.3333333333% - 13.3333333333px);
    flex: 0 0 calc(33.3333333333% - 13.3333333333px);
    max-width: -webkit-calc(33.3333333333% - 13.3333333333px);
    max-width: calc(33.3333333333% - 13.3333333333px);
  }
}
.page-rental .rental-usage__card:not(:last-of-type) {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-usage__card:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.page-rental .rental-usage__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  width: 120px;
  aspect-ratio: 1/1;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-usage__img {
    width: auto;
    aspect-ratio: unset;
    margin-bottom: 20px;
  }
}
.page-rental .rental-usage__img img {
  height: 100%;
  -o-object-position: center;
  object-position: center;
  aspect-ratio: 300/180;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 0;
}
.page-rental .rental-usage__ttl {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  border: none;
  padding-bottom: 0;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-usage__ttl {
    margin-bottom: 10px;
  }
}
.page-rental .rental-usage__txt {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.page-rental .rental-reservation__tabs {
  margin-top: 30px;
  margin-bottom: 60px;
}
.page-rental .rental-reservation__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 26px;
}
.page-rental .rental-reservation__tag {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4285714286;
  padding: 2px;
  width: 69px;
  height: 40px;
  border-radius: 8px;
  text-align: center;
  text-transform: capitalize;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-reservation__tag {
    font-size: 1.4rem;
    width: 120px;
  }
}
.page-rental .rental-reservation__tag.active {
  background-color: #000;
  color: #ffffff;
  border-bottom: solid 1px #000;
  position: relative;
}
.page-rental .rental-reservation__tag.active::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #000;
  bottom: -8px;
}
.page-rental .rental-reservation__tag.active:hover {
  background-color: #000;
  color: #ffffff;
}
.page-rental .rental-reservation__tag:hover {
  background-color: #f8f8f8;
  color: #333333;
}
.page-rental .rental-reservation__content {
  display: none;
}
.page-rental .rental-reservation__content.active {
  display: block;
}
.page-rental .rental-reservation__content-img {
  padding-right: 36px;
}
.page-rental .rental-reservation-block:not(:last-child) {
  margin-bottom: 60px;
}
.page-rental .rental-reservation-block h4 {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-reservation-block__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-reservation-block__col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.3333333333% - 13.3333333333px);
    flex: 0 0 -webkit-calc(33.3333333333% - 13.3333333333px);
    flex: 0 0 calc(33.3333333333% - 13.3333333333px);
    max-width: -webkit-calc(33.3333333333% - 13.3333333333px);
    max-width: calc(33.3333333333% - 13.3333333333px);
  }
}
.page-rental .rental-reservation-block__col:not(:last-of-type) {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-reservation-block__col:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.page-rental .rental-reservation-block__img {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .page-rental .rental-reservation-block__img {
    margin-bottom: 24px;
  }
}
.page-rental .rental-reservation-block__img img {
  width: 100%;
}
.page-rental .rental-reservation-block__desc p {
  margin-bottom: 0;
}
.page-rental .rental-reservation-block ol:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .page-rental__btn {
    text-align: center;
  }
}

.faq {
  background-color: #f5f5f5;
}
.faq__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .faq__nav {
    gap: 20px;
    margin-bottom: 60px;
  }
}
.faq__lnk {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 7.5px);
  flex: 0 0 -webkit-calc(50% - 7.5px);
  flex: 0 0 calc(50% - 7.5px);
  max-width: -webkit-calc(50% - 7.5px);
  max-width: calc(50% - 7.5px);
  background-color: #333333;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 0 13px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.42;
}
@media only screen and (min-width: 768px) {
  .faq__lnk {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - 15px);
    flex: 0 0 -webkit-calc(25% - 15px);
    flex: 0 0 calc(25% - 15px);
    max-width: -webkit-calc(25% - 15px);
    max-width: calc(25% - 15px);
  }
}
.faq__lnk::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.728' height='12.728' viewBox='0 0 12.728 12.728'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(-520.815 143.943) rotate(-45)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__lnk:hover::after {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.faq__block-accordians .faq-acc:not(:last-of-type) {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .faq__block-accordians .faq-acc:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.faq__block-content:not(:last-of-type) {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .faq__block-content:not(:last-of-type) {
    margin-bottom: 90px;
  }
}
.faq-acc {
  background-color: #ffffff;
  border-radius: 8px;
}
.faq-acc-heading {
  position: relative;
  cursor: pointer;
  padding: 19px 20px 1px;
}
@media only screen and (min-width: 768px) {
  .faq-acc-heading {
    padding: 28px 40px 3px 49px;
  }
}
.faq-acc-heading:after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg id='Group_1073' data-name='Group 1073' transform='translate(-991.5 -1691.5)'%3E%3Cline id='Line_98' data-name='Line 98' x2='16' transform='translate(991.5 1699.5)' fill='none' stroke='%23000' stroke-width='1'/%3E%3Cline id='Line_99' data-name='Line 99' y2='16' transform='translate(999.5 1691.5)' fill='none' stroke='%23000' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E%0A");
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .faq-acc-heading:after {
    right: 40px;
  }
}
.faq-acc-heading.open::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='1' viewBox='0 0 16 1'%3E%3Cline id='Line_100' data-name='Line 100' x2='16' transform='translate(0 0.5)' fill='none' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E%0A");
  height: 1px;
}
.faq-acc-heading.open .faq-acc-ttl::after {
  width: 100%;
}
.faq-acc-ttl {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  padding-bottom: 18px;
  padding-left: 35px;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .faq-acc-ttl {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-left: 43px;
    padding-bottom: 25px;
  }
}
.faq-acc-ttl:before, .faq-acc-ttl:after {
  content: "";
  position: absolute;
}
.faq-acc-ttl:before {
  content: "Q";
  font-size: 2.4rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  line-height: 1;
  top: 27%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  width: auto;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .faq-acc-ttl:before {
    top: 23%;
  }
}
.faq-acc-ttl::after {
  content: "";
  display: block;
  width: 0px;
  height: 1px;
  background-color: #efefef;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}
.faq-acc-content {
  display: none;
  position: relative;
  width: 100% !important;
}
.faq-acc-content__wrapper {
  padding: 20px 40px 19px 35px;
  margin: 0 20px 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .faq-acc-content__wrapper {
    margin: 0 40px 0 49px;
    padding: 18px 60px 28px 43px;
  }
}
.faq-acc-content__wrapper::before {
  position: absolute;
  content: "A";
  font-size: 2.4rem;
  font-family: "Oswald", sans-serif;
  color: #f49a17;
  top: 16px;
  left: 0;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .faq-acc-content__wrapper::before {
    top: 10px;
  }
}
.faq-acc-content a {
  text-decoration: underline;
  color: #333333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.faq-acc-content a:hover {
  text-decoration: none;
}

.page-food .food-pagination {
  margin-top: 34px;
}

.news-detail {
  background-color: #F8F8F8;
  padding-top: 30px;
}
@media only screen and (min-width: 768px) {
  .news-detail {
    padding-top: 83px;
  }
}
.news-detail__inner {
  padding: 20px 15px 60px;
  background-color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .news-detail__inner {
    padding: 74px 80px 90px;
  }
}
.news-detail .news__top-box {
  margin-top: 0;
  margin-bottom: 17px;
}
@media only screen and (min-width: 768px) {
  .news-detail .news__top-box {
    margin-bottom: 30px;
  }
}
.news-detail .wp-block-button {
  text-align: center;
}

.wp-content p.news__date {
  color: #999999;
  padding-bottom: 0;
  margin-bottom: 0;
}

.food-shop-intro {
  background-color: #F8F8F8;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .food-shop-intro {
    padding-bottom: 90px;
  }
}
.food-shop-intro__wrapper .food-shop__heading .wp-content h2 {
  margin-bottom: 10px;
}
.food-shop-intro__wrapper .wp-content h4 {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .food-shop-intro__wrapper .wp-content h4 {
    margin-bottom: 16px;
  }
}
.food-shop__swiper {
  position: relative;
}
.food-shop__swiper-wrapper {
  position: relative;
  margin-bottom: 30px;
  padding-top: 30px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .food-shop__swiper-wrapper {
    padding-top: 113px;
    margin-bottom: 54px;
  }
}
.food-shop__swiper-wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 60%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
}
.food-shop__swiper-wrapper .swiper-slide img {
  width: 100%;
  aspect-ratio: 720/432;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}
.food-shop__swiper-prev, .food-shop__swiper-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.food-shop__swiper-prev:hover, .food-shop__swiper-next:hover {
  opacity: 0.7;
}
.food-shop__swiper-prev::after, .food-shop__swiper-next::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.food-shop__swiper-prev {
  left: 0;
}
@media only screen and (max-width: 767px) {
  .food-shop__swiper-prev {
    -webkit-transform: translateY(-50%) translateX(40px);
    -ms-transform: translateY(-50%) translateX(40px);
    transform: translateY(-50%) translateX(40px);
  }
}
@media only screen and (max-width: 575px) {
  .food-shop__swiper-prev {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.food-shop__swiper-prev::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.213' height='21.213' viewBox='0 0 21.213 21.213'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M15,15H0V0H3.333V11.667H15Z' transform='translate(10.607 21.213) rotate(-135)'/%3E%3C/svg%3E");
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.food-shop__swiper-next {
  right: 0;
}
@media only screen and (max-width: 767px) {
  .food-shop__swiper-next {
    -webkit-transform: translateY(-50%) translateX(-40px);
    -ms-transform: translateY(-50%) translateX(-40px);
    transform: translateY(-50%) translateX(-40px);
  }
}
@media only screen and (max-width: 575px) {
  .food-shop__swiper-next {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.food-shop__swiper-next::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.213' height='21.213' viewBox='0 0 21.213 21.213'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M15,15H0V0H3.333V11.667H15Z' transform='translate(10.607 21.213) rotate(-135)'/%3E%3C/svg%3E");
}
.food-shop__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  gap: 13px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .food-shop__heading {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.food-shop__heading-rgt {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .food-shop__heading-rgt img {
    aspect-ratio: 120/90;
    max-width: 120px;
  }
}
.food-shop__sub-ttl {
  color: #999999;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.42;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .food-shop .ttl-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
}
.food-shop .ttl-tags__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media only screen and (min-width: 768px) {
  .food-shop .ttl-tags__wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .food-shop .ttl-tags__wrapper:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.food-shop .ttl-tags__txt, .food-shop .ttl-tags__date {
  color: #666666;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.41;
}
.food-shop .ttl-tag {
  background-color: #000000;
  width: 80px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.food-shop__ttl {
  font-size: 2.4rem;
  font-weight: 700;
}
.food-shop__desc {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .food-shop__desc {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.food-shop-details {
  padding-top: 58px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .food-shop-details {
    padding-top: 90px;
  }
}
.food-shop-recommend {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .food-shop-recommend {
    margin-bottom: 60px;
  }
}
.food-shop-recommend__img {
  margin-bottom: 10px;
}
.food-shop-recommend__img img {
  width: 100%;
  aspect-ratio: 300/180;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}
.food-shop-recommend__ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2px;
}
.food-shop-recommend__price {
  color: #999999;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.41;
  margin-bottom: 20px;
}
.food-shop-recommend__txt {
  font-size: 1.4rem;
  line-height: 1.6;
}
.food-shop-map {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .food-shop-map {
    margin-bottom: 90px;
  }
}
.food-shop-map__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .food-shop-map__tags {
    margin-bottom: 30px;
  }
}
.food-shop-map__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 24px;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.41;
}
.food-shop-map__tag-txt {
  color: #666666;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.42;
}
.food-shop-map__img {
  text-align: center;
}
.food-shop-info {
  margin-bottom: 50px;
}
.food-shop-info__row {
  border-bottom: 1px solid #efefef;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .food-shop-info__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    padding-bottom: 18px;
  }
}
.food-shop-info__row:not(:last-of-type) {
  margin-bottom: 20px;
}
.food-shop-info__row span,
.food-shop-info__row p {
  font-size: 1.6rem;
}
.food-shop-info__row span {
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .food-shop-info__row span {
    display: inline-block;
    width: 100%;
    max-width: 171px;
  }
}
.food-shop-info__row p {
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .food-shop-info__row p {
    margin-top: 10px;
  }
}
.food-shop-btn {
  text-align: center;
}

.page-news .news-pagination {
  margin-top: 60px;
}

.page-tour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-tour__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .page-tour__images {
    gap: 20px;
  }
}
.page-tour__images img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 7.5px);
  flex: 0 0 -webkit-calc(50% - 7.5px);
  flex: 0 0 calc(50% - 7.5px);
  width: -webkit-calc(50% - 7.5px);
  width: calc(50% - 7.5px);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .page-tour__images img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - 15px);
    flex: 0 0 -webkit-calc(25% - 15px);
    flex: 0 0 calc(25% - 15px);
    width: -webkit-calc(25% - 15px);
    width: calc(25% - 15px);
  }
}
.page-tour__images-wrapper {
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .page-tour__images-wrapper {
    padding-bottom: 20px;
  }
}
.page-tour .btn-wrapper {
  text-align: center;
}
.page-tour .notes {
  color: #ff3c3c;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
.page-tour__block:not(:last-of-type) {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .page-tour__block:not(:last-of-type) {
    margin-bottom: 90px;
  }
}

.access-parking__block:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .access-parking__block:not(:last-child) {
    margin-bottom: 90px;
  }
}
.access-parking__block-txt > p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .access-parking__block-txt > p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.access-parking__block .wp-content h4 {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .access-parking__block .wp-content h4 {
    margin-bottom: 20px;
  }
}
.access-parking__block-desc:not(:last-of-type) {
  margin-bottom: 40px;
}
.access-parking__dest-block:not(:last-of-type) {
  margin-bottom: 30px;
}
.access-parking__dest-block > p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .access-parking__dest-block > p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.access-parking__img {
  margin-bottom: 30px;
  overflow-x: auto;
}
@media only screen and (max-width: 767px) {
  .access-parking__img img {
    min-width: 540px;
  }
}
.access-parking__cnt {
  margin-bottom: 30px;
}
.access-parking__loc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .access-parking__loc:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.access-parking__loc-wrapper {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .access-parking__loc-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px 76px;
  }
}
.access-parking__icon img {
  margin-bottom: 0;
}
.access-parking__desc {
  padding-top: 7px;
}
@media only screen and (max-width: 767px) {
  .access-parking__desc {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.access-parking__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 9px;
}
.access-parking__details-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.access-parking__details-row:not(:last-of-type) {
  margin-bottom: 7px;
}
.access-parking__details-row span,
.access-parking__details-row p {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .access-parking__details-row span,
  .access-parking__details-row p {
    font-size: 1.8rem;
  }
}
.access-parking__details-row > span {
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .access-parking__details-row > span {
    min-width: 144px;
  }
}
.access-parking__details-row p span {
  color: #f49a17;
  font-weight: 700;
}
.stand {
  background-color: #000;
}
.stand .wp-content h2 {
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .stand .wp-content h2 {
    margin-bottom: 0;
  }
}
.stand__block > div:last-child {
  margin-bottom: 0;
}
.stand__wpr {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .stand__wpr {
    margin-bottom: 60px;
  }
}
.stand__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px -10px 0;
}
.stand__row-lg {
  max-width: 285px;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .stand__row-lg {
    margin-top: 20px;
  }
}
.stand__col {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .stand__col {
    width: 25%;
    margin-bottom: 0;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  -webkit-backdrop-filter: blur(15px) brightness(1.05);
  backdrop-filter: blur(15px) brightness(1.05);
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header.-top {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .header.-top {
    background-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
.header.-top.-blur {
  position: relative;
}
.header.-top.-blur .header__wrapper {
  -webkit-backdrop-filter: blur(15px) brightness(1.05);
  backdrop-filter: blur(15px) brightness(1.05);
  background-color: rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 768px) {
  .header.-top.-blur .header__bottom-nav {
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) {
  .header.-top.-blur .header__bottom-list {
    -webkit-backdrop-filter: blur(15px) brightness(1.05);
    backdrop-filter: blur(15px) brightness(1.05);
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.header.-fixed {
  border-bottom: none;
}
.header.-fixed .header__tagline,
.header.-fixed .header__top,
.header.-fixed .header__nav {
  display: none;
}
.header.-fixed .header__bottom-nav {
  display: none;
}
.header.-fixed .header__btm .header__btn.-white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: transparent;
  color: #ffffff;
  max-width: 150px;
  height: 90px;
  text-align: center;
  border-left: solid 1px #ffffff;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .header.-fixed .header__btm .header__btn.-white {
    display: none;
  }
}
.header.-fixed .header__btm .header__btn.-white span {
  padding-left: 0;
}
.header.-fixed .header__btm .header__btn.-white:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 11px;
}
.header.-fixed .header__btm .header__btn.-white:after {
  content: none;
}
.header.-fixed .header__logo img {
  width: 125px;
}
@media only screen and (min-width: 768px) {
  .header.-fixed .header__logo img {
    width: 155px;
  }
}
.header.-fixed .nav {
  top: 0;
}
.header.-fixed .header__wrapper::after {
  display: none;
}
.header.-fixed + main .hero {
  margin-top: 0;
}
.header.-fixed + .pagetitle-bar {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .header.page-top .header__tagline {
    display: block;
  }
}
.header.page-top.-top {
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.header.page-top.-blur {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .header.page-top.-blur .header__bottom-nav {
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) {
  .header.page-top.-blur .header__bottom-list {
    -webkit-backdrop-filter: blur(15px) brightness(1.05);
    backdrop-filter: blur(15px) brightness(1.05);
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.header.page-top.-fixed .header__tagline {
  display: none;
}
@media only screen and (min-width: 768px) {
  .header.page-top .nav {
    top: 0;
  }
}
.header.nav-open {
  z-index: 99999;
}
.header.nav-open .header__wrapper::after {
  display: none;
}
.header__tagline {
  background-color: #000000;
  text-align: center;
  padding: 3px 0 7px;
  display: none;
}
.header__tagline p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.41;
  padding-left: 24px;
  position: relative;
  display: inline-block;
}
.header__tagline p:before {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='15.994' viewBox='0 0 16 15.994'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff;%7D.b%7Bclip-path:url(%23a);%7D%3C/style%3E%3CclipPath id='a'%3E%3Crect class='a' width='16' height='15.994'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg transform='translate(-313 99)'%3E%3Cg transform='translate(313 -99)'%3E%3Cg class='b'%3E%3Cpath class='a' d='M8.007,0A8,8,0,1,1,0,7.975,8.012,8.012,0,0,1,8.007,0M8,2.7c-.267,0-.534-.006-.8,0a1.125,1.125,0,0,0-1.1.971,2.982,2.982,0,0,0,.037.709c.124,1.322.262,2.643.384,3.965a.867.867,0,0,0,.943.868c.391-.018.784,0,1.175-.005A.778.778,0,0,0,9.454,8.5c.074-.546.119-1.1.174-1.644.094-.944.178-1.888.281-2.831A1.142,1.142,0,0,0,8.748,2.7c-.249,0-.5,0-.748,0m.006,7.221a1.688,1.688,0,0,0-1.7,1.675A1.715,1.715,0,0,0,8,13.292a1.7,1.7,0,0,0,1.7-1.688A1.667,1.667,0,0,0,8.006,9.918' transform='translate(-0.001 0)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 16px;
  height: 16px;
  left: 0;
  top: 53%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.header__wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  pointer-events: none;
}
.header__wrapper.bg .header__btn.-gray:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.728' height='12.728' viewBox='0 0 12.728 12.728'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(143.943 533.542) rotate(-135)' fill='%23fff'/%3E%3C/svg%3E%0A");
  width: 9px;
  height: 9px;
  right: 8px;
}
.header__logo {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin: 0 7px;
}
@media only screen and (min-width: 375px) {
  .header__logo {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .header__logo {
    margin-left: 30px;
  }
}
.header__logo:hover {
  opacity: 0.7;
}
.header__logo img {
  width: 124px;
}
@media only screen and (min-width: 768px) {
  .header__logo img {
    width: 115px;
  }
}
@media only screen and (min-width: 992px) {
  .header__logo img {
    width: 217px;
  }
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header__top, .header__nav {
    display: none;
  }
}
.header__btns, .header__icons, .header__btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__icons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.header__icon {
  margin-right: 20px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header__icon:hover {
  opacity: 0.7;
}
.header__icon:last-child {
  margin-right: 22px;
}
.header__btn {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  width: 180px;
  max-width: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .header__btn {
    font-size: 1.2rem;
    width: 200px;
  }
}
.header__btn:hover {
  opacity: 0.7;
}
.header__btn:before, .header__btn:after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header__btn.-blk {
  background-color: #333333;
  line-height: 1.41;
  width: 150px;
  max-width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.header__btn.-blk:after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.728' height='12.728' viewBox='0 0 12.728 12.728'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(-520.815 143.943) rotate(-45)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.header__btn.-blk:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='18' viewBox='0 0 12 18'%3E%3Cg id='Group_28' data-name='Group 28' transform='translate(-1264 -32)'%3E%3Crect id='Rectangle_26' data-name='Rectangle 26' width='2' height='18' transform='translate(1264 32)' fill='%23fff'/%3E%3Cpath id='多角形_1' data-name='多角形 1' d='M4.5,4.472,3.236,7H5.764L4.5,4.472M4.5,0,9,9H0Z' transform='translate(1276 32) rotate(90)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
  width: 12px;
  height: 18px;
  left: 16px;
}
.header__btn.-blk:after {
  right: 14px;
}
.header__btn.-blk#log:after {
  /* content: "none !important"; */
}
.header__btn.-blk#log {
  content: "none !important";
}
@media only screen and (min-width: 992px) {
  .header__btn.-blk {
    width: 180px;
  }
}
.header__btn.-white {
  background-color: #ffffff;
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.4;
  padding: 0 15px 0 22px;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header__btn.-white {
    max-width: 128px;
    width: 100%;
    height: 60px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.2rem;
    line-height: 1.1;
    padding: 8px 10px 8px 30px;
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__btn.-white:after {
    content: none;
  }
}
@media only screen and (min-width: 992px) {
  .header__btn.-white {
    padding: 0 27px 0 30px;
  }
}
.header__btn.-white span {
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 13px;
}
@media only screen and (max-width: 767px) {
  .header__btn.-white span {
    padding-left: 0;
    font-size: 1rem;
    position: relative;
    padding-right: 8px;
  }
  .header__btn.-white span:after {
    position: absolute;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.728' height='12.728' viewBox='0 0 12.728 12.728'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(143.943 533.542) rotate(-135)' fill='%23333'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: cover;
    width: 5px;
    height: 5px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.header__btn.-white:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cg id='Group_225' data-name='Group 225' transform='translate(-1007 79)'%3E%3Ccircle id='Ellipse_23' data-name='Ellipse 23' cx='2' cy='2' r='2' transform='translate(1007 -73)' fill='%2396c519'/%3E%3Ccircle id='Ellipse_24' data-name='Ellipse 24' cx='2' cy='2' r='2' transform='translate(1013 -73)' fill='%2300b4bb'/%3E%3Ccircle id='Ellipse_25' data-name='Ellipse 25' cx='2' cy='2' r='2' transform='translate(1007 -79)' fill='%23fac300'/%3E%3Ccircle id='Ellipse_26' data-name='Ellipse 26' cx='2' cy='2' r='2' transform='translate(1013 -79)' fill='%236b368b'/%3E%3C/g%3E%3C/svg%3E%0A");
  width: 10px;
  height: 10px;
  left: 9px;
}
.header__btn.-white:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.728' height='12.728' viewBox='0 0 12.728 12.728'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(143.943 533.542) rotate(-135)' fill='%23333'/%3E%3C/svg%3E%0A");
  width: 12px;
  height: 12px;
  right: 8px;
}
.header__btn.-white:hover {
  opacity: 1;
}
.header__btn.-white:hover:after {
  right: 5px;
}
.header__btn.-gray {
  position: relative;
  background-color: rgba(83, 80, 87, 0.5);
  padding: 0 10px 0 10px;
  line-height: 1.3;
  border-bottom: solid 1px #ffffff;
}
@media only screen and (min-width: 992px) {
  .header__btn.-gray {
    padding: 0 29px 0 10px;
  }
}
.header__btn.-gray img {
  margin-right: 5px;
}
.header__mail {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(83, 80, 87, 0.5);
  border: solid 1px #ffffff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header__mail:hover {
  opacity: 0.7;
}
.header__btm {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  .header__btm .header__btn.-white {
    display: none;
  }
}
.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-right: 32px;
}
.header__item.-dropdown {
  position: relative;
  isolation: isolate;
}
.header__item.-dropdown .header__lnk {
  padding-right: 15px;
}
.header__item.-dropdown .header__lnk:after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.728' height='12.728' viewBox='0 0 12.728 12.728'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(-520.815 143.943) rotate(-45)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.header__item.-dropdown .header__lnk:hover::before {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  top: 40;
  left: 0;
  z-index: -1;
}
.header__lnk {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header__lnk:hover {
  opacity: 0.7;
}
.header .submenu {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  gap: 60px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header .submenu.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .submenu__lnk {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  padding-right: 13px;
  display: block;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  line-height: 1.42;
}
.header .submenu__lnk:after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.728' height='12.728' viewBox='0 0 12.728 12.728'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(143.943 533.542) rotate(-135)' fill='%23f49a17'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  width: 9px;
  height: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header .submenu__lnk:hover:after {
  right: -2px;
}
.header .submenu.-sm {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 100%;
}
.header__bottom-nav {
  display: none;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  .header__bottom-nav {
    display: block;
    position: absolute;
    top: -webkit-calc(100% + 1px);
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
  }
}
.header__dropdown {
  position: relative;
  border: solid 1px #fff;
}
.header__dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header__dropdown .sub-menu {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.header__dropdown .sub-menu li {
  width: 100%;
}
.header__dropdown .sub-menu li:not(:last-child) {
  border-bottom: solid 1px #999999;
}
.header__dropdown .sub-menu li a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  padding: 10px;
  display: block;
  width: 100%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (min-width: 992px) {
  .header__dropdown .sub-menu li a {
    font-size: 1.2rem;
  }
}
.header__dropdown .sub-menu li a:hover {
  opacity: 0.7;
}

.nav-icon-wpr {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: solid 1px #ffffff;
  position: relative;
  z-index: 4;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .nav-icon-wpr {
    width: 90px;
    height: 90px;
  }
}

.nav-icon {
  position: relative;
  width: 40px;
  height: 10px;
  cursor: pointer;
}
.nav-icon:before, .nav-icon:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.4s cubic-bezier(0.17, 0.84, 0.53, 1.39);
  transition: all 0.4s cubic-bezier(0.17, 0.84, 0.53, 1.39);
}
.nav-icon:before, .nav-icon:after {
  content: "";
}
.nav-icon:before {
  top: 0;
}
.nav-icon:after {
  margin: 0 auto;
  bottom: 0;
}
.nav-icon.is-opened {
  width: 16px;
}
.nav-icon.is-opened span {
  opacity: 0;
}
.nav-icon.is-opened:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: -2px 4.3px;
  -ms-transform-origin: -2px 4.3px;
  transform-origin: -2px 4.3px;
}
.nav-icon.is-opened:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 1px -1px;
  -ms-transform-origin: 1px -1px;
  transform-origin: 1px -1px;
}
.nav-icon-txt {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.41;
  margin-top: 7px;
}

.nav-close {
  position: absolute;
  right: 45px;
  top: 45px;
  width: 40px;
  height: 25px;
  z-index: 5;
  -webkit-transition: all 0.25 ease;
  transition: all 0.25 ease;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .nav-close {
    right: 57px;
    top: 68px;
  }
}
.nav-close:after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40.524' height='25.485' viewBox='0 0 40.524 25.485'%3E%3Cg id='Group_211' data-name='Group 211' transform='translate(-1968.238 37.926)'%3E%3Cline id='Line_66' data-name='Line 66' x2='40' y2='24.633' transform='translate(1968.5 -37.5)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Cline id='Line_67' data-name='Line 67' x1='40' y2='24.633' transform='translate(1968.5 -37.5)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 25px;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 6;
  width: 100%;
  background-color: #000000;
  padding: 40px 0 90px;
  overflow-y: auto;
}
.nav.is-opened {
  opacity: 1;
  visibility: visible;
}
.nav.is-opened .nav-close::after {
  rotate: 180deg;
  -webkit-transition: rotate ease 0.5s;
  transition: rotate ease 0.5s;
}
.nav__logo {
  margin-bottom: 63px;
  display: inline-block;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.nav__logo:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .nav__logo img {
    width: 120px;
  }
}
.nav__wpr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 45px;
}
@media only screen and (min-width: 768px) {
  .nav__wpr {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 82px;
    margin-bottom: 63px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 10px;
}
@media only screen and (min-width: 768px) {
  .nav__inner {
    gap: 25px 15px;
  }
}
@media only screen and (min-width: 992px) {
  .nav__inner {
    gap: 25px 77px;
  }
}
.nav__inner:first-child {
  max-width: 380px;
}
@media only screen and (min-width: 992px) {
  .nav__inner:first-child {
    max-width: 470px;
  }
}
.nav__inner:first-child .nav__content {
  min-width: 168px;
}
.nav__inner:nth-of-type(2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .nav__inner:nth-of-type(2) {
    gap: 40px;
  }
}
.nav__ttl {
  font-size: 3.2rem;
  font-weight: 500;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) {
  .nav__ttl {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .nav__ttl {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 992px) {
  .nav__ttl {
    font-size: 3.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .nav__ttl {
    font-size: 4.2rem;
  }
}
.nav__lnk {
  font-size: 1.4rem;
  font-weight: 500;
  color: #999999;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.nav__lnk:not(:last-child) {
  margin-bottom: 15px;
}
.nav__lnk:hover {
  opacity: 0.7;
}
.nav__snswpr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 44px;
}
@media only screen and (min-width: 768px) {
  .nav__snswpr {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.nav__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.nav__sns a {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.nav__btmlnk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.nav__btmlnk a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #999999;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: relative;
}
.nav__btmlnk a:not(:last-child):after {
  position: absolute;
  content: "";
  background-color: #999999;
  width: 1px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -20px;
}
.nav__btmlnk a:hover {
  text-decoration: underline;
}
.nav__btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
@media only screen and (min-width: 768px) {
  .nav__btm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.nav__btm-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .nav__btm-logo {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.nav__btm-logo a {
  border-radius: 8px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.nav__btm-logo a img {
  border-radius: 8px;
}
.nav__btm-logo a:hover {
  opacity: 0.7;
}
.nav .btn-primary {
  margin: 0;
}

.hero {
  margin-top: -120px;
  position: relative;
  background-color: #333333;
  z-index: 100;
}
@media only screen and (min-width: 768px) {
  .hero {
    height: 100vh;
    margin-top: -140px;
  }
}
.hero:after {
  position: absolute;
  content: "";
  background-image: url(../img/hero/hero-overlay-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 517px;
  top: 0;
  left: 0;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .hero:after {
    height: 100%;
    background-image: url(../img/hero/hero-overlay.webp);
  }
}
.hero__slider {
  height: 77vh;
  background-color: #333333;
}
@media only screen and (max-width: 767px) {
  .hero__slider {
    position: relative;
    max-height: 512px;
  }
}
@media only screen and (min-width: 768px) {
  .hero__slider {
    height: 100%;
  }
}
.hero .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero .swiper-container .swiper-wrapper .swiper-slide {
  overflow: hidden;
}
.hero .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero .swiper-container .swiper-wrapper .swiper-slide-prev img,
.hero .swiper-container .swiper-wrapper .swiper-slide-active img,
.hero .swiper-container .swiper-wrapper .swiper-slide-duplicate-active img {
  -webkit-animation-name: zoom;
  animation-name: zoom;
  -webkit-animation-duration: 18s;
  animation-duration: 18s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
.hero__content {
  position: absolute;
  right: 16px;
  bottom: 60px;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .hero__content {
    right: 45px;
    bottom: 110px;
  }
}
.hero__text {
  font-size: 5.2rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #ffffff;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media only screen and (min-width: 576px) {
  .hero__text {
    font-size: 6rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero__text {
    font-size: 7rem;
    line-height: 0.9;
  }
}
@media only screen and (min-width: 992px) {
  .hero__text {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__text {
    font-size: 10rem;
  }
}
.hero__text span {
  font-size: 4.2rem;
  padding-right: 5px;
  text-fill-color: transparent;
  text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  -moz-text-fill-color: transparent;
}
@media only screen and (min-width: 576px) {
  .hero__text span {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero__text span {
    font-size: 6rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero__text span {
    font-size: 7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__text span {
    font-size: 8rem;
  }
}
.hero__desc {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
  padding-top: 10px;
}
@media only screen and (min-width: 576px) {
  .hero__desc {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero__desc {
    font-size: 1.8rem;
    padding-top: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .hero__desc {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__desc {
    font-size: 2.2rem;
  }
}
.hero__notice {
  text-decoration: none;
  background-color: rgba(51, 51, 51, 0.8);
  padding: 20px 54px 20px 20px;
  width: 100%;
  position: absolute;
  bottom: 110px;
  z-index: 3;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: none;
}
.hero__notice:after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.728' height='12.728' viewBox='0 0 12.728 12.728'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(143.943 533.542) rotate(-135)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  width: 9px;
  height: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (min-width: 768px) {
  .hero__notice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 320px;
    left: 10px;
  }
}
@media only screen and (min-width: 992px) {
  .hero__notice {
    max-width: 360px;
    left: 40px;
  }
}
.hero__notice:hover {
  opacity: 0.7;
}
.hero__notice:hover:after {
  right: 15px;
}
.hero__notice-img {
  min-width: 100px;
  margin-right: 20px;
}
.hero__notice-img img {
  aspect-ratio: 100/100;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__notice-ttl {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) {
  .hero__notice-ttl {
    font-size: 2.4rem;
  }
}
.hero__notice-desc {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

.top-events {
  background-color: #333333;
}
.top-events__inner {
  background-color: #ffffff;
  padding: 25px 10px 0;
  position: relative;
  z-index: 1000;
  margin-top: -40px;
}
@media only screen and (min-width: 768px) {
  .top-events__inner {
    padding: 4px 10px 36px;
    margin-top: -68px;
  }
}
.top-events__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: solid 1px #333333;
  margin-bottom: 14px;
}
@media only screen and (min-width: 768px) {
  .top-events__top {
    padding-left: 7px;
    margin-bottom: 20px;
    padding-bottom: 6px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.top-events__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .top-events__date {
    gap: 20px;
    padding-bottom: 0;
  }
}
.top-events__date span {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #333333;
}
.top-events__date span:nth-child(odd) {
  font-size: 2.4rem;
}
@media only screen and (min-width: 375px) {
  .top-events__date span:nth-child(odd) {
    font-size: 3.2rem;
  }
}
.top-events__date span:nth-child(odd):first-child {
  font-size: 2rem;
}
@media only screen and (min-width: 375px) {
  .top-events__date span:nth-child(odd):first-child {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .top-events__date span:nth-child(odd):first-child {
    font-size: 3.2rem;
  }
}
.top-events__date span:nth-child(even) {
  font-size: 1.8rem;
}
@media only screen and (min-width: 375px) {
  .top-events__date span:nth-child(even) {
    font-size: 2rem;
  }
}
.top-events .btn-primary {
  max-width: 220px;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .top-events .btn-primary {
    margin: 0;
  }
}
.top-events__datewpr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  .top-events__datewpr {
    gap: 10px;
  }
}
@media only screen and (min-width: 992px) {
  .top-events__datewpr {
    gap: 20px;
  }
}
.top-events__desc {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 767px) {
  .top-events__desc {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) {
  .top-events__desc {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .top-events__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
  }
}
.top-events__desc:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .top-events__desc:not(:last-child) {
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .top-events__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.top-events__desc span:first-child {
  font-size: 1.2rem;
  background-color: #333333;
  color: #ffffff;
  padding: 4px 10px;
  margin-right: 10px;
  display: inline-block;
  min-width: 100px;
  line-height: 1.41;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .top-events__desc span:first-child {
    margin-bottom: 4px;
  }
}
@media only screen and (min-width: 992px) {
  .top-events__desc span:first-child {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .top-events__desc span:last-child {
    width: 100%;
  }
}

.tour {
  padding: 60px 0;
  background-color: #333333;
}
@media only screen and (min-width: 576px) {
  .tour {
    padding: 90px 0;
  }
}
.tour_wrap {
  margin-top: 20px;
}
@media only screen and (min-width: 576px) {
  .tour_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
  }
}
.tour_img {
  overflow: hidden;
}
.tour_img img {
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
@media only screen and (min-width: 768px) {
  .tour_img img {
    aspect-ratio: 560/560;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.tour_card {
  max-width: 560px;
  position: relative;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.tour_card:first-child {
  margin-bottom: 36px;
}
@media only screen and (min-width: 576px) {
  .tour_card:first-child {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .tour_card:first-child {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 576px) {
  .tour_card:last-child {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .tour_card:last-child {
    margin-left: 40px;
  }
}
.tour_card:hover {
  opacity: 0.8;
}
.tour_card:hover .tour_img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.tour_card:hover .tour_ttl:after {
  right: -4px;
}
.tour_link {
  position: absolute;
  inset: 0;
}
.tour_cont {
  padding: 30px 20px 0 30px;
  margin-left: 30px;
  margin-top: -30px;
  background-color: #333333;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media only screen and (min-width: 576px) {
  .tour_cont {
    margin-top: -60px;
  }
}
@media only screen and (min-width: 768px) {
  .tour_cont {
    margin-left: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .tour_cont {
    margin-left: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  .tour_cont {
    margin-left: 140px;
  }
}
.tour_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #fff;
  margin-bottom: 33px;
  position: relative;
}
.tour_ttl:after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg id='Group_76' data-name='Group 76' transform='translate(-1258 -759)'%3E%3Cpath id='パス_5' data-name='パス 5' d='M474.555,279.988h-9v-9h2v7h7Z' transform='translate(1408.943 1301.542) rotate(-135)' fill='%23fff'/%3E%3Cg id='Ellipse_1' data-name='Ellipse 1' transform='translate(1258 759)' fill='none' stroke='%23707070' stroke-width='2'%3E%3Ccircle cx='15' cy='15' r='15' stroke='none'/%3E%3Ccircle cx='15' cy='15' r='14' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.tour_desc {
  font-size: 1.4rem;
  color: #999999;
  line-height: 1.6;
}

.season {
  background-color: #333;
  padding: 90px 0 60px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .season {
    padding: 60px 0 60px;
  }
}
.season .swiper-pagination-progressbar {
  position: relative;
  z-index: 2;
}
.season .swiper-wrapper {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .season .swiper-wrapper {
    margin-bottom: 60px;
  }
}
.season .swiper-wrapper img {
  display: block;
  margin: 0 auto;
}
.season__swiper {
  padding: 0 22px;
}
@media only screen and (min-width: 768px) {
  .season__swiper {
    padding: 0;
    overflow: hidden;
  }
}
.season__img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.season__img:hover {
  opacity: 0.7;
}
.season__img img {
  aspect-ratio: 300/180;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}
.season .swiper-button-disabled {
  display: none;
}
.season__block {
  position: relative;
}
.season__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.season__prev {
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 45%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  .season__prev {
    left: -15px;
  }
}
@media only screen and (min-width: 768px) {
  .season__prev {
    left: -13px;
    top: 37%;
  }
}
@media only screen and (min-width: 992px) {
  .season__prev {
    left: -27px;
  }
}
.season__next {
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  .season__next {
    right: -15px;
  }
}
@media only screen and (min-width: 768px) {
  .season__next {
    right: -13px;
    top: 37%;
  }
}
@media only screen and (min-width: 992px) {
  .season__next {
    right: -27px;
  }
}
.season__swiper-pagination {
  height: 1px !important;
  background-color: #707070;
}
.season__swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #fff;
}

.news {
  background-color: #333;
  padding: 0 0 60px;
  overflow: hidden;
}
@media only screen and (min-width: 576px) {
  .news {
    padding: 0 0 90px;
  }
}
@media only screen and (min-width: 768px) {
  .news .heading-primary {
    margin-bottom: 20px;
  }
}
.news__ttl {
  font-size: 4.2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #fff;
}
.news__box {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: block;
}
.news__box:hover > .news__box-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.news__box-img {
  overflow: hidden;
  border-radius: 8px;
}
.news__box-img img {
  aspect-ratio: 420/252;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}
.news__box img {
  display: block;
  margin: 0 auto;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.news__box .btn-primary {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .news__box .btn-primary {
    margin-top: 0;
  }
}
.news__wpr {
  position: relative;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .news__wpr {
    padding-bottom: 60px;
  }
}
.news__content {
  display: none;
}
.news__content.active {
  display: block;
}
.news__nav {
  margin-top: 10px;
  margin-bottom: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 576px) {
  .news__nav {
    margin-bottom: 23px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.news__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.news__nav .btn-primary {
  margin-right: 0;
}
.news__lnk {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4285714286;
  padding: 2px;
  width: 50px;
  height: 40px;
  border-radius: 8px;
  text-align: center;
  text-transform: capitalize;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-decoration: none;
}
@media only screen and (min-width: 375px) {
  .news__lnk {
    width: 57px;
  }
}
@media only screen and (min-width: 576px) {
  .news__lnk {
    font-size: 1.2rem;
    width: 85px;
  }
}
@media only screen and (min-width: 992px) {
  .news__lnk {
    font-size: 1.4rem;
    min-width: 100px;
    width: auto;
    padding: 0 10px;
  }
}
.news__lnk.active {
  background-color: #000;
  color: #ffffff;
  border-bottom: solid 1px #000;
  position: relative;
}
.news__lnk.active::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #000;
  bottom: -8px;
}
.news__lnk.active:hover {
  background-color: #000;
  color: #ffffff;
}
.news__lnk:hover {
  background-color: #f8f8f8;
  color: #333333;
}
.news__swiper-pagination {
  height: 1px !important;
  background-color: #707070;
  bottom: 0;
  top: initial !important;
}
.news__swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #fff;
}
.news .swiper-slide {
  width: 420px;
}
.news__top-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 12px;
}
.news__link {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4166666667;
  color: #fff;
  background-color: #000;
  text-decoration: none;
  display: inline-block;
  margin-right: 16px;
  padding: 4px 23px;
  text-transform: uppercase;
}
@media only screen and (max-width: 575px) {
  .news__link {
    padding: 4px 13px;
    min-width: 80px;
    text-align: center;
  }
}
.news__date {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4166666667;
  color: #fff;
}
.news__desc {
  font-size: 1.4rem;
  font-weight: 700;
  color: #999999;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .news__desc {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) {
  .news__desc {
    font-size: 1.6rem;
  }
}
.news__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-top: 14px;
}
@media only screen and (min-width: 576px) {
  .news__row {
    margin-left: -10px;
    margin-right: -10px;
    row-gap: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .news__row {
    margin-top: 28px;
  }
}
.news__col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .news__col {
    padding: unset;
  }
}
.news__col img {
  max-width: 140px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (min-width: 576px) {
  .news__col img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) {
  .news__col {
    padding: 0 10px;
    width: 50%;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .news__col {
    width: 33.33%;
  }
}
.news__col-img {
  overflow: hidden;
  border-radius: 8px;
}
.news__col-img img {
  aspect-ratio: 300/180;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 575px) {
  .news__col-img {
    max-width: 140px;
    width: 100%;
  }
  .news__col-img img {
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.news__inner {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 575px) {
  .news__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.news__inner:hover {
  opacity: 0.7;
}
.news__inner:hover .news__col-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.news__inner .news__col-img {
  overflow: hidden;
}
.news__inner .news__col-img img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.news__inner .news__desc {
  color: #333333;
  overflow: unset;
  white-space: wrap;
  text-overflow: unset;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news__inner .news__date {
  color: #999999;
}

.food {
  padding: 60px 0;
}
@media only screen and (min-width: 768px) {
  .food {
    padding: 90px 0;
  }
}
.food__box {
  margin-top: 23px;
}
@media only screen and (min-width: 768px) {
  .food__box {
    margin-top: 35px;
  }
}
.food__content {
  display: none;
}
.food__content.active {
  display: block;
}
.food__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.food__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.food__lnk {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4285714286;
  padding: 2px;
  width: 69px;
  height: 40px;
  border-radius: 8px;
  text-align: center;
  text-transform: capitalize;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .food__lnk {
    font-size: 1.2rem;
    width: 100px;
  }
}
@media only screen and (min-width: 992px) {
  .food__lnk {
    font-size: 1.4rem;
  }
}
.food__lnk.active {
  background-color: #000;
  color: #ffffff;
  border-bottom: solid 1px #000;
  position: relative;
}
.food__lnk.active::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #000;
  bottom: -8px;
}
.food__lnk.active:hover {
  background-color: #000;
  color: #ffffff;
}
.food__lnk:hover {
  background-color: #f8f8f8;
  color: #333333;
}
.food__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 14px;
}
@media only screen and (min-width: 576px) {
  .food__row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media only screen and (min-width: 768px) {
  .food__row {
    margin-top: 28px;
  }
}
.food__col {
  width: 100%;
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .food__col {
    padding: unset;
    margin-bottom: 15px;
  }
}
.food__col img {
  max-width: 140px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (min-width: 576px) {
  .food__col img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) {
  .food__col {
    padding: 0 10px;
    width: 50%;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .food__col {
    width: 33.33%;
  }
}
.food__col-img {
  overflow: hidden;
  border-radius: 8px;
}
.food__col-img img {
  aspect-ratio: 300/180;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 575px) {
  .food__col-img {
    max-width: 140px;
    width: 100%;
  }
  .food__col-img img {
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.food__inner {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 575px) {
  .food__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.food__inner:hover {
  opacity: 0.7;
}
.food__inner:hover .food__col-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.food__ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}
@media only screen and (min-width: 576px) {
  .food__ttl {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .food__ttl {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) {
  .food__ttl {
    font-size: 1.6rem;
  }
}
.food__subttl {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4166666667;
  color: #999;
  margin: 2px 0 5px;
}
@media only screen and (min-width: 576px) {
  .food__subttl {
    margin: 2px 0 10px;
  }
}
.food__link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.food__link {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  line-height: 1.4166666667;
  display: inline-block;
  border: 1px solid #000;
  padding: 2px 5px;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 576px) {
  .food__link {
    font-size: 1.2rem;
    width: initial;
    padding: 2px 22px;
  }
}
@media only screen and (min-width: 768px) {
  .food__link {
    padding: 2px 5px;
  }
}
@media only screen and (min-width: 992px) {
  .food__link {
    padding: 2px 22px;
  }
}
.food__link.-bg {
  background-color: #000;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.food__desc {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}

@media only screen and (min-width: 576px) {
  .bannersm_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.bannersm_card {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 576px) {
  .bannersm_card {
    max-width: 50%;
    width: 100%;
  }
}
.bannersm_card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #000000;
  opacity: 0.5;
}
.bannersm_card:hover {
  cursor: pointer;
}
.bannersm_card:hover .bannersm_img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.bannersm_cont {
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  z-index: 2;
}
.bannersm_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  padding-bottom: 12px;
  font-family: "Oswald", sans-serif;
}
@media only screen and (min-width: 576px) {
  .bannersm_ttl {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .bannersm_ttl {
    font-size: 2.8rem;
    padding-bottom: 6px;
  }
}
@media only screen and (min-width: 992px) {
  .bannersm_ttl {
    font-size: 3.2rem;
  }
}
.bannersm_desc {
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .bannersm_desc {
    font-size: 1.8rem;
  }
}
.bannersm_img {
  height: 200px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .bannersm_img {
    height: auto;
  }
}
.bannersm_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 375/200;
}
@media only screen and (min-width: 768px) {
  .bannersm_img img {
    aspect-ratio: 400/240;
  }
}
.bannersm_link {
  position: absolute;
  inset: 0;
}

.movie {
  background-color: #333333;
  padding: 90px 0;
}
@media only screen and (max-width: 767px) {
  .movie {
    padding: 60px 0 30px;
  }
}
.movie__box {
  margin-top: 25px;
}
@media only screen and (min-width: 768px) {
  .movie__box {
    margin-top: 30px;
  }
}
.movie__video {
  position: relative;
  z-index: 1;
  height: 240px;
}
@media only screen and (min-width: 576px) {
  .movie__video {
    height: 423px;
  }
}
.movie__video__item {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.movie__video__item iframe,
.movie__video__item video {
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.movie__video__thumb {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
}
.movie__video__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .movie__video__thumb.-no-overlay-sp:after {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .movie__video__thumb.-no-overlay-pc:after {
    display: none;
  }
}
.movie__video__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.movie__video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.movie__video__btn > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.movie__video__btn > a::before {
  content: "";
  background-image: url(../img/icons/play-icon.svg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  margin: 0 auto 14px;
}
@media only screen and (min-width: 576px) {
  .movie__video__btn > a::before {
    width: 50px;
    height: 50px;
  }
}
.movie__video__btn > a:hover {
  opacity: 0.7;
  color: #ffffff;
}
.movie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1001;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.movie-modal.open {
  opacity: 1;
  visibility: visible;
}
.movie-modal-close {
  display: inline-block;
  cursor: pointer;
  z-index: 10;
}
.movie-modal-close::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cdefs%3E%3Cstyle%3E.a,.b%7Bfill:%23fff;%7D.b%7Bfill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M387.566,390.541a2.1,2.1,0,1,1,2.971-2.971l5.436,5.436,5.43-5.43a2.1,2.1,0,0,1,2.971,2.971l-5.43,5.43,5.428,5.428a2.1,2.1,0,1,1-2.971,2.971l-5.428-5.428-5.43,5.43a2.1,2.1,0,1,1-2.971-2.971l5.43-5.43Z' transform='translate(-370.959 -370.963)'/%3E%3Cpath class='b' d='M100.182,75.182a25,25,0,1,1-25-25A25,25,0,0,1,100.182,75.182Zm-45.439,0A20.439,20.439,0,1,0,75.182,54.743,20.439,20.439,0,0,0,54.743,75.182Z' transform='translate(-50.182 -50.182)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media only screen and (min-width: 768px) {
  .movie-modal-close::after {
    width: 42px;
    height: 42px;
  }
}
.movie-modal__wrapper {
  max-width: 1200px;
  width: 100%;
  height: -webkit-calc(100% - 50px);
  height: calc(100% - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .movie-modal__wrapper {
    position: relative;
    height: -webkit-calc(100% - 60px);
    height: calc(100% - 60px);
    gap: 60px;
  }
}
.movie-modal__wrapper video,
.movie-modal__wrapper iframe {
  aspect-ratio: 16/9;
  width: 100%;
}
.movie-modal__wrapper video {
  height: 100%;
}
.movie-modal__player {
  aspect-ratio: 16/9;
  width: 100%;
}
.movie-modal__player iframe {
  height: 100%;
}

.contact__block {
  margin-top: 28px;
}
@media only screen and (min-width: 768px) {
  .contact__wrapper {
    margin-top: 5px;
  }
}
.contact__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.contact__breadcrumb-li {
  width: 33.33%;
}
.contact__breadcrumb-li:last-child a::after {
  right: 0;
  border-top: 24.9px solid #fff;
  border-bottom: 25px solid #fff;
}
.contact__breadcrumb-link {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3888888889;
  background-color: #f5f5f5;
  color: #333;
  display: block;
  padding: 13.5px 15px;
  cursor: default;
}
@media only screen and (min-width: 768px) {
  .contact__breadcrumb-link {
    font-size: 1.8rem;
    padding: 12px 15px;
  }
}
.contact__breadcrumb-link.-active {
  background-color: #333;
  color: #fff;
  position: relative;
}
.contact__breadcrumb-link.-active::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 24.9px solid transparent;
  border-left: 20px solid #333;
  border-bottom: 25px solid transparent;
  right: 0;
  top: 0;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .contact__breadcrumb-link.-active::after {
    border-left: 50px solid #333;
    right: 1px;
  }
}
.contact__form-cnt {
  margin-bottom: 38px;
}
@media only screen and (min-width: 768px) {
  .contact__form-cnt {
    margin-bottom: 58px;
  }
}
.contact__form-row {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .contact__form-row {
    margin-bottom: 31px;
  }
}
.contact__form-label label {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3888888889;
  color: #333333;
  margin-right: 10px;
}
.contact__form-label .req {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  color: #ffffff;
  background-color: #ff3c3c;
  padding: 2px 8px;
}
.contact__form-label .req.-opt {
  background-color: #999999;
}
.contact__form-label-req {
  font-size: 1.4rem;
  margin-left: 7px;
}
.contact__form-inp input, .contact__form-inp textarea {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5625;
  color: #333333;
  border: 1px solid #c4c4c4;
  padding: 11px 20px;
  width: 100%;
  margin-top: 15px;
  resize: none;
}
.contact__form-inp input::-webkit-input-placeholder, .contact__form-inp textarea::-webkit-input-placeholder {
  color: #999;
}
.contact__form-inp input::-moz-placeholder, .contact__form-inp textarea::-moz-placeholder {
  color: #999;
}
.contact__form-inp input:-ms-input-placeholder, .contact__form-inp textarea:-ms-input-placeholder {
  color: #999;
}
.contact__form-inp input::-ms-input-placeholder, .contact__form-inp textarea::-ms-input-placeholder {
  color: #999;
}
.contact__form-inp input::placeholder, .contact__form-inp textarea::placeholder {
  color: #999;
}
.contact__form-desc {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: -10px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .contact__form-desc {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.contact__privacy {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 34px;
  display: inline-block;
}
.contact__privacy:hover {
  text-decoration: none;
}
.contact__form-checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .contact__form-checkbox {
    margin-bottom: 60px;
  }
}
.contact__form-checkbox input[type=checkbox] {
  display: none;
}
.contact__form-checkbox .mwform-checkbox-field-text {
  font-size: 1.8rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.contact__form-checkbox .mwform-checkbox-field-text::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg id='Rectangle_2701' data-name='Rectangle 2701' fill='%23fff' stroke='%23c4c4c4' stroke-width='1'%3E%3Crect width='20' height='20' rx='2' stroke='none'/%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='1.5' fill='none'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.contact__form-checkbox input:checked + .mwform-checkbox-field-text::before {
  background-image: url("data:image/svg+xml,%3Csvg id='check-box' xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg id='Rectangle_2924' data-name='Rectangle 2924' fill='%23fff' stroke='%23acacac' stroke-width='1'%3E%3Crect width='20' height='20' rx='2' stroke='none'/%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='1.5' fill='none'/%3E%3C/g%3E%3Crect id='Rectangle_2925' data-name='Rectangle 2925' width='10' height='10' rx='2' transform='translate(5 5)' fill='%23005ca9'/%3E%3C/svg%3E%0A");
}
.contact__form-submit-wpr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 576px) {
  .contact__form-submit-wpr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.contact__form-submit-wpr p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media only screen and (min-width: 768px) {
  .contact__form-submit-wpr p {
    gap: 20px;
  }
}
.contact__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;
}
.contact__radio input {
  width: auto;
  margin: 0;
  padding: 0;
  width: 18px;
  height: 18px;
  margin-right: 9px;
}
.contact__radio input:focus-visible {
  outline: none;
}
.contact__radio label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.contact__radio span.mwform-radio-field.horizontal-item {
  width: 100%;
  margin-bottom: 12px;
}
.contact__radio .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.wp-content .contact__breadcrumb {
  margin: 0 0 33px;
}
@media only screen and (min-width: 768px) {
  .wp-content .contact__breadcrumb {
    margin: 0 0 65px;
  }
}
.wp-content .contact__breadcrumb .contact__breadcrumb-li {
  list-style-type: none;
  margin-bottom: 0;
}

.mw_wp_form_confirm .contact__form-label .req,
.mw_wp_form_confirm .contact__per-info {
  display: none;
}

.mw_wp_form_confirm .contact__form-label {
  margin-bottom: 10px;
}

.btn-submit.-complete {
  font-size: 1.4rem !important;
  color: #fff !important;
}

.contact__breadcrumb-li:last-child .contact__breadcrumb-link.-active:before {
  background: #fff;
}

.contact__breadcrumb-link.-active:before {
  position: absolute;
  content: "";
  background: #f5f5f5;
  width: 20px;
  height: 50px;
  right: 0;
  top: 0;
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .contact__breadcrumb-link.-active:before {
    width: 50px;
  }
}

.footer {
  position: relative;
  z-index: 1;
}
.footer-top {
  background-color: #333333;
  padding: 60px 0;
}
@media only screen and (min-width: 768px) {
  .footer-top {
    padding: 120px 0;
  }
}
.footer-top__logos {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .footer-top__logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 92px;
    padding-bottom: 57px;
    border-bottom: 1px solid #999999;
  }
}
.footer-top__logos > img {
  display: block;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 768px) {
  .footer-top__logos > img {
    margin: 0;
  }
}
.footer-top__logos-links {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer-top__logos-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
}
.footer-top__logos-link {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-top__logos-link:not(:last-of-type) {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .footer-top__logos-link:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.footer-top__logos-link img {
  border-radius: 8px;
}
.footer-top__logos-link:hover {
  opacity: 0.7;
}
.footer-top__logo {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 767px) {
  .footer-top__logo {
    display: block;
    margin: 0 auto 30px;
    text-align: center;
  }
}
.footer-top__logo:hover {
  opacity: 0.7;
}
.footer-top__links {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .footer-top__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
    margin-bottom: 40px;
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-top__links {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  .footer-top__links-listblock.-md {
    max-width: -webkit-calc(25% - 16px);
    max-width: calc(25% - 16px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - 16px);
    flex: 0 0 -webkit-calc(25% - 16px);
    flex: 0 0 calc(25% - 16px);
  }
  .footer-top__links-listblock.-sm {
    max-width: -webkit-calc(15% - 16px);
    max-width: calc(15% - 16px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(15% - 16px);
    flex: 0 0 -webkit-calc(15% - 16px);
    flex: 0 0 calc(15% - 16px);
  }
  .footer-top__links-listblock.-lg {
    max-width: -webkit-calc(30% - 16px);
    max-width: calc(30% - 16px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(30% - 16px);
    flex: 0 0 -webkit-calc(30% - 16px);
    flex: 0 0 calc(30% - 16px);
  }
}
.footer-top__links-listblock li span:hover {
  text-decoration: none;
}
@media only screen and (min-width: 992px) {
  .footer-top__links-list:nth-of-type(2) {
    margin-left: 53px;
  }
}
@media only screen and (min-width: 992px) {
  .footer-top__links-list:nth-of-type(3) {
    margin-left: 98px;
  }
}
@media only screen and (min-width: 992px) {
  .footer-top__links-list:nth-of-type(4) {
    margin-left: 63px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top__links-list:last-of-type .footer-top__links-list:last-of-type > li:last-of-type {
    border-bottom: 1px solid #999999;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top__links-list li {
    border-top: 1px solid #999999;
  }
}
.footer-top__links-list-inr .footer-top__link {
  position: relative;
  padding-left: 20px;
}
.footer-top__links-list-inr .footer-top__link::before {
  content: "";
  display: inline-block;
  background-color: #999999;
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.footer-top__link {
  display: block;
  color: #999999;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 14px 0 13px;
}
@media only screen and (min-width: 768px) {
  .footer-top__link {
    padding: 0;
    display: inline-block;
    line-height: 2.28;
  }
}
@media only screen and (min-width: 768px) {
  .footer-top__link:hover {
    text-decoration: underline;
  }
}
.footer-top__link.-more {
  position: relative;
}
.footer-top__link.-more::before, .footer-top__link.-more::after {
  content: "";
  display: block;
  background-color: #999999;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .footer-top__link.-more::before, .footer-top__link.-more::after {
    content: none;
  }
}
.footer-top__link.-more::before {
  width: 1px;
  height: 16px;
  right: 7px;
}
.footer-top__link.-more::after {
  width: 16px;
  height: 1px;
  right: 0;
}
.footer-top__link.-more.active::before, .footer-top__link.-more.active::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .footer-top__link.-more:hover {
    text-decoration: none;
  }
}
.footer-top__link.-more + ul {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .footer-top__link.-more + ul {
    max-height: 100% !important;
  }
}
.footer-top__extra-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 46px;
}
@media only screen and (min-width: 768px) {
  .footer-top__extra-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
.footer-top__extra-links-privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.footer-top__extra-links .btn-primary {
  margin: 0;
}
.footer-top__extra-link {
  text-align: center;
  color: #999999;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-top__extra-link:first-of-type {
  position: relative;
}
.footer-top__extra-link:first-of-type::after {
  position: absolute;
  content: "";
  background-color: #999999;
  width: 1px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -20px;
}
.footer-top__extra-link:hover {
  text-decoration: underline;
}
.footer-top__extra-listblock {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .footer-top__extra-listblock {
    text-align: center;
  }
}
.footer-top__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .footer-top__other {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
}
.footer-top__other-copy {
  color: #999999;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.footer-top__other-rgt {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 45px;
}
@media only screen and (min-width: 768px) {
  .footer-top__other-rgt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}
.footer-top__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .footer-top__social {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.footer-top__social-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-top__social-link:hover {
  opacity: 0.7;
}
.footer-top__social .scroll-top {
  margin-left: auto;
}
.footer-bot {
  padding: 30px 0 112px;
}
@media only screen and (min-width: 768px) {
  .footer-bot {
    padding: 35px 0 54px;
  }
}
.footer-bot__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .footer-bot__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 992px) {
  .footer-bot__wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.footer-bot-partners {
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  .footer-bot-partners:nth-of-type(2) {
    margin-left: 41px;
  }
}
@media only screen and (min-width: 992px) {
  .footer-bot-partners:nth-of-type(3) {
    margin-left: 49px;
  }
}
.footer-bot-partners__comp {
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .footer-bot-partners__comp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 19px;
  }
}
.footer-bot-partners__name {
  text-align: center;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) {
  .footer-bot-partners__name {
    text-align: start;
    margin-bottom: 0;
  }
}
.footer-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  position: fixed;
  z-index: 99;
  bottom: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  background-color: #fff;
}
.footer-banner.hide {
  opacity: 0;
}
.footer-banner.show {
  opacity: 1;
  -webkit-animation: opacity 0.25s ease 0s 1 normal forwards;
  animation: opacity 0.25s ease 0s 1 normal forwards;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.footer-banner .container {
  padding: unset;
}
@media only screen and (min-width: 768px) {
  .footer-banner {
    display: none;
  }
}
.footer-banner .header__btn {
  width: 25%;
  max-width: 100%;
}
.footer-banner .header__btn.-white {
  font-size: 1rem;
  line-height: 1.2;
  padding: 5px 0px 4px 15px;
  height: 50px;
  font-weight: 700;
}
@media only screen and (min-width: 375px) {
  .footer-banner .header__btn.-white {
    padding: 5px 0px 4px 30px;
  }
}
.footer-banner .header__btn.-white:before {
  left: 2px;
}
@media only screen and (min-width: 375px) {
  .footer-banner .header__btn.-white:before {
    left: 9px;
  }
}
.footer-banner .header__btn.-white span {
  line-height: 1.5;
  font-weight: 700;
}
.footer-banner .header__btn.-white span:after {
  content: none;
}
.footer-banner .header__btn.-blk {
  padding-right: 5px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-left: 10px;
  background-color: #333333;
}
@media only screen and (min-width: 375px) {
  .footer-banner .header__btn.-blk {
    padding-right: 12px;
    padding-left: 34px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 576px) {
  .footer-banner .header__btn.-blk {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 40px;
  }
}
.footer-banner .header__btn.-blk:before {
  width: 10px;
  height: 16px;
  left: 10px;
}
@media only screen and (min-width: 375px) {
  .footer-banner .header__btn.-blk:before {
    left: 16px;
  }
}
.footer-banner .header__btn.-blk:after {
  display: none;
}
.footer-banner .header__btn.-gray {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: unset;
  background-color: #51318F;
  padding: 0 5px;
}
@media only screen and (min-width: 375px) {
  .footer-banner .header__btn.-gray {
    padding: 0 10px 0 10px;
  }
}
.footer-banner .header__btn.-gray img {
  margin-right: unset;
}
/*# sourceMappingURL=app.css.map */
