@charset "UTF-8";
/* Scss Document */
/*!
 * Bootstrap Grid v5.0.0-beta1 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  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;
  }
}
.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: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  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.3333333333%;
}

.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.6666666667%;
}

.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.3333333333%;
}

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

.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.3333333333%;
}

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

.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.3333333333%;
}

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

.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.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .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.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .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.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .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.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .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.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .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.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .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.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .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.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .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.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .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.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .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-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-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-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-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-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-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-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;
  }
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

/*-----------------------------------------------------
  基本設定
-----------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.8;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-size: 62.5%;
  font: 14px "Times New Roman", "Shippori Mincho", serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: #000;
}
a:active, a:hover {
  color: gray;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover img {
  -webkit-filter: brightness(105%);
  filter: brightness(105%);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
nav li {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

.fa-solid,
.fab,
.fad,
.fal,
.far,
.fas,
.svg-inline--fa {
  margin-right: 0.5em;
}

p {
  line-height: 1.8;
}

/*-----------------------------------------------------
  ページタイトル
-----------------------------------------------------*/
.visualHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 500px;
  background: #EEF2F1;
}
.visualHeading_desc {
  position: relative;
  z-index: 2;
}
.visualHeading_ttl {
  font-size: 5rem;
  font-weight: 500;
  margin: 1em 0 0.6em 0;
  z-index: 2;
}
@media screen and (max-width: 991.98px) {
  .visualHeading_ttl {
    font-size: 4.2rem;
  }
}
.visualHeading_copy {
  font-weight: 600;
  font-size: 1.6rem;
}
.visualHeading_photo {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
}
.visualHeading_photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.visualHeading_wrap {
  position: relative;
  padding-bottom: 100px;
}

/*-----------------------------------------------------
  ページタイトル
-----------------------------------------------------*/
.pageHeading {
  margin-top: 240px;
}
@media screen and (max-width: 767.98px) {
  .pageHeading {
    margin-top: 140px;
  }
}
.pageHeading_en {
  margin: 0 0 2.5rem 0;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .pageHeading_en {
    font-size: 4rem;
  }
}
.pageHeading_ja {
  position: relative;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: "Times New Roman", YuMincho, "Yu Mincho", yu-mincho-pr6, "Hiragino Mincho ProN", serif;
  margin: 0;
  line-height: 1;
  padding-left: 30px;
}
@media screen and (max-width: 767.98px) {
  .pageHeading_ja {
    font-size: 1.3rem;
  }
}
.pageHeading_ja:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background: #000;
  top: 50%;
  left: 0;
}

/*-----------------------------------------------------
  キービジュアル
-----------------------------------------------------*/
.kvHeading {
  font-weight: 700;
  padding: 160px 0 0 0;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .kvHeading {
    text-align: center;
    padding: 160px 0 100px 0;
  }
}
.kvHeading_ttl {
  font-size: 1.6rem;
  margin: 0 0 2em 0;
  color: #AABEB5;
  background: -webkit-linear-gradient(134.72deg, #2e8fd8 0%, #06b3c7 101.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kvHeading_copy {
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.4;
}
@media screen and (max-width: 991.98px) {
  .kvHeading_copy {
    font-size: 4.2rem;
  }
}

.kvHeading:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 900px;
  height: 1100px;
  background: no-repeat url("../images/kvHeading_bg.png") top right;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1199.98px) {
  .kvHeading:before {
    width: 780px;
    height: 780px;
  }
}
@media screen and (max-width: 991.98px) {
  .kvHeading:before {
    top: -60px;
    width: 900px;
    height: 900px;
  }
}

/*-----------------------------------------------------
  パンくずナビ
-----------------------------------------------------*/
.topicpath {
  font-size: 1.1rem;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .topicpath {
    display: none;
  }
}
.topicpath ul {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
}
.topicpath li {
  display: inline-block;
}
.topicpath li + li:before {
  margin: 0 5px;
  content: ">";
}

/*-----------------------------------------------------
  ページ送り
-----------------------------------------------------*/
.pagination {
  clear: both;
  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;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
.pagination i {
  margin: 0;
}
.pagination a {
  color: gray;
  margin: 0 0.2em;
  text-decoration: none;
  width: 40px;
  height: 40px;
  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;
}
.pagination a:hover {
  text-decoration: none;
  color: #000 !important;
  border: none;
}
.pagination .current {
  margin: 0 0.2em;
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
  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;
}
.pagination .next,
.pagination .prev {
  margin: 0;
  color: #000 !important;
}
.pagination .prev {
  margin-right: 0.2em;
}
.pagination .next {
  margin-left: 0.2em;
}
.pagination .back {
  border: none;
  margin: 0 1em;
  width: auto !important;
  color: #000 !important;
  background: none !important;
}
.pagination .back:hover {
  color: gray !important;
  border: none;
}

/*-----------------------------------------------------
  全体ラッパー
-----------------------------------------------------*/
.wrapper {
  overflow: hidden;
  width: 100%;
}

.contents-wrapper {
  background: #EEF2F1;
  padding: 120px 0;
}
@media screen and (max-width: 767.98px) {
  .contents-wrapper {
    padding: 72px 0;
  }
}

/*-----------------------------------------------------
  ヘッダー
-----------------------------------------------------*/
.gHeader {
  z-index: 100;
  position: absolute;
  top: 40px;
  width: 100%;
  margin: 0;
}
.gHeader .gHeader_logo img {
  vertical-align: top;
  height: 30px;
}
@media screen and (max-width: 767.98px) {
  .gHeader .gHeader_logo img {
    height: 25px;
  }
}

.gnav_wrap.open {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  visibility: visible;
}

.gnav_wrap.close {
  opacity: 0;
  visibility: hidden;
}

.gnav_wrap {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
}
.gnav_wrap ul {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 400;
  text-align: center;
}
.gnav_wrap li {
  font-size: 1.8rem !important;
  white-space: nowrap;
}
.gnav_wrap li a {
  display: block;
  padding: 10px;
  color: #fff;
}

/*-----------------------------------------------------
  フッター
-----------------------------------------------------*/
.gFooter {
  border-top: 1px solid #E5E5E5;
  padding: 120px 0 120px 0;
  background: #fff;
}
@media screen and (max-width: 575.98px) {
  .gFooter_salon {
    padding-bottom: 160px !important;
  }
}
.gFooter i {
  color: #000;
}
.gFooter a {
  color: #000;
}
.gFooter a:hover {
  color: gray;
}
@media screen and (max-width: 991.98px) {
  .gFooter {
    padding: 80px 0 40px 0;
  }
}
.gFooter_nav {
  margin-bottom: 1em;
}
.gFooter_nav ul {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 991.98px) {
  .gFooter_nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 4em;
  }
}
.gFooter_nav li {
  margin: 0;
}
.gFooter_nav li + li {
  margin: 0 0 0 1.5em;
}
.gFooter_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3em;
}
@media screen and (max-width: 991.98px) {
  .gFooter_social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.gFooter_social h5 {
  font-size: 1.1rem;
  line-height: 1;
  margin: 0 1.5em 0 0;
  font-weight: 500;
}
.gFooter_social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gFooter_social ul li {
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
}
.gFooter_social ul li + li {
  margin: 0 0 0 0.5em;
}
.gFooter_social ul i {
  margin: 0;
}
.gFooter_copyright {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Times New Roman", YuMincho, "Yu Mincho", yu-mincho-pr6, "Hiragino Mincho ProN", serif;
  text-align: right;
  margin: 0;
}
@media screen and (max-width: 991.98px) {
  .gFooter_copyright {
    text-align: center;
  }
}

/*-----------------------------------------------------
  メイン
-----------------------------------------------------*/
.l-main {
  overflow-x: hidden;
}

/*-----------------------------------------------------
  スマホメニュー
-----------------------------------------------------*/
.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.hamburger {
  display: block;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 200;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  background: #000;
  width: 30px;
  height: 1.5px;
  position: absolute;
  left: 10px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
}

.hamburger span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.hamburger span:nth-of-type(2) {
  top: 50%;
}

.hamburger span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
  background: #fff;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(0px) rotate(-45deg);
  transform: translateY(0px) rotate(-45deg);
  background: #fff;
}

/*-----------------------------------------------------
  スクロール
-----------------------------------------------------*/
.visualScroll {
  padding: 0;
  position: absolute;
  z-index: 1;
  bottom: -40px;
  right: -30px;
  z-index: 5;
}
@media screen and (max-width: 991.98px) {
  .visualScroll {
    right: 30px;
    bottom: auto;
    top: calc(70% - 40px);
  }
}
.visualScroll div {
  display: inline-block;
  height: 80px;
}
.visualScroll div:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 80px;
  background: #E5E5E5;
}
.visualScroll div span {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -2px;
  width: 5px;
  height: 80px;
  overflow: hidden;
}
.visualScroll div span:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  left: 1px;
  top: -20px;
  margin-left: 1px;
  background: #000;
  -webkit-animation: scrollAni;
  animation: scrollAni;
  -webkit-animation-duration: 3.5s;
  animation-duration: 3.5s;
  -webkit-animation-timing-function: cubic-bezier(0.43, 0.05, 0.17, 1);
  animation-timing-function: cubic-bezier(0.43, 0.05, 0.17, 1);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes scrollAni {
  0% {
    -webkit-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
}
@keyframes scrollAni {
  0% {
    -webkit-transform: translate3d(0, 0px, 0);
            transform: translate3d(0, 0px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
}

/*-----------------------------------------------------
  swiper
-----------------------------------------------------*/
.swiper-pagination {
  position: relative;
  bottom: auto !important;
  margin-top: 20px;
}

:root {
  --swiper-theme-color: #000!important;
}

/*-----------------------------------------------------
  採用情報
-----------------------------------------------------*/
.recruitCopy_ttl {
  font-size: 4.8rem;
  font-weight: 500;
  font-style: italic;
}
@media screen and (max-width: 575.98px) {
  .recruitCopy_ttl {
    font-size: 7.2vw;
  }
}
.recruitCopy_wrap {
  position: relative;
}
.recruitCopy_wrap:before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background: #ccc;
  position: absolute;
  z-index: -1;
  top: -10vh;
  left: -1vw;
  background: url("../images/recruit_promise_scribble.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 991.98px) {
  .recruitCopy_wrap:before {
    background-size: 200%;
    left: -3vw;
    top: -5vh;
  }
}

.recruitPromise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991.98px) {
  .recruitPromise {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitPromise_photo {
  width: 50%;
}
@media screen and (max-width: 991.98px) {
  .recruitPromise_photo {
    width: 100%;
  }
}
.recruitPromise_photo img {
  margin-left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .recruitPromise_photo img {
    margin-left: -10%;
  }
}
.recruitPromise_desc {
  padding: 0 0 0 80px;
  width: 60%;
  max-width: 600px;
}
@media screen and (max-width: 991.98px) {
  .recruitPromise_desc {
    width: 100%;
    max-width: 100%;
    padding: 10px 0 0;
  }
}
.recruitPromise .label_p {
  display: inline-block;
  font-weight: 500;
  margin: 3rem 0;
  font-size: 1.4rem;
  font-style: italic;
  background: #000;
  color: #fff;
  border-radius: 100px;
  padding: 8px 25px;
}
.recruitPromise_ttl {
  font-size: 3.2rem;
  font-weight: 500;
  margin: 0 0 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 575.98px) {
  .recruitPromise_ttl {
    font-size: 6.2vw;
  }
}
.recruitPromise_txt {
  line-height: 2.4;
  font-size: 1.5rem;
}

.recruitCeo {
  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;
}
@media screen and (max-width: 991.98px) {
  .recruitCeo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitCeo_photo {
  width: 50%;
}
@media screen and (max-width: 991.98px) {
  .recruitCeo_photo {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.recruitCeo_photo img {
  margin-left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.recruitCeo_desc {
  padding: 100px 80px 0 0;
  width: 60%;
  max-width: 600px;
}
@media screen and (max-width: 991.98px) {
  .recruitCeo_desc {
    width: 100%;
    max-width: 100%;
    padding: 10px 0 0;
  }
}
.recruitCeo_ttl {
  font-size: 3.6rem;
  font-weight: 500;
  margin: 0 0 3rem;
  line-height: 1.8;
  font-style: italic;
}
@media screen and (max-width: 575.98px) {
  .recruitCeo_ttl {
    font-size: 6.2vw;
  }
}
.recruitCeo_txt {
  line-height: 2.4;
  font-size: 1.5rem;
}
.recruitCeo_sign {
  text-align: right;
  line-height: 2.4;
  font-size: 1.5rem;
  margin-top: 2rem;
}
.recruitCeo_wrap {
  padding-top: 5vw;
  position: relative;
}
.recruitCeo_wrap:before {
  content: "";
  display: block;
  width: 50%;
  height: 100vh;
  position: absolute;
  z-index: -1;
  top: -2vw;
  left: 10vw;
  background: url("../images/recruit_ceo_scribble.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 991.98px) {
  .recruitCeo_wrap:before {
    width: 100%;
    background-size: 100%;
    left: -10vw;
    top: -8vw;
    z-index: 2;
  }
}
@media screen and (max-width: 1199.98px) {
  .recruitCeo_wrap:before {
    left: 0;
    top: -5vw;
    width: 70%;
    z-index: 2;
  }
}
@media screen and (max-width: 575.98px) {
  .recruitCeo_wrap:before {
    top: -7vw;
    left: -2vw;
    width: 90%;
  }
}

.motivation {
  background: #FBF2F3;
}
.motivation_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .motivation_ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.motivation_ttl figure {
  width: 240px;
  padding-right: 50px;
}
@media screen and (max-width: 767.98px) {
  .motivation_ttl figure {
    padding: 0;
    margin-bottom: 4rem;
  }
}
.motivation_ttl h4 {
  font-size: 3.2rem;
  font-weight: 500;
  padding-left: 50px;
  border-left: solid 1px #E5E5E5;
}
@media screen and (max-width: 767.98px) {
  .motivation_ttl h4 {
    padding: 0;
    border: none;
    text-align: center;
    font-size: 5.2vw;
  }
}
.motivation_txt {
  text-align: center;
  line-height: 2.4;
  font-size: 1.6rem;
}

.recruitTraining_wrap {
  margin-top: -160px;
}
@media screen and (max-width: 767.98px) {
  .recruitTraining_wrap {
    margin-top: -100px;
  }
}
.recruitTraining_photo {
  position: relative;
  overflow: hidden;
  margin: 0 0 2rem 0;
}
.recruitTraining_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.recruitTraining_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recruitTraining_ttl {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}
.recruitTraining_txt {
  font-family: "Times New Roman", "Shippori Mincho", serif;
  font-size: 1.2rem;
}

@media screen and (max-width: 991.98px) {
  .recruitCurriculum {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitCurriculum_photo {
  width: 80%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991.98px) {
  .recruitCurriculum_photo {
    width: 100%;
  }
}
.recruitCurriculum_photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.recruitCurriculum_photo:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #EEF2F1;
  position: absolute;
  left: -30px;
  top: 30px;
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  .recruitCurriculum_photo:before {
    left: -3vw;
    top: 3vw;
  }
}
.recruitCurriculum_desc {
  padding: 0 0 0 80px;
  width: 70%;
  margin-left: auto;
  border-left: 1px solid #E5E5E5;
}
@media screen and (max-width: 991.98px) {
  .recruitCurriculum_desc {
    width: 100%;
    max-width: 100%;
    padding: 0;
    border: none;
  }
}
.recruitCurriculum_ttl {
  font-size: 3rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 575.98px) {
  .recruitCurriculum_ttl {
    font-size: 6.2vw;
  }
}
.recruitCurriculum_txt {
  line-height: 2.4;
  font-size: 1.5rem;
}

@media screen and (max-width: 991.98px) {
  .recruitCareerpass {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitCareerpass_ttl {
  font-size: 3rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 575.98px) {
  .recruitCareerpass_ttl {
    font-size: 6.2vw;
  }
}
.recruitCareerpass_txt {
  line-height: 2.4;
  font-size: 1.5rem;
}
.recruitCareerpass_image {
  margin-top: 5vw;
  margin-left: -50px;
}
@media screen and (max-width: 991.98px) {
  .recruitCareerpass_image {
    display: none;
  }
}
.recruitCareerpass_image01 {
  width: 400px;
}
.recruitCareerpass_image02 {
  width: 300px;
  margin-top: -50px;
  margin-left: 12vw;
}

.recruitQuestion {
  background: #EEF2F1;
}
@media screen and (max-width: 991.98px) {
  .recruitQuestion_photo {
    display: none;
  }
}

.recruitMessage_photo {
  position: relative;
  margin: 0 0 2.5rem 0;
}
.recruitMessage_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruitMessage_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recruitMessage_ttl {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}
.recruitMessage_meta {
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
}
.recruitMessage_txt {
  font-size: 1.3rem;
  line-height: 2;
}

.recruitGallery_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruitGallery_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
          animation: infinity-scroll-left 40s infinite linear 0.5s both;
  margin: 0;
  padding: 0;
}
.recruitGallery_item {
  width: 25vw;
  margin-right: 30px;
}
@media screen and (max-width: 991.98px) {
  .recruitGallery_item {
    width: 25vw;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .recruitGallery_item {
    width: 66.6666666667vw;
    margin-right: 20px;
  }
}
.recruitGallery figure {
  position: relative;
}
.recruitGallery figure img {
  border-radius: 10px;
}
.recruitGallery figcaption {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  z-index: 2;
  background: #000;
  display: inline-block;
  color: #fff;
  border-radius: 30px;
  padding: 5px 20px;
  font-size: 1.1rem;
  white-space: nowrap;
}

.recruitTour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991.98px) {
  .recruitTour {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitTour_photo {
  width: 50%;
}
@media screen and (max-width: 991.98px) {
  .recruitTour_photo {
    width: 100%;
  }
}
.recruitTour_photo img {
  width: 100%;
}
.recruitTour_desc {
  padding: 0 0 0 80px;
  width: 50%;
}
@media screen and (max-width: 991.98px) {
  .recruitTour_desc {
    width: 100%;
    padding: 0;
  }
}
.recruitTour_ttl {
  font-size: 2.8rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
}
@media screen and (max-width: 575.98px) {
  .recruitTour_ttl {
    font-size: 2.2rem;
  }
}
.recruitTour_txt {
  line-height: 2;
  font-size: 1.5rem;
}
.recruitTour_list {
  font-size: 1.2rem;
  margin-top: 2rem;
  padding: 25px 25px 25px 40px;
  background: #EEF2F1;
}

.recruitSNS {
  background: #EEF2F1;
}
.recruitSNS_qr {
  margin: 0 1.5vw;
}

.entryform {
  padding: 80px;
  border: 1px solid #E5E5E5;
}
@media screen and (max-width: 991.98px) {
  .entryform {
    padding: 40px;
  }
}
.entryform dl dt {
  margin-bottom: 1rem;
}
.entryform dl dd {
  margin-bottom: 3rem;
}
.entryform .vertical-item {
  display: block;
}
.entryform input[type=text],
.entryform textarea,
.entryform select {
  background: #fff;
  padding: 10px;
  width: 100%;
  border: 1px solid #E5E5E5;
}
.entryform .error {
  margin-top: 5px;
  color: #FF0000;
}
.entryform .require {
  color: #FF0000;
  font-size: 10px;
  margin-left: 5px;
}
.entryform #submit {
  clear: both;
  text-align: center;
  margin: 2rem 0 0 0;
}
.entryform #submit input {
  -webkit-appearance: none;
  border: none;
  padding: 20px 30px;
  text-decoration: none;
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  font-size: 1.6rem;
  cursor: pointer;
}
.entryform #submit input:hover {
  background: #333;
}
.entryform #submit input.back {
  background: #B7B7B7;
}
.entryform .message-container-input {
  margin: 0px;
}
.entryform .addressArea {
  position: relative;
}
.entryform .addressArea p {
  margin: 0 0 10px 0;
}

/*-----------------------------------------------------
  会社概要
-----------------------------------------------------*/
.companyPhilosophy h3 {
  font-weight: 500;
  margin: 1.5em 0 0em 0;
  font-size: 1.8rem;
}
.companyPhilosophy h4 {
  font-weight: 500;
  font-size: 2.2rem;
  margin: 1em 0 1em 0;
  font-style: italic;
}
.companyPhilosophy p {
  margin: 1.5em 0;
  font-size: 1.6rem;
}

.companyInfo h3 {
  margin: 2em 0 1em 0;
}
.companyInfo h4 {
  margin: 2em 0 1em 0;
}
.companyInfo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 991.98px) {
  .companyInfo dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}
.companyInfo dl dt {
  width: 20%;
  padding: 30px 0;
  border-top: 1px solid #E5E5E5;
}
@media screen and (max-width: 991.98px) {
  .companyInfo dl dt {
    padding-bottom: 0;
    width: 100%;
  }
}
.companyInfo dl dd {
  padding: 30px 0;
  margin: 0;
  border-top: 1px solid #E5E5E5;
  width: 80%;
}
@media screen and (max-width: 991.98px) {
  .companyInfo dl dd {
    width: 100%;
    padding-top: 0;
    border-top: none;
  }
}
.companyInfo p {
  margin: 1.5em 0;
}

#map_access {
  width: 100%;
  height: 600px;
}

/*-----------------------------------------------------
  ウェブ予約
-----------------------------------------------------*/
.onlineReserve {
  text-align: center;
}
.onlineReserve_logo {
  margin-bottom: 2rem;
}
.onlineReserve_logo img {
  zoom: 0.5;
  display: inline-block;
}
.onlineReserve_ttl {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.onlineReserve_txt {
  font-size: 1.3rem;
  margin: 0;
}

@media screen and (max-width: 991.98px) {
  .phoneReserve {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.phoneReserve_photo {
  width: 80%;
}
@media screen and (max-width: 991.98px) {
  .phoneReserve_photo {
    width: 100%;
  }
}
.phoneReserve_desc {
  position: relative;
  z-index: 2;
  background: #EEF2F1;
  width: 50%;
  padding: 60px;
  margin: -300px 0 0 auto;
}
@media screen and (max-width: 991.98px) {
  .phoneReserve_desc {
    width: 99%;
    margin: -50px -30px 0 auto;
    padding: 50px;
  }
}
.phoneReserve_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 3rem;
}
.phoneReserve_txt {
  font-size: 1.3rem;
}
.phoneReserve .list .label {
  font-size: 1.8rem;
  font-style: italic;
}
.phoneReserve .list ul {
  padding: 0 0 0 1.5em;
  margin: 1em 0 0;
  font-size: 1.5rem;
}
.phoneReserve .list span {
  display: block;
  font-size: 1.2rem;
}
.phoneReserve .list li + li {
  margin-top: 0.5em;
}

.reserveList {
  padding: 50px 0;
  border-top: 1px solid #E5E5E5;
}
.reserveList_desc {
  margin-bottom: 1rem;
}
.reserveList_ttl {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.reserveList_txt {
  margin-bottom: 2rem;
}
.reserveList_btn {
  margin-top: 2rem;
}

/*-----------------------------------------------------
  インスタリスト
-----------------------------------------------------*/
.instaList h4 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 1.5em;
  padding: 0 0 0.5em;
  border-bottom: 1px solid #E5E5E5;
}
.instaList ul {
  list-style: none;
  padding: 0;
}
.instaList ul li {
  padding: 10px 0;
}
.instaList ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.instaList ul figure {
  width: 30px;
  height: 30px;
  margin-right: 1em;
  position: relative;
}
.instaList ul figure img {
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

/*-----------------------------------------------------
  商品情報
-----------------------------------------------------*/
.products {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991.98px) {
  .products {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.products_photo {
  width: 65%;
}
@media screen and (max-width: 991.98px) {
  .products_photo {
    width: 100%;
  }
}
.products_desc {
  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 60px 0 0;
  width: 35%;
}
@media screen and (max-width: 991.98px) {
  .products_desc {
    width: 100%;
    padding: 40px 0 0;
  }
}
.products_logo {
  margin-bottom: 3rem;
}
.products_logo img {
  zoom: 0.4;
}
.products_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 3rem;
}
.products_txt {
  font-size: 1.3rem;
}
.products_btn {
  margin-bottom: 3rem;
}

/*-----------------------------------------------------
  価格表
-----------------------------------------------------*/
.pricelist h3 {
  margin-bottom: 1.5rem;
}
.pricelist dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5rem;
  border-top: solid 1px #E5E5E5;
}
.pricelist dl dt {
  width: calc(100% - 140px);
  padding: 20px 0;
  border-bottom: solid 1px #E5E5E5;
}
.pricelist dl dd {
  padding: 20px 0;
  width: 140px;
  border-bottom: solid 1px #E5E5E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pricelist dl span {
  margin-top: 0.5em;
  display: block;
  font-size: 1.1rem;
  line-height: 1.5;
}
.pricelist .notice {
  font-size: 1.2rem;
  padding-left: 1em;
}
.pricelist .notice li + li {
  margin-top: 0.5em;
}

/*-----------------------------------------------------
  スタイルギャラリー
-----------------------------------------------------*/
.tags {
  font-size: 1.1rem;
}
.tags ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tags li {
  margin: 0 1em 1em 0;
}
.tags a {
  position: relative;
  display: block;
  padding: 0.5em 1.5em;
  border-radius: 2em;
  border: solid 1px #E5E5E5;
  background: #fff;
}
.tags a:before {
  content: "#";
}
.tags.instaTags {
  position: absolute;
  bottom: -25px;
  right: 20%;
  z-index: 2000;
}
@media screen and (max-width: 991.98px) {
  .tags.instaTags {
    display: none;
  }
}

/*-----------------------------------------------------
  サロン
-----------------------------------------------------*/
/* salonVisual */
.salonVisual_photo {
  position: relative;
  aspect-ratio: 16/9;
}
.salonVisual_photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}
.salonVisual_photo:before {
  content: "";
  position: absolute;
  right: -60%;
  bottom: -60px;
  display: block;
  width: 100%;
  height: 100%;
  background: #EEF2F1;
  z-index: 1;
}

.outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .outline {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.outline_photo {
  width: 45%;
}
@media screen and (max-width: 991.98px) {
  .outline_photo {
    width: 100%;
    margin: 0 0 5rem;
  }
}
.outline_photo figure {
  width: 100%;
  position: relative;
  aspect-ratio: 3/2;
}
.outline_photo figure.vertical {
  aspect-ratio: 2/3;
}
.outline_photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: relative;
}
.outline_desc {
  padding: 30px 0 0 80px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 991.98px) {
  .outline_desc {
    padding: 0;
    width: 100%;
  }
}
.outline_ttl {
  font-size: 2.6rem;
  margin: 0 0 1rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 575.98px) {
  .outline_ttl {
    font-size: 2.6rem;
  }
}
.outline_ttl span {
  font-size: 1.2rem;
}
.outline_txt {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 1rem;
}
.outline_address {
  font-size: 1.4rem;
  margin: 0 0 1rem;
}
.outline_meta {
  font-size: 1.4rem;
  margin: 0 0 2rem;
  font-style: italic;
}
.outline_phone {
  margin: 0 0 1rem;
}
.outline_phone em {
  font-size: 2.8rem;
  font-style: normal;
}

.datalist {
  font-size: 1.3rem;
}
.datalist h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 500;
}
.datalist h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.datalist dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: none;
  margin-bottom: 2rem;
}
.datalist dl dt {
  width: 140px;
  padding: 0;
  margin: 0 0 0.5rem;
}
.datalist dl dd {
  padding: 0;
  margin: 0 0 0.5rem;
  width: calc(100% - 140px);
  background: #fff;
}
.datalist ul {
  list-style: none;
  padding: 0;
}
.datalist ul li + li {
  margin-top: 0.5em;
}
.datalist_txt {
  margin-bottom: 2.5rem;
}

.acf-map {
  width: 100%;
  height: 100%;
  min-height: 800px;
}

.reserveBtn {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reserveBtn li {
  width: 49%;
}
.reserveBtn li + li {
  margin: 0 0 0 2% !important;
}

.phoneBtn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 575.98px) {
  .phoneBtn {
    display: block;
  }
}

.salonFeature_photo {
  position: relative;
  overflow: hidden;
  margin: 0 0 2rem 0;
}
.salonFeature_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
a:hover .salonFeature_photo img {
  width: 120%;
  height: 120%;
}
.salonFeature_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.salonFeature_ttl {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}
.salonFeature_txt {
  font-family: "Times New Roman", "Shippori Mincho", serif;
  font-size: 1.4rem;
}

/*-----------------------------------------------------
  価格表
-----------------------------------------------------*/
.priceCard {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Times New Roman", YuMincho, "Yu Mincho", yu-mincho-pr6, "Hiragino Mincho ProN", serif;
}
.priceCard_ttl {
  background: #AABEB5;
  color: #fff;
  padding: 20px;
  font-weight: 600;
  font-size: 1.8rem;
}
.priceCard_ttl.light {
  background: #F5C66F;
}
.priceCard_ttl.regular {
  background: #62B167;
}
.priceCard_ttl.premium {
  background: #7F5FA1;
}
.priceCard_price {
  font-family: "Times New Roman", YuMincho, "Yu Mincho", yu-mincho-pr6, "Hiragino Mincho ProN", serif;
  height: 200px;
  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;
  font-size: 1.6rem;
}
.priceCard_price .free {
  line-height: 1.2;
  font-size: 120%;
  color: #AABEB5;
}
.priceCard_price .free strong {
  font-size: 320%;
}
.priceCard_price .monthly {
  line-height: 1.2;
}
.priceCard_price .monthly strong {
  font-size: 260%;
}
.priceCard_price .annual {
  margin-top: 1em;
  background: #EEF2F1;
  font-size: 1.2rem;
  padding: 5px 2rem;
  border-radius: 20px;
}
.priceCard ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.priceCard ul li {
  padding: 20px;
}
.priceCard ul li strong {
  display: inline-block;
  font-size: 200%;
  font-weight: 700;
  margin: 0 0.2em;
}
.priceCard ul li:nth-child(odd) {
  background: #EEF2F1;
}

/*-----------------------------------------------------
  よくあるご質問
-----------------------------------------------------*/
.faqList dl {
  background: #fff;
  position: relative;
  margin: 0;
  padding: 30px 0 30px 30px;
  cursor: pointer;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 991.98px) {
  .faqList dl {
    padding: 30px 0 30px 10px;
  }
}

.faqList dl:first-child {
  border-top: 1px solid #E5E5E5;
}

.faqList dl::before {
  position: absolute;
  top: 36px;
  right: 36px;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  content: "";
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  border-top: 2px solid #AABEB5;
  border-right: 2px solid #AABEB5;
}
@media screen and (max-width: 991.98px) {
  .faqList dl::before {
    right: 18px;
  }
}

.faqList .open::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.faqList dt {
  position: relative;
  margin: 0;
  padding: 0 80px 0 40px;
  font-size: 1.6rem;
}
@media screen and (max-width: 991.98px) {
  .faqList dt {
    padding: 0 40px 0 40px;
  }
}

.faqList dt::before {
  font-size: 2.2rem;
  line-height: 1;
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  content: "Q";
  color: #AABEB5;
  font-family: "Times New Roman", YuMincho, "Yu Mincho", yu-mincho-pr6, "Hiragino Mincho ProN", serif;
}

.faqList dd {
  background: #EEF2F1;
  position: relative;
  display: none;
  height: auto;
  margin: 30px 0 0 0;
  padding: 30px;
}

.faqList nav {
  margin-top: 0.5em;
}
.faqList nav i {
  margin-right: 0.5em;
}

/*-----------------------------------------------------
  トップ
-----------------------------------------------------*/
.infoList ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #E5E5E5;
}
.infoList li {
  margin: 0;
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #E5E5E5;
  padding: 30px 0;
}
.infoList .date {
  margin-right: 1.5em;
  color: gray;
}
.infoList p {
  display: inline-block;
  margin: 0;
}

/*-----------------------------------------------------
  トップ
-----------------------------------------------------*/
/* homeVisual */
.homeVisual {
  position: relative;
  height: 90vh;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .homeVisual {
    height: 100vh;
    /* Fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
  }
}
.homeVisual_desc {
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 3;
}
@media screen and (max-width: 991.98px) {
  .homeVisual_desc {
    position: relative;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    top: auto;
    left: auto;
    height: 32%;
    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;
    width: 91.6666666667%;
    margin: 0 auto;
  }
}
.homeVisual_ttl {
  font-size: 5.4rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 991.98px) {
  .homeVisual_ttl {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 575.98px) {
  .homeVisual_ttl {
    font-size: 7.2vw;
    white-space: nowrap;
  }
}
.homeVisual_txt {
  font-size: 2.4rem;
  line-height: 2;
  margin: 4rem 0 0;
}
@media screen and (max-width: 991.98px) {
  .homeVisual_txt {
    margin: 2rem 0 0;
  }
}
@media screen and (max-width: 575.98px) {
  .homeVisual_txt {
    margin: 1rem 0 0;
    font-size: 5vw;
  }
}
.homeVisual_photo {
  z-index: 2;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 60%;
  height: calc(90vh + 100px);
}
@media screen and (max-width: 991.98px) {
  .homeVisual_photo {
    position: relative;
    width: 100%;
    height: 68%;
    padding-left: 50px;
  }
}
.homeVisual_photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.homeVisual_photo video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

/* homeConcept */
.homeConcept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .homeConcept {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.homeConcept_photo {
  z-index: 2;
  width: 500px;
  height: 700px;
}
@media screen and (max-width: 991.98px) {
  .homeConcept_photo {
    width: 100%;
    height: auto;
    margin-bottom: 60px;
  }
}
.homeConcept_photo img {
  margin-left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .homeConcept_photo img {
    margin-left: -100px;
  }
}
.homeConcept_desc {
  padding: 100px 0 0 80px;
}
@media screen and (max-width: 991.98px) {
  .homeConcept_desc {
    padding: 0;
    width: 100%;
    margin: 0;
  }
}
.homeConcept_ttl {
  font-size: 3.6rem;
  margin: 0 0 0.6em;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 575.98px) {
  .homeConcept_ttl {
    font-size: 2.6rem;
  }
}
.homeConcept_txt {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 991.98px) {
  .homeConcept_txt br {
    display: none;
  }
}
.homeConcept nav {
  margin-top: 3em;
}
@media screen and (max-width: 991.98px) {
  .homeConcept nav {
    text-align: center;
  }
}
.homeConcept_image {
  z-index: 2;
  position: absolute;
  right: 40px;
  bottom: -60px;
  width: 400px;
}
@media screen and (max-width: 991.98px) {
  .homeConcept_image {
    width: auto;
    height: 180px;
    right: 0;
    bottom: -50px;
  }
}
.homeConcept_image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.homeConcept_wrap {
  padding-top: 180px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .homeConcept_wrap {
    padding: 0 0 180px;
    margin-bottom: 140px !important;
  }
}
.homeConcept_wrap:before {
  content: "";
  background: #EEF2F1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  z-index: -1;
}
@media screen and (max-width: 991.98px) {
  .homeConcept_wrap:before {
    top: 100px;
  }
}

/* homeGallery */
.wrapper .swiper-container .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.homeGallery {
  position: relative;
}
.homeGallery [class*=col-] {
  position: relative;
}
.homeGallery .swiper-slide:nth-child(even) {
  margin-top: 50px;
}
.homeGallery .swiper-slide {
  height: 100%;
  overflow: hidden;
}
.homeGallery .swiper-slide_photo {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  /* 比率 */
}
.homeGallery .swiper-slide_photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* homeGallery */
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.homeGallery_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.homeGallery_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
          animation: infinity-scroll-left 40s infinite linear 0.5s both;
  margin: 0;
  padding: 0;
}
.homeGallery_item {
  width: 20vw;
  margin-right: 50px;
}
@media screen and (max-width: 991.98px) {
  .homeGallery_item {
    width: 25vw;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767.98px) {
  .homeGallery_item {
    width: 50vw;
    margin-right: 30px;
  }
}
.homeGallery_item:nth-child(even) {
  margin-top: 50px;
}
.homeGallery:before {
  content: "";
  background: #EDF2F1;
  position: absolute;
  top: 100px;
  left: 20%;
  width: 200%;
  height: calc(100% - 50px);
  z-index: -1;
}
@media screen and (max-width: 991.98px) {
  .homeGallery:before {
    top: 80px;
  }
}

/* homeInsta */
.homeInsta [class*=col-] {
  position: relative;
}
.homeInsta_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.homeInsta_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
          animation: infinity-scroll-left 40s infinite linear 0.5s both;
  margin: 0;
  padding: 0;
}
.homeInsta_item {
  width: 16.6666666667vw;
  margin-right: 30px;
}
@media screen and (max-width: 991.98px) {
  .homeInsta_item {
    width: 25vw;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .homeInsta_item {
    width: 33.3333333333vw;
    margin-right: 20px;
  }
}
.homeInsta figure {
  position: relative;
  aspect-ratio: 1/1;
}
.homeInsta figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* homeTopics */
.homeTopics {
  position: relative;
}
.homeTopics_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.homeTopics nav {
  margin-top: auto !important;
}
@media screen and (max-width: 991.98px) {
  .homeTopics nav {
    display: none;
  }
}

.homeTopicsList ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.homeTopicsList li {
  margin: 0;
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.homeTopicsList li + li {
  margin-top: 1em;
}
.homeTopicsList .date {
  margin-right: 1.5em;
  color: gray;
}
.homeTopicsList p {
  display: inline-block;
  margin: 0;
}

/* homeCast */
.homeCast {
  position: relative;
  margin-bottom: 240px;
}
@media screen and (max-width: 991.98px) {
  .homeCast {
    margin-bottom: 300px;
  }
}
.homeCast:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 90vw;
  height: 100%;
  background: #EEF2F1;
}
@media screen and (max-width: 991.98px) {
  .homeCast:before {
    width: 95vw;
  }
}
.homeCast_photo {
  position: absolute;
  right: 0;
  top: 100px;
  z-index: 2;
  width: 70vw;
  max-width: 1500px;
  height: 100%;
}
@media screen and (max-width: 991.98px) {
  .homeCast_photo {
    width: 95vw;
    height: 240px;
    top: calc(100% - 40px);
  }
}
.homeCast_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeCast_desc {
  position: relative;
  z-index: 2;
  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;
  min-height: 500px;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .homeCast_desc {
    min-height: auto;
    padding: 80px 0;
  }
}
.homeCast nav {
  margin-top: 3em;
}
@media screen and (max-width: 991.98px) {
  .homeCast nav {
    text-align: center;
  }
}

/* homeFeature */
.homeFeature a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
  background: #ccc;
}
.homeFeature a::after, .homeFeature a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  z-index: 0;
}
.homeFeature a.salon::before {
  background: url("../images/home_feature_salon.jpg?0322") no-repeat;
  background-size: cover;
  background-position: bottom center;
}
.homeFeature a.menu::before {
  background: url("../images/home_feature_menu.jpg") no-repeat;
  background-size: cover;
  background-position: bottom center;
}
.homeFeature a:hover::before {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.homeFeature a:hover::after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.homeFeature_desc {
  text-align: center;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-52%, -50%);
          transform: translate(-52%, -50%);
  z-index: 2;
  color: #fff;
}
.homeFeature_ttl {
  font-size: 2.8rem;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
.homeFeature_txt {
  font-size: 1.1rem;
  line-height: 1;
  margin: 1.5rem 0 0;
}

/* homeContents */
.homeContents {
  position: relative;
}
.homeContents .label {
  left: 50px;
  font-size: 1.1rem;
}
@media screen and (max-width: 767.98px) {
  .homeContents .label {
    left: 15px;
  }
}
.homeContents a {
  color: #000;
}
.homeContents a:hover {
  color: #fff;
}
.homeContents_photo {
  position: relative;
  overflow: hidden;
  z-index: 1;
  aspect-ratio: 16/9;
  margin-left: 30px;
}
.homeContents_photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}
a:hover .homeContents_photo img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}
.homeContents_desc {
  position: relative;
  margin: -30px 0 0;
  padding: 30px 40px;
  background: #fff;
  z-index: 2;
  width: 80%;
}
a:hover .homeContents_desc {
  background: #000;
}
.homeContents_ttl {
  font-size: 2.2rem;
  margin: 0;
  overflow: hidden;
  font-weight: 500;
}
.homeContents_meta {
  font-family: "Times New Roman", "Shippori Mincho", serif;
  margin-top: 0.5em;
  font-size: 1.1rem;
}

/* homeRecruit */
.homeRecruit a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  color: #fff;
  background: #000;
}
.homeRecruit_photo {
  width: 50%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  position: relative;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.homeRecruit_photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}
a:hover .homeRecruit_photo img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}
.homeRecruit_desc {
  width: 50%;
  position: relative;
  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;
  min-height: 140px;
}
a:hover .homeRecruit_desc {
  background: #222;
}
.homeRecruit_ttl {
  line-height: 1;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0.5rem 0 1.5rem 0;
}
@media screen and (max-width: 767.98px) {
  .homeRecruit_ttl {
    margin: 0.5rem 0 1rem 0;
    font-size: 2rem;
  }
}
.homeRecruit_txt {
  line-height: 1;
  font-family: "Times New Roman", "Shippori Mincho", serif;
  margin: 0;
  font-size: 1.1rem;
}

/*-----------------------------------------------------
  ラベル
-----------------------------------------------------*/
.label {
  font-family: "Times New Roman", "Shippori Mincho", serif;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
  padding-left: 25px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.label:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  display: block;
  background: #000;
  top: 50%;
  left: 0;
}
.label_vertical {
  position: absolute;
  left: -20px;
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
a:hover .label {
  color: #000;
}
.label_lg {
  font-size: 1.4rem;
}

/*-----------------------------------------------------
  メッセージ
-----------------------------------------------------*/
.message {
  text-align: center;
}
.message_ttl {
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 1em;
  line-height: 1.8;
}
@media screen and (max-width: 575.98px) {
  .message_ttl {
    font-size: 7.2vw;
  }
}
.message_txt {
  font-size: 1.6rem;
  line-height: 2.8;
}
@media screen and (max-width: 991.98px) {
  .message_txt {
    text-align: left !important;
    line-height: 2.4;
    font-size: 1.5rem;
  }
}

/*-----------------------------------------------------
  ヒーロー画像
-----------------------------------------------------*/
.hero_photo {
  position: relative;
  width: 100%;
}
.hero_photo img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.hero_photo video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.hero_photo:before {
  content: "";
  display: block;
  position: absolute;
  top: 60px;
  left: 60px;
  width: 100%;
  height: 100%;
  background: #EEF2F1;
}
@media screen and (max-width: 767.98px) {
  .hero_photo:before {
    top: 40px;
    left: 40px;
  }
}
.hero .play {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767.98px) {
  .hero .play {
    bottom: 15px;
    right: 15px;
  }
}
.hero_reverse .hero_photo {
  margin-left: auto;
}
.hero_reverse .hero_photo:before {
  top: 60px;
  right: 60px;
  left: auto;
}
@media screen and (max-width: 767.98px) {
  .hero_reverse .hero_photo:before {
    top: 40px;
    right: 40px;
  }
}

/*-----------------------------------------------------
  共通：コンテンツ
-----------------------------------------------------*/
.contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991.98px) {
  .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contents_photo {
  z-index: 2;
  width: 40%;
  min-height: 680px;
}
@media screen and (max-width: 991.98px) {
  .contents_photo {
    height: 400px;
    width: 100%;
    min-height: auto;
  }
}
.contents_photo img {
  margin-left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .contents_photo img {
    margin-left: -10%;
  }
}
.contents_desc {
  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 0 0 80px;
  width: 60%;
}
@media screen and (max-width: 991.98px) {
  .contents_desc {
    width: 100%;
    padding: 40px 0 0;
  }
}
.contents .label {
  margin: 3rem 0;
  font-size: 1.8rem;
  font-style: italic;
}
.contents_ttl {
  font-size: 2.8rem;
  font-weight: 500;
  margin: 0 0 3rem;
  line-height: 1.8;
}
@media screen and (max-width: 575.98px) {
  .contents_ttl {
    font-size: 6.2vw;
  }
}
.contents_subttl {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0.5em 0 0.3em;
}
.contents_txt {
  line-height: 2.4;
  font-size: 1.5rem;
}
.contents_btn {
  margin-top: 1em;
}
.contents_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 991.98px) {
  .contents_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contents_reverse .contents_desc {
  padding: 0 80px 0 0;
}
@media screen and (max-width: 991.98px) {
  .contents_reverse .contents_desc {
    width: 100%;
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 991.98px) {
  .contents_reverse img {
    margin: 0 0 0 10%;
  }
}

/*-----------------------------------------------------
  共通：画像付きカード
-----------------------------------------------------*/
.photoCard {
  position: relative;
}
.photoCard_photo {
  position: relative;
  overflow: hidden;
  z-index: 1;
  aspect-ratio: 16/9;
}
.photoCard_photo.vertical {
  aspect-ratio: 2/3;
}
.photoCard_photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: relative;
}
.photoCard_photo img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.photoCard_desc {
  margin: 2.5rem 0 0 0;
}
.photoCard_ttl {
  font-size: 1.8rem;
  font-weight: 500 !important;
  margin: 0 !important;
}
.photoCard_txt {
  margin: 0.8rem 0 0 0;
  font-size: 1.3rem;
}
.photoCard_meta {
  margin: 0rem 0 0 0;
  font-size: 1.1rem;
  font-style: italic;
}
.photoCard a {
  color: #000;
}
.photoCard a:hover {
  color: gray;
}
.photoCard .spec {
  z-index: 2;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.photoCard .spec span {
  margin-left: 5px;
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  border-radius: 20px;
  background: #000;
  padding: 5px 10px;
}

/*-----------------------------------------------------
  共通：インフォ・ブログ
-----------------------------------------------------*/
.entry_title {
  margin: 0 0 4rem;
}
.entry_title h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.entry_date {
  font-size: 1.3rem;
  margin-bottom: 1.4em;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.05em;
}
.entrybody {
  font-size: 1.6rem;
  clear: both;
  line-height: 2 !important;
  color: #000;
  /* テーブル */
  /* ボックス */
  /* リード */
}
.entrybody a {
  color: #007bff;
}
.entrybody em {
  font-style: italic;
}
.entrybody ul {
  margin: 2em 0;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}
.entrybody ul li {
  list-style: disc inside;
}
.entrybody ol li {
  list-style: decimal inside;
}
.entrybody h1,
.entrybody h2,
.entrybody h3,
.entrybody h4,
.entrybody h5 {
  margin: 3em 0 1em;
  font-weight: 500;
  line-height: 1.4;
}
.entrybody h1 {
  font-size: 3.2rem;
}
.entrybody h2 {
  font-size: 2.6rem;
  position: relative;
  padding-bottom: 0.6em;
}
.entrybody h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
}
.entrybody h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 15%;
  height: 2px;
  background-color: #AABEB5;
}
.entrybody h3 {
  font-size: 2.2rem;
  position: relative;
  padding-left: 1em;
}
.entrybody h3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #AABEB5;
}
.entrybody h4 {
  font-size: 1.8rem;
}
.entrybody h5 {
  font-size: 1.6rem;
}
.entrybody p {
  margin: 1em 0;
  line-height: 2 !important;
}
.entrybody figure {
  margin: 2em 0;
}
.entrybody figure figcaption {
  margin-top: 1em;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.5);
}
.entrybody .emoji {
  width: 1.5em;
  display: inline;
  vertical-align: middle;
}
.entrybody img {
  height: auto;
}
.entrybody img.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entrybody img.alignright {
  margin: 0 0 30px 30px;
  display: inline;
}
.entrybody img.alignleft {
  margin: 0 30px 30px 0;
  display: inline;
}
.entrybody .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entrybody .alignright {
  float: right;
}
.entrybody .alignleft {
  float: left;
}
.entrybody hr {
  border: 0;
  height: 1px;
  background: #E5E5E5;
}
.entrybody blockquote {
  margin: 2em 0;
  border-left: 2px solid #E5E5E5;
  padding: 1em 0 1em 2em;
}
.entrybody blockquote p {
  margin: 0;
}
.entrybody blockquote p + p {
  margin-top: 0;
}
.entrybody blockquote cite {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.5);
}
.entrybody table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  margin: 2rem 0;
}
.entrybody table thead th {
  text-align: center;
  color: #fff;
}
.entrybody table th {
  padding: 20px;
  text-align: left;
  border: 1px solid #E5E5E5;
  font-weight: normal;
  position: relative;
  color: #AABEB5;
}
.entrybody table td {
  padding: 20px;
  border: 1px solid #E5E5E5;
  border-left: none;
}
.entrybody .box {
  border: 2px solid #E5E5E5;
  margin: 3em 0 2em;
  padding: 40px;
  position: relative;
  font-size: 1.6rem;
}
.entrybody .box span {
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  background: #F5F7F8;
  padding: 0 15px;
  position: absolute;
  top: -20px;
  left: 25px;
}
.entrybody .box p {
  font-size: 1.6rem;
  margin: 0 !important;
}
.entrybody .box p + p {
  margin-top: 1em !important;
}
.entrybody .lead {
  margin: 2em 0;
  background: #EEF2F1;
  font-size: 1.6rem;
  padding: 30px;
  border-radius: 10px;
}
.entrybody .lead p:last-child {
  margin-bottom: 0;
}
.entrybody .lead p:first-child {
  top-bottom: 0;
}

/* Youtube埋め込み */
.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ブログカード */
.entry-card {
  margin: 3em 0;
  border: 2px solid #E5E5E5;
}
.entry-card .entry-card-content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.entry-card .entry-card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75em;
}
.entry-card a {
  color: #000;
  display: block;
  padding: 30px;
}
.entry-card a:hover {
  text-decoration: none;
}
.entry-card a:hover .entry-card-title {
  text-decoration: underline;
}
.entry-card figure {
  margin: 0;
  width: 30%;
}
.entry-card p {
  margin: 0 !important;
  padding-left: 20px;
  width: 70%;
  font-size: 1.3rem;
}
.entry-card p span {
  display: block;
  margin-bottom: 0.5em;
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.5);
}

/* サイドメニュー */
.submenu {
  font-size: 1.3rem;
}
.submenu [class*=col-] {
  position: relative;
  margin-bottom: 40px;
}
.submenu a {
  color: #000;
}
.submenu a:hover {
  color: #AABEB5;
}
.submenu h3 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  font-weight: 600;
}
.submenu h3 i {
  margin-right: 0.5em;
  color: #AABEB5;
}
.submenu .catlist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.submenu .catlist ul li {
  margin: 0 0 0.8em;
  padding: 0;
}
.submenu .catlist ul li ul {
  margin: 10px 0 10px 15px;
}
.submenu .catlist ul li ul li {
  padding: 0;
  margin-bottom: 0.5em;
}
.submenu .entrylist_photo {
  padding-left: 10px;
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.submenu .entrylist_photo img {
  height: auto;
  width: 100%;
}
.submenu .entrylist_desc {
  width: 100%;
}
.submenu .entrylist ol,
.submenu .entrylist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.submenu .entrylist ol li,
.submenu .entrylist ul li {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.submenu .entrylist ol li + li,
.submenu .entrylist ul li + li {
  margin-top: 1em;
}
.submenu .entrylist ol {
  margin: 0;
  padding: 0 0 0 1em;
}

/*-----------------------------------------------------
  共通：テーブル
-----------------------------------------------------*/
.tbl {
  border: 1px solid #E5E5E5;
  border-bottom: none;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.3rem;
  width: 100%;
}
.tbl td,
.tbl th {
  font-weight: 500;
  border-bottom: 1px solid #E5E5E5;
  padding: 25px;
}
.tbl th {
  width: 25%;
  background: #EEF2F1;
}
@media screen and (max-width: 991.98px) {
  .tbl th {
    width: 100%;
    display: block;
    border-bottom: none;
    padding: 10px;
  }
}
@media screen and (max-width: 991.98px) {
  .tbl td {
    width: 100%;
    display: block;
  }
}
.tbl td h4 {
  margin-bottom: 0.2em;
  font-weight: 600;
}
.tbl td p {
  margin: 0;
}
.tbl td p + p {
  margin-top: 1em;
}
.tbl td p + h4 {
  margin-top: 1em;
}

/*-----------------------------------------------------
  共通：タイトル
-----------------------------------------------------*/
/* ttl */
.ttl-lg {
  font-size: 3.6rem;
  position: relative;
  font-weight: 500;
}

.ttl-md {
  font-size: 3rem;
  position: relative;
  font-weight: 500;
}

.ttl-sm {
  font-size: 2.4rem;
  position: relative;
  font-weight: 500;
}

.ttl-xs {
  font-size: 2rem;
  position: relative;
  font-weight: 500;
}

.ttl-center {
  text-align: center;
  position: relative;
}

.ttl-txt {
  margin-top: 2em;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  position: relative;
}

.ttl-sup {
  margin-top: 0;
  font-size: 1.3rem;
  font-weight: 500;
}

[class*=ttl-] + .label {
  margin-top: 1em;
}

/*-----------------------------------------------------
  共通：ボタンエリア
-----------------------------------------------------*/
.btnArea {
  text-align: center;
}

/*-----------------------------------------------------
  共通：ボタン
-----------------------------------------------------*/
.btn {
  display: inline-block;
  position: relative;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 1.8rem 0;
  font-size: 1.3rem;
  color: #000;
  width: 100%;
  max-width: 240px;
  border: 1px solid #E5E5E5;
}
.btn .fa-angle-right {
  position: absolute;
  margin: 0 0.3rem;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn:hover {
  text-decoration: none;
  color: #fff;
  background: #000;
}
.btn:hover i {
  color: #fff;
}
.btn.btn-sm {
  max-width: 180px;
  line-height: 1;
}
.btn.btn-lg {
  padding: 2rem 0;
  max-width: 300px;
}
.btn.btn-covit {
  padding: 2rem 0;
  max-width: 100%;
  width: 100%;
  border-radius: 100px;
}
.btn.btn-xl {
  width: 100%;
  max-width: 100%;
  color: #fff;
  border-radius: 3px;
  border: none;
  background: #A8B6B2;
  font-size: 1.8rem;
  max-width: 400px;
  padding: 2.5rem 0;
}
.btn.btn-xl:hover {
  background: #000;
}
.btn.btn-reserve {
  padding: 1rem 0;
  max-width: 100%;
  width: 100%;
  min-width: 100px;
  border-radius: 100px;
  background: #AABEB5;
  border: none;
  color: #fff;
}
.btn.btn-reserve:hover {
  background: #000;
}

.btn-phone {
  line-height: 1;
  text-align: center;
  display: block;
  padding: 1.5rem 0;
  width: 100%;
  border-radius: 100px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 3rem;
}
.btn-phone i {
  font-size: 1.8rem;
}
.btn-phone span {
  letter-spacing: normal;
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.btn-phone:hover {
  color: #fff;
  background: #AABEB5;
}

/*-----------------------------------------------------
  共通：矢印
-----------------------------------------------------*/
.arw {
  position: relative;
  padding-left: 17px;
}
.arw::after, .arw::before {
  display: block;
  content: "";
  position: absolute;
}
.arw::after {
  top: 0.2em;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #74c59a;
  border-radius: 100%;
}
.arw::before {
  z-index: 2;
  top: 0.525em;
  left: 0.25em;
  width: 3px;
  height: 3px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*-----------------------------------------------------
  Youtube
-----------------------------------------------------*/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*-----------------------------------------------------
  GoogleMap
-----------------------------------------------------*/
.googlemap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-----------------------------------------------------
  下部お問い合わせエリア
-----------------------------------------------------*/
.conversion {
  padding: 100px 0;
  text-align: center;
  background: #EEF2F1;
}
.conversion h2 {
  font-size: 2.6rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}
.conversion h3 {
  font-size: 2rem;
  margin: 0 0 1rem 0;
  font-weight: 500;
}
@media screen and (max-width: 991.98px) {
  .conversion h3 {
    font-size: 1.4rem;
  }
}
.conversion_btn {
  padding: 0 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991.98px) {
  .conversion_btn {
    -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;
  }
}
.conversion_btn nav {
  width: 100%;
  max-width: 400px;
  margin: 20px;
}
.conversion_note {
  font-size: 1.2rem;
  margin: 2.5rem 0 0 0;
  text-align: left;
}
.conversion .list {
  max-width: 640px;
  background: #fff;
  text-align: left;
  margin: 2em auto;
  padding: 50px 50px 45px 50px;
}
.conversion .list .label {
  font-size: 1.8rem;
  font-style: italic;
}
.conversion .list ul {
  padding: 0 0 0 1.5em;
  margin: 1em 0;
  font-size: 1.5rem;
}
.conversion .list p {
  font-size: 1.3rem;
  margin: 0;
}

.mincho {
  font-family: "Times New Roman", "Shippori Mincho", serif;
}

/*---------------------------
  水平線
---------------------------*/
.hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*---------------------------
  イタリック
---------------------------*/
.italic {
  font-style: italic;
}

/*---------------------------
  PC、モバイル表示非表示
---------------------------*/
.pc-lg {
  display: block !important;
}
@media screen and (max-width: 991.98px) {
  .pc-lg {
    display: none !important;
  }
}

.sp-lg {
  display: none !important;
}
@media screen and (max-width: 991.98px) {
  .sp-lg {
    display: block !important;
  }
}

.pc-md {
  display: block !important;
}
@media screen and (max-width: 767.98px) {
  .pc-md {
    display: none !important;
  }
}

.sp-md {
  display: none !important;
}
@media screen and (max-width: 767.98px) {
  .sp-md {
    display: block !important;
  }
}

/*---------------------------
  汎用ボックスマージン
---------------------------*/
.boxmargin-xs {
  margin-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  .boxmargin-xs {
    margin-bottom: 25.2px;
  }
}
@media screen and (max-width: 767.98px) {
  .boxmargin-xs {
    margin-bottom: 19.98px;
  }
}
@media screen and (max-width: 575.98px) {
  .boxmargin-xs {
    margin-bottom: 15px;
  }
}

.boxmargin-sm {
  margin-bottom: 60px;
}
@media screen and (max-width: 991.98px) {
  .boxmargin-sm {
    margin-bottom: 50.4px;
  }
}
@media screen and (max-width: 767.98px) {
  .boxmargin-sm {
    margin-bottom: 39.96px;
  }
}
@media screen and (max-width: 575.98px) {
  .boxmargin-sm {
    margin-bottom: 30px;
  }
}

.boxmargin-md {
  margin-bottom: 90px;
}
@media screen and (max-width: 991.98px) {
  .boxmargin-md {
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 767.98px) {
  .boxmargin-md {
    margin-bottom: 59.94px;
  }
}
@media screen and (max-width: 575.98px) {
  .boxmargin-md {
    margin-bottom: 45px;
  }
}

.boxmargin-lg {
  margin-bottom: 120px;
}
@media screen and (max-width: 991.98px) {
  .boxmargin-lg {
    margin-bottom: 100.8px;
  }
}
@media screen and (max-width: 767.98px) {
  .boxmargin-lg {
    margin-bottom: 79.92px;
  }
}
@media screen and (max-width: 575.98px) {
  .boxmargin-lg {
    margin-bottom: 60px;
  }
}

.boxmargin-xl {
  margin-bottom: 150px;
}
@media screen and (max-width: 991.98px) {
  .boxmargin-xl {
    margin-bottom: 126px;
  }
}
@media screen and (max-width: 767.98px) {
  .boxmargin-xl {
    margin-bottom: 99.9px;
  }
}
@media screen and (max-width: 575.98px) {
  .boxmargin-xl {
    margin-bottom: 75px;
  }
}

/*---------------------------
  汎用ボックスパディング
---------------------------*/
.boxpadding_top-xs {
  padding-top: 30px;
}
@media screen and (max-width: 767.98px) {
  .boxpadding_top-xs {
    padding-top: 18px;
  }
}

.boxpadding_bottom-xs {
  padding-bottom: 30px;
}
@media screen and (max-width: 767.98px) {
  .boxpadding_bottom-xs {
    padding-bottom: 18px;
  }
}

.boxpadding_top-sm {
  padding-top: 60px;
}
@media screen and (max-width: 767.98px) {
  .boxpadding_top-sm {
    padding-top: 36px;
  }
}

.boxpadding_bottom-sm {
  padding-bottom: 60px;
}
@media screen and (max-width: 767.98px) {
  .boxpadding_bottom-sm {
    padding-bottom: 36px;
  }
}

.boxpadding_top-md {
  padding-top: 90px;
}
@media screen and (max-width: 767.98px) {
  .boxpadding_top-md {
    padding-top: 54px;
  }
}

.boxpadding_bottom-md {
  padding-bottom: 90px;
}
@media screen and (max-width: 767.98px) {
  .boxpadding_bottom-md {
    padding-bottom: 54px;
  }
}

.boxpadding_top-lg {
  padding-top: 120px;
}
@media screen and (max-width: 767.98px) {
  .boxpadding_top-lg {
    padding-top: 72px;
  }
}

.boxpadding_bottom-lg {
  padding-bottom: 120px;
}
@media screen and (max-width: 767.98px) {
  .boxpadding_bottom-lg {
    padding-bottom: 72px;
  }
}

.boxpadding_top-xl {
  padding-top: 150px;
}
@media screen and (max-width: 767.98px) {
  .boxpadding_top-xl {
    padding-top: 90px;
  }
}

.boxpadding_bottom-xl {
  padding-bottom: 150px;
}
@media screen and (max-width: 767.98px) {
  .boxpadding_bottom-xl {
    padding-bottom: 90px;
  }
}

/*---------------------------
  汎用line-height
---------------------------*/
.lh-xs {
  line-height: 1 !important;
}

.lh-md {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.lh-xl {
  line-height: 2.5 !important;
}

/*---------------------------
  汎用text-align
---------------------------*/
.textleft {
  text-align: left !important;
}

.textcenter {
  text-align: center !important;
}

.textright {
  text-align: right !important;
}

@media screen and (max-width: 575.98px) {
  .textleft-sm {
    text-align: left !important;
  }
  .textcenter-sm {
    text-align: center !important;
  }
}
/*---------------------------
  汎用margin
---------------------------*/
.mg-0 {
  margin: 0 !important;
}

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

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

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

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

.mg-10 {
  margin-left: 10px !important;
}

.mgl-10 {
  margin-left: 10px !important;
}

.mgr-10 {
  margin-right: 10px !important;
}

.mgt-10 {
  margin-top: 10px !important;
}

.mgb-10 {
  margin-bottom: 10px !important;
}

.mg-20 {
  margin-left: 20px !important;
}

.mgl-20 {
  margin-left: 20px !important;
}

.mgr-20 {
  margin-right: 20px !important;
}

.mgt-20 {
  margin-top: 20px !important;
}

.mgb-20 {
  margin-bottom: 20px !important;
}

.mg-30 {
  margin-left: 30px !important;
}

.mgl-30 {
  margin-left: 30px !important;
}

.mgr-30 {
  margin-right: 30px !important;
}

.mgt-30 {
  margin-top: 30px !important;
}

.mgb-30 {
  margin-bottom: 30px !important;
}

.mg-40 {
  margin-left: 40px !important;
}

.mgl-40 {
  margin-left: 40px !important;
}

.mgr-40 {
  margin-right: 40px !important;
}

.mgt-40 {
  margin-top: 40px !important;
}

.mgb-40 {
  margin-bottom: 40px !important;
}

.mg-50 {
  margin-left: 50px !important;
}

.mgl-50 {
  margin-left: 50px !important;
}

.mgr-50 {
  margin-right: 50px !important;
}

.mgt-50 {
  margin-top: 50px !important;
}

.mgb-50 {
  margin-bottom: 50px !important;
}

.mg-60 {
  margin-left: 60px !important;
}

.mgl-60 {
  margin-left: 60px !important;
}

.mgr-60 {
  margin-right: 60px !important;
}

.mgt-60 {
  margin-top: 60px !important;
}

.mgb-60 {
  margin-bottom: 60px !important;
}

/*---------------------------
  padding
---------------------------*/
.pd-0 {
  margin: 0 !important;
}

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

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

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

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

.pd-10 {
  padding-left: 10px !important;
}

.pdl-10 {
  padding-left: 10px !important;
}

.pdr-10 {
  padding-right: 10px !important;
}

.pdt-10 {
  padding-top: 10px !important;
}

.pdb-10 {
  padding-bottom: 10px !important;
}

.pd-20 {
  padding-left: 20px !important;
}

.pdl-20 {
  padding-left: 20px !important;
}

.pdr-20 {
  padding-right: 20px !important;
}

.pdt-20 {
  padding-top: 20px !important;
}

.pdb-20 {
  padding-bottom: 20px !important;
}

.pd-30 {
  padding-left: 30px !important;
}

.pdl-30 {
  padding-left: 30px !important;
}

.pdr-30 {
  padding-right: 30px !important;
}

.pdt-30 {
  padding-top: 30px !important;
}

.pdb-30 {
  padding-bottom: 30px !important;
}

.pd-40 {
  padding-left: 40px !important;
}

.pdl-40 {
  padding-left: 40px !important;
}

.pdr-40 {
  padding-right: 40px !important;
}

.pdt-40 {
  padding-top: 40px !important;
}

.pdb-40 {
  padding-bottom: 40px !important;
}

.pd-50 {
  padding-left: 50px !important;
}

.pdl-50 {
  padding-left: 50px !important;
}

.pdr-50 {
  padding-right: 50px !important;
}

.pdt-50 {
  padding-top: 50px !important;
}

.pdb-50 {
  padding-bottom: 50px !important;
}

.pd-60 {
  padding-left: 60px !important;
}

.pdl-60 {
  padding-left: 60px !important;
}

.pdr-60 {
  padding-right: 60px !important;
}

.pdt-60 {
  padding-top: 60px !important;
}

.pdb-60 {
  padding-bottom: 60px !important;
}

.pd-100 {
  padding-left: 100px !important;
}

.pdl-100 {
  padding-left: 100px !important;
}

.pdr-100 {
  padding-right: 100px !important;
}

.pdt-100 {
  padding-top: 100px !important;
}

/*---------------------------
  汎用align
---------------------------*/
.algl {
  text-align: left;
}

.algr {
  text-align: right;
}

.alct {
  text-align: center;
}

/*---------------------------
  汎用ガター
---------------------------*/
.g-0, .gx-0 {
  --bs-gutter-x: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 575.98px) {
  .g-sm-0, .gx-sm-0 {
    --bs-gutter-x: 0px;
  }
  .g-sm-0, .gy-sm-0 {
    --bs-gutter-y: 0px;
  }
  .g-sm-10, .gx-sm-10 {
    --bs-gutter-x: 10px;
  }
  .g-sm-10, .gy-sm-10 {
    --bs-gutter-y: 10px;
  }
  .g-sm-20, .gx-sm-20 {
    --bs-gutter-x: 20px;
  }
  .g-sm-20, .gy-sm-20 {
    --bs-gutter-y: 20px;
  }
  .g-sm-30, .gx-sm-30 {
    --bs-gutter-x: 30px;
  }
  .g-sm-30, .gy-sm-30 {
    --bs-gutter-y: 30px;
  }
  .g-sm-40, .gx-sm-40 {
    --bs-gutter-x: 40px;
  }
  .g-sm-40, .gy-sm-40 {
    --bs-gutter-y: 40px;
  }
  .g-sm-50, .gx-sm-50 {
    --bs-gutter-x: 50px;
  }
  .g-sm-50, .gy-sm-50 {
    --bs-gutter-y: 50px;
  }
  .g-sm-60, .gx-sm-60 {
    --bs-gutter-x: 60px;
  }
  .g-sm-60, .gy-sm-60 {
    --bs-gutter-y: 60px;
  }
  .g-sm-70, .gx-sm-70 {
    --bs-gutter-x: 70px;
  }
  .g-sm-70, .gy-sm-70 {
    --bs-gutter-y: 70px;
  }
  .g-sm-80, .gx-sm-80 {
    --bs-gutter-x: 80px;
  }
  .g-sm-80, .gy-sm-80 {
    --bs-gutter-y: 80px;
  }
}
@media screen and (max-width: 767.98px) {
  .g-md-0, .gx-md-0 {
    --bs-gutter-x: 0px;
  }
  .g-md-0, .gy-md-0 {
    --bs-gutter-y: 0px;
  }
  .g-md-10, .gx-md-10 {
    --bs-gutter-x: 10px;
  }
  .g-md-10, .gy-md-10 {
    --bs-gutter-y: 10px;
  }
  .g-md-20, .gx-md-20 {
    --bs-gutter-x: 20px;
  }
  .g-md-20, .gy-md-20 {
    --bs-gutter-y: 20px;
  }
  .g-md-30, .gx-md-30 {
    --bs-gutter-x: 30px;
  }
  .g-md-30, .gy-md-30 {
    --bs-gutter-y: 30px;
  }
  .g-md-40, .gx-md-40 {
    --bs-gutter-x: 40px;
  }
  .g-md-40, .gy-md-40 {
    --bs-gutter-y: 40px;
  }
  .g-md-50, .gx-md-50 {
    --bs-gutter-x: 50px;
  }
  .g-md-50, .gy-md-50 {
    --bs-gutter-y: 50px;
  }
  .g-md-60, .gx-md-60 {
    --bs-gutter-x: 60px;
  }
  .g-md-60, .gy-md-60 {
    --bs-gutter-y: 60px;
  }
  .g-md-70, .gx-md-70 {
    --bs-gutter-x: 70px;
  }
  .g-md-70, .gy-md-70 {
    --bs-gutter-y: 70px;
  }
  .g-md-80, .gx-md-80 {
    --bs-gutter-x: 80px;
  }
  .g-md-80, .gy-md-80 {
    --bs-gutter-y: 80px;
  }
}
@media screen and (max-width: 991.98px) {
  .g-lg-0, .gx-lg-0 {
    --bs-gutter-x: 0px;
  }
  .g-lg-0, .gy-lg-0 {
    --bs-gutter-y: 0px;
  }
  .g-lg-10, .gx-lg-10 {
    --bs-gutter-x: 10px;
  }
  .g-lg-10, .gy-lg-10 {
    --bs-gutter-y: 10px;
  }
  .g-lg-20, .gx-lg-20 {
    --bs-gutter-x: 20px;
  }
  .g-lg-20, .gy-lg-20 {
    --bs-gutter-y: 20px;
  }
  .g-lg-30, .gx-lg-30 {
    --bs-gutter-x: 30px;
  }
  .g-lg-30, .gy-lg-30 {
    --bs-gutter-y: 30px;
  }
  .g-lg-40, .gx-lg-40 {
    --bs-gutter-x: 40px;
  }
  .g-lg-40, .gy-lg-40 {
    --bs-gutter-y: 40px;
  }
  .g-lg-50, .gx-lg-50 {
    --bs-gutter-x: 50px;
  }
  .g-lg-50, .gy-lg-50 {
    --bs-gutter-y: 50px;
  }
  .g-lg-60, .gx-lg-60 {
    --bs-gutter-x: 60px;
  }
  .g-lg-60, .gy-lg-60 {
    --bs-gutter-y: 60px;
  }
  .g-lg-70, .gx-lg-70 {
    --bs-gutter-x: 70px;
  }
  .g-lg-70, .gy-lg-70 {
    --bs-gutter-y: 70px;
  }
  .g-lg-80, .gx-lg-80 {
    --bs-gutter-x: 80px;
  }
  .g-lg-80, .gy-lg-80 {
    --bs-gutter-y: 80px;
  }
}
@media screen and (max-width: 1199.98px) {
  .g-xl-0, .gx-xl-0 {
    --bs-gutter-x: 0px;
  }
  .g-xl-0, .gy-xl-0 {
    --bs-gutter-y: 0px;
  }
  .g-xl-10, .gx-xl-10 {
    --bs-gutter-x: 10px;
  }
  .g-xl-10, .gy-xl-10 {
    --bs-gutter-y: 10px;
  }
  .g-xl-20, .gx-xl-20 {
    --bs-gutter-x: 20px;
  }
  .g-xl-20, .gy-xl-20 {
    --bs-gutter-y: 20px;
  }
  .g-xl-30, .gx-xl-30 {
    --bs-gutter-x: 30px;
  }
  .g-xl-30, .gy-xl-30 {
    --bs-gutter-y: 30px;
  }
  .g-xl-40, .gx-xl-40 {
    --bs-gutter-x: 40px;
  }
  .g-xl-40, .gy-xl-40 {
    --bs-gutter-y: 40px;
  }
  .g-xl-50, .gx-xl-50 {
    --bs-gutter-x: 50px;
  }
  .g-xl-50, .gy-xl-50 {
    --bs-gutter-y: 50px;
  }
  .g-xl-60, .gx-xl-60 {
    --bs-gutter-x: 60px;
  }
  .g-xl-60, .gy-xl-60 {
    --bs-gutter-y: 60px;
  }
  .g-xl-70, .gx-xl-70 {
    --bs-gutter-x: 70px;
  }
  .g-xl-70, .gy-xl-70 {
    --bs-gutter-y: 70px;
  }
  .g-xl-80, .gx-xl-80 {
    --bs-gutter-x: 80px;
  }
  .g-xl-80, .gy-xl-80 {
    --bs-gutter-y: 80px;
  }
}